Deleted Added
full compact
e1000_manage.h (173788) e1000_manage.h (176667)
1/*******************************************************************************
2
1/*******************************************************************************
2
3 Copyright (c) 2001-2007, Intel Corporation
3 Copyright (c) 2001-2008, Intel Corporation
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11

--- 13 unchanged lines hidden (view full) ---

25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
31
32*******************************************************************************/
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
11

--- 13 unchanged lines hidden (view full) ---

25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
31
32*******************************************************************************/
33/* $FreeBSD: head/sys/dev/em/e1000_manage.h 173788 2007-11-20 21:41:22Z jfv $ */
33/* $FreeBSD: head/sys/dev/em/e1000_manage.h 176667 2008-02-29 21:50:11Z jfv $ */
34
35
36#ifndef _E1000_MANAGE_H_
37#define _E1000_MANAGE_H_
38
39bool e1000_check_mng_mode_generic(struct e1000_hw *hw);
40bool e1000_enable_tx_pkt_filtering_generic(struct e1000_hw *hw);
41s32 e1000_mng_enable_host_if_generic(struct e1000_hw *hw);

--- 24 unchanged lines hidden (view full) ---

66#define E1000_MNG_DHCP_TX_PAYLOAD_CMD 64
67#define E1000_MNG_DHCP_COOKIE_STATUS_PARSING 0x1
68#define E1000_MNG_DHCP_COOKIE_STATUS_VLAN 0x2
69
70#define E1000_VFTA_ENTRY_SHIFT 5
71#define E1000_VFTA_ENTRY_MASK 0x7F
72#define E1000_VFTA_ENTRY_BIT_SHIFT_MASK 0x1F
73
34
35
36#ifndef _E1000_MANAGE_H_
37#define _E1000_MANAGE_H_
38
39bool e1000_check_mng_mode_generic(struct e1000_hw *hw);
40bool e1000_enable_tx_pkt_filtering_generic(struct e1000_hw *hw);
41s32 e1000_mng_enable_host_if_generic(struct e1000_hw *hw);

--- 24 unchanged lines hidden (view full) ---

66#define E1000_MNG_DHCP_TX_PAYLOAD_CMD 64
67#define E1000_MNG_DHCP_COOKIE_STATUS_PARSING 0x1
68#define E1000_MNG_DHCP_COOKIE_STATUS_VLAN 0x2
69
70#define E1000_VFTA_ENTRY_SHIFT 5
71#define E1000_VFTA_ENTRY_MASK 0x7F
72#define E1000_VFTA_ENTRY_BIT_SHIFT_MASK 0x1F
73
74#define E1000_HI_MAX_BLOCK_BYTE_LENGTH 1792 /* Number of bytes in range */
75#define E1000_HI_MAX_BLOCK_DWORD_LENGTH 448 /* Number of dwords in range */
74#define E1000_HI_MAX_BLOCK_BYTE_LENGTH 1792 /* Num of bytes in range */
75#define E1000_HI_MAX_BLOCK_DWORD_LENGTH 448 /* Num of dwords in range */
76#define E1000_HI_COMMAND_TIMEOUT 500 /* Process HI command limit */
77
78#define E1000_HICR_EN 0x01 /* Enable bit - RO */
79/* Driver sets this bit when done to put command in RAM */
80#define E1000_HICR_C 0x02
81#define E1000_HICR_SV 0x04 /* Status Validity */
82#define E1000_HICR_FW_RESET_ENABLE 0x40
83#define E1000_HICR_FW_RESET 0x80
84
85/* Intel(R) Active Management Technology signature */
86#define E1000_IAMT_SIGNATURE 0x544D4149
87
88#endif
76#define E1000_HI_COMMAND_TIMEOUT 500 /* Process HI command limit */
77
78#define E1000_HICR_EN 0x01 /* Enable bit - RO */
79/* Driver sets this bit when done to put command in RAM */
80#define E1000_HICR_C 0x02
81#define E1000_HICR_SV 0x04 /* Status Validity */
82#define E1000_HICR_FW_RESET_ENABLE 0x40
83#define E1000_HICR_FW_RESET 0x80
84
85/* Intel(R) Active Management Technology signature */
86#define E1000_IAMT_SIGNATURE 0x544D4149
87
88#endif