phylink.h 19.4 KB
Newer Older
1 2 3 4 5 6 7 8 9
#ifndef NETDEV_PCS_H
#define NETDEV_PCS_H

#include <linux/phy.h>
#include <linux/spinlock.h>
#include <linux/workqueue.h>

struct device_node;
struct ethtool_cmd;
R
Russell King 已提交
10
struct fwnode_handle;
11 12 13 14
struct net_device;

enum {
	MLO_PAUSE_NONE,
15 16
	MLO_PAUSE_RX = BIT(0),
	MLO_PAUSE_TX = BIT(1),
17
	MLO_PAUSE_TXRX_MASK = MLO_PAUSE_TX | MLO_PAUSE_RX,
18
	MLO_PAUSE_AN = BIT(2),
19 20 21

	MLO_AN_PHY = 0,	/* Conventional PHY */
	MLO_AN_FIXED,	/* Fixed-link mode */
22
	MLO_AN_INBAND,	/* In-band protocol */
23 24 25 26
};

static inline bool phylink_autoneg_inband(unsigned int mode)
{
27
	return mode == MLO_AN_INBAND;
28 29
}

30 31 32 33 34 35 36 37 38 39 40 41 42
/**
 * struct phylink_link_state - link state structure
 * @advertising: ethtool bitmask containing advertised link modes
 * @lp_advertising: ethtool bitmask containing link partner advertised link
 *   modes
 * @interface: link &typedef phy_interface_t mode
 * @speed: link speed, one of the SPEED_* constants.
 * @duplex: link duplex mode, one of DUPLEX_* constants.
 * @pause: link pause state, described by MLO_PAUSE_* constants.
 * @link: true if the link is up.
 * @an_enabled: true if autonegotiation is enabled/desired.
 * @an_complete: true if autonegotiation has completed.
 */
43 44 45
struct phylink_link_state {
	__ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
	__ETHTOOL_DECLARE_LINK_MODE_MASK(lp_advertising);
46
	phy_interface_t interface;
47 48 49 50 51 52 53 54
	int speed;
	int duplex;
	int pause;
	unsigned int link:1;
	unsigned int an_enabled:1;
	unsigned int an_complete:1;
};

55 56
enum phylink_op_type {
	PHYLINK_NETDEV = 0,
57
	PHYLINK_DEV,
58 59 60 61 62 63
};

/**
 * struct phylink_config - PHYLINK configuration structure
 * @dev: a pointer to a struct device associated with the MAC
 * @type: operation type of PHYLINK instance
64
 * @pcs_poll: MAC PCS cannot provide link change interrupt
65 66
 * @poll_fixed_state: if true, starts link_poll,
 *		      if MAC link is at %MLO_AN_FIXED mode.
67
 * @ovr_an_inband: if true, override PCS to MLO_AN_INBAND
68 69
 * @get_fixed_state: callback to execute to determine the fixed link state,
 *		     if MAC link is at %MLO_AN_FIXED mode.
70 71 72 73
 */
struct phylink_config {
	struct device *dev;
	enum phylink_op_type type;
74
	bool pcs_poll;
75
	bool poll_fixed_state;
76
	bool ovr_an_inband;
77 78
	void (*get_fixed_state)(struct phylink_config *config,
				struct phylink_link_state *state);
79 80
};

81 82 83
/**
 * struct phylink_mac_ops - MAC operations structure.
 * @validate: Validate and update the link configuration.
84
 * @mac_pcs_get_state: Read the current link state from the hardware.
85
 * @mac_prepare: prepare for a major reconfiguration of the interface.
86
 * @mac_config: configure the MAC for the selected mode and state.
87
 * @mac_finish: finish a major reconfiguration of the interface.
88 89 90 91 92 93
 * @mac_an_restart: restart 802.3z BaseX autonegotiation.
 * @mac_link_down: take the link down.
 * @mac_link_up: allow the link to come up.
 *
 * The individual methods are described more fully below.
 */
