phy.h 12 KB

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