xref: /dflybsd-src/sys/dev/netif/ig_hal/e1000_manage.h (revision 01a55482b42bba8de64caeb8c9ede647a9208734)
19c80d176SSepherosa Ziehau /******************************************************************************
29c80d176SSepherosa Ziehau 
3*01a55482SSepherosa Ziehau   Copyright (c) 2001-2019, Intel Corporation
49c80d176SSepherosa Ziehau   All rights reserved.
59c80d176SSepherosa Ziehau 
69c80d176SSepherosa Ziehau   Redistribution and use in source and binary forms, with or without
79c80d176SSepherosa Ziehau   modification, are permitted provided that the following conditions are met:
89c80d176SSepherosa Ziehau 
99c80d176SSepherosa Ziehau    1. Redistributions of source code must retain the above copyright notice,
109c80d176SSepherosa Ziehau       this list of conditions and the following disclaimer.
119c80d176SSepherosa Ziehau 
129c80d176SSepherosa Ziehau    2. Redistributions in binary form must reproduce the above copyright
139c80d176SSepherosa Ziehau       notice, this list of conditions and the following disclaimer in the
149c80d176SSepherosa Ziehau       documentation and/or other materials provided with the distribution.
159c80d176SSepherosa Ziehau 
169c80d176SSepherosa Ziehau    3. Neither the name of the Intel Corporation nor the names of its
179c80d176SSepherosa Ziehau       contributors may be used to endorse or promote products derived from
189c80d176SSepherosa Ziehau       this software without specific prior written permission.
199c80d176SSepherosa Ziehau 
209c80d176SSepherosa Ziehau   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
219c80d176SSepherosa Ziehau   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
229c80d176SSepherosa Ziehau   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
239c80d176SSepherosa Ziehau   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
249c80d176SSepherosa Ziehau   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
259c80d176SSepherosa Ziehau   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
269c80d176SSepherosa Ziehau   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
279c80d176SSepherosa Ziehau   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
289c80d176SSepherosa Ziehau   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
299c80d176SSepherosa Ziehau   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
309c80d176SSepherosa Ziehau   POSSIBILITY OF SUCH DAMAGE.
319c80d176SSepherosa Ziehau 
329c80d176SSepherosa Ziehau ******************************************************************************/
3374dc3754SSepherosa Ziehau /*$FreeBSD$*/
349c80d176SSepherosa Ziehau 
359c80d176SSepherosa Ziehau #ifndef _E1000_MANAGE_H_
369c80d176SSepherosa Ziehau #define _E1000_MANAGE_H_
379c80d176SSepherosa Ziehau 
389c80d176SSepherosa Ziehau bool e1000_check_mng_mode_generic(struct e1000_hw *hw);
399c80d176SSepherosa Ziehau bool e1000_enable_tx_pkt_filtering_generic(struct e1000_hw *hw);
409c80d176SSepherosa Ziehau s32  e1000_mng_enable_host_if_generic(struct e1000_hw *hw);
419c80d176SSepherosa Ziehau s32  e1000_mng_host_if_write_generic(struct e1000_hw *hw, u8 *buffer,
429c80d176SSepherosa Ziehau 				     u16 length, u16 offset, u8 *sum);
439c80d176SSepherosa Ziehau s32  e1000_mng_write_cmd_header_generic(struct e1000_hw *hw,
449c80d176SSepherosa Ziehau 				     struct e1000_host_mng_command_header *hdr);
459c80d176SSepherosa Ziehau s32  e1000_mng_write_dhcp_info_generic(struct e1000_hw *hw,
469c80d176SSepherosa Ziehau 				       u8 *buffer, u16 length);
479c80d176SSepherosa Ziehau bool e1000_enable_mng_pass_thru(struct e1000_hw *hw);
4865aebe9fSSepherosa Ziehau u8 e1000_calculate_checksum(u8 *buffer, u32 length);
4962583d18SSepherosa Ziehau s32 e1000_host_interface_command(struct e1000_hw *hw, u8 *buffer, u32 length);
504be59a01SSepherosa Ziehau s32 e1000_load_firmware(struct e1000_hw *hw, u8 *buffer, u32 length);
519c80d176SSepherosa Ziehau 
529c80d176SSepherosa Ziehau enum e1000_mng_mode {
539c80d176SSepherosa Ziehau 	e1000_mng_mode_none = 0,
549c80d176SSepherosa Ziehau 	e1000_mng_mode_asf,
559c80d176SSepherosa Ziehau 	e1000_mng_mode_pt,
569c80d176SSepherosa Ziehau 	e1000_mng_mode_ipmi,
579c80d176SSepherosa Ziehau 	e1000_mng_mode_host_if_only
589c80d176SSepherosa Ziehau };
599c80d176SSepherosa Ziehau 
609c80d176SSepherosa Ziehau #define E1000_FACTPS_MNGCG			0x20000000
619c80d176SSepherosa Ziehau 
629c80d176SSepherosa Ziehau #define E1000_FWSM_MODE_MASK			0xE
639c80d176SSepherosa Ziehau #define E1000_FWSM_MODE_SHIFT			1
644be59a01SSepherosa Ziehau #define E1000_FWSM_FW_VALID			0x00008000
654be59a01SSepherosa Ziehau #define E1000_FWSM_HI_EN_ONLY_MODE		0x4
669c80d176SSepherosa Ziehau 
679c80d176SSepherosa Ziehau #define E1000_MNG_IAMT_MODE			0x3
689c80d176SSepherosa Ziehau #define E1000_MNG_DHCP_COOKIE_LENGTH		0x10
699c80d176SSepherosa Ziehau #define E1000_MNG_DHCP_COOKIE_OFFSET		0x6F0
709c80d176SSepherosa Ziehau #define E1000_MNG_DHCP_COMMAND_TIMEOUT		10
719c80d176SSepherosa Ziehau #define E1000_MNG_DHCP_TX_PAYLOAD_CMD		64
729c80d176SSepherosa Ziehau #define E1000_MNG_DHCP_COOKIE_STATUS_PARSING	0x1
739c80d176SSepherosa Ziehau #define E1000_MNG_DHCP_COOKIE_STATUS_VLAN	0x2
749c80d176SSepherosa Ziehau 
759c80d176SSepherosa Ziehau #define E1000_VFTA_ENTRY_SHIFT			5
769c80d176SSepherosa Ziehau #define E1000_VFTA_ENTRY_MASK			0x7F
779c80d176SSepherosa Ziehau #define E1000_VFTA_ENTRY_BIT_SHIFT_MASK		0x1F
789c80d176SSepherosa Ziehau 
799c80d176SSepherosa Ziehau #define E1000_HI_MAX_BLOCK_BYTE_LENGTH		1792 /* Num of bytes in range */
809c80d176SSepherosa Ziehau #define E1000_HI_MAX_BLOCK_DWORD_LENGTH		448 /* Num of dwords in range */
814be59a01SSepherosa Ziehau #define E1000_HI_COMMAND_TIMEOUT		500 /* Process HI cmd limit */
824be59a01SSepherosa Ziehau #define E1000_HI_FW_BASE_ADDRESS		0x10000
834be59a01SSepherosa Ziehau #define E1000_HI_FW_MAX_LENGTH			(64 * 1024) /* Num of bytes */
844be59a01SSepherosa Ziehau #define E1000_HI_FW_BLOCK_DWORD_LENGTH		256 /* Num of DWORDs per page */
854be59a01SSepherosa Ziehau #define E1000_HICR_MEMORY_BASE_EN		0x200 /* MB Enable bit - RO */
869c80d176SSepherosa Ziehau #define E1000_HICR_EN			0x01  /* Enable bit - RO */
879c80d176SSepherosa Ziehau /* Driver sets this bit when done to put command in RAM */
889c80d176SSepherosa Ziehau #define E1000_HICR_C			0x02
899c80d176SSepherosa Ziehau #define E1000_HICR_SV			0x04  /* Status Validity */
909c80d176SSepherosa Ziehau #define E1000_HICR_FW_RESET_ENABLE	0x40
919c80d176SSepherosa Ziehau #define E1000_HICR_FW_RESET		0x80
929c80d176SSepherosa Ziehau 
939c80d176SSepherosa Ziehau /* Intel(R) Active Management Technology signature */
949c80d176SSepherosa Ziehau #define E1000_IAMT_SIGNATURE		0x544D4149
959c80d176SSepherosa Ziehau 
969c80d176SSepherosa Ziehau #endif
97