94
struct phylink_mac_ops {
95 96
	void (*validate)(struct phylink_config *config,
			 unsigned long *supported,
97
			 struct phylink_link_state *state);
98 99
	void (*mac_pcs_get_state)(struct phylink_config *config,
				  struct phylink_link_state *state);
100 101
	int (*mac_prepare)(struct phylink_config *config, unsigned int mode,
			   phy_interface_t iface);
102
	void (*mac_config)(struct phylink_config *config, unsigned int mode,
103
			   const struct phylink_link_state *state);
104 105
	int (*mac_finish)(struct phylink_config *config, unsigned int mode,
			  phy_interface_t iface);
106 107
	void (*mac_an_restart)(struct phylink_config *config);
	void (*mac_link_down)(struct phylink_config *config, unsigned int mode,
108
			      phy_interface_t interface);
109 110 111 112
	void (*mac_link_up)(struct phylink_config *config,
			    struct phy_device *phy, unsigned int mode,
			    phy_interface_t interface, int speed, int duplex,
			    bool tx_pause, bool rx_pause);
113 114
};

115 116 117
#if 0 /* For kernel-doc purposes only. */
/**
 * validate - Validate and update the link configuration
118
 * @config: a pointer to a &struct phylink_config.
119 120 121 122 123 124 125 126 127
 * @supported: ethtool bitmask for supported link modes.
 * @state: a pointer to a &struct phylink_link_state.
 *
 * Clear bits in the @supported and @state->advertising masks that
 * are not supportable by the MAC.
 *
 * Note that the PHY may be able to transform from one connection
 * technology to another, so, eg, don't clear 1000BaseX just
 * because the MAC is unable to BaseX mode. This is more about
128 129
 * clearing unsupported speeds and duplex settings. The port modes
 * should not be cleared; phylink_set_port_modes() will help with this.
130 131 132 133
 *
 * If the @state->interface mode is %PHY_INTERFACE_MODE_1000BASEX
 * or %PHY_INTERFACE_MODE_2500BASEX, select the appropriate mode
 * based on @state->advertising and/or @state->speed and update
134 135 136 137 138 139 140
 * @state->interface accordingly. See phylink_helper_basex_speed().
 *
 * When @state->interface is %PHY_INTERFACE_MODE_NA, phylink expects the
 * MAC driver to return all supported link modes.
 *
 * If the @state->interface mode is not supported, then the @supported
 * mask must be cleared.
141
 */
142
void validate(struct phylink_config *config, unsigned long *supported,
143 144 145
	      struct phylink_link_state *state);

/**
146
 * mac_pcs_get_state() - Read the current inband link state from the hardware
147
 * @config: a pointer to a &struct phylink_config.
148 149
 * @state: a pointer to a &struct phylink_link_state.
 *
150 151 152 153 154 155
 * Read the current inband link state from the MAC PCS, reporting the
 * current speed in @state->speed, duplex mode in @state->duplex, pause
 * mode in @state->pause using the %MLO_PAUSE_RX and %MLO_PAUSE_TX bits,
 * negotiation completion state in @state->an_complete, and link up state
 * in @state->link. If possible, @state->lp_advertising should also be
 * populated.
156
 */
157 158
void mac_pcs_get_state(struct phylink_config *config,
		       struct phylink_link_state *state);
159

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
/**
 * mac_prepare() - prepare to change the PHY interface mode
 * @config: a pointer to a &struct phylink_config.
 * @mode: one of %MLO_AN_FIXED, %MLO_AN_PHY, %MLO_AN_INBAND.
 * @iface: interface mode to switch to
 *
 * phylink will call this method at the beginning of a full initialisation
 * of the link, which includes changing the interface mode or at initial
 * startup time. It may be called for the current mode. The MAC driver
 * should perform whatever actions are required, e.g. disabling the
 * Serdes PHY.
 *
 * This will be the first call in the sequence:
 * - mac_prepare()
 * - mac_config()
 * - pcs_config()
 * - possible pcs_an_restart()
 * - mac_finish()
 *
 * Returns zero on success, or negative errno on failure which will be
 * reported to the kernel log.
 */
