This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS570LS1224: ADC FIFO access

Part Number: TMS570LS1224
Other Parts Discussed in Thread: HALCOGEN

Tool/software:

Hi (Jagadish),

I noticed that no matter what FIFO size of the ADC is configured (in HALCoGen), the generated code will always read the value of BUF0 (GxBUF[x].BUF0). For example, the adcGetData() function:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
uint32 adcGetData(adcBASE_t *adc, uint32 group, adcData_t * data)
{
uint32 i;
uint32 buf;
uint32 mode;
uint32 index = (adc == adcREG1) ? 0U : 1U;
uint32 intcr_reg = adc->GxINTCR[group];
uint32 count = (intcr_reg >= 256U) ? s_adcFiFoSize[index][group] : (s_adcFiFoSize[index][group] - (uint32)(intcr_reg & 0xFFU));
adcData_t *ptr = data;
/* USER CODE BEGIN (16) */
/* USER CODE END */
mode = (adc->OPMODECR & ADC_12_BIT_MODE);
if(mode == ADC_12_BIT_MODE)
{
/** - Get conversion data and channel/pin id */
for (i = 0U; i < count; i++)
{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

And inside adcBase_t, it looks like this:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
struct
{
uint32 BUF0; /**< 0x0090,0x00B0,0x00D0: Group 0-2 result buffer 1 register */
uint32 BUF1; /**< 0x0094,0x00B4,0x00D4: Group 0-2 result buffer 1 register */
uint32 BUF2; /**< 0x0098,0x00B8,0x00D8: Group 0-2 result buffer 2 register */
uint32 BUF3; /**< 0x009C,0x00BC,0x00DC: Group 0-2 result buffer 3 register */
uint32 BUF4; /**< 0x00A0,0x00C0,0x00E0: Group 0-2 result buffer 4 register */
uint32 BUF5; /**< 0x00A4,0x00C4,0x00E4: Group 0-2 result buffer 5 register */
uint32 BUF6; /**< 0x00A8,0x00C8,0x00E8: Group 0-2 result buffer 6 register */
uint32 BUF7; /**< 0x00AC,0x00CC,0x00EC: Group 0-2 result buffer 7 register */
} GxBUF[3U];
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

I am still wondering how the FIFO works under the hood, and more specifically:

1. Where are BUF1 to BUF7 used (what is their purpose)?

2. Does a read over one of that memory locations (for example, BUF0) will automatically rotate the hardware FIFO (move the tail)?

 

Thanks and regards,

Varban

  • Hi Varban,

    There are couple of ways in ADC results(i mean converted data) reading:

    One is FIFO based method and other one is directly accessing the memory.

    Here adcGetData using FIFO based method only. I mean BUF0 is a FIFO only.

    We can read any of the buffer from BUF0 to BUF7 because they are all will hold same converted results only. For the first time these FIFO Queue will hold the first converted data, and if we read this data then the FIFO will get update with the other data in the ADC RAM which is converted right after the first converted data and this process will continue.

    Please refer TRM once for more details.

    --
    Thanks & regards,
    Jagadish.

  • Hi Jagadish,

    Thank you for the clear explanation!