Linux Kernel
3.7.1
|
#include <linux/if_ether.h>
#include <linux/delay.h>
#include <linux/pci.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include "e1000_mac.h"
#include "igb.h"
Go to the source code of this file.
igb_blink_led - Blink LED : pointer to the HW structure
Blink the led's which are set to be on.
Definition at line 1301 of file e1000_mac.c.
igb_check_alt_mac_addr - Check for alternate MAC addr : pointer to the HW structure
Checks the nvm for an alternate MAC address. An alternate MAC address can be setup by pre-boot software and must be treated like a permanent address and must override the actual permanent MAC address. If an alternate MAC address is fopund it is saved in the hw struct and prgrammed into RAR0 and the cuntion returns success, otherwise the function returns an error.
Definition at line 237 of file e1000_mac.c.
igb_check_for_copper_link - Check for link (Copper) : pointer to the HW structure
Checks to see of the link status of the hardware has changed. If a change in link status has been detected, then we read the PHY registers to get the current speed/duplex if link exists.
Definition at line 533 of file e1000_mac.c.
igb_config_collision_dist - Configure collision distance : pointer to the HW structure
Configures the collision distance to the default value and is used during link setup. Currently no func pointer exists and all implementations are handled in the generic version of this function.
Definition at line 673 of file e1000_mac.c.
igb_config_fc_after_link_up - Configures flow control after link : pointer to the HW structure
Checks the status of auto-negotiation after link up to ensure that the speed and duplex were not forced. If the link needed to be forced, then flow control needs to be forced also. If auto-negotiation is enabled and did not fail, then we configure flow control based on our link partner.
Definition at line 838 of file e1000_mac.c.
igb_disable_pcie_master - Disables PCI-express master access : pointer to the HW structure
Returns 0 (0) if successful, else returns -10 (-E1000_ERR_MASTER_REQUESTS_PENDING) if master disable bit has not casued the master requests to be disabled.
Disables PCI-Express master access and verifies there are no pending requests.
Definition at line 1352 of file e1000_mac.c.
igb_force_mac_fc - Force the MAC's flow control settings : pointer to the HW structure
Force the MAC's flow control settings. Sets the TFCE and RFCE bits in the device control register to reflect the adapter settings. TFCE and RFCE need to be explicitly set by software when a copper PHY is used because autonegotiation is managed by the PHY rather than the MAC. Software must also configure these bits when link is forced on a fiber connection.
Definition at line 774 of file e1000_mac.c.
igb_get_auto_rd_done - Check for auto read completion : pointer to the HW structure
Check EEPROM for Auto Read done bit.
Definition at line 1161 of file e1000_mac.c.
igb_get_bus_info_pcie - Get PCIe bus information : pointer to the HW structure
Determines and stores the system bus information for a particular network interface. The following bus information is determined and stored: bus speed, bus width, type (PCIe), and PCIe function.
Definition at line 49 of file e1000_mac.c.
igb_get_speed_and_duplex_copper - Retrieve current speed/duplex : pointer to the HW structure : stores the current speed : stores the current duplex
Read the status register for the current speed/duplex and store the current speed and duplex for copper connections.
Definition at line 1057 of file e1000_mac.c.
igb_id_led_init - : pointer to the HW structure
Definition at line 1222 of file e1000_mac.c.
igb_init_rx_addrs - Initialize receive address's : pointer to the HW structure : receive address registers
Setups the receive address registers by setting the base receive address register to the devices MAC address and clearing all the other receive address registers to 0.
Definition at line 173 of file e1000_mac.c.
igb_led_off - Turn LED off : pointer to the HW structure
Turn LED off.
Definition at line 1328 of file e1000_mac.c.
igb_mta_set - Set multicast filter table address : pointer to the HW structure : determines the MTA register and bit to set
The multicast table address is a register array of 32-bit registers. The hash_value is used to determine what register the bit is in, the current value is read, the new bit is OR'd in and the new value is written back into the register.
Definition at line 347 of file e1000_mac.c.
igb_setup_link - Setup flow control and link settings : pointer to the HW structure
Determines which flow control settings to use, then configures flow control. Calls the appropriate media-specific link configuration function. Assuming the adapter has a valid link partner, a valid link should be established. Assumes the hardware has previously been reset and the transmitter and receiver are not enabled.
Definition at line 610 of file e1000_mac.c.
igb_update_mc_addr_list - Update Multicast addresses : pointer to the HW structure : array of multicast addresses to program : number of multicast addresses to program
Updates entire Multicast Table Array. The caller must have a packed mc_addr_list of multicast addresses.
Definition at line 452 of file e1000_mac.c.
igb_validate_mdi_setting - Verify MDI/MDIx settings : pointer to the HW structure
Verify that when not using auto-negotitation that MDI/MDIx is correctly set, which is forced to MDI mode only.
Definition at line 1390 of file e1000_mac.c.
igb_vfta_set - enable or disable vlan in VLAN filter table : pointer to the HW structure : VLAN id to add or remove : if true add filter, if false remove
Sets or clears a bit in the VLAN filter table array based on VLAN id and if we are adding or removing the filter
Definition at line 198 of file e1000_mac.c.
igb_write_8bit_ctrl_reg - Write a 8bit CTRL register : pointer to the HW structure : 32bit register offset such as E1000_SCTL : register offset to write to : data to write at register offset
Writes an address/data control type register. There are several of these and they all have the format address << 8 | data and bit 31 is polled for completion.
Definition at line 1416 of file e1000_mac.c.