int mac_prepare(struct phylink_config *config, unsigned int mode,
		phy_interface_t iface);

185 186
/**
 * mac_config() - configure the MAC for the selected mode and state
187
 * @config: a pointer to a &struct phylink_config.
188 189 190
 * @mode: one of %MLO_AN_FIXED, %MLO_AN_PHY, %MLO_AN_INBAND.
 * @state: a pointer to a &struct phylink_link_state.
 *
191 192 193 194 195
 * Note - not all members of @state are valid.  In particular,
 * @state->lp_advertising, @state->link, @state->an_complete are never
 * guaranteed to be correct, and so any mac_config() implementation must
 * never reference these fields.
 *
196 197 198
 * (this requires a rewrite - please refer to mac_link_up() for situations
 *  where the PCS and MAC are not tightly integrated.)
 *
199 200 201 202 203 204 205
 * In all negotiation modes, as defined by @mode, @state->pause indicates the
 * pause settings which should be applied as follows. If %MLO_PAUSE_AN is not
 * set, %MLO_PAUSE_TX and %MLO_PAUSE_RX indicate whether the MAC should send
 * pause frames and/or act on received pause frames respectively. Otherwise,
 * the results of in-band negotiation/status from the MAC PCS should be used
 * to control the MAC pause mode settings.
 *
206 207 208
 * The action performed depends on the currently selected mode:
 *
 * %MLO_AN_FIXED, %MLO_AN_PHY:
209 210 211 212 213 214 215 216 217
 *   Configure for non-inband negotiation mode, where the link settings
 *   are completely communicated via mac_link_up().  The physical link
 *   protocol from the MAC is specified by @state->interface.
 *
 *   @state->advertising may be used, but is not required.
 *
 *   Older drivers (prior to the mac_link_up() change) may use @state->speed,
 *   @state->duplex and @state->pause to configure the MAC, but this is
 *   deprecated; such drivers should be converted to use mac_link_up().
218
 *
219 220 221 222
 *   Other members of @state must be ignored.
 *
 *   Valid state members: interface, advertising.
 *   Deprecated state members: speed, duplex, pause.
223 224 225 226 227 228
 *
 * %MLO_AN_INBAND:
 *   place the link in an inband negotiation mode (such as 802.3z
 *   1000base-X or Cisco SGMII mode depending on the @state->interface
 *   mode). In both cases, link state management (whether the link
 *   is up or not) is performed by the MAC, and reported via the
229
 *   mac_pcs_get_state() callback. Changes in link state must be made
230 231
 *   by calling phylink_mac_change().
 *
232 233
 *   Interface mode specific details are mentioned below.
 *
234
 *   If in 802.3z mode, the link speed is fixed, dependent on the
235 236 237 238 239
 *   @state->interface. Duplex and pause modes are negotiated via
 *   the in-band configuration word. Advertised pause modes are set
 *   according to the @state->an_enabled and @state->advertising
 *   flags. Beware of MACs which only support full duplex at gigabit
 *   and higher speeds.
240 241 242 243 244 245 246
 *
 *   If in Cisco SGMII mode, the link speed and duplex mode are passed
 *   in the serial bitstream 16-bit configuration word, and the MAC
 *   should be configured to read these bits and acknowledge the
 *   configuration word. Nothing is advertised by the MAC. The MAC is
 *   responsible for reading the configuration word and configuring
 *   itself accordingly.
247
 *
248 249
 *   Valid state members: interface, an_enabled, pause, advertising.
 *
250 251 252 253 254 255
 * Implementations are expected to update the MAC to reflect the
 * requested settings - i.o.w., if nothing has changed between two
 * calls, no action is expected.  If only flow control settings have
 * changed, flow control should be updated *without* taking the link
 * down.  This "update" behaviour is critical to avoid bouncing the
 * link up status.
256
 */
