4 * Framework and drivers for configuring and reading different PHYs
5 * Based on code in sungem_phy.c and gianfar_phy.c
9 * Copyright (c) 2004 Freescale Semiconductor, Inc.
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.
21 #include <linux/spinlock.h>
22 #include <linux/device.h>
23 #include <linux/ethtool.h>
24 #include <linux/mii.h>
25 #include <linux/timer.h>
26 #include <linux/workqueue.h>
28 #include <asm/atomic.h>
30 #define PHY_BASIC_FEATURES (SUPPORTED_10baseT_Half | \
31 SUPPORTED_10baseT_Full | \
32 SUPPORTED_100baseT_Half | \
33 SUPPORTED_100baseT_Full | \
38 #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \
39 SUPPORTED_1000baseT_Half | \
40 SUPPORTED_1000baseT_Full)
42 /* Set phydev->irq to PHY_POLL if interrupts are not supported,
43 * or not desired for this PHY. Set to PHY_IGNORE_INTERRUPT if
44 * the attached driver handles the interrupt
47 #define PHY_IGNORE_INTERRUPT -2
49 #define PHY_HAS_INTERRUPT 0x00000001
50 #define PHY_HAS_MAGICANEG 0x00000002
52 /* Interface Mode definitions */
54 PHY_INTERFACE_MODE_MII
,
55 PHY_INTERFACE_MODE_GMII
,
56 PHY_INTERFACE_MODE_SGMII
,
57 PHY_INTERFACE_MODE_TBI
,
58 PHY_INTERFACE_MODE_RMII
,
59 PHY_INTERFACE_MODE_RGMII
,
60 PHY_INTERFACE_MODE_RGMII_ID
,
61 PHY_INTERFACE_MODE_RTBI
67 #define PHY_INIT_TIMEOUT 100000
68 #define PHY_STATE_TIME 1
69 #define PHY_FORCE_TIMEOUT 10
70 #define PHY_AN_TIMEOUT 10
72 #define PHY_MAX_ADDR 32
74 /* Used when trying to connect to a specific phy (mii bus id:phy device id) */
75 #define PHY_ID_FMT "%x:%02x"
77 /* The Bus class for PHYs. Devices which provide access to
78 * PHYs should register using this structure */
83 int (*read
)(struct mii_bus
*bus
, int phy_id
, int regnum
);
84 int (*write
)(struct mii_bus
*bus
, int phy_id
, int regnum
, u16 val
);
85 int (*reset
)(struct mii_bus
*bus
);
87 /* A lock to ensure that only one thing can read/write
88 * the MDIO bus at a time */
93 /* list of all PHYs on bus */
94 struct phy_device
*phy_map
[PHY_MAX_ADDR
];
96 /* Phy addresses to be ignored when probing */
99 /* Pointer to an array of interrupts, each PHY's
100 * interrupt at the index matching its address */
104 #define PHY_INTERRUPT_DISABLED 0x0
105 #define PHY_INTERRUPT_ENABLED 0x80000000
107 /* PHY state machine states:
109 * DOWN: PHY device and driver are not ready for anything. probe
110 * should be called if and only if the PHY is in this state,
111 * given that the PHY device exists.
112 * - PHY driver probe function will, depending on the PHY, set
113 * the state to STARTING or READY
115 * STARTING: PHY device is coming up, and the ethernet driver is
116 * not ready. PHY drivers may set this in the probe function.
117 * If they do, they are responsible for making sure the state is
118 * eventually set to indicate whether the PHY is UP or READY,
119 * depending on the state when the PHY is done starting up.
120 * - PHY driver will set the state to READY
121 * - start will set the state to PENDING
123 * READY: PHY is ready to send and receive packets, but the
124 * controller is not. By default, PHYs which do not implement
125 * probe will be set to this state by phy_probe(). If the PHY
126 * driver knows the PHY is ready, and the PHY state is STARTING,
127 * then it sets this STATE.
128 * - start will set the state to UP
130 * PENDING: PHY device is coming up, but the ethernet driver is
131 * ready. phy_start will set this state if the PHY state is
133 * - PHY driver will set the state to UP when the PHY is ready
135 * UP: The PHY and attached device are ready to do work.
136 * Interrupts should be started here.
137 * - timer moves to AN
139 * AN: The PHY is currently negotiating the link state. Link is
140 * therefore down for now. phy_timer will set this state when it
141 * detects the state is UP. config_aneg will set this state
142 * whenever called with phydev->autoneg set to AUTONEG_ENABLE.
143 * - If autonegotiation finishes, but there's no link, it sets
144 * the state to NOLINK.
145 * - If aneg finishes with link, it sets the state to RUNNING,
146 * and calls adjust_link
147 * - If autonegotiation did not finish after an arbitrary amount
148 * of time, autonegotiation should be tried again if the PHY
149 * supports "magic" autonegotiation (back to AN)
150 * - If it didn't finish, and no magic_aneg, move to FORCING.
152 * NOLINK: PHY is up, but not currently plugged in.
153 * - If the timer notes that the link comes back, we move to RUNNING
154 * - config_aneg moves to AN
155 * - phy_stop moves to HALTED
157 * FORCING: PHY is being configured with forced settings
158 * - if link is up, move to RUNNING
159 * - If link is down, we drop to the next highest setting, and
160 * retry (FORCING) after a timeout
161 * - phy_stop moves to HALTED
163 * RUNNING: PHY is currently up, running, and possibly sending
164 * and/or receiving packets
165 * - timer will set CHANGELINK if we're polling (this ensures the
166 * link state is polled every other cycle of this state machine,
167 * which makes it every other second)
168 * - irq will set CHANGELINK
169 * - config_aneg will set AN
170 * - phy_stop moves to HALTED
172 * CHANGELINK: PHY experienced a change in link state
173 * - timer moves to RUNNING if link
174 * - timer moves to NOLINK if the link is down
175 * - phy_stop moves to HALTED
177 * HALTED: PHY is up, but no polling or interrupts are done. Or
178 * PHY is in an error state.
180 * - phy_start moves to RESUMING
182 * RESUMING: PHY was halted, but now wants to run again.
183 * - If we are forcing, or aneg is done, timer moves to RUNNING
184 * - If aneg is not done, timer moves to AN
185 * - phy_stop moves to HALTED
202 /* phy_device: An instance of a PHY
204 * drv: Pointer to the driver for this PHY instance
205 * bus: Pointer to the bus this PHY is on
206 * dev: driver model device structure for this PHY
207 * phy_id: UID for this device found during discovery
208 * state: state of the PHY for management purposes
209 * dev_flags: Device-specific flags used by the PHY driver.
210 * addr: Bus address of PHY
211 * link_timeout: The number of timer firings to wait before the
212 * giving up on the current attempt at acquiring a link
213 * irq: IRQ number of the PHY's interrupt (-1 if none)
214 * phy_timer: The timer for handling the state machine
215 * phy_queue: A work_queue for the interrupt
216 * attached_dev: The attached enet driver's device instance ptr
217 * adjust_link: Callback for the enet controller to respond to
218 * changes in the link state.
219 * adjust_state: Callback for the enet driver to respond to
220 * changes in the state machine.
222 * speed, duplex, pause, supported, advertising, and
223 * autoneg are used like in mii_if_info
225 * interrupts currently only supports enabled or disabled,
226 * but could be changed in the future to support enabling
227 * and disabling specific interrupts
229 * Contains some infrastructure for polling and interrupt
230 * handling, as well as handling shifts in PHY hardware state
233 /* Information about the PHY type */
234 /* And management functions */
235 struct phy_driver
*drv
;
243 enum phy_state state
;
247 phy_interface_t interface
;
249 /* Bus address of the PHY (0-32) */
252 /* forced speed & duplex (no autoneg)
253 * partner speed & duplex & pause (autoneg)
260 /* The most recently read link state */
263 /* Enabled Interrupts */
266 /* Union of PHY and Attached devices' supported modes */
267 /* See mii.h for more info */
275 /* Interrupt number for this PHY
276 * -1 means no interrupt */
279 /* private data pointer */
280 /* For use by PHYs to maintain extra state */
283 /* Interrupt and Polling infrastructure */
284 struct work_struct phy_queue
;
285 struct timer_list phy_timer
;
286 atomic_t irq_disable
;
290 struct net_device
*attached_dev
;
292 void (*adjust_link
)(struct net_device
*dev
);
294 void (*adjust_state
)(struct net_device
*dev
);
296 #define to_phy_device(d) container_of(d, struct phy_device, dev)
298 /* struct phy_driver: Driver structure for a particular PHY type
300 * phy_id: The result of reading the UID registers of this PHY
301 * type, and ANDing them with the phy_id_mask. This driver
302 * only works for PHYs with IDs which match this field
303 * name: The friendly name of this PHY type
304 * phy_id_mask: Defines the important bits of the phy_id
305 * features: A list of features (speed, duplex, etc) supported
307 * flags: A bitfield defining certain other features this PHY
308 * supports (like interrupts)
310 * The drivers must implement config_aneg and read_status. All
311 * other functions are optional. Note that none of these
312 * functions should be called from interrupt time. The goal is
313 * for the bus read/write functions to be able to block when the
314 * bus transaction is happening, and be freed up by an interrupt
315 * (The MPC85xx has this ability, though it is not currently
316 * supported in the driver).
321 unsigned int phy_id_mask
;
325 /* Called to initialize the PHY,
326 * including after a reset */
327 int (*config_init
)(struct phy_device
*phydev
);
329 /* Called during discovery. Used to set
330 * up device-specific structures, if any */
331 int (*probe
)(struct phy_device
*phydev
);
333 /* PHY Power Management */
334 int (*suspend
)(struct phy_device
*phydev
);
335 int (*resume
)(struct phy_device
*phydev
);
337 /* Configures the advertisement and resets
338 * autonegotiation if phydev->autoneg is on,
339 * forces the speed to the current settings in phydev
340 * if phydev->autoneg is off */
341 int (*config_aneg
)(struct phy_device
*phydev
);
343 /* Determines the negotiated speed and duplex */
344 int (*read_status
)(struct phy_device
*phydev
);
346 /* Clears any pending interrupts */
347 int (*ack_interrupt
)(struct phy_device
*phydev
);
349 /* Enables or disables interrupts */
350 int (*config_intr
)(struct phy_device
*phydev
);
352 /* Clears up any memory if needed */
353 void (*remove
)(struct phy_device
*phydev
);
355 struct device_driver driver
;
357 #define to_phy_driver(d) container_of(d, struct phy_driver, driver)
359 int phy_read(struct phy_device
*phydev
, u16 regnum
);
360 int phy_write(struct phy_device
*phydev
, u16 regnum
, u16 val
);
361 struct phy_device
* get_phy_device(struct mii_bus
*bus
, int addr
);
362 int phy_clear_interrupt(struct phy_device
*phydev
);
363 int phy_config_interrupt(struct phy_device
*phydev
, u32 interrupts
);
364 struct phy_device
* phy_attach(struct net_device
*dev
,
365 const char *phy_id
, u32 flags
, phy_interface_t interface
);
366 struct phy_device
* phy_connect(struct net_device
*dev
, const char *phy_id
,
367 void (*handler
)(struct net_device
*), u32 flags
,
368 phy_interface_t interface
);
369 void phy_disconnect(struct phy_device
*phydev
);
370 void phy_detach(struct phy_device
*phydev
);
371 void phy_start(struct phy_device
*phydev
);
372 void phy_stop(struct phy_device
*phydev
);
373 int phy_start_aneg(struct phy_device
*phydev
);
375 int mdiobus_register(struct mii_bus
*bus
);
376 void mdiobus_unregister(struct mii_bus
*bus
);
377 void phy_sanitize_settings(struct phy_device
*phydev
);
378 int phy_stop_interrupts(struct phy_device
*phydev
);
380 static inline int phy_read_status(struct phy_device
*phydev
) {
381 return phydev
->drv
->read_status(phydev
);
384 int genphy_config_advert(struct phy_device
*phydev
);
385 int genphy_setup_forced(struct phy_device
*phydev
);
386 int genphy_restart_aneg(struct phy_device
*phydev
);
387 int genphy_config_aneg(struct phy_device
*phydev
);
388 int genphy_update_link(struct phy_device
*phydev
);
389 int genphy_read_status(struct phy_device
*phydev
);
390 void phy_driver_unregister(struct phy_driver
*drv
);
391 int phy_driver_register(struct phy_driver
*new_driver
);
392 void phy_prepare_link(struct phy_device
*phydev
,
393 void (*adjust_link
)(struct net_device
*));
394 void phy_start_machine(struct phy_device
*phydev
,
395 void (*handler
)(struct net_device
*));
396 void phy_stop_machine(struct phy_device
*phydev
);
397 int phy_ethtool_sset(struct phy_device
*phydev
, struct ethtool_cmd
*cmd
);
398 int phy_ethtool_gset(struct phy_device
*phydev
, struct ethtool_cmd
*cmd
);
399 int phy_mii_ioctl(struct phy_device
*phydev
,
400 struct mii_ioctl_data
*mii_data
, int cmd
);
401 int phy_start_interrupts(struct phy_device
*phydev
);
402 void phy_print_status(struct phy_device
*phydev
);
403 struct phy_device
* phy_device_create(struct mii_bus
*bus
, int addr
, int phy_id
);
405 extern struct bus_type mdio_bus_type
;