Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel PRO/1000 Linux driver |
Bruce Allan | 0d6057e | 2011-01-04 01:16:44 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2011 Intel Corporation. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 5 | |
| 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, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
| 23 | Linux NICS <linux.nics@intel.com> |
| 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 26 | |
| 27 | *******************************************************************************/ |
| 28 | |
| 29 | /* |
Bruce Allan | 1605927 | 2008-11-21 16:51:06 -0800 | [diff] [blame] | 30 | * 82562G 10/100 Network Connection |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 31 | * 82562G-2 10/100 Network Connection |
| 32 | * 82562GT 10/100 Network Connection |
| 33 | * 82562GT-2 10/100 Network Connection |
| 34 | * 82562V 10/100 Network Connection |
| 35 | * 82562V-2 10/100 Network Connection |
| 36 | * 82566DC-2 Gigabit Network Connection |
| 37 | * 82566DC Gigabit Network Connection |
| 38 | * 82566DM-2 Gigabit Network Connection |
| 39 | * 82566DM Gigabit Network Connection |
| 40 | * 82566MC Gigabit Network Connection |
| 41 | * 82566MM Gigabit Network Connection |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 42 | * 82567LM Gigabit Network Connection |
| 43 | * 82567LF Gigabit Network Connection |
Bruce Allan | 1605927 | 2008-11-21 16:51:06 -0800 | [diff] [blame] | 44 | * 82567V Gigabit Network Connection |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 45 | * 82567LM-2 Gigabit Network Connection |
| 46 | * 82567LF-2 Gigabit Network Connection |
| 47 | * 82567V-2 Gigabit Network Connection |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 48 | * 82567LF-3 Gigabit Network Connection |
| 49 | * 82567LM-3 Gigabit Network Connection |
Bruce Allan | 2f15f9d | 2008-08-26 18:36:36 -0700 | [diff] [blame] | 50 | * 82567LM-4 Gigabit Network Connection |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 51 | * 82577LM Gigabit Network Connection |
| 52 | * 82577LC Gigabit Network Connection |
| 53 | * 82578DM Gigabit Network Connection |
| 54 | * 82578DC Gigabit Network Connection |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 55 | * 82579LM Gigabit Network Connection |
| 56 | * 82579V Gigabit Network Connection |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 57 | */ |
| 58 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 59 | #include "e1000.h" |
| 60 | |
| 61 | #define ICH_FLASH_GFPREG 0x0000 |
| 62 | #define ICH_FLASH_HSFSTS 0x0004 |
| 63 | #define ICH_FLASH_HSFCTL 0x0006 |
| 64 | #define ICH_FLASH_FADDR 0x0008 |
| 65 | #define ICH_FLASH_FDATA0 0x0010 |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 66 | #define ICH_FLASH_PR0 0x0074 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 67 | |
| 68 | #define ICH_FLASH_READ_COMMAND_TIMEOUT 500 |
| 69 | #define ICH_FLASH_WRITE_COMMAND_TIMEOUT 500 |
| 70 | #define ICH_FLASH_ERASE_COMMAND_TIMEOUT 3000000 |
| 71 | #define ICH_FLASH_LINEAR_ADDR_MASK 0x00FFFFFF |
| 72 | #define ICH_FLASH_CYCLE_REPEAT_COUNT 10 |
| 73 | |
| 74 | #define ICH_CYCLE_READ 0 |
| 75 | #define ICH_CYCLE_WRITE 2 |
| 76 | #define ICH_CYCLE_ERASE 3 |
| 77 | |
| 78 | #define FLASH_GFPREG_BASE_MASK 0x1FFF |
| 79 | #define FLASH_SECTOR_ADDR_SHIFT 12 |
| 80 | |
| 81 | #define ICH_FLASH_SEG_SIZE_256 256 |
| 82 | #define ICH_FLASH_SEG_SIZE_4K 4096 |
| 83 | #define ICH_FLASH_SEG_SIZE_8K 8192 |
| 84 | #define ICH_FLASH_SEG_SIZE_64K 65536 |
| 85 | |
| 86 | |
| 87 | #define E1000_ICH_FWSM_RSPCIPHY 0x00000040 /* Reset PHY on PCI Reset */ |
Bruce Allan | 6dfaa76 | 2010-05-05 22:00:06 +0000 | [diff] [blame] | 88 | /* FW established a valid mode */ |
| 89 | #define E1000_ICH_FWSM_FW_VALID 0x00008000 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 90 | |
| 91 | #define E1000_ICH_MNG_IAMT_MODE 0x2 |
| 92 | |
| 93 | #define ID_LED_DEFAULT_ICH8LAN ((ID_LED_DEF1_DEF2 << 12) | \ |
| 94 | (ID_LED_DEF1_OFF2 << 8) | \ |
| 95 | (ID_LED_DEF1_ON2 << 4) | \ |
| 96 | (ID_LED_DEF1_DEF2)) |
| 97 | |
| 98 | #define E1000_ICH_NVM_SIG_WORD 0x13 |
| 99 | #define E1000_ICH_NVM_SIG_MASK 0xC000 |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 100 | #define E1000_ICH_NVM_VALID_SIG_MASK 0xC0 |
| 101 | #define E1000_ICH_NVM_SIG_VALUE 0x80 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 102 | |
| 103 | #define E1000_ICH8_LAN_INIT_TIMEOUT 1500 |
| 104 | |
| 105 | #define E1000_FEXTNVM_SW_CONFIG 1 |
| 106 | #define E1000_FEXTNVM_SW_CONFIG_ICH8M (1 << 27) /* Bit redefined for ICH8M :/ */ |
| 107 | |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 108 | #define E1000_FEXTNVM4_BEACON_DURATION_MASK 0x7 |
| 109 | #define E1000_FEXTNVM4_BEACON_DURATION_8USEC 0x7 |
| 110 | #define E1000_FEXTNVM4_BEACON_DURATION_16USEC 0x3 |
| 111 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 112 | #define PCIE_ICH8_SNOOP_ALL PCIE_NO_SNOOP_ALL |
| 113 | |
| 114 | #define E1000_ICH_RAR_ENTRIES 7 |
| 115 | |
| 116 | #define PHY_PAGE_SHIFT 5 |
| 117 | #define PHY_REG(page, reg) (((page) << PHY_PAGE_SHIFT) | \ |
| 118 | ((reg) & MAX_PHY_REG_ADDRESS)) |
| 119 | #define IGP3_KMRN_DIAG PHY_REG(770, 19) /* KMRN Diagnostic */ |
| 120 | #define IGP3_VR_CTRL PHY_REG(776, 18) /* Voltage Regulator Control */ |
| 121 | |
| 122 | #define IGP3_KMRN_DIAG_PCS_LOCK_LOSS 0x0002 |
| 123 | #define IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK 0x0300 |
| 124 | #define IGP3_VR_CTRL_MODE_SHUTDOWN 0x0200 |
| 125 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 126 | #define HV_LED_CONFIG PHY_REG(768, 30) /* LED Configuration */ |
| 127 | |
Bruce Allan | 53ac5a8 | 2009-10-26 11:23:06 +0000 | [diff] [blame] | 128 | #define SW_FLAG_TIMEOUT 1000 /* SW Semaphore flag timeout in milliseconds */ |
| 129 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 130 | /* SMBus Address Phy Register */ |
| 131 | #define HV_SMB_ADDR PHY_REG(768, 26) |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 132 | #define HV_SMB_ADDR_MASK 0x007F |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 133 | #define HV_SMB_ADDR_PEC_EN 0x0200 |
| 134 | #define HV_SMB_ADDR_VALID 0x0080 |
| 135 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 136 | /* PHY Power Management Control */ |
| 137 | #define HV_PM_CTRL PHY_REG(770, 17) |
| 138 | |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 139 | /* PHY Low Power Idle Control */ |
| 140 | #define I82579_LPI_CTRL PHY_REG(772, 20) |
| 141 | #define I82579_LPI_CTRL_ENABLE_MASK 0x6000 |
| 142 | |
Bruce Allan | 1effb45 | 2011-02-25 06:58:03 +0000 | [diff] [blame] | 143 | /* EMI Registers */ |
| 144 | #define I82579_EMI_ADDR 0x10 |
| 145 | #define I82579_EMI_DATA 0x11 |
| 146 | #define I82579_LPI_UPDATE_TIMER 0x4805 /* in 40ns units + 40 ns base value */ |
| 147 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 148 | /* Strapping Option Register - RO */ |
| 149 | #define E1000_STRAP 0x0000C |
| 150 | #define E1000_STRAP_SMBUS_ADDRESS_MASK 0x00FE0000 |
| 151 | #define E1000_STRAP_SMBUS_ADDRESS_SHIFT 17 |
| 152 | |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 153 | /* OEM Bits Phy Register */ |
| 154 | #define HV_OEM_BITS PHY_REG(768, 25) |
| 155 | #define HV_OEM_BITS_LPLU 0x0004 /* Low Power Link Up */ |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 156 | #define HV_OEM_BITS_GBE_DIS 0x0040 /* Gigabit Disable */ |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 157 | #define HV_OEM_BITS_RESTART_AN 0x0400 /* Restart Auto-negotiation */ |
| 158 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 159 | #define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */ |
| 160 | #define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */ |
| 161 | |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 162 | /* KMRN Mode Control */ |
| 163 | #define HV_KMRN_MODE_CTRL PHY_REG(769, 16) |
| 164 | #define HV_KMRN_MDIO_SLOW 0x0400 |
| 165 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 166 | /* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */ |
| 167 | /* Offset 04h HSFSTS */ |
| 168 | union ich8_hws_flash_status { |
| 169 | struct ich8_hsfsts { |
| 170 | u16 flcdone :1; /* bit 0 Flash Cycle Done */ |
| 171 | u16 flcerr :1; /* bit 1 Flash Cycle Error */ |
| 172 | u16 dael :1; /* bit 2 Direct Access error Log */ |
| 173 | u16 berasesz :2; /* bit 4:3 Sector Erase Size */ |
| 174 | u16 flcinprog :1; /* bit 5 flash cycle in Progress */ |
| 175 | u16 reserved1 :2; /* bit 13:6 Reserved */ |
| 176 | u16 reserved2 :6; /* bit 13:6 Reserved */ |
| 177 | u16 fldesvalid :1; /* bit 14 Flash Descriptor Valid */ |
| 178 | u16 flockdn :1; /* bit 15 Flash Config Lock-Down */ |
| 179 | } hsf_status; |
| 180 | u16 regval; |
| 181 | }; |
| 182 | |
| 183 | /* ICH GbE Flash Hardware Sequencing Flash control Register bit breakdown */ |
| 184 | /* Offset 06h FLCTL */ |
| 185 | union ich8_hws_flash_ctrl { |
| 186 | struct ich8_hsflctl { |
| 187 | u16 flcgo :1; /* 0 Flash Cycle Go */ |
| 188 | u16 flcycle :2; /* 2:1 Flash Cycle */ |
| 189 | u16 reserved :5; /* 7:3 Reserved */ |
| 190 | u16 fldbcount :2; /* 9:8 Flash Data Byte Count */ |
| 191 | u16 flockdn :6; /* 15:10 Reserved */ |
| 192 | } hsf_ctrl; |
| 193 | u16 regval; |
| 194 | }; |
| 195 | |
| 196 | /* ICH Flash Region Access Permissions */ |
| 197 | union ich8_hws_flash_regacc { |
| 198 | struct ich8_flracc { |
| 199 | u32 grra :8; /* 0:7 GbE region Read Access */ |
| 200 | u32 grwa :8; /* 8:15 GbE region Write Access */ |
| 201 | u32 gmrag :8; /* 23:16 GbE Master Read Access Grant */ |
| 202 | u32 gmwag :8; /* 31:24 GbE Master Write Access Grant */ |
| 203 | } hsf_flregacc; |
| 204 | u16 regval; |
| 205 | }; |
| 206 | |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 207 | /* ICH Flash Protected Region */ |
| 208 | union ich8_flash_protected_range { |
| 209 | struct ich8_pr { |
| 210 | u32 base:13; /* 0:12 Protected Range Base */ |
| 211 | u32 reserved1:2; /* 13:14 Reserved */ |
| 212 | u32 rpe:1; /* 15 Read Protection Enable */ |
| 213 | u32 limit:13; /* 16:28 Protected Range Limit */ |
| 214 | u32 reserved2:2; /* 29:30 Reserved */ |
| 215 | u32 wpe:1; /* 31 Write Protection Enable */ |
| 216 | } range; |
| 217 | u32 regval; |
| 218 | }; |
| 219 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 220 | static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw); |
| 221 | static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw); |
| 222 | static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 223 | static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank); |
| 224 | static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw, |
| 225 | u32 offset, u8 byte); |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 226 | static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, |
| 227 | u8 *data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 228 | static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset, |
| 229 | u16 *data); |
| 230 | static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset, |
| 231 | u8 size, u16 *data); |
| 232 | static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw); |
| 233 | static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw); |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 234 | static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 235 | static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw); |
| 236 | static s32 e1000_led_on_ich8lan(struct e1000_hw *hw); |
| 237 | static s32 e1000_led_off_ich8lan(struct e1000_hw *hw); |
| 238 | static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw); |
| 239 | static s32 e1000_setup_led_pchlan(struct e1000_hw *hw); |
| 240 | static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw); |
| 241 | static s32 e1000_led_on_pchlan(struct e1000_hw *hw); |
| 242 | static s32 e1000_led_off_pchlan(struct e1000_hw *hw); |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 243 | static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active); |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 244 | static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 245 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 246 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link); |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 247 | static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw); |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 248 | static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw); |
| 249 | static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw); |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 250 | static s32 e1000_k1_workaround_lv(struct e1000_hw *hw); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 251 | static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 252 | |
| 253 | static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg) |
| 254 | { |
| 255 | return readw(hw->flash_address + reg); |
| 256 | } |
| 257 | |
| 258 | static inline u32 __er32flash(struct e1000_hw *hw, unsigned long reg) |
| 259 | { |
| 260 | return readl(hw->flash_address + reg); |
| 261 | } |
| 262 | |
| 263 | static inline void __ew16flash(struct e1000_hw *hw, unsigned long reg, u16 val) |
| 264 | { |
| 265 | writew(val, hw->flash_address + reg); |
| 266 | } |
| 267 | |
| 268 | static inline void __ew32flash(struct e1000_hw *hw, unsigned long reg, u32 val) |
| 269 | { |
| 270 | writel(val, hw->flash_address + reg); |
| 271 | } |
| 272 | |
| 273 | #define er16flash(reg) __er16flash(hw, (reg)) |
| 274 | #define er32flash(reg) __er32flash(hw, (reg)) |
| 275 | #define ew16flash(reg,val) __ew16flash(hw, (reg), (val)) |
| 276 | #define ew32flash(reg,val) __ew32flash(hw, (reg), (val)) |
| 277 | |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 278 | static void e1000_toggle_lanphypc_value_ich8lan(struct e1000_hw *hw) |
| 279 | { |
| 280 | u32 ctrl; |
| 281 | |
| 282 | ctrl = er32(CTRL); |
| 283 | ctrl |= E1000_CTRL_LANPHYPC_OVERRIDE; |
| 284 | ctrl &= ~E1000_CTRL_LANPHYPC_VALUE; |
| 285 | ew32(CTRL, ctrl); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame^] | 286 | e1e_flush(); |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 287 | udelay(10); |
| 288 | ctrl &= ~E1000_CTRL_LANPHYPC_OVERRIDE; |
| 289 | ew32(CTRL, ctrl); |
| 290 | } |
| 291 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 292 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 293 | * e1000_init_phy_params_pchlan - Initialize PHY function pointers |
| 294 | * @hw: pointer to the HW structure |
| 295 | * |
| 296 | * Initialize family-specific PHY parameters and function pointers. |
| 297 | **/ |
| 298 | static s32 e1000_init_phy_params_pchlan(struct e1000_hw *hw) |
| 299 | { |
| 300 | struct e1000_phy_info *phy = &hw->phy; |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 301 | u32 fwsm; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 302 | s32 ret_val = 0; |
| 303 | |
| 304 | phy->addr = 1; |
| 305 | phy->reset_delay_us = 100; |
| 306 | |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 307 | phy->ops.set_page = e1000_set_page_igp; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 308 | phy->ops.read_reg = e1000_read_phy_reg_hv; |
| 309 | phy->ops.read_reg_locked = e1000_read_phy_reg_hv_locked; |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 310 | phy->ops.read_reg_page = e1000_read_phy_reg_page_hv; |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 311 | phy->ops.set_d0_lplu_state = e1000_set_lplu_state_pchlan; |
| 312 | phy->ops.set_d3_lplu_state = e1000_set_lplu_state_pchlan; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 313 | phy->ops.write_reg = e1000_write_phy_reg_hv; |
| 314 | phy->ops.write_reg_locked = e1000_write_phy_reg_hv_locked; |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 315 | phy->ops.write_reg_page = e1000_write_phy_reg_page_hv; |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 316 | phy->ops.power_up = e1000_power_up_phy_copper; |
| 317 | phy->ops.power_down = e1000_power_down_phy_copper_ich8lan; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 318 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
| 319 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 320 | /* |
| 321 | * The MAC-PHY interconnect may still be in SMBus mode |
| 322 | * after Sx->S0. If the manageability engine (ME) is |
| 323 | * disabled, then toggle the LANPHYPC Value bit to force |
| 324 | * the interconnect to PCIe mode. |
| 325 | */ |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 326 | fwsm = er32(FWSM); |
Bruce Allan | 6cc7aae | 2011-02-25 06:25:18 +0000 | [diff] [blame] | 327 | if (!(fwsm & E1000_ICH_FWSM_FW_VALID) && !e1000_check_reset_block(hw)) { |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 328 | e1000_toggle_lanphypc_value_ich8lan(hw); |
Bruce Allan | 6dfaa76 | 2010-05-05 22:00:06 +0000 | [diff] [blame] | 329 | msleep(50); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 330 | |
| 331 | /* |
| 332 | * Gate automatic PHY configuration by hardware on |
| 333 | * non-managed 82579 |
| 334 | */ |
| 335 | if (hw->mac.type == e1000_pch2lan) |
| 336 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
Bruce Allan | 6dfaa76 | 2010-05-05 22:00:06 +0000 | [diff] [blame] | 337 | } |
| 338 | |
Bruce Allan | 627c8a0 | 2010-05-05 22:00:27 +0000 | [diff] [blame] | 339 | /* |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 340 | * Reset the PHY before any access to it. Doing so, ensures that |
Bruce Allan | 627c8a0 | 2010-05-05 22:00:27 +0000 | [diff] [blame] | 341 | * the PHY is in a known good state before we read/write PHY registers. |
| 342 | * The generic reset is sufficient here, because we haven't determined |
| 343 | * the PHY type yet. |
| 344 | */ |
| 345 | ret_val = e1000e_phy_hw_reset_generic(hw); |
| 346 | if (ret_val) |
| 347 | goto out; |
| 348 | |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 349 | /* Ungate automatic PHY configuration on non-managed 82579 */ |
Bruce Allan | 6cc7aae | 2011-02-25 06:25:18 +0000 | [diff] [blame] | 350 | if ((hw->mac.type == e1000_pch2lan) && |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 351 | !(fwsm & E1000_ICH_FWSM_FW_VALID)) { |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 352 | usleep_range(10000, 20000); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 353 | e1000_gate_hw_phy_config_ich8lan(hw, false); |
| 354 | } |
| 355 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 356 | phy->id = e1000_phy_unknown; |
Bruce Allan | 664dc87 | 2010-11-24 06:01:46 +0000 | [diff] [blame] | 357 | switch (hw->mac.type) { |
| 358 | default: |
| 359 | ret_val = e1000e_get_phy_id(hw); |
| 360 | if (ret_val) |
| 361 | goto out; |
| 362 | if ((phy->id != 0) && (phy->id != PHY_REVISION_MASK)) |
| 363 | break; |
| 364 | /* fall-through */ |
| 365 | case e1000_pch2lan: |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 366 | /* |
Bruce Allan | 664dc87 | 2010-11-24 06:01:46 +0000 | [diff] [blame] | 367 | * In case the PHY needs to be in mdio slow mode, |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 368 | * set slow mode and try to get the PHY id again. |
| 369 | */ |
| 370 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
| 371 | if (ret_val) |
| 372 | goto out; |
| 373 | ret_val = e1000e_get_phy_id(hw); |
| 374 | if (ret_val) |
| 375 | goto out; |
Bruce Allan | 664dc87 | 2010-11-24 06:01:46 +0000 | [diff] [blame] | 376 | break; |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 377 | } |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 378 | phy->type = e1000e_get_phy_type_from_id(phy->id); |
| 379 | |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 380 | switch (phy->type) { |
| 381 | case e1000_phy_82577: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 382 | case e1000_phy_82579: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 383 | phy->ops.check_polarity = e1000_check_polarity_82577; |
| 384 | phy->ops.force_speed_duplex = |
Bruce Allan | 6cc7aae | 2011-02-25 06:25:18 +0000 | [diff] [blame] | 385 | e1000_phy_force_speed_duplex_82577; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 386 | phy->ops.get_cable_length = e1000_get_cable_length_82577; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 387 | phy->ops.get_info = e1000_get_phy_info_82577; |
| 388 | phy->ops.commit = e1000e_phy_sw_reset; |
Bruce Allan | eab50ff | 2010-05-10 15:01:30 +0000 | [diff] [blame] | 389 | break; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 390 | case e1000_phy_82578: |
| 391 | phy->ops.check_polarity = e1000_check_polarity_m88; |
| 392 | phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88; |
| 393 | phy->ops.get_cable_length = e1000e_get_cable_length_m88; |
| 394 | phy->ops.get_info = e1000e_get_phy_info_m88; |
| 395 | break; |
| 396 | default: |
| 397 | ret_val = -E1000_ERR_PHY; |
| 398 | break; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 399 | } |
| 400 | |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 401 | out: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 402 | return ret_val; |
| 403 | } |
| 404 | |
| 405 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 406 | * e1000_init_phy_params_ich8lan - Initialize PHY function pointers |
| 407 | * @hw: pointer to the HW structure |
| 408 | * |
| 409 | * Initialize family-specific PHY parameters and function pointers. |
| 410 | **/ |
| 411 | static s32 e1000_init_phy_params_ich8lan(struct e1000_hw *hw) |
| 412 | { |
| 413 | struct e1000_phy_info *phy = &hw->phy; |
| 414 | s32 ret_val; |
| 415 | u16 i = 0; |
| 416 | |
| 417 | phy->addr = 1; |
| 418 | phy->reset_delay_us = 100; |
| 419 | |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 420 | phy->ops.power_up = e1000_power_up_phy_copper; |
| 421 | phy->ops.power_down = e1000_power_down_phy_copper_ich8lan; |
| 422 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 423 | /* |
| 424 | * We may need to do this twice - once for IGP and if that fails, |
| 425 | * we'll set BM func pointers and try again |
| 426 | */ |
| 427 | ret_val = e1000e_determine_phy_address(hw); |
| 428 | if (ret_val) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 429 | phy->ops.write_reg = e1000e_write_phy_reg_bm; |
| 430 | phy->ops.read_reg = e1000e_read_phy_reg_bm; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 431 | ret_val = e1000e_determine_phy_address(hw); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 432 | if (ret_val) { |
| 433 | e_dbg("Cannot determine PHY addr. Erroring out\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 434 | return ret_val; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 435 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 436 | } |
| 437 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 438 | phy->id = 0; |
| 439 | while ((e1000_phy_unknown == e1000e_get_phy_type_from_id(phy->id)) && |
| 440 | (i++ < 100)) { |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 441 | usleep_range(1000, 2000); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 442 | ret_val = e1000e_get_phy_id(hw); |
| 443 | if (ret_val) |
| 444 | return ret_val; |
| 445 | } |
| 446 | |
| 447 | /* Verify phy id */ |
| 448 | switch (phy->id) { |
| 449 | case IGP03E1000_E_PHY_ID: |
| 450 | phy->type = e1000_phy_igp_3; |
| 451 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 452 | phy->ops.read_reg_locked = e1000e_read_phy_reg_igp_locked; |
| 453 | phy->ops.write_reg_locked = e1000e_write_phy_reg_igp_locked; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 454 | phy->ops.get_info = e1000e_get_phy_info_igp; |
| 455 | phy->ops.check_polarity = e1000_check_polarity_igp; |
| 456 | phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_igp; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 457 | break; |
| 458 | case IFE_E_PHY_ID: |
| 459 | case IFE_PLUS_E_PHY_ID: |
| 460 | case IFE_C_E_PHY_ID: |
| 461 | phy->type = e1000_phy_ife; |
| 462 | phy->autoneg_mask = E1000_ALL_NOT_GIG; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 463 | phy->ops.get_info = e1000_get_phy_info_ife; |
| 464 | phy->ops.check_polarity = e1000_check_polarity_ife; |
| 465 | phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_ife; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 466 | break; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 467 | case BME1000_E_PHY_ID: |
| 468 | phy->type = e1000_phy_bm; |
| 469 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 470 | phy->ops.read_reg = e1000e_read_phy_reg_bm; |
| 471 | phy->ops.write_reg = e1000e_write_phy_reg_bm; |
| 472 | phy->ops.commit = e1000e_phy_sw_reset; |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 473 | phy->ops.get_info = e1000e_get_phy_info_m88; |
| 474 | phy->ops.check_polarity = e1000_check_polarity_m88; |
| 475 | phy->ops.force_speed_duplex = e1000e_phy_force_speed_duplex_m88; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 476 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 477 | default: |
| 478 | return -E1000_ERR_PHY; |
| 479 | break; |
| 480 | } |
| 481 | |
| 482 | return 0; |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * e1000_init_nvm_params_ich8lan - Initialize NVM function pointers |
| 487 | * @hw: pointer to the HW structure |
| 488 | * |
| 489 | * Initialize family-specific NVM parameters and function |
| 490 | * pointers. |
| 491 | **/ |
| 492 | static s32 e1000_init_nvm_params_ich8lan(struct e1000_hw *hw) |
| 493 | { |
| 494 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 495 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 496 | u32 gfpreg, sector_base_addr, sector_end_addr; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 497 | u16 i; |
| 498 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 499 | /* Can't read flash registers if the register set isn't mapped. */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 500 | if (!hw->flash_address) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 501 | e_dbg("ERROR: Flash registers not mapped\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 502 | return -E1000_ERR_CONFIG; |
| 503 | } |
| 504 | |
| 505 | nvm->type = e1000_nvm_flash_sw; |
| 506 | |
| 507 | gfpreg = er32flash(ICH_FLASH_GFPREG); |
| 508 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 509 | /* |
| 510 | * sector_X_addr is a "sector"-aligned address (4096 bytes) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 511 | * Add 1 to sector_end_addr since this sector is included in |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 512 | * the overall size. |
| 513 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 514 | sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK; |
| 515 | sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1; |
| 516 | |
| 517 | /* flash_base_addr is byte-aligned */ |
| 518 | nvm->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT; |
| 519 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 520 | /* |
| 521 | * find total size of the NVM, then cut in half since the total |
| 522 | * size represents two separate NVM banks. |
| 523 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 524 | nvm->flash_bank_size = (sector_end_addr - sector_base_addr) |
| 525 | << FLASH_SECTOR_ADDR_SHIFT; |
| 526 | nvm->flash_bank_size /= 2; |
| 527 | /* Adjust to word count */ |
| 528 | nvm->flash_bank_size /= sizeof(u16); |
| 529 | |
| 530 | nvm->word_size = E1000_ICH8_SHADOW_RAM_WORDS; |
| 531 | |
| 532 | /* Clear shadow ram */ |
| 533 | for (i = 0; i < nvm->word_size; i++) { |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 534 | dev_spec->shadow_ram[i].modified = false; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 535 | dev_spec->shadow_ram[i].value = 0xFFFF; |
| 536 | } |
| 537 | |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * e1000_init_mac_params_ich8lan - Initialize MAC function pointers |
| 543 | * @hw: pointer to the HW structure |
| 544 | * |
| 545 | * Initialize family-specific MAC parameters and function |
| 546 | * pointers. |
| 547 | **/ |
| 548 | static s32 e1000_init_mac_params_ich8lan(struct e1000_adapter *adapter) |
| 549 | { |
| 550 | struct e1000_hw *hw = &adapter->hw; |
| 551 | struct e1000_mac_info *mac = &hw->mac; |
| 552 | |
| 553 | /* Set media type function pointer */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 554 | hw->phy.media_type = e1000_media_type_copper; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 555 | |
| 556 | /* Set mta register count */ |
| 557 | mac->mta_reg_count = 32; |
| 558 | /* Set rar entry count */ |
| 559 | mac->rar_entry_count = E1000_ICH_RAR_ENTRIES; |
| 560 | if (mac->type == e1000_ich8lan) |
| 561 | mac->rar_entry_count--; |
Bruce Allan | a65a4a0 | 2010-05-10 15:01:51 +0000 | [diff] [blame] | 562 | /* FWSM register */ |
| 563 | mac->has_fwsm = true; |
| 564 | /* ARC subsystem not supported */ |
| 565 | mac->arc_subsystem_valid = false; |
Bruce Allan | f464ba8 | 2010-01-07 16:31:35 +0000 | [diff] [blame] | 566 | /* Adaptive IFS supported */ |
| 567 | mac->adaptive_ifs = true; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 568 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 569 | /* LED operations */ |
| 570 | switch (mac->type) { |
| 571 | case e1000_ich8lan: |
| 572 | case e1000_ich9lan: |
| 573 | case e1000_ich10lan: |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 574 | /* check management mode */ |
| 575 | mac->ops.check_mng_mode = e1000_check_mng_mode_ich8lan; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 576 | /* ID LED init */ |
| 577 | mac->ops.id_led_init = e1000e_id_led_init; |
Bruce Allan | dbf80dc | 2011-04-16 00:34:40 +0000 | [diff] [blame] | 578 | /* blink LED */ |
| 579 | mac->ops.blink_led = e1000e_blink_led_generic; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 580 | /* setup LED */ |
| 581 | mac->ops.setup_led = e1000e_setup_led_generic; |
| 582 | /* cleanup LED */ |
| 583 | mac->ops.cleanup_led = e1000_cleanup_led_ich8lan; |
| 584 | /* turn on/off LED */ |
| 585 | mac->ops.led_on = e1000_led_on_ich8lan; |
| 586 | mac->ops.led_off = e1000_led_off_ich8lan; |
| 587 | break; |
| 588 | case e1000_pchlan: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 589 | case e1000_pch2lan: |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 590 | /* check management mode */ |
| 591 | mac->ops.check_mng_mode = e1000_check_mng_mode_pchlan; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 592 | /* ID LED init */ |
| 593 | mac->ops.id_led_init = e1000_id_led_init_pchlan; |
| 594 | /* setup LED */ |
| 595 | mac->ops.setup_led = e1000_setup_led_pchlan; |
| 596 | /* cleanup LED */ |
| 597 | mac->ops.cleanup_led = e1000_cleanup_led_pchlan; |
| 598 | /* turn on/off LED */ |
| 599 | mac->ops.led_on = e1000_led_on_pchlan; |
| 600 | mac->ops.led_off = e1000_led_off_pchlan; |
| 601 | break; |
| 602 | default: |
| 603 | break; |
| 604 | } |
| 605 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 606 | /* Enable PCS Lock-loss workaround for ICH8 */ |
| 607 | if (mac->type == e1000_ich8lan) |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 608 | e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw, true); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 609 | |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 610 | /* Gate automatic PHY configuration by hardware on managed 82579 */ |
| 611 | if ((mac->type == e1000_pch2lan) && |
| 612 | (er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) |
| 613 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 614 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 615 | return 0; |
| 616 | } |
| 617 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 618 | /** |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 619 | * e1000_set_eee_pchlan - Enable/disable EEE support |
| 620 | * @hw: pointer to the HW structure |
| 621 | * |
| 622 | * Enable/disable EEE based on setting in dev_spec structure. The bits in |
| 623 | * the LPI Control register will remain set only if/when link is up. |
| 624 | **/ |
| 625 | static s32 e1000_set_eee_pchlan(struct e1000_hw *hw) |
| 626 | { |
| 627 | s32 ret_val = 0; |
| 628 | u16 phy_reg; |
| 629 | |
| 630 | if (hw->phy.type != e1000_phy_82579) |
| 631 | goto out; |
| 632 | |
| 633 | ret_val = e1e_rphy(hw, I82579_LPI_CTRL, &phy_reg); |
| 634 | if (ret_val) |
| 635 | goto out; |
| 636 | |
| 637 | if (hw->dev_spec.ich8lan.eee_disable) |
| 638 | phy_reg &= ~I82579_LPI_CTRL_ENABLE_MASK; |
| 639 | else |
| 640 | phy_reg |= I82579_LPI_CTRL_ENABLE_MASK; |
| 641 | |
| 642 | ret_val = e1e_wphy(hw, I82579_LPI_CTRL, phy_reg); |
| 643 | out: |
| 644 | return ret_val; |
| 645 | } |
| 646 | |
| 647 | /** |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 648 | * e1000_check_for_copper_link_ich8lan - Check for link (Copper) |
| 649 | * @hw: pointer to the HW structure |
| 650 | * |
| 651 | * Checks to see of the link status of the hardware has changed. If a |
| 652 | * change in link status has been detected, then we read the PHY registers |
| 653 | * to get the current speed/duplex if link exists. |
| 654 | **/ |
| 655 | static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw) |
| 656 | { |
| 657 | struct e1000_mac_info *mac = &hw->mac; |
| 658 | s32 ret_val; |
| 659 | bool link; |
| 660 | |
| 661 | /* |
| 662 | * We only want to go out to the PHY registers to see if Auto-Neg |
| 663 | * has completed and/or if our link status has changed. The |
| 664 | * get_link_status flag is set upon receiving a Link Status |
| 665 | * Change or Rx Sequence Error interrupt. |
| 666 | */ |
| 667 | if (!mac->get_link_status) { |
| 668 | ret_val = 0; |
| 669 | goto out; |
| 670 | } |
| 671 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 672 | /* |
| 673 | * First we want to see if the MII Status Register reports |
| 674 | * link. If so, then we want to get the current speed/duplex |
| 675 | * of the PHY. |
| 676 | */ |
| 677 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 678 | if (ret_val) |
| 679 | goto out; |
| 680 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 681 | if (hw->mac.type == e1000_pchlan) { |
| 682 | ret_val = e1000_k1_gig_workaround_hv(hw, link); |
| 683 | if (ret_val) |
| 684 | goto out; |
| 685 | } |
| 686 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 687 | if (!link) |
| 688 | goto out; /* No link detected */ |
| 689 | |
| 690 | mac->get_link_status = false; |
| 691 | |
| 692 | if (hw->phy.type == e1000_phy_82578) { |
| 693 | ret_val = e1000_link_stall_workaround_hv(hw); |
| 694 | if (ret_val) |
| 695 | goto out; |
| 696 | } |
| 697 | |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 698 | if (hw->mac.type == e1000_pch2lan) { |
| 699 | ret_val = e1000_k1_workaround_lv(hw); |
| 700 | if (ret_val) |
| 701 | goto out; |
| 702 | } |
| 703 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 704 | /* |
| 705 | * Check if there was DownShift, must be checked |
| 706 | * immediately after link-up |
| 707 | */ |
| 708 | e1000e_check_downshift(hw); |
| 709 | |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 710 | /* Enable/Disable EEE after link up */ |
| 711 | ret_val = e1000_set_eee_pchlan(hw); |
| 712 | if (ret_val) |
| 713 | goto out; |
| 714 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 715 | /* |
| 716 | * If we are forcing speed/duplex, then we simply return since |
| 717 | * we have already determined whether we have link or not. |
| 718 | */ |
| 719 | if (!mac->autoneg) { |
| 720 | ret_val = -E1000_ERR_CONFIG; |
| 721 | goto out; |
| 722 | } |
| 723 | |
| 724 | /* |
| 725 | * Auto-Neg is enabled. Auto Speed Detection takes care |
| 726 | * of MAC speed/duplex configuration. So we only need to |
| 727 | * configure Collision Distance in the MAC. |
| 728 | */ |
| 729 | e1000e_config_collision_dist(hw); |
| 730 | |
| 731 | /* |
| 732 | * Configure Flow Control now that Auto-Neg has completed. |
| 733 | * First, we need to restore the desired flow control |
| 734 | * settings because we may have had to re-autoneg with a |
| 735 | * different link partner. |
| 736 | */ |
| 737 | ret_val = e1000e_config_fc_after_link_up(hw); |
| 738 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 739 | e_dbg("Error configuring flow control\n"); |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 740 | |
| 741 | out: |
| 742 | return ret_val; |
| 743 | } |
| 744 | |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 745 | static s32 e1000_get_variants_ich8lan(struct e1000_adapter *adapter) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 746 | { |
| 747 | struct e1000_hw *hw = &adapter->hw; |
| 748 | s32 rc; |
| 749 | |
| 750 | rc = e1000_init_mac_params_ich8lan(adapter); |
| 751 | if (rc) |
| 752 | return rc; |
| 753 | |
| 754 | rc = e1000_init_nvm_params_ich8lan(hw); |
| 755 | if (rc) |
| 756 | return rc; |
| 757 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 758 | switch (hw->mac.type) { |
| 759 | case e1000_ich8lan: |
| 760 | case e1000_ich9lan: |
| 761 | case e1000_ich10lan: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 762 | rc = e1000_init_phy_params_ich8lan(hw); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 763 | break; |
| 764 | case e1000_pchlan: |
| 765 | case e1000_pch2lan: |
| 766 | rc = e1000_init_phy_params_pchlan(hw); |
| 767 | break; |
| 768 | default: |
| 769 | break; |
| 770 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 771 | if (rc) |
| 772 | return rc; |
| 773 | |
Bruce Allan | 23e4f06 | 2011-02-25 07:44:51 +0000 | [diff] [blame] | 774 | /* |
| 775 | * Disable Jumbo Frame support on parts with Intel 10/100 PHY or |
| 776 | * on parts with MACsec enabled in NVM (reflected in CTRL_EXT). |
| 777 | */ |
| 778 | if ((adapter->hw.phy.type == e1000_phy_ife) || |
| 779 | ((adapter->hw.mac.type >= e1000_pch2lan) && |
| 780 | (!(er32(CTRL_EXT) & E1000_CTRL_EXT_LSECCK)))) { |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 781 | adapter->flags &= ~FLAG_HAS_JUMBO_FRAMES; |
| 782 | adapter->max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN; |
Bruce Allan | dbf80dc | 2011-04-16 00:34:40 +0000 | [diff] [blame] | 783 | |
| 784 | hw->mac.ops.blink_led = NULL; |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 785 | } |
| 786 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 787 | if ((adapter->hw.mac.type == e1000_ich8lan) && |
| 788 | (adapter->hw.phy.type == e1000_phy_igp_3)) |
| 789 | adapter->flags |= FLAG_LSC_GIG_SPEED_DROP; |
| 790 | |
Bruce Allan | 5a86f28 | 2010-06-29 18:13:13 +0000 | [diff] [blame] | 791 | /* Disable EEE by default until IEEE802.3az spec is finalized */ |
| 792 | if (adapter->flags2 & FLAG2_HAS_EEE) |
| 793 | adapter->hw.dev_spec.ich8lan.eee_disable = true; |
| 794 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 795 | return 0; |
| 796 | } |
| 797 | |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 798 | static DEFINE_MUTEX(nvm_mutex); |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 799 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 800 | /** |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 801 | * e1000_acquire_nvm_ich8lan - Acquire NVM mutex |
| 802 | * @hw: pointer to the HW structure |
| 803 | * |
| 804 | * Acquires the mutex for performing NVM operations. |
| 805 | **/ |
| 806 | static s32 e1000_acquire_nvm_ich8lan(struct e1000_hw *hw) |
| 807 | { |
| 808 | mutex_lock(&nvm_mutex); |
| 809 | |
| 810 | return 0; |
| 811 | } |
| 812 | |
| 813 | /** |
| 814 | * e1000_release_nvm_ich8lan - Release NVM mutex |
| 815 | * @hw: pointer to the HW structure |
| 816 | * |
| 817 | * Releases the mutex used while performing NVM operations. |
| 818 | **/ |
| 819 | static void e1000_release_nvm_ich8lan(struct e1000_hw *hw) |
| 820 | { |
| 821 | mutex_unlock(&nvm_mutex); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | static DEFINE_MUTEX(swflag_mutex); |
| 825 | |
| 826 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 827 | * e1000_acquire_swflag_ich8lan - Acquire software control flag |
| 828 | * @hw: pointer to the HW structure |
| 829 | * |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 830 | * Acquires the software control flag for performing PHY and select |
| 831 | * MAC CSR accesses. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 832 | **/ |
| 833 | static s32 e1000_acquire_swflag_ich8lan(struct e1000_hw *hw) |
| 834 | { |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 835 | u32 extcnf_ctrl, timeout = PHY_CFG_TIMEOUT; |
| 836 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 837 | |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 838 | mutex_lock(&swflag_mutex); |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 839 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 840 | while (timeout) { |
| 841 | extcnf_ctrl = er32(EXTCNF_CTRL); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 842 | if (!(extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG)) |
| 843 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 844 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 845 | mdelay(1); |
| 846 | timeout--; |
| 847 | } |
| 848 | |
| 849 | if (!timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 850 | e_dbg("SW/FW/HW has locked the resource for too long.\n"); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 851 | ret_val = -E1000_ERR_CONFIG; |
| 852 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Bruce Allan | 53ac5a8 | 2009-10-26 11:23:06 +0000 | [diff] [blame] | 855 | timeout = SW_FLAG_TIMEOUT; |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 856 | |
| 857 | extcnf_ctrl |= E1000_EXTCNF_CTRL_SWFLAG; |
| 858 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 859 | |
| 860 | while (timeout) { |
| 861 | extcnf_ctrl = er32(EXTCNF_CTRL); |
| 862 | if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG) |
| 863 | break; |
| 864 | |
| 865 | mdelay(1); |
| 866 | timeout--; |
| 867 | } |
| 868 | |
| 869 | if (!timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 870 | e_dbg("Failed to acquire the semaphore.\n"); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 871 | extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG; |
| 872 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 873 | ret_val = -E1000_ERR_CONFIG; |
| 874 | goto out; |
| 875 | } |
| 876 | |
| 877 | out: |
| 878 | if (ret_val) |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 879 | mutex_unlock(&swflag_mutex); |
Bruce Allan | 373a88d | 2009-08-07 07:41:37 +0000 | [diff] [blame] | 880 | |
| 881 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /** |
| 885 | * e1000_release_swflag_ich8lan - Release software control flag |
| 886 | * @hw: pointer to the HW structure |
| 887 | * |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 888 | * Releases the software control flag for performing PHY and select |
| 889 | * MAC CSR accesses. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 890 | **/ |
| 891 | static void e1000_release_swflag_ich8lan(struct e1000_hw *hw) |
| 892 | { |
| 893 | u32 extcnf_ctrl; |
| 894 | |
| 895 | extcnf_ctrl = er32(EXTCNF_CTRL); |
Bruce Allan | c5caf48 | 2011-05-13 07:19:53 +0000 | [diff] [blame] | 896 | |
| 897 | if (extcnf_ctrl & E1000_EXTCNF_CTRL_SWFLAG) { |
| 898 | extcnf_ctrl &= ~E1000_EXTCNF_CTRL_SWFLAG; |
| 899 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 900 | } else { |
| 901 | e_dbg("Semaphore unexpectedly released by sw/fw/hw\n"); |
| 902 | } |
Thomas Gleixner | 717d438 | 2008-10-02 16:33:40 -0700 | [diff] [blame] | 903 | |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 904 | mutex_unlock(&swflag_mutex); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /** |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 908 | * e1000_check_mng_mode_ich8lan - Checks management mode |
| 909 | * @hw: pointer to the HW structure |
| 910 | * |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 911 | * This checks if the adapter has any manageability enabled. |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 912 | * This is a function pointer entry point only called by read/write |
| 913 | * routines for the PHY and NVM parts. |
| 914 | **/ |
| 915 | static bool e1000_check_mng_mode_ich8lan(struct e1000_hw *hw) |
| 916 | { |
Bruce Allan | a708dd8 | 2009-11-20 23:28:37 +0000 | [diff] [blame] | 917 | u32 fwsm; |
| 918 | |
| 919 | fwsm = er32(FWSM); |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 920 | return (fwsm & E1000_ICH_FWSM_FW_VALID) && |
| 921 | ((fwsm & E1000_FWSM_MODE_MASK) == |
| 922 | (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT)); |
| 923 | } |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 924 | |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 925 | /** |
| 926 | * e1000_check_mng_mode_pchlan - Checks management mode |
| 927 | * @hw: pointer to the HW structure |
| 928 | * |
| 929 | * This checks if the adapter has iAMT enabled. |
| 930 | * This is a function pointer entry point only called by read/write |
| 931 | * routines for the PHY and NVM parts. |
| 932 | **/ |
| 933 | static bool e1000_check_mng_mode_pchlan(struct e1000_hw *hw) |
| 934 | { |
| 935 | u32 fwsm; |
| 936 | |
| 937 | fwsm = er32(FWSM); |
| 938 | return (fwsm & E1000_ICH_FWSM_FW_VALID) && |
| 939 | (fwsm & (E1000_ICH_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT)); |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 943 | * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked |
| 944 | * @hw: pointer to the HW structure |
| 945 | * |
| 946 | * Checks if firmware is blocking the reset of the PHY. |
| 947 | * This is a function pointer entry point only called by |
| 948 | * reset routines. |
| 949 | **/ |
| 950 | static s32 e1000_check_reset_block_ich8lan(struct e1000_hw *hw) |
| 951 | { |
| 952 | u32 fwsm; |
| 953 | |
| 954 | fwsm = er32(FWSM); |
| 955 | |
| 956 | return (fwsm & E1000_ICH_FWSM_RSPCIPHY) ? 0 : E1000_BLK_PHY_RESET; |
| 957 | } |
| 958 | |
| 959 | /** |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 960 | * e1000_write_smbus_addr - Write SMBus address to PHY needed during Sx states |
| 961 | * @hw: pointer to the HW structure |
| 962 | * |
| 963 | * Assumes semaphore already acquired. |
| 964 | * |
| 965 | **/ |
| 966 | static s32 e1000_write_smbus_addr(struct e1000_hw *hw) |
| 967 | { |
| 968 | u16 phy_data; |
| 969 | u32 strap = er32(STRAP); |
| 970 | s32 ret_val = 0; |
| 971 | |
| 972 | strap &= E1000_STRAP_SMBUS_ADDRESS_MASK; |
| 973 | |
| 974 | ret_val = e1000_read_phy_reg_hv_locked(hw, HV_SMB_ADDR, &phy_data); |
| 975 | if (ret_val) |
| 976 | goto out; |
| 977 | |
| 978 | phy_data &= ~HV_SMB_ADDR_MASK; |
| 979 | phy_data |= (strap >> E1000_STRAP_SMBUS_ADDRESS_SHIFT); |
| 980 | phy_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID; |
| 981 | ret_val = e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR, phy_data); |
| 982 | |
| 983 | out: |
| 984 | return ret_val; |
| 985 | } |
| 986 | |
| 987 | /** |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 988 | * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration |
| 989 | * @hw: pointer to the HW structure |
| 990 | * |
| 991 | * SW should configure the LCD from the NVM extended configuration region |
| 992 | * as a workaround for certain parts. |
| 993 | **/ |
| 994 | static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw) |
| 995 | { |
| 996 | struct e1000_phy_info *phy = &hw->phy; |
| 997 | u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask; |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 998 | s32 ret_val = 0; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 999 | u16 word_addr, reg_data, reg_addr, phy_page = 0; |
| 1000 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1001 | /* |
| 1002 | * Initialize the PHY from the NVM on ICH platforms. This |
| 1003 | * is needed due to an issue where the NVM configuration is |
| 1004 | * not properly autoloaded after power transitions. |
| 1005 | * Therefore, after each PHY reset, we will load the |
| 1006 | * configuration data out of the NVM manually. |
| 1007 | */ |
Bruce Allan | 3f0c16e | 2010-06-16 13:26:17 +0000 | [diff] [blame] | 1008 | switch (hw->mac.type) { |
| 1009 | case e1000_ich8lan: |
| 1010 | if (phy->type != e1000_phy_igp_3) |
| 1011 | return ret_val; |
| 1012 | |
Bruce Allan | 5f3eed6 | 2010-09-22 17:15:54 +0000 | [diff] [blame] | 1013 | if ((hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_AMT) || |
| 1014 | (hw->adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_C)) { |
Bruce Allan | 3f0c16e | 2010-06-16 13:26:17 +0000 | [diff] [blame] | 1015 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG; |
| 1016 | break; |
| 1017 | } |
| 1018 | /* Fall-thru */ |
| 1019 | case e1000_pchlan: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1020 | case e1000_pch2lan: |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1021 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M; |
Bruce Allan | 3f0c16e | 2010-06-16 13:26:17 +0000 | [diff] [blame] | 1022 | break; |
| 1023 | default: |
| 1024 | return ret_val; |
| 1025 | } |
| 1026 | |
| 1027 | ret_val = hw->phy.ops.acquire(hw); |
| 1028 | if (ret_val) |
| 1029 | return ret_val; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1030 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1031 | data = er32(FEXTNVM); |
| 1032 | if (!(data & sw_cfg_mask)) |
| 1033 | goto out; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1034 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1035 | /* |
| 1036 | * Make sure HW does not configure LCD from PHY |
| 1037 | * extended configuration before SW configuration |
| 1038 | */ |
| 1039 | data = er32(EXTCNF_CTRL); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1040 | if (!(hw->mac.type == e1000_pch2lan)) { |
| 1041 | if (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE) |
| 1042 | goto out; |
| 1043 | } |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1044 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1045 | cnf_size = er32(EXTCNF_SIZE); |
| 1046 | cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK; |
| 1047 | cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT; |
| 1048 | if (!cnf_size) |
| 1049 | goto out; |
| 1050 | |
| 1051 | cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK; |
| 1052 | cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT; |
| 1053 | |
Bruce Allan | 87fb741 | 2010-09-22 17:15:33 +0000 | [diff] [blame] | 1054 | if ((!(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) && |
| 1055 | (hw->mac.type == e1000_pchlan)) || |
| 1056 | (hw->mac.type == e1000_pch2lan)) { |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1057 | /* |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1058 | * HW configures the SMBus address and LEDs when the |
| 1059 | * OEM and LCD Write Enable bits are set in the NVM. |
| 1060 | * When both NVM bits are cleared, SW will configure |
| 1061 | * them instead. |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1062 | */ |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 1063 | ret_val = e1000_write_smbus_addr(hw); |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1064 | if (ret_val) |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1065 | goto out; |
| 1066 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1067 | data = er32(LEDCTL); |
| 1068 | ret_val = e1000_write_phy_reg_hv_locked(hw, HV_LED_CONFIG, |
| 1069 | (u16)data); |
| 1070 | if (ret_val) |
| 1071 | goto out; |
| 1072 | } |
| 1073 | |
| 1074 | /* Configure LCD from extended configuration region. */ |
| 1075 | |
| 1076 | /* cnf_base_addr is in DWORD */ |
| 1077 | word_addr = (u16)(cnf_base_addr << 1); |
| 1078 | |
| 1079 | for (i = 0; i < cnf_size; i++) { |
| 1080 | ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1, |
| 1081 | ®_data); |
| 1082 | if (ret_val) |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1083 | goto out; |
| 1084 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1085 | ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1), |
| 1086 | 1, ®_addr); |
| 1087 | if (ret_val) |
| 1088 | goto out; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1089 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1090 | /* Save off the PHY page for future writes. */ |
| 1091 | if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) { |
| 1092 | phy_page = reg_data; |
| 1093 | continue; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1094 | } |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1095 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1096 | reg_addr &= PHY_REG_MASK; |
| 1097 | reg_addr |= phy_page; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1098 | |
Bruce Allan | 8b802a7 | 2010-05-10 15:01:10 +0000 | [diff] [blame] | 1099 | ret_val = phy->ops.write_reg_locked(hw, (u32)reg_addr, |
| 1100 | reg_data); |
| 1101 | if (ret_val) |
| 1102 | goto out; |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | out: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1106 | hw->phy.ops.release(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1107 | return ret_val; |
| 1108 | } |
| 1109 | |
| 1110 | /** |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1111 | * e1000_k1_gig_workaround_hv - K1 Si workaround |
| 1112 | * @hw: pointer to the HW structure |
| 1113 | * @link: link up bool flag |
| 1114 | * |
| 1115 | * If K1 is enabled for 1Gbps, the MAC might stall when transitioning |
| 1116 | * from a lower speed. This workaround disables K1 whenever link is at 1Gig |
| 1117 | * If link is down, the function will restore the default K1 setting located |
| 1118 | * in the NVM. |
| 1119 | **/ |
| 1120 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link) |
| 1121 | { |
| 1122 | s32 ret_val = 0; |
| 1123 | u16 status_reg = 0; |
| 1124 | bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled; |
| 1125 | |
| 1126 | if (hw->mac.type != e1000_pchlan) |
| 1127 | goto out; |
| 1128 | |
| 1129 | /* Wrap the whole flow with the sw flag */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1130 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1131 | if (ret_val) |
| 1132 | goto out; |
| 1133 | |
| 1134 | /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */ |
| 1135 | if (link) { |
| 1136 | if (hw->phy.type == e1000_phy_82578) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1137 | ret_val = hw->phy.ops.read_reg_locked(hw, BM_CS_STATUS, |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1138 | &status_reg); |
| 1139 | if (ret_val) |
| 1140 | goto release; |
| 1141 | |
| 1142 | status_reg &= BM_CS_STATUS_LINK_UP | |
| 1143 | BM_CS_STATUS_RESOLVED | |
| 1144 | BM_CS_STATUS_SPEED_MASK; |
| 1145 | |
| 1146 | if (status_reg == (BM_CS_STATUS_LINK_UP | |
| 1147 | BM_CS_STATUS_RESOLVED | |
| 1148 | BM_CS_STATUS_SPEED_1000)) |
| 1149 | k1_enable = false; |
| 1150 | } |
| 1151 | |
| 1152 | if (hw->phy.type == e1000_phy_82577) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1153 | ret_val = hw->phy.ops.read_reg_locked(hw, HV_M_STATUS, |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1154 | &status_reg); |
| 1155 | if (ret_val) |
| 1156 | goto release; |
| 1157 | |
| 1158 | status_reg &= HV_M_STATUS_LINK_UP | |
| 1159 | HV_M_STATUS_AUTONEG_COMPLETE | |
| 1160 | HV_M_STATUS_SPEED_MASK; |
| 1161 | |
| 1162 | if (status_reg == (HV_M_STATUS_LINK_UP | |
| 1163 | HV_M_STATUS_AUTONEG_COMPLETE | |
| 1164 | HV_M_STATUS_SPEED_1000)) |
| 1165 | k1_enable = false; |
| 1166 | } |
| 1167 | |
| 1168 | /* Link stall fix for link up */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1169 | ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19), |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1170 | 0x0100); |
| 1171 | if (ret_val) |
| 1172 | goto release; |
| 1173 | |
| 1174 | } else { |
| 1175 | /* Link stall fix for link down */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1176 | ret_val = hw->phy.ops.write_reg_locked(hw, PHY_REG(770, 19), |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1177 | 0x4100); |
| 1178 | if (ret_val) |
| 1179 | goto release; |
| 1180 | } |
| 1181 | |
| 1182 | ret_val = e1000_configure_k1_ich8lan(hw, k1_enable); |
| 1183 | |
| 1184 | release: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1185 | hw->phy.ops.release(hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1186 | out: |
| 1187 | return ret_val; |
| 1188 | } |
| 1189 | |
| 1190 | /** |
| 1191 | * e1000_configure_k1_ich8lan - Configure K1 power state |
| 1192 | * @hw: pointer to the HW structure |
| 1193 | * @enable: K1 state to configure |
| 1194 | * |
| 1195 | * Configure the K1 power state based on the provided parameter. |
| 1196 | * Assumes semaphore already acquired. |
| 1197 | * |
| 1198 | * Success returns 0, Failure returns -E1000_ERR_PHY (-2) |
| 1199 | **/ |
Bruce Allan | bb436b2 | 2009-11-20 23:24:11 +0000 | [diff] [blame] | 1200 | s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable) |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1201 | { |
| 1202 | s32 ret_val = 0; |
| 1203 | u32 ctrl_reg = 0; |
| 1204 | u32 ctrl_ext = 0; |
| 1205 | u32 reg = 0; |
| 1206 | u16 kmrn_reg = 0; |
| 1207 | |
| 1208 | ret_val = e1000e_read_kmrn_reg_locked(hw, |
| 1209 | E1000_KMRNCTRLSTA_K1_CONFIG, |
| 1210 | &kmrn_reg); |
| 1211 | if (ret_val) |
| 1212 | goto out; |
| 1213 | |
| 1214 | if (k1_enable) |
| 1215 | kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE; |
| 1216 | else |
| 1217 | kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE; |
| 1218 | |
| 1219 | ret_val = e1000e_write_kmrn_reg_locked(hw, |
| 1220 | E1000_KMRNCTRLSTA_K1_CONFIG, |
| 1221 | kmrn_reg); |
| 1222 | if (ret_val) |
| 1223 | goto out; |
| 1224 | |
| 1225 | udelay(20); |
| 1226 | ctrl_ext = er32(CTRL_EXT); |
| 1227 | ctrl_reg = er32(CTRL); |
| 1228 | |
| 1229 | reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100); |
| 1230 | reg |= E1000_CTRL_FRCSPD; |
| 1231 | ew32(CTRL, reg); |
| 1232 | |
| 1233 | ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame^] | 1234 | e1e_flush(); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1235 | udelay(20); |
| 1236 | ew32(CTRL, ctrl_reg); |
| 1237 | ew32(CTRL_EXT, ctrl_ext); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame^] | 1238 | e1e_flush(); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1239 | udelay(20); |
| 1240 | |
| 1241 | out: |
| 1242 | return ret_val; |
| 1243 | } |
| 1244 | |
| 1245 | /** |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1246 | * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration |
| 1247 | * @hw: pointer to the HW structure |
| 1248 | * @d0_state: boolean if entering d0 or d3 device state |
| 1249 | * |
| 1250 | * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are |
| 1251 | * collectively called OEM bits. The OEM Write Enable bit and SW Config bit |
| 1252 | * in NVM determines whether HW should configure LPLU and Gbe Disable. |
| 1253 | **/ |
| 1254 | static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state) |
| 1255 | { |
| 1256 | s32 ret_val = 0; |
| 1257 | u32 mac_reg; |
| 1258 | u16 oem_reg; |
| 1259 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1260 | if ((hw->mac.type != e1000_pch2lan) && (hw->mac.type != e1000_pchlan)) |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1261 | return ret_val; |
| 1262 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1263 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1264 | if (ret_val) |
| 1265 | return ret_val; |
| 1266 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1267 | if (!(hw->mac.type == e1000_pch2lan)) { |
| 1268 | mac_reg = er32(EXTCNF_CTRL); |
| 1269 | if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) |
| 1270 | goto out; |
| 1271 | } |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1272 | |
| 1273 | mac_reg = er32(FEXTNVM); |
| 1274 | if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M)) |
| 1275 | goto out; |
| 1276 | |
| 1277 | mac_reg = er32(PHY_CTRL); |
| 1278 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1279 | ret_val = hw->phy.ops.read_reg_locked(hw, HV_OEM_BITS, &oem_reg); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1280 | if (ret_val) |
| 1281 | goto out; |
| 1282 | |
| 1283 | oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU); |
| 1284 | |
| 1285 | if (d0_state) { |
| 1286 | if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE) |
| 1287 | oem_reg |= HV_OEM_BITS_GBE_DIS; |
| 1288 | |
| 1289 | if (mac_reg & E1000_PHY_CTRL_D0A_LPLU) |
| 1290 | oem_reg |= HV_OEM_BITS_LPLU; |
| 1291 | } else { |
| 1292 | if (mac_reg & E1000_PHY_CTRL_NOND0A_GBE_DISABLE) |
| 1293 | oem_reg |= HV_OEM_BITS_GBE_DIS; |
| 1294 | |
| 1295 | if (mac_reg & E1000_PHY_CTRL_NOND0A_LPLU) |
| 1296 | oem_reg |= HV_OEM_BITS_LPLU; |
| 1297 | } |
| 1298 | /* Restart auto-neg to activate the bits */ |
Bruce Allan | 818f333 | 2009-11-19 14:17:30 +0000 | [diff] [blame] | 1299 | if (!e1000_check_reset_block(hw)) |
| 1300 | oem_reg |= HV_OEM_BITS_RESTART_AN; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1301 | ret_val = hw->phy.ops.write_reg_locked(hw, HV_OEM_BITS, oem_reg); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1302 | |
| 1303 | out: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1304 | hw->phy.ops.release(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1305 | |
| 1306 | return ret_val; |
| 1307 | } |
| 1308 | |
| 1309 | |
| 1310 | /** |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 1311 | * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode |
| 1312 | * @hw: pointer to the HW structure |
| 1313 | **/ |
| 1314 | static s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw) |
| 1315 | { |
| 1316 | s32 ret_val; |
| 1317 | u16 data; |
| 1318 | |
| 1319 | ret_val = e1e_rphy(hw, HV_KMRN_MODE_CTRL, &data); |
| 1320 | if (ret_val) |
| 1321 | return ret_val; |
| 1322 | |
| 1323 | data |= HV_KMRN_MDIO_SLOW; |
| 1324 | |
| 1325 | ret_val = e1e_wphy(hw, HV_KMRN_MODE_CTRL, data); |
| 1326 | |
| 1327 | return ret_val; |
| 1328 | } |
| 1329 | |
| 1330 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1331 | * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be |
| 1332 | * done after every PHY reset. |
| 1333 | **/ |
| 1334 | static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw) |
| 1335 | { |
| 1336 | s32 ret_val = 0; |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1337 | u16 phy_data; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1338 | |
| 1339 | if (hw->mac.type != e1000_pchlan) |
| 1340 | return ret_val; |
| 1341 | |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 1342 | /* Set MDIO slow mode before any other MDIO access */ |
| 1343 | if (hw->phy.type == e1000_phy_82577) { |
| 1344 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
| 1345 | if (ret_val) |
| 1346 | goto out; |
| 1347 | } |
| 1348 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1349 | if (((hw->phy.type == e1000_phy_82577) && |
| 1350 | ((hw->phy.revision == 1) || (hw->phy.revision == 2))) || |
| 1351 | ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) { |
| 1352 | /* Disable generation of early preamble */ |
| 1353 | ret_val = e1e_wphy(hw, PHY_REG(769, 25), 0x4431); |
| 1354 | if (ret_val) |
| 1355 | return ret_val; |
| 1356 | |
| 1357 | /* Preamble tuning for SSC */ |
| 1358 | ret_val = e1e_wphy(hw, PHY_REG(770, 16), 0xA204); |
| 1359 | if (ret_val) |
| 1360 | return ret_val; |
| 1361 | } |
| 1362 | |
| 1363 | if (hw->phy.type == e1000_phy_82578) { |
| 1364 | /* |
| 1365 | * Return registers to default by doing a soft reset then |
| 1366 | * writing 0x3140 to the control register. |
| 1367 | */ |
| 1368 | if (hw->phy.revision < 2) { |
| 1369 | e1000e_phy_sw_reset(hw); |
| 1370 | ret_val = e1e_wphy(hw, PHY_CONTROL, 0x3140); |
| 1371 | } |
| 1372 | } |
| 1373 | |
| 1374 | /* Select page 0 */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1375 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1376 | if (ret_val) |
| 1377 | return ret_val; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1378 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1379 | hw->phy.addr = 1; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1380 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1381 | hw->phy.ops.release(hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1382 | if (ret_val) |
| 1383 | goto out; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1384 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1385 | /* |
| 1386 | * Configure the K1 Si workaround during phy reset assuming there is |
| 1387 | * link so that it disables K1 if link is in 1Gbps. |
| 1388 | */ |
| 1389 | ret_val = e1000_k1_gig_workaround_hv(hw, true); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1390 | if (ret_val) |
| 1391 | goto out; |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1392 | |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1393 | /* Workaround for link disconnects on a busy hub in half duplex */ |
| 1394 | ret_val = hw->phy.ops.acquire(hw); |
| 1395 | if (ret_val) |
| 1396 | goto out; |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 1397 | ret_val = hw->phy.ops.read_reg_locked(hw, BM_PORT_GEN_CFG, &phy_data); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1398 | if (ret_val) |
| 1399 | goto release; |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 1400 | ret_val = hw->phy.ops.write_reg_locked(hw, BM_PORT_GEN_CFG, |
| 1401 | phy_data & 0x00FF); |
Bruce Allan | baf86c9 | 2010-01-13 01:53:08 +0000 | [diff] [blame] | 1402 | release: |
| 1403 | hw->phy.ops.release(hw); |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 1404 | out: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1405 | return ret_val; |
| 1406 | } |
| 1407 | |
| 1408 | /** |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1409 | * e1000_copy_rx_addrs_to_phy_ich8lan - Copy Rx addresses from MAC to PHY |
| 1410 | * @hw: pointer to the HW structure |
| 1411 | **/ |
| 1412 | void e1000_copy_rx_addrs_to_phy_ich8lan(struct e1000_hw *hw) |
| 1413 | { |
| 1414 | u32 mac_reg; |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 1415 | u16 i, phy_reg = 0; |
| 1416 | s32 ret_val; |
| 1417 | |
| 1418 | ret_val = hw->phy.ops.acquire(hw); |
| 1419 | if (ret_val) |
| 1420 | return; |
| 1421 | ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg); |
| 1422 | if (ret_val) |
| 1423 | goto release; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1424 | |
| 1425 | /* Copy both RAL/H (rar_entry_count) and SHRAL/H (+4) to PHY */ |
| 1426 | for (i = 0; i < (hw->mac.rar_entry_count + 4); i++) { |
| 1427 | mac_reg = er32(RAL(i)); |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 1428 | hw->phy.ops.write_reg_page(hw, BM_RAR_L(i), |
| 1429 | (u16)(mac_reg & 0xFFFF)); |
| 1430 | hw->phy.ops.write_reg_page(hw, BM_RAR_M(i), |
| 1431 | (u16)((mac_reg >> 16) & 0xFFFF)); |
| 1432 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1433 | mac_reg = er32(RAH(i)); |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 1434 | hw->phy.ops.write_reg_page(hw, BM_RAR_H(i), |
| 1435 | (u16)(mac_reg & 0xFFFF)); |
| 1436 | hw->phy.ops.write_reg_page(hw, BM_RAR_CTRL(i), |
| 1437 | (u16)((mac_reg & E1000_RAH_AV) |
| 1438 | >> 16)); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1439 | } |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 1440 | |
| 1441 | e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg); |
| 1442 | |
| 1443 | release: |
| 1444 | hw->phy.ops.release(hw); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1445 | } |
| 1446 | |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1447 | /** |
| 1448 | * e1000_lv_jumbo_workaround_ich8lan - required for jumbo frame operation |
| 1449 | * with 82579 PHY |
| 1450 | * @hw: pointer to the HW structure |
| 1451 | * @enable: flag to enable/disable workaround when enabling/disabling jumbos |
| 1452 | **/ |
| 1453 | s32 e1000_lv_jumbo_workaround_ich8lan(struct e1000_hw *hw, bool enable) |
| 1454 | { |
| 1455 | s32 ret_val = 0; |
| 1456 | u16 phy_reg, data; |
| 1457 | u32 mac_reg; |
| 1458 | u16 i; |
| 1459 | |
| 1460 | if (hw->mac.type != e1000_pch2lan) |
| 1461 | goto out; |
| 1462 | |
| 1463 | /* disable Rx path while enabling/disabling workaround */ |
| 1464 | e1e_rphy(hw, PHY_REG(769, 20), &phy_reg); |
| 1465 | ret_val = e1e_wphy(hw, PHY_REG(769, 20), phy_reg | (1 << 14)); |
| 1466 | if (ret_val) |
| 1467 | goto out; |
| 1468 | |
| 1469 | if (enable) { |
| 1470 | /* |
| 1471 | * Write Rx addresses (rar_entry_count for RAL/H, +4 for |
| 1472 | * SHRAL/H) and initial CRC values to the MAC |
| 1473 | */ |
| 1474 | for (i = 0; i < (hw->mac.rar_entry_count + 4); i++) { |
| 1475 | u8 mac_addr[ETH_ALEN] = {0}; |
| 1476 | u32 addr_high, addr_low; |
| 1477 | |
| 1478 | addr_high = er32(RAH(i)); |
| 1479 | if (!(addr_high & E1000_RAH_AV)) |
| 1480 | continue; |
| 1481 | addr_low = er32(RAL(i)); |
| 1482 | mac_addr[0] = (addr_low & 0xFF); |
| 1483 | mac_addr[1] = ((addr_low >> 8) & 0xFF); |
| 1484 | mac_addr[2] = ((addr_low >> 16) & 0xFF); |
| 1485 | mac_addr[3] = ((addr_low >> 24) & 0xFF); |
| 1486 | mac_addr[4] = (addr_high & 0xFF); |
| 1487 | mac_addr[5] = ((addr_high >> 8) & 0xFF); |
| 1488 | |
Bruce Allan | fe46f58 | 2011-01-06 14:29:51 +0000 | [diff] [blame] | 1489 | ew32(PCH_RAICC(i), ~ether_crc_le(ETH_ALEN, mac_addr)); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | /* Write Rx addresses to the PHY */ |
| 1493 | e1000_copy_rx_addrs_to_phy_ich8lan(hw); |
| 1494 | |
| 1495 | /* Enable jumbo frame workaround in the MAC */ |
| 1496 | mac_reg = er32(FFLT_DBG); |
| 1497 | mac_reg &= ~(1 << 14); |
| 1498 | mac_reg |= (7 << 15); |
| 1499 | ew32(FFLT_DBG, mac_reg); |
| 1500 | |
| 1501 | mac_reg = er32(RCTL); |
| 1502 | mac_reg |= E1000_RCTL_SECRC; |
| 1503 | ew32(RCTL, mac_reg); |
| 1504 | |
| 1505 | ret_val = e1000e_read_kmrn_reg(hw, |
| 1506 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 1507 | &data); |
| 1508 | if (ret_val) |
| 1509 | goto out; |
| 1510 | ret_val = e1000e_write_kmrn_reg(hw, |
| 1511 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 1512 | data | (1 << 0)); |
| 1513 | if (ret_val) |
| 1514 | goto out; |
| 1515 | ret_val = e1000e_read_kmrn_reg(hw, |
| 1516 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 1517 | &data); |
| 1518 | if (ret_val) |
| 1519 | goto out; |
| 1520 | data &= ~(0xF << 8); |
| 1521 | data |= (0xB << 8); |
| 1522 | ret_val = e1000e_write_kmrn_reg(hw, |
| 1523 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 1524 | data); |
| 1525 | if (ret_val) |
| 1526 | goto out; |
| 1527 | |
| 1528 | /* Enable jumbo frame workaround in the PHY */ |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1529 | e1e_rphy(hw, PHY_REG(769, 23), &data); |
| 1530 | data &= ~(0x7F << 5); |
| 1531 | data |= (0x37 << 5); |
| 1532 | ret_val = e1e_wphy(hw, PHY_REG(769, 23), data); |
| 1533 | if (ret_val) |
| 1534 | goto out; |
| 1535 | e1e_rphy(hw, PHY_REG(769, 16), &data); |
| 1536 | data &= ~(1 << 13); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1537 | ret_val = e1e_wphy(hw, PHY_REG(769, 16), data); |
| 1538 | if (ret_val) |
| 1539 | goto out; |
| 1540 | e1e_rphy(hw, PHY_REG(776, 20), &data); |
| 1541 | data &= ~(0x3FF << 2); |
| 1542 | data |= (0x1A << 2); |
| 1543 | ret_val = e1e_wphy(hw, PHY_REG(776, 20), data); |
| 1544 | if (ret_val) |
| 1545 | goto out; |
| 1546 | ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0xFE00); |
| 1547 | if (ret_val) |
| 1548 | goto out; |
| 1549 | e1e_rphy(hw, HV_PM_CTRL, &data); |
| 1550 | ret_val = e1e_wphy(hw, HV_PM_CTRL, data | (1 << 10)); |
| 1551 | if (ret_val) |
| 1552 | goto out; |
| 1553 | } else { |
| 1554 | /* Write MAC register values back to h/w defaults */ |
| 1555 | mac_reg = er32(FFLT_DBG); |
| 1556 | mac_reg &= ~(0xF << 14); |
| 1557 | ew32(FFLT_DBG, mac_reg); |
| 1558 | |
| 1559 | mac_reg = er32(RCTL); |
| 1560 | mac_reg &= ~E1000_RCTL_SECRC; |
Bruce Allan | a1ce647 | 2010-09-22 17:16:40 +0000 | [diff] [blame] | 1561 | ew32(RCTL, mac_reg); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1562 | |
| 1563 | ret_val = e1000e_read_kmrn_reg(hw, |
| 1564 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 1565 | &data); |
| 1566 | if (ret_val) |
| 1567 | goto out; |
| 1568 | ret_val = e1000e_write_kmrn_reg(hw, |
| 1569 | E1000_KMRNCTRLSTA_CTRL_OFFSET, |
| 1570 | data & ~(1 << 0)); |
| 1571 | if (ret_val) |
| 1572 | goto out; |
| 1573 | ret_val = e1000e_read_kmrn_reg(hw, |
| 1574 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 1575 | &data); |
| 1576 | if (ret_val) |
| 1577 | goto out; |
| 1578 | data &= ~(0xF << 8); |
| 1579 | data |= (0xB << 8); |
| 1580 | ret_val = e1000e_write_kmrn_reg(hw, |
| 1581 | E1000_KMRNCTRLSTA_HD_CTRL, |
| 1582 | data); |
| 1583 | if (ret_val) |
| 1584 | goto out; |
| 1585 | |
| 1586 | /* Write PHY register values back to h/w defaults */ |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1587 | e1e_rphy(hw, PHY_REG(769, 23), &data); |
| 1588 | data &= ~(0x7F << 5); |
| 1589 | ret_val = e1e_wphy(hw, PHY_REG(769, 23), data); |
| 1590 | if (ret_val) |
| 1591 | goto out; |
| 1592 | e1e_rphy(hw, PHY_REG(769, 16), &data); |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1593 | data |= (1 << 13); |
| 1594 | ret_val = e1e_wphy(hw, PHY_REG(769, 16), data); |
| 1595 | if (ret_val) |
| 1596 | goto out; |
| 1597 | e1e_rphy(hw, PHY_REG(776, 20), &data); |
| 1598 | data &= ~(0x3FF << 2); |
| 1599 | data |= (0x8 << 2); |
| 1600 | ret_val = e1e_wphy(hw, PHY_REG(776, 20), data); |
| 1601 | if (ret_val) |
| 1602 | goto out; |
| 1603 | ret_val = e1e_wphy(hw, PHY_REG(776, 23), 0x7E00); |
| 1604 | if (ret_val) |
| 1605 | goto out; |
| 1606 | e1e_rphy(hw, HV_PM_CTRL, &data); |
| 1607 | ret_val = e1e_wphy(hw, HV_PM_CTRL, data & ~(1 << 10)); |
| 1608 | if (ret_val) |
| 1609 | goto out; |
| 1610 | } |
| 1611 | |
| 1612 | /* re-enable Rx path after enabling/disabling workaround */ |
| 1613 | ret_val = e1e_wphy(hw, PHY_REG(769, 20), phy_reg & ~(1 << 14)); |
| 1614 | |
| 1615 | out: |
| 1616 | return ret_val; |
| 1617 | } |
| 1618 | |
| 1619 | /** |
| 1620 | * e1000_lv_phy_workarounds_ich8lan - A series of Phy workarounds to be |
| 1621 | * done after every PHY reset. |
| 1622 | **/ |
| 1623 | static s32 e1000_lv_phy_workarounds_ich8lan(struct e1000_hw *hw) |
| 1624 | { |
| 1625 | s32 ret_val = 0; |
| 1626 | |
| 1627 | if (hw->mac.type != e1000_pch2lan) |
| 1628 | goto out; |
| 1629 | |
| 1630 | /* Set MDIO slow mode before any other MDIO access */ |
| 1631 | ret_val = e1000_set_mdio_slow_mode_hv(hw); |
| 1632 | |
| 1633 | out: |
| 1634 | return ret_val; |
| 1635 | } |
| 1636 | |
| 1637 | /** |
Bruce Allan | 831bd2e | 2010-09-22 17:16:18 +0000 | [diff] [blame] | 1638 | * e1000_k1_gig_workaround_lv - K1 Si workaround |
| 1639 | * @hw: pointer to the HW structure |
| 1640 | * |
| 1641 | * Workaround to set the K1 beacon duration for 82579 parts |
| 1642 | **/ |
| 1643 | static s32 e1000_k1_workaround_lv(struct e1000_hw *hw) |
| 1644 | { |
| 1645 | s32 ret_val = 0; |
| 1646 | u16 status_reg = 0; |
| 1647 | u32 mac_reg; |
| 1648 | |
| 1649 | if (hw->mac.type != e1000_pch2lan) |
| 1650 | goto out; |
| 1651 | |
| 1652 | /* Set K1 beacon duration based on 1Gbps speed or otherwise */ |
| 1653 | ret_val = e1e_rphy(hw, HV_M_STATUS, &status_reg); |
| 1654 | if (ret_val) |
| 1655 | goto out; |
| 1656 | |
| 1657 | if ((status_reg & (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE)) |
| 1658 | == (HV_M_STATUS_LINK_UP | HV_M_STATUS_AUTONEG_COMPLETE)) { |
| 1659 | mac_reg = er32(FEXTNVM4); |
| 1660 | mac_reg &= ~E1000_FEXTNVM4_BEACON_DURATION_MASK; |
| 1661 | |
| 1662 | if (status_reg & HV_M_STATUS_SPEED_1000) |
| 1663 | mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_8USEC; |
| 1664 | else |
| 1665 | mac_reg |= E1000_FEXTNVM4_BEACON_DURATION_16USEC; |
| 1666 | |
| 1667 | ew32(FEXTNVM4, mac_reg); |
| 1668 | } |
| 1669 | |
| 1670 | out: |
| 1671 | return ret_val; |
| 1672 | } |
| 1673 | |
| 1674 | /** |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 1675 | * e1000_gate_hw_phy_config_ich8lan - disable PHY config via hardware |
| 1676 | * @hw: pointer to the HW structure |
| 1677 | * @gate: boolean set to true to gate, false to ungate |
| 1678 | * |
| 1679 | * Gate/ungate the automatic PHY configuration via hardware; perform |
| 1680 | * the configuration via software instead. |
| 1681 | **/ |
| 1682 | static void e1000_gate_hw_phy_config_ich8lan(struct e1000_hw *hw, bool gate) |
| 1683 | { |
| 1684 | u32 extcnf_ctrl; |
| 1685 | |
| 1686 | if (hw->mac.type != e1000_pch2lan) |
| 1687 | return; |
| 1688 | |
| 1689 | extcnf_ctrl = er32(EXTCNF_CTRL); |
| 1690 | |
| 1691 | if (gate) |
| 1692 | extcnf_ctrl |= E1000_EXTCNF_CTRL_GATE_PHY_CFG; |
| 1693 | else |
| 1694 | extcnf_ctrl &= ~E1000_EXTCNF_CTRL_GATE_PHY_CFG; |
| 1695 | |
| 1696 | ew32(EXTCNF_CTRL, extcnf_ctrl); |
| 1697 | return; |
| 1698 | } |
| 1699 | |
| 1700 | /** |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 1701 | * e1000_lan_init_done_ich8lan - Check for PHY config completion |
| 1702 | * @hw: pointer to the HW structure |
| 1703 | * |
| 1704 | * Check the appropriate indication the MAC has finished configuring the |
| 1705 | * PHY after a software reset. |
| 1706 | **/ |
| 1707 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw) |
| 1708 | { |
| 1709 | u32 data, loop = E1000_ICH8_LAN_INIT_TIMEOUT; |
| 1710 | |
| 1711 | /* Wait for basic configuration completes before proceeding */ |
| 1712 | do { |
| 1713 | data = er32(STATUS); |
| 1714 | data &= E1000_STATUS_LAN_INIT_DONE; |
| 1715 | udelay(100); |
| 1716 | } while ((!data) && --loop); |
| 1717 | |
| 1718 | /* |
| 1719 | * If basic configuration is incomplete before the above loop |
| 1720 | * count reaches 0, loading the configuration from NVM will |
| 1721 | * leave the PHY in a bad state possibly resulting in no link. |
| 1722 | */ |
| 1723 | if (loop == 0) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1724 | e_dbg("LAN_INIT_DONE not set, increase timeout\n"); |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 1725 | |
| 1726 | /* Clear the Init Done bit for the next init event */ |
| 1727 | data = er32(STATUS); |
| 1728 | data &= ~E1000_STATUS_LAN_INIT_DONE; |
| 1729 | ew32(STATUS, data); |
| 1730 | } |
| 1731 | |
| 1732 | /** |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1733 | * e1000_post_phy_reset_ich8lan - Perform steps required after a PHY reset |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1734 | * @hw: pointer to the HW structure |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1735 | **/ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1736 | static s32 e1000_post_phy_reset_ich8lan(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1737 | { |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1738 | s32 ret_val = 0; |
| 1739 | u16 reg; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1740 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1741 | if (e1000_check_reset_block(hw)) |
| 1742 | goto out; |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 1743 | |
Bruce Allan | 5f3eed6 | 2010-09-22 17:15:54 +0000 | [diff] [blame] | 1744 | /* Allow time for h/w to get to quiescent state after reset */ |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 1745 | usleep_range(10000, 20000); |
Bruce Allan | 5f3eed6 | 2010-09-22 17:15:54 +0000 | [diff] [blame] | 1746 | |
Bruce Allan | fddaa1a | 2010-01-13 01:52:49 +0000 | [diff] [blame] | 1747 | /* Perform any necessary post-reset workarounds */ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1748 | switch (hw->mac.type) { |
| 1749 | case e1000_pchlan: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1750 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); |
| 1751 | if (ret_val) |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1752 | goto out; |
| 1753 | break; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 1754 | case e1000_pch2lan: |
| 1755 | ret_val = e1000_lv_phy_workarounds_ich8lan(hw); |
| 1756 | if (ret_val) |
| 1757 | goto out; |
| 1758 | break; |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1759 | default: |
| 1760 | break; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1761 | } |
| 1762 | |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 1763 | /* Clear the host wakeup bit after lcd reset */ |
| 1764 | if (hw->mac.type >= e1000_pchlan) { |
| 1765 | e1e_rphy(hw, BM_PORT_GEN_CFG, ®); |
| 1766 | reg &= ~BM_WUC_HOST_WU_BIT; |
| 1767 | e1e_wphy(hw, BM_PORT_GEN_CFG, reg); |
| 1768 | } |
Bruce Allan | db2932e | 2009-10-26 11:22:47 +0000 | [diff] [blame] | 1769 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1770 | /* Configure the LCD with the extended configuration region in NVM */ |
| 1771 | ret_val = e1000_sw_lcd_config_ich8lan(hw); |
| 1772 | if (ret_val) |
| 1773 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1774 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1775 | /* Configure the LCD with the OEM bits in NVM */ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1776 | ret_val = e1000_oem_bits_config_ich8lan(hw, true); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1777 | |
Bruce Allan | 1effb45 | 2011-02-25 06:58:03 +0000 | [diff] [blame] | 1778 | if (hw->mac.type == e1000_pch2lan) { |
| 1779 | /* Ungate automatic PHY configuration on non-managed 82579 */ |
| 1780 | if (!(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) { |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 1781 | usleep_range(10000, 20000); |
Bruce Allan | 1effb45 | 2011-02-25 06:58:03 +0000 | [diff] [blame] | 1782 | e1000_gate_hw_phy_config_ich8lan(hw, false); |
| 1783 | } |
| 1784 | |
| 1785 | /* Set EEE LPI Update Timer to 200usec */ |
| 1786 | ret_val = hw->phy.ops.acquire(hw); |
| 1787 | if (ret_val) |
| 1788 | goto out; |
| 1789 | ret_val = hw->phy.ops.write_reg_locked(hw, I82579_EMI_ADDR, |
| 1790 | I82579_LPI_UPDATE_TIMER); |
| 1791 | if (ret_val) |
| 1792 | goto release; |
| 1793 | ret_val = hw->phy.ops.write_reg_locked(hw, I82579_EMI_DATA, |
| 1794 | 0x1387); |
| 1795 | release: |
| 1796 | hw->phy.ops.release(hw); |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 1797 | } |
| 1798 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 1799 | out: |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1800 | return ret_val; |
| 1801 | } |
| 1802 | |
| 1803 | /** |
| 1804 | * e1000_phy_hw_reset_ich8lan - Performs a PHY reset |
| 1805 | * @hw: pointer to the HW structure |
| 1806 | * |
| 1807 | * Resets the PHY |
| 1808 | * This is a function pointer entry point called by drivers |
| 1809 | * or other shared routines. |
| 1810 | **/ |
| 1811 | static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw) |
| 1812 | { |
| 1813 | s32 ret_val = 0; |
| 1814 | |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 1815 | /* Gate automatic PHY configuration by hardware on non-managed 82579 */ |
| 1816 | if ((hw->mac.type == e1000_pch2lan) && |
| 1817 | !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) |
| 1818 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
| 1819 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 1820 | ret_val = e1000e_phy_hw_reset_generic(hw); |
| 1821 | if (ret_val) |
| 1822 | goto out; |
| 1823 | |
| 1824 | ret_val = e1000_post_phy_reset_ich8lan(hw); |
| 1825 | |
| 1826 | out: |
| 1827 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | /** |
Bruce Allan | fa2ce13 | 2009-10-26 11:23:25 +0000 | [diff] [blame] | 1831 | * e1000_set_lplu_state_pchlan - Set Low Power Link Up state |
| 1832 | * @hw: pointer to the HW structure |
| 1833 | * @active: true to enable LPLU, false to disable |
| 1834 | * |
| 1835 | * Sets the LPLU state according to the active flag. For PCH, if OEM write |
| 1836 | * bit are disabled in the NVM, writing the LPLU bits in the MAC will not set |
| 1837 | * the phy speed. This function will manually set the LPLU bit and restart |
| 1838 | * auto-neg as hw would do. D3 and D0 LPLU will call the same function |
| 1839 | * since it configures the same bit. |
| 1840 | **/ |
| 1841 | static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active) |
| 1842 | { |
| 1843 | s32 ret_val = 0; |
| 1844 | u16 oem_reg; |
| 1845 | |
| 1846 | ret_val = e1e_rphy(hw, HV_OEM_BITS, &oem_reg); |
| 1847 | if (ret_val) |
| 1848 | goto out; |
| 1849 | |
| 1850 | if (active) |
| 1851 | oem_reg |= HV_OEM_BITS_LPLU; |
| 1852 | else |
| 1853 | oem_reg &= ~HV_OEM_BITS_LPLU; |
| 1854 | |
| 1855 | oem_reg |= HV_OEM_BITS_RESTART_AN; |
| 1856 | ret_val = e1e_wphy(hw, HV_OEM_BITS, oem_reg); |
| 1857 | |
| 1858 | out: |
| 1859 | return ret_val; |
| 1860 | } |
| 1861 | |
| 1862 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1863 | * e1000_set_d0_lplu_state_ich8lan - Set Low Power Linkup D0 state |
| 1864 | * @hw: pointer to the HW structure |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 1865 | * @active: true to enable LPLU, false to disable |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1866 | * |
| 1867 | * Sets the LPLU D0 state according to the active flag. When |
| 1868 | * activating LPLU this function also disables smart speed |
| 1869 | * and vice versa. LPLU will not be activated unless the |
| 1870 | * device autonegotiation advertisement meets standards of |
| 1871 | * either 10 or 10/100 or 10/100/1000 at all duplexes. |
| 1872 | * This is a function pointer entry point only called by |
| 1873 | * PHY setup routines. |
| 1874 | **/ |
| 1875 | static s32 e1000_set_d0_lplu_state_ich8lan(struct e1000_hw *hw, bool active) |
| 1876 | { |
| 1877 | struct e1000_phy_info *phy = &hw->phy; |
| 1878 | u32 phy_ctrl; |
| 1879 | s32 ret_val = 0; |
| 1880 | u16 data; |
| 1881 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 1882 | if (phy->type == e1000_phy_ife) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1883 | return ret_val; |
| 1884 | |
| 1885 | phy_ctrl = er32(PHY_CTRL); |
| 1886 | |
| 1887 | if (active) { |
| 1888 | phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU; |
| 1889 | ew32(PHY_CTRL, phy_ctrl); |
| 1890 | |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 1891 | if (phy->type != e1000_phy_igp_3) |
| 1892 | return 0; |
| 1893 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1894 | /* |
| 1895 | * Call gig speed drop workaround on LPLU before accessing |
| 1896 | * any PHY registers |
| 1897 | */ |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 1898 | if (hw->mac.type == e1000_ich8lan) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1899 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 1900 | |
| 1901 | /* When LPLU is enabled, we should disable SmartSpeed */ |
| 1902 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data); |
| 1903 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 1904 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data); |
| 1905 | if (ret_val) |
| 1906 | return ret_val; |
| 1907 | } else { |
| 1908 | phy_ctrl &= ~E1000_PHY_CTRL_D0A_LPLU; |
| 1909 | ew32(PHY_CTRL, phy_ctrl); |
| 1910 | |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 1911 | if (phy->type != e1000_phy_igp_3) |
| 1912 | return 0; |
| 1913 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1914 | /* |
| 1915 | * LPLU and SmartSpeed are mutually exclusive. LPLU is used |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1916 | * during Dx states where the power conservation is most |
| 1917 | * important. During driver activity we should enable |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1918 | * SmartSpeed, so performance is maintained. |
| 1919 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1920 | if (phy->smart_speed == e1000_smart_speed_on) { |
| 1921 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1922 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1923 | if (ret_val) |
| 1924 | return ret_val; |
| 1925 | |
| 1926 | data |= IGP01E1000_PSCFR_SMART_SPEED; |
| 1927 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1928 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1929 | if (ret_val) |
| 1930 | return ret_val; |
| 1931 | } else if (phy->smart_speed == e1000_smart_speed_off) { |
| 1932 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1933 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1934 | if (ret_val) |
| 1935 | return ret_val; |
| 1936 | |
| 1937 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 1938 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1939 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1940 | if (ret_val) |
| 1941 | return ret_val; |
| 1942 | } |
| 1943 | } |
| 1944 | |
| 1945 | return 0; |
| 1946 | } |
| 1947 | |
| 1948 | /** |
| 1949 | * e1000_set_d3_lplu_state_ich8lan - Set Low Power Linkup D3 state |
| 1950 | * @hw: pointer to the HW structure |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 1951 | * @active: true to enable LPLU, false to disable |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1952 | * |
| 1953 | * Sets the LPLU D3 state according to the active flag. When |
| 1954 | * activating LPLU this function also disables smart speed |
| 1955 | * and vice versa. LPLU will not be activated unless the |
| 1956 | * device autonegotiation advertisement meets standards of |
| 1957 | * either 10 or 10/100 or 10/100/1000 at all duplexes. |
| 1958 | * This is a function pointer entry point only called by |
| 1959 | * PHY setup routines. |
| 1960 | **/ |
| 1961 | static s32 e1000_set_d3_lplu_state_ich8lan(struct e1000_hw *hw, bool active) |
| 1962 | { |
| 1963 | struct e1000_phy_info *phy = &hw->phy; |
| 1964 | u32 phy_ctrl; |
| 1965 | s32 ret_val; |
| 1966 | u16 data; |
| 1967 | |
| 1968 | phy_ctrl = er32(PHY_CTRL); |
| 1969 | |
| 1970 | if (!active) { |
| 1971 | phy_ctrl &= ~E1000_PHY_CTRL_NOND0A_LPLU; |
| 1972 | ew32(PHY_CTRL, phy_ctrl); |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 1973 | |
| 1974 | if (phy->type != e1000_phy_igp_3) |
| 1975 | return 0; |
| 1976 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1977 | /* |
| 1978 | * LPLU and SmartSpeed are mutually exclusive. LPLU is used |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1979 | * during Dx states where the power conservation is most |
| 1980 | * important. During driver activity we should enable |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1981 | * SmartSpeed, so performance is maintained. |
| 1982 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1983 | if (phy->smart_speed == e1000_smart_speed_on) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1984 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 1985 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1986 | if (ret_val) |
| 1987 | return ret_val; |
| 1988 | |
| 1989 | data |= IGP01E1000_PSCFR_SMART_SPEED; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1990 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 1991 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1992 | if (ret_val) |
| 1993 | return ret_val; |
| 1994 | } else if (phy->smart_speed == e1000_smart_speed_off) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1995 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 1996 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1997 | if (ret_val) |
| 1998 | return ret_val; |
| 1999 | |
| 2000 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2001 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
| 2002 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2003 | if (ret_val) |
| 2004 | return ret_val; |
| 2005 | } |
| 2006 | } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) || |
| 2007 | (phy->autoneg_advertised == E1000_ALL_NOT_GIG) || |
| 2008 | (phy->autoneg_advertised == E1000_ALL_10_SPEED)) { |
| 2009 | phy_ctrl |= E1000_PHY_CTRL_NOND0A_LPLU; |
| 2010 | ew32(PHY_CTRL, phy_ctrl); |
| 2011 | |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2012 | if (phy->type != e1000_phy_igp_3) |
| 2013 | return 0; |
| 2014 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2015 | /* |
| 2016 | * Call gig speed drop workaround on LPLU before accessing |
| 2017 | * any PHY registers |
| 2018 | */ |
Bruce Allan | 60f1292 | 2009-07-01 13:28:14 +0000 | [diff] [blame] | 2019 | if (hw->mac.type == e1000_ich8lan) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2020 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 2021 | |
| 2022 | /* When LPLU is enabled, we should disable SmartSpeed */ |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2023 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2024 | if (ret_val) |
| 2025 | return ret_val; |
| 2026 | |
| 2027 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2028 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2029 | } |
| 2030 | |
| 2031 | return 0; |
| 2032 | } |
| 2033 | |
| 2034 | /** |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2035 | * e1000_valid_nvm_bank_detect_ich8lan - finds out the valid bank 0 or 1 |
| 2036 | * @hw: pointer to the HW structure |
| 2037 | * @bank: pointer to the variable that returns the active bank |
| 2038 | * |
| 2039 | * Reads signature byte from the NVM using the flash access registers. |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2040 | * Word 0x13 bits 15:14 = 10b indicate a valid signature for that bank. |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2041 | **/ |
| 2042 | static s32 e1000_valid_nvm_bank_detect_ich8lan(struct e1000_hw *hw, u32 *bank) |
| 2043 | { |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2044 | u32 eecd; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2045 | struct e1000_nvm_info *nvm = &hw->nvm; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2046 | u32 bank1_offset = nvm->flash_bank_size * sizeof(u16); |
| 2047 | u32 act_offset = E1000_ICH_NVM_SIG_WORD * 2 + 1; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2048 | u8 sig_byte = 0; |
| 2049 | s32 ret_val = 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2050 | |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2051 | switch (hw->mac.type) { |
| 2052 | case e1000_ich8lan: |
| 2053 | case e1000_ich9lan: |
| 2054 | eecd = er32(EECD); |
| 2055 | if ((eecd & E1000_EECD_SEC1VAL_VALID_MASK) == |
| 2056 | E1000_EECD_SEC1VAL_VALID_MASK) { |
| 2057 | if (eecd & E1000_EECD_SEC1VAL) |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2058 | *bank = 1; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2059 | else |
| 2060 | *bank = 0; |
| 2061 | |
| 2062 | return 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2063 | } |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2064 | e_dbg("Unable to determine valid NVM bank via EEC - " |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2065 | "reading flash signature\n"); |
| 2066 | /* fall-thru */ |
| 2067 | default: |
| 2068 | /* set bank to 0 in case flash read fails */ |
| 2069 | *bank = 0; |
| 2070 | |
| 2071 | /* Check bank 0 */ |
| 2072 | ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset, |
| 2073 | &sig_byte); |
| 2074 | if (ret_val) |
| 2075 | return ret_val; |
| 2076 | if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) == |
| 2077 | E1000_ICH_NVM_SIG_VALUE) { |
| 2078 | *bank = 0; |
| 2079 | return 0; |
| 2080 | } |
| 2081 | |
| 2082 | /* Check bank 1 */ |
| 2083 | ret_val = e1000_read_flash_byte_ich8lan(hw, act_offset + |
| 2084 | bank1_offset, |
| 2085 | &sig_byte); |
| 2086 | if (ret_val) |
| 2087 | return ret_val; |
| 2088 | if ((sig_byte & E1000_ICH_NVM_VALID_SIG_MASK) == |
| 2089 | E1000_ICH_NVM_SIG_VALUE) { |
| 2090 | *bank = 1; |
| 2091 | return 0; |
| 2092 | } |
| 2093 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2094 | e_dbg("ERROR: No valid NVM bank present\n"); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2095 | return -E1000_ERR_NVM; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2096 | } |
| 2097 | |
| 2098 | return 0; |
| 2099 | } |
| 2100 | |
| 2101 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2102 | * e1000_read_nvm_ich8lan - Read word(s) from the NVM |
| 2103 | * @hw: pointer to the HW structure |
| 2104 | * @offset: The offset (in bytes) of the word(s) to read. |
| 2105 | * @words: Size of data to read in words |
| 2106 | * @data: Pointer to the word(s) to read at offset. |
| 2107 | * |
| 2108 | * Reads a word(s) from the NVM using the flash access registers. |
| 2109 | **/ |
| 2110 | static s32 e1000_read_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words, |
| 2111 | u16 *data) |
| 2112 | { |
| 2113 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 2114 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
| 2115 | u32 act_offset; |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2116 | s32 ret_val = 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2117 | u32 bank = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2118 | u16 i, word; |
| 2119 | |
| 2120 | if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) || |
| 2121 | (words == 0)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2122 | e_dbg("nvm parameter(s) out of bounds\n"); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2123 | ret_val = -E1000_ERR_NVM; |
| 2124 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2125 | } |
| 2126 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2127 | nvm->ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2128 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2129 | ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank); |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2130 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2131 | e_dbg("Could not detect valid bank, assuming bank 0\n"); |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2132 | bank = 0; |
| 2133 | } |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2134 | |
| 2135 | act_offset = (bank) ? nvm->flash_bank_size : 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2136 | act_offset += offset; |
| 2137 | |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2138 | ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2139 | for (i = 0; i < words; i++) { |
| 2140 | if ((dev_spec->shadow_ram) && |
| 2141 | (dev_spec->shadow_ram[offset+i].modified)) { |
| 2142 | data[i] = dev_spec->shadow_ram[offset+i].value; |
| 2143 | } else { |
| 2144 | ret_val = e1000_read_flash_word_ich8lan(hw, |
| 2145 | act_offset + i, |
| 2146 | &word); |
| 2147 | if (ret_val) |
| 2148 | break; |
| 2149 | data[i] = word; |
| 2150 | } |
| 2151 | } |
| 2152 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2153 | nvm->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2154 | |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2155 | out: |
| 2156 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2157 | e_dbg("NVM read error: %d\n", ret_val); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2158 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2159 | return ret_val; |
| 2160 | } |
| 2161 | |
| 2162 | /** |
| 2163 | * e1000_flash_cycle_init_ich8lan - Initialize flash |
| 2164 | * @hw: pointer to the HW structure |
| 2165 | * |
| 2166 | * This function does initial flash setup so that a new read/write/erase cycle |
| 2167 | * can be started. |
| 2168 | **/ |
| 2169 | static s32 e1000_flash_cycle_init_ich8lan(struct e1000_hw *hw) |
| 2170 | { |
| 2171 | union ich8_hws_flash_status hsfsts; |
| 2172 | s32 ret_val = -E1000_ERR_NVM; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2173 | |
| 2174 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2175 | |
| 2176 | /* Check if the flash descriptor is valid */ |
| 2177 | if (hsfsts.hsf_status.fldesvalid == 0) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2178 | e_dbg("Flash descriptor invalid. " |
Joe Perches | 2c73e1f | 2010-03-26 20:16:59 +0000 | [diff] [blame] | 2179 | "SW Sequencing must be used.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2180 | return -E1000_ERR_NVM; |
| 2181 | } |
| 2182 | |
| 2183 | /* Clear FCERR and DAEL in hw status by writing 1 */ |
| 2184 | hsfsts.hsf_status.flcerr = 1; |
| 2185 | hsfsts.hsf_status.dael = 1; |
| 2186 | |
| 2187 | ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2188 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2189 | /* |
| 2190 | * Either we should have a hardware SPI cycle in progress |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2191 | * bit to check against, in order to start a new cycle or |
| 2192 | * FDONE bit should be changed in the hardware so that it |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 2193 | * is 1 after hardware reset, which can then be used as an |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2194 | * indication whether a cycle is in progress or has been |
| 2195 | * completed. |
| 2196 | */ |
| 2197 | |
| 2198 | if (hsfsts.hsf_status.flcinprog == 0) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2199 | /* |
| 2200 | * There is no cycle running at present, |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 2201 | * so we can start a cycle. |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2202 | * Begin by setting Flash Cycle Done. |
| 2203 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2204 | hsfsts.hsf_status.flcdone = 1; |
| 2205 | ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2206 | ret_val = 0; |
| 2207 | } else { |
Bruce Allan | 90da066 | 2011-01-06 07:02:53 +0000 | [diff] [blame] | 2208 | s32 i = 0; |
| 2209 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2210 | /* |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 2211 | * Otherwise poll for sometime so the current |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2212 | * cycle has a chance to end before giving up. |
| 2213 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2214 | for (i = 0; i < ICH_FLASH_READ_COMMAND_TIMEOUT; i++) { |
| 2215 | hsfsts.regval = __er16flash(hw, ICH_FLASH_HSFSTS); |
| 2216 | if (hsfsts.hsf_status.flcinprog == 0) { |
| 2217 | ret_val = 0; |
| 2218 | break; |
| 2219 | } |
| 2220 | udelay(1); |
| 2221 | } |
| 2222 | if (ret_val == 0) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2223 | /* |
| 2224 | * Successful in waiting for previous cycle to timeout, |
| 2225 | * now set the Flash Cycle Done. |
| 2226 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2227 | hsfsts.hsf_status.flcdone = 1; |
| 2228 | ew16flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2229 | } else { |
Joe Perches | 2c73e1f | 2010-03-26 20:16:59 +0000 | [diff] [blame] | 2230 | e_dbg("Flash controller busy, cannot get access\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2231 | } |
| 2232 | } |
| 2233 | |
| 2234 | return ret_val; |
| 2235 | } |
| 2236 | |
| 2237 | /** |
| 2238 | * e1000_flash_cycle_ich8lan - Starts flash cycle (read/write/erase) |
| 2239 | * @hw: pointer to the HW structure |
| 2240 | * @timeout: maximum time to wait for completion |
| 2241 | * |
| 2242 | * This function starts a flash cycle and waits for its completion. |
| 2243 | **/ |
| 2244 | static s32 e1000_flash_cycle_ich8lan(struct e1000_hw *hw, u32 timeout) |
| 2245 | { |
| 2246 | union ich8_hws_flash_ctrl hsflctl; |
| 2247 | union ich8_hws_flash_status hsfsts; |
| 2248 | s32 ret_val = -E1000_ERR_NVM; |
| 2249 | u32 i = 0; |
| 2250 | |
| 2251 | /* Start a cycle by writing 1 in Flash Cycle Go in Hw Flash Control */ |
| 2252 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 2253 | hsflctl.hsf_ctrl.flcgo = 1; |
| 2254 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 2255 | |
| 2256 | /* wait till FDONE bit is set to 1 */ |
| 2257 | do { |
| 2258 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2259 | if (hsfsts.hsf_status.flcdone == 1) |
| 2260 | break; |
| 2261 | udelay(1); |
| 2262 | } while (i++ < timeout); |
| 2263 | |
| 2264 | if (hsfsts.hsf_status.flcdone == 1 && hsfsts.hsf_status.flcerr == 0) |
| 2265 | return 0; |
| 2266 | |
| 2267 | return ret_val; |
| 2268 | } |
| 2269 | |
| 2270 | /** |
| 2271 | * e1000_read_flash_word_ich8lan - Read word from flash |
| 2272 | * @hw: pointer to the HW structure |
| 2273 | * @offset: offset to data location |
| 2274 | * @data: pointer to the location for storing the data |
| 2275 | * |
| 2276 | * Reads the flash word at offset into data. Offset is converted |
| 2277 | * to bytes before read. |
| 2278 | **/ |
| 2279 | static s32 e1000_read_flash_word_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2280 | u16 *data) |
| 2281 | { |
| 2282 | /* Must convert offset into bytes. */ |
| 2283 | offset <<= 1; |
| 2284 | |
| 2285 | return e1000_read_flash_data_ich8lan(hw, offset, 2, data); |
| 2286 | } |
| 2287 | |
| 2288 | /** |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2289 | * e1000_read_flash_byte_ich8lan - Read byte from flash |
| 2290 | * @hw: pointer to the HW structure |
| 2291 | * @offset: The offset of the byte to read. |
| 2292 | * @data: Pointer to a byte to store the value read. |
| 2293 | * |
| 2294 | * Reads a single byte from the NVM using the flash access registers. |
| 2295 | **/ |
| 2296 | static s32 e1000_read_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2297 | u8 *data) |
| 2298 | { |
| 2299 | s32 ret_val; |
| 2300 | u16 word = 0; |
| 2301 | |
| 2302 | ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word); |
| 2303 | if (ret_val) |
| 2304 | return ret_val; |
| 2305 | |
| 2306 | *data = (u8)word; |
| 2307 | |
| 2308 | return 0; |
| 2309 | } |
| 2310 | |
| 2311 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2312 | * e1000_read_flash_data_ich8lan - Read byte or word from NVM |
| 2313 | * @hw: pointer to the HW structure |
| 2314 | * @offset: The offset (in bytes) of the byte or word to read. |
| 2315 | * @size: Size of data to read, 1=byte 2=word |
| 2316 | * @data: Pointer to the word to store the value read. |
| 2317 | * |
| 2318 | * Reads a byte or word from the NVM using the flash access registers. |
| 2319 | **/ |
| 2320 | static s32 e1000_read_flash_data_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2321 | u8 size, u16 *data) |
| 2322 | { |
| 2323 | union ich8_hws_flash_status hsfsts; |
| 2324 | union ich8_hws_flash_ctrl hsflctl; |
| 2325 | u32 flash_linear_addr; |
| 2326 | u32 flash_data = 0; |
| 2327 | s32 ret_val = -E1000_ERR_NVM; |
| 2328 | u8 count = 0; |
| 2329 | |
| 2330 | if (size < 1 || size > 2 || offset > ICH_FLASH_LINEAR_ADDR_MASK) |
| 2331 | return -E1000_ERR_NVM; |
| 2332 | |
| 2333 | flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) + |
| 2334 | hw->nvm.flash_base_addr; |
| 2335 | |
| 2336 | do { |
| 2337 | udelay(1); |
| 2338 | /* Steps */ |
| 2339 | ret_val = e1000_flash_cycle_init_ich8lan(hw); |
| 2340 | if (ret_val != 0) |
| 2341 | break; |
| 2342 | |
| 2343 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 2344 | /* 0b/1b corresponds to 1 or 2 byte size, respectively. */ |
| 2345 | hsflctl.hsf_ctrl.fldbcount = size - 1; |
| 2346 | hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_READ; |
| 2347 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 2348 | |
| 2349 | ew32flash(ICH_FLASH_FADDR, flash_linear_addr); |
| 2350 | |
| 2351 | ret_val = e1000_flash_cycle_ich8lan(hw, |
| 2352 | ICH_FLASH_READ_COMMAND_TIMEOUT); |
| 2353 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2354 | /* |
| 2355 | * Check if FCERR is set to 1, if set to 1, clear it |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2356 | * and try the whole sequence a few more times, else |
| 2357 | * read in (shift in) the Flash Data0, the order is |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2358 | * least significant byte first msb to lsb |
| 2359 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2360 | if (ret_val == 0) { |
| 2361 | flash_data = er32flash(ICH_FLASH_FDATA0); |
Bruce Allan | b1cdfea | 2010-12-11 05:53:47 +0000 | [diff] [blame] | 2362 | if (size == 1) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2363 | *data = (u8)(flash_data & 0x000000FF); |
Bruce Allan | b1cdfea | 2010-12-11 05:53:47 +0000 | [diff] [blame] | 2364 | else if (size == 2) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2365 | *data = (u16)(flash_data & 0x0000FFFF); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2366 | break; |
| 2367 | } else { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2368 | /* |
| 2369 | * If we've gotten here, then things are probably |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2370 | * completely hosed, but if the error condition is |
| 2371 | * detected, it won't hurt to give it another try... |
| 2372 | * ICH_FLASH_CYCLE_REPEAT_COUNT times. |
| 2373 | */ |
| 2374 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2375 | if (hsfsts.hsf_status.flcerr == 1) { |
| 2376 | /* Repeat for some time before giving up. */ |
| 2377 | continue; |
| 2378 | } else if (hsfsts.hsf_status.flcdone == 0) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2379 | e_dbg("Timeout error - flash cycle " |
Joe Perches | 2c73e1f | 2010-03-26 20:16:59 +0000 | [diff] [blame] | 2380 | "did not complete.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2381 | break; |
| 2382 | } |
| 2383 | } |
| 2384 | } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT); |
| 2385 | |
| 2386 | return ret_val; |
| 2387 | } |
| 2388 | |
| 2389 | /** |
| 2390 | * e1000_write_nvm_ich8lan - Write word(s) to the NVM |
| 2391 | * @hw: pointer to the HW structure |
| 2392 | * @offset: The offset (in bytes) of the word(s) to write. |
| 2393 | * @words: Size of data to write in words |
| 2394 | * @data: Pointer to the word(s) to write at offset. |
| 2395 | * |
| 2396 | * Writes a byte or word to the NVM using the flash access registers. |
| 2397 | **/ |
| 2398 | static s32 e1000_write_nvm_ich8lan(struct e1000_hw *hw, u16 offset, u16 words, |
| 2399 | u16 *data) |
| 2400 | { |
| 2401 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 2402 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2403 | u16 i; |
| 2404 | |
| 2405 | if ((offset >= nvm->word_size) || (words > nvm->word_size - offset) || |
| 2406 | (words == 0)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2407 | e_dbg("nvm parameter(s) out of bounds\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2408 | return -E1000_ERR_NVM; |
| 2409 | } |
| 2410 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2411 | nvm->ops.acquire(hw); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2412 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2413 | for (i = 0; i < words; i++) { |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 2414 | dev_spec->shadow_ram[offset+i].modified = true; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2415 | dev_spec->shadow_ram[offset+i].value = data[i]; |
| 2416 | } |
| 2417 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2418 | nvm->ops.release(hw); |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2419 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2420 | return 0; |
| 2421 | } |
| 2422 | |
| 2423 | /** |
| 2424 | * e1000_update_nvm_checksum_ich8lan - Update the checksum for NVM |
| 2425 | * @hw: pointer to the HW structure |
| 2426 | * |
| 2427 | * The NVM checksum is updated by calling the generic update_nvm_checksum, |
| 2428 | * which writes the checksum to the shadow ram. The changes in the shadow |
| 2429 | * ram are then committed to the EEPROM by processing each bank at a time |
| 2430 | * checking for the modified bit and writing only the pending changes. |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 2431 | * After a successful commit, the shadow ram is cleared and is ready for |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2432 | * future writes. |
| 2433 | **/ |
| 2434 | static s32 e1000_update_nvm_checksum_ich8lan(struct e1000_hw *hw) |
| 2435 | { |
| 2436 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 2437 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2438 | u32 i, act_offset, new_bank_offset, old_bank_offset, bank; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2439 | s32 ret_val; |
| 2440 | u16 data; |
| 2441 | |
| 2442 | ret_val = e1000e_update_nvm_checksum_generic(hw); |
| 2443 | if (ret_val) |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2444 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2445 | |
| 2446 | if (nvm->type != e1000_nvm_flash_sw) |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2447 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2448 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2449 | nvm->ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2450 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2451 | /* |
| 2452 | * We're writing to the opposite bank so if we're on bank 1, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2453 | * write to bank 0 etc. We also need to erase the segment that |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2454 | * is going to be written |
| 2455 | */ |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2456 | ret_val = e1000_valid_nvm_bank_detect_ich8lan(hw, &bank); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2457 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2458 | e_dbg("Could not detect valid bank, assuming bank 0\n"); |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2459 | bank = 0; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2460 | } |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2461 | |
| 2462 | if (bank == 0) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2463 | new_bank_offset = nvm->flash_bank_size; |
| 2464 | old_bank_offset = 0; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2465 | ret_val = e1000_erase_flash_bank_ich8lan(hw, 1); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2466 | if (ret_val) |
| 2467 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2468 | } else { |
| 2469 | old_bank_offset = nvm->flash_bank_size; |
| 2470 | new_bank_offset = 0; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2471 | ret_val = e1000_erase_flash_bank_ich8lan(hw, 0); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2472 | if (ret_val) |
| 2473 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2474 | } |
| 2475 | |
| 2476 | for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2477 | /* |
| 2478 | * Determine whether to write the value stored |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2479 | * in the other NVM bank or a modified value stored |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2480 | * in the shadow RAM |
| 2481 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2482 | if (dev_spec->shadow_ram[i].modified) { |
| 2483 | data = dev_spec->shadow_ram[i].value; |
| 2484 | } else { |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2485 | ret_val = e1000_read_flash_word_ich8lan(hw, i + |
| 2486 | old_bank_offset, |
| 2487 | &data); |
| 2488 | if (ret_val) |
| 2489 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2490 | } |
| 2491 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2492 | /* |
| 2493 | * If the word is 0x13, then make sure the signature bits |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2494 | * (15:14) are 11b until the commit has completed. |
| 2495 | * This will allow us to write 10b which indicates the |
| 2496 | * signature is valid. We want to do this after the write |
| 2497 | * has completed so that we don't mark the segment valid |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2498 | * while the write is still in progress |
| 2499 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2500 | if (i == E1000_ICH_NVM_SIG_WORD) |
| 2501 | data |= E1000_ICH_NVM_SIG_MASK; |
| 2502 | |
| 2503 | /* Convert offset to bytes. */ |
| 2504 | act_offset = (i + new_bank_offset) << 1; |
| 2505 | |
| 2506 | udelay(100); |
| 2507 | /* Write the bytes to the new bank. */ |
| 2508 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, |
| 2509 | act_offset, |
| 2510 | (u8)data); |
| 2511 | if (ret_val) |
| 2512 | break; |
| 2513 | |
| 2514 | udelay(100); |
| 2515 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, |
| 2516 | act_offset + 1, |
| 2517 | (u8)(data >> 8)); |
| 2518 | if (ret_val) |
| 2519 | break; |
| 2520 | } |
| 2521 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2522 | /* |
| 2523 | * Don't bother writing the segment valid bits if sector |
| 2524 | * programming failed. |
| 2525 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2526 | if (ret_val) { |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 2527 | /* Possibly read-only, see e1000e_write_protect_nvm_ich8lan() */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2528 | e_dbg("Flash commit failed.\n"); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2529 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2530 | } |
| 2531 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2532 | /* |
| 2533 | * Finally validate the new segment by setting bit 15:14 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2534 | * to 10b in word 0x13 , this can be done without an |
| 2535 | * erase as well since these bits are 11 to start with |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2536 | * and we need to change bit 14 to 0b |
| 2537 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2538 | act_offset = new_bank_offset + E1000_ICH_NVM_SIG_WORD; |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2539 | ret_val = e1000_read_flash_word_ich8lan(hw, act_offset, &data); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2540 | if (ret_val) |
| 2541 | goto release; |
| 2542 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2543 | data &= 0xBFFF; |
| 2544 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, |
| 2545 | act_offset * 2 + 1, |
| 2546 | (u8)(data >> 8)); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2547 | if (ret_val) |
| 2548 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2549 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2550 | /* |
| 2551 | * And invalidate the previously valid segment by setting |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2552 | * its signature word (0x13) high_byte to 0b. This can be |
| 2553 | * done without an erase because flash erase sets all bits |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2554 | * to 1's. We can write 1's to 0's without an erase |
| 2555 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2556 | act_offset = (old_bank_offset + E1000_ICH_NVM_SIG_WORD) * 2 + 1; |
| 2557 | ret_val = e1000_retry_write_flash_byte_ich8lan(hw, act_offset, 0); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2558 | if (ret_val) |
| 2559 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2560 | |
| 2561 | /* Great! Everything worked, we can now clear the cached entries. */ |
| 2562 | for (i = 0; i < E1000_ICH8_SHADOW_RAM_WORDS; i++) { |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 2563 | dev_spec->shadow_ram[i].modified = false; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2564 | dev_spec->shadow_ram[i].value = 0xFFFF; |
| 2565 | } |
| 2566 | |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2567 | release: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2568 | nvm->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2569 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2570 | /* |
| 2571 | * Reload the EEPROM, or else modifications will not appear |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2572 | * until after the next adapter reset. |
| 2573 | */ |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2574 | if (!ret_val) { |
| 2575 | e1000e_reload_nvm(hw); |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 2576 | usleep_range(10000, 20000); |
Bruce Allan | 9c5e209 | 2010-05-10 15:00:31 +0000 | [diff] [blame] | 2577 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2578 | |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2579 | out: |
| 2580 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2581 | e_dbg("NVM update error: %d\n", ret_val); |
Bruce Allan | e243455 | 2008-11-21 17:02:41 -0800 | [diff] [blame] | 2582 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2583 | return ret_val; |
| 2584 | } |
| 2585 | |
| 2586 | /** |
| 2587 | * e1000_validate_nvm_checksum_ich8lan - Validate EEPROM checksum |
| 2588 | * @hw: pointer to the HW structure |
| 2589 | * |
| 2590 | * Check to see if checksum needs to be fixed by reading bit 6 in word 0x19. |
| 2591 | * If the bit is 0, that the EEPROM had been modified, but the checksum was not |
| 2592 | * calculated, in which case we need to calculate the checksum and set bit 6. |
| 2593 | **/ |
| 2594 | static s32 e1000_validate_nvm_checksum_ich8lan(struct e1000_hw *hw) |
| 2595 | { |
| 2596 | s32 ret_val; |
| 2597 | u16 data; |
| 2598 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2599 | /* |
| 2600 | * Read 0x19 and check bit 6. If this bit is 0, the checksum |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2601 | * needs to be fixed. This bit is an indication that the NVM |
| 2602 | * was prepared by OEM software and did not calculate the |
| 2603 | * checksum...a likely scenario. |
| 2604 | */ |
| 2605 | ret_val = e1000_read_nvm(hw, 0x19, 1, &data); |
| 2606 | if (ret_val) |
| 2607 | return ret_val; |
| 2608 | |
| 2609 | if ((data & 0x40) == 0) { |
| 2610 | data |= 0x40; |
| 2611 | ret_val = e1000_write_nvm(hw, 0x19, 1, &data); |
| 2612 | if (ret_val) |
| 2613 | return ret_val; |
| 2614 | ret_val = e1000e_update_nvm_checksum(hw); |
| 2615 | if (ret_val) |
| 2616 | return ret_val; |
| 2617 | } |
| 2618 | |
| 2619 | return e1000e_validate_nvm_checksum_generic(hw); |
| 2620 | } |
| 2621 | |
| 2622 | /** |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 2623 | * e1000e_write_protect_nvm_ich8lan - Make the NVM read-only |
| 2624 | * @hw: pointer to the HW structure |
| 2625 | * |
| 2626 | * To prevent malicious write/erase of the NVM, set it to be read-only |
| 2627 | * so that the hardware ignores all write/erase cycles of the NVM via |
| 2628 | * the flash control registers. The shadow-ram copy of the NVM will |
| 2629 | * still be updated, however any updates to this copy will not stick |
| 2630 | * across driver reloads. |
| 2631 | **/ |
| 2632 | void e1000e_write_protect_nvm_ich8lan(struct e1000_hw *hw) |
| 2633 | { |
Bruce Allan | ca15df5 | 2009-10-26 11:23:43 +0000 | [diff] [blame] | 2634 | struct e1000_nvm_info *nvm = &hw->nvm; |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 2635 | union ich8_flash_protected_range pr0; |
| 2636 | union ich8_hws_flash_status hsfsts; |
| 2637 | u32 gfpreg; |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 2638 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2639 | nvm->ops.acquire(hw); |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 2640 | |
| 2641 | gfpreg = er32flash(ICH_FLASH_GFPREG); |
| 2642 | |
| 2643 | /* Write-protect GbE Sector of NVM */ |
| 2644 | pr0.regval = er32flash(ICH_FLASH_PR0); |
| 2645 | pr0.range.base = gfpreg & FLASH_GFPREG_BASE_MASK; |
| 2646 | pr0.range.limit = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK); |
| 2647 | pr0.range.wpe = true; |
| 2648 | ew32flash(ICH_FLASH_PR0, pr0.regval); |
| 2649 | |
| 2650 | /* |
| 2651 | * Lock down a subset of GbE Flash Control Registers, e.g. |
| 2652 | * PR0 to prevent the write-protection from being lifted. |
| 2653 | * Once FLOCKDN is set, the registers protected by it cannot |
| 2654 | * be written until FLOCKDN is cleared by a hardware reset. |
| 2655 | */ |
| 2656 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2657 | hsfsts.hsf_status.flockdn = true; |
| 2658 | ew32flash(ICH_FLASH_HSFSTS, hsfsts.regval); |
| 2659 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2660 | nvm->ops.release(hw); |
Bruce Allan | 4a77035 | 2008-10-01 17:18:35 -0700 | [diff] [blame] | 2661 | } |
| 2662 | |
| 2663 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2664 | * e1000_write_flash_data_ich8lan - Writes bytes to the NVM |
| 2665 | * @hw: pointer to the HW structure |
| 2666 | * @offset: The offset (in bytes) of the byte/word to read. |
| 2667 | * @size: Size of data to read, 1=byte 2=word |
| 2668 | * @data: The byte(s) to write to the NVM. |
| 2669 | * |
| 2670 | * Writes one/two bytes to the NVM using the flash access registers. |
| 2671 | **/ |
| 2672 | static s32 e1000_write_flash_data_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2673 | u8 size, u16 data) |
| 2674 | { |
| 2675 | union ich8_hws_flash_status hsfsts; |
| 2676 | union ich8_hws_flash_ctrl hsflctl; |
| 2677 | u32 flash_linear_addr; |
| 2678 | u32 flash_data = 0; |
| 2679 | s32 ret_val; |
| 2680 | u8 count = 0; |
| 2681 | |
| 2682 | if (size < 1 || size > 2 || data > size * 0xff || |
| 2683 | offset > ICH_FLASH_LINEAR_ADDR_MASK) |
| 2684 | return -E1000_ERR_NVM; |
| 2685 | |
| 2686 | flash_linear_addr = (ICH_FLASH_LINEAR_ADDR_MASK & offset) + |
| 2687 | hw->nvm.flash_base_addr; |
| 2688 | |
| 2689 | do { |
| 2690 | udelay(1); |
| 2691 | /* Steps */ |
| 2692 | ret_val = e1000_flash_cycle_init_ich8lan(hw); |
| 2693 | if (ret_val) |
| 2694 | break; |
| 2695 | |
| 2696 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 2697 | /* 0b/1b corresponds to 1 or 2 byte size, respectively. */ |
| 2698 | hsflctl.hsf_ctrl.fldbcount = size -1; |
| 2699 | hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_WRITE; |
| 2700 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 2701 | |
| 2702 | ew32flash(ICH_FLASH_FADDR, flash_linear_addr); |
| 2703 | |
| 2704 | if (size == 1) |
| 2705 | flash_data = (u32)data & 0x00FF; |
| 2706 | else |
| 2707 | flash_data = (u32)data; |
| 2708 | |
| 2709 | ew32flash(ICH_FLASH_FDATA0, flash_data); |
| 2710 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2711 | /* |
| 2712 | * check if FCERR is set to 1 , if set to 1, clear it |
| 2713 | * and try the whole sequence a few more times else done |
| 2714 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2715 | ret_val = e1000_flash_cycle_ich8lan(hw, |
| 2716 | ICH_FLASH_WRITE_COMMAND_TIMEOUT); |
| 2717 | if (!ret_val) |
| 2718 | break; |
| 2719 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2720 | /* |
| 2721 | * If we're here, then things are most likely |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2722 | * completely hosed, but if the error condition |
| 2723 | * is detected, it won't hurt to give it another |
| 2724 | * try...ICH_FLASH_CYCLE_REPEAT_COUNT times. |
| 2725 | */ |
| 2726 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2727 | if (hsfsts.hsf_status.flcerr == 1) |
| 2728 | /* Repeat for some time before giving up. */ |
| 2729 | continue; |
| 2730 | if (hsfsts.hsf_status.flcdone == 0) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2731 | e_dbg("Timeout error - flash cycle " |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2732 | "did not complete."); |
| 2733 | break; |
| 2734 | } |
| 2735 | } while (count++ < ICH_FLASH_CYCLE_REPEAT_COUNT); |
| 2736 | |
| 2737 | return ret_val; |
| 2738 | } |
| 2739 | |
| 2740 | /** |
| 2741 | * e1000_write_flash_byte_ich8lan - Write a single byte to NVM |
| 2742 | * @hw: pointer to the HW structure |
| 2743 | * @offset: The index of the byte to read. |
| 2744 | * @data: The byte to write to the NVM. |
| 2745 | * |
| 2746 | * Writes a single byte to the NVM using the flash access registers. |
| 2747 | **/ |
| 2748 | static s32 e1000_write_flash_byte_ich8lan(struct e1000_hw *hw, u32 offset, |
| 2749 | u8 data) |
| 2750 | { |
| 2751 | u16 word = (u16)data; |
| 2752 | |
| 2753 | return e1000_write_flash_data_ich8lan(hw, offset, 1, word); |
| 2754 | } |
| 2755 | |
| 2756 | /** |
| 2757 | * e1000_retry_write_flash_byte_ich8lan - Writes a single byte to NVM |
| 2758 | * @hw: pointer to the HW structure |
| 2759 | * @offset: The offset of the byte to write. |
| 2760 | * @byte: The byte to write to the NVM. |
| 2761 | * |
| 2762 | * Writes a single byte to the NVM using the flash access registers. |
| 2763 | * Goes through a retry algorithm before giving up. |
| 2764 | **/ |
| 2765 | static s32 e1000_retry_write_flash_byte_ich8lan(struct e1000_hw *hw, |
| 2766 | u32 offset, u8 byte) |
| 2767 | { |
| 2768 | s32 ret_val; |
| 2769 | u16 program_retries; |
| 2770 | |
| 2771 | ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte); |
| 2772 | if (!ret_val) |
| 2773 | return ret_val; |
| 2774 | |
| 2775 | for (program_retries = 0; program_retries < 100; program_retries++) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2776 | e_dbg("Retrying Byte %2.2X at offset %u\n", byte, offset); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2777 | udelay(100); |
| 2778 | ret_val = e1000_write_flash_byte_ich8lan(hw, offset, byte); |
| 2779 | if (!ret_val) |
| 2780 | break; |
| 2781 | } |
| 2782 | if (program_retries == 100) |
| 2783 | return -E1000_ERR_NVM; |
| 2784 | |
| 2785 | return 0; |
| 2786 | } |
| 2787 | |
| 2788 | /** |
| 2789 | * e1000_erase_flash_bank_ich8lan - Erase a bank (4k) from NVM |
| 2790 | * @hw: pointer to the HW structure |
| 2791 | * @bank: 0 for first bank, 1 for second bank, etc. |
| 2792 | * |
| 2793 | * Erases the bank specified. Each bank is a 4k block. Banks are 0 based. |
| 2794 | * bank N is 4096 * N + flash_reg_addr. |
| 2795 | **/ |
| 2796 | static s32 e1000_erase_flash_bank_ich8lan(struct e1000_hw *hw, u32 bank) |
| 2797 | { |
| 2798 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 2799 | union ich8_hws_flash_status hsfsts; |
| 2800 | union ich8_hws_flash_ctrl hsflctl; |
| 2801 | u32 flash_linear_addr; |
| 2802 | /* bank size is in 16bit words - adjust to bytes */ |
| 2803 | u32 flash_bank_size = nvm->flash_bank_size * 2; |
| 2804 | s32 ret_val; |
| 2805 | s32 count = 0; |
Bruce Allan | a708dd8 | 2009-11-20 23:28:37 +0000 | [diff] [blame] | 2806 | s32 j, iteration, sector_size; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2807 | |
| 2808 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2809 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2810 | /* |
| 2811 | * Determine HW Sector size: Read BERASE bits of hw flash status |
| 2812 | * register |
| 2813 | * 00: The Hw sector is 256 bytes, hence we need to erase 16 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2814 | * consecutive sectors. The start index for the nth Hw sector |
| 2815 | * can be calculated as = bank * 4096 + n * 256 |
| 2816 | * 01: The Hw sector is 4K bytes, hence we need to erase 1 sector. |
| 2817 | * The start index for the nth Hw sector can be calculated |
| 2818 | * as = bank * 4096 |
| 2819 | * 10: The Hw sector is 8K bytes, nth sector = bank * 8192 |
| 2820 | * (ich9 only, otherwise error condition) |
| 2821 | * 11: The Hw sector is 64K bytes, nth sector = bank * 65536 |
| 2822 | */ |
| 2823 | switch (hsfsts.hsf_status.berasesz) { |
| 2824 | case 0: |
| 2825 | /* Hw sector size 256 */ |
| 2826 | sector_size = ICH_FLASH_SEG_SIZE_256; |
| 2827 | iteration = flash_bank_size / ICH_FLASH_SEG_SIZE_256; |
| 2828 | break; |
| 2829 | case 1: |
| 2830 | sector_size = ICH_FLASH_SEG_SIZE_4K; |
Bruce Allan | 28c9195 | 2009-07-01 13:28:32 +0000 | [diff] [blame] | 2831 | iteration = 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2832 | break; |
| 2833 | case 2: |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2834 | sector_size = ICH_FLASH_SEG_SIZE_8K; |
| 2835 | iteration = 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2836 | break; |
| 2837 | case 3: |
| 2838 | sector_size = ICH_FLASH_SEG_SIZE_64K; |
Bruce Allan | 28c9195 | 2009-07-01 13:28:32 +0000 | [diff] [blame] | 2839 | iteration = 1; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2840 | break; |
| 2841 | default: |
| 2842 | return -E1000_ERR_NVM; |
| 2843 | } |
| 2844 | |
| 2845 | /* Start with the base address, then add the sector offset. */ |
| 2846 | flash_linear_addr = hw->nvm.flash_base_addr; |
Bruce Allan | 148675a | 2009-08-07 07:41:56 +0000 | [diff] [blame] | 2847 | flash_linear_addr += (bank) ? flash_bank_size : 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2848 | |
| 2849 | for (j = 0; j < iteration ; j++) { |
| 2850 | do { |
| 2851 | /* Steps */ |
| 2852 | ret_val = e1000_flash_cycle_init_ich8lan(hw); |
| 2853 | if (ret_val) |
| 2854 | return ret_val; |
| 2855 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2856 | /* |
| 2857 | * Write a value 11 (block Erase) in Flash |
| 2858 | * Cycle field in hw flash control |
| 2859 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2860 | hsflctl.regval = er16flash(ICH_FLASH_HSFCTL); |
| 2861 | hsflctl.hsf_ctrl.flcycle = ICH_CYCLE_ERASE; |
| 2862 | ew16flash(ICH_FLASH_HSFCTL, hsflctl.regval); |
| 2863 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2864 | /* |
| 2865 | * Write the last 24 bits of an index within the |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2866 | * block into Flash Linear address field in Flash |
| 2867 | * Address. |
| 2868 | */ |
| 2869 | flash_linear_addr += (j * sector_size); |
| 2870 | ew32flash(ICH_FLASH_FADDR, flash_linear_addr); |
| 2871 | |
| 2872 | ret_val = e1000_flash_cycle_ich8lan(hw, |
| 2873 | ICH_FLASH_ERASE_COMMAND_TIMEOUT); |
| 2874 | if (ret_val == 0) |
| 2875 | break; |
| 2876 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2877 | /* |
| 2878 | * Check if FCERR is set to 1. If 1, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2879 | * clear it and try the whole sequence |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2880 | * a few more times else Done |
| 2881 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2882 | hsfsts.regval = er16flash(ICH_FLASH_HSFSTS); |
| 2883 | if (hsfsts.hsf_status.flcerr == 1) |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2884 | /* repeat for some time before giving up */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2885 | continue; |
| 2886 | else if (hsfsts.hsf_status.flcdone == 0) |
| 2887 | return ret_val; |
| 2888 | } while (++count < ICH_FLASH_CYCLE_REPEAT_COUNT); |
| 2889 | } |
| 2890 | |
| 2891 | return 0; |
| 2892 | } |
| 2893 | |
| 2894 | /** |
| 2895 | * e1000_valid_led_default_ich8lan - Set the default LED settings |
| 2896 | * @hw: pointer to the HW structure |
| 2897 | * @data: Pointer to the LED settings |
| 2898 | * |
| 2899 | * Reads the LED default settings from the NVM to data. If the NVM LED |
| 2900 | * settings is all 0's or F's, set the LED default to a valid LED default |
| 2901 | * setting. |
| 2902 | **/ |
| 2903 | static s32 e1000_valid_led_default_ich8lan(struct e1000_hw *hw, u16 *data) |
| 2904 | { |
| 2905 | s32 ret_val; |
| 2906 | |
| 2907 | ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data); |
| 2908 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2909 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2910 | return ret_val; |
| 2911 | } |
| 2912 | |
| 2913 | if (*data == ID_LED_RESERVED_0000 || |
| 2914 | *data == ID_LED_RESERVED_FFFF) |
| 2915 | *data = ID_LED_DEFAULT_ICH8LAN; |
| 2916 | |
| 2917 | return 0; |
| 2918 | } |
| 2919 | |
| 2920 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2921 | * e1000_id_led_init_pchlan - store LED configurations |
| 2922 | * @hw: pointer to the HW structure |
| 2923 | * |
| 2924 | * PCH does not control LEDs via the LEDCTL register, rather it uses |
| 2925 | * the PHY LED configuration register. |
| 2926 | * |
| 2927 | * PCH also does not have an "always on" or "always off" mode which |
| 2928 | * complicates the ID feature. Instead of using the "on" mode to indicate |
| 2929 | * in ledctl_mode2 the LEDs to use for ID (see e1000e_id_led_init()), |
| 2930 | * use "link_up" mode. The LEDs will still ID on request if there is no |
| 2931 | * link based on logic in e1000_led_[on|off]_pchlan(). |
| 2932 | **/ |
| 2933 | static s32 e1000_id_led_init_pchlan(struct e1000_hw *hw) |
| 2934 | { |
| 2935 | struct e1000_mac_info *mac = &hw->mac; |
| 2936 | s32 ret_val; |
| 2937 | const u32 ledctl_on = E1000_LEDCTL_MODE_LINK_UP; |
| 2938 | const u32 ledctl_off = E1000_LEDCTL_MODE_LINK_UP | E1000_PHY_LED0_IVRT; |
| 2939 | u16 data, i, temp, shift; |
| 2940 | |
| 2941 | /* Get default ID LED modes */ |
| 2942 | ret_val = hw->nvm.ops.valid_led_default(hw, &data); |
| 2943 | if (ret_val) |
| 2944 | goto out; |
| 2945 | |
| 2946 | mac->ledctl_default = er32(LEDCTL); |
| 2947 | mac->ledctl_mode1 = mac->ledctl_default; |
| 2948 | mac->ledctl_mode2 = mac->ledctl_default; |
| 2949 | |
| 2950 | for (i = 0; i < 4; i++) { |
| 2951 | temp = (data >> (i << 2)) & E1000_LEDCTL_LED0_MODE_MASK; |
| 2952 | shift = (i * 5); |
| 2953 | switch (temp) { |
| 2954 | case ID_LED_ON1_DEF2: |
| 2955 | case ID_LED_ON1_ON2: |
| 2956 | case ID_LED_ON1_OFF2: |
| 2957 | mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift); |
| 2958 | mac->ledctl_mode1 |= (ledctl_on << shift); |
| 2959 | break; |
| 2960 | case ID_LED_OFF1_DEF2: |
| 2961 | case ID_LED_OFF1_ON2: |
| 2962 | case ID_LED_OFF1_OFF2: |
| 2963 | mac->ledctl_mode1 &= ~(E1000_PHY_LED0_MASK << shift); |
| 2964 | mac->ledctl_mode1 |= (ledctl_off << shift); |
| 2965 | break; |
| 2966 | default: |
| 2967 | /* Do nothing */ |
| 2968 | break; |
| 2969 | } |
| 2970 | switch (temp) { |
| 2971 | case ID_LED_DEF1_ON2: |
| 2972 | case ID_LED_ON1_ON2: |
| 2973 | case ID_LED_OFF1_ON2: |
| 2974 | mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift); |
| 2975 | mac->ledctl_mode2 |= (ledctl_on << shift); |
| 2976 | break; |
| 2977 | case ID_LED_DEF1_OFF2: |
| 2978 | case ID_LED_ON1_OFF2: |
| 2979 | case ID_LED_OFF1_OFF2: |
| 2980 | mac->ledctl_mode2 &= ~(E1000_PHY_LED0_MASK << shift); |
| 2981 | mac->ledctl_mode2 |= (ledctl_off << shift); |
| 2982 | break; |
| 2983 | default: |
| 2984 | /* Do nothing */ |
| 2985 | break; |
| 2986 | } |
| 2987 | } |
| 2988 | |
| 2989 | out: |
| 2990 | return ret_val; |
| 2991 | } |
| 2992 | |
| 2993 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2994 | * e1000_get_bus_info_ich8lan - Get/Set the bus type and width |
| 2995 | * @hw: pointer to the HW structure |
| 2996 | * |
| 2997 | * ICH8 use the PCI Express bus, but does not contain a PCI Express Capability |
| 2998 | * register, so the the bus width is hard coded. |
| 2999 | **/ |
| 3000 | static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw) |
| 3001 | { |
| 3002 | struct e1000_bus_info *bus = &hw->bus; |
| 3003 | s32 ret_val; |
| 3004 | |
| 3005 | ret_val = e1000e_get_bus_info_pcie(hw); |
| 3006 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3007 | /* |
| 3008 | * ICH devices are "PCI Express"-ish. They have |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3009 | * a configuration space, but do not contain |
| 3010 | * PCI Express Capability registers, so bus width |
| 3011 | * must be hardcoded. |
| 3012 | */ |
| 3013 | if (bus->width == e1000_bus_width_unknown) |
| 3014 | bus->width = e1000_bus_width_pcie_x1; |
| 3015 | |
| 3016 | return ret_val; |
| 3017 | } |
| 3018 | |
| 3019 | /** |
| 3020 | * e1000_reset_hw_ich8lan - Reset the hardware |
| 3021 | * @hw: pointer to the HW structure |
| 3022 | * |
| 3023 | * Does a full reset of the hardware which includes a reset of the PHY and |
| 3024 | * MAC. |
| 3025 | **/ |
| 3026 | static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) |
| 3027 | { |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 3028 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
Bruce Allan | db2932e | 2009-10-26 11:22:47 +0000 | [diff] [blame] | 3029 | u16 reg; |
Bruce Allan | dd93f95 | 2011-01-06 14:29:48 +0000 | [diff] [blame] | 3030 | u32 ctrl, kab; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3031 | s32 ret_val; |
| 3032 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3033 | /* |
| 3034 | * Prevent the PCI-E bus from sticking if there is no TLP connection |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3035 | * on the last TLP read/write transaction when MAC is reset. |
| 3036 | */ |
| 3037 | ret_val = e1000e_disable_pcie_master(hw); |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3038 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3039 | e_dbg("PCI-E Master disable polling has failed.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3040 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3041 | e_dbg("Masking off all interrupts\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3042 | ew32(IMC, 0xffffffff); |
| 3043 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3044 | /* |
| 3045 | * Disable the Transmit and Receive units. Then delay to allow |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3046 | * any pending transactions to complete before we hit the MAC |
| 3047 | * with the global reset. |
| 3048 | */ |
| 3049 | ew32(RCTL, 0); |
| 3050 | ew32(TCTL, E1000_TCTL_PSP); |
| 3051 | e1e_flush(); |
| 3052 | |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 3053 | usleep_range(10000, 20000); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3054 | |
| 3055 | /* Workaround for ICH8 bit corruption issue in FIFO memory */ |
| 3056 | if (hw->mac.type == e1000_ich8lan) { |
| 3057 | /* Set Tx and Rx buffer allocation to 8k apiece. */ |
| 3058 | ew32(PBA, E1000_PBA_8K); |
| 3059 | /* Set Packet Buffer Size to 16k. */ |
| 3060 | ew32(PBS, E1000_PBS_16K); |
| 3061 | } |
| 3062 | |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 3063 | if (hw->mac.type == e1000_pchlan) { |
| 3064 | /* Save the NVM K1 bit setting*/ |
| 3065 | ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, ®); |
| 3066 | if (ret_val) |
| 3067 | return ret_val; |
| 3068 | |
| 3069 | if (reg & E1000_NVM_K1_ENABLE) |
| 3070 | dev_spec->nvm_k1_enabled = true; |
| 3071 | else |
| 3072 | dev_spec->nvm_k1_enabled = false; |
| 3073 | } |
| 3074 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3075 | ctrl = er32(CTRL); |
| 3076 | |
| 3077 | if (!e1000_check_reset_block(hw)) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3078 | /* |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3079 | * Full-chip reset requires MAC and PHY reset at the same |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3080 | * time to make sure the interface between MAC and the |
| 3081 | * external PHY is reset. |
| 3082 | */ |
| 3083 | ctrl |= E1000_CTRL_PHY_RST; |
Bruce Allan | 605c82b | 2010-09-22 17:17:01 +0000 | [diff] [blame] | 3084 | |
| 3085 | /* |
| 3086 | * Gate automatic PHY configuration by hardware on |
| 3087 | * non-managed 82579 |
| 3088 | */ |
| 3089 | if ((hw->mac.type == e1000_pch2lan) && |
| 3090 | !(er32(FWSM) & E1000_ICH_FWSM_FW_VALID)) |
| 3091 | e1000_gate_hw_phy_config_ich8lan(hw, true); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3092 | } |
| 3093 | ret_val = e1000_acquire_swflag_ich8lan(hw); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3094 | e_dbg("Issuing a global reset to ich8lan\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3095 | ew32(CTRL, (ctrl | E1000_CTRL_RST)); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame^] | 3096 | /* cannot issue a flush here because it hangs the hardware */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3097 | msleep(20); |
| 3098 | |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3099 | if (!ret_val) |
Bruce Allan | c5caf48 | 2011-05-13 07:19:53 +0000 | [diff] [blame] | 3100 | mutex_unlock(&swflag_mutex); |
Jesse Brandeburg | 37f4023 | 2008-10-02 16:33:20 -0700 | [diff] [blame] | 3101 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3102 | if (ctrl & E1000_CTRL_PHY_RST) { |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3103 | ret_val = hw->phy.ops.get_cfg_done(hw); |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3104 | if (ret_val) |
| 3105 | goto out; |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3106 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3107 | ret_val = e1000_post_phy_reset_ich8lan(hw); |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 3108 | if (ret_val) |
| 3109 | goto out; |
| 3110 | } |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3111 | |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 3112 | /* |
| 3113 | * For PCH, this write will make sure that any noise |
| 3114 | * will be detected as a CRC error and be dropped rather than show up |
| 3115 | * as a bad packet to the DMA engine. |
| 3116 | */ |
| 3117 | if (hw->mac.type == e1000_pchlan) |
| 3118 | ew32(CRC_OFFSET, 0x65656565); |
| 3119 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3120 | ew32(IMC, 0xffffffff); |
Bruce Allan | dd93f95 | 2011-01-06 14:29:48 +0000 | [diff] [blame] | 3121 | er32(ICR); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3122 | |
| 3123 | kab = er32(KABGTXD); |
| 3124 | kab |= E1000_KABGTXD_BGSQLBIAS; |
| 3125 | ew32(KABGTXD, kab); |
| 3126 | |
Bruce Allan | f523d21 | 2009-10-29 13:45:45 +0000 | [diff] [blame] | 3127 | out: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3128 | return ret_val; |
| 3129 | } |
| 3130 | |
| 3131 | /** |
| 3132 | * e1000_init_hw_ich8lan - Initialize the hardware |
| 3133 | * @hw: pointer to the HW structure |
| 3134 | * |
| 3135 | * Prepares the hardware for transmit and receive by doing the following: |
| 3136 | * - initialize hardware bits |
| 3137 | * - initialize LED identification |
| 3138 | * - setup receive address registers |
| 3139 | * - setup flow control |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3140 | * - setup transmit descriptors |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3141 | * - clear statistics |
| 3142 | **/ |
| 3143 | static s32 e1000_init_hw_ich8lan(struct e1000_hw *hw) |
| 3144 | { |
| 3145 | struct e1000_mac_info *mac = &hw->mac; |
| 3146 | u32 ctrl_ext, txdctl, snoop; |
| 3147 | s32 ret_val; |
| 3148 | u16 i; |
| 3149 | |
| 3150 | e1000_initialize_hw_bits_ich8lan(hw); |
| 3151 | |
| 3152 | /* Initialize identification LED */ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3153 | ret_val = mac->ops.id_led_init(hw); |
Bruce Allan | de39b75 | 2009-11-20 23:27:59 +0000 | [diff] [blame] | 3154 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3155 | e_dbg("Error initializing identification LED\n"); |
Bruce Allan | de39b75 | 2009-11-20 23:27:59 +0000 | [diff] [blame] | 3156 | /* This is not fatal and we should not stop init due to this */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3157 | |
| 3158 | /* Setup the receive address. */ |
| 3159 | e1000e_init_rx_addrs(hw, mac->rar_entry_count); |
| 3160 | |
| 3161 | /* Zero out the Multicast HASH table */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3162 | e_dbg("Zeroing the MTA\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3163 | for (i = 0; i < mac->mta_reg_count; i++) |
| 3164 | E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0); |
| 3165 | |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3166 | /* |
| 3167 | * The 82578 Rx buffer will stall if wakeup is enabled in host and |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 3168 | * the ME. Disable wakeup by clearing the host wakeup bit. |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3169 | * Reset the phy after disabling host wakeup to reset the Rx buffer. |
| 3170 | */ |
| 3171 | if (hw->phy.type == e1000_phy_82578) { |
Bruce Allan | 3ebfc7c | 2011-05-13 07:20:14 +0000 | [diff] [blame] | 3172 | e1e_rphy(hw, BM_PORT_GEN_CFG, &i); |
| 3173 | i &= ~BM_WUC_HOST_WU_BIT; |
| 3174 | e1e_wphy(hw, BM_PORT_GEN_CFG, i); |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3175 | ret_val = e1000_phy_hw_reset_ich8lan(hw); |
| 3176 | if (ret_val) |
| 3177 | return ret_val; |
| 3178 | } |
| 3179 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3180 | /* Setup link and flow control */ |
| 3181 | ret_val = e1000_setup_link_ich8lan(hw); |
| 3182 | |
| 3183 | /* Set the transmit descriptor write-back policy for both queues */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3184 | txdctl = er32(TXDCTL(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3185 | txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) | |
| 3186 | E1000_TXDCTL_FULL_TX_DESC_WB; |
| 3187 | txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) | |
| 3188 | E1000_TXDCTL_MAX_TX_DESC_PREFETCH; |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3189 | ew32(TXDCTL(0), txdctl); |
| 3190 | txdctl = er32(TXDCTL(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3191 | txdctl = (txdctl & ~E1000_TXDCTL_WTHRESH) | |
| 3192 | E1000_TXDCTL_FULL_TX_DESC_WB; |
| 3193 | txdctl = (txdctl & ~E1000_TXDCTL_PTHRESH) | |
| 3194 | E1000_TXDCTL_MAX_TX_DESC_PREFETCH; |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3195 | ew32(TXDCTL(1), txdctl); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3196 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3197 | /* |
| 3198 | * ICH8 has opposite polarity of no_snoop bits. |
| 3199 | * By default, we should use snoop behavior. |
| 3200 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3201 | if (mac->type == e1000_ich8lan) |
| 3202 | snoop = PCIE_ICH8_SNOOP_ALL; |
| 3203 | else |
| 3204 | snoop = (u32) ~(PCIE_NO_SNOOP_ALL); |
| 3205 | e1000e_set_pcie_no_snoop(hw, snoop); |
| 3206 | |
| 3207 | ctrl_ext = er32(CTRL_EXT); |
| 3208 | ctrl_ext |= E1000_CTRL_EXT_RO_DIS; |
| 3209 | ew32(CTRL_EXT, ctrl_ext); |
| 3210 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3211 | /* |
| 3212 | * Clear all of the statistics registers (clear on read). It is |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3213 | * important that we do this after we have tried to establish link |
| 3214 | * because the symbol error count will increment wildly if there |
| 3215 | * is no link. |
| 3216 | */ |
| 3217 | e1000_clear_hw_cntrs_ich8lan(hw); |
| 3218 | |
| 3219 | return 0; |
| 3220 | } |
| 3221 | /** |
| 3222 | * e1000_initialize_hw_bits_ich8lan - Initialize required hardware bits |
| 3223 | * @hw: pointer to the HW structure |
| 3224 | * |
| 3225 | * Sets/Clears required hardware bits necessary for correctly setting up the |
| 3226 | * hardware for transmit and receive. |
| 3227 | **/ |
| 3228 | static void e1000_initialize_hw_bits_ich8lan(struct e1000_hw *hw) |
| 3229 | { |
| 3230 | u32 reg; |
| 3231 | |
| 3232 | /* Extended Device Control */ |
| 3233 | reg = er32(CTRL_EXT); |
| 3234 | reg |= (1 << 22); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3235 | /* Enable PHY low-power state when MAC is at D3 w/o WoL */ |
| 3236 | if (hw->mac.type >= e1000_pchlan) |
| 3237 | reg |= E1000_CTRL_EXT_PHYPDEN; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3238 | ew32(CTRL_EXT, reg); |
| 3239 | |
| 3240 | /* Transmit Descriptor Control 0 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3241 | reg = er32(TXDCTL(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3242 | reg |= (1 << 22); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3243 | ew32(TXDCTL(0), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3244 | |
| 3245 | /* Transmit Descriptor Control 1 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3246 | reg = er32(TXDCTL(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3247 | reg |= (1 << 22); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3248 | ew32(TXDCTL(1), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3249 | |
| 3250 | /* Transmit Arbitration Control 0 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3251 | reg = er32(TARC(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3252 | if (hw->mac.type == e1000_ich8lan) |
| 3253 | reg |= (1 << 28) | (1 << 29); |
| 3254 | reg |= (1 << 23) | (1 << 24) | (1 << 26) | (1 << 27); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3255 | ew32(TARC(0), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3256 | |
| 3257 | /* Transmit Arbitration Control 1 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3258 | reg = er32(TARC(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3259 | if (er32(TCTL) & E1000_TCTL_MULR) |
| 3260 | reg &= ~(1 << 28); |
| 3261 | else |
| 3262 | reg |= (1 << 28); |
| 3263 | reg |= (1 << 24) | (1 << 26) | (1 << 30); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 3264 | ew32(TARC(1), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3265 | |
| 3266 | /* Device Status */ |
| 3267 | if (hw->mac.type == e1000_ich8lan) { |
| 3268 | reg = er32(STATUS); |
| 3269 | reg &= ~(1 << 31); |
| 3270 | ew32(STATUS, reg); |
| 3271 | } |
Jesse Brandeburg | a80483d | 2010-03-05 02:21:44 +0000 | [diff] [blame] | 3272 | |
| 3273 | /* |
| 3274 | * work-around descriptor data corruption issue during nfs v2 udp |
| 3275 | * traffic, just disable the nfs filtering capability |
| 3276 | */ |
| 3277 | reg = er32(RFCTL); |
| 3278 | reg |= (E1000_RFCTL_NFSW_DIS | E1000_RFCTL_NFSR_DIS); |
| 3279 | ew32(RFCTL, reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3280 | } |
| 3281 | |
| 3282 | /** |
| 3283 | * e1000_setup_link_ich8lan - Setup flow control and link settings |
| 3284 | * @hw: pointer to the HW structure |
| 3285 | * |
| 3286 | * Determines which flow control settings to use, then configures flow |
| 3287 | * control. Calls the appropriate media-specific link configuration |
| 3288 | * function. Assuming the adapter has a valid link partner, a valid link |
| 3289 | * should be established. Assumes the hardware has previously been reset |
| 3290 | * and the transmitter and receiver are not enabled. |
| 3291 | **/ |
| 3292 | static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw) |
| 3293 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3294 | s32 ret_val; |
| 3295 | |
| 3296 | if (e1000_check_reset_block(hw)) |
| 3297 | return 0; |
| 3298 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3299 | /* |
| 3300 | * ICH parts do not have a word in the NVM to determine |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3301 | * the default flow control setting, so we explicitly |
| 3302 | * set it to full. |
| 3303 | */ |
Bruce Allan | 37289d9 | 2009-06-02 11:29:37 +0000 | [diff] [blame] | 3304 | if (hw->fc.requested_mode == e1000_fc_default) { |
| 3305 | /* Workaround h/w hang when Tx flow control enabled */ |
| 3306 | if (hw->mac.type == e1000_pchlan) |
| 3307 | hw->fc.requested_mode = e1000_fc_rx_pause; |
| 3308 | else |
| 3309 | hw->fc.requested_mode = e1000_fc_full; |
| 3310 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3311 | |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 3312 | /* |
| 3313 | * Save off the requested flow control mode for use later. Depending |
| 3314 | * on the link partner's capabilities, we may or may not use this mode. |
| 3315 | */ |
| 3316 | hw->fc.current_mode = hw->fc.requested_mode; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3317 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3318 | e_dbg("After fix-ups FlowControl is now = %x\n", |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 3319 | hw->fc.current_mode); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3320 | |
| 3321 | /* Continue to configure the copper link. */ |
| 3322 | ret_val = e1000_setup_copper_link_ich8lan(hw); |
| 3323 | if (ret_val) |
| 3324 | return ret_val; |
| 3325 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 3326 | ew32(FCTTV, hw->fc.pause_time); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3327 | if ((hw->phy.type == e1000_phy_82578) || |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 3328 | (hw->phy.type == e1000_phy_82579) || |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3329 | (hw->phy.type == e1000_phy_82577)) { |
Bruce Allan | a305595 | 2010-05-10 15:02:12 +0000 | [diff] [blame] | 3330 | ew32(FCRTV_PCH, hw->fc.refresh_time); |
| 3331 | |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3332 | ret_val = e1e_wphy(hw, PHY_REG(BM_PORT_CTRL_PAGE, 27), |
| 3333 | hw->fc.pause_time); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3334 | if (ret_val) |
| 3335 | return ret_val; |
| 3336 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3337 | |
| 3338 | return e1000e_set_fc_watermarks(hw); |
| 3339 | } |
| 3340 | |
| 3341 | /** |
| 3342 | * e1000_setup_copper_link_ich8lan - Configure MAC/PHY interface |
| 3343 | * @hw: pointer to the HW structure |
| 3344 | * |
| 3345 | * Configures the kumeran interface to the PHY to wait the appropriate time |
| 3346 | * when polling the PHY, then call the generic setup_copper_link to finish |
| 3347 | * configuring the copper link. |
| 3348 | **/ |
| 3349 | static s32 e1000_setup_copper_link_ich8lan(struct e1000_hw *hw) |
| 3350 | { |
| 3351 | u32 ctrl; |
| 3352 | s32 ret_val; |
| 3353 | u16 reg_data; |
| 3354 | |
| 3355 | ctrl = er32(CTRL); |
| 3356 | ctrl |= E1000_CTRL_SLU; |
| 3357 | ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
| 3358 | ew32(CTRL, ctrl); |
| 3359 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3360 | /* |
| 3361 | * Set the mac to wait the maximum time between each iteration |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3362 | * and increase the max iterations when polling the phy; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3363 | * this fixes erroneous timeouts at 10Mbps. |
| 3364 | */ |
Bruce Allan | 0781895 | 2009-12-08 07:28:01 +0000 | [diff] [blame] | 3365 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_TIMEOUTS, 0xFFFF); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3366 | if (ret_val) |
| 3367 | return ret_val; |
Bruce Allan | 0781895 | 2009-12-08 07:28:01 +0000 | [diff] [blame] | 3368 | ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM, |
| 3369 | ®_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3370 | if (ret_val) |
| 3371 | return ret_val; |
| 3372 | reg_data |= 0x3F; |
Bruce Allan | 0781895 | 2009-12-08 07:28:01 +0000 | [diff] [blame] | 3373 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_INBAND_PARAM, |
| 3374 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3375 | if (ret_val) |
| 3376 | return ret_val; |
| 3377 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3378 | switch (hw->phy.type) { |
| 3379 | case e1000_phy_igp_3: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3380 | ret_val = e1000e_copper_link_setup_igp(hw); |
| 3381 | if (ret_val) |
| 3382 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3383 | break; |
| 3384 | case e1000_phy_bm: |
| 3385 | case e1000_phy_82578: |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3386 | ret_val = e1000e_copper_link_setup_m88(hw); |
| 3387 | if (ret_val) |
| 3388 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3389 | break; |
| 3390 | case e1000_phy_82577: |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 3391 | case e1000_phy_82579: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3392 | ret_val = e1000_copper_link_setup_82577(hw); |
| 3393 | if (ret_val) |
| 3394 | return ret_val; |
| 3395 | break; |
| 3396 | case e1000_phy_ife: |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3397 | ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, ®_data); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3398 | if (ret_val) |
| 3399 | return ret_val; |
| 3400 | |
| 3401 | reg_data &= ~IFE_PMC_AUTO_MDIX; |
| 3402 | |
| 3403 | switch (hw->phy.mdix) { |
| 3404 | case 1: |
| 3405 | reg_data &= ~IFE_PMC_FORCE_MDIX; |
| 3406 | break; |
| 3407 | case 2: |
| 3408 | reg_data |= IFE_PMC_FORCE_MDIX; |
| 3409 | break; |
| 3410 | case 0: |
| 3411 | default: |
| 3412 | reg_data |= IFE_PMC_AUTO_MDIX; |
| 3413 | break; |
| 3414 | } |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3415 | ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, reg_data); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3416 | if (ret_val) |
| 3417 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3418 | break; |
| 3419 | default: |
| 3420 | break; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3421 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3422 | return e1000e_setup_copper_link(hw); |
| 3423 | } |
| 3424 | |
| 3425 | /** |
| 3426 | * e1000_get_link_up_info_ich8lan - Get current link speed and duplex |
| 3427 | * @hw: pointer to the HW structure |
| 3428 | * @speed: pointer to store current link speed |
| 3429 | * @duplex: pointer to store the current link duplex |
| 3430 | * |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3431 | * Calls the generic get_speed_and_duplex to retrieve the current link |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3432 | * information and then calls the Kumeran lock loss workaround for links at |
| 3433 | * gigabit speeds. |
| 3434 | **/ |
| 3435 | static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed, |
| 3436 | u16 *duplex) |
| 3437 | { |
| 3438 | s32 ret_val; |
| 3439 | |
| 3440 | ret_val = e1000e_get_speed_and_duplex_copper(hw, speed, duplex); |
| 3441 | if (ret_val) |
| 3442 | return ret_val; |
| 3443 | |
| 3444 | if ((hw->mac.type == e1000_ich8lan) && |
| 3445 | (hw->phy.type == e1000_phy_igp_3) && |
| 3446 | (*speed == SPEED_1000)) { |
| 3447 | ret_val = e1000_kmrn_lock_loss_workaround_ich8lan(hw); |
| 3448 | } |
| 3449 | |
| 3450 | return ret_val; |
| 3451 | } |
| 3452 | |
| 3453 | /** |
| 3454 | * e1000_kmrn_lock_loss_workaround_ich8lan - Kumeran workaround |
| 3455 | * @hw: pointer to the HW structure |
| 3456 | * |
| 3457 | * Work-around for 82566 Kumeran PCS lock loss: |
| 3458 | * On link status change (i.e. PCI reset, speed change) and link is up and |
| 3459 | * speed is gigabit- |
| 3460 | * 0) if workaround is optionally disabled do nothing |
| 3461 | * 1) wait 1ms for Kumeran link to come up |
| 3462 | * 2) check Kumeran Diagnostic register PCS lock loss bit |
| 3463 | * 3) if not set the link is locked (all is good), otherwise... |
| 3464 | * 4) reset the PHY |
| 3465 | * 5) repeat up to 10 times |
| 3466 | * Note: this is only called for IGP3 copper when speed is 1gb. |
| 3467 | **/ |
| 3468 | static s32 e1000_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw) |
| 3469 | { |
| 3470 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
| 3471 | u32 phy_ctrl; |
| 3472 | s32 ret_val; |
| 3473 | u16 i, data; |
| 3474 | bool link; |
| 3475 | |
| 3476 | if (!dev_spec->kmrn_lock_loss_workaround_enabled) |
| 3477 | return 0; |
| 3478 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3479 | /* |
| 3480 | * Make sure link is up before proceeding. If not just return. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3481 | * Attempting this while link is negotiating fouled up link |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3482 | * stability |
| 3483 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3484 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 3485 | if (!link) |
| 3486 | return 0; |
| 3487 | |
| 3488 | for (i = 0; i < 10; i++) { |
| 3489 | /* read once to clear */ |
| 3490 | ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data); |
| 3491 | if (ret_val) |
| 3492 | return ret_val; |
| 3493 | /* and again to get new status */ |
| 3494 | ret_val = e1e_rphy(hw, IGP3_KMRN_DIAG, &data); |
| 3495 | if (ret_val) |
| 3496 | return ret_val; |
| 3497 | |
| 3498 | /* check for PCS lock */ |
| 3499 | if (!(data & IGP3_KMRN_DIAG_PCS_LOCK_LOSS)) |
| 3500 | return 0; |
| 3501 | |
| 3502 | /* Issue PHY reset */ |
| 3503 | e1000_phy_hw_reset(hw); |
| 3504 | mdelay(5); |
| 3505 | } |
| 3506 | /* Disable GigE link negotiation */ |
| 3507 | phy_ctrl = er32(PHY_CTRL); |
| 3508 | phy_ctrl |= (E1000_PHY_CTRL_GBE_DISABLE | |
| 3509 | E1000_PHY_CTRL_NOND0A_GBE_DISABLE); |
| 3510 | ew32(PHY_CTRL, phy_ctrl); |
| 3511 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3512 | /* |
| 3513 | * Call gig speed drop workaround on Gig disable before accessing |
| 3514 | * any PHY registers |
| 3515 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3516 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 3517 | |
| 3518 | /* unable to acquire PCS lock */ |
| 3519 | return -E1000_ERR_PHY; |
| 3520 | } |
| 3521 | |
| 3522 | /** |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3523 | * e1000_set_kmrn_lock_loss_workaround_ich8lan - Set Kumeran workaround state |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3524 | * @hw: pointer to the HW structure |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3525 | * @state: boolean value used to set the current Kumeran workaround state |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3526 | * |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 3527 | * If ICH8, set the current Kumeran workaround state (enabled - true |
| 3528 | * /disabled - false). |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3529 | **/ |
| 3530 | void e1000e_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw, |
| 3531 | bool state) |
| 3532 | { |
| 3533 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; |
| 3534 | |
| 3535 | if (hw->mac.type != e1000_ich8lan) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3536 | e_dbg("Workaround applies to ICH8 only.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3537 | return; |
| 3538 | } |
| 3539 | |
| 3540 | dev_spec->kmrn_lock_loss_workaround_enabled = state; |
| 3541 | } |
| 3542 | |
| 3543 | /** |
| 3544 | * e1000_ipg3_phy_powerdown_workaround_ich8lan - Power down workaround on D3 |
| 3545 | * @hw: pointer to the HW structure |
| 3546 | * |
| 3547 | * Workaround for 82566 power-down on D3 entry: |
| 3548 | * 1) disable gigabit link |
| 3549 | * 2) write VR power-down enable |
| 3550 | * 3) read it back |
| 3551 | * Continue if successful, else issue LCD reset and repeat |
| 3552 | **/ |
| 3553 | void e1000e_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw) |
| 3554 | { |
| 3555 | u32 reg; |
| 3556 | u16 data; |
| 3557 | u8 retry = 0; |
| 3558 | |
| 3559 | if (hw->phy.type != e1000_phy_igp_3) |
| 3560 | return; |
| 3561 | |
| 3562 | /* Try the workaround twice (if needed) */ |
| 3563 | do { |
| 3564 | /* Disable link */ |
| 3565 | reg = er32(PHY_CTRL); |
| 3566 | reg |= (E1000_PHY_CTRL_GBE_DISABLE | |
| 3567 | E1000_PHY_CTRL_NOND0A_GBE_DISABLE); |
| 3568 | ew32(PHY_CTRL, reg); |
| 3569 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 3570 | /* |
| 3571 | * Call gig speed drop workaround on Gig disable before |
| 3572 | * accessing any PHY registers |
| 3573 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3574 | if (hw->mac.type == e1000_ich8lan) |
| 3575 | e1000e_gig_downshift_workaround_ich8lan(hw); |
| 3576 | |
| 3577 | /* Write VR power-down enable */ |
| 3578 | e1e_rphy(hw, IGP3_VR_CTRL, &data); |
| 3579 | data &= ~IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK; |
| 3580 | e1e_wphy(hw, IGP3_VR_CTRL, data | IGP3_VR_CTRL_MODE_SHUTDOWN); |
| 3581 | |
| 3582 | /* Read it back and test */ |
| 3583 | e1e_rphy(hw, IGP3_VR_CTRL, &data); |
| 3584 | data &= IGP3_VR_CTRL_DEV_POWERDOWN_MODE_MASK; |
| 3585 | if ((data == IGP3_VR_CTRL_MODE_SHUTDOWN) || retry) |
| 3586 | break; |
| 3587 | |
| 3588 | /* Issue PHY reset and repeat at most one more time */ |
| 3589 | reg = er32(CTRL); |
| 3590 | ew32(CTRL, reg | E1000_CTRL_PHY_RST); |
| 3591 | retry++; |
| 3592 | } while (retry); |
| 3593 | } |
| 3594 | |
| 3595 | /** |
| 3596 | * e1000e_gig_downshift_workaround_ich8lan - WoL from S5 stops working |
| 3597 | * @hw: pointer to the HW structure |
| 3598 | * |
| 3599 | * Steps to take when dropping from 1Gb/s (eg. link cable removal (LSC), |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3600 | * LPLU, Gig disable, MDIC PHY reset): |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3601 | * 1) Set Kumeran Near-end loopback |
| 3602 | * 2) Clear Kumeran Near-end loopback |
| 3603 | * Should only be called for ICH8[m] devices with IGP_3 Phy. |
| 3604 | **/ |
| 3605 | void e1000e_gig_downshift_workaround_ich8lan(struct e1000_hw *hw) |
| 3606 | { |
| 3607 | s32 ret_val; |
| 3608 | u16 reg_data; |
| 3609 | |
| 3610 | if ((hw->mac.type != e1000_ich8lan) || |
| 3611 | (hw->phy.type != e1000_phy_igp_3)) |
| 3612 | return; |
| 3613 | |
| 3614 | ret_val = e1000e_read_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, |
| 3615 | ®_data); |
| 3616 | if (ret_val) |
| 3617 | return; |
| 3618 | reg_data |= E1000_KMRNCTRLSTA_DIAG_NELPBK; |
| 3619 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, |
| 3620 | reg_data); |
| 3621 | if (ret_val) |
| 3622 | return; |
| 3623 | reg_data &= ~E1000_KMRNCTRLSTA_DIAG_NELPBK; |
| 3624 | ret_val = e1000e_write_kmrn_reg(hw, E1000_KMRNCTRLSTA_DIAG_OFFSET, |
| 3625 | reg_data); |
| 3626 | } |
| 3627 | |
| 3628 | /** |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 3629 | * e1000_suspend_workarounds_ich8lan - workarounds needed during S0->Sx |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3630 | * @hw: pointer to the HW structure |
| 3631 | * |
| 3632 | * During S0 to Sx transition, it is possible the link remains at gig |
| 3633 | * instead of negotiating to a lower speed. Before going to Sx, set |
| 3634 | * 'LPLU Enabled' and 'Gig Disable' to force link speed negotiation |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 3635 | * to a lower speed. For PCH and newer parts, the OEM bits PHY register |
| 3636 | * (LED, GbE disable and LPLU configurations) also needs to be written. |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3637 | **/ |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 3638 | void e1000_suspend_workarounds_ich8lan(struct e1000_hw *hw) |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3639 | { |
| 3640 | u32 phy_ctrl; |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 3641 | s32 ret_val; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3642 | |
Bruce Allan | 17f085d | 2010-06-17 18:59:48 +0000 | [diff] [blame] | 3643 | phy_ctrl = er32(PHY_CTRL); |
| 3644 | phy_ctrl |= E1000_PHY_CTRL_D0A_LPLU | E1000_PHY_CTRL_GBE_DISABLE; |
| 3645 | ew32(PHY_CTRL, phy_ctrl); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3646 | |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 3647 | if (hw->mac.type >= e1000_pchlan) { |
Bruce Allan | ce54afd | 2010-11-24 06:01:41 +0000 | [diff] [blame] | 3648 | e1000_oem_bits_config_ich8lan(hw, false); |
Bruce Allan | 8395ae8 | 2010-09-22 17:15:08 +0000 | [diff] [blame] | 3649 | ret_val = hw->phy.ops.acquire(hw); |
| 3650 | if (ret_val) |
| 3651 | return; |
| 3652 | e1000_write_smbus_addr(hw); |
| 3653 | hw->phy.ops.release(hw); |
| 3654 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 3655 | } |
| 3656 | |
| 3657 | /** |
Bruce Allan | 99730e4 | 2011-05-13 07:19:48 +0000 | [diff] [blame] | 3658 | * e1000_resume_workarounds_pchlan - workarounds needed during Sx->S0 |
| 3659 | * @hw: pointer to the HW structure |
| 3660 | * |
| 3661 | * During Sx to S0 transitions on non-managed devices or managed devices |
| 3662 | * on which PHY resets are not blocked, if the PHY registers cannot be |
| 3663 | * accessed properly by the s/w toggle the LANPHYPC value to power cycle |
| 3664 | * the PHY. |
| 3665 | **/ |
| 3666 | void e1000_resume_workarounds_pchlan(struct e1000_hw *hw) |
| 3667 | { |
| 3668 | u32 fwsm; |
| 3669 | |
| 3670 | if (hw->mac.type != e1000_pch2lan) |
| 3671 | return; |
| 3672 | |
| 3673 | fwsm = er32(FWSM); |
| 3674 | if (!(fwsm & E1000_ICH_FWSM_FW_VALID) || !e1000_check_reset_block(hw)) { |
| 3675 | u16 phy_id1, phy_id2; |
| 3676 | s32 ret_val; |
| 3677 | |
| 3678 | ret_val = hw->phy.ops.acquire(hw); |
| 3679 | if (ret_val) { |
| 3680 | e_dbg("Failed to acquire PHY semaphore in resume\n"); |
| 3681 | return; |
| 3682 | } |
| 3683 | |
| 3684 | /* Test access to the PHY registers by reading the ID regs */ |
| 3685 | ret_val = hw->phy.ops.read_reg_locked(hw, PHY_ID1, &phy_id1); |
| 3686 | if (ret_val) |
| 3687 | goto release; |
| 3688 | ret_val = hw->phy.ops.read_reg_locked(hw, PHY_ID2, &phy_id2); |
| 3689 | if (ret_val) |
| 3690 | goto release; |
| 3691 | |
| 3692 | if (hw->phy.id == ((u32)(phy_id1 << 16) | |
| 3693 | (u32)(phy_id2 & PHY_REVISION_MASK))) |
| 3694 | goto release; |
| 3695 | |
| 3696 | e1000_toggle_lanphypc_value_ich8lan(hw); |
| 3697 | |
| 3698 | hw->phy.ops.release(hw); |
| 3699 | msleep(50); |
| 3700 | e1000_phy_hw_reset(hw); |
| 3701 | msleep(50); |
| 3702 | return; |
| 3703 | } |
| 3704 | |
| 3705 | release: |
| 3706 | hw->phy.ops.release(hw); |
| 3707 | |
| 3708 | return; |
| 3709 | } |
| 3710 | |
| 3711 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3712 | * e1000_cleanup_led_ich8lan - Restore the default LED operation |
| 3713 | * @hw: pointer to the HW structure |
| 3714 | * |
| 3715 | * Return the LED back to the default configuration. |
| 3716 | **/ |
| 3717 | static s32 e1000_cleanup_led_ich8lan(struct e1000_hw *hw) |
| 3718 | { |
| 3719 | if (hw->phy.type == e1000_phy_ife) |
| 3720 | return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, 0); |
| 3721 | |
| 3722 | ew32(LEDCTL, hw->mac.ledctl_default); |
| 3723 | return 0; |
| 3724 | } |
| 3725 | |
| 3726 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3727 | * e1000_led_on_ich8lan - Turn LEDs on |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3728 | * @hw: pointer to the HW structure |
| 3729 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3730 | * Turn on the LEDs. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3731 | **/ |
| 3732 | static s32 e1000_led_on_ich8lan(struct e1000_hw *hw) |
| 3733 | { |
| 3734 | if (hw->phy.type == e1000_phy_ife) |
| 3735 | return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, |
| 3736 | (IFE_PSCL_PROBE_MODE | IFE_PSCL_PROBE_LEDS_ON)); |
| 3737 | |
| 3738 | ew32(LEDCTL, hw->mac.ledctl_mode2); |
| 3739 | return 0; |
| 3740 | } |
| 3741 | |
| 3742 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3743 | * e1000_led_off_ich8lan - Turn LEDs off |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3744 | * @hw: pointer to the HW structure |
| 3745 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 3746 | * Turn off the LEDs. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3747 | **/ |
| 3748 | static s32 e1000_led_off_ich8lan(struct e1000_hw *hw) |
| 3749 | { |
| 3750 | if (hw->phy.type == e1000_phy_ife) |
| 3751 | return e1e_wphy(hw, IFE_PHY_SPECIAL_CONTROL_LED, |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3752 | (IFE_PSCL_PROBE_MODE | |
| 3753 | IFE_PSCL_PROBE_LEDS_OFF)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3754 | |
| 3755 | ew32(LEDCTL, hw->mac.ledctl_mode1); |
| 3756 | return 0; |
| 3757 | } |
| 3758 | |
| 3759 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3760 | * e1000_setup_led_pchlan - Configures SW controllable LED |
| 3761 | * @hw: pointer to the HW structure |
| 3762 | * |
| 3763 | * This prepares the SW controllable LED for use. |
| 3764 | **/ |
| 3765 | static s32 e1000_setup_led_pchlan(struct e1000_hw *hw) |
| 3766 | { |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3767 | return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_mode1); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3768 | } |
| 3769 | |
| 3770 | /** |
| 3771 | * e1000_cleanup_led_pchlan - Restore the default LED operation |
| 3772 | * @hw: pointer to the HW structure |
| 3773 | * |
| 3774 | * Return the LED back to the default configuration. |
| 3775 | **/ |
| 3776 | static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw) |
| 3777 | { |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3778 | return e1e_wphy(hw, HV_LED_CONFIG, (u16)hw->mac.ledctl_default); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3779 | } |
| 3780 | |
| 3781 | /** |
| 3782 | * e1000_led_on_pchlan - Turn LEDs on |
| 3783 | * @hw: pointer to the HW structure |
| 3784 | * |
| 3785 | * Turn on the LEDs. |
| 3786 | **/ |
| 3787 | static s32 e1000_led_on_pchlan(struct e1000_hw *hw) |
| 3788 | { |
| 3789 | u16 data = (u16)hw->mac.ledctl_mode2; |
| 3790 | u32 i, led; |
| 3791 | |
| 3792 | /* |
| 3793 | * If no link, then turn LED on by setting the invert bit |
| 3794 | * for each LED that's mode is "link_up" in ledctl_mode2. |
| 3795 | */ |
| 3796 | if (!(er32(STATUS) & E1000_STATUS_LU)) { |
| 3797 | for (i = 0; i < 3; i++) { |
| 3798 | led = (data >> (i * 5)) & E1000_PHY_LED0_MASK; |
| 3799 | if ((led & E1000_PHY_LED0_MODE_MASK) != |
| 3800 | E1000_LEDCTL_MODE_LINK_UP) |
| 3801 | continue; |
| 3802 | if (led & E1000_PHY_LED0_IVRT) |
| 3803 | data &= ~(E1000_PHY_LED0_IVRT << (i * 5)); |
| 3804 | else |
| 3805 | data |= (E1000_PHY_LED0_IVRT << (i * 5)); |
| 3806 | } |
| 3807 | } |
| 3808 | |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3809 | return e1e_wphy(hw, HV_LED_CONFIG, data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3810 | } |
| 3811 | |
| 3812 | /** |
| 3813 | * e1000_led_off_pchlan - Turn LEDs off |
| 3814 | * @hw: pointer to the HW structure |
| 3815 | * |
| 3816 | * Turn off the LEDs. |
| 3817 | **/ |
| 3818 | static s32 e1000_led_off_pchlan(struct e1000_hw *hw) |
| 3819 | { |
| 3820 | u16 data = (u16)hw->mac.ledctl_mode1; |
| 3821 | u32 i, led; |
| 3822 | |
| 3823 | /* |
| 3824 | * If no link, then turn LED off by clearing the invert bit |
| 3825 | * for each LED that's mode is "link_up" in ledctl_mode1. |
| 3826 | */ |
| 3827 | if (!(er32(STATUS) & E1000_STATUS_LU)) { |
| 3828 | for (i = 0; i < 3; i++) { |
| 3829 | led = (data >> (i * 5)) & E1000_PHY_LED0_MASK; |
| 3830 | if ((led & E1000_PHY_LED0_MODE_MASK) != |
| 3831 | E1000_LEDCTL_MODE_LINK_UP) |
| 3832 | continue; |
| 3833 | if (led & E1000_PHY_LED0_IVRT) |
| 3834 | data &= ~(E1000_PHY_LED0_IVRT << (i * 5)); |
| 3835 | else |
| 3836 | data |= (E1000_PHY_LED0_IVRT << (i * 5)); |
| 3837 | } |
| 3838 | } |
| 3839 | |
Bruce Allan | 482fed8 | 2011-01-06 14:29:49 +0000 | [diff] [blame] | 3840 | return e1e_wphy(hw, HV_LED_CONFIG, data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3841 | } |
| 3842 | |
| 3843 | /** |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3844 | * e1000_get_cfg_done_ich8lan - Read config done bit after Full or PHY reset |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3845 | * @hw: pointer to the HW structure |
| 3846 | * |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3847 | * Read appropriate register for the config done bit for completion status |
| 3848 | * and configure the PHY through s/w for EEPROM-less parts. |
| 3849 | * |
| 3850 | * NOTE: some silicon which is EEPROM-less will fail trying to read the |
| 3851 | * config done bit, so only an error is logged and continues. If we were |
| 3852 | * to return with error, EEPROM-less silicon would not be able to be reset |
| 3853 | * or change link. |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3854 | **/ |
| 3855 | static s32 e1000_get_cfg_done_ich8lan(struct e1000_hw *hw) |
| 3856 | { |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3857 | s32 ret_val = 0; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3858 | u32 bank = 0; |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3859 | u32 status; |
Bruce Allan | fc0c776 | 2009-07-01 13:27:55 +0000 | [diff] [blame] | 3860 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3861 | e1000e_get_cfg_done(hw); |
| 3862 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3863 | /* Wait for indication from h/w that it has completed basic config */ |
| 3864 | if (hw->mac.type >= e1000_ich10lan) { |
| 3865 | e1000_lan_init_done_ich8lan(hw); |
| 3866 | } else { |
| 3867 | ret_val = e1000e_get_auto_rd_done(hw); |
| 3868 | if (ret_val) { |
| 3869 | /* |
| 3870 | * When auto config read does not complete, do not |
| 3871 | * return with an error. This can happen in situations |
| 3872 | * where there is no eeprom and prevents getting link. |
| 3873 | */ |
| 3874 | e_dbg("Auto Read Done did not complete\n"); |
| 3875 | ret_val = 0; |
| 3876 | } |
| 3877 | } |
| 3878 | |
| 3879 | /* Clear PHY Reset Asserted bit */ |
| 3880 | status = er32(STATUS); |
| 3881 | if (status & E1000_STATUS_PHYRA) |
| 3882 | ew32(STATUS, status & ~E1000_STATUS_PHYRA); |
| 3883 | else |
| 3884 | e_dbg("PHY Reset Asserted not set - needs delay\n"); |
| 3885 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3886 | /* If EEPROM is not marked present, init the IGP 3 PHY manually */ |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3887 | if (hw->mac.type <= e1000_ich9lan) { |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3888 | if (((er32(EECD) & E1000_EECD_PRES) == 0) && |
| 3889 | (hw->phy.type == e1000_phy_igp_3)) { |
| 3890 | e1000e_phy_init_script_igp3(hw); |
| 3891 | } |
| 3892 | } else { |
| 3893 | if (e1000_valid_nvm_bank_detect_ich8lan(hw, &bank)) { |
| 3894 | /* Maybe we should do a basic PHY config */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3895 | e_dbg("EEPROM not present\n"); |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3896 | ret_val = -E1000_ERR_CONFIG; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3897 | } |
| 3898 | } |
| 3899 | |
Bruce Allan | e98cac4 | 2010-05-10 15:02:32 +0000 | [diff] [blame] | 3900 | return ret_val; |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3901 | } |
| 3902 | |
| 3903 | /** |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 3904 | * e1000_power_down_phy_copper_ich8lan - Remove link during PHY power down |
| 3905 | * @hw: pointer to the HW structure |
| 3906 | * |
| 3907 | * In the case of a PHY power down to save power, or to turn off link during a |
| 3908 | * driver unload, or wake on lan is not enabled, remove the link. |
| 3909 | **/ |
| 3910 | static void e1000_power_down_phy_copper_ich8lan(struct e1000_hw *hw) |
| 3911 | { |
| 3912 | /* If the management interface is not enabled, then power down */ |
| 3913 | if (!(hw->mac.ops.check_mng_mode(hw) || |
| 3914 | hw->phy.ops.check_reset_block(hw))) |
| 3915 | e1000_power_down_phy_copper(hw); |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 3916 | } |
| 3917 | |
| 3918 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3919 | * e1000_clear_hw_cntrs_ich8lan - Clear statistical counters |
| 3920 | * @hw: pointer to the HW structure |
| 3921 | * |
| 3922 | * Clears hardware counters specific to the silicon family and calls |
| 3923 | * clear_hw_cntrs_generic to clear all general purpose counters. |
| 3924 | **/ |
| 3925 | static void e1000_clear_hw_cntrs_ich8lan(struct e1000_hw *hw) |
| 3926 | { |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3927 | u16 phy_data; |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 3928 | s32 ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3929 | |
| 3930 | e1000e_clear_hw_cntrs_base(hw); |
| 3931 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 3932 | er32(ALGNERRC); |
| 3933 | er32(RXERRC); |
| 3934 | er32(TNCRS); |
| 3935 | er32(CEXTERR); |
| 3936 | er32(TSCTC); |
| 3937 | er32(TSCTFC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3938 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 3939 | er32(MGTPRC); |
| 3940 | er32(MGTPDC); |
| 3941 | er32(MGTPTC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3942 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 3943 | er32(IAC); |
| 3944 | er32(ICRXOC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3945 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3946 | /* Clear PHY statistics registers */ |
| 3947 | if ((hw->phy.type == e1000_phy_82578) || |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 3948 | (hw->phy.type == e1000_phy_82579) || |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3949 | (hw->phy.type == e1000_phy_82577)) { |
Bruce Allan | 2b6b168 | 2011-05-13 07:20:09 +0000 | [diff] [blame] | 3950 | ret_val = hw->phy.ops.acquire(hw); |
| 3951 | if (ret_val) |
| 3952 | return; |
| 3953 | ret_val = hw->phy.ops.set_page(hw, |
| 3954 | HV_STATS_PAGE << IGP_PAGE_SHIFT); |
| 3955 | if (ret_val) |
| 3956 | goto release; |
| 3957 | hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data); |
| 3958 | hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data); |
| 3959 | hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data); |
| 3960 | hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data); |
| 3961 | hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data); |
| 3962 | hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data); |
| 3963 | hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data); |
| 3964 | hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data); |
| 3965 | hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data); |
| 3966 | hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data); |
| 3967 | hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data); |
| 3968 | hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data); |
| 3969 | hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data); |
| 3970 | hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data); |
| 3971 | release: |
| 3972 | hw->phy.ops.release(hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3973 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3974 | } |
| 3975 | |
| 3976 | static struct e1000_mac_operations ich8_mac_ops = { |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3977 | .id_led_init = e1000e_id_led_init, |
Bruce Allan | eb7700d | 2010-06-16 13:27:05 +0000 | [diff] [blame] | 3978 | /* check_mng_mode dependent on mac type */ |
Bruce Allan | 7d3cabb | 2009-07-01 13:29:08 +0000 | [diff] [blame] | 3979 | .check_for_link = e1000_check_for_copper_link_ich8lan, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3980 | /* cleanup_led dependent on mac type */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3981 | .clear_hw_cntrs = e1000_clear_hw_cntrs_ich8lan, |
| 3982 | .get_bus_info = e1000_get_bus_info_ich8lan, |
Bruce Allan | f4d2dd4 | 2010-01-13 02:05:18 +0000 | [diff] [blame] | 3983 | .set_lan_id = e1000_set_lan_id_single_port, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3984 | .get_link_up_info = e1000_get_link_up_info_ich8lan, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3985 | /* led_on dependent on mac type */ |
| 3986 | /* led_off dependent on mac type */ |
Jeff Kirsher | e2de3eb | 2008-03-28 09:15:11 -0700 | [diff] [blame] | 3987 | .update_mc_addr_list = e1000e_update_mc_addr_list_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3988 | .reset_hw = e1000_reset_hw_ich8lan, |
| 3989 | .init_hw = e1000_init_hw_ich8lan, |
| 3990 | .setup_link = e1000_setup_link_ich8lan, |
| 3991 | .setup_physical_interface= e1000_setup_copper_link_ich8lan, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3992 | /* id_led_init dependent on mac type */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3993 | }; |
| 3994 | |
| 3995 | static struct e1000_phy_operations ich8_phy_ops = { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3996 | .acquire = e1000_acquire_swflag_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 3997 | .check_reset_block = e1000_check_reset_block_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3998 | .commit = NULL, |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 3999 | .get_cfg_done = e1000_get_cfg_done_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4000 | .get_cable_length = e1000e_get_cable_length_igp_2, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4001 | .read_reg = e1000e_read_phy_reg_igp, |
| 4002 | .release = e1000_release_swflag_ich8lan, |
| 4003 | .reset = e1000_phy_hw_reset_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4004 | .set_d0_lplu_state = e1000_set_d0_lplu_state_ich8lan, |
| 4005 | .set_d3_lplu_state = e1000_set_d3_lplu_state_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4006 | .write_reg = e1000e_write_phy_reg_igp, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4007 | }; |
| 4008 | |
| 4009 | static struct e1000_nvm_operations ich8_nvm_ops = { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4010 | .acquire = e1000_acquire_nvm_ich8lan, |
| 4011 | .read = e1000_read_nvm_ich8lan, |
| 4012 | .release = e1000_release_nvm_ich8lan, |
| 4013 | .update = e1000_update_nvm_checksum_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4014 | .valid_led_default = e1000_valid_led_default_ich8lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 4015 | .validate = e1000_validate_nvm_checksum_ich8lan, |
| 4016 | .write = e1000_write_nvm_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4017 | }; |
| 4018 | |
| 4019 | struct e1000_info e1000_ich8_info = { |
| 4020 | .mac = e1000_ich8lan, |
| 4021 | .flags = FLAG_HAS_WOL |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4022 | | FLAG_IS_ICH |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4023 | | FLAG_RX_CSUM_ENABLED |
| 4024 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4025 | | FLAG_HAS_AMT |
| 4026 | | FLAG_HAS_FLASH |
| 4027 | | FLAG_APME_IN_WUC, |
| 4028 | .pba = 8, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 4029 | .max_hw_frame_size = ETH_FRAME_LEN + ETH_FCS_LEN, |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 4030 | .get_variants = e1000_get_variants_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4031 | .mac_ops = &ich8_mac_ops, |
| 4032 | .phy_ops = &ich8_phy_ops, |
| 4033 | .nvm_ops = &ich8_nvm_ops, |
| 4034 | }; |
| 4035 | |
| 4036 | struct e1000_info e1000_ich9_info = { |
| 4037 | .mac = e1000_ich9lan, |
| 4038 | .flags = FLAG_HAS_JUMBO_FRAMES |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 4039 | | FLAG_IS_ICH |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4040 | | FLAG_HAS_WOL |
| 4041 | | FLAG_RX_CSUM_ENABLED |
| 4042 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4043 | | FLAG_HAS_AMT |
| 4044 | | FLAG_HAS_ERT |
| 4045 | | FLAG_HAS_FLASH |
| 4046 | | FLAG_APME_IN_WUC, |
| 4047 | .pba = 10, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 4048 | .max_hw_frame_size = DEFAULT_JUMBO, |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 4049 | .get_variants = e1000_get_variants_ich8lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 4050 | .mac_ops = &ich8_mac_ops, |
| 4051 | .phy_ops = &ich8_phy_ops, |
| 4052 | .nvm_ops = &ich8_nvm_ops, |
| 4053 | }; |
| 4054 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4055 | struct e1000_info e1000_ich10_info = { |
| 4056 | .mac = e1000_ich10lan, |
| 4057 | .flags = FLAG_HAS_JUMBO_FRAMES |
| 4058 | | FLAG_IS_ICH |
| 4059 | | FLAG_HAS_WOL |
| 4060 | | FLAG_RX_CSUM_ENABLED |
| 4061 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4062 | | FLAG_HAS_AMT |
| 4063 | | FLAG_HAS_ERT |
| 4064 | | FLAG_HAS_FLASH |
| 4065 | | FLAG_APME_IN_WUC, |
| 4066 | .pba = 10, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 4067 | .max_hw_frame_size = DEFAULT_JUMBO, |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 4068 | .get_variants = e1000_get_variants_ich8lan, |
| 4069 | .mac_ops = &ich8_mac_ops, |
| 4070 | .phy_ops = &ich8_phy_ops, |
| 4071 | .nvm_ops = &ich8_nvm_ops, |
| 4072 | }; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4073 | |
| 4074 | struct e1000_info e1000_pch_info = { |
| 4075 | .mac = e1000_pchlan, |
| 4076 | .flags = FLAG_IS_ICH |
| 4077 | | FLAG_HAS_WOL |
| 4078 | | FLAG_RX_CSUM_ENABLED |
| 4079 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4080 | | FLAG_HAS_AMT |
| 4081 | | FLAG_HAS_FLASH |
| 4082 | | FLAG_HAS_JUMBO_FRAMES |
Bruce Allan | 38eb394 | 2009-11-19 12:34:20 +0000 | [diff] [blame] | 4083 | | FLAG_DISABLE_FC_PAUSE_TIME /* errata */ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4084 | | FLAG_APME_IN_WUC, |
Bruce Allan | 8c7bbb9 | 2010-06-16 13:26:41 +0000 | [diff] [blame] | 4085 | .flags2 = FLAG2_HAS_PHY_STATS, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 4086 | .pba = 26, |
| 4087 | .max_hw_frame_size = 4096, |
| 4088 | .get_variants = e1000_get_variants_ich8lan, |
| 4089 | .mac_ops = &ich8_mac_ops, |
| 4090 | .phy_ops = &ich8_phy_ops, |
| 4091 | .nvm_ops = &ich8_nvm_ops, |
| 4092 | }; |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4093 | |
| 4094 | struct e1000_info e1000_pch2_info = { |
| 4095 | .mac = e1000_pch2lan, |
| 4096 | .flags = FLAG_IS_ICH |
| 4097 | | FLAG_HAS_WOL |
| 4098 | | FLAG_RX_CSUM_ENABLED |
| 4099 | | FLAG_HAS_CTRLEXT_ON_LOAD |
| 4100 | | FLAG_HAS_AMT |
| 4101 | | FLAG_HAS_FLASH |
| 4102 | | FLAG_HAS_JUMBO_FRAMES |
| 4103 | | FLAG_APME_IN_WUC, |
Bruce Allan | e52997f | 2010-06-16 13:27:49 +0000 | [diff] [blame] | 4104 | .flags2 = FLAG2_HAS_PHY_STATS |
| 4105 | | FLAG2_HAS_EEE, |
Bruce Allan | 828bac8 | 2010-09-29 21:39:37 +0000 | [diff] [blame] | 4106 | .pba = 26, |
Bruce Allan | d3738bb | 2010-06-16 13:27:28 +0000 | [diff] [blame] | 4107 | .max_hw_frame_size = DEFAULT_JUMBO, |
| 4108 | .get_variants = e1000_get_variants_ich8lan, |
| 4109 | .mac_ops = &ich8_mac_ops, |
| 4110 | .phy_ops = &ich8_phy_ops, |
| 4111 | .nvm_ops = &ich8_nvm_ops, |
| 4112 | }; |