257
void mac_config(struct phylink_config *config, unsigned int mode,
258 259
		const struct phylink_link_state *state);

260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
/**
 * mac_finish() - finish a to change the PHY interface mode
 * @config: a pointer to a &struct phylink_config.
 * @mode: one of %MLO_AN_FIXED, %MLO_AN_PHY, %MLO_AN_INBAND.
 * @iface: interface mode to switch to
 *
 * phylink will call this if it called mac_prepare() to allow the MAC to
 * complete any necessary steps after the MAC and PCS have been configured
 * for the @mode and @iface. E.g. a MAC driver may wish to re-enable the
 * Serdes PHY here if it was previously disabled by mac_prepare().
 *
 * Returns zero on success, or negative errno on failure which will be
 * reported to the kernel log.
 */
int mac_finish(struct phylink_config *config, unsigned int mode,
		phy_interface_t iface);

277 278
/**
 * mac_an_restart() - restart 802.3z BaseX autonegotiation
279
 * @config: a pointer to a &struct phylink_config.
280
 */
281
void mac_an_restart(struct phylink_config *config);
282 283 284

/**
 * mac_link_down() - take the link down
285
 * @config: a pointer to a &struct phylink_config.
286
 * @mode: link autonegotiation mode
287
 * @interface: link &typedef phy_interface_t mode
288 289 290
 *
 * If @mode is not an in-band negotiation mode (as defined by
 * phylink_autoneg_inband()), force the link down and disable any
291 292
 * Energy Efficient Ethernet MAC configuration. Interface type
 * selection must be done in mac_config().
293
 */
294
void mac_link_down(struct phylink_config *config, unsigned int mode,
295
		   phy_interface_t interface);
296 297 298

/**
 * mac_link_up() - allow the link to come up
299
 * @config: a pointer to a &struct phylink_config.
300
 * @phy: any attached phy
301
 * @mode: link autonegotiation mode
302
 * @interface: link &typedef phy_interface_t mode
303 304 305 306
 * @speed: link speed
 * @duplex: link duplex
 * @tx_pause: link transmit pause enablement status
 * @rx_pause: link receive pause enablement status
307
 *
308 309 310 311 312 313 314 315 316 317 318 319 320 321
 * Configure the MAC for an established link.
 *
 * @speed, @duplex, @tx_pause and @rx_pause indicate the finalised link
 * settings, and should be used to configure the MAC block appropriately
 * where these settings are not automatically conveyed from the PCS block,
 * or if in-band negotiation (as defined by phylink_autoneg_inband(@mode))
 * is disabled.
 *
 * Note that when 802.3z in-band negotiation is in use, it is possible
 * that the user wishes to override the pause settings, and this should
 * be allowed when considering the implementation of this method.
 *
 * If in-band negotiation mode is disabled, allow the link to come up. If
 * @phy is non-%NULL, configure Energy Efficient Ethernet by calling
322
 * phy_init_eee() and perform appropriate MAC configuration for EEE.
323
 * Interface type selection must be done in mac_config().
324
 */
325 326 327
void mac_link_up(struct phylink_config *config, struct phy_device *phy,
		 unsigned int mode, phy_interface_t interface,
		 int speed, int duplex, bool tx_pause, bool rx_pause);
328 329
#endif

330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
struct phylink_pcs_ops;

/**
 * struct phylink_pcs - PHYLINK PCS instance
 * @ops: a pointer to the &struct phylink_pcs_ops structure
 * @poll: poll the PCS for link changes
 *
 * This structure is designed to be embedded within the PCS private data,
 * and will be passed between phylink and the PCS.
 */
struct phylink_pcs {
	const struct phylink_pcs_ops *ops;
	bool poll;
};

345 346 347 348 349 350 351 352 353
/**
 * struct phylink_pcs_ops - MAC PCS operations structure.
 * @pcs_get_state: read the current MAC PCS link state from the hardware.
 * @pcs_config: configure the MAC PCS for the selected mode and state.
 * @pcs_an_restart: restart 802.3z BaseX autonegotiation.
 * @pcs_link_up: program the PCS for the resolved link configuration
 *               (where necessary).
 */
