/**************************************************************************//* *//* Copyright (c) Microsoft Corporation. All rights reserved. *//* *//* This software is licensed under the Microsoft Software License *//* Terms for Microsoft Azure RTOS. Full text of the license can be *//* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA *//* and in the root directory of this software. *//* */.../**************************************************************************/#ifndefNX_STM32_ETH_DRIVER_H#defineNX_STM32_ETH_DRIVER_H#ifdef__cplusplus/* Yes, C++ compiler is present. Use standard C. */extern"C"{#endif/* Include ThreadX header file, if not already. */#ifndefTX_API_H#include"tx_api.h"#endif/* Include NetX header file, if not already. */#ifndefNX_API_H#include"nx_api.h"#endif/* Determine if the driver's source file is being compiled. The constants and typdefs are only valid within the driver's source file compilation. *//* ... */#ifdefNX_DRIVER_SOURCE/****** DRIVER SPECIFIC ****** Start of part/vendor specific include area. Include any such files here! */#include"nx_stm32_eth_config.h"/****** DRIVER SPECIFIC ****** End of part/vendor specific include file area! *//* Define generic constants and macros for all NetX Ethernet drivers. */#defineNX_DRIVER_ETHERNET_IP0x0800#defineNX_DRIVER_ETHERNET_IPV60x86dd#defineNX_DRIVER_ETHERNET_ARP0x0806#defineNX_DRIVER_ETHERNET_RARP0x8035#defineNX_DRIVER_ETHERNET_MTU1514#defineNX_DRIVER_ETHERNET_FRAME_SIZE14#defineNX_DRIVER_DEFERRED_PACKET_RECEIVED1#defineNX_DRIVER_DEFERRED_DEVICE_RESET2#defineNX_DRIVER_DEFERRED_PACKET_TRANSMITTED4#defineNX_DRIVER_STATE_NOT_INITIALIZED1#defineNX_DRIVER_STATE_INITIALIZE_FAILED2#defineNX_DRIVER_STATE_INITIALIZED3#defineNX_DRIVER_STATE_LINK_ENABLED4#defineNX_DRIVER_ERROR90#defineNX_DRIVER_ETHERNET_HEADER_REMOVE(p)\{\p->nx_packet_prepend_ptr=p->nx_packet_prepend_ptr+NX_DRIVER_ETHERNET_FRAME_SIZE;\p->nx_packet_length=p->nx_packet_length-NX_DRIVER_ETHERNET_FRAME_SIZE;\...}...15 defines/****** DRIVER SPECIFIC ****** Start of part/vendor specific constants area. Include any such constants here! *//* Define the number of descriptors and attached packets for transmit and receive operations. */#ifndefNX_DRIVER_TX_DESCRIPTORS#defineNX_DRIVER_TX_DESCRIPTORSETH_TX_DESC_CNT#endif#ifndefNX_DRIVER_RX_DESCRIPTORS#defineNX_DRIVER_RX_DESCRIPTORSETH_RX_DESC_CNT#endif/****** DRIVER SPECIFIC ****** End of part/vendor specific constant area! */#defineNX_DRIVER_CAPABILITY(NX_INTERFACE_CAPABILITY_IPV4_TX_CHECKSUM|\NX_INTERFACE_CAPABILITY_IPV4_RX_CHECKSUM|\NX_INTERFACE_CAPABILITY_TCP_TX_CHECKSUM|\NX_INTERFACE_CAPABILITY_TCP_RX_CHECKSUM|\NX_INTERFACE_CAPABILITY_UDP_TX_CHECKSUM|\NX_INTERFACE_CAPABILITY_UDP_RX_CHECKSUM|\NX_INTERFACE_CAPABILITY_ICMPV4_TX_CHECKSUM|\NX_INTERFACE_CAPABILITY_ICMPV4_RX_CHECKSUM|\NX_INTERFACE_CAPABILITY_ICMPV6_TX_CHECKSUM|\NX_INTERFACE_CAPABILITY_ICMPV6_RX_CHECKSUM).../* Define basic Ethernet driver information typedef. Note that this typedefs is designed to be used only in the driver's C file. *//* ... */typedefstructNX_DRIVER_INFORMATION_STRUCT{/* NetX IP instance that this driver is attached to. */NX_IP*nx_driver_information_ip_ptr;/* Driver's current state. */ULONGnx_driver_information_state;/* Packet pool used for receiving packets. */NX_PACKET_POOL*nx_driver_information_packet_pool_ptr;/* Define the driver interface association. */NX_INTERFACE*nx_driver_information_interface;/* Define the deferred event field. This will contain bits representing events deferred from the ISR for processing in the thread context. *//* ... */ULONGnx_driver_information_deferred_events;/****** DRIVER SPECIFIC ****** Start of part/vendor specific driver information area. Include any such constants here! *//* Indices to current receive/transmit descriptors. */UINTnx_driver_information_receive_current_index;UINTnx_driver_information_transmit_current_index;/* Transmit release index. */UINTnx_driver_information_transmit_release_index;/* Define the number of transmit buffers in use. */UINTnx_driver_information_number_of_transmit_buffers_in_use;/* Define the association between buffer descriptors and NetX packets. */NX_PACKET*nx_driver_information_transmit_packets[NX_DRIVER_TX_DESCRIPTORS];NX_PACKET*nx_driver_information_receive_packets[NX_DRIVER_RX_DESCRIPTORS];/* Define the size of a rx buffer size. */ULONGnx_driver_information_rx_buffer_size;ULONGnx_driver_information_multicast_count;/****** DRIVER SPECIFIC ****** End of part/vendor specific driver information area. */...}NX_DRIVER_INFORMATION;/* ... */#endif/****** DRIVER SPECIFIC ****** Start of part/vendor specific external function prototypes. A typical NetX Ethernet driver should expose its entry function as well as its interrupt handling function(s) here. All other functions in the driver should have local scope, i.e., defined as static. *//* ... *//* Define global driver entry function. */VOIDnx_stm32_eth_driver(NX_IP_DRIVER*driver_req_ptr);/****** DRIVER SPECIFIC ****** End of part/vendor specific external function prototypes. */#ifdef__cplusplus/* Yes, C++ compiler is present. Use standard C. */}/* ... */extern "C" { ... }#endif/* ... */...#endif/* NX_STM32_ETH_DRIVER_H */
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.