stm32_eth.h 81 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610
  1. /**
  2. ******************************************************************************
  3. * @file stm32_eth.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 06/19/2009
  7. * @brief This file contains all the functions prototypes for the Ethernet
  8. * firmware library.
  9. ******************************************************************************
  10. * @copy
  11. *
  12. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  13. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
  14. * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
  15. * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
  16. * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
  17. * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  18. *
  19. * <h2><center>&copy; COPYRIGHT 2009 STMicroelectronics</center></h2>
  20. */
  21. /* Define to prevent recursive inclusion -------------------------------------*/
  22. #ifndef __STM32_ETH_H
  23. #define __STM32_ETH_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm32f10x.h"
  29. /** @addtogroup STM32_ETH_Driver
  30. * @{
  31. */
  32. /** @defgroup ETH_Exported_Types
  33. * @{
  34. */
  35. /**
  36. * @brief ETH MAC Init structure definition
  37. */
  38. typedef struct {
  39. /**
  40. * @brief / * MAC
  41. */
  42. uint32_t ETH_AutoNegotiation; /*!< Selects or not the AutoNegotiation with the external PHY */
  43. uint32_t ETH_Watchdog; /*!< Enable/disable Watchdog timer */
  44. uint32_t ETH_Jabber; /*!< Enable/disable Jabber timer */
  45. uint32_t ETH_InterFrameGap; /*!< Selects minimum IFG between frames during transmission */
  46. uint32_t ETH_CarrierSense; /*!< Enable/disable Carrier Sense */
  47. uint32_t ETH_Speed; /*!< Indicates the Ethernet speed: 10/100 Mbps */
  48. uint32_t ETH_ReceiveOwn; /*!< Enable/disable the reception of frames when the TX_EN signal is asserted in Half-Duplex mode */
  49. uint32_t ETH_LoopbackMode; /*!< Enable/disable internal MAC MII Loopback mode */
  50. uint32_t ETH_Mode; /*!< Selects the MAC duplex mode: Half-Duplex or Full-Duplex mode */
  51. uint32_t ETH_ChecksumOffload; /*!< Enable/disable the calculation of complement sum of all received Ethernet frame payloads */
  52. uint32_t ETH_RetryTransmission; /*!< Enable/disable the MAC attempt retries transmission, based on the settings of BL, when a colision occurs (Half-Duplex mode) */
  53. uint32_t ETH_AutomaticPadCRCStrip; /*!< Enable/disable Automatic MAC Pad/CRC Stripping */
  54. uint32_t ETH_BackOffLimit; /*!< Selects the BackOff limit value */
  55. uint32_t ETH_DeferralCheck; /*!< Enable/disable deferral check function (Half-Duplex mode) */
  56. uint32_t ETH_ReceiveAll; /*!< Enable/disable all frames reception by the MAC (No fitering)*/
  57. uint32_t ETH_SourceAddrFilter; /*!< Selects EnableNormal/EnableInverse/disable Source Address Filter comparison */
  58. uint32_t ETH_PassControlFrames; /*!< Selects None/All/FilterPass of all control frames (including unicast and multicast PAUSE frames) */
  59. uint32_t ETH_BroadcastFramesReception; /*!< Enable/disable reception of Broadcast Frames */
  60. uint32_t ETH_DestinationAddrFilter; /*!< Selects EnableNormal/EnableInverse destination filter for both unicast and multicast frames */
  61. uint32_t ETH_PromiscuousMode; /*!< Enable/disable Promiscuous Mode */
  62. uint32_t ETH_MulticastFramesFilter; /*!< Selects the Multicast Frames filter: None/HashTableFilter/PerfectFilter/PerfectHashTableFilter */
  63. uint32_t ETH_UnicastFramesFilter; /*!< Selects the Unicast Frames filter: HashTableFilter/PerfectFilter/PerfectHashTableFilter */
  64. uint32_t ETH_HashTableHigh; /*!< This field contains the higher 32 bits of Hash table. */
  65. uint32_t ETH_HashTableLow; /*!< This field contains the lower 32 bits of Hash table. */
  66. uint32_t ETH_PauseTime; /*!< This field holds the value to be used in the Pause Time field in the transmit control frame */
  67. uint32_t ETH_ZeroQuantaPause; /*!< Enable/disable the automatic generation of Zero-Quanta Pause Control frames */
  68. uint32_t ETH_PauseLowThreshold; /*!< This field configures the threshold of the PAUSE to be checked for automatic retransmission of PAUSE Frame */
  69. uint32_t ETH_UnicastPauseFrameDetect; /*!< Enable/disable MAC to detect the Pause frames (with MAC Address0 unicast address and unique multicast address) */
  70. uint32_t ETH_ReceiveFlowControl; /*!< Enable/disable the MAC to decode the received Pause frame and disable its transmitter for a specified (Pause Time) time */
  71. uint32_t ETH_TransmitFlowControl; /*!< Enable/disable the MAC to transmit Pause frames (Full-Duplex mode) or the MAC back-pressure operation (Half-Duplex mode) */
  72. uint32_t ETH_VLANTagComparison; /*!< Selects the 12-bit VLAN identifier or the complete 16-bit VLAN tag for comparison and filtering */
  73. uint32_t ETH_VLANTagIdentifier; /*!< VLAN tag identifier for receive frames */
  74. /**
  75. * @brief / * DMA
  76. */
  77. uint32_t ETH_DropTCPIPChecksumErrorFrame; /*!< Enable/disable Dropping of TCP/IP Checksum Error Frames */
  78. uint32_t ETH_ReceiveStoreForward; /*!< Enable/disable Receive store and forward */
  79. uint32_t ETH_FlushReceivedFrame; /*!< Enable/disable flushing of received frames */
  80. uint32_t ETH_TransmitStoreForward; /*!< Enable/disable Transmit store and forward */
  81. uint32_t ETH_TransmitThresholdControl; /*!< Selects the Transmit Threshold Control */
  82. uint32_t ETH_ForwardErrorFrames; /*!< Enable/disable forward to DMA of all frames except runt error frames */
  83. uint32_t ETH_ForwardUndersizedGoodFrames; /*!< Enable/disable Rx FIFO to forward Undersized frames (frames with no Error and length less than 64 bytes) including pad-bytes and CRC) */
  84. uint32_t ETH_ReceiveThresholdControl; /*!< Selects the threshold level of the Receive FIFO */
  85. uint32_t ETH_SecondFrameOperate; /*!< Enable/disable the DMA process of a second frame of Transmit data even before status for first frame is obtained */
  86. uint32_t ETH_AddressAlignedBeats; /*!< Enable/disable Address Aligned Beats */
  87. uint32_t ETH_FixedBurst; /*!< Enable/disable the AHB Master interface fixed burst transfers */
  88. uint32_t ETH_RxDMABurstLength; /*!< Indicate the maximum number of beats to be transferred in one Rx DMA transaction */
  89. uint32_t ETH_TxDMABurstLength; /*!< Indicate the maximum number of beats to be transferred in one Tx DMA transaction */
  90. uint32_t ETH_DescriptorSkipLength; /*!< Specifies the number of word to skip between two unchained descriptors (Ring mode) */
  91. uint32_t ETH_DMAArbitration; /*!< Selects DMA Tx/Rx arbitration */
  92. }ETH_InitTypeDef;
  93. /**--------------------------------------------------------------------------**/
  94. /**
  95. * @brief DMA descriptors types
  96. */
  97. /**--------------------------------------------------------------------------**/
  98. /**
  99. * @brief ETH DMA Desciptors data structure definition
  100. */
  101. typedef struct {
  102. uint32_t Status; /*!< Status */
  103. uint32_t ControlBufferSize; /*!< Control and Buffer1, Buffer2 lengths */
  104. uint32_t Buffer1Addr; /*!< Buffer1 address pointer */
  105. uint32_t Buffer2NextDescAddr; /*!< Buffer2 or next descriptor address pointer */
  106. } ETH_DMADESCTypeDef;
  107. /**
  108. * @}
  109. */
  110. /** @defgroup ETH_Exported_Constants
  111. * @{
  112. */
  113. /**--------------------------------------------------------------------------**/
  114. /**
  115. * @brief ETH Frames defines
  116. */
  117. /**--------------------------------------------------------------------------**/
  118. /** @defgroup ENET_Buffers_setting
  119. * @{
  120. */
  121. #define ETH_MAX_PACKET_SIZE 1520 /*!< ETH_HEADER + ETH_EXTRA + MAX_ETH_PAYLOAD + ETH_CRC */
  122. #define ETH_HEADER 14 /*!< 6 byte Dest addr, 6 byte Src addr, 2 byte length/type */
  123. #define ETH_CRC 4 /*!< Ethernet CRC */
  124. #define ETH_EXTRA 2 /*!< Extra bytes in some cases */
  125. #define VLAN_TAG 4 /*!< optional 802.1q VLAN Tag */
  126. #define MIN_ETH_PAYLOAD 46 /*!< Minimum Ethernet payload size */
  127. #define MAX_ETH_PAYLOAD 1500 /*!< Maximum Ethernet payload size */
  128. #define JUMBO_FRAME_PAYLOAD 9000 /*!< Jumbo frame payload size */
  129. /**--------------------------------------------------------------------------**/
  130. /**
  131. * @brief Ethernet DMA descriptors registers bits definition
  132. */
  133. /**--------------------------------------------------------------------------**/
  134. /* DMA Tx Desciptor -----------------------------------------------------------*/
  135. /**----------------------------------------------------------------------------------------------
  136. TDES0 | OWN(31) | CTRL[30:26] | Reserved[25:24] | CTRL[23:20] | Reserved[19:17] | Status[16:0] |
  137. -----------------------------------------------------------------------------------------------
  138. TDES1 | Reserved[31:29] | Buffer2 ByteCount[28:16] | Reserved[15:13] | Buffer1 ByteCount[12:0] |
  139. -----------------------------------------------------------------------------------------------
  140. TDES2 | Buffer1 Address [31:0] |
  141. -----------------------------------------------------------------------------------------------
  142. TDES3 | Buffer2 Address [31:0] / Next Desciptor Address [31:0] |
  143. ---------------------------------------------------------------------------------------------**/
  144. /**
  145. * @brief Bit definition of TDES0 register: DMA Tx descriptor status register
  146. */
  147. #define ETH_DMATxDesc_OWN ((uint32_t)0x80000000) /*!< OWN bit: descriptor is owned by DMA engine */
  148. #define ETH_DMATxDesc_IC ((uint32_t)0x40000000) /*!< Interrupt on Completion */
  149. #define ETH_DMATxDesc_LS ((uint32_t)0x20000000) /*!< Last Segment */
  150. #define ETH_DMATxDesc_FS ((uint32_t)0x10000000) /*!< First Segment */
  151. #define ETH_DMATxDesc_DC ((uint32_t)0x08000000) /*!< Disable CRC */
  152. #define ETH_DMATxDesc_DP ((uint32_t)0x04000000) /*!< Disable Padding */
  153. #define ETH_DMATxDesc_TTSE ((uint32_t)0x02000000) /*!< Transmit Time Stamp Enable */
  154. #define ETH_DMATxDesc_CIC ((uint32_t)0x00C00000) /*!< Checksum Insertion Control: 4 cases */
  155. #define ETH_DMATxDesc_CIC_ByPass ((uint32_t)0x00000000) /*!< Do Nothing: Checksum Engine is bypassed */
  156. #define ETH_DMATxDesc_CIC_IPV4Header ((uint32_t)0x00400000) /*!< IPV4 header Checksum Insertion */
  157. #define ETH_DMATxDesc_CIC_TCPUDPICMP_Segment ((uint32_t)0x00800000) /*!< TCP/UDP/ICMP Checksum Insertion calculated over segment only */
  158. #define ETH_DMATxDesc_CIC_TCPUDPICMP_Full ((uint32_t)0x00C00000) /*!< TCP/UDP/ICMP Checksum Insertion fully calculated */
  159. #define ETH_DMATxDesc_TER ((uint32_t)0x00200000) /*!< Transmit End of Ring */
  160. #define ETH_DMATxDesc_TCH ((uint32_t)0x00100000) /*!< Second Address Chained */
  161. #define ETH_DMATxDesc_TTSS ((uint32_t)0x00020000) /*!< Tx Time Stamp Status */
  162. #define ETH_DMATxDesc_IHE ((uint32_t)0x00010000) /*!< IP Header Error */
  163. #define ETH_DMATxDesc_ES ((uint32_t)0x00008000) /*!< Error summary: OR of the following bits: UE || ED || EC || LCO || NC || LCA || FF || JT */
  164. #define ETH_DMATxDesc_JT ((uint32_t)0x00004000) /*!< Jabber Timeout */
  165. #define ETH_DMATxDesc_FF ((uint32_t)0x00002000) /*!< Frame Flushed: DMA/MTL flushed the frame due to SW flush */
  166. #define ETH_DMATxDesc_PCE ((uint32_t)0x00001000) /*!< Payload Checksum Error */
  167. #define ETH_DMATxDesc_LCA ((uint32_t)0x00000800) /*!< Loss of Carrier: carrier lost during tramsmission */
  168. #define ETH_DMATxDesc_NC ((uint32_t)0x00000400) /*!< No Carrier: no carrier signal from the tranceiver */
  169. #define ETH_DMATxDesc_LCO ((uint32_t)0x00000200) /*!< Late Collision: transmission aborted due to collision */
  170. #define ETH_DMATxDesc_EC ((uint32_t)0x00000100) /*!< Excessive Collision: transmission aborted after 16 collisions */
  171. #define ETH_DMATxDesc_VF ((uint32_t)0x00000080) /*!< VLAN Frame */
  172. #define ETH_DMATxDesc_CC ((uint32_t)0x00000078) /*!< Collision Count */
  173. #define ETH_DMATxDesc_ED ((uint32_t)0x00000004) /*!< Excessive Deferral */
  174. #define ETH_DMATxDesc_UF ((uint32_t)0x00000002) /*!< Underflow Error: late data arrival from the memory */
  175. #define ETH_DMATxDesc_DB ((uint32_t)0x00000001) /*!< Deferred Bit */
  176. /**
  177. * @brief Bit definition of TDES1 register
  178. */
  179. #define ETH_DMATxDesc_TBS2 ((uint32_t)0x1FFF0000) /*!< Transmit Buffer2 Size */
  180. #define ETH_DMATxDesc_TBS1 ((uint32_t)0x00001FFF) /*!< Transmit Buffer1 Size */
  181. /**
  182. * @brief Bit definition of TDES2 register
  183. */
  184. #define ETH_DMATxDesc_B1AP ((uint32_t)0xFFFFFFFF) /*!< Buffer1 Address Pointer */
  185. /**
  186. * @brief Bit definition of TDES3 register
  187. */
  188. #define ETH_DMATxDesc_B2AP ((uint32_t)0xFFFFFFFF) /*!< Buffer2 Address Pointer */
  189. /**
  190. * @}
  191. */
  192. /** @defgroup DMA_Rx_descriptor
  193. * @{
  194. */
  195. /**--------------------------------------------------------------------------------------------------------------------
  196. RDES0 | OWN(31) | Status [30:0] |
  197. ---------------------------------------------------------------------------------------------------------------------
  198. RDES1 | CTRL(31) | Reserved[30:29] | Buffer2 ByteCount[28:16] | CTRL[15:14] | Reserved(13) | Buffer1 ByteCount[12:0] |
  199. ---------------------------------------------------------------------------------------------------------------------
  200. RDES2 | Buffer1 Address [31:0] |
  201. ---------------------------------------------------------------------------------------------------------------------
  202. RDES3 | Buffer2 Address [31:0] / Next Desciptor Address [31:0] |
  203. -------------------------------------------------------------------------------------------------------------------**/
  204. /**
  205. * @brief Bit definition of RDES0 register: DMA Rx descriptor status register
  206. */
  207. #define ETH_DMARxDesc_OWN ((uint32_t)0x80000000) /*!< OWN bit: descriptor is owned by DMA engine */
  208. #define ETH_DMARxDesc_AFM ((uint32_t)0x40000000) /*!< DA Filter Fail for the rx frame */
  209. #define ETH_DMARxDesc_FL ((uint32_t)0x3FFF0000) /*!< Receive descriptor frame length */
  210. #define ETH_DMARxDesc_ES ((uint32_t)0x00008000) /*!< Error summary: OR of the following bits: DE || OE || IPC || LC || RWT || RE || CE */
  211. #define ETH_DMARxDesc_DE ((uint32_t)0x00004000) /*!< Desciptor error: no more descriptors for receive frame */
  212. #define ETH_DMARxDesc_SAF ((uint32_t)0x00002000) /*!< SA Filter Fail for the received frame */
  213. #define ETH_DMARxDesc_LE ((uint32_t)0x00001000) /*!< Frame size not matching with length field */
  214. #define ETH_DMARxDesc_OE ((uint32_t)0x00000800) /*!< Overflow Error: Frame was damaged due to buffer overflow */
  215. #define ETH_DMARxDesc_VLAN ((uint32_t)0x00000400) /*!< VLAN Tag: received frame is a VLAN frame */
  216. #define ETH_DMARxDesc_FS ((uint32_t)0x00000200) /*!< First descriptor of the frame */
  217. #define ETH_DMARxDesc_LS ((uint32_t)0x00000100) /*!< Last descriptor of the frame */
  218. #define ETH_DMARxDesc_IPV4HCE ((uint32_t)0x00000080) /*!< IPC Checksum Error: Rx Ipv4 header checksum error */
  219. #define ETH_DMARxDesc_LC ((uint32_t)0x00000040) /*!< Late collision occurred during reception */
  220. #define ETH_DMARxDesc_FT ((uint32_t)0x00000020) /*!< Frame type - Ethernet, otherwise 802.3 */
  221. #define ETH_DMARxDesc_RWT ((uint32_t)0x00000010) /*!< Receive Watchdog Timeout: watchdog timer expired during reception */
  222. #define ETH_DMARxDesc_RE ((uint32_t)0x00000008) /*!< Receive error: error reported by MII interface */
  223. #define ETH_DMARxDesc_DBE ((uint32_t)0x00000004) /*!< Dribble bit error: frame contains non int multiple of 8 bits */
  224. #define ETH_DMARxDesc_CE ((uint32_t)0x00000002) /*!< CRC error */
  225. #define ETH_DMARxDesc_MAMPCE ((uint32_t)0x00000001) /*!< Rx MAC Address/Payload Checksum Error: Rx MAC address matched/ Rx Payload Checksum Error */
  226. /**
  227. * @brief Bit definition of RDES1 register
  228. */
  229. #define ETH_DMARxDesc_DIC ((uint32_t)0x80000000) /*!< Disable Interrupt on Completion */
  230. #define ETH_DMARxDesc_RBS2 ((uint32_t)0x1FFF0000) /*!< Receive Buffer2 Size */
  231. #define ETH_DMARxDesc_RER ((uint32_t)0x00008000) /*!< Receive End of Ring */
  232. #define ETH_DMARxDesc_RCH ((uint32_t)0x00004000) /*!< Second Address Chained */
  233. #define ETH_DMARxDesc_RBS1 ((uint32_t)0x00001FFF) /*!< Receive Buffer1 Size */
  234. /**
  235. * @brief Bit definition of RDES2 register
  236. */
  237. #define ETH_DMARxDesc_B1AP ((uint32_t)0xFFFFFFFF) /*!< Buffer1 Address Pointer */
  238. /**
  239. * @brief Bit definition of RDES3 register
  240. */
  241. #define ETH_DMARxDesc_B2AP ((uint32_t)0xFFFFFFFF) /*!< Buffer2 Address Pointer */
  242. /**--------------------------------------------------------------------------**/
  243. /**
  244. * @brief Desciption of common PHY registers
  245. */
  246. /**--------------------------------------------------------------------------**/
  247. /**
  248. * @}
  249. */
  250. /** @defgroup PHY_Read_write_Timeouts
  251. * @{
  252. */
  253. #define PHY_READ_TO ((uint32_t)0x0004FFFF)
  254. #define PHY_WRITE_TO ((uint32_t)0x0004FFFF)
  255. /**
  256. * @}
  257. */
  258. /** @defgroup PHY_Reset_Delay
  259. * @{
  260. */
  261. #define PHY_ResetDelay ((uint32_t)0x000FFFFF)
  262. /**
  263. * @}
  264. */
  265. /** @defgroup PHY_Config_Delay
  266. * @{
  267. */
  268. #define PHY_ConfigDelay ((uint32_t)0x00FFFFFF)
  269. /**
  270. * @}
  271. */
  272. /** @defgroup PHY_Register_address
  273. * @{
  274. */
  275. #define PHY_BCR 0 /*!< Tranceiver Basic Control Register */
  276. #define PHY_BSR 1 /*!< Tranceiver Basic Status Register */
  277. /**
  278. * @}
  279. */
  280. /** @defgroup PHY_basic_Control_register
  281. * @{
  282. */
  283. #define PHY_Reset ((u16)0x8000) /*!< PHY Reset */
  284. #define PHY_Loopback ((u16)0x4000) /*!< Select loop-back mode */
  285. #define PHY_FULLDUPLEX_100M ((u16)0x2100) /*!< Set the full-duplex mode at 100 Mb/s */
  286. #define PHY_HALFDUPLEX_100M ((u16)0x2000) /*!< Set the half-duplex mode at 100 Mb/s */
  287. #define PHY_FULLDUPLEX_10M ((u16)0x0100) /*!< Set the full-duplex mode at 10 Mb/s */
  288. #define PHY_HALFDUPLEX_10M ((u16)0x0000) /*!< Set the half-duplex mode at 10 Mb/s */
  289. #define PHY_AutoNegotiation ((u16)0x1000) /*!< Enable auto-negotiation function */
  290. #define PHY_Restart_AutoNegotiation ((u16)0x0200) /*!< Restart auto-negotiation function */
  291. #define PHY_Powerdown ((u16)0x0800) /*!< Select the power down mode */
  292. #define PHY_Isolate ((u16)0x0400) /*!< Isolate PHY from MII */
  293. /**
  294. * @}
  295. */
  296. /** @defgroup PHY_basic_status_register
  297. * @{
  298. */
  299. #define PHY_AutoNego_Complete ((u16)0x0020) /*!< Auto-Negotioation process completed */
  300. #define PHY_Linked_Status ((u16)0x0004) /*!< Valid link established */
  301. #define PHY_Jabber_detection ((u16)0x0002) /*!< Jabber condition detected */
  302. /**
  303. * @}
  304. */
  305. /** @defgroup PHY_status_register
  306. * @{
  307. */
  308. /* The PHY status register value change from a PHY to another so the user have
  309. to update this value depending on the used external PHY */
  310. /**
  311. * @brief For LAN8700
  312. */
  313. //#define PHY_SR 31 /*!< Tranceiver Status Register */
  314. /**
  315. * @brief For DP83848
  316. */
  317. #define PHY_SR 16 /*!< Tranceiver Status Register */
  318. /* The Speed and Duplex mask values change from a PHY to another so the user have to update
  319. this value depending on the used external PHY */
  320. /**
  321. * @brief For LAN8700
  322. */
  323. //#define PHY_Speed_Status ((u16)0x0004) /*!< Configured information of Speed: 10Mbps */
  324. //#define PHY_Duplex_Status ((u16)0x0010) /*!< Configured information of Duplex: Full-duplex */
  325. /**
  326. * @brief For DP83848
  327. */
  328. #define PHY_Speed_Status ((u16)0x0002) /*!< Configured information of Speed: 10Mbps */
  329. #define PHY_Duplex_Status ((u16)0x0004) /*!< Configured information of Duplex: Full-duplex */
  330. #define IS_ETH_PHY_ADDRESS(ADDRESS) ((ADDRESS) <= 0x20)
  331. #define IS_ETH_PHY_REG(REG) (((REG) == PHY_BCR) || \
  332. ((REG) == PHY_BSR) || \
  333. ((REG) == PHY_SR))
  334. /**--------------------------------------------------------------------------**/
  335. /**
  336. * @brief MAC defines
  337. */
  338. /**--------------------------------------------------------------------------**/
  339. /**
  340. * @}
  341. */
  342. /** @defgroup ETH_AutoNegotiation
  343. * @{
  344. */
  345. #define ETH_AutoNegotiation_Enable ((uint32_t)0x00000001)
  346. #define ETH_AutoNegotiation_Disable ((uint32_t)0x00000000)
  347. #define IS_ETH_AUTONEGOTIATION(CMD) (((CMD) == ETH_AutoNegotiation_Enable) || \
  348. ((CMD) == ETH_AutoNegotiation_Disable))
  349. /**
  350. * @}
  351. */
  352. /** @defgroup ETH_watchdog
  353. * @{
  354. */
  355. #define ETH_Watchdog_Enable ((uint32_t)0x00000000)
  356. #define ETH_Watchdog_Disable ((uint32_t)0x00800000)
  357. #define IS_ETH_WATCHDOG(CMD) (((CMD) == ETH_Watchdog_Enable) || \
  358. ((CMD) == ETH_Watchdog_Disable))
  359. /**
  360. * @}
  361. */
  362. /** @defgroup ETH_Jabber
  363. * @{
  364. */
  365. #define ETH_Jabber_Enable ((uint32_t)0x00000000)
  366. #define ETH_Jabber_Disable ((uint32_t)0x00400000)
  367. #define IS_ETH_JABBER(CMD) (((CMD) == ETH_Jabber_Enable) || \
  368. ((CMD) == ETH_Jabber_Disable))
  369. /**
  370. * @}
  371. */
  372. /** @defgroup ETH_Inter_Frame_Gap
  373. * @{
  374. */
  375. #define ETH_InterFrameGap_96Bit ((uint32_t)0x00000000) /*!< minimum IFG between frames during transmission is 96Bit */
  376. #define ETH_InterFrameGap_88Bit ((uint32_t)0x00020000) /*!< minimum IFG between frames during transmission is 88Bit */
  377. #define ETH_InterFrameGap_80Bit ((uint32_t)0x00040000) /*!< minimum IFG between frames during transmission is 80Bit */
  378. #define ETH_InterFrameGap_72Bit ((uint32_t)0x00060000) /*!< minimum IFG between frames during transmission is 72Bit */
  379. #define ETH_InterFrameGap_64Bit ((uint32_t)0x00080000) /*!< minimum IFG between frames during transmission is 64Bit */
  380. #define ETH_InterFrameGap_56Bit ((uint32_t)0x000A0000) /*!< minimum IFG between frames during transmission is 56Bit */
  381. #define ETH_InterFrameGap_48Bit ((uint32_t)0x000C0000) /*!< minimum IFG between frames during transmission is 48Bit */
  382. #define ETH_InterFrameGap_40Bit ((uint32_t)0x000E0000) /*!< minimum IFG between frames during transmission is 40Bit */
  383. #define IS_ETH_INTER_FRAME_GAP(GAP) (((GAP) == ETH_InterFrameGap_96Bit) || \
  384. ((GAP) == ETH_InterFrameGap_88Bit) || \
  385. ((GAP) == ETH_InterFrameGap_80Bit) || \
  386. ((GAP) == ETH_InterFrameGap_72Bit) || \
  387. ((GAP) == ETH_InterFrameGap_64Bit) || \
  388. ((GAP) == ETH_InterFrameGap_56Bit) || \
  389. ((GAP) == ETH_InterFrameGap_48Bit) || \
  390. ((GAP) == ETH_InterFrameGap_40Bit))
  391. /**
  392. * @}
  393. */
  394. /** @defgroup ETH_Carrier_Sense
  395. * @{
  396. */
  397. #define ETH_CarrierSense_Enable ((uint32_t)0x00000000)
  398. #define ETH_CarrierSense_Disable ((uint32_t)0x00010000)
  399. #define IS_ETH_CARRIER_SENSE(CMD) (((CMD) == ETH_CarrierSense_Enable) || \
  400. ((CMD) == ETH_CarrierSense_Disable))
  401. /**
  402. * @}
  403. */
  404. /** @defgroup ETH_Speed
  405. * @{
  406. */
  407. #define ETH_Speed_10M ((uint32_t)0x00000000)
  408. #define ETH_Speed_100M ((uint32_t)0x00004000)
  409. #define IS_ETH_SPEED(SPEED) (((SPEED) == ETH_Speed_10M) || \
  410. ((SPEED) == ETH_Speed_100M))
  411. /**
  412. * @}
  413. */
  414. /** @defgroup ETH_Receive_Own
  415. * @{
  416. */
  417. #define ETH_ReceiveOwn_Enable ((uint32_t)0x00000000)
  418. #define ETH_ReceiveOwn_Disable ((uint32_t)0x00002000)
  419. #define IS_ETH_RECEIVE_OWN(CMD) (((CMD) == ETH_ReceiveOwn_Enable) || \
  420. ((CMD) == ETH_ReceiveOwn_Disable))
  421. /**
  422. * @}
  423. */
  424. /** @defgroup ETH_Loop_back_Mode
  425. * @{
  426. */
  427. #define ETH_LoopbackMode_Enable ((uint32_t)0x00001000)
  428. #define ETH_LoopbackMode_Disable ((uint32_t)0x00000000)
  429. #define IS_ETH_LOOPBACK_MODE(CMD) (((CMD) == ETH_LoopbackMode_Enable) || \
  430. ((CMD) == ETH_LoopbackMode_Disable))
  431. /**
  432. * @}
  433. */
  434. /** @defgroup ETH_Duplex_mode
  435. * @{
  436. */
  437. #define ETH_Mode_FullDuplex ((uint32_t)0x00000800)
  438. #define ETH_Mode_HalfDuplex ((uint32_t)0x00000000)
  439. #define IS_ETH_DUPLEX_MODE(MODE) (((MODE) == ETH_Mode_FullDuplex) || \
  440. ((MODE) == ETH_Mode_HalfDuplex))
  441. /**
  442. * @}
  443. */
  444. /** @defgroup ETH_Checksum_Offload
  445. * @{
  446. */
  447. #define ETH_ChecksumOffload_Enable ((uint32_t)0x00000400)
  448. #define ETH_ChecksumOffload_Disable ((uint32_t)0x00000000)
  449. #define IS_ETH_CHECKSUM_OFFLOAD(CMD) (((CMD) == ETH_ChecksumOffload_Enable) || \
  450. ((CMD) == ETH_ChecksumOffload_Disable))
  451. /**
  452. * @}
  453. */
  454. /** @defgroup ETH_Retry_Transmission
  455. * @{
  456. */
  457. #define ETH_RetryTransmission_Enable ((uint32_t)0x00000000)
  458. #define ETH_RetryTransmission_Disable ((uint32_t)0x00000200)
  459. #define IS_ETH_RETRY_TRANSMISSION(CMD) (((CMD) == ETH_RetryTransmission_Enable) || \
  460. ((CMD) == ETH_RetryTransmission_Disable))
  461. /**
  462. * @}
  463. */
  464. /** @defgroup ETH_Automatic_Pad_CRC_Strip
  465. * @{
  466. */
  467. #define ETH_AutomaticPadCRCStrip_Enable ((uint32_t)0x00000080)
  468. #define ETH_AutomaticPadCRCStrip_Disable ((uint32_t)0x00000000)
  469. #define IS_ETH_AUTOMATIC_PADCRC_STRIP(CMD) (((CMD) == ETH_AutomaticPadCRCStrip_Enable) || \
  470. ((CMD) == ETH_AutomaticPadCRCStrip_Disable))
  471. /**
  472. * @}
  473. */
  474. /** @defgroup ETH_Back-Off_limit
  475. * @{
  476. */
  477. #define ETH_BackOffLimit_10 ((uint32_t)0x00000000)
  478. #define ETH_BackOffLimit_8 ((uint32_t)0x00000020)
  479. #define ETH_BackOffLimit_4 ((uint32_t)0x00000040)
  480. #define ETH_BackOffLimit_1 ((uint32_t)0x00000060)
  481. #define IS_ETH_BACKOFF_LIMIT(LIMIT) (((LIMIT) == ETH_BackOffLimit_10) || \
  482. ((LIMIT) == ETH_BackOffLimit_8) || \
  483. ((LIMIT) == ETH_BackOffLimit_4) || \
  484. ((LIMIT) == ETH_BackOffLimit_1))
  485. /**
  486. * @}
  487. */
  488. /** @defgroup ETH_Deferral_Check
  489. * @{
  490. */
  491. #define ETH_DeferralCheck_Enable ((uint32_t)0x00000010)
  492. #define ETH_DeferralCheck_Disable ((uint32_t)0x00000000)
  493. #define IS_ETH_DEFERRAL_CHECK(CMD) (((CMD) == ETH_DeferralCheck_Enable) || \
  494. ((CMD) == ETH_DeferralCheck_Disable))
  495. /**
  496. * @}
  497. */
  498. /** @defgroup ETH_Receive_All
  499. * @{
  500. */
  501. #define ETH_ReceiveAll_Enable ((uint32_t)0x80000000)
  502. #define ETH_ReceiveAll_Disable ((uint32_t)0x00000000)
  503. #define IS_ETH_RECEIVE_ALL(CMD) (((CMD) == ETH_ReceiveAll_Enable) || \
  504. ((CMD) == ETH_ReceiveAll_Disable))
  505. /**
  506. * @}
  507. */
  508. /** @defgroup ETH_Source_Addr_Filter
  509. * @{
  510. */
  511. #define ETH_SourceAddrFilter_Normal_Enable ((uint32_t)0x00000200)
  512. #define ETH_SourceAddrFilter_Inverse_Enable ((uint32_t)0x00000300)
  513. #define ETH_SourceAddrFilter_Disable ((uint32_t)0x00000000)
  514. #define IS_ETH_SOURCE_ADDR_FILTER(CMD) (((CMD) == ETH_SourceAddrFilter_Normal_Enable) || \
  515. ((CMD) == ETH_SourceAddrFilter_Inverse_Enable) || \
  516. ((CMD) == ETH_SourceAddrFilter_Disable))
  517. /**
  518. * @}
  519. */
  520. /** @defgroup ETH_Pass_Control_Frames
  521. * @{
  522. */
  523. #define ETH_PassControlFrames_BlockAll ((uint32_t)0x00000040) /*!< MAC filters all control frames from reaching the application */
  524. #define ETH_PassControlFrames_ForwardAll ((uint32_t)0x00000080) /*!< MAC forwards all control frames to application even if they fail the Address Filter */
  525. #define ETH_PassControlFrames_ForwardPassedAddrFilter ((uint32_t)0x000000C0) /*!< MAC forwards control frames that pass the Address Filter. */
  526. #define IS_ETH_CONTROL_FRAMES(PASS) (((PASS) == ETH_PassControlFrames_BlockAll) || \
  527. ((PASS) == ETH_PassControlFrames_ForwardAll) || \
  528. ((PASS) == ETH_PassControlFrames_ForwardPassedAddrFilter))
  529. /**
  530. * @}
  531. */
  532. /** @defgroup ETH_Broadcast_Frames_Reception
  533. * @{
  534. */
  535. #define ETH_BroadcastFramesReception_Enable ((uint32_t)0x00000000)
  536. #define ETH_BroadcastFramesReception_Disable ((uint32_t)0x00000020)
  537. #define IS_ETH_BROADCAST_FRAMES_RECEPTION(CMD) (((CMD) == ETH_BroadcastFramesReception_Enable) || \
  538. ((CMD) == ETH_BroadcastFramesReception_Disable))
  539. /**
  540. * @}
  541. */
  542. /** @defgroup ETH_Destination_Addr_Filter
  543. * @{
  544. */
  545. #define ETH_DestinationAddrFilter_Normal ((uint32_t)0x00000000)
  546. #define ETH_DestinationAddrFilter_Inverse ((uint32_t)0x00000008)
  547. #define IS_ETH_DESTINATION_ADDR_FILTER(FILTER) (((FILTER) == ETH_DestinationAddrFilter_Normal) || \
  548. ((FILTER) == ETH_DestinationAddrFilter_Inverse))
  549. /**
  550. * @}
  551. */
  552. /** @defgroup ETH_Promiscuous_Mode
  553. * @{
  554. */
  555. #define ETH_PromiscuousMode_Enable ((uint32_t)0x00000001)
  556. #define ETH_PromiscuousMode_Disable ((uint32_t)0x00000000)
  557. #define IS_ETH_PROMISCUOUS_MODE(CMD) (((CMD) == ETH_PromiscuousMode_Enable) || \
  558. ((CMD) == ETH_PromiscuousMode_Disable))
  559. /**
  560. * @}
  561. */
  562. /** @defgroup ETH_multicast_frames_filter
  563. * @{
  564. */
  565. #define ETH_MulticastFramesFilter_PerfectHashTable ((uint32_t)0x00000404)
  566. #define ETH_MulticastFramesFilter_HashTable ((uint32_t)0x00000004)
  567. #define ETH_MulticastFramesFilter_Perfect ((uint32_t)0x00000000)
  568. #define ETH_MulticastFramesFilter_None ((uint32_t)0x00000010)
  569. #define IS_ETH_MULTICAST_FRAMES_FILTER(FILTER) (((FILTER) == ETH_MulticastFramesFilter_PerfectHashTable) || \
  570. ((FILTER) == ETH_MulticastFramesFilter_HashTable) || \
  571. ((FILTER) == ETH_MulticastFramesFilter_Perfect) || \
  572. ((FILTER) == ETH_MulticastFramesFilter_None))
  573. /**
  574. * @}
  575. */
  576. /** @defgroup ETH_unicast_frames_filter
  577. * @{
  578. */
  579. #define ETH_UnicastFramesFilter_PerfectHashTable ((uint32_t)0x00000402)
  580. #define ETH_UnicastFramesFilter_HashTable ((uint32_t)0x00000002)
  581. #define ETH_UnicastFramesFilter_Perfect ((uint32_t)0x00000000)
  582. #define IS_ETH_UNICAST_FRAMES_FILTER(FILTER) (((FILTER) == ETH_UnicastFramesFilter_PerfectHashTable) || \
  583. ((FILTER) == ETH_UnicastFramesFilter_HashTable) || \
  584. ((FILTER) == ETH_UnicastFramesFilter_Perfect))
  585. /**
  586. * @}
  587. */
  588. /** @defgroup ETH_Pause_Time
  589. * @{
  590. */
  591. #define IS_ETH_PAUSE_TIME(TIME) ((TIME) <= 0xFFFF)
  592. /**
  593. * @}
  594. */
  595. /** @defgroup ETH_Zero_Quanta_Pause
  596. * @{
  597. */
  598. #define ETH_ZeroQuantaPause_Enable ((uint32_t)0x00000000)
  599. #define ETH_ZeroQuantaPause_Disable ((uint32_t)0x00000080)
  600. #define IS_ETH_ZEROQUANTA_PAUSE(CMD) (((CMD) == ETH_ZeroQuantaPause_Enable) || \
  601. ((CMD) == ETH_ZeroQuantaPause_Disable))
  602. /**
  603. * @}
  604. */
  605. /** @defgroup ETH_Pause_Low_Threshold
  606. * @{
  607. */
  608. #define ETH_PauseLowThreshold_Minus4 ((uint32_t)0x00000000) /*!< Pause time minus 4 slot times */
  609. #define ETH_PauseLowThreshold_Minus28 ((uint32_t)0x00000010) /*!< Pause time minus 28 slot times */
  610. #define ETH_PauseLowThreshold_Minus144 ((uint32_t)0x00000020) /*!< Pause time minus 144 slot times */
  611. #define ETH_PauseLowThreshold_Minus256 ((uint32_t)0x00000030) /*!< Pause time minus 256 slot times */
  612. #define IS_ETH_PAUSE_LOW_THRESHOLD(THRESHOLD) (((THRESHOLD) == ETH_PauseLowThreshold_Minus4) || \
  613. ((THRESHOLD) == ETH_PauseLowThreshold_Minus28) || \
  614. ((THRESHOLD) == ETH_PauseLowThreshold_Minus144) || \
  615. ((THRESHOLD) == ETH_PauseLowThreshold_Minus256))
  616. /**
  617. * @}
  618. */
  619. /** @defgroup ETH_Unicast_Pause_Frame_Detect
  620. * @{
  621. */
  622. #define ETH_UnicastPauseFrameDetect_Enable ((uint32_t)0x00000008)
  623. #define ETH_UnicastPauseFrameDetect_Disable ((uint32_t)0x00000000)
  624. #define IS_ETH_UNICAST_PAUSE_FRAME_DETECT(CMD) (((CMD) == ETH_UnicastPauseFrameDetect_Enable) || \
  625. ((CMD) == ETH_UnicastPauseFrameDetect_Disable))
  626. /**
  627. * @}
  628. */
  629. /** @defgroup ETH_Receive_Flow_Control
  630. * @{
  631. */
  632. #define ETH_ReceiveFlowControl_Enable ((uint32_t)0x00000004)
  633. #define ETH_ReceiveFlowControl_Disable ((uint32_t)0x00000000)
  634. #define IS_ETH_RECEIVE_FLOWCONTROL(CMD) (((CMD) == ETH_ReceiveFlowControl_Enable) || \
  635. ((CMD) == ETH_ReceiveFlowControl_Disable))
  636. /**
  637. * @}
  638. */
  639. /** @defgroup ETH_Transmit_Flow_Control
  640. * @{
  641. */
  642. #define ETH_TransmitFlowControl_Enable ((uint32_t)0x00000002)
  643. #define ETH_TransmitFlowControl_Disable ((uint32_t)0x00000000)
  644. #define IS_ETH_TRANSMIT_FLOWCONTROL(CMD) (((CMD) == ETH_TransmitFlowControl_Enable) || \
  645. ((CMD) == ETH_TransmitFlowControl_Disable))
  646. /**
  647. * @}
  648. */
  649. /** @defgroup ETH_VLAN_Tag_Comparison
  650. * @{
  651. */
  652. #define ETH_VLANTagComparison_12Bit ((uint32_t)0x00010000)
  653. #define ETH_VLANTagComparison_16Bit ((uint32_t)0x00000000)
  654. #define IS_ETH_VLAN_TAG_COMPARISON(COMPARISON) (((COMPARISON) == ETH_VLANTagComparison_12Bit) || \
  655. ((COMPARISON) == ETH_VLANTagComparison_16Bit))
  656. #define IS_ETH_VLAN_TAG_IDENTIFIER(IDENTIFIER) ((IDENTIFIER) <= 0xFFFF)
  657. /**
  658. * @}
  659. */
  660. /** @defgroup ETH_MAC_Flags
  661. * @{
  662. */
  663. #define ETH_MAC_FLAG_TST ((uint32_t)0x00000200) /*!< Time stamp trigger flag (on MAC) */
  664. #define ETH_MAC_FLAG_MMCT ((uint32_t)0x00000040) /*!< MMC transmit flag */
  665. #define ETH_MAC_FLAG_MMCR ((uint32_t)0x00000020) /*!< MMC receive flag */
  666. #define ETH_MAC_FLAG_MMC ((uint32_t)0x00000010) /*!< MMC flag (on MAC) */
  667. #define ETH_MAC_FLAG_PMT ((uint32_t)0x00000008) /*!< PMT flag (on MAC) */
  668. #define IS_ETH_MAC_GET_FLAG(FLAG) (((FLAG) == ETH_MAC_FLAG_TST) || ((FLAG) == ETH_MAC_FLAG_MMCT) || \
  669. ((FLAG) == ETH_MAC_FLAG_MMCR) || ((FLAG) == ETH_MAC_FLAG_MMC) || \
  670. ((FLAG) == ETH_MAC_FLAG_PMT))
  671. /**
  672. * @}
  673. */
  674. /** @defgroup ETH_MAC_Interrupts
  675. * @{
  676. */
  677. #define ETH_MAC_IT_TST ((uint32_t)0x00000200) /*!< Time stamp trigger interrupt (on MAC) */
  678. #define ETH_MAC_IT_MMCT ((uint32_t)0x00000040) /*!< MMC transmit interrupt */
  679. #define ETH_MAC_IT_MMCR ((uint32_t)0x00000020) /*!< MMC receive interrupt */
  680. #define ETH_MAC_IT_MMC ((uint32_t)0x00000010) /*!< MMC interrupt (on MAC) */
  681. #define ETH_MAC_IT_PMT ((uint32_t)0x00000008) /*!< PMT interrupt (on MAC) */
  682. #define IS_ETH_MAC_IT(IT) ((((IT) & (uint32_t)0xFFFFFDF7) == 0x00) && ((IT) != 0x00))
  683. #define IS_ETH_MAC_GET_IT(IT) (((IT) == ETH_MAC_IT_TST) || ((IT) == ETH_MAC_IT_MMCT) || \
  684. ((IT) == ETH_MAC_IT_MMCR) || ((IT) == ETH_MAC_IT_MMC) || \
  685. ((IT) == ETH_MAC_IT_PMT))
  686. /**
  687. * @}
  688. */
  689. /** @defgroup ETH_MAC_addresses
  690. * @{
  691. */
  692. #define ETH_MAC_Address0 ((uint32_t)0x00000000)
  693. #define ETH_MAC_Address1 ((uint32_t)0x00000008)
  694. #define ETH_MAC_Address2 ((uint32_t)0x00000010)
  695. #define ETH_MAC_Address3 ((uint32_t)0x00000018)
  696. #define IS_ETH_MAC_ADDRESS0123(ADDRESS) (((ADDRESS) == ETH_MAC_Address0) || \
  697. ((ADDRESS) == ETH_MAC_Address1) || \
  698. ((ADDRESS) == ETH_MAC_Address2) || \
  699. ((ADDRESS) == ETH_MAC_Address3))
  700. #define IS_ETH_MAC_ADDRESS123(ADDRESS) (((ADDRESS) == ETH_MAC_Address1) || \
  701. ((ADDRESS) == ETH_MAC_Address2) || \
  702. ((ADDRESS) == ETH_MAC_Address3))
  703. /**
  704. * @}
  705. */
  706. /** @defgroup ETH_MAC_addresses_filter:_SA_DA_filed_of_received_frames
  707. * @{
  708. */
  709. #define ETH_MAC_AddressFilter_SA ((uint32_t)0x00000000)
  710. #define ETH_MAC_AddressFilter_DA ((uint32_t)0x00000008)
  711. #define IS_ETH_MAC_ADDRESS_FILTER(FILTER) (((FILTER) == ETH_MAC_AddressFilter_SA) || \
  712. ((FILTER) == ETH_MAC_AddressFilter_DA))
  713. /**
  714. * @}
  715. */
  716. /** @defgroup ETH_MAC_addresses_filter:_Mask_bytes
  717. * @{
  718. */
  719. #define ETH_MAC_AddressMask_Byte6 ((uint32_t)0x20000000) /*!< Mask MAC Address high reg bits [15:8] */
  720. #define ETH_MAC_AddressMask_Byte5 ((uint32_t)0x10000000) /*!< Mask MAC Address high reg bits [7:0] */
  721. #define ETH_MAC_AddressMask_Byte4 ((uint32_t)0x08000000) /*!< Mask MAC Address low reg bits [31:24] */
  722. #define ETH_MAC_AddressMask_Byte3 ((uint32_t)0x04000000) /*!< Mask MAC Address low reg bits [23:16] */
  723. #define ETH_MAC_AddressMask_Byte2 ((uint32_t)0x02000000) /*!< Mask MAC Address low reg bits [15:8] */
  724. #define ETH_MAC_AddressMask_Byte1 ((uint32_t)0x01000000) /*!< Mask MAC Address low reg bits [70] */
  725. #define IS_ETH_MAC_ADDRESS_MASK(MASK) (((MASK) == ETH_MAC_AddressMask_Byte6) || \
  726. ((MASK) == ETH_MAC_AddressMask_Byte5) || \
  727. ((MASK) == ETH_MAC_AddressMask_Byte4) || \
  728. ((MASK) == ETH_MAC_AddressMask_Byte3) || \
  729. ((MASK) == ETH_MAC_AddressMask_Byte2) || \
  730. ((MASK) == ETH_MAC_AddressMask_Byte1))
  731. /**--------------------------------------------------------------------------**/
  732. /**
  733. * @brief Ethernet DMA Desciptors defines
  734. */
  735. /**--------------------------------------------------------------------------**/
  736. /**
  737. * @}
  738. */
  739. /** @defgroup ETH_DMA_Tx_descriptor_flags
  740. * @{
  741. */
  742. #define IS_ETH_DMATxDESC_GET_FLAG(FLAG) (((FLAG) == ETH_DMATxDesc_OWN) || \
  743. ((FLAG) == ETH_DMATxDesc_IC) || \
  744. ((FLAG) == ETH_DMATxDesc_LS) || \
  745. ((FLAG) == ETH_DMATxDesc_FS) || \
  746. ((FLAG) == ETH_DMATxDesc_DC) || \
  747. ((FLAG) == ETH_DMATxDesc_DP) || \
  748. ((FLAG) == ETH_DMATxDesc_TTSE) || \
  749. ((FLAG) == ETH_DMATxDesc_TER) || \
  750. ((FLAG) == ETH_DMATxDesc_TCH) || \
  751. ((FLAG) == ETH_DMATxDesc_TTSS) || \
  752. ((FLAG) == ETH_DMATxDesc_IHE) || \
  753. ((FLAG) == ETH_DMATxDesc_ES) || \
  754. ((FLAG) == ETH_DMATxDesc_JT) || \
  755. ((FLAG) == ETH_DMATxDesc_FF) || \
  756. ((FLAG) == ETH_DMATxDesc_PCE) || \
  757. ((FLAG) == ETH_DMATxDesc_LCA) || \
  758. ((FLAG) == ETH_DMATxDesc_NC) || \
  759. ((FLAG) == ETH_DMATxDesc_LCO) || \
  760. ((FLAG) == ETH_DMATxDesc_EC) || \
  761. ((FLAG) == ETH_DMATxDesc_VF) || \
  762. ((FLAG) == ETH_DMATxDesc_CC) || \
  763. ((FLAG) == ETH_DMATxDesc_ED) || \
  764. ((FLAG) == ETH_DMATxDesc_UF) || \
  765. ((FLAG) == ETH_DMATxDesc_DB))
  766. /**
  767. * @}
  768. */
  769. /** @defgroup ETH_DMA_Tx_descriptor_segment
  770. * @{
  771. */
  772. #define ETH_DMATxDesc_LastSegment ((uint32_t)0x40000000) /*!< Last Segment */
  773. #define ETH_DMATxDesc_FirstSegment ((uint32_t)0x20000000) /*!< First Segment */
  774. #define IS_ETH_DMA_TXDESC_SEGMENT(SEGMENT) (((SEGMENT) == ETH_DMATxDesc_LastSegment) || \
  775. ((SEGMENT) == ETH_DMATxDesc_FirstSegment))
  776. /**
  777. * @}
  778. */
  779. /** @defgroup ETH_DMA_Tx_descriptor_Checksum_Insertion_Control
  780. * @{
  781. */
  782. #define ETH_DMATxDesc_ChecksumByPass ((uint32_t)0x00000000) /*!< Checksum engine bypass */
  783. #define ETH_DMATxDesc_ChecksumIPV4Header ((uint32_t)0x00400000) /*!< IPv4 header checksum insertion */
  784. #define ETH_DMATxDesc_ChecksumTCPUDPICMPSegment ((uint32_t)0x00800000) /*!< TCP/UDP/ICMP checksum insertion. Pseudo header checksum is assumed to be present */
  785. #define ETH_DMATxDesc_ChecksumTCPUDPICMPFull ((uint32_t)0x00C00000) /*!< TCP/UDP/ICMP checksum fully in hardware including pseudo header */
  786. #define IS_ETH_DMA_TXDESC_CHECKSUM(CHECKSUM) (((CHECKSUM) == ETH_DMATxDesc_ChecksumByPass) || \
  787. ((CHECKSUM) == ETH_DMATxDesc_ChecksumIPV4Header) || \
  788. ((CHECKSUM) == ETH_DMATxDesc_ChecksumTCPUDPICMPSegment) || \
  789. ((CHECKSUM) == ETH_DMATxDesc_ChecksumTCPUDPICMPFull))
  790. /**
  791. * @brief ETH DMA Tx Desciptor buffer size
  792. */
  793. #define IS_ETH_DMATxDESC_BUFFER_SIZE(SIZE) ((SIZE) <= 0x1FFF)
  794. /**
  795. * @}
  796. */
  797. /** @defgroup ETH_DMA_Rx_descriptor_flags
  798. * @{
  799. */
  800. #define IS_ETH_DMARxDESC_GET_FLAG(FLAG) (((FLAG) == ETH_DMARxDesc_OWN) || \
  801. ((FLAG) == ETH_DMARxDesc_AFM) || \
  802. ((FLAG) == ETH_DMARxDesc_ES) || \
  803. ((FLAG) == ETH_DMARxDesc_DE) || \
  804. ((FLAG) == ETH_DMARxDesc_SAF) || \
  805. ((FLAG) == ETH_DMARxDesc_LE) || \
  806. ((FLAG) == ETH_DMARxDesc_OE) || \
  807. ((FLAG) == ETH_DMARxDesc_VLAN) || \
  808. ((FLAG) == ETH_DMARxDesc_FS) || \
  809. ((FLAG) == ETH_DMARxDesc_LS) || \
  810. ((FLAG) == ETH_DMARxDesc_IPV4HCE) || \
  811. ((FLAG) == ETH_DMARxDesc_LC) || \
  812. ((FLAG) == ETH_DMARxDesc_FT) || \
  813. ((FLAG) == ETH_DMARxDesc_RWT) || \
  814. ((FLAG) == ETH_DMARxDesc_RE) || \
  815. ((FLAG) == ETH_DMARxDesc_DBE) || \
  816. ((FLAG) == ETH_DMARxDesc_CE) || \
  817. ((FLAG) == ETH_DMARxDesc_MAMPCE))
  818. /**
  819. * @}
  820. */
  821. /** @defgroup ETH_DMA_Rx_descriptor_buffers_
  822. * @{
  823. */
  824. #define ETH_DMARxDesc_Buffer1 ((uint32_t)0x00000000) /*!< DMA Rx Desc Buffer1 */
  825. #define ETH_DMARxDesc_Buffer2 ((uint32_t)0x00000001) /*!< DMA Rx Desc Buffer2 */
  826. #define IS_ETH_DMA_RXDESC_BUFFER(BUFFER) (((BUFFER) == ETH_DMARxDesc_Buffer1) || \
  827. ((BUFFER) == ETH_DMARxDesc_Buffer2))
  828. /**--------------------------------------------------------------------------**/
  829. /**
  830. * @brief Ethernet DMA defines
  831. */
  832. /**--------------------------------------------------------------------------**/
  833. /**
  834. * @}
  835. */
  836. /** @defgroup ETH_Drop_TCP_IP_Checksum_Error_Frame
  837. * @{
  838. */
  839. #define ETH_DropTCPIPChecksumErrorFrame_Enable ((uint32_t)0x00000000)
  840. #define ETH_DropTCPIPChecksumErrorFrame_Disable ((uint32_t)0x04000000)
  841. #define IS_ETH_DROP_TCPIP_CHECKSUM_FRAME(CMD) (((CMD) == ETH_DropTCPIPChecksumErrorFrame_Enable) || \
  842. ((CMD) == ETH_DropTCPIPChecksumErrorFrame_Disable))
  843. /**
  844. * @}
  845. */
  846. /** @defgroup ETH_Receive_Store_Forward
  847. * @{
  848. */
  849. #define ETH_ReceiveStoreForward_Enable ((uint32_t)0x02000000)
  850. #define ETH_ReceiveStoreForward_Disable ((uint32_t)0x00000000)
  851. #define IS_ETH_RECEIVE_STORE_FORWARD(CMD) (((CMD) == ETH_ReceiveStoreForward_Enable) || \
  852. ((CMD) == ETH_ReceiveStoreForward_Disable))
  853. /**
  854. * @}
  855. */
  856. /** @defgroup ETH_Flush_Received_Frame
  857. * @{
  858. */
  859. #define ETH_FlushReceivedFrame_Enable ((uint32_t)0x00000000)
  860. #define ETH_FlushReceivedFrame_Disable ((uint32_t)0x01000000)
  861. #define IS_ETH_FLUSH_RECEIVE_FRAME(CMD) (((CMD) == ETH_FlushReceivedFrame_Enable) || \
  862. ((CMD) == ETH_FlushReceivedFrame_Disable))
  863. /**
  864. * @}
  865. */
  866. /** @defgroup ETH_Transmit_Store_Forward
  867. * @{
  868. */
  869. #define ETH_TransmitStoreForward_Enable ((uint32_t)0x00200000)
  870. #define ETH_TransmitStoreForward_Disable ((uint32_t)0x00000000)
  871. #define IS_ETH_TRANSMIT_STORE_FORWARD(CMD) (((CMD) == ETH_TransmitStoreForward_Enable) || \
  872. ((CMD) == ETH_TransmitStoreForward_Disable))
  873. /**
  874. * @}
  875. */
  876. /** @defgroup ETH_Transmit_Threshold_Control
  877. * @{
  878. */
  879. #define ETH_TransmitThresholdControl_64Bytes ((uint32_t)0x00000000) /*!< threshold level of the MTL Transmit FIFO is 64 Bytes */
  880. #define ETH_TransmitThresholdControl_128Bytes ((uint32_t)0x00004000) /*!< threshold level of the MTL Transmit FIFO is 128 Bytes */
  881. #define ETH_TransmitThresholdControl_192Bytes ((uint32_t)0x00008000) /*!< threshold level of the MTL Transmit FIFO is 192 Bytes */
  882. #define ETH_TransmitThresholdControl_256Bytes ((uint32_t)0x0000C000) /*!< threshold level of the MTL Transmit FIFO is 256 Bytes */
  883. #define ETH_TransmitThresholdControl_40Bytes ((uint32_t)0x00010000) /*!< threshold level of the MTL Transmit FIFO is 40 Bytes */
  884. #define ETH_TransmitThresholdControl_32Bytes ((uint32_t)0x00014000) /*!< threshold level of the MTL Transmit FIFO is 32 Bytes */
  885. #define ETH_TransmitThresholdControl_24Bytes ((uint32_t)0x00018000) /*!< threshold level of the MTL Transmit FIFO is 24 Bytes */
  886. #define ETH_TransmitThresholdControl_16Bytes ((uint32_t)0x0001C000) /*!< threshold level of the MTL Transmit FIFO is 16 Bytes */
  887. #define IS_ETH_TRANSMIT_THRESHOLD_CONTROL(THRESHOLD) (((THRESHOLD) == ETH_TransmitThresholdControl_64Bytes) || \
  888. ((THRESHOLD) == ETH_TransmitThresholdControl_128Bytes) || \
  889. ((THRESHOLD) == ETH_TransmitThresholdControl_192Bytes) || \
  890. ((THRESHOLD) == ETH_TransmitThresholdControl_256Bytes) || \
  891. ((THRESHOLD) == ETH_TransmitThresholdControl_40Bytes) || \
  892. ((THRESHOLD) == ETH_TransmitThresholdControl_32Bytes) || \
  893. ((THRESHOLD) == ETH_TransmitThresholdControl_24Bytes) || \
  894. ((THRESHOLD) == ETH_TransmitThresholdControl_16Bytes))
  895. /**
  896. * @}
  897. */
  898. /** @defgroup ETH_Forward_Error_Frames
  899. * @{
  900. */
  901. #define ETH_ForwardErrorFrames_Enable ((uint32_t)0x00000080)
  902. #define ETH_ForwardErrorFrames_Disable ((uint32_t)0x00000000)
  903. #define IS_ETH_FORWARD_ERROR_FRAMES(CMD) (((CMD) == ETH_ForwardErrorFrames_Enable) || \
  904. ((CMD) == ETH_ForwardErrorFrames_Disable))
  905. /**
  906. * @}
  907. */
  908. /** @defgroup ETH_Forward_Undersized_Good_Frames
  909. * @{
  910. */
  911. #define ETH_ForwardUndersizedGoodFrames_Enable ((uint32_t)0x00000040)
  912. #define ETH_ForwardUndersizedGoodFrames_Disable ((uint32_t)0x00000000)
  913. #define IS_ETH_FORWARD_UNDERSIZED_GOOD_FRAMES(CMD) (((CMD) == ETH_ForwardUndersizedGoodFrames_Enable) || \
  914. ((CMD) == ETH_ForwardUndersizedGoodFrames_Disable))
  915. /**
  916. * @}
  917. */
  918. /** @defgroup ETH_Receive_Threshold_Control
  919. * @{
  920. */
  921. #define ETH_ReceiveThresholdControl_64Bytes ((uint32_t)0x00000000) /*!< threshold level of the MTL Receive FIFO is 64 Bytes */
  922. #define ETH_ReceiveThresholdControl_32Bytes ((uint32_t)0x00000008) /*!< threshold level of the MTL Receive FIFO is 32 Bytes */
  923. #define ETH_ReceiveThresholdControl_96Bytes ((uint32_t)0x00000010) /*!< threshold level of the MTL Receive FIFO is 96 Bytes */
  924. #define ETH_ReceiveThresholdControl_128Bytes ((uint32_t)0x00000018) /*!< threshold level of the MTL Receive FIFO is 128 Bytes */
  925. #define IS_ETH_RECEIVE_THRESHOLD_CONTROL(THRESHOLD) (((THRESHOLD) == ETH_ReceiveThresholdControl_64Bytes) || \
  926. ((THRESHOLD) == ETH_ReceiveThresholdControl_32Bytes) || \
  927. ((THRESHOLD) == ETH_ReceiveThresholdControl_96Bytes) || \
  928. ((THRESHOLD) == ETH_ReceiveThresholdControl_128Bytes))
  929. /**
  930. * @}
  931. */
  932. /** @defgroup ETH_Second_Frame_Operate
  933. * @{
  934. */
  935. #define ETH_SecondFrameOperate_Enable ((uint32_t)0x00000004)
  936. #define ETH_SecondFrameOperate_Disable ((uint32_t)0x00000000)
  937. #define IS_ETH_SECOND_FRAME_OPERATE(CMD) (((CMD) == ETH_SecondFrameOperate_Enable) || \
  938. ((CMD) == ETH_SecondFrameOperate_Disable))
  939. /**
  940. * @}
  941. */
  942. /** @defgroup ETH_Address_Aligned_Beats
  943. * @{
  944. */
  945. #define ETH_AddressAlignedBeats_Enable ((uint32_t)0x02000000)
  946. #define ETH_AddressAlignedBeats_Disable ((uint32_t)0x00000000)
  947. #define IS_ETH_ADDRESS_ALIGNED_BEATS(CMD) (((CMD) == ETH_AddressAlignedBeats_Enable) || \
  948. ((CMD) == ETH_AddressAlignedBeats_Disable))
  949. /**
  950. * @}
  951. */
  952. /** @defgroup ETH_Fixed_Burst
  953. * @{
  954. */
  955. #define ETH_FixedBurst_Enable ((uint32_t)0x00010000)
  956. #define ETH_FixedBurst_Disable ((uint32_t)0x00000000)
  957. #define IS_ETH_FIXED_BURST(CMD) (((CMD) == ETH_FixedBurst_Enable) || \
  958. ((CMD) == ETH_FixedBurst_Disable))
  959. /**
  960. * @}
  961. */
  962. /** @defgroup ETH_Rx_DMA_Burst_Length
  963. * @{
  964. */
  965. #define ETH_RxDMABurstLength_1Beat ((uint32_t)0x00020000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 1 */
  966. #define ETH_RxDMABurstLength_2Beat ((uint32_t)0x00040000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 2 */
  967. #define ETH_RxDMABurstLength_4Beat ((uint32_t)0x00080000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 4 */
  968. #define ETH_RxDMABurstLength_8Beat ((uint32_t)0x00100000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 8 */
  969. #define ETH_RxDMABurstLength_16Beat ((uint32_t)0x00200000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 16 */
  970. #define ETH_RxDMABurstLength_32Beat ((uint32_t)0x00400000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 32 */
  971. #define ETH_RxDMABurstLength_4xPBL_4Beat ((uint32_t)0x01020000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 4 */
  972. #define ETH_RxDMABurstLength_4xPBL_8Beat ((uint32_t)0x01040000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 8 */
  973. #define ETH_RxDMABurstLength_4xPBL_16Beat ((uint32_t)0x01080000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 16 */
  974. #define ETH_RxDMABurstLength_4xPBL_32Beat ((uint32_t)0x01100000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 32 */
  975. #define ETH_RxDMABurstLength_4xPBL_64Beat ((uint32_t)0x01200000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 64 */
  976. #define ETH_RxDMABurstLength_4xPBL_128Beat ((uint32_t)0x01400000) /*!< maximum number of beats to be transferred in one RxDMA transaction is 128 */
  977. #define IS_ETH_RXDMA_BURST_LENGTH(LENGTH) (((LENGTH) == ETH_RxDMABurstLength_1Beat) || \
  978. ((LENGTH) == ETH_RxDMABurstLength_2Beat) || \
  979. ((LENGTH) == ETH_RxDMABurstLength_4Beat) || \
  980. ((LENGTH) == ETH_RxDMABurstLength_8Beat) || \
  981. ((LENGTH) == ETH_RxDMABurstLength_16Beat) || \
  982. ((LENGTH) == ETH_RxDMABurstLength_32Beat) || \
  983. ((LENGTH) == ETH_RxDMABurstLength_4xPBL_4Beat) || \
  984. ((LENGTH) == ETH_RxDMABurstLength_4xPBL_8Beat) || \
  985. ((LENGTH) == ETH_RxDMABurstLength_4xPBL_16Beat) || \
  986. ((LENGTH) == ETH_RxDMABurstLength_4xPBL_32Beat) || \
  987. ((LENGTH) == ETH_RxDMABurstLength_4xPBL_64Beat) || \
  988. ((LENGTH) == ETH_RxDMABurstLength_4xPBL_128Beat))
  989. /**
  990. * @}
  991. */
  992. /** @defgroup ETH_Tx_DMA_Burst_Length
  993. * @{
  994. */
  995. #define ETH_TxDMABurstLength_1Beat ((uint32_t)0x00000100) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 1 */
  996. #define ETH_TxDMABurstLength_2Beat ((uint32_t)0x00000200) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 2 */
  997. #define ETH_TxDMABurstLength_4Beat ((uint32_t)0x00000400) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 4 */
  998. #define ETH_TxDMABurstLength_8Beat ((uint32_t)0x00000800) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 8 */
  999. #define ETH_TxDMABurstLength_16Beat ((uint32_t)0x00001000) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 16 */
  1000. #define ETH_TxDMABurstLength_32Beat ((uint32_t)0x00002000) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 32 */
  1001. #define ETH_TxDMABurstLength_4xPBL_4Beat ((uint32_t)0x01000100) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 4 */
  1002. #define ETH_TxDMABurstLength_4xPBL_8Beat ((uint32_t)0x01000200) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 8 */
  1003. #define ETH_TxDMABurstLength_4xPBL_16Beat ((uint32_t)0x01000400) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 16 */
  1004. #define ETH_TxDMABurstLength_4xPBL_32Beat ((uint32_t)0x01000800) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 32 */
  1005. #define ETH_TxDMABurstLength_4xPBL_64Beat ((uint32_t)0x01001000) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 64 */
  1006. #define ETH_TxDMABurstLength_4xPBL_128Beat ((uint32_t)0x01002000) /*!< maximum number of beats to be transferred in one TxDMA (or both) transaction is 128 */
  1007. #define IS_ETH_TXDMA_BURST_LENGTH(LENGTH) (((LENGTH) == ETH_TxDMABurstLength_1Beat) || \
  1008. ((LENGTH) == ETH_TxDMABurstLength_2Beat) || \
  1009. ((LENGTH) == ETH_TxDMABurstLength_4Beat) || \
  1010. ((LENGTH) == ETH_TxDMABurstLength_8Beat) || \
  1011. ((LENGTH) == ETH_TxDMABurstLength_16Beat) || \
  1012. ((LENGTH) == ETH_TxDMABurstLength_32Beat) || \
  1013. ((LENGTH) == ETH_TxDMABurstLength_4xPBL_4Beat) || \
  1014. ((LENGTH) == ETH_TxDMABurstLength_4xPBL_8Beat) || \
  1015. ((LENGTH) == ETH_TxDMABurstLength_4xPBL_16Beat) || \
  1016. ((LENGTH) == ETH_TxDMABurstLength_4xPBL_32Beat) || \
  1017. ((LENGTH) == ETH_TxDMABurstLength_4xPBL_64Beat) || \
  1018. ((LENGTH) == ETH_TxDMABurstLength_4xPBL_128Beat))
  1019. /**
  1020. * @brief ETH DMA Desciptor SkipLength
  1021. */
  1022. #define IS_ETH_DMA_DESC_SKIP_LENGTH(LENGTH) ((LENGTH) <= 0x1F)
  1023. /**
  1024. * @}
  1025. */
  1026. /** @defgroup ETH_DMA_Arbitration
  1027. * @{
  1028. */
  1029. #define ETH_DMAArbitration_RoundRobin_RxTx_1_1 ((uint32_t)0x00000000)
  1030. #define ETH_DMAArbitration_RoundRobin_RxTx_2_1 ((uint32_t)0x00004000)
  1031. #define ETH_DMAArbitration_RoundRobin_RxTx_3_1 ((uint32_t)0x00008000)
  1032. #define ETH_DMAArbitration_RoundRobin_RxTx_4_1 ((uint32_t)0x0000C000)
  1033. #define ETH_DMAArbitration_RxPriorTx ((uint32_t)0x00000002)
  1034. #define IS_ETH_DMA_ARBITRATION_ROUNDROBIN_RXTX(RATIO) (((RATIO) == ETH_DMAArbitration_RoundRobin_RxTx_1_1) || \
  1035. ((RATIO) == ETH_DMAArbitration_RoundRobin_RxTx_2_1) || \
  1036. ((RATIO) == ETH_DMAArbitration_RoundRobin_RxTx_3_1) || \
  1037. ((RATIO) == ETH_DMAArbitration_RoundRobin_RxTx_4_1) || \
  1038. ((RATIO) == ETH_DMAArbitration_RxPriorTx))
  1039. /**
  1040. * @}
  1041. */
  1042. /** @defgroup ETH_DMA_Flags
  1043. * @{
  1044. */
  1045. #define ETH_DMA_FLAG_TST ((uint32_t)0x20000000) /*!< Time-stamp trigger interrupt (on DMA) */
  1046. #define ETH_DMA_FLAG_PMT ((uint32_t)0x10000000) /*!< PMT interrupt (on DMA) */
  1047. #define ETH_DMA_FLAG_MMC ((uint32_t)0x08000000) /*!< MMC interrupt (on DMA) */
  1048. #define ETH_DMA_FLAG_DataTransferError ((uint32_t)0x00800000) /*!< Error bits 0-Rx DMA, 1-Tx DMA */
  1049. #define ETH_DMA_FLAG_ReadWriteError ((uint32_t)0x01000000) /*!< Error bits 0-write trnsf, 1-read transfr */
  1050. #define ETH_DMA_FLAG_AccessError ((uint32_t)0x02000000) /*!< Error bits 0-data buffer, 1-desc. access */
  1051. #define ETH_DMA_FLAG_NIS ((uint32_t)0x00010000) /*!< Normal interrupt summary flag */
  1052. #define ETH_DMA_FLAG_AIS ((uint32_t)0x00008000) /*!< Abnormal interrupt summary flag */
  1053. #define ETH_DMA_FLAG_ER ((uint32_t)0x00004000) /*!< Early receive flag */
  1054. #define ETH_DMA_FLAG_FBE ((uint32_t)0x00002000) /*!< Fatal bus error flag */
  1055. #define ETH_DMA_FLAG_ET ((uint32_t)0x00000400) /*!< Early transmit flag */
  1056. #define ETH_DMA_FLAG_RWT ((uint32_t)0x00000200) /*!< Receive watchdog timeout flag */
  1057. #define ETH_DMA_FLAG_RPS ((uint32_t)0x00000100) /*!< Receive process stopped flag */
  1058. #define ETH_DMA_FLAG_RBU ((uint32_t)0x00000080) /*!< Receive buffer unavailable flag */
  1059. #define ETH_DMA_FLAG_R ((uint32_t)0x00000040) /*!< Receive flag */
  1060. #define ETH_DMA_FLAG_TU ((uint32_t)0x00000020) /*!< Underflow flag */
  1061. #define ETH_DMA_FLAG_RO ((uint32_t)0x00000010) /*!< Overflow flag */
  1062. #define ETH_DMA_FLAG_TJT ((uint32_t)0x00000008) /*!< Transmit jabber timeout flag */
  1063. #define ETH_DMA_FLAG_TBU ((uint32_t)0x00000004) /*!< Transmit buffer unavailable flag */
  1064. #define ETH_DMA_FLAG_TPS ((uint32_t)0x00000002) /*!< Transmit process stopped flag */
  1065. #define ETH_DMA_FLAG_T ((uint32_t)0x00000001) /*!< Transmit flag */
  1066. #define IS_ETH_DMA_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFE1800) == 0x00) && ((FLAG) != 0x00))
  1067. #define IS_ETH_DMA_GET_FLAG(FLAG) (((FLAG) == ETH_DMA_FLAG_TST) || ((FLAG) == ETH_DMA_FLAG_PMT) || \
  1068. ((FLAG) == ETH_DMA_FLAG_MMC) || ((FLAG) == ETH_DMA_FLAG_DataTransferError) || \
  1069. ((FLAG) == ETH_DMA_FLAG_ReadWriteError) || ((FLAG) == ETH_DMA_FLAG_AccessError) || \
  1070. ((FLAG) == ETH_DMA_FLAG_NIS) || ((FLAG) == ETH_DMA_FLAG_AIS) || \
  1071. ((FLAG) == ETH_DMA_FLAG_ER) || ((FLAG) == ETH_DMA_FLAG_FBE) || \
  1072. ((FLAG) == ETH_DMA_FLAG_ET) || ((FLAG) == ETH_DMA_FLAG_RWT) || \
  1073. ((FLAG) == ETH_DMA_FLAG_RPS) || ((FLAG) == ETH_DMA_FLAG_RBU) || \
  1074. ((FLAG) == ETH_DMA_FLAG_R) || ((FLAG) == ETH_DMA_FLAG_TU) || \
  1075. ((FLAG) == ETH_DMA_FLAG_RO) || ((FLAG) == ETH_DMA_FLAG_TJT) || \
  1076. ((FLAG) == ETH_DMA_FLAG_TBU) || ((FLAG) == ETH_DMA_FLAG_TPS) || \
  1077. ((FLAG) == ETH_DMA_FLAG_T))
  1078. /**
  1079. * @}
  1080. */
  1081. /** @defgroup ETH_DMA_Interrupts
  1082. * @{
  1083. */
  1084. #define ETH_DMA_IT_TST ((uint32_t)0x20000000) /*!< Time-stamp trigger interrupt (on DMA) */
  1085. #define ETH_DMA_IT_PMT ((uint32_t)0x10000000) /*!< PMT interrupt (on DMA) */
  1086. #define ETH_DMA_IT_MMC ((uint32_t)0x08000000) /*!< MMC interrupt (on DMA) */
  1087. #define ETH_DMA_IT_NIS ((uint32_t)0x00010000) /*!< Normal interrupt summary */
  1088. #define ETH_DMA_IT_AIS ((uint32_t)0x00008000) /*!< Abnormal interrupt summary */
  1089. #define ETH_DMA_IT_ER ((uint32_t)0x00004000) /*!< Early receive interrupt */
  1090. #define ETH_DMA_IT_FBE ((uint32_t)0x00002000) /*!< Fatal bus error interrupt */
  1091. #define ETH_DMA_IT_ET ((uint32_t)0x00000400) /*!< Early transmit interrupt */
  1092. #define ETH_DMA_IT_RWT ((uint32_t)0x00000200) /*!< Receive watchdog timeout interrupt */
  1093. #define ETH_DMA_IT_RPS ((uint32_t)0x00000100) /*!< Receive process stopped interrupt */
  1094. #define ETH_DMA_IT_RBU ((uint32_t)0x00000080) /*!< Receive buffer unavailable interrupt */
  1095. #define ETH_DMA_IT_R ((uint32_t)0x00000040) /*!< Receive interrupt */
  1096. #define ETH_DMA_IT_TU ((uint32_t)0x00000020) /*!< Underflow interrupt */
  1097. #define ETH_DMA_IT_RO ((uint32_t)0x00000010) /*!< Overflow interrupt */
  1098. #define ETH_DMA_IT_TJT ((uint32_t)0x00000008) /*!< Transmit jabber timeout interrupt */
  1099. #define ETH_DMA_IT_TBU ((uint32_t)0x00000004) /*!< Transmit buffer unavailable interrupt */
  1100. #define ETH_DMA_IT_TPS ((uint32_t)0x00000002) /*!< Transmit process stopped interrupt */
  1101. #define ETH_DMA_IT_T ((uint32_t)0x00000001) /*!< Transmit interrupt */
  1102. #define IS_ETH_DMA_IT(IT) ((((IT) & (uint32_t)0xFFFE1800) == 0x00) && ((IT) != 0x00))
  1103. #define IS_ETH_DMA_GET_IT(IT) (((IT) == ETH_DMA_IT_TST) || ((IT) == ETH_DMA_IT_PMT) || \
  1104. ((IT) == ETH_DMA_IT_MMC) || ((IT) == ETH_DMA_IT_NIS) || \
  1105. ((IT) == ETH_DMA_IT_AIS) || ((IT) == ETH_DMA_IT_ER) || \
  1106. ((IT) == ETH_DMA_IT_FBE) || ((IT) == ETH_DMA_IT_ET) || \
  1107. ((IT) == ETH_DMA_IT_RWT) || ((IT) == ETH_DMA_IT_RPS) || \
  1108. ((IT) == ETH_DMA_IT_RBU) || ((IT) == ETH_DMA_IT_R) || \
  1109. ((IT) == ETH_DMA_IT_TU) || ((IT) == ETH_DMA_IT_RO) || \
  1110. ((IT) == ETH_DMA_IT_TJT) || ((IT) == ETH_DMA_IT_TBU) || \
  1111. ((IT) == ETH_DMA_IT_TPS) || ((IT) == ETH_DMA_IT_T))
  1112. /**
  1113. * @}
  1114. */
  1115. /** @defgroup ETH_DMA_transmit_process_state_
  1116. * @{
  1117. */
  1118. #define ETH_DMA_TransmitProcess_Stopped ((uint32_t)0x00000000) /*!< Stopped - Reset or Stop Tx Command issued */
  1119. #define ETH_DMA_TransmitProcess_Fetching ((uint32_t)0x00100000) /*!< Running - fetching the Tx descriptor */
  1120. #define ETH_DMA_TransmitProcess_Waiting ((uint32_t)0x00200000) /*!< Running - waiting for status */
  1121. #define ETH_DMA_TransmitProcess_Reading ((uint32_t)0x00300000) /*!< Running - reading the data from host memory */
  1122. #define ETH_DMA_TransmitProcess_Suspended ((uint32_t)0x00600000) /*!< Suspended - Tx Desciptor unavailabe */
  1123. #define ETH_DMA_TransmitProcess_Closing ((uint32_t)0x00700000) /*!< Running - closing Rx descriptor */
  1124. /**
  1125. * @}
  1126. */
  1127. /** @defgroup ETH_DMA_receive_process_state_
  1128. * @{
  1129. */
  1130. #define ETH_DMA_ReceiveProcess_Stopped ((uint32_t)0x00000000) /*!< Stopped - Reset or Stop Rx Command issued */
  1131. #define ETH_DMA_ReceiveProcess_Fetching ((uint32_t)0x00020000) /*!< Running - fetching the Rx descriptor */
  1132. #define ETH_DMA_ReceiveProcess_Waiting ((uint32_t)0x00060000) /*!< Running - waiting for packet */
  1133. #define ETH_DMA_ReceiveProcess_Suspended ((uint32_t)0x00080000) /*!< Suspended - Rx Desciptor unavailable */
  1134. #define ETH_DMA_ReceiveProcess_Closing ((uint32_t)0x000A0000) /*!< Running - closing descriptor */
  1135. #define ETH_DMA_ReceiveProcess_Queuing ((uint32_t)0x000E0000) /*!< Running - queuing the recieve frame into host memory */
  1136. /**
  1137. * @}
  1138. */
  1139. /** @defgroup ETH_DMA_overflow_
  1140. * @{
  1141. */
  1142. #define ETH_DMA_Overflow_RxFIFOCounter ((uint32_t)0x10000000) /*!< Overflow bit for FIFO overflow counter */
  1143. #define ETH_DMA_Overflow_MissedFrameCounter ((uint32_t)0x00010000) /*!< Overflow bit for missed frame counter */
  1144. #define IS_ETH_DMA_GET_OVERFLOW(OVERFLOW) (((OVERFLOW) == ETH_DMA_Overflow_RxFIFOCounter) || \
  1145. ((OVERFLOW) == ETH_DMA_Overflow_MissedFrameCounter))
  1146. /**--------------------------------------------------------------------------**/
  1147. /**
  1148. * @brief Ethernet PMT defines
  1149. */
  1150. /**--------------------------------------------------------------------------**/
  1151. /**
  1152. * @}
  1153. */
  1154. /** @defgroup ETH_PMT_Flags
  1155. * @{
  1156. */
  1157. #define ETH_PMT_FLAG_WUFFRPR ((uint32_t)0x80000000) /*!< Wake-Up Frame Filter Register Poniter Reset */
  1158. #define ETH_PMT_FLAG_WUFR ((uint32_t)0x00000040) /*!< Wake-Up Frame Received */
  1159. #define ETH_PMT_FLAG_MPR ((uint32_t)0x00000020) /*!< Magic Packet Received */
  1160. #define IS_ETH_PMT_GET_FLAG(FLAG) (((FLAG) == ETH_PMT_FLAG_WUFR) || \
  1161. ((FLAG) == ETH_PMT_FLAG_MPR))
  1162. /**--------------------------------------------------------------------------**/
  1163. /**
  1164. * @brief Ethernet MMC defines
  1165. */
  1166. /**--------------------------------------------------------------------------**/
  1167. /**
  1168. * @}
  1169. */
  1170. /** @defgroup ETH_MMC_Tx_Interrupts
  1171. * @{
  1172. */
  1173. #define ETH_MMC_IT_TGF ((uint32_t)0x00200000) /*!< When Tx good frame counter reaches half the maximum value */
  1174. #define ETH_MMC_IT_TGFMSC ((uint32_t)0x00008000) /*!< When Tx good multi col counter reaches half the maximum value */
  1175. #define ETH_MMC_IT_TGFSC ((uint32_t)0x00004000) /*!< When Tx good single col counter reaches half the maximum value */
  1176. /**
  1177. * @}
  1178. */
  1179. /** @defgroup ETH_MMC_Rx_Interrupts
  1180. * @{
  1181. */
  1182. #define ETH_MMC_IT_RGUF ((uint32_t)0x10020000) /*!< When Rx good unicast frames counter reaches half the maximum value */
  1183. #define ETH_MMC_IT_RFAE ((uint32_t)0x10000040) /*!< When Rx alignment error counter reaches half the maximum value */
  1184. #define ETH_MMC_IT_RFCE ((uint32_t)0x10000020) /*!< When Rx crc error counter reaches half the maximum value */
  1185. #define IS_ETH_MMC_IT(IT) (((((IT) & (uint32_t)0xFFDF3FFF) == 0x00) || (((IT) & (uint32_t)0xEFFDFF9F) == 0x00)) && \
  1186. ((IT) != 0x00))
  1187. #define IS_ETH_MMC_GET_IT(IT) (((IT) == ETH_MMC_IT_TGF) || ((IT) == ETH_MMC_IT_TGFMSC) || \
  1188. ((IT) == ETH_MMC_IT_TGFSC) || ((IT) == ETH_MMC_IT_RGUF) || \
  1189. ((IT) == ETH_MMC_IT_RFAE) || ((IT) == ETH_MMC_IT_RFCE))
  1190. /**
  1191. * @}
  1192. */
  1193. /** @defgroup ETH_MMC_Registers
  1194. * @{
  1195. */
  1196. #define ETH_MMCCR ((uint32_t)0x00000100) /*!< MMC CR register */
  1197. #define ETH_MMCRIR ((uint32_t)0x00000104) /*!< MMC RIR register */
  1198. #define ETH_MMCTIR ((uint32_t)0x00000108) /*!< MMC TIR register */
  1199. #define ETH_MMCRIMR ((uint32_t)0x0000010C) /*!< MMC RIMR register */
  1200. #define ETH_MMCTIMR ((uint32_t)0x00000110) /*!< MMC TIMR register */
  1201. #define ETH_MMCTGFSCCR ((uint32_t)0x0000014C) /*!< MMC TGFSCCR register */
  1202. #define ETH_MMCTGFMSCCR ((uint32_t)0x00000150) /*!< MMC TGFMSCCR register */
  1203. #define ETH_MMCTGFCR ((uint32_t)0x00000168) /*!< MMC TGFCR register */
  1204. #define ETH_MMCRFCECR ((uint32_t)0x00000194) /*!< MMC RFCECR register */
  1205. #define ETH_MMCRFAECR ((uint32_t)0x00000198) /*!< MMC RFAECR register */
  1206. #define ETH_MMCRGUFCR ((uint32_t)0x000001C4) /*!< MMC RGUFCR register */
  1207. /**
  1208. * @brief ETH MMC registers
  1209. */
  1210. #define IS_ETH_MMC_REGISTER(REG) (((REG) == ETH_MMCCR) || ((REG) == ETH_MMCRIR) || \
  1211. ((REG) == ETH_MMCTIR) || ((REG) == ETH_MMCRIMR) || \
  1212. ((REG) == ETH_MMCTIMR) || ((REG) == ETH_MMCTGFSCCR) || \
  1213. ((REG) == ETH_MMCTGFMSCCR) || ((REG) == ETH_MMCTGFCR) || \
  1214. ((REG) == ETH_MMCRFCECR) || ((REG) == ETH_MMCRFAECR) || \
  1215. ((REG) == ETH_MMCRGUFCR))
  1216. /**--------------------------------------------------------------------------**/
  1217. /**
  1218. * @brief Ethernet PTP defines
  1219. */
  1220. /**--------------------------------------------------------------------------**/
  1221. /**
  1222. * @}
  1223. */
  1224. /** @defgroup ETH_PTP_time_update_method
  1225. * @{
  1226. */
  1227. #define ETH_PTP_FineUpdate ((uint32_t)0x00000001) /*!< Fine Update method */
  1228. #define ETH_PTP_CoarseUpdate ((uint32_t)0x00000000) /*!< Coarse Update method */
  1229. #define IS_ETH_PTP_UPDATE(UPDATE) (((UPDATE) == ETH_PTP_FineUpdate) || \
  1230. ((UPDATE) == ETH_PTP_CoarseUpdate))
  1231. /**
  1232. * @}
  1233. */
  1234. /** @defgroup ETH_PTP_Flags
  1235. * @{
  1236. */
  1237. #define ETH_PTP_FLAG_TSARU ((uint32_t)0x00000020) /*!< Addend Register Update */
  1238. #define ETH_PTP_FLAG_TSITE ((uint32_t)0x00000010) /*!< Time Stamp Interrupt Trigger */
  1239. #define ETH_PTP_FLAG_TSSTU ((uint32_t)0x00000008) /*!< Time Stamp Update */
  1240. #define ETH_PTP_FLAG_TSSTI ((uint32_t)0x00000004) /*!< Time Stamp Initialize */
  1241. #define IS_ETH_PTP_GET_FLAG(FLAG) (((FLAG) == ETH_PTP_FLAG_TSARU) || \
  1242. ((FLAG) == ETH_PTP_FLAG_TSITE) || \
  1243. ((FLAG) == ETH_PTP_FLAG_TSSTU) || \
  1244. ((FLAG) == ETH_PTP_FLAG_TSSTI))
  1245. /**
  1246. * @brief ETH PTP subsecond increment
  1247. */
  1248. #define IS_ETH_PTP_SUBSECOND_INCREMENT(SUBSECOND) ((SUBSECOND) <= 0xFF)
  1249. /**
  1250. * @}
  1251. */
  1252. /** @defgroup ETH_PTP_time_sign
  1253. * @{
  1254. */
  1255. #define ETH_PTP_PositiveTime ((uint32_t)0x00000000) /*!< Positive time value */
  1256. #define ETH_PTP_NegativeTime ((uint32_t)0x80000000) /*!< Negative time value */
  1257. #define IS_ETH_PTP_TIME_SIGN(SIGN) (((SIGN) == ETH_PTP_PositiveTime) || \
  1258. ((SIGN) == ETH_PTP_NegativeTime))
  1259. /**
  1260. * @brief ETH PTP time stamp low update
  1261. */
  1262. #define IS_ETH_PTP_TIME_STAMP_UPDATE_SUBSECOND(SUBSECOND) ((SUBSECOND) <= 0x7FFFFFFF)
  1263. /**
  1264. * @brief ETH PTP registers
  1265. */
  1266. #define ETH_PTPTSCR ((uint32_t)0x00000700) /*!< PTP TSCR register */
  1267. #define ETH_PTPSSIR ((uint32_t)0x00000704) /*!< PTP SSIR register */
  1268. #define ETH_PTPTSHR ((uint32_t)0x00000708) /*!< PTP TSHR register */
  1269. #define ETH_PTPTSLR ((uint32_t)0x0000070C) /*!< PTP TSLR register */
  1270. #define ETH_PTPTSHUR ((uint32_t)0x00000710) /*!< PTP TSHUR register */
  1271. #define ETH_PTPTSLUR ((uint32_t)0x00000714) /*!< PTP TSLUR register */
  1272. #define ETH_PTPTSAR ((uint32_t)0x00000718) /*!< PTP TSAR register */
  1273. #define ETH_PTPTTHR ((uint32_t)0x0000071C) /*!< PTP TTHR register */
  1274. #define ETH_PTPTTLR ((uint32_t)0x00000720) /* PTP TTLR register */
  1275. #define IS_ETH_PTP_REGISTER(REG) (((REG) == ETH_PTPTSCR) || ((REG) == ETH_PTPSSIR) || \
  1276. ((REG) == ETH_PTPTSHR) || ((REG) == ETH_PTPTSLR) || \
  1277. ((REG) == ETH_PTPTSHUR) || ((REG) == ETH_PTPTSLUR) || \
  1278. ((REG) == ETH_PTPTSAR) || ((REG) == ETH_PTPTTHR) || \
  1279. ((REG) == ETH_PTPTTLR))
  1280. /**
  1281. * @}
  1282. */
  1283. /**
  1284. * @}
  1285. */
  1286. /** @defgroup ETH_Exported_Macros
  1287. * @{
  1288. */
  1289. /**
  1290. * @}
  1291. */
  1292. /** @defgroup ETH_Exported_Functions
  1293. * @{
  1294. */
  1295. void ETH_DeInit(void);
  1296. uint32_t ETH_Init(ETH_InitTypeDef* ETH_InitStruct, u16 PHYAddress);
  1297. void ETH_StructInit(ETH_InitTypeDef* ETH_InitStruct);
  1298. void ETH_SoftwareReset(void);
  1299. FlagStatus ETH_GetSoftwareResetStatus(void);
  1300. void ETH_Start(void);
  1301. uint32_t ETH_HandleTxPkt(u8 *ppkt, u16 FrameLength);
  1302. uint32_t ETH_HandleRxPkt(u8 *ppkt);
  1303. uint32_t ETH_GetRxPktSize(void);
  1304. void ETH_DropRxPkt(void);
  1305. /**
  1306. * @brief PHY
  1307. */
  1308. u16 ETH_ReadPHYRegister(u16 PHYAddress, u16 PHYReg);
  1309. uint32_t ETH_WritePHYRegister(u16 PHYAddress, u16 PHYReg, u16 PHYValue);
  1310. uint32_t ETH_PHYLoopBackCmd(u16 PHYAddress, FunctionalState NewState);
  1311. /**
  1312. * @brief MAC
  1313. */
  1314. void ETH_MACTransmissionCmd(FunctionalState NewState);
  1315. void ETH_MACReceptionCmd(FunctionalState NewState);
  1316. FlagStatus ETH_GetFlowControlBusyStatus(void);
  1317. void ETH_InitiatePauseControlFrame(void);
  1318. void ETH_BackPressureActivationCmd(FunctionalState NewState);
  1319. FlagStatus ETH_GetMACFlagStatus(uint32_t ETH_MAC_FLAG);
  1320. ITStatus ETH_GetMACITStatus(uint32_t ETH_MAC_IT);
  1321. void ETH_MACITConfig(uint32_t ETH_MAC_IT, FunctionalState NewState);
  1322. void ETH_MACAddressConfig(uint32_t MacAddr, u8 *Addr);
  1323. void ETH_GetMACAddress(uint32_t MacAddr, u8 *Addr);
  1324. void ETH_MACAddressPerfectFilterCmd(uint32_t MacAddr, FunctionalState NewState);
  1325. void ETH_MACAddressFilterConfig(uint32_t MacAddr, uint32_t Filter);
  1326. void ETH_MACAddressMaskBytesFilterConfig(uint32_t MacAddr, uint32_t MaskByte);
  1327. /**
  1328. * @brief DMA Tx/Rx descriptors
  1329. */
  1330. void ETH_DMATxDescChainInit(ETH_DMADESCTypeDef *DMATxDescTab, u8 *TxBuff, uint32_t TxBuffCount);
  1331. void ETH_DMATxDescRingInit(ETH_DMADESCTypeDef *DMATxDescTab, u8 *TxBuff1, u8 *TxBuff2, uint32_t TxBuffCount);
  1332. FlagStatus ETH_GetDMATxDescFlagStatus(ETH_DMADESCTypeDef *DMATxDesc, uint32_t ETH_DMATxDescFlag);
  1333. uint32_t ETH_GetDMATxDescCollisionCount(ETH_DMADESCTypeDef *DMATxDesc);
  1334. void ETH_SetDMATxDescOwnBit(ETH_DMADESCTypeDef *DMATxDesc);
  1335. void ETH_DMATxDescTransmitITConfig(ETH_DMADESCTypeDef *DMATxDesc, FunctionalState NewState);
  1336. void ETH_DMATxDescFrameSegmentConfig(ETH_DMADESCTypeDef *DMATxDesc, uint32_t DMATxDesc_FrameSegment);
  1337. void ETH_DMATxDescChecksumInsertionConfig(ETH_DMADESCTypeDef *DMATxDesc, uint32_t DMATxDesc_Checksum);
  1338. void ETH_DMATxDescCRCCmd(ETH_DMADESCTypeDef *DMATxDesc, FunctionalState NewState);
  1339. void ETH_DMATxDescEndOfRingCmd(ETH_DMADESCTypeDef *DMATxDesc, FunctionalState NewState);
  1340. void ETH_DMATxDescSecondAddressChainedCmd(ETH_DMADESCTypeDef *DMATxDesc, FunctionalState NewState);
  1341. void ETH_DMATxDescShortFramePaddingCmd(ETH_DMADESCTypeDef *DMATxDesc, FunctionalState NewState);
  1342. void ETH_DMATxDescTimeStampCmd(ETH_DMADESCTypeDef *DMATxDesc, FunctionalState NewState);
  1343. void ETH_DMATxDescBufferSizeConfig(ETH_DMADESCTypeDef *DMATxDesc, uint32_t BufferSize1, uint32_t BufferSize2);
  1344. void ETH_DMARxDescChainInit(ETH_DMADESCTypeDef *DMARxDescTab, u8 *RxBuff, uint32_t RxBuffCount);
  1345. void ETH_DMARxDescRingInit(ETH_DMADESCTypeDef *DMARxDescTab, u8 *RxBuff1, u8 *RxBuff2, uint32_t RxBuffCount);
  1346. FlagStatus ETH_GetDMARxDescFlagStatus(ETH_DMADESCTypeDef *DMARxDesc, uint32_t ETH_DMARxDescFlag);
  1347. void ETH_SetDMARxDescOwnBit(ETH_DMADESCTypeDef *DMARxDesc);
  1348. uint32_t ETH_GetDMARxDescFrameLength(ETH_DMADESCTypeDef *DMARxDesc);
  1349. void ETH_DMARxDescReceiveITConfig(ETH_DMADESCTypeDef *DMARxDesc, FunctionalState NewState);
  1350. void ETH_DMARxDescEndOfRingCmd(ETH_DMADESCTypeDef *DMARxDesc, FunctionalState NewState);
  1351. void ETH_DMARxDescSecondAddressChainedCmd(ETH_DMADESCTypeDef *DMARxDesc, FunctionalState NewState);
  1352. uint32_t ETH_GetDMARxDescBufferSize(ETH_DMADESCTypeDef *DMARxDesc, uint32_t DMARxDesc_Buffer);
  1353. /**
  1354. * @brief DMA
  1355. */
  1356. FlagStatus ETH_GetDMAFlagStatus(uint32_t ETH_DMA_FLAG);
  1357. void ETH_DMAClearFlag(uint32_t ETH_DMA_FLAG);
  1358. ITStatus ETH_GetDMAITStatus(uint32_t ETH_DMA_IT);
  1359. void ETH_DMAClearITPendingBit(uint32_t ETH_DMA_IT);
  1360. uint32_t ETH_GetTransmitProcessState(void);
  1361. uint32_t ETH_GetReceiveProcessState(void);
  1362. void ETH_FlushTransmitFIFO(void);
  1363. FlagStatus ETH_GetFlushTransmitFIFOStatus(void);
  1364. void ETH_DMATransmissionCmd(FunctionalState NewState);
  1365. void ETH_DMAReceptionCmd(FunctionalState NewState);
  1366. void ETH_DMAITConfig(uint32_t ETH_DMA_IT, FunctionalState NewState);
  1367. FlagStatus ETH_GetDMAOverflowStatus(uint32_t ETH_DMA_Overflow);
  1368. uint32_t ETH_GetRxOverflowMissedFrameCounter(void);
  1369. uint32_t ETH_GetBufferUnavailableMissedFrameCounter(void);
  1370. uint32_t ETH_GetCurrentTxDescStartAddress(void);
  1371. uint32_t ETH_GetCurrentRxDescStartAddress(void);
  1372. uint32_t ETH_GetCurrentTxBufferAddress(void);
  1373. uint32_t ETH_GetCurrentRxBufferAddress(void);
  1374. void ETH_ResumeDMATransmission(void);
  1375. void ETH_ResumeDMAReception(void);
  1376. /**
  1377. * @brief PMT
  1378. */
  1379. void ETH_ResetWakeUpFrameFilterRegisterPointer(void);
  1380. void ETH_SetWakeUpFrameFilterRegister(uint32_t *Buffer);
  1381. void ETH_GlobalUnicastWakeUpCmd(FunctionalState NewState);
  1382. FlagStatus ETH_GetPMTFlagStatus(uint32_t ETH_PMT_FLAG);
  1383. void ETH_WakeUpFrameDetectionCmd(FunctionalState NewState);
  1384. void ETH_MagicPacketDetectionCmd(FunctionalState NewState);
  1385. void ETH_PowerDownCmd(FunctionalState NewState);
  1386. /**
  1387. * @brief MMC
  1388. */
  1389. void ETH_MMCCounterFreezeCmd(FunctionalState NewState);
  1390. void ETH_MMCResetOnReadCmd(FunctionalState NewState);
  1391. void ETH_MMCCounterRolloverCmd(FunctionalState NewState);
  1392. void ETH_MMCCountersReset(void);
  1393. void ETH_MMCITConfig(uint32_t ETH_MMC_IT, FunctionalState NewState);
  1394. ITStatus ETH_GetMMCITStatus(uint32_t ETH_MMC_IT);
  1395. uint32_t ETH_GetMMCRegister(uint32_t ETH_MMCReg);
  1396. /**
  1397. * @brief PTP
  1398. */
  1399. uint32_t ETH_HandlePTPTxPkt(u8 *ppkt, u16 FrameLength, uint32_t *PTPTxTab);
  1400. uint32_t ETH_HandlePTPRxPkt(u8 *ppkt, uint32_t *PTPRxTab);
  1401. void ETH_DMAPTPTxDescChainInit(ETH_DMADESCTypeDef *DMATxDescTab, ETH_DMADESCTypeDef *DMAPTPTxDescTab, u8* TxBuff, uint32_t TxBuffCount);
  1402. void ETH_DMAPTPRxDescChainInit(ETH_DMADESCTypeDef *DMARxDescTab, ETH_DMADESCTypeDef *DMAPTPRxDescTab, u8 *RxBuff, uint32_t RxBuffCount);
  1403. void ETH_EnablePTPTimeStampAddend(void);
  1404. void ETH_EnablePTPTimeStampInterruptTrigger(void);
  1405. void ETH_EnablePTPTimeStampUpdate(void);
  1406. void ETH_InitializePTPTimeStamp(void);
  1407. void ETH_PTPUpdateMethodConfig(uint32_t UpdateMethod);
  1408. void ETH_PTPTimeStampCmd(FunctionalState NewState);
  1409. FlagStatus ETH_GetPTPFlagStatus(uint32_t ETH_PTP_FLAG);
  1410. void ETH_SetPTPSubSecondIncrement(uint32_t SubSecondValue);
  1411. void ETH_SetPTPTimeStampUpdate(uint32_t Sign, uint32_t SecondValue, uint32_t SubSecondValue);
  1412. void ETH_SetPTPTimeStampAddend(uint32_t Value);
  1413. void ETH_SetPTPTargetTime(uint32_t HighValue, uint32_t LowValue);
  1414. uint32_t ETH_GetPTPRegister(uint32_t ETH_PTPReg);
  1415. #ifdef __cplusplus
  1416. }
  1417. #endif
  1418. #endif /* __STM32_ETH_H */
  1419. /**
  1420. * @}
  1421. */
  1422. /**
  1423. * @}
  1424. */
  1425. /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/