struct phylink_pcs_ops {
354
	void (*pcs_get_state)(struct phylink_pcs *pcs,
355
			      struct phylink_link_state *state);
356
	int (*pcs_config)(struct phylink_pcs *pcs, unsigned int mode,
357
			  phy_interface_t interface,
358 359
			  const unsigned long *advertising,
			  bool permit_pause_to_mac);
360 361
	void (*pcs_an_restart)(struct phylink_pcs *pcs);
	void (*pcs_link_up)(struct phylink_pcs *pcs, unsigned int mode,
362 363 364 365 366 367
			    phy_interface_t interface, int speed, int duplex);
};

#if 0 /* For kernel-doc purposes only. */
/**
 * pcs_get_state() - Read the current inband link state from the hardware
368
 * @pcs: a pointer to a &struct phylink_pcs.
369 370 371 372 373 374 375 376 377 378 379 380
 * @state: a pointer to a &struct phylink_link_state.
 *
 * Read the current inband link state from the MAC PCS, reporting the
 * current speed in @state->speed, duplex mode in @state->duplex, pause
 * mode in @state->pause using the %MLO_PAUSE_RX and %MLO_PAUSE_TX bits,
 * negotiation completion state in @state->an_complete, and link up state
 * in @state->link. If possible, @state->lp_advertising should also be
 * populated.
 *
 * When present, this overrides mac_pcs_get_state() in &struct
 * phylink_mac_ops.
 */
381
void pcs_get_state(struct phylink_pcs *pcs,
382 383 384 385
		   struct phylink_link_state *state);

/**
 * pcs_config() - Configure the PCS mode and advertisement
386
 * @pcs: a pointer to a &struct phylink_pcs.
387 388 389
 * @mode: one of %MLO_AN_FIXED, %MLO_AN_PHY, %MLO_AN_INBAND.
 * @interface: interface mode to be used
 * @advertising: adertisement ethtool link mode mask
390
 * @permit_pause_to_mac: permit forwarding pause resolution to MAC
391 392
 *
 * Configure the PCS for the operating mode, the interface mode, and set
393 394
 * the advertisement mask. @permit_pause_to_mac indicates whether the
 * hardware may forward the pause mode resolution to the MAC.
395 396 397 398 399 400 401 402 403 404 405
 *
 * When operating in %MLO_AN_INBAND, inband should always be enabled,
 * otherwise inband should be disabled.
 *
 * For SGMII, there is no advertisement from the MAC side, the PCS should
 * be programmed to acknowledge the inband word from the PHY.
 *
 * For 1000BASE-X, the advertisement should be programmed into the PCS.
 *
 * For most 10GBASE-R, there is no advertisement.
 */
406
int pcs_config(struct phylink_pcs *pcs, unsigned int mode,
407 408
	       phy_interface_t interface, const unsigned long *advertising,
	       bool permit_pause_to_mac);
409 410 411

/**
 * pcs_an_restart() - restart 802.3z BaseX autonegotiation
412
 * @pcs: a pointer to a &struct phylink_pcs.
413 414 415 416
 *
 * When PCS ops are present, this overrides mac_an_restart() in &struct
 * phylink_mac_ops.
 */
417
void pcs_an_restart(struct phylink_pcs *pcs);
418 419 420

/**
 * pcs_link_up() - program the PCS for the resolved link configuration
421
 * @pcs: a pointer to a &struct phylink_pcs.
422 423 424 425 426 427 428 429 430 431
 * @mode: link autonegotiation mode
 * @interface: link &typedef phy_interface_t mode
 * @speed: link speed
 * @duplex: link duplex
 *
 * This call will be made just before mac_link_up() to inform the PCS of
 * the resolved link parameters. For example, a PCS operating in SGMII
 * mode without in-band AN needs to be manually configured for the link
 * and duplex setting. Otherwise, this should be a no-op.
 */
