diff options
Diffstat (limited to 'drivers/net/e1000e/es2lan.c')
-rw-r--r-- | drivers/net/e1000e/es2lan.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/drivers/net/e1000e/es2lan.c b/drivers/net/e1000e/es2lan.c index 45aebb4a6fe1..f4bbeb22f51f 100644 --- a/drivers/net/e1000e/es2lan.c +++ b/drivers/net/e1000e/es2lan.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /******************************************************************************* | 1 | /******************************************************************************* |
2 | 2 | ||
3 | Intel PRO/1000 Linux driver | 3 | Intel PRO/1000 Linux driver |
4 | Copyright(c) 1999 - 2010 Intel Corporation. | 4 | Copyright(c) 1999 - 2011 Intel Corporation. |
5 | 5 | ||
6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
7 | under the terms and conditions of the GNU General Public License, | 7 | under the terms and conditions of the GNU General Public License, |
@@ -100,8 +100,8 @@ | |||
100 | * with a lower bound at "index" and the upper bound at | 100 | * with a lower bound at "index" and the upper bound at |
101 | * "index + 5". | 101 | * "index + 5". |
102 | */ | 102 | */ |
103 | static const u16 e1000_gg82563_cable_length_table[] = | 103 | static const u16 e1000_gg82563_cable_length_table[] = { |
104 | { 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF }; | 104 | 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF }; |
105 | #define GG82563_CABLE_LENGTH_TABLE_SIZE \ | 105 | #define GG82563_CABLE_LENGTH_TABLE_SIZE \ |
106 | ARRAY_SIZE(e1000_gg82563_cable_length_table) | 106 | ARRAY_SIZE(e1000_gg82563_cable_length_table) |
107 | 107 | ||
@@ -426,8 +426,8 @@ static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask) | |||
426 | { | 426 | { |
427 | u32 swfw_sync; | 427 | u32 swfw_sync; |
428 | 428 | ||
429 | while (e1000e_get_hw_semaphore(hw) != 0); | 429 | while (e1000e_get_hw_semaphore(hw) != 0) |
430 | /* Empty */ | 430 | ; /* Empty */ |
431 | 431 | ||
432 | swfw_sync = er32(SW_FW_SYNC); | 432 | swfw_sync = er32(SW_FW_SYNC); |
433 | swfw_sync &= ~mask; | 433 | swfw_sync &= ~mask; |
@@ -612,7 +612,7 @@ static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw) | |||
612 | while (timeout) { | 612 | while (timeout) { |
613 | if (er32(EEMNGCTL) & mask) | 613 | if (er32(EEMNGCTL) & mask) |
614 | break; | 614 | break; |
615 | msleep(1); | 615 | usleep_range(1000, 2000); |
616 | timeout--; | 616 | timeout--; |
617 | } | 617 | } |
618 | if (!timeout) { | 618 | if (!timeout) { |
@@ -784,7 +784,7 @@ static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed, | |||
784 | **/ | 784 | **/ |
785 | static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw) | 785 | static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw) |
786 | { | 786 | { |
787 | u32 ctrl, icr; | 787 | u32 ctrl; |
788 | s32 ret_val; | 788 | s32 ret_val; |
789 | 789 | ||
790 | /* | 790 | /* |
@@ -802,7 +802,7 @@ static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw) | |||
802 | ew32(TCTL, E1000_TCTL_PSP); | 802 | ew32(TCTL, E1000_TCTL_PSP); |
803 | e1e_flush(); | 803 | e1e_flush(); |
804 | 804 | ||
805 | msleep(10); | 805 | usleep_range(10000, 20000); |
806 | 806 | ||
807 | ctrl = er32(CTRL); | 807 | ctrl = er32(CTRL); |
808 | 808 | ||
@@ -818,7 +818,7 @@ static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw) | |||
818 | 818 | ||
819 | /* Clear any pending interrupt events. */ | 819 | /* Clear any pending interrupt events. */ |
820 | ew32(IMC, 0xffffffff); | 820 | ew32(IMC, 0xffffffff); |
821 | icr = er32(ICR); | 821 | er32(ICR); |
822 | 822 | ||
823 | ret_val = e1000_check_alt_mac_addr_generic(hw); | 823 | ret_val = e1000_check_alt_mac_addr_generic(hw); |
824 | 824 | ||
@@ -1434,6 +1434,7 @@ static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw) | |||
1434 | static struct e1000_mac_operations es2_mac_ops = { | 1434 | static struct e1000_mac_operations es2_mac_ops = { |
1435 | .read_mac_addr = e1000_read_mac_addr_80003es2lan, | 1435 | .read_mac_addr = e1000_read_mac_addr_80003es2lan, |
1436 | .id_led_init = e1000e_id_led_init, | 1436 | .id_led_init = e1000e_id_led_init, |
1437 | .blink_led = e1000e_blink_led_generic, | ||
1437 | .check_mng_mode = e1000e_check_mng_mode_generic, | 1438 | .check_mng_mode = e1000e_check_mng_mode_generic, |
1438 | /* check_for_link dependent on media type */ | 1439 | /* check_for_link dependent on media type */ |
1439 | .cleanup_led = e1000e_cleanup_led_generic, | 1440 | .cleanup_led = e1000e_cleanup_led_generic, |
@@ -1494,6 +1495,7 @@ struct e1000_info e1000_es2_info = { | |||
1494 | | FLAG_APME_CHECK_PORT_B | 1495 | | FLAG_APME_CHECK_PORT_B |
1495 | | FLAG_DISABLE_FC_PAUSE_TIME /* errata */ | 1496 | | FLAG_DISABLE_FC_PAUSE_TIME /* errata */ |
1496 | | FLAG_TIPG_MEDIUM_FOR_80003ESLAN, | 1497 | | FLAG_TIPG_MEDIUM_FOR_80003ESLAN, |
1498 | .flags2 = FLAG2_DMA_BURST, | ||
1497 | .pba = 38, | 1499 | .pba = 38, |
1498 | .max_hw_frame_size = DEFAULT_JUMBO, | 1500 | .max_hw_frame_size = DEFAULT_JUMBO, |
1499 | .get_variants = e1000_get_variants_80003es2lan, | 1501 | .get_variants = e1000_get_variants_80003es2lan, |