phy.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. /*
  2. * include/linux/phy.h
  3. *
  4. * Framework and drivers for configuring and reading different PHYs
  5. * Based on code in sungem_phy.c and gianfar_phy.c
  6. *
  7. * Author: Andy Fleming
  8. *
  9. * Copyright (c) 2004 Freescale Semiconductor, Inc.
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. *
  16. */
  17. #ifndef __PHY_H
  18. #define __PHY_H
  19. #include <linux/spinlock.h>
  20. #include <linux/device.h>
  21. #include <linux/ethtool.h>
  22. #include <linux/mii.h>
  23. #include <linux/timer.h>
  24. #include <linux/workqueue.h>
  25. #include <asm/atomic.h>
  26. #define PHY_BASIC_FEATURES (SUPPORTED_10baseT_Half | \
  27. SUPPORTED_10baseT_Full | \
  28. SUPPORTED_100baseT_Half | \
  29. SUPPORTED_100baseT_Full | \
  30. SUPPORTED_Autoneg | \
  31. SUPPORTED_TP | \
  32. SUPPORTED_MII)
  33. #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
  34. SUPPORTED_1000baseT_Half | \
  35. SUPPORTED_1000baseT_Full)
  36. /* Set phydev->irq to PHY_POLL if interrupts are not supported,
  37. * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if
  38. * the attached driver handles the interrupt
  39. */
  40. #define PHY_POLL -1
  41. #define PHY_IGNORE_INTERRUPT -2
  42. #define PHY_HAS_INTERRUPT 0x00000001
  43. #define PHY_HAS_MAGICANEG 0x00000002
  44. /* Interface Mode definitions */
  45. typedef enum {
  46. PHY_INTERFACE_MODE_MII,
  47. PHY_INTERFACE_MODE_GMII,
  48. PHY_INTERFACE_MODE_SGMII,
  49. PHY_INTERFACE_MODE_TBI,
  50. PHY_INTERFACE_MODE_RMII,
  51. PHY_INTERFACE_MODE_RGMII,
  52. PHY_INTERFACE_MODE_RGMII_ID,
  53. PHY_INTERFACE_MODE_RGMII_RXID,
  54. PHY_INTERFACE_MODE_RGMII_TXID,
  55. PHY_INTERFACE_MODE_RTBI
  56. } phy_interface_t;
  57. #define MII_BUS_MAX 4
  58. #define PHY_INIT_TIMEOUT 100000
  59. #define PHY_STATE_TIME 1
  60. #define PHY_FORCE_TIMEOUT 10
  61. #define PHY_AN_TIMEOUT 10
  62. #define PHY_MAX_ADDR 32
  63. /* Used when trying to connect to a specific phy (mii bus id:phy device id) */
  64. #define PHY_ID_FMT "%x:%02x"
  65. /* The Bus class for PHYs. Devices which provide access to
  66. * PHYs should register using this structure */
  67. struct mii_bus {
  68. const char *name;
  69. int id;
  70. void *priv;
  71. int (*read)(struct mii_bus *bus, int phy_id, int regnum);
  72. int (*write)(struct mii_bus *bus, int phy_id, int regnum, u16 val);
  73. int (*reset)(struct mii_bus *bus);
  74. /* A lock to ensure that only one thing can read/write
  75. * the MDIO bus at a time */
  76. struct mutex mdio_lock;
  77. struct device *dev;
  78. /* list of all PHYs on bus */
  79. struct phy_device *phy_map[PHY_MAX_ADDR];
  80. /* Phy addresses to be ignored when probing */
  81. u32 phy_mask;
  82. /* Pointer to an array of interrupts, each PHY's
  83. * interrupt at the index matching its address */
  84. int *irq;
  85. };
  86. #define PHY_INTERRUPT_DISABLED 0x0
  87. #define PHY_INTERRUPT_ENABLED 0x80000000
  88. /* PHY state machine states:
  89. *
  90. * DOWN: PHY device and driver are not ready for anything. probe
  91. * should be called if and only if the PHY is in this state,
  92. * given that the PHY device exists.
  93. * - PHY driver probe function will, depending on the PHY, set
  94. * the state to STARTING or READY
  95. *
  96. * STARTING: PHY device is coming up, and the ethernet driver is
  97. * not ready. PHY drivers may set this in the probe function.
  98. * If they do, they are responsible for making sure the state is
  99. * eventually set to indicate whether the PHY is UP or READY,
  100. * depending on the state when the PHY is done starting up.
  101. * - PHY driver will set the state to READY
  102. * - start will set the state to PENDING
  103. *
  104. * READY: PHY is ready to send and receive packets, but the
  105. * controller is not. By default, PHYs which do not implement
  106. * probe will be set to this state by phy_probe(). If the PHY
  107. * driver knows the PHY is ready, and the PHY state is STARTING,
  108. * then it sets this STATE.
  109. * - start will set the state to UP
  110. *
  111. * PENDING: PHY device is coming up, but the ethernet driver is
  112. * ready. phy_start will set this state if the PHY state is
  113. * STARTING.
  114. * - PHY driver will set the state to UP when the PHY is ready
  115. *
  116. * UP: The PHY and attached device are ready to do work.
  117. * Interrupts should be started here.
  118. * - timer moves to AN
  119. *
  120. * AN: The PHY is currently negotiating the link state. Link is
  121. * therefore down for now. phy_timer will set this state when it
  122. * detects the state is UP. config_aneg will set this state
  123. * whenever called with phydev->autoneg set to AUTONEG_ENABLE.
  124. * - If autonegotiation finishes, but there's no link, it sets
  125. * the state to NOLINK.
  126. * - If aneg finishes with link, it sets the state to RUNNING,
  127. * and calls adjust_link
  128. * - If autonegotiation did not finish after an arbitrary amount
  129. * of time, autonegotiation should be tried again if the PHY
  130. * supports "magic" autonegotiation (back to AN)
  131. * - If it didn't finish, and no magic_aneg, move to FORCING.
  132. *
  133. * NOLINK: PHY is up, but not currently plugged in.
  134. * - If the timer notes that the link comes back, we move to RUNNING
  135. * - config_aneg moves to AN
  136. * - phy_stop moves to HALTED
  137. *
  138. * FORCING: PHY is being configured with forced settings
  139. * - if link is up, move to RUNNING
  140. * - If link is down, we drop to the next highest setting, and
  141. * retry (FORCING) after a timeout
  142. * - phy_stop moves to HALTED
  143. *
  144. * RUNNING: PHY is currently up, running, and possibly sending
  145. * and/or receiving packets
  146. * - timer will set CHANGELINK if we're polling (this ensures the
  147. * link state is polled every other cycle of this state machine,
  148. * which makes it every other second)
  149. * - irq will set CHANGELINK
  150. * - config_aneg will set AN
  151. * - phy_stop moves to HALTED
  152. *
  153. * CHANGELINK: PHY experienced a change in link state
  154. * - timer moves to RUNNING if link
  155. * - timer moves to NOLINK if the link is down
  156. * - phy_stop moves to HALTED
  157. *
  158. * HALTED: PHY is up, but no polling or interrupts are done. Or
  159. * PHY is in an error state.
  160. *
  161. * - phy_start moves to RESUMING
  162. *
  163. * RESUMING: PHY was halted, but now wants to run again.
  164. * - If we are forcing, or aneg is done, timer moves to RUNNING
  165. * - If aneg is not done, timer moves to AN
  166. * - phy_stop moves to HALTED
  167. */
  168. enum phy_state {
  169. PHY_DOWN=0,
  170. PHY_STARTING,
  171. PHY_READY,
  172. PHY_PENDING,
  173. PHY_UP,
  174. PHY_AN,
  175. PHY_RUNNING,
  176. PHY_NOLINK,
  177. PHY_FORCING,
  178. PHY_CHANGELINK,
  179. PHY_HALTED,
  180. PHY_RESUMING
  181. };
  182. /* phy_device: An instance of a PHY
  183. *
  184. * drv: Pointer to the driver for this PHY instance
  185. * bus: Pointer to the bus this PHY is on
  186. * dev: driver model device structure for this PHY
  187. * phy_id: UID for this device found during discovery
  188. * state: state of the PHY for management purposes
  189. * dev_flags: Device-specific flags used by the PHY driver.
  190. * addr: Bus address of PHY
  191. * link_timeout: The number of timer firings to wait before the
  192. * giving up on the current attempt at acquiring a link
  193. * irq: IRQ number of the PHY's interrupt (-1 if none)
  194. * phy_timer: The timer for handling the state machine
  195. * phy_queue: A work_queue for the interrupt
  196. * attached_dev: The attached enet driver's device instance ptr
  197. * adjust_link: Callback for the enet controller to respond to
  198. * changes in the link state.
  199. * adjust_state: Callback for the enet driver to respond to
  200. * changes in the state machine.
  201. *
  202. * speed, duplex, pause, supported, advertising, and
  203. * autoneg are used like in mii_if_info
  204. *
  205. * interrupts currently only supports enabled or disabled,
  206. * but could be changed in the future to support enabling
  207. * and disabling specific interrupts
  208. *
  209. * Contains some infrastructure for polling and interrupt
  210. * handling, as well as handling shifts in PHY hardware state
  211. */
  212. struct phy_device {
  213. /* Information about the PHY type */
  214. /* And management functions */
  215. struct phy_driver *drv;
  216. struct mii_bus *bus;
  217. struct device dev;
  218. u32 phy_id;
  219. enum phy_state state;
  220. u32 dev_flags;
  221. phy_interface_t interface;
  222. /* Bus address of the PHY (0-32) */
  223. int addr;
  224. /* forced speed & duplex (no autoneg)
  225. * partner speed & duplex & pause (autoneg)
  226. */
  227. int speed;
  228. int duplex;
  229. int pause;
  230. int asym_pause;
  231. /* The most recently read link state */
  232. int link;
  233. /* Enabled Interrupts */
  234. u32 interrupts;
  235. /* Union of PHY and Attached devices' supported modes */
  236. /* See mii.h for more info */
  237. u32 supported;
  238. u32 advertising;
  239. int autoneg;
  240. int link_timeout;
  241. /* Interrupt number for this PHY
  242. * -1 means no interrupt */
  243. int irq;
  244. /* private data pointer */
  245. /* For use by PHYs to maintain extra state */
  246. void *priv;
  247. /* Interrupt and Polling infrastructure */
  248. struct work_struct phy_queue;
  249. struct work_struct state_queue;
  250. struct timer_list phy_timer;
  251. atomic_t irq_disable;
  252. struct mutex lock;
  253. struct net_device *attached_dev;
  254. void (*adjust_link)(struct net_device *dev);
  255. void (*adjust_state)(struct net_device *dev);
  256. };
  257. #define to_phy_device(d) container_of(d, struct phy_device, dev)
  258. /* struct phy_driver: Driver structure for a particular PHY type
  259. *
  260. * phy_id: The result of reading the UID registers of this PHY
  261. * type, and ANDing them with the phy_id_mask. This driver
  262. * only works for PHYs with IDs which match this field
  263. * name: The friendly name of this PHY type
  264. * phy_id_mask: Defines the important bits of the phy_id
  265. * features: A list of features (speed, duplex, etc) supported
  266. * by this PHY
  267. * flags: A bitfield defining certain other features this PHY
  268. * supports (like interrupts)
  269. *
  270. * The drivers must implement config_aneg and read_status. All
  271. * other functions are optional. Note that none of these
  272. * functions should be called from interrupt time. The goal is
  273. * for the bus read/write functions to be able to block when the
  274. * bus transaction is happening, and be freed up by an interrupt
  275. * (The MPC85xx has this ability, though it is not currently
  276. * supported in the driver).
  277. */
  278. struct phy_driver {
  279. u32 phy_id;
  280. char *name;
  281. unsigned int phy_id_mask;
  282. u32 features;
  283. u32 flags;
  284. /* Called to initialize the PHY,
  285. * including after a reset */
  286. int (*config_init)(struct phy_device *phydev);
  287. /* Called during discovery. Used to set
  288. * up device-specific structures, if any */
  289. int (*probe)(struct phy_device *phydev);
  290. /* PHY Power Management */
  291. int (*suspend)(struct phy_device *phydev);
  292. int (*resume)(struct phy_device *phydev);
  293. /* Configures the advertisement and resets
  294. * autonegotiation if phydev->autoneg is on,
  295. * forces the speed to the current settings in phydev
  296. * if phydev->autoneg is off */
  297. int (*config_aneg)(struct phy_device *phydev);
  298. /* Determines the negotiated speed and duplex */
  299. int (*read_status)(struct phy_device *phydev);
  300. /* Clears any pending interrupts */
  301. int (*ack_interrupt)(struct phy_device *phydev);
  302. /* Enables or disables interrupts */
  303. int (*config_intr)(struct phy_device *phydev);
  304. /* Clears up any memory if needed */
  305. void (*remove)(struct phy_device *phydev);
  306. struct device_driver driver;
  307. };
  308. #define to_phy_driver(d) container_of(d, struct phy_driver, driver)
  309. int phy_read(struct phy_device *phydev, u16 regnum);
  310. int phy_write(struct phy_device *phydev, u16 regnum, u16 val);
  311. struct phy_device* get_phy_device(struct mii_bus *bus, int addr);
  312. int phy_clear_interrupt(struct phy_device *phydev);
  313. int phy_config_interrupt(struct phy_device *phydev, u32 interrupts);
  314. struct phy_device * phy_attach(struct net_device *dev,
  315. const char *phy_id, u32 flags, phy_interface_t interface);
  316. struct phy_device * phy_connect(struct net_device *dev, const char *phy_id,
  317. void (*handler)(struct net_device *), u32 flags,
  318. phy_interface_t interface);
  319. void phy_disconnect(struct phy_device *phydev);
  320. void phy_detach(struct phy_device *phydev);
  321. void phy_start(struct phy_device *phydev);
  322. void phy_stop(struct phy_device *phydev);
  323. int phy_start_aneg(struct phy_device *phydev);
  324. int mdiobus_register(struct mii_bus *bus);
  325. void mdiobus_unregister(struct mii_bus *bus);
  326. void phy_sanitize_settings(struct phy_device *phydev);
  327. int phy_stop_interrupts(struct phy_device *phydev);
  328. static inline int phy_read_status(struct phy_device *phydev) {
  329. return phydev->drv->read_status(phydev);
  330. }
  331. int genphy_config_advert(struct phy_device *phydev);
  332. int genphy_setup_forced(struct phy_device *phydev);
  333. int genphy_restart_aneg(struct phy_device *phydev);
  334. int genphy_config_aneg(struct phy_device *phydev);
  335. int genphy_update_link(struct phy_device *phydev);
  336. int genphy_read_status(struct phy_device *phydev);
  337. void phy_driver_unregister(struct phy_driver *drv);
  338. int phy_driver_register(struct phy_driver *new_driver);
  339. void phy_prepare_link(struct phy_device *phydev,
  340. void (*adjust_link)(struct net_device *));
  341. void phy_start_machine(struct phy_device *phydev,
  342. void (*handler)(struct net_device *));
  343. void phy_stop_machine(struct phy_device *phydev);
  344. int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd);
  345. int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd);
  346. int phy_mii_ioctl(struct phy_device *phydev,
  347. struct mii_ioctl_data *mii_data, int cmd);
  348. int phy_start_interrupts(struct phy_device *phydev);
  349. void phy_print_status(struct phy_device *phydev);
  350. struct phy_device* phy_device_create(struct mii_bus *bus, int addr, int phy_id);
  351. void phy_device_free(struct phy_device *phydev);
  352. extern struct bus_type mdio_bus_type;
  353. #endif /* __PHY_H */