432 433
void pcs_link_up(struct phylink_pcs *pcs, unsigned int mode,
		 phy_interface_t interface, int speed, int duplex);
434 435
#endif

436 437
struct phylink *phylink_create(struct phylink_config *, struct fwnode_handle *,
			       phy_interface_t iface,
438
			       const struct phylink_mac_ops *mac_ops);
439
void phylink_set_pcs(struct phylink *, struct phylink_pcs *pcs);
440 441 442
void phylink_destroy(struct phylink *);

int phylink_connect_phy(struct phylink *, struct phy_device *);
443
int phylink_of_phy_connect(struct phylink *, struct device_node *, u32 flags);
444 445 446
int phylink_fwnode_phy_connect(struct phylink *pl,
			       struct fwnode_handle *fwnode,
			       u32 flags);
447 448 449 450 451 452 453
void phylink_disconnect_phy(struct phylink *);

void phylink_mac_change(struct phylink *, bool up);

void phylink_start(struct phylink *);
void phylink_stop(struct phylink *);

454 455 456
void phylink_suspend(struct phylink *pl, bool mac_wol);
void phylink_resume(struct phylink *pl);

457 458 459 460 461 462 463 464 465 466 467 468 469
void phylink_ethtool_get_wol(struct phylink *, struct ethtool_wolinfo *);
int phylink_ethtool_set_wol(struct phylink *, struct ethtool_wolinfo *);

int phylink_ethtool_ksettings_get(struct phylink *,
				  struct ethtool_link_ksettings *);
int phylink_ethtool_ksettings_set(struct phylink *,
				  const struct ethtool_link_ksettings *);
int phylink_ethtool_nway_reset(struct phylink *);
void phylink_ethtool_get_pauseparam(struct phylink *,
				    struct ethtool_pauseparam *);
int phylink_ethtool_set_pauseparam(struct phylink *,
				   struct ethtool_pauseparam *);
int phylink_get_eee_err(struct phylink *);
470
int phylink_init_eee(struct phylink *, bool);
471 472 473
int phylink_ethtool_get_eee(struct phylink *, struct ethtool_eee *);
int phylink_ethtool_set_eee(struct phylink *, struct ethtool_eee *);
int phylink_mii_ioctl(struct phylink *, struct ifreq *, int);
474 475
int phylink_speed_down(struct phylink *pl, bool sync);
int phylink_speed_up(struct phylink *pl);
476 477 478 479 480 481 482 483 484 485 486

#define phylink_zero(bm) \
	bitmap_zero(bm, __ETHTOOL_LINK_MODE_MASK_NBITS)
#define __phylink_do_bit(op, bm, mode) \
	op(ETHTOOL_LINK_MODE_ ## mode ## _BIT, bm)

#define phylink_set(bm, mode)	__phylink_do_bit(__set_bit, bm, mode)
#define phylink_clear(bm, mode)	__phylink_do_bit(__clear_bit, bm, mode)
#define phylink_test(bm, mode)	__phylink_do_bit(test_bit, bm, mode)

void phylink_set_port_modes(unsigned long *bits);
487
void phylink_helper_basex_speed(struct phylink_link_state *state);
488

489 490 491
void phylink_mii_c22_pcs_get_state(struct mdio_device *pcs,
				   struct phylink_link_state *state);
int phylink_mii_c22_pcs_set_advertisement(struct mdio_device *pcs,
492 493
					  phy_interface_t interface,
					  const unsigned long *advertising);
494 495 496
int phylink_mii_c22_pcs_config(struct mdio_device *pcs, unsigned int mode,
			       phy_interface_t interface,
			       const unsigned long *advertising);
497 498
void phylink_mii_c22_pcs_an_restart(struct mdio_device *pcs);

499 500
void phylink_mii_c45_pcs_get_state(struct mdio_device *pcs,
				   struct phylink_link_state *state);
501 502 503

void phylink_decode_usxgmii_word(struct phylink_link_state *state,
				 uint16_t lpa);
504
#endif