📄 apne.c
字号:
/* * Amiga Linux/68k 8390 based PCMCIA Ethernet Driver for the Amiga 1200 * * (C) Copyright 1997 Alain Malek * (Alain.Malek@cryogen.com) * * ---------------------------------------------------------------------------- * * This program is based on * * ne.c: A general non-shared-memory NS8390 ethernet driver for linux * Written 1992-94 by Donald Becker. * * 8390.c: A general NS8390 ethernet driver core for linux. * Written 1992-94 by Donald Becker. * * cnetdevice: A Sana-II ethernet driver for AmigaOS * Written by Bruce Abbott (bhabbott@inhb.co.nz) * * ---------------------------------------------------------------------------- * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Linux * distribution for more details. * * ---------------------------------------------------------------------------- * */#include <linux/module.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/errno.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/delay.h>#include <asm/system.h>#include <asm/io.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <asm/setup.h>#include <asm/amigaints.h>#include <asm/amigahw.h>#include <asm/amigayle.h>#include <asm/amipcmcia.h>#include "8390.h"/* ---- No user-serviceable parts below ---- */#define NE_BASE (dev->base_addr)#define NE_CMD 0x00#define NE_DATAPORT 0x10 /* NatSemi-defined port window offset. */#define NE_RESET 0x1f+GAYLE_ODD /* Issue a read to reset, a write to clear. */#define NE_IO_EXTENT 0x20#define NE_EN0_ISR 0x07+GAYLE_ODD#define NE_EN0_DCFG 0x0e#define NE_EN0_RSARLO 0x08#define NE_EN0_RSARHI 0x09+GAYLE_ODD#define NE_EN0_RCNTLO 0x0a#define NE_EN0_RXCR 0x0c#define NE_EN0_TXCR 0x0d+GAYLE_ODD#define NE_EN0_RCNTHI 0x0b+GAYLE_ODD#define NE_EN0_IMR 0x0f+GAYLE_ODD#define NE1SM_START_PG 0x20 /* First page of TX buffer */#define NE1SM_STOP_PG 0x40 /* Last page +1 of RX ring */#define NESM_START_PG 0x40 /* First page of TX buffer */#define NESM_STOP_PG 0x80 /* Last page +1 of RX ring */int apne_probe(struct device *dev);static int apne_probe1(struct device *dev, int ioaddr);static int apne_open(struct device *dev);static int apne_close(struct device *dev);static void apne_reset_8390(struct device *dev);static void apne_get_8390_hdr(struct device *dev, struct e8390_pkt_hdr *hdr, int ring_page);static void apne_block_input(struct device *dev, int count, struct sk_buff *skb, int ring_offset);static void apne_block_output(struct device *dev, const int count, const unsigned char *buf, const int start_page);static void apne_interrupt(int irq, void *dev_id, struct pt_regs *regs);static int init_pcmcia(void);/* IO base address used for nic */#define IOBASE 0x300/* use MANUAL_CONFIG and MANUAL_OFFSET for enabling IO by hand you can find the values to use by looking at the cnet.device config file example (the default values are for the CNET40BC card)*//*#define MANUAL_CONFIG 0x20#define MANUAL_OFFSET 0x3f8#define MANUAL_HWADDR0 0x00#define MANUAL_HWADDR1 0x12#define MANUAL_HWADDR2 0x34#define MANUAL_HWADDR3 0x56#define MANUAL_HWADDR4 0x78#define MANUAL_HWADDR5 0x9a*/#define WORDSWAP(a) ( (((a)>>8)&0xff) | ((a)<<8) )static const char *version = "apne.c:v1.1 7/10/98 Alain Malek (Alain.Malek@cryogen.ch)\n";static int apne_owned = 0; /* signal if card already owned */__initfunc(int apne_probe(struct device *dev)){#ifndef MANUAL_CONFIG char tuple[8];#endif if (apne_owned) return -ENODEV; if ( !(AMIGAHW_PRESENT(PCMCIA)) ) return (-ENODEV); printk("Looking for PCMCIA ethernet card : "); /* check if a card is inserted */ if (!(PCMCIA_INSERTED)) { printk("NO PCMCIA card inserted\n"); return (-ENODEV); } /* disable pcmcia irq for readtuple */ pcmcia_disable_irq();#ifndef MANUAL_CONFIG if ((pcmcia_copy_tuple(CISTPL_FUNCID, tuple, 8) < 3) || (tuple[2] != CISTPL_FUNCID_NETWORK)) { printk("not an ethernet card\n"); return (-ENODEV); }#endif printk("ethernet PCMCIA card inserted\n"); if (init_pcmcia()) return apne_probe1(dev, IOBASE+GAYLE_IO); else return (-ENODEV);}__initfunc(static int apne_probe1(struct device *dev, int ioaddr)){ int i; unsigned char SA_prom[32]; int wordlength = 2; const char *name = NULL; int start_page, stop_page;#ifndef MANUAL_HWADDR0 int neX000, ctron;#endif static unsigned version_printed = 0; static u32 pcmcia_offsets[16]={ 0, 1+GAYLE_ODD, 2, 3+GAYLE_ODD, 4, 5+GAYLE_ODD, 6, 7+GAYLE_ODD, 8, 9+GAYLE_ODD, 0xa, 0xb+GAYLE_ODD, 0xc, 0xd+GAYLE_ODD, 0xe, 0xf+GAYLE_ODD }; if (load_8390_module("apne.c")) return -ENOSYS; /* We should have a "dev" from Space.c or the static module table. */ if (dev == NULL) { printk(KERN_ERR "apne.c: Passed a NULL device.\n"); dev = init_etherdev(0, 0); } if (ei_debug && version_printed++ == 0) printk(version); printk("PCMCIA NE*000 ethercard probe"); /* Reset card. Who knows what dain-bramaged state it was left in. */ { unsigned long reset_start_time = jiffies; writeb(readb(ioaddr + NE_RESET), ioaddr + NE_RESET); while ((readb(ioaddr + NE_EN0_ISR) & ENISR_RESET) == 0) if (jiffies - reset_start_time > 2*HZ/100) { printk(" not found (no reset ack).\n"); return -ENODEV; } writeb(0xff, ioaddr + NE_EN0_ISR); /* Ack all intr. */ }#ifndef MANUAL_HWADDR0 /* Read the 16 bytes of station address PROM. We must first initialize registers, similar to NS8390_init(eifdev, 0). We can't reliably read the SAPROM address without this. (I learned the hard way!). */ { struct {unsigned long value, offset; } program_seq[] = { {E8390_NODMA+E8390_PAGE0+E8390_STOP, NE_CMD}, /* Select page 0*/ {0x48, NE_EN0_DCFG}, /* Set byte-wide (0x48) access. */ {0x00, NE_EN0_RCNTLO}, /* Clear the count regs. */ {0x00, NE_EN0_RCNTHI}, {0x00, NE_EN0_IMR}, /* Mask completion irq. */ {0xFF, NE_EN0_ISR}, {E8390_RXOFF, NE_EN0_RXCR}, /* 0x20 Set to monitor */ {E8390_TXOFF, NE_EN0_TXCR}, /* 0x02 and loopback mode. */ {32, NE_EN0_RCNTLO}, {0x00, NE_EN0_RCNTHI}, {0x00, NE_EN0_RSARLO}, /* DMA starting at 0x0000. */ {0x00, NE_EN0_RSARHI}, {E8390_RREAD+E8390_START, NE_CMD}, }; for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++) { writeb(program_seq[i].value, ioaddr + program_seq[i].offset); } } for(i = 0; i < 32 /*sizeof(SA_prom)*/; i+=2) { SA_prom[i] = readb(ioaddr + NE_DATAPORT); SA_prom[i+1] = readb(ioaddr + NE_DATAPORT); if (SA_prom[i] != SA_prom[i+1]) wordlength = 1; } /* At this point, wordlength *only* tells us if the SA_prom is doubled up or not because some broken PCI cards don't respect the byte-wide request in program_seq above, and hence don't have doubled up values. These broken cards would otherwise be detected as an ne1000. */ if (wordlength == 2) for (i = 0; i < 16; i++) SA_prom[i] = SA_prom[i+i]; if (wordlength == 2) { /* We must set the 8390 for word mode. */ writeb(0x49, ioaddr + NE_EN0_DCFG); start_page = NESM_START_PG; stop_page = NESM_STOP_PG; } else { start_page = NE1SM_START_PG; stop_page = NE1SM_STOP_PG; } neX000 = (SA_prom[14] == 0x57 && SA_prom[15] == 0x57); ctron = (SA_prom[0] == 0x00 && SA_prom[1] == 0x00 && SA_prom[2] == 0x1d); /* Set up the rest of the parameters. */ if (neX000) { name = (wordlength == 2) ? "NE2000" : "NE1000"; } else if (ctron) { name = (wordlength == 2) ? "Ctron-8" : "Ctron-16"; start_page = 0x01; stop_page = (wordlength == 2) ? 0x40 : 0x20; } else { printk(" not found.\n"); return ENXIO; }#else wordlength = 2; /* We must set the 8390 for word mode. */ writeb(0x49, ioaddr + NE_EN0_DCFG); start_page = NESM_START_PG; stop_page = NESM_STOP_PG; SA_prom[0] = MANUAL_HWADDR0; SA_prom[1] = MANUAL_HWADDR1; SA_prom[2] = MANUAL_HWADDR2; SA_prom[3] = MANUAL_HWADDR3; SA_prom[4] = MANUAL_HWADDR4; SA_prom[5] = MANUAL_HWADDR5; name = "NE2000";#endif dev->base_addr = ioaddr; /* Install the Interrupt handler */ if (request_irq(IRQ_AMIGA_PORTS, apne_interrupt, 0, "apne Ethernet", dev)) return -EAGAIN; /* Allocate dev->priv and fill in 8390 specific dev fields. */ if (ethdev_init(dev)) { printk (" unable to get memory for dev->priv.\n"); return -ENOMEM; } for(i = 0; i < ETHER_ADDR_LEN; i++) { printk(" %2.2x", SA_prom[i]); dev->dev_addr[i] = SA_prom[i]; } printk("\n%s: %s found.\n", dev->name, name); ei_status.name = name; ei_status.tx_start_page = start_page; ei_status.stop_page = stop_page; ei_status.word16 = (wordlength == 2); ei_status.rx_start_page = start_page + TX_PAGES;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -