123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * File Name : ethernetif.c
- * Description : This file provides code for the configuration
- * of the ethernetif.c MiddleWare.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2022 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* USER CODE END Header */
- /* Includes ------------------------------------------------------------------*/
- #include "main.h"
- #include "lwip/opt.h"
- #include "lwip/timeouts.h"
- #include "netif/ethernet.h"
- #include "netif/etharp.h"
- #include "lwip/ethip6.h"
- #include "ethernetif.h"
- #include "lan8742.h"
- #include <string.h>
- #include "cmsis_os.h"
- #include "lwip/tcpip.h"
- /* Within 'USER CODE' section, code will be kept by default at each generation */
- /* USER CODE BEGIN 0 */
- /* USER CODE END 0 */
- /* Private define ------------------------------------------------------------*/
- /* The time to block waiting for input. */
- #define TIME_WAITING_FOR_INPUT ( portMAX_DELAY )
- /* USER CODE BEGIN OS_THREAD_STACK_SIZE_WITH_RTOS */
- /* ETH_CODE: increase stack size, otherwise there
- * might be overflow in more advanced applications.
- * Lower optimization can increase the stack usage
- * and cause stack overflows in some cases.
- */
- /* Stack size of the interface thread */
- #define INTERFACE_THREAD_STACK_SIZE ( 1024 )
- /* USER CODE END OS_THREAD_STACK_SIZE_WITH_RTOS */
- /* Network interface name */
- #define IFNAME0 's'
- #define IFNAME1 't'
- /* ETH Setting */
- #define ETH_DMA_TRANSMIT_TIMEOUT ( 20U )
- #define ETH_TX_BUFFER_MAX ((ETH_TX_DESC_CNT) * 2U)
- /* ETH_RX_BUFFER_SIZE parameter is defined in lwipopts.h */
- /* USER CODE BEGIN 1 */
- #if USE_DHCP
- #define MAX_DHCP_TRIES 4
- enum dhcp_states {
- DHCP_OFF = 0,
- DHCP_START,
- DHCP_WAIT_ADDRESS,
- DHCP_ADDRESS_ASSIGNED,
- DHCP_TIMEOUT,
- DHCP_LINKD_DOWN,
- DHCP_LAST
- } ;
- #endif
- /* USER CODE END 1 */
- /* Private variables ---------------------------------------------------------*/
- /*
- @Note: This interface is implemented to operate in zero-copy mode only:
- - Rx buffers are allocated statically and passed directly to the LwIP stack
- they will return back to ETH DMA after been processed by the stack.
- - Tx Buffers will be allocated from LwIP stack memory heap,
- then passed to ETH HAL driver.
- @Notes:
- 1.a. ETH DMA Rx descriptors must be contiguous, the default count is 4,
- to customize it please redefine ETH_RX_DESC_CNT in ETH GUI (Rx Descriptor Length)
- so that updated value will be generated in stm32xxxx_hal_conf.h
- 1.b. ETH DMA Tx descriptors must be contiguous, the default count is 4,
- to customize it please redefine ETH_TX_DESC_CNT in ETH GUI (Tx Descriptor Length)
- so that updated value will be generated in stm32xxxx_hal_conf.h
- 2.a. Rx Buffers number must be between ETH_RX_DESC_CNT and 2*ETH_RX_DESC_CNT
- 2.b. Rx Buffers must have the same size: ETH_RX_BUFFER_SIZE, this value must
- passed to ETH DMA in the init field (heth.Init.RxBuffLen)
- 2.c The RX Ruffers addresses and sizes must be properly defined to be aligned
- to L1-CACHE line size (32 bytes).
- */
- /* Data Type Definitions */
- typedef enum
- {
- RX_ALLOC_OK = 0x00,
- RX_ALLOC_ERROR = 0x01
- } RxAllocStatusTypeDef;
- typedef struct
- {
- struct pbuf_custom pbuf_custom;
- uint8_t buff[(ETH_RX_BUFFER_SIZE + 31) & ~31] __ALIGNED(32);
- } RxBuff_t;
- /* Memory Pool Declaration */
- #define ETH_RX_BUFFER_CNT 12U
- LWIP_MEMPOOL_DECLARE(RX_POOL, ETH_RX_BUFFER_CNT, sizeof(RxBuff_t), "Zero-copy RX PBUF pool");
- /* Variable Definitions */
- static uint8_t RxAllocStatus;
- __IO uint32_t TxPkt = 0;
- __IO uint32_t RxPkt = 0;
- #if defined ( __ICCARM__ ) /*!< IAR Compiler */
- #pragma location=0x30000000
- ETH_DMADescTypeDef DMARxDscrTab[ETH_RX_DESC_CNT]; /* Ethernet Rx DMA Descriptors */
- #pragma location=0x30000100
- ETH_DMADescTypeDef DMATxDscrTab[ETH_TX_DESC_CNT]; /* Ethernet Tx DMA Descriptors */
- #elif defined ( __CC_ARM ) /* MDK ARM Compiler */
- __attribute__((at(0x30000000))) ETH_DMADescTypeDef DMARxDscrTab[ETH_RX_DESC_CNT]; /* Ethernet Rx DMA Descriptors */
- __attribute__((at(0x30000100))) ETH_DMADescTypeDef DMATxDscrTab[ETH_TX_DESC_CNT]; /* Ethernet Tx DMA Descriptors */
- #elif defined ( __GNUC__ ) /* GNU Compiler */
- ETH_DMADescTypeDef DMARxDscrTab[ETH_RX_DESC_CNT] __attribute__((section(".RxDecripSection"))); /* Ethernet Rx DMA Descriptors */
- ETH_DMADescTypeDef DMATxDscrTab[ETH_TX_DESC_CNT] __attribute__((section(".TxDecripSection"))); /* Ethernet Tx DMA Descriptors */
- #endif
- /* USER CODE BEGIN 2 */
- /* ETH_CODE: placement of RX_POOL
- * Please note this was tested only for GCC compiler.
- * Additional code needed in linkerscript for GCC.
- *
- * Also this buffer can be placed in D1 SRAM
- * if there is not sufficient space in D2.
- * This can be case of STM32H72x/H73x devices.
- * However the 32-byte alignment should be forced.
- * Below is example of placement into BSS section
- *
- * . = ALIGN(32);
- * *(.Rx_PoolSection)
- * . = ALIGN(4);
- * _ebss = .;
- * __bss_end__ = _ebss;
- * } >RAM_D1
- */
- #if defined ( __ICCARM__ ) /*!< IAR Compiler */
- #pragma location = 0x30040200
- extern u8_t memp_memory_RX_POOL_base[];
- #elif defined ( __CC_ARM ) /* MDK ARM Compiler */
- __attribute__((at(0x30040200)) extern u8_t memp_memory_RX_POOL_base[];
- #elif defined ( __GNUC__ ) /* GNU Compiler */
- __attribute__((section(".Rx_PoolSection"))) extern u8_t memp_memory_RX_POOL_base[];
- #endif
- /* USER CODE END 2 */
- osSemaphoreId RxPktSemaphore = NULL; /* Semaphore to signal incoming packets */
- osSemaphoreId TxPktSemaphore = NULL; /* Semaphore to signal transmit packet complete */
- /* Global Ethernet handle */
- ETH_HandleTypeDef heth;
- ETH_TxPacketConfig TxConfig;
- /* Private function prototypes -----------------------------------------------*/
- int32_t ETH_PHY_IO_Init(void);
- int32_t ETH_PHY_IO_DeInit (void);
- int32_t ETH_PHY_IO_ReadReg(uint32_t DevAddr, uint32_t RegAddr, uint32_t *pRegVal);
- int32_t ETH_PHY_IO_WriteReg(uint32_t DevAddr, uint32_t RegAddr, uint32_t RegVal);
- int32_t ETH_PHY_IO_GetTick(void);
- lan8742_Object_t LAN8742;
- lan8742_IOCtx_t LAN8742_IOCtx = {ETH_PHY_IO_Init,
- ETH_PHY_IO_DeInit,
- ETH_PHY_IO_WriteReg,
- ETH_PHY_IO_ReadReg,
- ETH_PHY_IO_GetTick};
- /* USER CODE BEGIN 3 */
- #if USE_DHCP
- void dhcp_sm(struct netif *netif, enum dhcp_states *state);
- #endif
- /* USER CODE END 3 */
- /* Private functions ---------------------------------------------------------*/
- void pbuf_free_custom(struct pbuf *p);
- /**
- * @brief Ethernet Rx Transfer completed callback
- * @param handlerEth: ETH handler
- * @retval None
- */
- void HAL_ETH_RxCpltCallback(ETH_HandleTypeDef *handlerEth)
- {
- osSemaphoreRelease(RxPktSemaphore);
- }
- /**
- * @brief Ethernet Tx Transfer completed callback
- * @param handlerEth: ETH handler
- * @retval None
- */
- void HAL_ETH_TxCpltCallback(ETH_HandleTypeDef *handlerEth)
- {
- osSemaphoreRelease(TxPktSemaphore);
- }
- /**
- * @brief Ethernet DMA transfer error callback
- * @param handlerEth: ETH handler
- * @retval None
- */
- void HAL_ETH_ErrorCallback(ETH_HandleTypeDef *handlerEth)
- {
- if((HAL_ETH_GetDMAError(handlerEth) & ETH_DMACSR_RBU) == ETH_DMACSR_RBU)
- {
- osSemaphoreRelease(RxPktSemaphore);
- }
- }
- /* USER CODE BEGIN 4 */
- /* USER CODE END 4 */
- /*******************************************************************************
- LL Driver Interface ( LwIP stack --> ETH)
- *******************************************************************************/
- /**
- * @brief In this function, the hardware should be initialized.
- * Called from ethernetif_init().
- *
- * @param netif the already initialized lwip network interface structure
- * for this ethernetif
- */
- static void low_level_init(struct netif *netif)
- {
- HAL_StatusTypeDef hal_eth_init_status = HAL_OK;
- /* USER CODE BEGIN OS_THREAD_ATTR_CMSIS_RTOS_V2 */
- osThreadAttr_t attributes;
- /* USER CODE END OS_THREAD_ATTR_CMSIS_RTOS_V2 */
- uint32_t duplex, speed = 0;
- int32_t PHYLinkState = 0;
- ETH_MACConfigTypeDef MACConf = {0};
- /* Start ETH HAL Init */
- uint8_t MACAddr[6] ;
- heth.Instance = ETH;
- // MACAddr[0] = 0x00;
- // MACAddr[1] = 0x80;
- // MACAddr[2] = 0xE1;
- // MACAddr[3] = 0x00;
- // MACAddr[4] = 0x00;
- // MACAddr[5] = 0x00;
- MACAddr[0] = 0x7C;
- MACAddr[1] = 0xF6;
- MACAddr[2] = 0x66;
- MACAddr[3] = 0xE4;
- MACAddr[4] = 0xB5;
- MACAddr[5] = 0x41;
- heth.Init.MACAddr = &MACAddr[0];
- heth.Init.MediaInterface = HAL_ETH_MII_MODE;
- heth.Init.TxDesc = DMATxDscrTab;
- heth.Init.RxDesc = DMARxDscrTab;
- heth.Init.RxBuffLen = 1536;
- /* USER CODE BEGIN MACADDRESS */
- /* USER CODE END MACADDRESS */
- hal_eth_init_status = HAL_ETH_Init(&heth);
- memset(&TxConfig, 0 , sizeof(ETH_TxPacketConfig));
- TxConfig.Attributes = ETH_TX_PACKETS_FEATURES_CSUM | ETH_TX_PACKETS_FEATURES_CRCPAD;
- TxConfig.ChecksumCtrl = ETH_CHECKSUM_IPHDR_PAYLOAD_INSERT_PHDR_CALC;
- TxConfig.CRCPadCtrl = ETH_CRC_PAD_INSERT;
- /* End ETH HAL Init */
- /* Initialize the RX POOL */
- LWIP_MEMPOOL_INIT(RX_POOL);
- #if LWIP_ARP || LWIP_ETHERNET
- /* set MAC hardware address length */
- netif->hwaddr_len = ETH_HWADDR_LEN;
- /* set MAC hardware address */
- netif->hwaddr[0] = heth.Init.MACAddr[0];
- netif->hwaddr[1] = heth.Init.MACAddr[1];
- netif->hwaddr[2] = heth.Init.MACAddr[2];
- netif->hwaddr[3] = heth.Init.MACAddr[3];
- netif->hwaddr[4] = heth.Init.MACAddr[4];
- netif->hwaddr[5] = heth.Init.MACAddr[5];
- /* maximum transfer unit */
- netif->mtu = ETH_MAX_PAYLOAD;
- /* Accept broadcast address and ARP traffic */
- /* don't set NETIF_FLAG_ETHARP if this device is not an ethernet one */
- #if LWIP_ARP
- netif->flags |= NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP;
- #else
- netif->flags |= NETIF_FLAG_BROADCAST;
- #endif /* LWIP_ARP */
- /* create a binary semaphore used for informing ethernetif of frame reception */
- RxPktSemaphore = osSemaphoreNew(1, 1, NULL);
- /* create a binary semaphore used for informing ethernetif of frame transmission */
- TxPktSemaphore = osSemaphoreNew(1, 1, NULL);
- /* create the task that handles the ETH_MAC */
- /* USER CODE BEGIN OS_THREAD_NEW_CMSIS_RTOS_V2 */
- memset(&attributes, 0x0, sizeof(osThreadAttr_t));
- attributes.name = "EthIf";
- attributes.stack_size = INTERFACE_THREAD_STACK_SIZE;
- attributes.priority = osPriorityRealtime;
- osThreadNew(ethernetif_input, netif, &attributes);
- /* USER CODE END OS_THREAD_NEW_CMSIS_RTOS_V2 */
- /* USER CODE BEGIN PHY_PRE_CONFIG */
- /* USER CODE END PHY_PRE_CONFIG */
- /* Set PHY IO functions */
- LAN8742_RegisterBusIO(&LAN8742, &LAN8742_IOCtx);
- /* Initialize the LAN8742 ETH PHY */
- LAN8742_Init(&LAN8742);
- if (hal_eth_init_status == HAL_OK)
- {
- PHYLinkState = LAN8742_GetLinkState(&LAN8742);
- /* Get link state */
- if(PHYLinkState <= LAN8742_STATUS_LINK_DOWN)
- {
- netif_set_link_down(netif);
- netif_set_down(netif);
- }
- else
- {
- switch (PHYLinkState)
- {
- case LAN8742_STATUS_100MBITS_FULLDUPLEX:
- duplex = ETH_FULLDUPLEX_MODE;
- speed = ETH_SPEED_100M;
- break;
- case LAN8742_STATUS_100MBITS_HALFDUPLEX:
- duplex = ETH_HALFDUPLEX_MODE;
- speed = ETH_SPEED_100M;
- break;
- case LAN8742_STATUS_10MBITS_FULLDUPLEX:
- duplex = ETH_FULLDUPLEX_MODE;
- speed = ETH_SPEED_10M;
- break;
- case LAN8742_STATUS_10MBITS_HALFDUPLEX:
- duplex = ETH_HALFDUPLEX_MODE;
- speed = ETH_SPEED_10M;
- break;
- default:
- duplex = ETH_FULLDUPLEX_MODE;
- speed = ETH_SPEED_100M;
- break;
- }
- /* Get MAC Config MAC */
- HAL_ETH_GetMACConfig(&heth, &MACConf);
- MACConf.DuplexMode = duplex;
- MACConf.Speed = speed;
- HAL_ETH_SetMACConfig(&heth, &MACConf);
- HAL_ETH_Start_IT(&heth);
- netif_set_up(netif);
- netif_set_link_up(netif);
- /* USER CODE BEGIN PHY_POST_CONFIG */
- ethernetif_notify_conn_changed(netif);
- /* USER CODE END PHY_POST_CONFIG */
- }
- }
- else
- {
- Error_Handler();
- }
- #endif /* LWIP_ARP || LWIP_ETHERNET */
- /* USER CODE BEGIN LOW_LEVEL_INIT */
- /* USER CODE END LOW_LEVEL_INIT */
- }
- /**
- * This function should do the actual transmission of the packet. The packet is
- * contained in the pbuf that is passed to the function. This pbuf
- * might be chained.
- *
- * @param netif the lwip network interface structure for this ethernetif
- * @param p the MAC packet to send (e.g. IP packet including MAC addresses and type)
- * @return ERR_OK if the packet could be sent
- * an err_t value if the packet couldn't be sent
- *
- * @note Returning ERR_MEM here if a DMA queue of your MAC is full can lead to
- * strange results. You might consider waiting for space in the DMA queue
- * to become available since the stack doesn't retry to send a packet
- * dropped because of memory failure (except for the TCP timers).
- */
- static err_t low_level_output(struct netif *netif, struct pbuf *p)
- {
- uint32_t i = 0U;
- struct pbuf *q = NULL;
- err_t errval = ERR_OK;
- ETH_BufferTypeDef Txbuffer[ETH_TX_DESC_CNT];
- memset(Txbuffer, 0 , ETH_TX_DESC_CNT*sizeof(ETH_BufferTypeDef));
- for(q = p; q != NULL; q = q->next)
- {
- if(i >= ETH_TX_DESC_CNT)
- return ERR_IF;
- Txbuffer[i].buffer = q->payload;
- Txbuffer[i].len = q->len;
- if(i>0)
- {
- Txbuffer[i-1].next = &Txbuffer[i];
- }
- if(q->next == NULL)
- {
- Txbuffer[i].next = NULL;
- }
- i++;
- }
- TxConfig.Length = p->tot_len;
- TxConfig.TxBuffer = Txbuffer;
- TxConfig.pData = p;
- pbuf_ref(p);
- HAL_ETH_Transmit_IT(&heth, &TxConfig);
- // while(osSemaphoreAcquire(TxPktSemaphore, TIME_WAITING_FOR_INPUT)!=osOK)
- // while(osSemaphoreAcquire(TxPktSemaphore, pdMS_TO_TICKS(1000))!=osOK)
- // {
- // }
- osSemaphoreAcquire(TxPktSemaphore, pdMS_TO_TICKS(1000));
- HAL_ETH_ReleaseTxPacket(&heth);
- return errval;
- }
- /**
- * Should allocate a pbuf and transfer the bytes of the incoming
- * packet from the interface into the pbuf.
- *
- * @param netif the lwip network interface structure for this ethernetif
- * @return a pbuf filled with the received packet (including MAC header)
- * NULL on memory error
- */
- static struct pbuf * low_level_input(struct netif *netif)
- {
- struct pbuf *p = NULL;
- if(RxAllocStatus == RX_ALLOC_OK)
- {
- HAL_ETH_ReadData(&heth, (void **)&p);
- }
- return p;
- }
- /**
- * This function should be called when a packet is ready to be read
- * from the interface. It uses the function low_level_input() that
- * should handle the actual reception of bytes from the network
- * interface. Then the type of the received packet is determined and
- * the appropriate input function is called.
- *
- * @param netif the lwip network interface structure for this ethernetif
- */
- void ethernetif_input(void* argument)
- {
- struct pbuf *p = NULL;
- struct netif *netif = (struct netif *) argument;
- for( ;; )
- {
- if (osSemaphoreAcquire(RxPktSemaphore, TIME_WAITING_FOR_INPUT) == osOK)
- {
- do
- {
- p = low_level_input( netif );
- if (p != NULL)
- {
- if (netif->input( p, netif) != ERR_OK )
- {
- pbuf_free(p);
- }
- }
- } while(p!=NULL);
- }
- }
- }
- #if !LWIP_ARP
- /**
- * This function has to be completed by user in case of ARP OFF.
- *
- * @param netif the lwip network interface structure for this ethernetif
- * @return ERR_OK if ...
- */
- static err_t low_level_output_arp_off(struct netif *netif, struct pbuf *q, const ip4_addr_t *ipaddr)
- {
- err_t errval;
- errval = ERR_OK;
- /* USER CODE BEGIN 5 */
- /* USER CODE END 5 */
- return errval;
- }
- #endif /* LWIP_ARP */
- /**
- * Should be called at the beginning of the program to set up the
- * network interface. It calls the function low_level_init() to do the
- * actual setup of the hardware.
- *
- * This function should be passed as a parameter to netif_add().
- *
- * @param netif the lwip network interface structure for this ethernetif
- * @return ERR_OK if the loopif is initialized
- * ERR_MEM if private data couldn't be allocated
- * any other err_t on error
- */
- err_t ethernetif_init(struct netif *netif)
- {
- LWIP_ASSERT("netif != NULL", (netif != NULL));
- #if LWIP_NETIF_HOSTNAME
- /* Initialize interface hostname */
- netif->hostname = "lwip";
- #endif /* LWIP_NETIF_HOSTNAME */
- /*
- * Initialize the snmp variables and counters inside the struct netif.
- * The last argument should be replaced with your link speed, in units
- * of bits per second.
- */
- // MIB2_INIT_NETIF(netif, snmp_ifType_ethernet_csmacd, LINK_SPEED_OF_YOUR_NETIF_IN_BPS);
- netif->name[0] = IFNAME0;
- netif->name[1] = IFNAME1;
- /* We directly use etharp_output() here to save a function call.
- * You can instead declare your own function an call etharp_output()
- * from it if you have to do some checks before sending (e.g. if link
- * is available...) */
- #if LWIP_IPV4
- #if LWIP_ARP || LWIP_ETHERNET
- #if LWIP_ARP
- netif->output = etharp_output;
- #else
- /* The user should write its own code in low_level_output_arp_off function */
- netif->output = low_level_output_arp_off;
- #endif /* LWIP_ARP */
- #endif /* LWIP_ARP || LWIP_ETHERNET */
- #endif /* LWIP_IPV4 */
- #if LWIP_IPV6
- netif->output_ip6 = ethip6_output;
- #endif /* LWIP_IPV6 */
- netif->linkoutput = low_level_output;
- /* initialize the hardware */
- low_level_init(netif);
- return ERR_OK;
- }
- /**
- * @brief Custom Rx pbuf free callback
- * @param pbuf: pbuf to be freed
- * @retval None
- */
- void pbuf_free_custom(struct pbuf *p)
- {
- struct pbuf_custom* custom_pbuf = (struct pbuf_custom*)p;
- LWIP_MEMPOOL_FREE(RX_POOL, custom_pbuf);
- /* If the Rx Buffer Pool was exhausted, signal the ethernetif_input task to
- * call HAL_ETH_GetRxDataBuffer to rebuild the Rx descriptors. */
- if (RxAllocStatus == RX_ALLOC_ERROR)
- {
- RxAllocStatus = RX_ALLOC_OK;
- osSemaphoreRelease(RxPktSemaphore);
- }
- }
- /* USER CODE BEGIN 6 */
- /**
- * @brief Returns the current time in milliseconds
- * when LWIP_TIMERS == 1 and NO_SYS == 1
- * @param None
- * @retval Current Time value
- */
- u32_t sys_now(void)
- {
- return HAL_GetTick();
- }
- /* USER CODE END 6 */
- void HAL_ETH_MspInit(ETH_HandleTypeDef* ethHandle)
- {
- GPIO_InitTypeDef GPIO_InitStruct = {0};
- if(ethHandle->Instance==ETH)
- {
- /* USER CODE BEGIN ETH_MspInit 0 */
- /* USER CODE END ETH_MspInit 0 */
- /* Enable Peripheral clock */
- __HAL_RCC_ETH1MAC_CLK_ENABLE();
- __HAL_RCC_ETH1TX_CLK_ENABLE();
- __HAL_RCC_ETH1RX_CLK_ENABLE();
- __HAL_RCC_GPIOG_CLK_ENABLE();
- __HAL_RCC_GPIOE_CLK_ENABLE();
- __HAL_RCC_GPIOI_CLK_ENABLE();
- __HAL_RCC_GPIOC_CLK_ENABLE();
- __HAL_RCC_GPIOA_CLK_ENABLE();
- __HAL_RCC_GPIOB_CLK_ENABLE();
- /**ETH GPIO Configuration
- PG11 ------> ETH_TX_EN
- PE2 ------> ETH_TXD3
- PG12 ------> ETH_TXD1
- PG13 ------> ETH_TXD0
- PI10 ------> ETH_RX_ER
- PC1 ------> ETH_MDC
- PC2 ------> ETH_TXD2
- PC3 ------> ETH_TX_CLK
- PA2 ------> ETH_MDIO
- PA1 ------> ETH_RX_CLK
- PA0 ------> ETH_CRS
- PA7 ------> ETH_RX_DV
- PC4 ------> ETH_RXD0
- PB1 ------> ETH_RXD3
- PA3 ------> ETH_COL
- PC5 ------> ETH_RXD1
- PB0 ------> ETH_RXD2
- */
- GPIO_InitStruct.Pin = MII_TX_EN_Pin|MII_TXD1_Pin|MII_TXD0_Pin;
- GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
- GPIO_InitStruct.Alternate = GPIO_AF11_ETH;
- HAL_GPIO_Init(GPIOG, &GPIO_InitStruct);
- GPIO_InitStruct.Pin = MII_TXD3_Pin;
- GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
- GPIO_InitStruct.Alternate = GPIO_AF11_ETH;
- HAL_GPIO_Init(MII_TXD3_GPIO_Port, &GPIO_InitStruct);
- GPIO_InitStruct.Pin = MII_RX_ER_Pin;
- GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
- GPIO_InitStruct.Alternate = GPIO_AF11_ETH;
- HAL_GPIO_Init(MII_RX_ER_GPIO_Port, &GPIO_InitStruct);
- GPIO_InitStruct.Pin = MII_MDC_Pin|MII_TXD2_Pin|MII_TX_CLK_Pin|MII_RXD0_Pin
- |MII_RXD1_Pin;
- GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
- GPIO_InitStruct.Alternate = GPIO_AF11_ETH;
- HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
- GPIO_InitStruct.Pin = MII_MDIO_Pin|GPIO_PIN_1|MII_CRS_Pin|GPIO_PIN_7
- |MII_COL_Pin;
- GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
- GPIO_InitStruct.Alternate = GPIO_AF11_ETH;
- HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
- GPIO_InitStruct.Pin = MII_RXD3_Pin|MII_RXD2_Pin;
- GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
- GPIO_InitStruct.Pull = GPIO_NOPULL;
- GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
- GPIO_InitStruct.Alternate = GPIO_AF11_ETH;
- HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
- /* Peripheral interrupt init */
- HAL_NVIC_SetPriority(ETH_IRQn, 5, 0);
- HAL_NVIC_EnableIRQ(ETH_IRQn);
- /* USER CODE BEGIN ETH_MspInit 1 */
- /* USER CODE END ETH_MspInit 1 */
- }
- }
- void HAL_ETH_MspDeInit(ETH_HandleTypeDef* ethHandle)
- {
- if(ethHandle->Instance==ETH)
- {
- /* USER CODE BEGIN ETH_MspDeInit 0 */
- /* USER CODE END ETH_MspDeInit 0 */
- /* Disable Peripheral clock */
- __HAL_RCC_ETH1MAC_CLK_DISABLE();
- __HAL_RCC_ETH1TX_CLK_DISABLE();
- __HAL_RCC_ETH1RX_CLK_DISABLE();
- /**ETH GPIO Configuration
- PG11 ------> ETH_TX_EN
- PE2 ------> ETH_TXD3
- PG12 ------> ETH_TXD1
- PG13 ------> ETH_TXD0
- PI10 ------> ETH_RX_ER
- PC1 ------> ETH_MDC
- PC2 ------> ETH_TXD2
- PC3 ------> ETH_TX_CLK
- PA2 ------> ETH_MDIO
- PA1 ------> ETH_RX_CLK
- PA0 ------> ETH_CRS
- PA7 ------> ETH_RX_DV
- PC4 ------> ETH_RXD0
- PB1 ------> ETH_RXD3
- PA3 ------> ETH_COL
- PC5 ------> ETH_RXD1
- PB0 ------> ETH_RXD2
- */
- HAL_GPIO_DeInit(GPIOG, MII_TX_EN_Pin|MII_TXD1_Pin|MII_TXD0_Pin);
- HAL_GPIO_DeInit(MII_TXD3_GPIO_Port, MII_TXD3_Pin);
- HAL_GPIO_DeInit(MII_RX_ER_GPIO_Port, MII_RX_ER_Pin);
- HAL_GPIO_DeInit(GPIOC, MII_MDC_Pin|MII_TXD2_Pin|MII_TX_CLK_Pin|MII_RXD0_Pin
- |MII_RXD1_Pin);
- HAL_GPIO_DeInit(GPIOA, MII_MDIO_Pin|GPIO_PIN_1|MII_CRS_Pin|GPIO_PIN_7
- |MII_COL_Pin);
- HAL_GPIO_DeInit(GPIOB, MII_RXD3_Pin|MII_RXD2_Pin);
- /* Peripheral interrupt Deinit*/
- HAL_NVIC_DisableIRQ(ETH_IRQn);
- /* USER CODE BEGIN ETH_MspDeInit 1 */
- /* USER CODE END ETH_MspDeInit 1 */
- }
- }
- /*******************************************************************************
- PHI IO Functions
- *******************************************************************************/
- /**
- * @brief Initializes the MDIO interface GPIO and clocks.
- * @param None
- * @retval 0 if OK, -1 if ERROR
- */
- int32_t ETH_PHY_IO_Init(void)
- {
- /* We assume that MDIO GPIO configuration is already done
- in the ETH_MspInit() else it should be done here
- */
- /* Configure the MDIO Clock */
- HAL_ETH_SetMDIOClockRange(&heth);
- return 0;
- }
- /**
- * @brief De-Initializes the MDIO interface .
- * @param None
- * @retval 0 if OK, -1 if ERROR
- */
- int32_t ETH_PHY_IO_DeInit (void)
- {
- return 0;
- }
- /**
- * @brief Read a PHY register through the MDIO interface.
- * @param DevAddr: PHY port address
- * @param RegAddr: PHY register address
- * @param pRegVal: pointer to hold the register value
- * @retval 0 if OK -1 if Error
- */
- int32_t ETH_PHY_IO_ReadReg(uint32_t DevAddr, uint32_t RegAddr, uint32_t *pRegVal)
- {
- if(HAL_ETH_ReadPHYRegister(&heth, DevAddr, RegAddr, pRegVal) != HAL_OK)
- {
- return -1;
- }
- return 0;
- }
- /**
- * @brief Write a value to a PHY register through the MDIO interface.
- * @param DevAddr: PHY port address
- * @param RegAddr: PHY register address
- * @param RegVal: Value to be written
- * @retval 0 if OK -1 if Error
- */
- int32_t ETH_PHY_IO_WriteReg(uint32_t DevAddr, uint32_t RegAddr, uint32_t RegVal)
- {
- if(HAL_ETH_WritePHYRegister(&heth, DevAddr, RegAddr, RegVal) != HAL_OK)
- {
- return -1;
- }
- return 0;
- }
- /**
- * @brief Get the time in millisecons used for internal PHY driver process.
- * @retval Time value
- */
- int32_t ETH_PHY_IO_GetTick(void)
- {
- return HAL_GetTick();
- }
- /**
- * @brief Check the ETH link state then update ETH driver and netif link accordingly.
- * @param argument: netif
- * @retval None
- */
- void ethernet_link_thread(void* argument)
- {
- ETH_MACConfigTypeDef MACConf = {0};
- int32_t PHYLinkState = 0;
- uint32_t linkchanged = 0U, speed = 0U, duplex = 0U;
- struct netif *netif = (struct netif *) argument;
- /* USER CODE BEGIN ETH link init */
- #if USE_DHCP
- enum dhcp_states DHCP_state = DHCP_START;
- #endif
- /* ETH_CODE: call HAL_ETH_Start_IT instead of HAL_ETH_Start
- * This is required for operation with RTOS.
- * This trick allows to keep this change through
- * code re-generation by STM32CubeMX
- */
- #define HAL_ETH_Start HAL_ETH_Start_IT
- /* ETH_CODE: workaround to call LOCK_TCPIP_CORE when accessing netif link functions*/
- // LOCK_TCPIP_CORE();
- /* USER CODE END ETH link init */
- for(;;)
- {
- PHYLinkState = LAN8742_GetLinkState(&LAN8742);
- if(netif_is_link_up(netif) && (PHYLinkState <= LAN8742_STATUS_LINK_DOWN))
- {
- HAL_ETH_Stop_IT(&heth);
- LOCK_TCPIP_CORE();
- netif_set_down(netif);
- netif_set_link_down(netif);
- UNLOCK_TCPIP_CORE();
- printf("Link down...\r\n");
- }
- else if(!netif_is_link_up(netif) && (PHYLinkState > LAN8742_STATUS_LINK_DOWN))
- {
- switch (PHYLinkState)
- {
- case LAN8742_STATUS_100MBITS_FULLDUPLEX:
- duplex = ETH_FULLDUPLEX_MODE;
- speed = ETH_SPEED_100M;
- linkchanged = 1;
- break;
- case LAN8742_STATUS_100MBITS_HALFDUPLEX:
- duplex = ETH_HALFDUPLEX_MODE;
- speed = ETH_SPEED_100M;
- linkchanged = 1;
- break;
- case LAN8742_STATUS_10MBITS_FULLDUPLEX:
- duplex = ETH_FULLDUPLEX_MODE;
- speed = ETH_SPEED_10M;
- linkchanged = 1;
- break;
- case LAN8742_STATUS_10MBITS_HALFDUPLEX:
- duplex = ETH_HALFDUPLEX_MODE;
- speed = ETH_SPEED_10M;
- linkchanged = 1;
- break;
- default:
- break;
- }
- if(linkchanged)
- {
- /* Get MAC Config MAC */
- HAL_ETH_GetMACConfig(&heth, &MACConf);
- MACConf.DuplexMode = duplex;
- MACConf.Speed = speed;
- HAL_ETH_SetMACConfig(&heth, &MACConf);
- HAL_ETH_Start(&heth);
- LOCK_TCPIP_CORE();
- netif_set_up(netif);
- netif_set_link_up(netif);
- UNLOCK_TCPIP_CORE();
- printf("Link up...\r\n");
- }
- }
- /* USER CODE BEGIN ETH link Thread core code for User BSP */
- #if USE_DHCP
- dhcp_sm(netif, &DHCP_state);
- #endif
- /* ETH_CODE: workaround to call LOCK_TCPIP_CORE when accessing netif link functions*/
- // UNLOCK_TCPIP_CORE();
- osDelay(pdMS_TO_TICKS(500));
- // LOCK_TCPIP_CORE();
- continue; /* skip next osDelay */
- /* USER CODE END ETH link Thread core code for User BSP */
- osDelay(100);
- }
- }
- /**
- * @brief This function notify user about link status changement.
- * @param netif: the network interface
- * @retval None
- */
- __weak void ethernetif_notify_conn_changed(struct netif *netif)
- {
- /* NOTE : This is function could be implemented in user file
- when the callback is needed,
- */
- }
- void HAL_ETH_RxAllocateCallback(uint8_t **buff)
- {
- /* USER CODE BEGIN HAL ETH RxAllocateCallback */
- struct pbuf_custom *p = LWIP_MEMPOOL_ALLOC(RX_POOL);
- if (p)
- {
- /* Get the buff from the struct pbuf address. */
- *buff = (uint8_t *)p + offsetof(RxBuff_t, buff);
- p->custom_free_function = pbuf_free_custom;
- /* Initialize the struct pbuf.
- * This must be performed whenever a buffer's allocated because it may be
- * changed by lwIP or the app, e.g., pbuf_free decrements ref. */
- pbuf_alloced_custom(PBUF_RAW, 0, PBUF_REF, p, *buff, ETH_RX_BUFFER_SIZE);
- }
- else
- {
- RxAllocStatus = RX_ALLOC_ERROR;
- *buff = NULL;
- }
- /* USER CODE END HAL ETH RxAllocateCallback */
- }
- void HAL_ETH_RxLinkCallback(void **pStart, void **pEnd, uint8_t *buff, uint16_t Length)
- {
- /* USER CODE BEGIN HAL ETH RxLinkCallback */
- struct pbuf **ppStart = (struct pbuf **)pStart;
- struct pbuf **ppEnd = (struct pbuf **)pEnd;
- struct pbuf *p = NULL;
- /* Get the struct pbuf from the buff address. */
- p = (struct pbuf *)(buff - offsetof(RxBuff_t, buff));
- p->next = NULL;
- p->tot_len = 0;
- p->len = Length;
- /* Chain the buffer. */
- if (!*ppStart)
- {
- /* The first buffer of the packet. */
- *ppStart = p;
- }
- else
- {
- /* Chain the buffer to the end of the packet. */
- (*ppEnd)->next = p;
- }
- *ppEnd = p;
- /* Update the total length of all the buffers of the chain. Each pbuf in the chain should have its tot_len
- * set to its own length, plus the length of all the following pbufs in the chain. */
- for (p = *ppStart; p != NULL; p = p->next)
- {
- p->tot_len += Length;
- }
- /* Invalidate data cache because Rx DMA's writing to physical memory makes it stale. */
- SCB_InvalidateDCache_by_Addr((uint32_t *)buff, Length);
- /* USER CODE END HAL ETH RxLinkCallback */
- }
- void HAL_ETH_TxFreeCallback(uint32_t * buff)
- {
- /* USER CODE BEGIN HAL ETH TxFreeCallback */
- pbuf_free((struct pbuf *)buff);
- /* USER CODE END HAL ETH TxFreeCallback */
- }
- /* USER CODE BEGIN 8 */
- /* ETH_CODE: add functions needed for proper multithreading support and check */
- static osThreadId_t lwip_core_lock_holder_thread_id;
- static osThreadId_t lwip_tcpip_thread_id;
- void sys_lock_tcpip_core(void){
- sys_mutex_lock(&lock_tcpip_core);
- lwip_core_lock_holder_thread_id = osThreadGetId();
- }
- void sys_unlock_tcpip_core(void){
- lwip_core_lock_holder_thread_id = 0;
- sys_mutex_unlock(&lock_tcpip_core);
- }
- void sys_check_core_locking(void){
- /* Embedded systems should check we are NOT in an interrupt context here */
- LWIP_ASSERT("Function called from interrupt context", (SCB->ICSR & SCB_ICSR_VECTACTIVE_Msk) == 0);
- if (lwip_tcpip_thread_id != 0) {
- osThreadId_t current_thread_id = osThreadGetId();
- #if LWIP_TCPIP_CORE_LOCKING
- LWIP_ASSERT("Function called without core lock", current_thread_id == lwip_core_lock_holder_thread_id);
- /* ETH_CODE: to easily check that example has correct handling of core lock
- * This will trigger breakpoint (__BKPT)
- */
- #warning Below check should be removed in production code
- if(current_thread_id != lwip_core_lock_holder_thread_id) __BKPT(0);
- #else /* LWIP_TCPIP_CORE_LOCKING */
- LWIP_ASSERT("Function called from wrong thread", current_thread_id == lwip_tcpip_thread_id);
- #endif /* LWIP_TCPIP_CORE_LOCKING */
- LWIP_UNUSED_ARG(current_thread_id); /* for LWIP_NOASSERT */
- }
- }
- void sys_mark_tcpip_thread(void){
- lwip_tcpip_thread_id = osThreadGetId();
- }
- void dhcp_sm(struct netif *netif, enum dhcp_states *state)
- {
- struct dhcp *dhcp;
- ip_addr_t ipaddr;
- ip_addr_t netmask;
- ip_addr_t gw;
- #ifdef DHCP_USER_LOGS
- uint8_t iptxt[20];
- #endif
- switch(*state)
- {
- case DHCP_START:
- *state = DHCP_WAIT_ADDRESS;
- #ifdef DHCP_USER_LOGS
- printf(" State: Looking for DHCP server ...\n");
- #endif
- break;
- case DHCP_WAIT_ADDRESS:
- if (dhcp_supplied_address(netif))
- {
- *state = DHCP_ADDRESS_ASSIGNED;
- #ifdef DHCP_USER_LOGS
- sprintf((char *)iptxt, "%s", ip4addr_ntoa((const ip4_addr_t *)&netif->ip_addr));
- printf("IP address assigned by a DHCP server: %s\n", iptxt);
- #endif
- }
- else
- {
- dhcp = (struct dhcp *)netif_get_client_data(netif, LWIP_NETIF_CLIENT_DATA_INDEX_DHCP);
- /* DHCP timeout */
- if (dhcp->tries > MAX_DHCP_TRIES)
- {
- *state = DHCP_TIMEOUT;
- /* Stop DHCP */
- LOCK_TCPIP_CORE();
- dhcp_stop(netif);
- UNLOCK_TCPIP_CORE();
- /* Static address used */
- ipaddr_aton(STATIC_IP, &ipaddr);
- ipaddr_aton(STATIC_MASK, &netmask);
- ipaddr_aton(STATIC_GW, &gw);
- LOCK_TCPIP_CORE();
- netif_set_addr(netif, ip_2_ip4(&ipaddr), ip_2_ip4(&netmask), ip_2_ip4(&gw));
- UNLOCK_TCPIP_CORE();
- #ifdef DHCP_USER_LOGS
- sprintf((char *)iptxt, "%s", ip4addr_ntoa((const ip4_addr_t *)&netif->ip_addr));
- printf("DHCP Timeout !! \n");
- printf("Static IP address: %s\n", iptxt);
- #endif
- }
- }
- break;
- case DHCP_ADDRESS_ASSIGNED:
- dhcp = (struct dhcp *)netif_get_client_data(netif, LWIP_NETIF_CLIENT_DATA_INDEX_DHCP);
- if(dhcp->state == 3)
- {
- *state = DHCP_START;
- }
- break;
- default:
- break;
- }
- }
- /* USER CODE END 8 */
|