1 /*******************************************************************************
3 Intel(R) Gigabit Ethernet Linux driver
4 Copyright(c) 2007-2009 Intel Corporation.
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.
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
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.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *******************************************************************************/
28 FILE_LICENCE ( GPL2_ONLY
);
34 static u8
e1000_calculate_checksum(u8
*buffer
, u32 length
);
37 * e1000_calculate_checksum - Calculate checksum for buffer
38 * @buffer: pointer to EEPROM
39 * @length: size of EEPROM to calculate a checksum for
41 * Calculates the checksum for some buffer on a specified length. The
42 * checksum calculated is returned.
44 static u8
e1000_calculate_checksum(u8
*buffer
, u32 length
)
49 DEBUGFUNC("igb_calculate_checksum");
54 for (i
= 0; i
< length
; i
++)
57 return (u8
) (0 - sum
);
61 * e1000_mng_enable_host_if_generic - Checks host interface is enabled
62 * @hw: pointer to the HW structure
64 * Returns E1000_success upon success, else E1000_ERR_HOST_INTERFACE_COMMAND
66 * This function checks whether the HOST IF is enabled for command operation
67 * and also checks whether the previous command is completed. It busy waits
68 * in case of previous command is not completed.
70 s32
e1000_mng_enable_host_if_generic(struct e1000_hw
*hw
)
73 s32 ret_val
= E1000_SUCCESS
;
76 DEBUGFUNC("igb_mng_enable_host_if_generic");
78 /* Check that the host interface is enabled. */
79 hicr
= E1000_READ_REG(hw
, E1000_HICR
);
80 if ((hicr
& E1000_HICR_EN
) == 0) {
81 DEBUGOUT("E1000_HOST_EN bit disabled.\n");
82 ret_val
= -E1000_ERR_HOST_INTERFACE_COMMAND
;
85 /* check the previous command is completed */
86 for (i
= 0; i
< E1000_MNG_DHCP_COMMAND_TIMEOUT
; i
++) {
87 hicr
= E1000_READ_REG(hw
, E1000_HICR
);
88 if (!(hicr
& E1000_HICR_C
))
93 if (i
== E1000_MNG_DHCP_COMMAND_TIMEOUT
) {
94 DEBUGOUT("Previous command timeout failed .\n");
95 ret_val
= -E1000_ERR_HOST_INTERFACE_COMMAND
;
104 * e1000_check_mng_mode_generic - Generic check management mode
105 * @hw: pointer to the HW structure
107 * Reads the firmware semaphore register and returns true (>0) if
108 * manageability is enabled, else false (0).
110 bool e1000_check_mng_mode_generic(struct e1000_hw
*hw
)
114 DEBUGFUNC("igb_check_mng_mode_generic");
116 fwsm
= E1000_READ_REG(hw
, E1000_FWSM
);
118 return (fwsm
& E1000_FWSM_MODE_MASK
) ==
119 (E1000_MNG_IAMT_MODE
<< E1000_FWSM_MODE_SHIFT
);
123 * e1000_enable_tx_pkt_filtering_generic - Enable packet filtering on TX
124 * @hw: pointer to the HW structure
126 * Enables packet filtering on transmit packets if manageability is enabled
127 * and host interface is enabled.
129 bool e1000_enable_tx_pkt_filtering_generic(struct e1000_hw
*hw
)
131 struct e1000_host_mng_dhcp_cookie
*hdr
= &hw
->mng_cookie
;
132 u32
*buffer
= (u32
*)&hw
->mng_cookie
;
134 s32 ret_val
, hdr_csum
, csum
;
136 bool tx_filter
= true;
138 DEBUGFUNC("igb_enable_tx_pkt_filtering_generic");
140 /* No manageability, no filtering */
141 if (!hw
->mac
.ops
.check_mng_mode(hw
)) {
147 * If we can't read from the host interface for whatever
148 * reason, disable filtering.
150 ret_val
= hw
->mac
.ops
.mng_enable_host_if(hw
);
151 if (ret_val
!= E1000_SUCCESS
) {
156 /* Read in the header. Length and offset are in dwords. */
157 len
= E1000_MNG_DHCP_COOKIE_LENGTH
>> 2;
158 offset
= E1000_MNG_DHCP_COOKIE_OFFSET
>> 2;
159 for (i
= 0; i
< len
; i
++) {
160 *(buffer
+ i
) = E1000_READ_REG_ARRAY_DWORD(hw
,
164 hdr_csum
= hdr
->checksum
;
166 csum
= e1000_calculate_checksum((u8
*)hdr
,
167 E1000_MNG_DHCP_COOKIE_LENGTH
);
169 * If either the checksums or signature don't match, then
170 * the cookie area isn't considered valid, in which case we
171 * take the safe route of assuming Tx filtering is enabled.
173 if (hdr_csum
!= csum
)
175 if (hdr
->signature
!= E1000_IAMT_SIGNATURE
)
178 /* Cookie area is valid, make the final check for filtering. */
179 if (!(hdr
->status
& E1000_MNG_DHCP_COOKIE_STATUS_PARSING
))
183 hw
->mac
.tx_pkt_filtering
= tx_filter
;
188 * e1000_mng_write_dhcp_info_generic - Writes DHCP info to host interface
189 * @hw: pointer to the HW structure
190 * @buffer: pointer to the host interface
191 * @length: size of the buffer
193 * Writes the DHCP information to the host interface.
195 s32
e1000_mng_write_dhcp_info_generic(struct e1000_hw
*hw
, u8
*buffer
,
198 struct e1000_host_mng_command_header hdr
;
202 DEBUGFUNC("igb_mng_write_dhcp_info_generic");
204 hdr
.command_id
= E1000_MNG_DHCP_TX_PAYLOAD_CMD
;
205 hdr
.command_length
= length
;
210 /* Enable the host interface */
211 ret_val
= hw
->mac
.ops
.mng_enable_host_if(hw
);
215 /* Populate the host interface with the contents of "buffer". */
216 ret_val
= hw
->mac
.ops
.mng_host_if_write(hw
, buffer
, length
,
217 sizeof(hdr
), &(hdr
.checksum
));
221 /* Write the manageability command header */
222 ret_val
= hw
->mac
.ops
.mng_write_cmd_header(hw
, &hdr
);
226 /* Tell the ARC a new command is pending. */
227 hicr
= E1000_READ_REG(hw
, E1000_HICR
);
228 E1000_WRITE_REG(hw
, E1000_HICR
, hicr
| E1000_HICR_C
);
235 * e1000_mng_write_cmd_header_generic - Writes manageability command header
236 * @hw: pointer to the HW structure
237 * @hdr: pointer to the host interface command header
239 * Writes the command header after does the checksum calculation.
241 s32
e1000_mng_write_cmd_header_generic(struct e1000_hw
*hw
,
242 struct e1000_host_mng_command_header
*hdr
)
244 u16 i
, length
= sizeof(struct e1000_host_mng_command_header
);
246 DEBUGFUNC("igb_mng_write_cmd_header_generic");
248 /* Write the whole command header structure with new checksum. */
250 hdr
->checksum
= e1000_calculate_checksum((u8
*)hdr
, length
);
253 /* Write the relevant command block into the ram area. */
254 for (i
= 0; i
< length
; i
++) {
255 E1000_WRITE_REG_ARRAY_DWORD(hw
, E1000_HOST_IF
, i
,
257 E1000_WRITE_FLUSH(hw
);
260 return E1000_SUCCESS
;
264 * e1000_mng_host_if_write_generic - Write to the manageability host interface
265 * @hw: pointer to the HW structure
266 * @buffer: pointer to the host interface buffer
267 * @length: size of the buffer
268 * @offset: location in the buffer to write to
269 * @sum: sum of the data (not checksum)
271 * This function writes the buffer content at the offset given on the host if.
272 * It also does alignment considerations to do the writes in most efficient
273 * way. Also fills up the sum of the buffer in *buffer parameter.
275 s32
e1000_mng_host_if_write_generic(struct e1000_hw
*hw
, u8
*buffer
,
276 u16 length
, u16 offset
, u8
*sum
)
281 s32 ret_val
= E1000_SUCCESS
;
282 u16 remaining
, i
, j
, prev_bytes
;
284 DEBUGFUNC("igb_mng_host_if_write_generic");
286 /* sum = only sum of the data and it is not checksum */
288 if (length
== 0 || offset
+ length
> E1000_HI_MAX_MNG_DATA_LENGTH
) {
289 ret_val
= -E1000_ERR_PARAM
;
294 prev_bytes
= offset
& 0x3;
298 data
= E1000_READ_REG_ARRAY_DWORD(hw
, E1000_HOST_IF
, offset
);
299 for (j
= prev_bytes
; j
< sizeof(u32
); j
++) {
300 *(tmp
+ j
) = *bufptr
++;
303 E1000_WRITE_REG_ARRAY_DWORD(hw
, E1000_HOST_IF
, offset
, data
);
304 length
-= j
- prev_bytes
;
308 remaining
= length
& 0x3;
311 /* Calculate length in DWORDs */
315 * The device driver writes the relevant command block into the
318 for (i
= 0; i
< length
; i
++) {
319 for (j
= 0; j
< sizeof(u32
); j
++) {
320 *(tmp
+ j
) = *bufptr
++;
324 E1000_WRITE_REG_ARRAY_DWORD(hw
, E1000_HOST_IF
, offset
+ i
,
328 for (j
= 0; j
< sizeof(u32
); j
++) {
330 *(tmp
+ j
) = *bufptr
++;
336 E1000_WRITE_REG_ARRAY_DWORD(hw
, E1000_HOST_IF
, offset
+ i
, data
);
344 * e1000_enable_mng_pass_thru - Enable processing of ARP's
345 * @hw: pointer to the HW structure
347 * Verifies the hardware needs to allow ARPs to be processed by the host.
349 bool e1000_enable_mng_pass_thru(struct e1000_hw
*hw
)
353 bool ret_val
= false;
355 DEBUGFUNC("igb_enable_mng_pass_thru");
357 if (!hw
->mac
.asf_firmware_present
)
360 manc
= E1000_READ_REG(hw
, E1000_MANC
);
362 if (!(manc
& E1000_MANC_RCV_TCO_EN
) ||
363 !(manc
& E1000_MANC_EN_MAC_ADDR_FILTER
))
366 if (hw
->mac
.arc_subsystem_valid
) {
367 fwsm
= E1000_READ_REG(hw
, E1000_FWSM
);
368 factps
= E1000_READ_REG(hw
, E1000_FACTPS
);
370 if (!(factps
& E1000_FACTPS_MNGCG
) &&
371 ((fwsm
& E1000_FWSM_MODE_MASK
) ==
372 (e1000_mng_mode_pt
<< E1000_FWSM_MODE_SHIFT
))) {
377 if ((manc
& E1000_MANC_SMBUS_EN
) &&
378 !(manc
& E1000_MANC_ASF_EN
)) {