STM32C5 Ethernet MAC driver. More...
#include "stm32_hal.h"#include "core/net.h"#include "drivers/mac/stm32c5xx_eth_driver.h"#include "debug.h"Go to the source code of this file.
Macros | |
| #define | TRACE_LEVEL NIC_TRACE_LEVEL |
Functions | |
| error_t | stm32c5xxEthInit (NetInterface *interface) |
| STM32C5 Ethernet MAC initialization. More... | |
| __weak_func void | stm32c5xxEthInitGpio (NetInterface *interface) |
| GPIO configuration. More... | |
| void | stm32c5xxEthInitDmaDesc (NetInterface *interface) |
| Initialize DMA descriptor lists. More... | |
| void | stm32c5xxEthTick (NetInterface *interface) |
| STM32C5 Ethernet MAC timer handler. More... | |
| void | stm32c5xxEthEnableIrq (NetInterface *interface) |
| Enable interrupts. More... | |
| void | stm32c5xxEthDisableIrq (NetInterface *interface) |
| Disable interrupts. More... | |
| void | ETH_IRQHandler (void) |
| STM32C5 Ethernet MAC interrupt service routine. More... | |
| void | stm32c5xxEthEventHandler (NetInterface *interface) |
| STM32C5 Ethernet MAC event handler. More... | |
| error_t | stm32c5xxEthSendPacket (NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary) |
| Send a packet. More... | |
| error_t | stm32c5xxEthReceivePacket (NetInterface *interface) |
| Receive a packet. More... | |
| error_t | stm32c5xxEthUpdateMacAddrFilter (NetInterface *interface) |
| Configure MAC address filtering. More... | |
| error_t | stm32c5xxEthUpdateMacConfig (NetInterface *interface) |
| Adjust MAC configuration parameters for proper operation. More... | |
| void | stm32c5xxEthWritePhyReg (uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data) |
| Write PHY register. More... | |
| uint16_t | stm32c5xxEthReadPhyReg (uint8_t opcode, uint8_t phyAddr, uint8_t regAddr) |
| Read PHY register. More... | |
| uint32_t | stm32c5xxEthCalcCrc (const void *data, size_t length) |
| CRC calculation. More... | |
Variables | |
| const NicDriver | stm32c5xxEthDriver |
| STM32C5 Ethernet MAC driver. More... | |
Detailed Description
STM32C5 Ethernet MAC driver.
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2026 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneTCP Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- Version
- 2.6.2
Definition in file stm32c5xx_eth_driver.c.
Macro Definition Documentation
◆ TRACE_LEVEL
| #define TRACE_LEVEL NIC_TRACE_LEVEL |
Definition at line 32 of file stm32c5xx_eth_driver.c.
Function Documentation
◆ ETH_IRQHandler()
| void ETH_IRQHandler | ( | void | ) |
STM32C5 Ethernet MAC interrupt service routine.
Definition at line 448 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthCalcCrc()
| uint32_t stm32c5xxEthCalcCrc | ( | const void * | data, |
| size_t | length | ||
| ) |
CRC calculation.
- Parameters
-
[in] data Pointer to the data over which to calculate the CRC [in] length Number of bytes to process
- Returns
- Resulting CRC value
Definition at line 952 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthDisableIrq()
| void stm32c5xxEthDisableIrq | ( | NetInterface * | interface | ) |
Disable interrupts.
- Parameters
-
[in] interface Underlying network interface
Definition at line 421 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthEnableIrq()
| void stm32c5xxEthEnableIrq | ( | NetInterface * | interface | ) |
Enable interrupts.
- Parameters
-
[in] interface Underlying network interface
Definition at line 393 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthEventHandler()
| void stm32c5xxEthEventHandler | ( | NetInterface * | interface | ) |
STM32C5 Ethernet MAC event handler.
- Parameters
-
[in] interface Underlying network interface
Definition at line 501 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthInit()
| error_t stm32c5xxEthInit | ( | NetInterface * | interface | ) |
STM32C5 Ethernet MAC initialization.
- Parameters
-
[in] interface Underlying network interface
- Returns
- Error code
Definition at line 114 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthInitDmaDesc()
| void stm32c5xxEthInitDmaDesc | ( | NetInterface * | interface | ) |
Initialize DMA descriptor lists.
- Parameters
-
[in] interface Underlying network interface
Definition at line 317 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthInitGpio()
| __weak_func void stm32c5xxEthInitGpio | ( | NetInterface * | interface | ) |
GPIO configuration.
- Parameters
-
[in] interface Underlying network interface
Definition at line 248 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthReadPhyReg()
| uint16_t stm32c5xxEthReadPhyReg | ( | uint8_t | opcode, |
| uint8_t | phyAddr, | ||
| uint8_t | regAddr | ||
| ) |
Read PHY register.
- Parameters
-
[in] opcode Access type (2 bits) [in] phyAddr PHY address (5 bits) [in] regAddr Register address (5 bits)
- Returns
- Register value
Definition at line 906 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthReceivePacket()
| error_t stm32c5xxEthReceivePacket | ( | NetInterface * | interface | ) |
Receive a packet.
- Parameters
-
[in] interface Underlying network interface
- Returns
- Error code
Definition at line 591 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthSendPacket()
| error_t stm32c5xxEthSendPacket | ( | NetInterface * | interface, |
| const NetBuffer * | buffer, | ||
| size_t | offset, | ||
| NetTxAncillary * | ancillary | ||
| ) |
Send a packet.
- Parameters
-
[in] interface Underlying network interface [in] buffer Multi-part buffer containing the data to send [in] offset Offset to the first data byte [in] ancillary Additional options passed to the stack along with the packet
- Returns
- Error code
Definition at line 526 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthTick()
| void stm32c5xxEthTick | ( | NetInterface * | interface | ) |
STM32C5 Ethernet MAC timer handler.
This routine is periodically called by the TCP/IP stack to handle periodic operations such as polling the link state
- Parameters
-
[in] interface Underlying network interface
Definition at line 368 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthUpdateMacAddrFilter()
| error_t stm32c5xxEthUpdateMacAddrFilter | ( | NetInterface * | interface | ) |
Configure MAC address filtering.
- Parameters
-
[in] interface Underlying network interface
- Returns
- Error code
Definition at line 677 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthUpdateMacConfig()
| error_t stm32c5xxEthUpdateMacConfig | ( | NetInterface * | interface | ) |
Adjust MAC configuration parameters for proper operation.
- Parameters
-
[in] interface Underlying network interface
- Returns
- Error code
Definition at line 821 of file stm32c5xx_eth_driver.c.
◆ stm32c5xxEthWritePhyReg()
| void stm32c5xxEthWritePhyReg | ( | uint8_t | opcode, |
| uint8_t | phyAddr, | ||
| uint8_t | regAddr, | ||
| uint16_t | data | ||
| ) |
Write PHY register.
- Parameters
-
[in] opcode Access type (2 bits) [in] phyAddr PHY address (5 bits) [in] regAddr Register address (5 bits) [in] data Register value
Definition at line 864 of file stm32c5xx_eth_driver.c.
