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

📄 atl1_hw.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
	 */	hash_reg = (hash_value >> 31) & 0x1;	hash_bit = (hash_value >> 26) & 0x1F;	mta = ioread32((hw->hw_addr + REG_RX_HASH_TABLE) + (hash_reg << 2));	mta |= (1 << hash_bit);	iowrite32(mta, (hw->hw_addr + REG_RX_HASH_TABLE) + (hash_reg << 2));}/* * Writes a value to a PHY register * hw - Struct containing variables accessed by shared code * reg_addr - address of the PHY register to write * data - data to write to the PHY */s32 atl1_write_phy_reg(struct atl1_hw *hw, u32 reg_addr, u16 phy_data){	int i;	u32 val;	val = ((u32) (phy_data & MDIO_DATA_MASK)) << MDIO_DATA_SHIFT |	    (reg_addr & MDIO_REG_ADDR_MASK) << MDIO_REG_ADDR_SHIFT |	    MDIO_SUP_PREAMBLE |	    MDIO_START | MDIO_CLK_25_4 << MDIO_CLK_SEL_SHIFT;	iowrite32(val, hw->hw_addr + REG_MDIO_CTRL);	ioread32(hw->hw_addr + REG_MDIO_CTRL);	for (i = 0; i < MDIO_WAIT_TIMES; i++) {		udelay(2);		val = ioread32(hw->hw_addr + REG_MDIO_CTRL);		if (!(val & (MDIO_START | MDIO_BUSY)))			break;	}	if (!(val & (MDIO_START | MDIO_BUSY)))		return ATL1_SUCCESS;	return ATL1_ERR_PHY;}/* * Make L001's PHY out of Power Saving State (bug) * hw - Struct containing variables accessed by shared code * when power on, L001's PHY always on Power saving State * (Gigabit Link forbidden) */static s32 atl1_phy_leave_power_saving(struct atl1_hw *hw){	s32 ret;	ret = atl1_write_phy_reg(hw, 29, 0x0029);	if (ret)		return ret;	return atl1_write_phy_reg(hw, 30, 0);}/* *TODO: do something or get rid of this */s32 atl1_phy_enter_power_saving(struct atl1_hw *hw){/*    s32 ret_val; *    u16 phy_data; *//*    ret_val = atl1_write_phy_reg(hw, ...);    ret_val = atl1_write_phy_reg(hw, ...);    ....*/	return ATL1_SUCCESS;}/* * Resets the PHY and make all config validate * hw - Struct containing variables accessed by shared code * * Sets bit 15 and 12 of the MII Control regiser (for F001 bug) */static s32 atl1_phy_reset(struct atl1_hw *hw){	struct pci_dev *pdev = hw->back->pdev;	s32 ret_val;	u16 phy_data;	if (hw->media_type == MEDIA_TYPE_AUTO_SENSOR ||	    hw->media_type == MEDIA_TYPE_1000M_FULL)		phy_data = MII_CR_RESET | MII_CR_AUTO_NEG_EN;	else {		switch (hw->media_type) {		case MEDIA_TYPE_100M_FULL:			phy_data =			    MII_CR_FULL_DUPLEX | MII_CR_SPEED_100 |			    MII_CR_RESET;			break;		case MEDIA_TYPE_100M_HALF:			phy_data = MII_CR_SPEED_100 | MII_CR_RESET;			break;		case MEDIA_TYPE_10M_FULL:			phy_data =			    MII_CR_FULL_DUPLEX | MII_CR_SPEED_10 | MII_CR_RESET;			break;		default:	/* MEDIA_TYPE_10M_HALF: */			phy_data = MII_CR_SPEED_10 | MII_CR_RESET;			break;		}	}	ret_val = atl1_write_phy_reg(hw, MII_BMCR, phy_data);	if (ret_val) {		u32 val;		int i;		/* pcie serdes link may be down! */		dev_dbg(&pdev->dev, "pcie phy link down\n");		for (i = 0; i < 25; i++) {			msleep(1);			val = ioread32(hw->hw_addr + REG_MDIO_CTRL);			if (!(val & (MDIO_START | MDIO_BUSY)))				break;		}		if ((val & (MDIO_START | MDIO_BUSY)) != 0) {			dev_warn(&pdev->dev, "pcie link down at least 25ms\n");			return ret_val;		}	}	return ATL1_SUCCESS;}/* * Configures PHY autoneg and flow control advertisement settings * hw - Struct containing variables accessed by shared code */s32 atl1_phy_setup_autoneg_adv(struct atl1_hw *hw){	s32 ret_val;	s16 mii_autoneg_adv_reg;	s16 mii_1000t_ctrl_reg;	/* Read the MII Auto-Neg Advertisement Register (Address 4). */	mii_autoneg_adv_reg = MII_AR_DEFAULT_CAP_MASK;	/* Read the MII 1000Base-T Control Register (Address 9). */	mii_1000t_ctrl_reg = MII_AT001_CR_1000T_DEFAULT_CAP_MASK;	/*	 * First we clear all the 10/100 mb speed bits in the Auto-Neg	 * Advertisement Register (Address 4) and the 1000 mb speed bits in	 * the  1000Base-T Control Register (Address 9).	 */	mii_autoneg_adv_reg &= ~MII_AR_SPEED_MASK;	mii_1000t_ctrl_reg &= ~MII_AT001_CR_1000T_SPEED_MASK;	/*	 * Need to parse media_type  and set up	 * the appropriate PHY registers.	 */	switch (hw->media_type) {	case MEDIA_TYPE_AUTO_SENSOR:		mii_autoneg_adv_reg |= (MII_AR_10T_HD_CAPS |					MII_AR_10T_FD_CAPS |					MII_AR_100TX_HD_CAPS |					MII_AR_100TX_FD_CAPS);		mii_1000t_ctrl_reg |= MII_AT001_CR_1000T_FD_CAPS;		break;	case MEDIA_TYPE_1000M_FULL:		mii_1000t_ctrl_reg |= MII_AT001_CR_1000T_FD_CAPS;		break;	case MEDIA_TYPE_100M_FULL:		mii_autoneg_adv_reg |= MII_AR_100TX_FD_CAPS;		break;	case MEDIA_TYPE_100M_HALF:		mii_autoneg_adv_reg |= MII_AR_100TX_HD_CAPS;		break;	case MEDIA_TYPE_10M_FULL:		mii_autoneg_adv_reg |= MII_AR_10T_FD_CAPS;		break;	default:		mii_autoneg_adv_reg |= MII_AR_10T_HD_CAPS;		break;	}	/* flow control fixed to enable all */	mii_autoneg_adv_reg |= (MII_AR_ASM_DIR | MII_AR_PAUSE);	hw->mii_autoneg_adv_reg = mii_autoneg_adv_reg;	hw->mii_1000t_ctrl_reg = mii_1000t_ctrl_reg;	ret_val = atl1_write_phy_reg(hw, MII_ADVERTISE, mii_autoneg_adv_reg);	if (ret_val)		return ret_val;	ret_val = atl1_write_phy_reg(hw, MII_AT001_CR, mii_1000t_ctrl_reg);	if (ret_val)		return ret_val;	return ATL1_SUCCESS;}/* * Configures link settings. * hw - Struct containing variables accessed by shared code * Assumes the hardware has previously been reset and the * transmitter and receiver are not enabled. */static s32 atl1_setup_link(struct atl1_hw *hw){	struct pci_dev *pdev = hw->back->pdev;	s32 ret_val;	/*	 * Options:	 *  PHY will advertise value(s) parsed from	 *  autoneg_advertised and fc	 *  no matter what autoneg is , We will not wait link result.	 */	ret_val = atl1_phy_setup_autoneg_adv(hw);	if (ret_val) {		dev_dbg(&pdev->dev, "error setting up autonegotiation\n");		return ret_val;	}	/* SW.Reset , En-Auto-Neg if needed */	ret_val = atl1_phy_reset(hw);	if (ret_val) {		dev_dbg(&pdev->dev, "error resetting phy\n");		return ret_val;	}	hw->phy_configured = true;	return ret_val;}static struct atl1_spi_flash_dev flash_table[] = {/*	MFR_NAME  WRSR  READ  PRGM  WREN  WRDI  RDSR  RDID  SECTOR_ERASE CHIP_ERASE */	{"Atmel", 0x00, 0x03, 0x02, 0x06, 0x04, 0x05, 0x15, 0x52,        0x62},	{"SST",   0x01, 0x03, 0x02, 0x06, 0x04, 0x05, 0x90, 0x20,        0x60},	{"ST",    0x01, 0x03, 0x02, 0x06, 0x04, 0x05, 0xAB, 0xD8,        0xC7},};static void atl1_init_flash_opcode(struct atl1_hw *hw){	if (hw->flash_vendor >= ARRAY_SIZE(flash_table))		hw->flash_vendor = 0;	/* ATMEL */	/* Init OP table */	iowrite8(flash_table[hw->flash_vendor].cmd_program,		hw->hw_addr + REG_SPI_FLASH_OP_PROGRAM);	iowrite8(flash_table[hw->flash_vendor].cmd_sector_erase,		hw->hw_addr + REG_SPI_FLASH_OP_SC_ERASE);	iowrite8(flash_table[hw->flash_vendor].cmd_chip_erase,		hw->hw_addr + REG_SPI_FLASH_OP_CHIP_ERASE);	iowrite8(flash_table[hw->flash_vendor].cmd_rdid,		hw->hw_addr + REG_SPI_FLASH_OP_RDID);	iowrite8(flash_table[hw->flash_vendor].cmd_wren,		hw->hw_addr + REG_SPI_FLASH_OP_WREN);	iowrite8(flash_table[hw->flash_vendor].cmd_rdsr,		hw->hw_addr + REG_SPI_FLASH_OP_RDSR);	iowrite8(flash_table[hw->flash_vendor].cmd_wrsr,		hw->hw_addr + REG_SPI_FLASH_OP_WRSR);	iowrite8(flash_table[hw->flash_vendor].cmd_read,		hw->hw_addr + REG_SPI_FLASH_OP_READ);}/* * Performs basic configuration of the adapter. * hw - Struct containing variables accessed by shared code * Assumes that the controller has previously been reset and is in a * post-reset uninitialized state. Initializes multicast table, * and  Calls routines to setup link * Leaves the transmit and receive units disabled and uninitialized. */s32 atl1_init_hw(struct atl1_hw *hw){	u32 ret_val = 0;	/* Zero out the Multicast HASH table */	iowrite32(0, hw->hw_addr + REG_RX_HASH_TABLE);	/* clear the old settings from the multicast hash table */	iowrite32(0, (hw->hw_addr + REG_RX_HASH_TABLE) + (1 << 2));	atl1_init_flash_opcode(hw);	if (!hw->phy_configured) {		/* enable GPHY LinkChange Interrrupt */		ret_val = atl1_write_phy_reg(hw, 18, 0xC00);		if (ret_val)			return ret_val;		/* make PHY out of power-saving state */		ret_val = atl1_phy_leave_power_saving(hw);		if (ret_val)			return ret_val;		/* Call a subroutine to configure the link */		ret_val = atl1_setup_link(hw);	}	return ret_val;}/* * Detects the current speed and duplex settings of the hardware. * hw - Struct containing variables accessed by shared code * speed - Speed of the connection * duplex - Duplex setting of the connection */s32 atl1_get_speed_and_duplex(struct atl1_hw *hw, u16 *speed, u16 *duplex){	struct pci_dev *pdev = hw->back->pdev;	s32 ret_val;	u16 phy_data;	/* ; --- Read   PHY Specific Status Register (17) */	ret_val = atl1_read_phy_reg(hw, MII_AT001_PSSR, &phy_data);	if (ret_val)		return ret_val;	if (!(phy_data & MII_AT001_PSSR_SPD_DPLX_RESOLVED))		return ATL1_ERR_PHY_RES;	switch (phy_data & MII_AT001_PSSR_SPEED) {	case MII_AT001_PSSR_1000MBS:		*speed = SPEED_1000;		break;	case MII_AT001_PSSR_100MBS:		*speed = SPEED_100;		break;	case MII_AT001_PSSR_10MBS:		*speed = SPEED_10;		break;	default:		dev_dbg(&pdev->dev, "error getting speed\n");		return ATL1_ERR_PHY_SPEED;		break;	}	if (phy_data & MII_AT001_PSSR_DPLX)		*duplex = FULL_DUPLEX;	else		*duplex = HALF_DUPLEX;	return ATL1_SUCCESS;}void atl1_set_mac_addr(struct atl1_hw *hw){	u32 value;	/*	 * 00-0B-6A-F6-00-DC	 * 0:  6AF600DC   1: 000B	 * low dword	 */	value = (((u32) hw->mac_addr[2]) << 24) |	    (((u32) hw->mac_addr[3]) << 16) |	    (((u32) hw->mac_addr[4]) << 8) | (((u32) hw->mac_addr[5]));	iowrite32(value, hw->hw_addr + REG_MAC_STA_ADDR);	/* high dword */	value = (((u32) hw->mac_addr[0]) << 8) | (((u32) hw->mac_addr[1]));	iowrite32(value, (hw->hw_addr + REG_MAC_STA_ADDR) + (1 << 2));}

⌨️ 快捷键说明

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