e1000e_manage.h

Go to the documentation of this file.
00001 /*******************************************************************************
00002 
00003   Intel PRO/1000 Linux driver
00004   Copyright(c) 1999 - 2009 Intel Corporation.
00005 
00006   This program is free software; you can redistribute it and/or modify it
00007   under the terms and conditions of the GNU General Public License,
00008   version 2, as published by the Free Software Foundation.
00009 
00010   This program is distributed in the hope it will be useful, but WITHOUT
00011   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00012   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
00013   more details.
00014 
00015   You should have received a copy of the GNU General Public License along with
00016   this program; if not, write to the Free Software Foundation, Inc.,
00017   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
00018 
00019   The full GNU General Public License is included in this distribution in
00020   the file called "COPYING".
00021 
00022   Contact Information:
00023   Linux NICS <linux.nics@intel.com>
00024   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
00025   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
00026 
00027 *******************************************************************************/
00028 
00029 FILE_LICENCE ( GPL2_OR_LATER );
00030 
00031 #ifndef _E1000E_MANAGE_H_
00032 #define _E1000E_MANAGE_H_
00033 
00034 bool e1000e_check_mng_mode_generic(struct e1000_hw *hw);
00035 bool e1000e_enable_tx_pkt_filtering(struct e1000_hw *hw);
00036 s32  e1000e_mng_enable_host_if_generic(struct e1000_hw *hw);
00037 s32  e1000e_mng_host_if_write_generic(struct e1000_hw *hw, u8 *buffer,
00038                                      u16 length, u16 offset, u8 *sum);
00039 s32  e1000e_mng_write_cmd_header_generic(struct e1000_hw *hw,
00040                                     struct e1000_host_mng_command_header *hdr);
00041 #if 0
00042 s32  e1000e_mng_write_dhcp_info(struct e1000_hw *hw,
00043                                        u8 *buffer, u16 length);
00044 #endif
00045 bool e1000e_enable_mng_pass_thru(struct e1000_hw *hw);
00046 
00047 enum e1000_mng_mode {
00048         e1000_mng_mode_none = 0,
00049         e1000_mng_mode_asf,
00050         e1000_mng_mode_pt,
00051         e1000_mng_mode_ipmi,
00052         e1000_mng_mode_host_if_only
00053 };
00054 
00055 #define E1000_FACTPS_MNGCG    0x20000000
00056 
00057 #define E1000_FWSM_MODE_MASK  0xE
00058 #define E1000_FWSM_MODE_SHIFT 1
00059 
00060 #define E1000_MNG_IAMT_MODE                  0x3
00061 #define E1000_MNG_DHCP_COOKIE_LENGTH         0x10
00062 #define E1000_MNG_DHCP_COOKIE_OFFSET         0x6F0
00063 #define E1000_MNG_DHCP_COMMAND_TIMEOUT       10
00064 #define E1000_MNG_DHCP_TX_PAYLOAD_CMD        64
00065 #define E1000_MNG_DHCP_COOKIE_STATUS_PARSING 0x1
00066 #define E1000_MNG_DHCP_COOKIE_STATUS_VLAN    0x2
00067 
00068 #define E1000_VFTA_ENTRY_SHIFT               5
00069 #define E1000_VFTA_ENTRY_MASK                0x7F
00070 #define E1000_VFTA_ENTRY_BIT_SHIFT_MASK      0x1F
00071 
00072 #define E1000_HI_MAX_BLOCK_BYTE_LENGTH       1792 /* Num of bytes in range */
00073 #define E1000_HI_MAX_BLOCK_DWORD_LENGTH      448 /* Num of dwords in range */
00074 #define E1000_HI_COMMAND_TIMEOUT             500 /* Process HI command limit */
00075 
00076 #define E1000_HICR_EN              0x01  /* Enable bit - RO */
00077 /* Driver sets this bit when done to put command in RAM */
00078 #define E1000_HICR_C               0x02
00079 #define E1000_HICR_SV              0x04  /* Status Validity */
00080 #define E1000_HICR_FW_RESET_ENABLE 0x40
00081 #define E1000_HICR_FW_RESET        0x80
00082 
00083 /* Intel(R) Active Management Technology signature */
00084 #define E1000_IAMT_SIGNATURE  0x544D4149
00085 
00086 #endif

Generated on Tue Apr 6 20:00:59 2010 for gPXE by  doxygen 1.5.7.1