Commit a70b86ae authored by Jeff Kirsher's avatar Jeff Kirsher

e100: implemenet set_phys_id

Based on the original patch from Stephen Hemminger.
Implement set_phys_id to control LED.

CC: Stephen Hemminger <shemminger@vyatta.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 70652728
...@@ -593,7 +593,6 @@ struct nic { ...@@ -593,7 +593,6 @@ struct nic {
enum phy phy; enum phy phy;
struct params params; struct params params;
struct timer_list watchdog; struct timer_list watchdog;
struct timer_list blink_timer;
struct mii_if_info mii; struct mii_if_info mii;
struct work_struct tx_timeout_task; struct work_struct tx_timeout_task;
enum loopback loopback; enum loopback loopback;
...@@ -618,7 +617,6 @@ struct nic { ...@@ -618,7 +617,6 @@ struct nic {
u32 rx_tco_frames; u32 rx_tco_frames;
u32 rx_over_length_errors; u32 rx_over_length_errors;
u16 leds;
u16 eeprom_wc; u16 eeprom_wc;
__le16 eeprom[256]; __le16 eeprom[256];
spinlock_t mdio_lock; spinlock_t mdio_lock;
...@@ -2353,30 +2351,6 @@ static int e100_loopback_test(struct nic *nic, enum loopback loopback_mode) ...@@ -2353,30 +2351,6 @@ static int e100_loopback_test(struct nic *nic, enum loopback loopback_mode)
#define E100_82552_LED_OVERRIDE 0x19 #define E100_82552_LED_OVERRIDE 0x19
#define E100_82552_LED_ON 0x000F /* LEDTX and LED_RX both on */ #define E100_82552_LED_ON 0x000F /* LEDTX and LED_RX both on */
#define E100_82552_LED_OFF 0x000A /* LEDTX and LED_RX both off */ #define E100_82552_LED_OFF 0x000A /* LEDTX and LED_RX both off */
static void e100_blink_led(unsigned long data)
{
struct nic *nic = (struct nic *)data;
enum led_state {
led_on = 0x01,
led_off = 0x04,
led_on_559 = 0x05,
led_on_557 = 0x07,
};
u16 led_reg = MII_LED_CONTROL;
if (nic->phy == phy_82552_v) {
led_reg = E100_82552_LED_OVERRIDE;
nic->leds = (nic->leds == E100_82552_LED_ON) ?
E100_82552_LED_OFF : E100_82552_LED_ON;
} else {
nic->leds = (nic->leds & led_on) ? led_off :
(nic->mac < mac_82559_D101M) ? led_on_557 :
led_on_559;
}
mdio_write(nic->netdev, nic->mii.phy_id, led_reg, nic->leds);
mod_timer(&nic->blink_timer, jiffies + HZ / 4);
}
static int e100_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd) static int e100_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
{ {
...@@ -2600,19 +2574,38 @@ static void e100_diag_test(struct net_device *netdev, ...@@ -2600,19 +2574,38 @@ static void e100_diag_test(struct net_device *netdev,
msleep_interruptible(4 * 1000); msleep_interruptible(4 * 1000);
} }
static int e100_phys_id(struct net_device *netdev, u32 data) static int e100_set_phys_id(struct net_device *netdev,
enum ethtool_phys_id_state state)
{ {
struct nic *nic = netdev_priv(netdev); struct nic *nic = netdev_priv(netdev);
enum led_state {
led_on = 0x01,
led_off = 0x04,
led_on_559 = 0x05,
led_on_557 = 0x07,
};
u16 led_reg = (nic->phy == phy_82552_v) ? E100_82552_LED_OVERRIDE : u16 led_reg = (nic->phy == phy_82552_v) ? E100_82552_LED_OVERRIDE :
MII_LED_CONTROL; MII_LED_CONTROL;
u16 leds = 0;
switch (state) {
case ETHTOOL_ID_ACTIVE:
return 2;
if (!data || data > (u32)(MAX_SCHEDULE_TIMEOUT / HZ)) case ETHTOOL_ID_ON:
data = (u32)(MAX_SCHEDULE_TIMEOUT / HZ); leds = (nic->phy == phy_82552_v) ? E100_82552_LED_ON :
mod_timer(&nic->blink_timer, jiffies); (nic->mac < mac_82559_D101M) ? led_on_557 : led_on_559;
msleep_interruptible(data * 1000); break;
del_timer_sync(&nic->blink_timer);
mdio_write(netdev, nic->mii.phy_id, led_reg, 0); case ETHTOOL_ID_OFF:
leds = (nic->phy == phy_82552_v) ? E100_82552_LED_OFF : led_off;
break;
case ETHTOOL_ID_INACTIVE:
break;
}
mdio_write(netdev, nic->mii.phy_id, led_reg, leds);
return 0; return 0;
} }
...@@ -2693,7 +2686,7 @@ static const struct ethtool_ops e100_ethtool_ops = { ...@@ -2693,7 +2686,7 @@ static const struct ethtool_ops e100_ethtool_ops = {
.set_ringparam = e100_set_ringparam, .set_ringparam = e100_set_ringparam,
.self_test = e100_diag_test, .self_test = e100_diag_test,
.get_strings = e100_get_strings, .get_strings = e100_get_strings,
.phys_id = e100_phys_id, .set_phys_id = e100_set_phys_id,
.get_ethtool_stats = e100_get_ethtool_stats, .get_ethtool_stats = e100_get_ethtool_stats,
.get_sset_count = e100_get_sset_count, .get_sset_count = e100_get_sset_count,
}; };
...@@ -2834,9 +2827,6 @@ static int __devinit e100_probe(struct pci_dev *pdev, ...@@ -2834,9 +2827,6 @@ static int __devinit e100_probe(struct pci_dev *pdev,
init_timer(&nic->watchdog); init_timer(&nic->watchdog);
nic->watchdog.function = e100_watchdog; nic->watchdog.function = e100_watchdog;
nic->watchdog.data = (unsigned long)nic; nic->watchdog.data = (unsigned long)nic;
init_timer(&nic->blink_timer);
nic->blink_timer.function = e100_blink_led;
nic->blink_timer.data = (unsigned long)nic;
INIT_WORK(&nic->tx_timeout_task, e100_tx_timeout_task); INIT_WORK(&nic->tx_timeout_task, e100_tx_timeout_task);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment