1 /* 2 * CDDL HEADER START 3 * 4 * Copyright(c) 2007-2008 Intel Corporation. All rights reserved. 5 * The contents of this file are subject to the terms of the 6 * Common Development and Distribution License (the "License"). 7 * You may not use this file except in compliance with the License. 8 * 9 * You can obtain a copy of the license at: 10 * http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When using or redistributing this file, you may do so under the 15 * License only. No other modification of this header is permitted. 16 * 17 * If applicable, add the following below this CDDL HEADER, with the 18 * fields enclosed by brackets "[]" replaced with your own identifying 19 * information: Portions Copyright [yyyy] [name of copyright owner] 20 * 21 * CDDL HEADER END 22 */ 23 24 /* 25 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 26 * Use is subject to license terms of the CDDL. 27 */ 28 29 #ifndef _IGB_MANAGE_H 30 #define _IGB_MANAGE_H 31 32 #pragma ident "%Z%%M% %I% %E% SMI" 33 34 #ifdef __cplusplus 35 extern "C" { 36 #endif 37 38 bool e1000_check_mng_mode_generic(struct e1000_hw *hw); 39 bool e1000_enable_tx_pkt_filtering_generic(struct e1000_hw *hw); 40 s32 e1000_mng_enable_host_if_generic(struct e1000_hw *hw); 41 s32 e1000_mng_host_if_write_generic(struct e1000_hw *hw, u8 *buffer, 42 u16 length, u16 offset, u8 *sum); 43 s32 e1000_mng_write_cmd_header_generic(struct e1000_hw *hw, 44 struct e1000_host_mng_command_header *hdr); 45 s32 e1000_mng_write_dhcp_info_generic(struct e1000_hw *hw, 46 u8 *buffer, u16 length); 47 48 typedef enum { 49 e1000_mng_mode_none = 0, 50 e1000_mng_mode_asf, 51 e1000_mng_mode_pt, 52 e1000_mng_mode_ipmi, 53 e1000_mng_mode_host_if_only 54 } e1000_mng_mode; 55 56 #define E1000_FACTPS_MNGCG 0x20000000 57 58 #define E1000_FWSM_MODE_MASK 0xE 59 #define E1000_FWSM_MODE_SHIFT 1 60 61 #define E1000_MNG_IAMT_MODE 0x3 62 #define E1000_MNG_DHCP_COOKIE_LENGTH 0x10 63 #define E1000_MNG_DHCP_COOKIE_OFFSET 0x6F0 64 #define E1000_MNG_DHCP_COMMAND_TIMEOUT 10 65 #define E1000_MNG_DHCP_TX_PAYLOAD_CMD 64 66 #define E1000_MNG_DHCP_COOKIE_STATUS_PARSING 0x1 67 #define E1000_MNG_DHCP_COOKIE_STATUS_VLAN 0x2 68 69 #define E1000_VFTA_ENTRY_SHIFT 5 70 #define E1000_VFTA_ENTRY_MASK 0x7F 71 #define E1000_VFTA_ENTRY_BIT_SHIFT_MASK 0x1F 72 73 #define E1000_HI_MAX_BLOCK_BYTE_LENGTH 1792 /* Num of bytes in range */ 74 #define E1000_HI_MAX_BLOCK_DWORD_LENGTH 448 /* Num of dwords in range */ 75 /* Process HI command limit */ 76 #define E1000_HI_COMMAND_TIMEOUT 500 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 #ifdef __cplusplus 89 } 90 #endif 91 92 #endif /* _IGB_MANAGE_H */ 93