⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e1000_ethtool.c

📁 一个2.4.21版本的嵌入式linux内核
💻 C
📖 第 1 页 / 共 2 页
字号:
/*******************************************************************************    Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved.    This program is free software; you can redistribute it and/or modify it   under the terms of the GNU General Public License as published by the Free   Software Foundation; either version 2 of the License, or (at your option)   any later version.    This program is distributed in the hope that it will be useful, but WITHOUT   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   more details.    You should have received a copy of the GNU General Public License along with  this program; if not, write to the Free Software Foundation, Inc., 59   Temple Place - Suite 330, Boston, MA  02111-1307, USA.    The full GNU General Public License is included in this distribution in the  file called LICENSE.    Contact Information:  Linux NICS <linux.nics@intel.com>  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497*******************************************************************************//* ethtool support for e1000 */#include "e1000.h"#include <asm/uaccess.h>extern char e1000_driver_name[];extern char e1000_driver_version[];extern int e1000_up(struct e1000_adapter *adapter);extern void e1000_down(struct e1000_adapter *adapter);extern void e1000_reset(struct e1000_adapter *adapter);extern int e1000_set_spd_dplx(struct e1000_adapter *adapter, uint16_t spddplx);static char e1000_gstrings_stats[][ETH_GSTRING_LEN] = {	"rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",	"tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",	"rx_length_errors", "rx_over_errors", "rx_crc_errors",	"rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",	"tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",	"tx_heartbeat_errors", "tx_window_errors",};#define E1000_STATS_LEN	sizeof(e1000_gstrings_stats) / ETH_GSTRING_LENstatic voide1000_ethtool_gset(struct e1000_adapter *adapter, struct ethtool_cmd *ecmd){	struct e1000_hw *hw = &adapter->hw;	if(hw->media_type == e1000_media_type_copper) {		ecmd->supported = (SUPPORTED_10baseT_Half |		                   SUPPORTED_10baseT_Full |		                   SUPPORTED_100baseT_Half |		                   SUPPORTED_100baseT_Full |		                   SUPPORTED_1000baseT_Full|		                   SUPPORTED_Autoneg |		                   SUPPORTED_TP);		ecmd->advertising = ADVERTISED_TP;		if(hw->autoneg == 1) {			ecmd->advertising |= ADVERTISED_Autoneg;			/* the e1000 autoneg seems to match ethtool nicely */			ecmd->advertising |= hw->autoneg_advertised;		}		ecmd->port = PORT_TP;		ecmd->phy_address = hw->phy_addr;		if(hw->mac_type == e1000_82543)			ecmd->transceiver = XCVR_EXTERNAL;		else			ecmd->transceiver = XCVR_INTERNAL;	} else {		ecmd->supported   = (SUPPORTED_1000baseT_Full |				     SUPPORTED_FIBRE |				     SUPPORTED_Autoneg);		ecmd->advertising = (SUPPORTED_1000baseT_Full |				     SUPPORTED_FIBRE |				     SUPPORTED_Autoneg);		ecmd->port = PORT_FIBRE;		if(hw->mac_type >= e1000_82545)			ecmd->transceiver = XCVR_INTERNAL;		else			ecmd->transceiver = XCVR_EXTERNAL;	}	if(netif_carrier_ok(adapter->netdev)) {		e1000_get_speed_and_duplex(hw, &adapter->link_speed,		                                   &adapter->link_duplex);		ecmd->speed = adapter->link_speed;		/* unfortunatly FULL_DUPLEX != DUPLEX_FULL		 *          and HALF_DUPLEX != DUPLEX_HALF */		if(adapter->link_duplex == FULL_DUPLEX)			ecmd->duplex = DUPLEX_FULL;		else			ecmd->duplex = DUPLEX_HALF;	} else {		ecmd->speed = -1;		ecmd->duplex = -1;	}	ecmd->autoneg = (hw->autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE);}static inte1000_ethtool_sset(struct e1000_adapter *adapter, struct ethtool_cmd *ecmd){	struct e1000_hw *hw = &adapter->hw;	if(ecmd->autoneg == AUTONEG_ENABLE) {		hw->autoneg = 1;		hw->autoneg_advertised = 0x002F;		ecmd->advertising = 0x002F;	} else		if(e1000_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex))			return -EINVAL;	/* reset the link */	if(netif_running(adapter->netdev)) {		e1000_down(adapter);		e1000_up(adapter);	} else		e1000_reset(adapter);	return 0;}static voide1000_ethtool_gdrvinfo(struct e1000_adapter *adapter,                       struct ethtool_drvinfo *drvinfo){	strncpy(drvinfo->driver,  e1000_driver_name, 32);	strncpy(drvinfo->version, e1000_driver_version, 32);	strncpy(drvinfo->fw_version, "N/A", 32);	strncpy(drvinfo->bus_info, adapter->pdev->slot_name, 32);	drvinfo->n_stats = E1000_STATS_LEN;#define E1000_REGS_LEN 32	drvinfo->regdump_len  = E1000_REGS_LEN * sizeof(uint32_t);	drvinfo->eedump_len = adapter->hw.eeprom.word_size * 2;}static voide1000_ethtool_gregs(struct e1000_adapter *adapter,                    struct ethtool_regs *regs, uint32_t *regs_buff){	struct e1000_hw *hw = &adapter->hw;	regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id;	regs_buff[0]  = E1000_READ_REG(hw, CTRL);	regs_buff[1]  = E1000_READ_REG(hw, STATUS);	regs_buff[2]  = E1000_READ_REG(hw, RCTL);	regs_buff[3]  = E1000_READ_REG(hw, RDLEN);	regs_buff[4]  = E1000_READ_REG(hw, RDH);	regs_buff[5]  = E1000_READ_REG(hw, RDT);	regs_buff[6]  = E1000_READ_REG(hw, RDTR);	regs_buff[7]  = E1000_READ_REG(hw, TCTL);	regs_buff[8]  = E1000_READ_REG(hw, TDLEN);	regs_buff[9]  = E1000_READ_REG(hw, TDH);	regs_buff[10] = E1000_READ_REG(hw, TDT);	regs_buff[11] = E1000_READ_REG(hw, TIDV);	return;}static inte1000_ethtool_geeprom(struct e1000_adapter *adapter,                      struct ethtool_eeprom *eeprom, uint16_t *eeprom_buff){	struct e1000_hw *hw = &adapter->hw;	int first_word, last_word;	int ret_val = 0;	if(eeprom->len == 0) {		ret_val = -EINVAL;		goto geeprom_error;	}	eeprom->magic = hw->vendor_id | (hw->device_id << 16);	if(eeprom->offset > eeprom->offset + eeprom->len) {		ret_val = -EINVAL;		goto geeprom_error;	}	if((eeprom->offset + eeprom->len) > (hw->eeprom.word_size * 2))		eeprom->len = ((hw->eeprom.word_size * 2) - eeprom->offset);	first_word = eeprom->offset >> 1;	last_word = (eeprom->offset + eeprom->len - 1) >> 1;	if(hw->eeprom.type == e1000_eeprom_spi)		ret_val = e1000_read_eeprom(hw, first_word,					    last_word - first_word + 1,					    eeprom_buff);	else {		uint16_t i;		for (i = 0; i < last_word - first_word + 1; i++)			if((ret_val = e1000_read_eeprom(hw, first_word + i, 1,						       &eeprom_buff[i])))				break;	}geeprom_error:	return ret_val;}static inte1000_ethtool_seeprom(struct e1000_adapter *adapter,                      struct ethtool_eeprom *eeprom, void *user_data){	struct e1000_hw *hw = &adapter->hw;	uint16_t *eeprom_buff;	void *ptr;	int max_len, first_word, last_word, ret_val = 0;	if(eeprom->len == 0)		return -EOPNOTSUPP;	if(eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))		return -EFAULT;	max_len = hw->eeprom.word_size * 2;	if((eeprom->offset + eeprom->len) > max_len)		eeprom->len = (max_len - eeprom->offset);	first_word = eeprom->offset >> 1;	last_word = (eeprom->offset + eeprom->len - 1) >> 1;	eeprom_buff = kmalloc(max_len, GFP_KERNEL);	if(eeprom_buff == NULL)		return -ENOMEM;	ptr = (void *)eeprom_buff;	if(eeprom->offset & 1) {		/* need read/modify/write of first changed EEPROM word */		/* only the second byte of the word is being modified */		ret_val = e1000_read_eeprom(hw, first_word, 1,					    &eeprom_buff[0]);		ptr++;	}	if(((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) {		/* need read/modify/write of last changed EEPROM word */		/* only the first byte of the word is being modified */		ret_val = e1000_read_eeprom(hw, last_word, 1,		                  &eeprom_buff[last_word - first_word]);	}	if((ret_val != 0) || copy_from_user(ptr, user_data, eeprom->len)) {		ret_val = -EFAULT;		goto seeprom_error;	}	ret_val = e1000_write_eeprom(hw, first_word,				     last_word - first_word + 1, eeprom_buff);	/* Update the checksum over the first part of the EEPROM if needed */	if((ret_val == 0) && first_word <= EEPROM_CHECKSUM_REG)		e1000_update_eeprom_checksum(hw);seeprom_error:	kfree(eeprom_buff);	return ret_val;}static voide1000_ethtool_gwol(struct e1000_adapter *adapter, struct ethtool_wolinfo *wol){	struct e1000_hw *hw = &adapter->hw;	switch(adapter->hw.device_id) {	case E1000_DEV_ID_82542:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -