diff options
| author | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-11-03 10:11:27 -0400 |
|---|---|---|
| committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-11-03 10:11:27 -0400 |
| commit | 8f987768eb99631374f4ab0bb19cd062baf1397d (patch) | |
| tree | b89aa5c207f7ba6a688f45657424b937f17ceb8a /include/linux/phy.h | |
| parent | 63f7526f26f0a9291ac3f7a986aa18ebfb61ec19 (diff) | |
| parent | c8ddb2713c624f432fa5fe3c7ecffcdda46ea0d4 (diff) | |
Merge commit 'v2.6.37-rc1' into for-2.6.37
Diffstat (limited to 'include/linux/phy.h')
| -rw-r--r-- | include/linux/phy.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 6b0a782c6224..7da5fa845959 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
| @@ -116,7 +116,7 @@ struct mii_bus { | |||
| 116 | /* list of all PHYs on bus */ | 116 | /* list of all PHYs on bus */ |
| 117 | struct phy_device *phy_map[PHY_MAX_ADDR]; | 117 | struct phy_device *phy_map[PHY_MAX_ADDR]; |
| 118 | 118 | ||
| 119 | /* Phy addresses to be ignored when probing */ | 119 | /* PHY addresses to be ignored when probing */ |
| 120 | u32 phy_mask; | 120 | u32 phy_mask; |
| 121 | 121 | ||
| 122 | /* | 122 | /* |
| @@ -283,7 +283,7 @@ struct phy_device { | |||
| 283 | 283 | ||
| 284 | phy_interface_t interface; | 284 | phy_interface_t interface; |
| 285 | 285 | ||
| 286 | /* Bus address of the PHY (0-32) */ | 286 | /* Bus address of the PHY (0-31) */ |
| 287 | int addr; | 287 | int addr; |
| 288 | 288 | ||
| 289 | /* | 289 | /* |
| @@ -472,11 +472,7 @@ static inline int phy_write(struct phy_device *phydev, u32 regnum, u16 val) | |||
| 472 | int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id); | 472 | int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id); |
| 473 | struct phy_device* get_phy_device(struct mii_bus *bus, int addr); | 473 | struct phy_device* get_phy_device(struct mii_bus *bus, int addr); |
| 474 | int phy_device_register(struct phy_device *phy); | 474 | int phy_device_register(struct phy_device *phy); |
| 475 | int phy_clear_interrupt(struct phy_device *phydev); | ||
| 476 | int phy_config_interrupt(struct phy_device *phydev, u32 interrupts); | ||
| 477 | int phy_init_hw(struct phy_device *phydev); | 475 | int phy_init_hw(struct phy_device *phydev); |
| 478 | int phy_attach_direct(struct net_device *dev, struct phy_device *phydev, | ||
| 479 | u32 flags, phy_interface_t interface); | ||
| 480 | struct phy_device * phy_attach(struct net_device *dev, | 476 | struct phy_device * phy_attach(struct net_device *dev, |
| 481 | const char *bus_id, u32 flags, phy_interface_t interface); | 477 | const char *bus_id, u32 flags, phy_interface_t interface); |
| 482 | struct phy_device *phy_find_first(struct mii_bus *bus); | 478 | struct phy_device *phy_find_first(struct mii_bus *bus); |
| @@ -492,17 +488,12 @@ void phy_start(struct phy_device *phydev); | |||
| 492 | void phy_stop(struct phy_device *phydev); | 488 | void phy_stop(struct phy_device *phydev); |
| 493 | int phy_start_aneg(struct phy_device *phydev); | 489 | int phy_start_aneg(struct phy_device *phydev); |
| 494 | 490 | ||
| 495 | void phy_sanitize_settings(struct phy_device *phydev); | ||
| 496 | int phy_stop_interrupts(struct phy_device *phydev); | 491 | int phy_stop_interrupts(struct phy_device *phydev); |
| 497 | int phy_enable_interrupts(struct phy_device *phydev); | ||
| 498 | int phy_disable_interrupts(struct phy_device *phydev); | ||
| 499 | 492 | ||
| 500 | static inline int phy_read_status(struct phy_device *phydev) { | 493 | static inline int phy_read_status(struct phy_device *phydev) { |
| 501 | return phydev->drv->read_status(phydev); | 494 | return phydev->drv->read_status(phydev); |
| 502 | } | 495 | } |
| 503 | 496 | ||
| 504 | int genphy_config_advert(struct phy_device *phydev); | ||
| 505 | int genphy_setup_forced(struct phy_device *phydev); | ||
| 506 | int genphy_restart_aneg(struct phy_device *phydev); | 497 | int genphy_restart_aneg(struct phy_device *phydev); |
| 507 | int genphy_config_aneg(struct phy_device *phydev); | 498 | int genphy_config_aneg(struct phy_device *phydev); |
| 508 | int genphy_update_link(struct phy_device *phydev); | 499 | int genphy_update_link(struct phy_device *phydev); |
| @@ -511,8 +502,6 @@ int genphy_suspend(struct phy_device *phydev); | |||
| 511 | int genphy_resume(struct phy_device *phydev); | 502 | int genphy_resume(struct phy_device *phydev); |
| 512 | void phy_driver_unregister(struct phy_driver *drv); | 503 | void phy_driver_unregister(struct phy_driver *drv); |
| 513 | int phy_driver_register(struct phy_driver *new_driver); | 504 | int phy_driver_register(struct phy_driver *new_driver); |
| 514 | void phy_prepare_link(struct phy_device *phydev, | ||
| 515 | void (*adjust_link)(struct net_device *)); | ||
| 516 | void phy_state_machine(struct work_struct *work); | 505 | void phy_state_machine(struct work_struct *work); |
| 517 | void phy_start_machine(struct phy_device *phydev, | 506 | void phy_start_machine(struct phy_device *phydev, |
| 518 | void (*handler)(struct net_device *)); | 507 | void (*handler)(struct net_device *)); |
| @@ -523,7 +512,6 @@ int phy_mii_ioctl(struct phy_device *phydev, | |||
| 523 | struct ifreq *ifr, int cmd); | 512 | struct ifreq *ifr, int cmd); |
| 524 | int phy_start_interrupts(struct phy_device *phydev); | 513 | int phy_start_interrupts(struct phy_device *phydev); |
| 525 | void phy_print_status(struct phy_device *phydev); | 514 | void phy_print_status(struct phy_device *phydev); |
| 526 | struct phy_device* phy_device_create(struct mii_bus *bus, int addr, int phy_id); | ||
| 527 | void phy_device_free(struct phy_device *phydev); | 515 | void phy_device_free(struct phy_device *phydev); |
| 528 | 516 | ||
| 529 | int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, | 517 | int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask, |
