on
2018-07-23
06:11 AM
- edited on
2024-06-04
04:49 AM
by
Laurids_PETERSE
The Ethernet peripheral on STM32H7x3 is not sending, or receiving data correctly. Or, the IP stack is not able to establish connection to other devices.
What could be the problem?
In most cases, the problem is related to memory layout and Memory Protection Unit (MPU) configuration.
It is strongly recommended to follow the same configuration as in examples provided in STM32CubeH7 package:
e.g. Projects\STM32H743ZI-Nucleo\Applications\LwIP\LwIP_HTTP_Server_Netconn_RTOS.
The following conditions should be met:
The example MPU configuration can look like (please see attached file) for the MPU configuration code
This is how it is implemented in STM32CubeH7 examples, and it works with the current implementation of the library (v1.2.0). Other configurations (e.g. MPU) might also work, but might also fail with specific compiler options (especially with optimization flags).
The data are managed by the dedicated DMA in the Ethernet peripheral. This means that:
The Cortex-M7 can perform accesses to Normal memory type out-of-order. So if we have sequence write to SRAM (Normal type by default), then write to Ethernet register (Device by default), those two operations can be switched by the CPU. And this actually happens in some cases.
So the TX and RX DMA descriptors should be configured to Device or Strongly-ordered type, since:
The RX buffer should be non-cacheable or write-through, because at some cases the RX buffer can be reused as TX buffer inside the LwIP stack. E.g. when pinging the device. So sometimes the valid data would be in cache (TX) and sometimes in SRAM (RX). The write-through configuration can solve this issue, but requires cache invalidation during the data reception.
Hi, Kersten HEINS. Thanks for your document about this issue, which help me save a lot of time to develop the Ethernet part.
In my project, I configured the Ethernet as you suggested, while I didn't enable the cache(I also commented all the cache operation parts in the Ethernet API), but I found that some of the git branches of my project can work well and some branches' Ethernet didn't work well, e.g., mass of ping packets lose and incorrect ping replies. I looked into this issue, then found that each of the incorrect ping packet always contained several former ping relies. Then I debugged the Ethernet driver and checked its corresponding registers, then found that maybe we need to add the memory barrier in the Ethernet transmit function in this case that I had. I patched this function in my project as follows:
HAL_StatusTypeDef HAL_ETH_Transmit_patched(ETH_HandleTypeDef *heth, ETH_TxPacketConfig *pTxConfig, uint32_t Timeout)
{
uint32_t tickstart;
const ETH_DMADescTypeDef *dmatxdesc;
if(pTxConfig == NULL)
{
heth->ErrorCode |= HAL_ETH_ERROR_PARAM;
return HAL_ERROR;
}
if(heth->gState == HAL_ETH_STATE_READY)
{
/* Config DMA Tx descriptor by Tx Packet info */
if (ETH_Prepare_Tx_Descriptors(heth, pTxConfig, 0) != HAL_ETH_ERROR_NONE)
{
/* Set the ETH error code */
heth->ErrorCode |= HAL_ETH_ERROR_BUSY;
return HAL_ERROR;
}
/* All the ring register updating must be executed in a strongly-order */
__DMB();
__DSB();
dmatxdesc = (ETH_DMADescTypeDef *)(&heth->TxDescList)->TxDesc[heth->TxDescList.CurTxDesc];
/* Incr current tx desc index */
INCR_TX_DESC_INDEX(heth->TxDescList.CurTxDesc, 1);
/* Start transmission */
/* issue a poll command to Tx DMA by writing address of next immediate free descriptor */
WRITE_REG(heth->Instance->DMACTDTPR, (uint32_t)(heth->TxDescList.TxDesc[heth->TxDescList.CurTxDesc]));
tickstart = HAL_GetTick();
/* Wait for data to be transmitted or timeout occured */
while((dmatxdesc->DESC3 & ETH_DMATXNDESCWBF_OWN) != (uint32_t)RESET)
{
if((heth->Instance->DMACSR & ETH_DMACSR_FBE) != (uint32_t)RESET)
{
heth->ErrorCode |= HAL_ETH_ERROR_DMA;
heth->DMAErrorCode = heth->Instance->DMACSR;
/* Set ETH HAL State to Ready */
heth->gState = HAL_ETH_STATE_ERROR;
/* Return function status */
return HAL_ERROR;
}
/* Check for the Timeout */
if(Timeout != HAL_MAX_DELAY)
{
if(((HAL_GetTick() - tickstart ) > Timeout) || (Timeout == 0U))
{
heth->ErrorCode |= HAL_ETH_ERROR_TIMEOUT;
heth->gState = HAL_ETH_STATE_READY;
return HAL_ERROR;
}
}
}
/* Set ETH HAL State to Ready */
heth->gState = HAL_ETH_STATE_READY;
/* Return function status */
return HAL_OK;
}
else
{
return HAL_ERROR;
}
}
I tested my project on the STM32H753 Eval board using STM32Cube_v_1.3, every branch of my project can ping well now. I just want to share my solution about this special case that I had. Hope it can help others who may have the same issue.
Hello,
[Edit - start]
It was lacking some details, so here they are:
[Edit - end]
I would like a MEM_SIZE for LWIP of about 2 times the one used here (let's say 32kB).
But increasing the size won't work, and end up in hardfault because 16kB is actually the "end" of D2 SRAM.
There seem to be no more space left.
What possibly would be the correct configuration to have more space, then ?
Thank you,
Fxois
HAL_ETH_IRQHandler call HAL_ETH_TxCpltCallback
when last descriptor is transmitted(only last descriptor is set IOC).
ETI described as Early Transmit Interrupt. Why we don't use it ?
When all descriptors had transferred to IO BUFFER they can be returned immediately and next transfer operation can prepare descriptors while current is physically sending to line.
/* Packet transmitted */
if (__HAL_ETH_DMA_GET_IT(heth, ETH_DMACSR_TI))
{
if (__HAL_ETH_DMA_GET_IT_SOURCE(heth, ETH_DMACIER_TIE))
{
/* Clear the Eth DMA Tx IT pending bits */
__HAL_ETH_DMA_CLEAR_IT(heth, ETH_DMACSR_TI | ETH_DMACSR_NIS);
#if (USE_HAL_ETH_REGISTER_CALLBACKS == 1)
/*Call registered Transmit complete callback*/
heth->TxCpltCallback(heth);
#else
/* Transfer complete callback */
HAL_ETH_TxCpltCallback(heth);
#endif /* USE_HAL_ETH_REGISTER_CALLBACKS */
}
}
Of course it needs to clear AIS if other of ETI bits are not set.
Why ETI is in group AIS(Error), but ERI in NIS(Normal)?
I read RM0468 but didn't get a full explanation.
Why we waiting end of physically transfer of current packet?
Hello,
Could you please update the links? The following don't seem to work:
please see attached file for MPU configuration code
lwip_eth_mpu_configuration.txt (1)
Thanks in advance.
Hi @lech_s
The file has now been updated and can be found in the attachment section of this article.
Best regards,
Laurids
RX buffer ... Should be configured as non-cacheable memory, or write-through
The RX buffer should be non-cacheable or write-through, ... The write-through configuration can solve this issue, but requires cache invalidation during the data reception.
If there is no D-cache invalidation, the Rx buffer memory cacheability cannot be configured as write-through. But, if there is D-cache invalidation, then there is no need to waste the performance and Rx buffer memory cacheability should be configured as write-back, which is also the default for SRAM. I will also remind that ST's code still doesn't implement a correct D-cache maintenance.
This is required for HAL library version 1.2.0 and might not be implemented in the library examples
So you just say that ST ships broken examples and that makes it fine?
And why is the attachment file named ".txt" not like a normal ".c" file so that the code is formatted accordingly?
I applied the solution that suggested. but still im getting same error.
STM32H730VB, HAL Library v1.11.2, LWIP v2.1.2_Cube
linker script:
MEMORY
{
DTCMRAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
RAM (xrw) : ORIGIN = 0x24000000, LENGTH = 128K
RAM_D2 (xrw) : ORIGIN = 0x30000000, LENGTH = 32K
ETH_DMA (xrw) : ORIGIN = 0x30000000, LENGTH = 1K
DMA_BUFFER (xrw) : ORIGIN = 0x30004000, LENGTH = 16K
RAM_D3 (xrw) : ORIGIN = 0x38000000, LENGTH = 16K
ITCMRAM (xrw) : ORIGIN = 0x00000000, LENGTH = 64K
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 128K
}
SECTIONS
{
.RxDecripSection :
{
*(.RxDecripSection)
} >ETH_DMA
.TxDecripSection :
{
*(.TxDecripSection)
} >ETH_DMA
.Rx_PoolSection :
{
*(.Rx_PoolSection)
} >DMA_BUFFER
.dma_buffer : /* Space before ':' is critical */
{
*(.dma_buffer)
} >DMA_BUFFER
}
MPU Configuration
void MPU_Config(void)
{
MPU_Region_InitTypeDef MPU_InitStruct;
HAL_MPU_Disable();
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
MPU_InitStruct.BaseAddress = 0x30000000;
MPU_InitStruct.Size = MPU_REGION_SIZE_1KB;
MPU_InitStruct.AccessPermission = MPU_REGION_FULL_ACCESS;
MPU_InitStruct.IsBufferable = MPU_ACCESS_BUFFERABLE;
MPU_InitStruct.IsCacheable = MPU_ACCESS_NOT_CACHEABLE;
MPU_InitStruct.IsShareable = MPU_ACCESS_SHAREABLE;
MPU_InitStruct.Number = MPU_REGION_NUMBER2;
MPU_InitStruct.TypeExtField = MPU_TEX_LEVEL0;
MPU_InitStruct.SubRegionDisable = 0x00;
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_ENABLE;
HAL_MPU_ConfigRegion(&MPU_InitStruct);
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
MPU_InitStruct.BaseAddress = 0x30004000;
MPU_InitStruct.Size = MPU_REGION_SIZE_16KB;
MPU_InitStruct.AccessPermission = MPU_REGION_FULL_ACCESS;
MPU_InitStruct.IsBufferable = MPU_ACCESS_NOT_BUFFERABLE;
MPU_InitStruct.IsCacheable = MPU_ACCESS_CACHEABLE;
MPU_InitStruct.IsShareable = MPU_ACCESS_NOT_SHAREABLE;
MPU_InitStruct.Number = MPU_REGION_NUMBER1;
MPU_InitStruct.TypeExtField = MPU_TEX_LEVEL0;
MPU_InitStruct.SubRegionDisable = 0x00;
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_ENABLE;
HAL_MPU_ConfigRegion(&MPU_InitStruct);
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
MPU_InitStruct.BaseAddress = 0x30000000;
MPU_InitStruct.Size = MPU_REGION_SIZE_32KB;
MPU_InitStruct.AccessPermission = MPU_REGION_FULL_ACCESS;
MPU_InitStruct.IsBufferable = MPU_ACCESS_NOT_BUFFERABLE;
MPU_InitStruct.IsCacheable = MPU_ACCESS_NOT_CACHEABLE;
MPU_InitStruct.IsShareable = MPU_ACCESS_NOT_SHAREABLE;
MPU_InitStruct.Number = MPU_REGION_NUMBER0;
MPU_InitStruct.TypeExtField = MPU_TEX_LEVEL1;
MPU_InitStruct.SubRegionDisable = 0x00;
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_ENABLE;
HAL_MPU_ConfigRegion(&MPU_InitStruct);
HAL_MPU_Enable(MPU_PRIVILEGED_DEFAULT);
}
I am using STM32H730 controller with Zephyr RTOS and in XiP mode. My problem is that the transmit on ethernet is not going out from the device.
Following is the MPU configuration of the device.
SCB CCR: 00070210, DCache: 1, ICache: 1
MPU 0: Adr:90000000 - Value:(0202002D) XN:0 / AP:2 / TEX:0 / S:0 / C:1 / B:0 / SRD:0x00 / SIZE:0x00800000 / EN:1
MPU 1: Adr:24000000 - Value:(110B0025) XN:1 / AP:1 / TEX:1 / S:0 / C:1 / B:1 / SRD:0x00 / SIZE:0x00080000 / EN:1
MPU 2: Adr:1FF00000 - Value:(11040025) XN:1 / AP:1 / TEX:0 / S:1 / C:0 / B:0 / SRD:0x00 / SIZE:0x00080000 / EN:1
MPU 3: Adr:30004000 - Value:(1108001B) XN:1 / AP:1 / TEX:1 / S:0 / C:0 / B:0 / SRD:0x00 / SIZE:0x00004000 / EN:1
MPU 4: Adr:30004000 - Value:(0104000F) XN:0 / AP:1 / TEX:0 / S:1 / C:0 / B:0 / SRD:0x00 / SIZE:0x00000100 / EN:1
MPU 5: Adr:38800000 - Value:(11080017) XN:1 / AP:1 / TEX:1 / S:0 / C:0 / B:0 / SRD:0x00 / SIZE:0x00001000 / EN:1
MPU 6: Adr:90000000 - Value:(01040037) XN:0 / AP:1 / TEX:0 / S:1 / C:0 / B:0 / SRD:0x00 / SIZE:0x10000000 / EN:1
MPU 7: Adr:20000000 - Value:(11080021) XN:1 / AP:1 / TEX:1 / S:0 / C:0 / B:0 / SRD:0x00 / SIZE:0x00020000 / EN:1
MPU 8: Adr:24021000 - Value:(150B000B) XN:1 / AP:5 / TEX:1 / S:0 / C:1 / B:1 / SRD:0x00 / SIZE:0x00000040 / EN:1
The zephyr map file also shows the ethernet descriptor and buffers in SRAM2
eth_stm32 0x0000000030004000 0x4000
0x0000000030004000 . = ABSOLUTE (0x30004000)
*(SORT_BY_ALIGNMENT(.eth_stm32_desc))
.eth_stm32_desc
0x0000000030004000 0xc0 zephyr/drivers/ethernet/libdrivers__ethernet.a(eth_stm32_hal.c.obj)
0x0000000030004100 . = (ABSOLUTE (0x30004000) + 0x100)
*fill* 0x00000000300040c0 0x40
*(SORT_BY_ALIGNMENT(.eth_stm32_buf))
.eth_stm32_buf
0x0000000030004100 0x2fc0 zephyr/drivers/ethernet/libdrivers__ethernet.a(eth_stm32_hal.c.obj)
0x0000000030008000 . = (ABSOLUTE (0x30004000) + 0x4000)
*fill* 0x00000000300070c0 0xf40
Hi @Vins2 ,
Welcome to the ST Community.
Unfortunately, I can't answer your question directly.
To get the support you need, I encourage you to create a post on our forum board: STM32 MCUs Boards and hardware tools - STMicroelectronics Community
Best regards,
Laurids