ixgbe_common.h revision 185352
138451Smsmith/******************************************************************************
238451Smsmith
338451Smsmith  Copyright (c) 2001-2008, Intel Corporation
438451Smsmith  All rights reserved.
538451Smsmith
638451Smsmith  Redistribution and use in source and binary forms, with or without
738451Smsmith  modification, are permitted provided that the following conditions are met:
838451Smsmith
938451Smsmith   1. Redistributions of source code must retain the above copyright notice,
1038451Smsmith      this list of conditions and the following disclaimer.
1138451Smsmith
1238451Smsmith   2. Redistributions in binary form must reproduce the above copyright
1338451Smsmith      notice, this list of conditions and the following disclaimer in the
1438451Smsmith      documentation and/or other materials provided with the distribution.
1538451Smsmith
1638451Smsmith   3. Neither the name of the Intel Corporation nor the names of its
1738451Smsmith      contributors may be used to endorse or promote products derived from
1838451Smsmith      this software without specific prior written permission.
1938451Smsmith
2038451Smsmith  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2138451Smsmith  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2238451Smsmith  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2338451Smsmith  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
2438451Smsmith  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2538451Smsmith  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2650476Speter  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2738451Smsmith  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2838451Smsmith  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2938451Smsmith  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3038451Smsmith  POSSIBILITY OF SUCH DAMAGE.
3138451Smsmith
3238451Smsmith******************************************************************************/
3338451Smsmith/*$FreeBSD: head/sys/dev/ixgbe/ixgbe_common.h 185352 2008-11-26 23:41:18Z jfv $*/
3438451Smsmith
3538451Smsmith#ifndef _IXGBE_COMMON_H_
3638451Smsmith#define _IXGBE_COMMON_H_
3738451Smsmith
3838451Smsmith#include "ixgbe_type.h"
3938451Smsmith
4038451Smsmiths32 ixgbe_init_ops_generic(struct ixgbe_hw *hw);
4138451Smsmiths32 ixgbe_init_hw_generic(struct ixgbe_hw *hw);
4238451Smsmiths32 ixgbe_start_hw_generic(struct ixgbe_hw *hw);
4338451Smsmiths32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw);
4438451Smsmiths32 ixgbe_read_pba_num_generic(struct ixgbe_hw *hw, u32 *pba_num);
4538451Smsmiths32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr);
4638451Smsmiths32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw);
4738451Smsmithvoid ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw);
4838451Smsmiths32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw);
4938451Smsmith
5038451Smsmiths32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index);
5138451Smsmiths32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index);
5238451Smsmith
5338451Smsmiths32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw);
5438451Smsmiths32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data);
5538451Smsmiths32 ixgbe_read_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 *data);
5638451Smsmiths32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
5738451Smsmith                                       u16 *data);
5838451Smsmiths32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw,
5938451Smsmith                                           u16 *checksum_val);
6038451Smsmiths32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw);
6138451Smsmith
6238451Smsmiths32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
6338451Smsmith                          u32 enable_addr);
6438451Smsmiths32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index);
6538451Smsmiths32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw);
6638451Smsmiths32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw, u8 *mc_addr_list,
6738451Smsmith                                      u32 mc_addr_count,
6838451Smsmith                                      ixgbe_mc_addr_itr func);
6938451Smsmiths32 ixgbe_update_uc_addr_list_generic(struct ixgbe_hw *hw, u8 *addr_list,
7038451Smsmith                                      u32 addr_count, ixgbe_mc_addr_itr func);
7138451Smsmiths32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw);
7238451Smsmiths32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw);
7338451Smsmith
7438451Smsmiths32 ixgbe_setup_fc_generic(struct ixgbe_hw *hw, s32 packetbuf_num);
7538451Smsmiths32 ixgbe_fc_enable(struct ixgbe_hw *hw, s32 packtetbuf_num);
7638451Smsmiths32 ixgbe_fc_autoneg(struct ixgbe_hw *hw);
7738451Smsmith
7838451Smsmiths32 ixgbe_validate_mac_addr(u8 *mac_addr);
7938451Smsmiths32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u16 mask);
8038451Smsmithvoid ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u16 mask);
8138451Smsmiths32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw);
8238451Smsmith
8338451Smsmiths32 ixgbe_read_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 *val);
8438451Smsmiths32 ixgbe_write_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 val);
8538451Smsmith#endif /* IXGBE_COMMON */
8638451Smsmith