Ten post jest rozwinięciem wcześniejszej części. W nim chciałbym przedstawić sposób dostosowania układu STM32H723, który został umieszczony na płycie Nucleo-144, do współpracy z biblioteką LWIP.
[Źródło: https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-h753zi.html#overview]
Skupię się tutaj tylko i wyłącznie na konfiguracji pliku FLASH. Pozostałe elementy pozostają nie zmienione względem wcześniejszego postu dla STM32H7 LWIP.
Poniżej znajduje się opis adresów w pamięci układu.
Podobnie jak wcześniej należy dołożyć definicję buforów RX oraz TX.
- /* Uninitialized data section */
- . = ALIGN(4);
- .bss :
- {
- /* This is used by the startup in order to initialize the .bss secion */
- _sbss = .; /* define a global symbol at bss start */
- __bss_start__ = _sbss;
- *(.bss)
- *(.bss*)
- *(COMMON)
- . = ALIGN(32);
- *(.Rx_PoolSection)
- . = ALIGN(4);
- _ebss = .; /* define a global symbol at bss end */
- __bss_end__ = _ebss;
- } >RAM_D1
- .lwip_sec (NOLOAD) :
- {
- . = ABSOLUTE(0x30000000);
- *(.RxDecripSection)
- . = ABSOLUTE(0x30000100);
- *(.TxDecripSection)
- } >RAM_D2
Dla ukadu STM32H723 należy pamiętać, że pamięć RAM D2 ma 32kB. Zaczynając od adresu 0x30000000. Czyli z powyższymi usawieniami wprowadzamy 256 bajtów jako RxDescriptor oraz 256 bajtów jako TXDescriptor. Pozostały bufor czyli RX_PoolSection idzie do pamięci RAM_D1. Dotyczy to parametru RX_BUFFER_SIZE. Pozostałą część pamięci od adresu 0x30000200 mozna przeznaczyć na stos LWIP, domyślnie ma on wartosć 1600, w przypadku tak rozłożonej implementacji maksymalnie można wykorzystać 32232, która będzie przechowywana w pamięci RAM D2.
W pliku ethrnetif.c należy umieścić definicje buforów:
- ETH_DMADescTypeDef DMARxDscrTab[ETH_RX_DESC_CNT] __attribute__((section(".RxDecripSection")));
- ETH_DMADescTypeDef DMATxDscrTab[ETH_TX_DESC_CNT] __attribute__((section(".TxDecripSection")));
- __attribute__((section(".Rx_PoolSection"))) extern u8_t memp_memory_RX_POOL_base[];
W przypadku generowania projektu przez CubeMx zostaną wygenerowane pliki zawierające opis pamięci RAM oraz FLASH. Z takim zestawem plików nie udało mi się wygenerować działającego projektu LWIP. Zostawiłem tylko plik FLASH wygenerowany z przykładu udostępnionego przez ST.
Zmodyfikowane wartości pamięci wygląda następująco:
- /* Specify the memory areas */
- MEMORY
- {
- ITCMRAM (xrw) : ORIGIN = 0x00000000, LENGTH = 64K
- DTCMRAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
- FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
- RAM_D1 (xrw) : ORIGIN = 0x24000000, LENGTH = 320K
- RAM_D2 (xrw) : ORIGIN = 0x30000000, LENGTH = 32K
- RAM_D3 (xrw) : ORIGIN = 0x38000000, LENGTH = 16K
- }
Plik z ustawieniami biblioteki LWIP został ustawiony w następujący sposób:
- /**
- ******************************************************************************
- * File Name : Target/lwipopts.h
- * Description : This file overrides LwIP stack default configuration
- * done in opt.h file.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2020 STMicroelectronics.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by ST under Ultimate Liberty license
- * SLA0044, the "License"; You may not use this file except in compliance with
- * the License. You may obtain a copy of the License at:
- * www.st.com/SLA0044
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion --------------------------------------*/
- #ifndef __LWIPOPTS__H__
- #define __LWIPOPTS__H__
- #include "main.h"
- /*-----------------------------------------------------------------------------*/
- /* Current version of LwIP supported by CubeMx: 2.1.2 -*/
- /*-----------------------------------------------------------------------------*/
- /* Within 'USER CODE' section, code will be kept by default at each generation */
- /* USER CODE BEGIN 0 */
- /* USER CODE END 0 */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* STM32CubeMX Specific Parameters (not defined in opt.h) ---------------------*/
- /* Parameters set in STM32CubeMX LwIP Configuration GUI -*/
- ///*----- WITH_RTOS disabled (Since FREERTOS is not set) -----*/
- #define WITH_RTOS 0
- ///*----- CHECKSUM_BY_HARDWARE enabled -----*/
- #define CHECKSUM_BY_HARDWARE 1
- ///*-----------------------------------------------------------------------------*/
- //
- ///* LwIP Stack Parameters (modified compared to initialization value in opt.h) -*/
- ///* Parameters set in STM32CubeMX LwIP Configuration GUI -*/
- /*-----------------------------------------------------------------------------*/
- /* USER CODE BEGIN 1 */
- #define ETH_RX_BUFFER_SIZE (1536UL) //2048
- /**
- * SYS_LIGHTWEIGHT_PROT==1: if you want inter-task protection for certain
- * critical regions during buffer allocation, deallocation and memory
- * allocation and deallocation.
- */
- #define SYS_LIGHTWEIGHT_PROT 0
- /**
- * NO_SYS==1: Provides VERY minimal functionality. Otherwise,
- * use lwIP facilities.
- */
- #define NO_SYS 1
- /* ---------- Memory options ---------- */
- /* MEM_ALIGNMENT: should be set to the alignment of the CPU for which
- lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2
- byte alignment -> define MEM_ALIGNMENT to 2. */
- #define MEM_ALIGNMENT 4
- /* MEM_SIZE: the size of the heap memory. If the application will send
- a lot of data that needs to be copied, this should be set high. */
- #define MEM_SIZE (32232)
- /* Relocate the LwIP RAM heap pointer */
- #define LWIP_RAM_HEAP_POINTER (0x30000200)
- /* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application
- sends a lot of data out of ROM (or other static memory), this
- should be set high. */
- #define MEMP_NUM_PBUF 10
- /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
- per active UDP "connection". */
- #define MEMP_NUM_UDP_PCB 6
- /* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP
- connections. */
- #define MEMP_NUM_TCP_PCB 10
- /* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP
- connections. */
- #define MEMP_NUM_TCP_PCB_LISTEN 6
- /* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP
- segments. */
- #define MEMP_NUM_TCP_SEG 8
- /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active
- timeouts. */
- #define MEMP_NUM_SYS_TIMEOUT 10
- /* ---------- Pbuf options ---------- */
- /* PBUF_POOL_SIZE: the number of buffers in the pbuf pool.
- @ note: used to allocate Tx pbufs only */
- #define PBUF_POOL_SIZE 8
- /* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool */
- #define PBUF_POOL_BUFSIZE 1528
- /* LWIP_SUPPORT_CUSTOM_PBUF == 1: to pass directly MAC Rx buffers to the stack
- no copy is needed */
- #define LWIP_SUPPORT_CUSTOM_PBUF 1
- /*
- ------------------------------------------------
- ---------- Network Interfaces options ----------
- ------------------------------------------------
- */
- #define LWIP_NETIF_LINK_CALLBACK 1
- /* ---------- TCP options ---------- */
- #define LWIP_TCP 1
- #define TCP_TTL 255
- /* Controls if TCP should queue segments that arrive out of
- order. Define to 0 if your device is low on memory. */
- #define TCP_QUEUE_OOSEQ 1
- /* TCP Maximum segment size. */
- #define TCP_MSS (1500 - 40) /* TCP_MSS = (Ethernet MTU - IP header size - TCP header size) */
- /* TCP sender buffer space (bytes). */
- #define TCP_SND_BUF (4*TCP_MSS)
- /* TCP_SND_QUEUELEN: TCP sender buffer space (pbufs). This must be at least
- as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work. */
- #define TCP_SND_QUEUELEN (4* TCP_SND_BUF/TCP_MSS)
- /* TCP receive window. */
- #define TCP_WND (4*TCP_MSS)
- /* ---------- ICMP options ---------- */
- #define LWIP_ICMP 1
- /* ---------- DHCP options ---------- */
- #define LWIP_DHCP 0
- /* ---------- UDP options ---------- */
- #define LWIP_UDP 1
- #define UDP_TTL 255
- /* ---------- Statistics options ---------- */
- #define LWIP_STATS 0
- /*
- --------------------------------------
- ---------- Checksum options ----------
- --------------------------------------
- */
- /*
- The STM32H7xx allows computing and verifying the IP, UDP, TCP and ICMP checksums by hardware:
- - To use this feature let the following define uncommented.
- - To disable it and process by CPU comment the the checksum.
- */
- #define CHECKSUM_BY_HARDWARE
- #ifdef CHECKSUM_BY_HARDWARE
- /* CHECKSUM_GEN_IP==0: Generate checksums by hardware for outgoing IP packets.*/
- #define CHECKSUM_GEN_IP 0
- /* CHECKSUM_GEN_UDP==0: Generate checksums by hardware for outgoing UDP packets.*/
- #define CHECKSUM_GEN_UDP 0
- /* CHECKSUM_GEN_TCP==0: Generate checksums by hardware for outgoing TCP packets.*/
- #define CHECKSUM_GEN_TCP 0
- /* CHECKSUM_CHECK_IP==0: Check checksums by hardware for incoming IP packets.*/
- #define CHECKSUM_CHECK_IP 0
- /* CHECKSUM_CHECK_UDP==0: Check checksums by hardware for incoming UDP packets.*/
- #define CHECKSUM_CHECK_UDP 0
- /* CHECKSUM_CHECK_TCP==0: Check checksums by hardware for incoming TCP packets.*/
- #define CHECKSUM_CHECK_TCP 0
- /* CHECKSUM_GEN_ICMP==1: Check checksums by hardware for outgoing ICMP packets.*/
- /* Hardware TCP/UDP checksum insertion not supported when packet is an IPv4 fragment*/
- #define CHECKSUM_GEN_ICMP 1
- /* CHECKSUM_CHECK_ICMP==0: Check checksums by hardware for incoming ICMP packets.*/
- #define CHECKSUM_CHECK_ICMP 0
- #else
- /* CHECKSUM_GEN_IP==1: Generate checksums in software for outgoing IP packets.*/
- #define CHECKSUM_GEN_IP 1
- /* CHECKSUM_GEN_UDP==1: Generate checksums in software for outgoing UDP packets.*/
- #define CHECKSUM_GEN_UDP 1
- /* CHECKSUM_GEN_TCP==1: Generate checksums in software for outgoing TCP packets.*/
- #define CHECKSUM_GEN_TCP 1
- /* CHECKSUM_CHECK_IP==1: Check checksums in software for incoming IP packets.*/
- #define CHECKSUM_CHECK_IP 1
- /* CHECKSUM_CHECK_UDP==1: Check checksums in software for incoming UDP packets.*/
- #define CHECKSUM_CHECK_UDP 1
- /* CHECKSUM_CHECK_TCP==1: Check checksums in software for incoming TCP packets.*/
- #define CHECKSUM_CHECK_TCP 1
- /* CHECKSUM_GEN_ICMP==1: Check checksums by hardware for outgoing ICMP packets.*/
- #define CHECKSUM_GEN_ICMP 1
- /* CHECKSUM_CHECK_ICMP==1: Check checksums by hardware for incoming ICMP packets.*/
- #define CHECKSUM_CHECK_ICMP 1
- #endif
- /*
- ----------------------------------------------
- ---------- Sequential layer options ----------
- ----------------------------------------------
- */
- /**
- * LWIP_NETCONN==1: Enable Netconn API (require to use api_lib.c)
- */
- #define LWIP_NETCONN 0
- /*
- ------------------------------------
- ---------- Socket options ----------
- ------------------------------------
- */
- /**
- * LWIP_SOCKET==1: Enable Socket API (require to use sockets.c)
- */
- #define LWIP_SOCKET 0
- /* USER CODE END 1 */
- #ifdef __cplusplus
- }
- #endif
- #endif /*__LWIPOPTS__H__ */
- /************************* (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Pozostałe elementy zostają takie same jak w poprzednim opisywanym przykładzie dla układu STM32H7.