mii.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Copyright (c) 2016 Piotr Mienkowski
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief Definitions for IEEE 802.3, Section 2 MII compatible PHY transceivers
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_MII_H_
  10. #define ZEPHYR_INCLUDE_NET_MII_H_
  11. /**
  12. * @brief Ethernet MII (media independent interface) functions
  13. * @defgroup ethernet_mii Ethernet MII Support Functions
  14. * @ingroup ethernet
  15. * @{
  16. */
  17. /* MII management registers */
  18. /** Basic Mode Control Register */
  19. #define MII_BMCR 0x0
  20. /** Basic Mode Status Register */
  21. #define MII_BMSR 0x1
  22. /** PHY ID 1 Register */
  23. #define MII_PHYID1R 0x2
  24. /** PHY ID 2 Register */
  25. #define MII_PHYID2R 0x3
  26. /** Auto-Negotiation Advertisement Register */
  27. #define MII_ANAR 0x4
  28. /** Auto-Negotiation Link Partner Ability Reg */
  29. #define MII_ANLPAR 0x5
  30. /** Auto-Negotiation Expansion Register */
  31. #define MII_ANER 0x6
  32. /** Auto-Negotiation Next Page Transmit Register */
  33. #define MII_ANNPTR 0x7
  34. /** Auto-Negotiation Link Partner Received Next Page Reg */
  35. #define MII_ANLPRNPR 0x8
  36. /** MMD Access Control Register */
  37. #define MII_MMD_ACR 0xd
  38. /** MMD Access Address Data Register */
  39. #define MII_MMD_AADR 0xe
  40. /** Extended Status Register */
  41. #define MII_ESTAT 0xf
  42. /* Basic Mode Control Register (BMCR) bit definitions */
  43. /** PHY reset */
  44. #define MII_BMCR_RESET (1 << 15)
  45. /** enable loopback mode */
  46. #define MII_BMCR_LOOPBACK (1 << 14)
  47. /** 10=1000Mbps 01=100Mbps; 00=10Mbps */
  48. #define MII_BMCR_SPEED_LSB (1 << 13)
  49. /** Auto-Negotiation enable */
  50. #define MII_BMCR_AUTONEG_ENABLE (1 << 12)
  51. /** power down mode */
  52. #define MII_BMCR_POWER_DOWN (1 << 11)
  53. /** isolate electrically PHY from MII */
  54. #define MII_BMCR_ISOLATE (1 << 10)
  55. /** restart auto-negotiation */
  56. #define MII_BMCR_AUTONEG_RESTART (1 << 9)
  57. /** full duplex mode */
  58. #define MII_BMCR_DUPLEX_MODE (1 << 8)
  59. /** 10=1000Mbps 01=100Mbps; 00=10Mbps */
  60. #define MII_BMCR_SPEED_MSB (1 << 6)
  61. /** Link Speed Field */
  62. #define MII_BMCR_SPEED_MASK (1 << 6 | 1 << 13)
  63. /** select speed 10 Mb/s */
  64. #define MII_BMCR_SPEED_10 (0 << 6 | 0 << 13)
  65. /** select speed 100 Mb/s */
  66. #define MII_BMCR_SPEED_100 (0 << 6 | 1 << 13)
  67. /** select speed 1000 Mb/s */
  68. #define MII_BMCR_SPEED_1000 (1 << 6 | 0 << 13)
  69. /* Basic Mode Status Register (BMSR) bit definitions */
  70. /** 100BASE-T4 capable */
  71. #define MII_BMSR_100BASE_T4 (1 << 15)
  72. /** 100BASE-X full duplex capable */
  73. #define MII_BMSR_100BASE_X_FULL (1 << 14)
  74. /** 100BASE-X half duplex capable */
  75. #define MII_BMSR_100BASE_X_HALF (1 << 13)
  76. /** 10 Mb/s full duplex capable */
  77. #define MII_BMSR_10_FULL (1 << 12)
  78. /** 10 Mb/s half duplex capable */
  79. #define MII_BMSR_10_HALF (1 << 11)
  80. /** 100BASE-T2 full duplex capable */
  81. #define MII_BMSR_100BASE_T2_FULL (1 << 10)
  82. /** 100BASE-T2 half duplex capable */
  83. #define MII_BMSR_100BASE_T2_HALF (1 << 9)
  84. /** extend status information in reg 15 */
  85. #define MII_BMSR_EXTEND_STATUS (1 << 8)
  86. /** PHY accepts management frames with preamble suppressed */
  87. #define MII_BMSR_MF_PREAMB_SUPPR (1 << 6)
  88. /** Auto-negotiation process completed */
  89. #define MII_BMSR_AUTONEG_COMPLETE (1 << 5)
  90. /** remote fault detected */
  91. #define MII_BMSR_REMOTE_FAULT (1 << 4)
  92. /** PHY is able to perform Auto-Negotiation */
  93. #define MII_BMSR_AUTONEG_ABILITY (1 << 3)
  94. /** link is up */
  95. #define MII_BMSR_LINK_STATUS (1 << 2)
  96. /** jabber condition detected */
  97. #define MII_BMSR_JABBER_DETECT (1 << 1)
  98. /** extended register capabilities */
  99. #define MII_BMSR_EXTEND_CAPAB (1 << 0)
  100. /* Auto-negotiation Advertisement Register (ANAR) bit definitions */
  101. /* Auto-negotiation Link Partner Ability Register (ANLPAR) bit definitions */
  102. /** next page */
  103. #define MII_ADVERTISE_NEXT_PAGE (1 << 15)
  104. /** link partner acknowledge response */
  105. #define MII_ADVERTISE_LPACK (1 << 14)
  106. /** remote fault */
  107. #define MII_ADVERTISE_REMOTE_FAULT (1 << 13)
  108. /** try for asymmetric pause */
  109. #define MII_ADVERTISE_ASYM_PAUSE (1 << 11)
  110. /** try for pause */
  111. #define MII_ADVERTISE_PAUSE (1 << 10)
  112. /** try for 100BASE-T4 support */
  113. #define MII_ADVERTISE_100BASE_T4 (1 << 9)
  114. /** try for 100BASE-X full duplex support */
  115. #define MII_ADVERTISE_100_FULL (1 << 8)
  116. /** try for 100BASE-X support */
  117. #define MII_ADVERTISE_100_HALF (1 << 7)
  118. /** try for 10 Mb/s full duplex support */
  119. #define MII_ADVERTISE_10_FULL (1 << 6)
  120. /** try for 10 Mb/s half duplex support */
  121. #define MII_ADVERTISE_10_HALF (1 << 5)
  122. /** Selector Field */
  123. #define MII_ADVERTISE_SEL_MASK (0x1F << 0)
  124. #define MII_ADVERTISE_SEL_IEEE_802_3 0x01
  125. #define MII_ADVERTISE_ALL (MII_ADVERTISE_10_HALF | MII_ADVERTISE_10_FULL |\
  126. MII_ADVERTISE_100_HALF | MII_ADVERTISE_100_FULL |\
  127. MII_ADVERTISE_SEL_IEEE_802_3)
  128. /**
  129. * @}
  130. */
  131. #endif /* ZEPHYR_INCLUDE_NET_MII_H_ */