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

📄 natsemi.c

📁 i386的bootloader源码grub
💻 C
📖 第 1 页 / 共 2 页
字号:
/* -*- Mode:C; c-basic-offset:4; -*- *//*    natsemi.c: An Etherboot driver for the NatSemi DP8381x series.   Copyright (C) 2001 Entity Cyber, Inc.      This development of this Etherboot driver was funded by          Sicom Systems: http://www.sicompos.com/      Author: Marty Connor (mdc@thinguin.org)	      Adapted from a Linux driver which was written by Donald Becker      This software may be used and distributed according to the terms   of the GNU Public License (GPL), incorporated herein by reference.      Original Copyright Notice:      Written/copyright 1999-2001 by Donald Becker.      This software may be used and distributed according to the terms of   the GNU General Public License (GPL), incorporated herein by reference.   Drivers based on or derived from this code fall under the GPL and must   retain the authorship, copyright and license notice.  This file is not   a complete program and may only be used when the entire operating   system is licensed under the GPL.  License for under other terms may be   available.  Contact the original author for details.      The original author may be reached as becker@scyld.com, or at   Scyld Computing Corporation   410 Severn Ave., Suite 210   Annapolis MD 21403      Support information and updates available at   http://www.scyld.com/network/netsemi.html      References:      http://www.scyld.com/expert/100mbps.html   http://www.scyld.com/expert/NWay.html   Datasheet is available from:   http://www.national.com/pf/DP/DP83815.html*//* Revision History *//*  29 May 2001  mdc     1.0     Initial Release.  Tested with Netgear FA311 and FA312 boards*//* Includes */#include "etherboot.h"#include "nic.h"#include "pci.h"#include "cards.h"/* defines */#define OWN       0x80000000#define DSIZE     0x00000FFF#define CRC_SIZE  4/* Time in ticks before concluding the transmitter is hung. */#define TX_TIMEOUT       (4*TICKS_PER_SEC)#define TX_BUF_SIZE    1536#define RX_BUF_SIZE    1536#define NUM_RX_DESC    4              /* Number of Rx descriptor registers. */typedef unsigned char  u8;typedef   signed char  s8;typedef unsigned short u16;typedef   signed short s16;typedef unsigned int   u32;typedef   signed int   s32;/* helpful macroes if on a big_endian machine for changing byte order.   not strictly needed on Intel */#define le16_to_cpu(val) (val)#define cpu_to_le32(val) (val)#define get_unaligned(ptr) (*(ptr))#define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))#define get_u16(ptr) (*(u16 *)(ptr))#define virt_to_bus(x) ((unsigned long)x)#define virt_to_le32desc(addr)  virt_to_bus(addr)enum pcistuff {    PCI_USES_IO     = 0x01,    PCI_USES_MEM    = 0x02,    PCI_USES_MASTER = 0x04,    PCI_ADDR0       = 0x08,    PCI_ADDR1       = 0x10,};/* MMIO operations required */#define PCI_IOTYPE (PCI_USES_MASTER | PCI_USES_MEM | PCI_ADDR1)/* Offsets to the device registers.   Unlike software-only systems, device drivers interact with complex hardware.   It's not useful to define symbolic names for every register bit in the   device.*/enum register_offsets {    ChipCmd      = 0x00,     ChipConfig   = 0x04,     EECtrl       = 0x08,     PCIBusCfg    = 0x0C,    IntrStatus   = 0x10,     IntrMask     = 0x14,     IntrEnable   = 0x18,    TxRingPtr    = 0x20,     TxConfig     = 0x24,    RxRingPtr    = 0x30,    RxConfig     = 0x34,     ClkRun       = 0x3C,    WOLCmd       = 0x40,     PauseCmd     = 0x44,    RxFilterAddr = 0x48,     RxFilterData = 0x4C,    BootRomAddr  = 0x50,     BootRomData  = 0x54,     SiliconRev   = 0x58,     StatsCtrl    = 0x5C,    StatsData    = 0x60,     RxPktErrs    = 0x60,     RxMissed     = 0x68,     RxCRCErrs    = 0x64,    PCIPM        = 0x44,    PhyStatus    = 0xC0,     MIntrCtrl    = 0xC4,     MIntrStatus  = 0xC8,    /* These are from the spec, around page 78... on a separate table. */    PGSEL        = 0xCC,     PMDCSR       = 0xE4,     TSTDAT       = 0xFC,     DSPCFG       = 0xF4,     SDCFG        = 0x8C};/* Bit in ChipCmd. */enum ChipCmdBits {    ChipReset = 0x100,     RxReset   = 0x20,     TxReset   = 0x10,     RxOff     = 0x08,     RxOn      = 0x04,    TxOff     = 0x02,     TxOn      = 0x01};/* Bits in the RxMode register. */enum rx_mode_bits {    AcceptErr          = 0x20,    AcceptRunt         = 0x10,    AcceptBroadcast    = 0xC0000000,    AcceptMulticast    = 0x00200000,     AcceptAllMulticast = 0x20000000,    AcceptAllPhys      = 0x10000000,     AcceptMyPhys       = 0x08000000};typedef struct _BufferDesc {    u32              link;    volatile u32     cmdsts;    u32              bufptr;    u32				 software_use;} BufferDesc;/* Bits in network_desc.status */enum desc_status_bits {    DescOwn   = 0x80000000,     DescMore  = 0x40000000,     DescIntr  = 0x20000000,    DescNoCRC = 0x10000000,    DescPktOK = 0x08000000,     RxTooLong = 0x00400000};/* Globals */static int natsemi_debug = 1;			/* 1 normal messages, 0 quiet .. 7 verbose. */const char *nic_name;static u32 SavedClkRun;static unsigned short vendor, dev_id;static unsigned long ioaddr;static unsigned int cur_rx;static unsigned int advertising;static unsigned int rx_config;static unsigned int tx_config;/* Note: transmit and receive buffers and descriptors must be    longword aligned */static BufferDesc txd              __attribute__ ((aligned(4)));static BufferDesc rxd[NUM_RX_DESC] __attribute__ ((aligned(4)));#ifdef USE_LOWMEM_BUFFER#define txb ((char *)0x10000 - TX_BUF_SIZE)#define rxb ((char *)0x10000 - NUM_RX_DESC*RX_BUF_SIZE - TX_BUF_SIZE)#elsestatic unsigned char txb[TX_BUF_SIZE] __attribute__ ((aligned(4)));static unsigned char rxb[NUM_RX_DESC * RX_BUF_SIZE] __attribute__ ((aligned(4)));#endif/* Function Prototypes */struct nic *natsemi_probe(struct nic *nic, unsigned short *io_addrs, struct pci_device *pci);static int eeprom_read(long addr, int location);static int mdio_read(int phy_id, int location);static void natsemi_init(struct nic *nic);static void natsemi_reset(struct nic *nic);static void natsemi_init_rxfilter(struct nic *nic);static void natsemi_init_txd(struct nic *nic);static void natsemi_init_rxd(struct nic *nic);static void natsemi_set_rx_mode(struct nic *nic);static void natsemi_check_duplex(struct nic *nic);static void natsemi_transmit(struct nic *nic, const char *d, unsigned int t, unsigned int s, const char *p);static int  natsemi_poll(struct nic *nic);static void natsemi_disable(struct nic *nic);/*  * Function: natsemi_probe * * Description: Retrieves the MAC address of the card, and sets up some * globals required by other routines,  and initializes the NIC, making it * ready to send and receive packets. * * Side effects: *            leaves the ioaddress of the natsemi chip in the variable ioaddr. *            leaves the natsemi initialized, and ready to recieve packets. * * Returns:   struct nic *:          pointer to NIC data structure */struct nic *natsemi_probe(struct nic *nic, unsigned short *io_addrs, struct pci_device *pci){    int i;    int prev_eedata;    u32 tmp;    if (io_addrs == 0 || *io_addrs == 0)        return NULL;    /* initialize some commonly used globals */	    ioaddr     = *io_addrs & ~3;    vendor     = pci->vendor;    dev_id     = pci->dev_id;    nic_name   = pci->name;        adjust_pci_device(pci);    /* natsemi has a non-standard PM control register     * in PCI config space.  Some boards apparently need     * to be brought to D0 in this manner.     */    pcibios_read_config_dword(pci->bus, pci->devfn, PCIPM, &tmp);    if (tmp & (0x03|0x100)) {	/* D0 state, disable PME assertion */	u32 newtmp = tmp & ~(0x03|0x100);	pcibios_write_config_dword(pci->bus, pci->devfn, PCIPM, newtmp);    }    /* get MAC address */    prev_eedata = eeprom_read(ioaddr, 6);    for (i = 0; i < 3; i++) {	int eedata = eeprom_read(ioaddr, i + 7);	nic->node_addr[i*2] = (eedata << 1) + (prev_eedata >> 15);	nic->node_addr[i*2+1] = eedata >> 7;	prev_eedata = eedata;    }    printf("\nnatsemi_probe: MAC addr %! at ioaddr %#hX\n",           nic->node_addr, ioaddr);    printf("natsemi_probe: Vendor:%#hX Device:%#hX\n", vendor, dev_id);        /* Reset the chip to erase any previous misconfiguration. */    outl(ChipReset, ioaddr + ChipCmd);    advertising = mdio_read(1, 4);    {	u32 chip_config = inl(ioaddr + ChipConfig);	printf("%s: Transceiver default autoneg. %s "	       "10%s %s duplex.\n",	       nic_name,	       chip_config & 0x2000 ? "enabled, advertise" : "disabled, force",	       chip_config & 0x4000 ? "0" : "",	       chip_config & 0x8000 ? "full" : "half");    }    printf("%s: Transceiver status %hX advertising %hX\n",	   nic_name, (int)inl(ioaddr + 0x84), advertising);    /* Disable PME:     * The PME bit is initialized from the EEPROM contents.     * PCI cards probably have PME disabled, but motherboard     * implementations may have PME set to enable WakeOnLan.      * With PME set the chip will scan incoming packets but     * nothing will be written to memory. */    SavedClkRun = inl(ioaddr + ClkRun);    outl(SavedClkRun & ~0x100, ioaddr + ClkRun);    /* initialize device */    natsemi_init(nic);    nic->reset    = natsemi_init;    nic->poll     = natsemi_poll;    nic->transmit = natsemi_transmit;    nic->disable  = natsemi_disable;    return nic;}/* Read the EEPROM and MII Management Data I/O (MDIO) interfaces.   The EEPROM code is for the common 93c06/46 EEPROMs with 6 bit addresses. *//* Delay between EEPROM clock transitions.   No extra delay is needed with 33Mhz PCI, but future 66Mhz access may need   a delay. */#define eeprom_delay(ee_addr)	inl(ee_addr)enum EEPROM_Ctrl_Bits {    EE_ShiftClk   = 0x04,     EE_DataIn     = 0x01,     EE_ChipSelect = 0x08,     EE_DataOut    = 0x02};#define EE_Write0 (EE_ChipSelect)#define EE_Write1 (EE_ChipSelect | EE_DataIn)/* The EEPROM commands include the alway-set leading bit. */enum EEPROM_Cmds {    EE_WriteCmd=(5 << 6), EE_ReadCmd=(6 << 6), EE_EraseCmd=(7 << 6),};static int eeprom_read(long addr, int location){    int i;    int retval = 0;    int ee_addr = addr + EECtrl;    int read_cmd = location | EE_ReadCmd;    outl(EE_Write0, ee_addr);    /* Shift the read command bits out. */    for (i = 10; i >= 0; i--) {	short dataval = (read_cmd & (1 << i)) ? EE_Write1 : EE_Write0;	outl(dataval, ee_addr);	eeprom_delay(ee_addr);	outl(dataval | EE_ShiftClk, ee_addr);	eeprom_delay(ee_addr);    }    outl(EE_ChipSelect, ee_addr);    eeprom_delay(ee_addr);

⌨️ 快捷键说明

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