root/drivers/net/hp.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. hp_probe
  2. hpprobe1
  3. hp_reset_8390
  4. hp_block_input
  5. hp_block_output
  6. hp_init_card

   1 /* hp.c: A HP LAN ethernet driver for linux. */
   2 /*
   3         Written 1993 by Donald Becker.
   4         Copyright 1993 United States Government as represented by the
   5         Director, National Security Agency.      This software may be used and
   6         distributed according to the terms of the GNU Public License,
   7         incorporated herein by reference.
   8 
   9         This is a driver for the HP LAN adaptors.
  10 
  11         The Author may be reached as becker@super.org or
  12         C/O Supercomputing Research Ctr., 17100 Science Dr., Bowie MD 20715
  13 */
  14 
  15 static char *version =
  16         "hp.c:v0.99.15c 2/11/94 Donald Becker (becker@super.org)\n";
  17 
  18 #include <linux/config.h>
  19 #include <linux/kernel.h>
  20 #include <linux/sched.h>
  21 #include <linux/errno.h>
  22 #include <linux/ioport.h>
  23 #include <asm/system.h>
  24 #include <asm/io.h>
  25 
  26 #include "dev.h"
  27 #include "8390.h"
  28 
  29 #ifndef HAVE_PORTRESERVE
  30 #define check_region(ioaddr, size)                              0
  31 #define snarf_region(ioaddr, size);                             do ; while (0)
  32 #endif
  33 
  34 #define HP_IO_EXTENT    32
  35 
  36 #define HP_DATAPORT             0x0c    /* "Remote DMA" data port. */
  37 #define HP_ID                   0x07
  38 #define HP_CONFIGURE    0x08    /* Configuration register. */
  39 #define  HP_RUN                 0x01    /* 1 == Run, 0 == reset. */
  40 #define  HP_IRQ                 0x0E    /* Mask for software-configured IRQ line. */
  41 #define  HP_DATAON              0x10    /* Turn on dataport */
  42 #define NIC_OFFSET              0x10    /* Offset the 8390 registers. */
  43 
  44 #define HP_START_PG             0x00    /* First page of TX buffer */
  45 #define HP_8BSTOP_PG    0x80    /* Last page +1 of RX ring */
  46 #define HP_16BSTOP_PG   0xFF    /* Same, for 16 bit cards. */
  47 
  48 int hp_probe(struct device *dev);
  49 int hpprobe1(struct device *dev, int ioaddr);
  50 
  51 static void hp_reset_8390(struct device *dev);
  52 static int hp_block_input(struct device *dev, int count,
  53                                                   char *buf, int ring_offset);
  54 static void hp_block_output(struct device *dev, int count,
  55                                                         const unsigned char *buf, const start_page);
  56 static void hp_init_card(struct device *dev);
  57 
  58 /* The map from IRQ number to HP_CONFIGURE register setting. */
  59 /* My default is IRQ5      0  1  2  3  4  5  6  7  8  9 10 11 */
  60 static char irqmap[16] = { 0, 0, 4, 6, 8,10, 0,14, 0, 4, 2,12,0,0,0,0};
  61 
  62 
  63 /*      Probe for an HP LAN adaptor.
  64         Also initialize the card and fill in STATION_ADDR with the station
  65         address. */
  66 
  67 int hp_probe(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
  68 {
  69         int *port, ports[] = {0x300, 0x320, 0x340, 0x280, 0x2C0, 0x200, 0x240, 0};
  70         short ioaddr = dev->base_addr;
  71 
  72         if (ioaddr > 0x1ff)                     /* Check a single specified location. */
  73                 return hpprobe1(dev, ioaddr);
  74         else if (ioaddr > 0)                            /* Don't probe at all. */
  75                 return ENXIO;
  76 
  77         for (port = &ports[0]; *port; port++) {
  78                 if (check_region(*port, HP_IO_EXTENT))
  79                         continue;
  80                 if (hpprobe1(dev, *port) == 0) {
  81                         return 0;
  82                 }
  83         }
  84         return ENODEV;
  85 }
  86 
  87 int hpprobe1(struct device *dev, int ioaddr)
     /* [previous][next][first][last][top][bottom][index][help] */
  88 {
  89         int i, board_id, wordmode;
  90         char *name;
  91         unsigned char *station_addr = dev->dev_addr;
  92 
  93         /* Check for the HP physical address, 08 00 09 xx xx xx. */
  94         /* This really isn't good enough: we may pick up HP LANCE boards
  95            also!  Avoid the lance 0x5757 signature. */
  96         if (inb(ioaddr) != 0x08
  97                 || inb(ioaddr+1) != 0x00
  98                 || inb(ioaddr+2) != 0x09
  99                 || inb(ioaddr+14) == 0x57)
 100                 return ENODEV;
 101 
 102         /* Set up the parameters based on the board ID.
 103            If you have additional mappings, please mail them to becker@super.org. */
 104         if ((board_id = inb(ioaddr + HP_ID)) & 0x80) {
 105                 name = "HP27247";
 106                 wordmode = 1;
 107         } else {
 108                 name = "HP27250";
 109                 wordmode = 0;
 110         }
 111 
 112         /* Grab the region so we can find another board if something fails. */
 113         snarf_region(ioaddr, HP_IO_EXTENT);
 114 
 115         printk("%s: %s (ID %02x) at %#3x,", dev->name, name, board_id, ioaddr);
 116 
 117         for(i = 0; i < ETHER_ADDR_LEN; i++)
 118                 printk(" %2.2x", station_addr[i] = inb(ioaddr + i));
 119 
 120         /* Snarf the interrupt now.  Someday this could be moved to open(). */
 121         if (dev->irq < 2) {
 122                 int irq_16list[] = { 11, 10, 5, 3, 4, 7, 9, 0};
 123                 int irq_8list[] = { 7, 5, 3, 4, 9, 0};
 124                 int *irqp = wordmode ? irq_16list : irq_8list;
 125                 do {
 126                         int irq = *irqp;
 127                         if (request_irq (irq, NULL) != -EBUSY) {
 128                                 autoirq_setup(0);
 129                                 /* Twinkle the interrupt, and check if it's seen. */
 130                                 outb_p(irqmap[irq] | HP_RUN, ioaddr + HP_CONFIGURE);
 131                                 outb_p( 0x00 | HP_RUN, ioaddr + HP_CONFIGURE);
 132                                 if (irq == autoirq_report(0)             /* It's a good IRQ line! */
 133                                         && request_irq (irq, &ei_interrupt) == 0) {
 134                                         printk(" selecting IRQ %d.\n", irq);
 135                                         dev->irq = *irqp;
 136                                         break;
 137                                 }
 138                         }
 139                 } while (*++irqp);
 140                 if (*irqp == 0) {
 141                         printk(" no free IRQ lines.\n");
 142                         return EBUSY;
 143                 }
 144         } else {
 145                 if (dev->irq == 2)
 146                         dev->irq = 9;
 147                 if (irqaction(dev->irq, &ei_sigaction)) {
 148                         printk (" unable to get IRQ %d.\n", dev->irq);
 149                         return EBUSY;
 150                 }
 151         }
 152 
 153         if (ei_debug > 1)
 154                 printk(version);
 155 
 156         /* Set the base address to point to the NIC, not the "real" base! */
 157         dev->base_addr = ioaddr + NIC_OFFSET;
 158 
 159         ethdev_init(dev);
 160 
 161         ei_status.name = name;
 162         ei_status.word16 = wordmode;
 163         ei_status.tx_start_page = HP_START_PG;
 164         ei_status.rx_start_page = HP_START_PG + TX_PAGES;
 165         ei_status.stop_page = wordmode ? HP_16BSTOP_PG : HP_8BSTOP_PG;
 166 
 167         ei_status.reset_8390 = &hp_reset_8390;
 168         ei_status.block_input = &hp_block_input;
 169         ei_status.block_output = &hp_block_output;
 170         hp_init_card(dev);
 171 
 172         return 0;
 173 }
 174 
 175 static void
 176 hp_reset_8390(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 177 {
 178         int hp_base = dev->base_addr - NIC_OFFSET;
 179         int saved_config = inb_p(hp_base + HP_CONFIGURE);
 180         int reset_start_time = jiffies;
 181 
 182         if (ei_debug > 1) printk("resetting the 8390 time=%d...", jiffies);
 183         outb_p(0x00, hp_base + HP_CONFIGURE);
 184         ei_status.txing = 0;
 185 
 186         sti();
 187         /* We shouldn't use the boguscount for timing, but this hasn't been
 188            checked yet, and you could hang your machine if jiffies break... */
 189         {
 190                 int boguscount = 150000;
 191                 while(jiffies - reset_start_time < 2)
 192                         if (boguscount-- < 0) {
 193                                 printk("jiffy failure (t=%d)...", jiffies);
 194                                 break;
 195                         }
 196         }
 197 
 198         outb_p(saved_config, hp_base + HP_CONFIGURE);
 199         while ((inb_p(hp_base+NIC_OFFSET+EN0_ISR) & ENISR_RESET) == 0)
 200                 if (jiffies - reset_start_time > 2) {
 201                         printk("%s: hp_reset_8390() did not complete.\n", dev->name);
 202                         return;
 203                 }
 204         if (ei_debug > 1) printk("8390 reset done (%d).", jiffies);
 205 }
 206 
 207 /* Block input and output, similar to the Crynwr packet driver.  If you
 208    porting to a new ethercard look at the packet driver source for hints.
 209    The HP LAN doesn't use shared memory -- we put the packet
 210    out through the "remote DMA" dataport. */
 211 
 212 static int
 213 hp_block_input(struct device *dev, int count, char *buf, int ring_offset)
     /* [previous][next][first][last][top][bottom][index][help] */
 214 {
 215         int nic_base = dev->base_addr;
 216         int saved_config = inb_p(nic_base - NIC_OFFSET + HP_CONFIGURE);
 217         int xfer_count = count;
 218 
 219         outb_p(saved_config | HP_DATAON, nic_base - NIC_OFFSET + HP_CONFIGURE);
 220         outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base);
 221         outb_p(count & 0xff, nic_base + EN0_RCNTLO);
 222         outb_p(count >> 8, nic_base + EN0_RCNTHI);
 223         outb_p(ring_offset & 0xff, nic_base + EN0_RSARLO);
 224         outb_p(ring_offset >> 8, nic_base + EN0_RSARHI);
 225         outb_p(E8390_RREAD+E8390_START, nic_base);
 226         if (ei_status.word16) {
 227           insw(nic_base - NIC_OFFSET + HP_DATAPORT,buf,count>>1);
 228           if (count & 0x01)
 229                 buf[count-1] = inb(nic_base - NIC_OFFSET + HP_DATAPORT), xfer_count++;
 230         } else {
 231                 insb(nic_base - NIC_OFFSET + HP_DATAPORT, buf, count);
 232         }
 233         /* This is for the ALPHA version only, remove for later releases. */
 234         if (ei_debug > 0) {                     /* DMA termination address check... */
 235           int high = inb_p(nic_base + EN0_RSARHI);
 236           int low = inb_p(nic_base + EN0_RSARLO);
 237           int addr = (high << 8) + low;
 238           /* Check only the lower 8 bits so we can ignore ring wrap. */
 239           if (((ring_offset + xfer_count) & 0xff) != (addr & 0xff))
 240                 printk("%s: RX transfer address mismatch, %#4.4x vs. %#4.4x (actual).\n",
 241                            dev->name, ring_offset + xfer_count, addr);
 242         }
 243         outb_p(saved_config & (~HP_DATAON), nic_base - NIC_OFFSET + HP_CONFIGURE);
 244         return ring_offset + count;
 245 }
 246 
 247 static void
 248 hp_block_output(struct device *dev, int count,
     /* [previous][next][first][last][top][bottom][index][help] */
 249                                 const unsigned char *buf, const start_page)
 250 {
 251         int nic_base = dev->base_addr;
 252         int saved_config = inb_p(nic_base - NIC_OFFSET + HP_CONFIGURE);
 253 
 254         outb_p(saved_config | HP_DATAON, nic_base - NIC_OFFSET + HP_CONFIGURE);
 255         /* Round the count up for word writes.  Do we need to do this?
 256            What effect will an odd byte count have on the 8390?
 257            I should check someday. */
 258         if (ei_status.word16 && (count & 0x01))
 259           count++;
 260         /* We should already be in page 0, but to be safe... */
 261         outb_p(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base);
 262 
 263 #ifdef ei8390_bug
 264         /* Handle the read-before-write bug the same way as the
 265            Crynwr packet driver -- the NatSemi method doesn't work. */
 266         outb_p(0x42, nic_base + EN0_RCNTLO);
 267         outb_p(0,       nic_base + EN0_RCNTHI);
 268         outb_p(0xff, nic_base + EN0_RSARLO);
 269         outb_p(0x00, nic_base + EN0_RSARHI);
 270         outb_p(E8390_RREAD+E8390_START, EN_CMD);
 271         /* Make certain that the dummy read has occured. */
 272         inb_p(0x61);
 273         inb_p(0x61);
 274 #endif
 275 
 276         outb_p(count & 0xff, nic_base + EN0_RCNTLO);
 277         outb_p(count >> 8,       nic_base + EN0_RCNTHI);
 278         outb_p(0x00, nic_base + EN0_RSARLO);
 279         outb_p(start_page, nic_base + EN0_RSARHI);
 280 
 281         outb_p(E8390_RWRITE+E8390_START, nic_base);
 282         if (ei_status.word16) {
 283                 /* Use the 'rep' sequence for 16 bit boards. */
 284                 outsw(nic_base - NIC_OFFSET + HP_DATAPORT, buf, count>>1);
 285         } else {
 286                 outsb(nic_base - NIC_OFFSET + HP_DATAPORT, buf, count);
 287         }
 288 
 289         /* DON'T check for 'inb_p(EN0_ISR) & ENISR_RDC' here -- it's broken! */
 290 
 291         /* This is for the ALPHA version only, remove for later releases. */
 292         if (ei_debug > 0) {                     /* DMA termination address check... */
 293           int high = inb_p(nic_base + EN0_RSARHI);
 294           int low  = inb_p(nic_base + EN0_RSARLO);
 295           int addr = (high << 8) + low;
 296           if ((start_page << 8) + count != addr)
 297                 printk("%s: TX Transfer address mismatch, %#4.4x vs. %#4.4x.\n",
 298                            dev->name, (start_page << 8) + count, addr);
 299         }
 300         outb_p(saved_config & (~HP_DATAON), nic_base - NIC_OFFSET + HP_CONFIGURE);
 301         return;
 302 }
 303 
 304 /* This function resets the ethercard if something screws up. */
 305 static void
 306 hp_init_card(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 307 {
 308         int irq = dev->irq;
 309         NS8390_init(dev, 0);
 310         outb_p(irqmap[irq&0x0f] | HP_RUN,
 311                    dev->base_addr - NIC_OFFSET + HP_CONFIGURE);
 312         return;
 313 }
 314 
 315 
 316 /*
 317  * Local variables:
 318  * compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c hp.c"
 319  * version-control: t
 320  * kept-new-versions: 5
 321  * tab-width: 4
 322  * c-indent-level: 4
 323  * End:
 324  */

/* [previous][next][first][last][top][bottom][index][help] */