sk_g16.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:57k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*-
  2.  * Copyright (C) 1994 by PJD Weichmann & SWS Bern, Switzerland
  3.  *
  4.  * This software may be used and distributed according to the terms
  5.  * of the GNU General Public License, incorporated herein by reference.
  6.  *
  7.  * Module         : sk_g16.c
  8.  *
  9.  * Version        : $Revision: 1.1 $
  10.  *
  11.  * Author         : Patrick J.D. Weichmann
  12.  *
  13.  * Date Created   : 94/05/26
  14.  * Last Updated   : $Date: 1994/06/30 16:25:15 $
  15.  *
  16.  * Description    : Schneider & Koch G16 Ethernet Device Driver for
  17.  *                  Linux Kernel >= 1.1.22
  18.  * Update History :
  19.  *                  Paul Gortmaker, 03/97: Fix for v2.1.x to use read{b,w}
  20.  *                  write{b,w} and memcpy -> memcpy_{to,from}io
  21.  *
  22.  *     Jeff Garzik, 06/2000, Modularize
  23.  *
  24. -*/
  25. static const char rcsid[] = "$Id: sk_g16.c,v 1.1 1994/06/30 16:25:15 root Exp $";
  26. /*
  27.  * The Schneider & Koch (SK) G16 Network device driver is based
  28.  * on the 'ni6510' driver from Michael Hipp which can be found at
  29.  * ftp://sunsite.unc.edu/pub/Linux/system/Network/drivers/nidrivers.tar.gz
  30.  * 
  31.  * Sources: 1) ni6510.c by M. Hipp
  32.  *          2) depca.c  by D.C. Davies
  33.  *          3) skeleton.c by D. Becker
  34.  *          4) Am7990 Local Area Network Controller for Ethernet (LANCE),
  35.  *             AMD, Pub. #05698, June 1989
  36.  *
  37.  * Many Thanks for helping me to get things working to: 
  38.  *                 
  39.  *                 A. Cox (A.Cox@swansea.ac.uk)
  40.  *                 M. Hipp (mhipp@student.uni-tuebingen.de)
  41.  *                 R. Bolz (Schneider & Koch, Germany)
  42.  *
  43.  * To Do: 
  44.  *        - Support of SK_G8 and other SK Network Cards.
  45.  *        - Autoset memory mapped RAM. Check for free memory and then
  46.  *          configure RAM correctly. 
  47.  *        - SK_close should really set card in to initial state.
  48.  *        - Test if IRQ 3 is not switched off. Use autoirq() functionality.
  49.  *          (as in /drivers/net/skeleton.c)
  50.  *        - Implement Multicast addressing. At minimum something like
  51.  *          in depca.c. 
  52.  *        - Redo the statistics part.
  53.  *        - Try to find out if the board is in 8 Bit or 16 Bit slot.
  54.  *          If in 8 Bit mode don't use IRQ 11.
  55.  *        - (Try to make it slightly faster.) 
  56.  *   - Power management support
  57.  */
  58. #include <linux/module.h>
  59. #include <linux/kernel.h>
  60. #include <linux/sched.h>
  61. #include <linux/ptrace.h>
  62. #include <linux/fcntl.h>
  63. #include <linux/ioport.h>
  64. #include <linux/interrupt.h>
  65. #include <linux/slab.h>
  66. #include <linux/string.h> 
  67. #include <linux/delay.h>
  68. #include <asm/system.h>
  69. #include <asm/io.h>
  70. #include <asm/bitops.h> 
  71. #include <linux/errno.h>
  72. #include <linux/init.h>
  73. #include <linux/spinlock.h>
  74. #include <linux/netdevice.h>
  75. #include <linux/etherdevice.h>
  76. #include <linux/skbuff.h>
  77. #include "sk_g16.h"
  78. /* 
  79.  * Schneider & Koch Card Definitions 
  80.  * =================================
  81.  */  
  82. #define SK_NAME   "SK_G16"
  83. /*
  84.  * SK_G16 Configuration
  85.  * --------------------
  86.  */ 
  87. /* 
  88.  * Abbreviations
  89.  * -------------
  90.  *  
  91.  * RAM - used for the 16KB shared memory 
  92.  * Boot_ROM, ROM - are used for referencing the BootEPROM
  93.  *
  94.  * SK_BOOT_ROM and SK_ADDR are symbolic constants used to configure
  95.  * the behaviour of the driver and the SK_G16.
  96.  *
  97.  * ! See sk_g16.install on how to install and configure the driver !   
  98.  *
  99.  * SK_BOOT_ROM defines if the Boot_ROM should be switched off or not.
  100.  *
  101.  * SK_ADDR defines the address where the RAM will be mapped into the real
  102.  *         host memory.
  103.  *         valid addresses are from 0xa0000 to 0xfc000 in 16Kbyte steps.
  104.  */  
  105.  
  106. #define SK_BOOT_ROM     1              /* 1=BootROM on 0=off */
  107. #define SK_ADDR         0xcc000
  108. /* 
  109.  * In POS3 are bits A14-A19 of the address bus. These bits can be set
  110.  * to choose the RAM address. That's why we only can choose the RAM address
  111.  * in 16KB steps.
  112.  */
  113. #define POS_ADDR       (rom_addr>>14)  /* Do not change this line */
  114. /* 
  115.  * SK_G16 I/O PORT's + IRQ's + Boot_ROM locations
  116.  * ----------------------------------------------
  117.  */
  118. /* 
  119.  * As nearly every card has also SK_G16 a specified I/O Port region and
  120.  * only a few possible IRQ's.
  121.  * In the Installation Guide from Schneider & Koch is listed a possible
  122.  * Interrupt IRQ2. IRQ2 is always IRQ9 in boards with two cascaded interrupt
  123.  * controllers. So we use in SK_IRQS IRQ9.
  124.  */
  125. /* Don't touch any of the following #defines. */
  126. #define SK_IO_PORTS     { 0x100, 0x180, 0x208, 0x220, 0x288, 0x320, 0x328, 0x390, 0 }
  127. #define SK_IRQS         { 3, 5, 9, 11, 0 }
  128. #define SK_BOOT_ROM_LOCATIONS { 0xc0000, 0xc4000, 0xc8000, 0xcc000, 0xd0000, 0xd4000, 0xd8000, 0xdc000, 0 }
  129. #define SK_BOOT_ROM_ID  { 0x55, 0xaa, 0x10, 0x50, 0x06, 0x33 }
  130. /* 
  131.  * SK_G16 POS REGISTERS 
  132.  * --------------------
  133.  */
  134. /*
  135.  * SK_G16 has a Programmable Option Select (POS) Register.
  136.  * The POS is composed of 8 separate registers (POS0-7) which 
  137.  * are I/O mapped on an address set by the W1 switch.                    
  138.  *
  139.  */
  140. #define SK_POS_SIZE 8           /* 8 I/O Ports are used by SK_G16 */
  141. #define SK_POS0     ioaddr      /* Card-ID Low (R) */
  142. #define SK_POS1     ioaddr+1    /* Card-ID High (R) */
  143. #define SK_POS2     ioaddr+2    /* Card-Enable, Boot-ROM Disable (RW) */
  144. #define SK_POS3     ioaddr+3    /* Base address of RAM */
  145. #define SK_POS4     ioaddr+4    /* IRQ */
  146. /* POS5 - POS7 are unused */
  147. /* 
  148.  * SK_G16 MAC PREFIX 
  149.  * -----------------
  150.  */
  151. /* 
  152.  * Scheider & Koch manufacturer code (00:00:a5).
  153.  * This must be checked, that we are sure it is a SK card.
  154.  */
  155. #define SK_MAC0         0x00
  156. #define SK_MAC1         0x00
  157. #define SK_MAC2         0x5a
  158. /* 
  159.  * SK_G16 ID 
  160.  * ---------
  161.  */ 
  162. /* 
  163.  * If POS0,POS1 contain the following ID, then we know
  164.  * at which I/O Port Address we are. 
  165.  */
  166. #define SK_IDLOW  0xfd 
  167. #define SK_IDHIGH 0x6a
  168. /* 
  169.  * LANCE POS Bit definitions 
  170.  * -------------------------
  171.  */
  172. #define SK_ROM_RAM_ON  (POS2_CARD)
  173. #define SK_ROM_RAM_OFF (POS2_EPROM)
  174. #define SK_ROM_ON      (inb(SK_POS2) & POS2_CARD)
  175. #define SK_ROM_OFF     (inb(SK_POS2) | POS2_EPROM)
  176. #define SK_RAM_ON      (inb(SK_POS2) | POS2_CARD)
  177. #define SK_RAM_OFF     (inb(SK_POS2) & POS2_EPROM) 
  178. #define POS2_CARD  0x0001              /* 1 = SK_G16 on      0 = off */
  179. #define POS2_EPROM 0x0002              /* 1 = Boot EPROM off 0 = on */ 
  180. /* 
  181.  * SK_G16 Memory mapped Registers
  182.  * ------------------------------
  183.  *
  184.  */ 
  185. #define SK_IOREG        (&board->ioreg) /* LANCE data registers.     */ 
  186. #define SK_PORT         (&board->port)  /* Control, Status register  */
  187. #define SK_IOCOM        (&board->iocom) /* I/O Command               */
  188. /* 
  189.  * SK_G16 Status/Control Register bits
  190.  * -----------------------------------
  191.  *
  192.  * (C) Controlreg (S) Statusreg 
  193.  */
  194. /* 
  195.  * Register transfer: 0 = no transfer
  196.  *                    1 = transferring data between LANCE and I/O reg 
  197.  */
  198. #define SK_IORUN        0x20   
  199. /* 
  200.  * LANCE interrupt: 0 = LANCE interrupt occurred
  201.  *                  1 = no LANCE interrupt occurred
  202.  */
  203. #define SK_IRQ          0x10   
  204. #define SK_RESET        0x08   /* Reset SK_CARD: 0 = RESET 1 = normal */
  205. #define SK_RW           0x02   /* 0 = write to 1 = read from */
  206. #define SK_ADR          0x01   /* 0 = REG DataPort 1 = RAP Reg addr port */
  207.   
  208. #define SK_RREG         SK_RW  /* Transferdirection to read from lance */
  209. #define SK_WREG         0      /* Transferdirection to write to lance */
  210. #define SK_RAP          SK_ADR /* Destination Register RAP */
  211. #define SK_RDATA        0      /* Destination Register REG DataPort */
  212. /* 
  213.  * SK_G16 I/O Command 
  214.  * ------------------
  215.  */
  216. /* 
  217.  * Any bitcombination sets the internal I/O bit (transfer will start) 
  218.  * when written to I/O Command
  219.  */
  220. #define SK_DOIO         0x80   /* Do Transfer */ 
  221.  
  222. /* 
  223.  * LANCE RAP (Register Address Port). 
  224.  * ---------------------------------
  225.  */
  226. /*   
  227.  * The LANCE internal registers are selected through the RAP. 
  228.  * The Registers are:
  229.  *
  230.  * CSR0 - Status and Control flags 
  231.  * CSR1 - Low order bits of initialize block (bits 15:00)
  232.  * CSR2 - High order bits of initialize block (bits 07:00, 15:08 are reserved)
  233.  * CSR3 - Allows redefinition of the Bus Master Interface.
  234.  *        This register must be set to 0x0002, which means BSWAP = 0,
  235.  *        ACON = 1, BCON = 0;
  236.  *
  237.  */
  238.  
  239. #define CSR0            0x00   
  240. #define CSR1            0x01  
  241. #define CSR2            0x02 
  242. #define CSR3            0x03
  243. /* 
  244.  * General Definitions 
  245.  * ===================
  246.  */
  247. /* 
  248.  * Set the number of Tx and Rx buffers, using Log_2(# buffers).
  249.  * We have 16KB RAM which can be accessed by the LANCE. In the 
  250.  * memory are not only the buffers but also the ring descriptors and
  251.  * the initialize block. 
  252.  * Don't change anything unless you really know what you do.
  253.  */
  254. #define LC_LOG_TX_BUFFERS 1               /* (2 == 2^^1) 2 Transmit buffers */
  255. #define LC_LOG_RX_BUFFERS 3               /* (8 == 2^^3) 8 Receive buffers */
  256. /* Descriptor ring sizes */
  257. #define TMDNUM (1 << (LC_LOG_TX_BUFFERS)) /* 2 Transmit descriptor rings */
  258. #define RMDNUM (1 << (LC_LOG_RX_BUFFERS)) /* 8 Receive Buffers */
  259. /* Define Mask for setting RMD, TMD length in the LANCE init_block */
  260. #define TMDNUMMASK (LC_LOG_TX_BUFFERS << 29)
  261. #define RMDNUMMASK (LC_LOG_RX_BUFFERS << 29)
  262. /*
  263.  * Data Buffer size is set to maximum packet length.
  264.  */
  265. #define PKT_BUF_SZ              1518 
  266. /* 
  267.  * The number of low I/O ports used by the ethercard. 
  268.  */
  269. #define ETHERCARD_TOTAL_SIZE    SK_POS_SIZE
  270. /* 
  271.  * SK_DEBUG
  272.  *
  273.  * Here you can choose what level of debugging wanted.
  274.  *
  275.  * If SK_DEBUG and SK_DEBUG2 are undefined, then only the
  276.  *  necessary messages will be printed.
  277.  *
  278.  * If SK_DEBUG is defined, there will be many debugging prints
  279.  *  which can help to find some mistakes in configuration or even
  280.  *  in the driver code.
  281.  *
  282.  * If SK_DEBUG2 is defined, many many messages will be printed 
  283.  *  which normally you don't need. I used this to check the interrupt
  284.  *  routine. 
  285.  *
  286.  * (If you define only SK_DEBUG2 then only the messages for 
  287.  *  checking interrupts will be printed!)
  288.  *
  289.  * Normal way of live is: 
  290.  *
  291.  * For the whole thing get going let both symbolic constants
  292.  * undefined. If you face any problems and you know what's going
  293.  * on (you know something about the card and you can interpret some
  294.  * hex LANCE register output) then define SK_DEBUG
  295.  * 
  296.  */
  297. #undef  SK_DEBUG /* debugging */
  298. #undef  SK_DEBUG2 /* debugging with more verbose report */
  299. #ifdef SK_DEBUG
  300. #define PRINTK(x) printk x
  301. #else
  302. #define PRINTK(x) /**/
  303. #endif
  304. #ifdef SK_DEBUG2
  305. #define PRINTK2(x) printk x
  306. #else
  307. #define PRINTK2(x) /**/
  308. #endif
  309. /* 
  310.  * SK_G16 RAM
  311.  *
  312.  * The components are memory mapped and can be set in a region from
  313.  * 0x00000 through 0xfc000 in 16KB steps. 
  314.  *
  315.  * The Network components are: dual ported RAM, Prom, I/O Reg, Status-,
  316.  * Controlregister and I/O Command.
  317.  *
  318.  * dual ported RAM: This is the only memory region which the LANCE chip
  319.  *      has access to. From the Lance it is addressed from 0x0000 to
  320.  *      0x3fbf. The host accesses it normally.
  321.  *
  322.  * PROM: The PROM obtains the ETHERNET-MAC-Address. It is realised as a
  323.  *       8-Bit PROM, this means only the 16 even addresses are used of the
  324.  *       32 Byte Address region. Access to an odd address results in invalid
  325.  *       data.
  326.  * 
  327.  * LANCE I/O Reg: The I/O Reg is build of 4 single Registers, Low-Byte Write,
  328.  *       Hi-Byte Write, Low-Byte Read, Hi-Byte Read.
  329.  *       Transfer from or to the LANCE is always in 16Bit so Low and High
  330.  *       registers are always relevant.
  331.  *
  332.  *       The Data from the Readregister is not the data in the Writeregister!!
  333.  *       
  334.  * Port: Status- and Controlregister. 
  335.  *       Two different registers which share the same address, Status is 
  336.  *       read-only, Control is write-only.
  337.  *    
  338.  * I/O Command: 
  339.  *       Any bitcombination written in here starts the transmission between
  340.  *       Host and LANCE.
  341.  */
  342. typedef struct
  343. {
  344. unsigned char  ram[0x3fc0];   /* 16KB dual ported ram */
  345. unsigned char  rom[0x0020];   /* 32Byte PROM containing 6Byte MAC */
  346. unsigned char  res1[0x0010];  /* reserved */
  347. unsigned volatile short ioreg;/* LANCE I/O Register */
  348. unsigned volatile char  port; /* Statusregister and Controlregister */
  349. unsigned char  iocom;         /* I/O Command Register */
  350. } SK_RAM;
  351. /* struct  */
  352. /* 
  353.  * This is the structure for the dual ported ram. We
  354.  * have exactly 16 320 Bytes. In here there must be:
  355.  *
  356.  *     - Initialize Block   (starting at a word boundary)
  357.  *     - Receive and Transmit Descriptor Rings (quadword boundary)
  358.  *     - Data Buffers (arbitrary boundary)
  359.  *
  360.  * This is because LANCE has on SK_G16 only access to the dual ported
  361.  * RAM and nowhere else.
  362.  */
  363. struct SK_ram
  364. {
  365.     struct init_block ib;
  366.     struct tmd tmde[TMDNUM];
  367.     struct rmd rmde[RMDNUM];
  368.     char tmdbuf[TMDNUM][PKT_BUF_SZ];
  369.     char rmdbuf[RMDNUM][PKT_BUF_SZ];
  370. };
  371. /* 
  372.  * Structure where all necessary information is for ring buffer 
  373.  * management and statistics.
  374.  */
  375. struct priv
  376. {
  377.     struct SK_ram *ram;  /* dual ported ram structure */
  378.     struct rmd *rmdhead; /* start of receive ring descriptors */
  379.     struct tmd *tmdhead; /* start of transmit ring descriptors */
  380.     int        rmdnum;   /* actual used ring descriptor */
  381.     int        tmdnum;   /* actual transmit descriptor for transmitting data */
  382.     int        tmdlast;  /* last sent descriptor used for error handling, etc */
  383.     void       *rmdbufs[RMDNUM]; /* pointer to the receive buffers */
  384.     void       *tmdbufs[TMDNUM]; /* pointer to the transmit buffers */
  385.     struct net_device_stats stats; /* Device driver statistics */
  386. };
  387. /* global variable declaration */
  388. /* IRQ map used to reserve a IRQ (see SK_open()) */
  389. /* static variables */
  390. static SK_RAM *board;  /* pointer to our memory mapped board components */
  391. static struct net_device *SK_dev;
  392. unsigned long SK_ioaddr;
  393. static spinlock_t SK_lock = SPIN_LOCK_UNLOCKED;
  394. /* Macros */
  395. /* Function Prototypes */
  396. /*
  397.  * Device Driver functions
  398.  * -----------------------
  399.  * See for short explanation of each function its definitions header.
  400.  */
  401. int          SK_init(struct net_device *dev);
  402. static int   SK_probe(struct net_device *dev, short ioaddr);
  403. static void  SK_timeout(struct net_device *dev);
  404. static int   SK_open(struct net_device *dev);
  405. static int   SK_send_packet(struct sk_buff *skb, struct net_device *dev);
  406. static void  SK_interrupt(int irq, void *dev_id, struct pt_regs * regs);
  407. static void  SK_rxintr(struct net_device *dev);
  408. static void  SK_txintr(struct net_device *dev);
  409. static int   SK_close(struct net_device *dev);
  410. static struct net_device_stats *SK_get_stats(struct net_device *dev);
  411. unsigned int SK_rom_addr(void);
  412. static void set_multicast_list(struct net_device *dev);
  413. /*
  414.  * LANCE Functions
  415.  * ---------------
  416.  */
  417. static int SK_lance_init(struct net_device *dev, unsigned short mode);
  418. void   SK_reset_board(void);
  419. void   SK_set_RAP(int reg_number);
  420. int    SK_read_reg(int reg_number);
  421. int    SK_rread_reg(void);
  422. void   SK_write_reg(int reg_number, int value);
  423. /* 
  424.  * Debugging functions
  425.  * -------------------
  426.  */
  427. void SK_print_pos(struct net_device *dev, char *text);
  428. void SK_print_dev(struct net_device *dev, char *text);
  429. void SK_print_ram(struct net_device *dev);
  430. /*-
  431.  * Function       : SK_init
  432.  * Author         : Patrick J.D. Weichmann
  433.  * Date Created   : 94/05/26
  434.  *
  435.  * Description    : Check for a SK_G16 network adaptor and initialize it.
  436.  *                  This function gets called by dev_init which initializes
  437.  *                  all Network devices.
  438.  *
  439.  * Parameters     : I : struct net_device *dev - structure preconfigured 
  440.  *                                           from Space.c
  441.  * Return Value   : 0 = Driver Found and initialized 
  442.  * Errors         : ENODEV - no device found
  443.  *                  ENXIO  - not probed
  444.  * Globals        : None
  445.  * Update History :
  446.  *     YY/MM/DD  uid  Description
  447. -*/
  448. /* 
  449.  * Check for a network adaptor of this type, and return '0' if one exists.
  450.  * If dev->base_addr == 0, probe all likely locations.
  451.  * If dev->base_addr == 1, always return failure.
  452.  */
  453. int __init SK_init(struct net_device *dev)
  454. {
  455. int ioaddr;    /* I/O port address used for POS regs */
  456. int *port, ports[] = SK_IO_PORTS;  /* SK_G16 supported ports */
  457. static unsigned version_printed;
  458. /* get preconfigured base_addr from dev which is done in Space.c */
  459. int base_addr = dev->base_addr; 
  460. if (version_printed++ == 0)
  461.         PRINTK(("%s: %s", SK_NAME, rcsid));
  462. if (base_addr > 0x0ff)        /* Check a single specified address */
  463. {
  464.     int rc = -ENODEV;
  465.     ioaddr = base_addr;
  466.     /* Check if on specified address is a SK_G16 */
  467.     if (!request_region(ioaddr, ETHERCARD_TOTAL_SIZE, "sk_g16"))
  468.      return -EBUSY;
  469.     if ( (inb(SK_POS0) == SK_IDLOW) ||
  470.  (inb(SK_POS1) == SK_IDHIGH) )  
  471.     {
  472. rc = SK_probe(dev, ioaddr);
  473.     }
  474.     if (rc)
  475.         release_region(ioaddr, ETHERCARD_TOTAL_SIZE);
  476.     return rc;
  477. }
  478. else if (base_addr > 0)       /* Don't probe at all */
  479. {
  480. return -ENXIO;
  481. }
  482. /* Autoprobe base_addr */
  483. for (port = &ports[0]; *port; port++) 
  484. {
  485.     ioaddr = *port;           /* we need ioaddr for accessing POS regs */
  486.     /* Check if I/O Port region is used by another board */
  487.     if (!request_region(ioaddr, ETHERCARD_TOTAL_SIZE, "sk_g16"))
  488.     {
  489. continue;             /* Try next Port address */
  490.     }
  491.     /* Check if at ioaddr is a SK_G16 */
  492.     if ( !(inb(SK_POS0) == SK_IDLOW) ||
  493.  !(inb(SK_POS1) == SK_IDHIGH) )
  494.     {
  495.         release_region(ioaddr, ETHERCARD_TOTAL_SIZE);
  496. continue;             /* Try next Port address */
  497.     }
  498.     dev->base_addr = ioaddr;  /* Set I/O Port Address */
  499.     if (SK_probe(dev, ioaddr) == 0)  
  500.     {
  501. return 0; /* Card found and initialized */
  502.     }
  503.     release_region(ioaddr, ETHERCARD_TOTAL_SIZE);
  504. }
  505. dev->base_addr = base_addr;   /* Write back original base_addr */
  506. return -ENODEV;                /* Failed to find or init driver */
  507. } /* End of SK_init */
  508. MODULE_AUTHOR("Patrick J.D. Weichmann");
  509. MODULE_DESCRIPTION("Schneider & Koch G16 Ethernet Device Driver");
  510. MODULE_LICENSE("GPL");
  511. MODULE_PARM(io, "i");
  512. MODULE_PARM_DESC(io, "0 to probe common ports (unsafe), or the I/O base of the board");
  513. #ifdef MODULE
  514. static int io; /* 0 == probe */
  515. static int __init SK_init_module (void)
  516. {
  517. int rc;
  518. SK_dev = init_etherdev (NULL, 0);
  519. if (!SK_dev)
  520. return -ENOMEM;
  521. SK_dev->base_addr = io;
  522. rc = SK_init (SK_dev);
  523. if (rc) {
  524. unregister_netdev (SK_dev);
  525. kfree (SK_dev);
  526. SK_dev = NULL;
  527. }
  528. return rc;
  529. }
  530. #endif /* MODULE */
  531. static void __exit SK_cleanup_module (void)
  532. {
  533. if (SK_dev) {
  534. if (SK_dev->priv) {
  535. kfree(SK_dev->priv);
  536. SK_dev->priv = NULL;
  537. }
  538. unregister_netdev(SK_dev);
  539. kfree(SK_dev);
  540. SK_dev = NULL;
  541. }
  542. if (SK_ioaddr) {
  543. release_region(SK_ioaddr, ETHERCARD_TOTAL_SIZE);
  544. SK_ioaddr = 0;
  545. }
  546. }
  547. #ifdef MODULE
  548. module_init(SK_init_module);
  549. #endif
  550. module_exit(SK_cleanup_module);
  551. /*-
  552.  * Function       : SK_probe
  553.  * Author         : Patrick J.D. Weichmann
  554.  * Date Created   : 94/05/26
  555.  *
  556.  * Description    : This function is called by SK_init and 
  557.  *                  does the main part of initialization.
  558.  *                  
  559.  * Parameters     : I : struct net_device *dev - SK_G16 device structure
  560.  *                  I : short ioaddr       - I/O Port address where POS is.
  561.  * Return Value   : 0 = Initialization done             
  562.  * Errors         : ENODEV - No SK_G16 found
  563.  *                  -1     - Configuration problem
  564.  * Globals        : board       - pointer to SK_RAM
  565.  * Update History :
  566.  *     YY/MM/DD  uid  Description
  567.  *     94/06/30  pwe  SK_ADDR now checked and at the correct place
  568. -*/
  569. int __init SK_probe(struct net_device *dev, short ioaddr)
  570. {
  571.     int i,j;                /* Counters */
  572.     int sk_addr_flag = 0;   /* SK ADDR correct? 1 - no, 0 - yes */
  573.     unsigned int rom_addr;  /* used to store RAM address used for POS_ADDR */
  574.     struct priv *p;         /* SK_G16 private structure */
  575.     if (SK_ADDR & 0x3fff || SK_ADDR < 0xa0000)
  576.     {
  577.       
  578.        sk_addr_flag = 1;
  579.        /* 
  580.         * Now here we could use a routine which searches for a free
  581.         * place in the ram and set SK_ADDR if found. TODO. 
  582.         */
  583.     }
  584.     if (SK_BOOT_ROM)            /* Shall we keep Boot_ROM on ? */
  585.     {
  586.         PRINTK(("## %s: SK_BOOT_ROM is set.n", SK_NAME));
  587.         rom_addr = SK_rom_addr();
  588. if (rom_addr == 0)      /* No Boot_ROM found */
  589. {
  590.             if (sk_addr_flag)   /* No or Invalid SK_ADDR is defined */ 
  591.             {
  592.                 printk("%s: SK_ADDR %#08x is not valid. Check configuration.n",
  593.                        dev->name, SK_ADDR);
  594.                 return -1;
  595.             }
  596.     rom_addr = SK_ADDR; /* assign predefined address */
  597.     PRINTK(("## %s: NO Bootrom found n", SK_NAME));
  598.     outb(SK_ROM_RAM_OFF, SK_POS2); /* Boot_ROM + RAM off */
  599.     outb(POS_ADDR, SK_POS3);       /* Set RAM address */
  600.     outb(SK_RAM_ON, SK_POS2);      /* enable RAM */
  601. }
  602. else if (rom_addr == SK_ADDR) 
  603. {
  604.             printk("%s: RAM + ROM are set to the same address %#08xn"
  605.                    "   Check configuration. Now switching off Boot_ROMn",
  606.                    SK_NAME, rom_addr);
  607.     outb(SK_ROM_RAM_OFF, SK_POS2); /* Boot_ROM + RAM off*/
  608.     outb(POS_ADDR, SK_POS3);       /* Set RAM address */
  609.     outb(SK_RAM_ON, SK_POS2);      /* enable RAM */
  610. }
  611. else
  612. {
  613.             PRINTK(("## %s: Found ROM at %#08xn", SK_NAME, rom_addr));
  614.     PRINTK(("## %s: Keeping Boot_ROM onn", SK_NAME));
  615.             if (sk_addr_flag)       /* No or Invalid SK_ADDR is defined */ 
  616.             {
  617.                 printk("%s: SK_ADDR %#08x is not valid. Check configuration.n",
  618.                        dev->name, SK_ADDR);
  619.                 return -1;
  620.             }
  621.     rom_addr = SK_ADDR;
  622.     outb(SK_ROM_RAM_OFF, SK_POS2); /* Boot_ROM + RAM off */ 
  623.     outb(POS_ADDR, SK_POS3);       /* Set RAM address */
  624.     outb(SK_ROM_RAM_ON, SK_POS2);  /* RAM on, BOOT_ROM on */
  625. }
  626.     }
  627.     else /* Don't keep Boot_ROM */
  628.     {
  629.         PRINTK(("## %s: SK_BOOT_ROM is not set.n", SK_NAME));
  630.         if (sk_addr_flag)           /* No or Invalid SK_ADDR is defined */ 
  631.         {
  632.             printk("%s: SK_ADDR %#08x is not valid. Check configuration.n",
  633.                    dev->name, SK_ADDR);
  634.             return -1;
  635.         }
  636. rom_addr = SK_rom_addr();          /* Try to find a Boot_ROM */
  637. /* IF we find a Boot_ROM disable it */
  638. outb(SK_ROM_RAM_OFF, SK_POS2);     /* Boot_ROM + RAM off */  
  639.         /* We found a Boot_ROM and it's gone. Set RAM address on
  640.          * Boot_ROM address. 
  641.          */ 
  642. if (rom_addr) 
  643. {
  644.             printk("%s: We found Boot_ROM at %#08x. Now setting RAM on"
  645.                    "that addressn", SK_NAME, rom_addr);
  646.     outb(POS_ADDR, SK_POS3);       /* Set RAM on Boot_ROM address */
  647. }
  648. else /* We did not find a Boot_ROM, use predefined SK_ADDR for ram */
  649. {
  650.             if (sk_addr_flag)       /* No or Invalid SK_ADDR is defined */ 
  651.             {
  652.                 printk("%s: SK_ADDR %#08x is not valid. Check configuration.n",
  653.                        dev->name, SK_ADDR);
  654.                 return -1;
  655.             }
  656.     rom_addr = SK_ADDR;
  657.     outb(POS_ADDR, SK_POS3);       /* Set RAM address */ 
  658. }
  659. outb(SK_RAM_ON, SK_POS2);          /* enable RAM */
  660.     }
  661. #ifdef SK_DEBUG
  662.     SK_print_pos(dev, "POS registers after ROM, RAM config");
  663. #endif
  664.     board = (SK_RAM *) bus_to_virt(rom_addr);
  665.     /* Read in station address */
  666.     for (i = 0, j = 0; i < ETH_ALEN; i++, j+=2)
  667.     {
  668. dev->dev_addr[i] = readb(board->rom+j);          
  669.     }
  670.     /* Check for manufacturer code */
  671.     if (!(dev->dev_addr[0] == SK_MAC0 &&
  672.   dev->dev_addr[1] == SK_MAC1 &&
  673.   dev->dev_addr[2] == SK_MAC2) )
  674.     {
  675.         PRINTK(("## %s: We did not find SK_G16 at RAM location.n",
  676.                 SK_NAME)); 
  677. return -ENODEV;                     /* NO SK_G16 found */
  678.     }
  679.     printk("%s: %s found at %#3x, HW addr: %#04x:%02x:%02x:%02x:%02x:%02xn",
  680.     dev->name,
  681.     "Schneider & Koch Netcard",
  682.     (unsigned int) dev->base_addr,
  683.     dev->dev_addr[0],
  684.     dev->dev_addr[1],
  685.     dev->dev_addr[2],
  686.     dev->dev_addr[3],
  687.     dev->dev_addr[4],
  688.     dev->dev_addr[5]);
  689.     /* Allocate memory for private structure */
  690.     p = dev->priv = (void *) kmalloc(sizeof(struct priv), GFP_KERNEL);
  691.     if (p == NULL) {
  692.    printk("%s: ERROR - no memory for driver data!n", dev->name);
  693.    return -ENOMEM;
  694.     }
  695.     memset((char *) dev->priv, 0, sizeof(struct priv)); /* clear memory */
  696.     /* Assign our Device Driver functions */
  697.     dev->open                   = SK_open;
  698.     dev->stop                   = SK_close;
  699.     dev->hard_start_xmit        = SK_send_packet;
  700.     dev->get_stats              = SK_get_stats;
  701.     dev->set_multicast_list     = set_multicast_list;
  702.     dev->tx_timeout = SK_timeout;
  703.     dev->watchdog_timeo = HZ/7;
  704.     /* Set the generic fields of the device structure */
  705.     ether_setup(dev);
  706.     
  707.     dev->flags &= ~IFF_MULTICAST;
  708.     /* Initialize private structure */
  709.     p->ram = (struct SK_ram *) rom_addr; /* Set dual ported RAM addr */
  710.     p->tmdhead = &(p->ram)->tmde[0];     /* Set TMD head */
  711.     p->rmdhead = &(p->ram)->rmde[0];     /* Set RMD head */
  712.     /* Initialize buffer pointers */
  713.     for (i = 0; i < TMDNUM; i++)
  714.     {
  715. p->tmdbufs[i] = &(p->ram)->tmdbuf[i];
  716.     }
  717.     for (i = 0; i < RMDNUM; i++)
  718.     {
  719. p->rmdbufs[i] = &(p->ram)->rmdbuf[i]; 
  720.     }
  721. #ifdef SK_DEBUG
  722.     SK_print_pos(dev, "End of SK_probe");
  723.     SK_print_ram(dev);
  724. #endif 
  725.     SK_dev = dev;
  726.     SK_ioaddr = ioaddr;
  727.     return 0;                            /* Initialization done */
  728. } /* End of SK_probe() */
  729. /*- 
  730.  * Function       : SK_open
  731.  * Author         : Patrick J.D. Weichmann
  732.  * Date Created   : 94/05/26
  733.  *
  734.  * Description    : This function is called sometimes after booting 
  735.  *                  when ifconfig program is run.
  736.  *
  737.  *                  This function requests an IRQ, sets the correct
  738.  *                  IRQ in the card. Then calls SK_lance_init() to 
  739.  *                  init and start the LANCE chip. Then if everything is 
  740.  *                  ok returns with 0 (OK), which means SK_G16 is now
  741.  *                  opened and operational.
  742.  *
  743.  *                  (Called by dev_open() /net/inet/dev.c)
  744.  *
  745.  * Parameters     : I : struct net_device *dev - SK_G16 device structure
  746.  * Return Value   : 0 - Device opened
  747.  * Errors         : -EAGAIN - Open failed
  748.  * Side Effects   : None
  749.  * Update History :
  750.  *     YY/MM/DD  uid  Description
  751. -*/
  752. static int SK_open(struct net_device *dev)
  753. {
  754.     int i = 0;
  755.     int irqval = 0;
  756.     int ioaddr = dev->base_addr;
  757.     int irqtab[] = SK_IRQS; 
  758.     struct priv *p = (struct priv *)dev->priv;
  759.     PRINTK(("## %s: At beginning of SK_open(). CSR0: %#06xn", 
  760.            SK_NAME, SK_read_reg(CSR0)));
  761.     if (dev->irq == 0) /* Autoirq */
  762.     {
  763. i = 0;
  764. /* 
  765.          * Check if one IRQ out of SK_IRQS is free and install 
  766.  * interrupt handler.
  767.  * Most done by request_irq(). 
  768.  * irqval: 0       - interrupt handler installed for IRQ irqtab[i]
  769.  *         -EBUSY  - interrupt busy 
  770.          *         -EINVAL - irq > 15 or handler = NULL
  771.  */
  772. do
  773. {
  774.   irqval = request_irq(irqtab[i], &SK_interrupt, 0, "sk_g16", dev);
  775.   i++;
  776. } while (irqval && irqtab[i]);
  777. if (irqval) /* We tried every possible IRQ but no success */
  778. {
  779.     printk("%s: unable to get an IRQn", dev->name);
  780.     return -EAGAIN;
  781. }
  782. dev->irq = irqtab[--i]; 
  783. outb(i<<2, SK_POS4);           /* Set Card on probed IRQ */
  784.     }
  785.     else if (dev->irq == 2) /* IRQ2 is always IRQ9 */
  786.     {
  787. if (request_irq(9, &SK_interrupt, 0, "sk_g16", dev))
  788. {
  789.     printk("%s: unable to get IRQ 9n", dev->name);
  790.     return -EAGAIN;
  791. dev->irq = 9;
  792.         /* 
  793.          * Now we set card on IRQ2.
  794.          * This can be confusing, but remember that IRQ2 on the network
  795.          * card is in reality IRQ9
  796.          */
  797. outb(0x08, SK_POS4);           /* set card to IRQ2 */
  798.     }
  799.     else  /* Check IRQ as defined in Space.c */
  800.     {
  801. int i = 0;
  802. /* check if IRQ free and valid. Then install Interrupt handler */
  803. if (request_irq(dev->irq, &SK_interrupt, 0, "sk_g16", dev))
  804. {
  805.     printk("%s: unable to get selected IRQn", dev->name);
  806.     return -EAGAIN;
  807. }
  808. switch(dev->irq)
  809. {
  810.     case 3: i = 0;
  811.     break;
  812.     case 5: i = 1;
  813.     break;
  814.     case 2: i = 2;
  815.     break;
  816.     case 11:i = 3;
  817.     break;
  818.     default: 
  819. printk("%s: Preselected IRQ %d is invalid for %s boards",
  820.        dev->name,
  821.        dev->irq,
  822.                        SK_NAME);
  823. return -EAGAIN;
  824. }      
  825.   
  826. outb(i<<2, SK_POS4);           /* Set IRQ on card */
  827.     }
  828.     printk("%s: Schneider & Koch G16 at %#3x, IRQ %d, shared mem at %#08xn",
  829.     dev->name, (unsigned int)dev->base_addr, 
  830.     (int) dev->irq, (unsigned int) p->ram);
  831.     if (!(i = SK_lance_init(dev, 0)))  /* LANCE init OK? */
  832.     {
  833. netif_start_queue(dev);
  834. #ifdef SK_DEBUG
  835.         /* 
  836.          * This debug block tries to stop LANCE,
  837.          * reinit LANCE with transmitter and receiver disabled,
  838.          * then stop again and reinit with NORMAL_MODE
  839.          */
  840.         printk("## %s: After lance init. CSR0: %#06xn", 
  841.                SK_NAME, SK_read_reg(CSR0));
  842.         SK_write_reg(CSR0, CSR0_STOP);
  843.         printk("## %s: LANCE stopped. CSR0: %#06xn", 
  844.                SK_NAME, SK_read_reg(CSR0));
  845.         SK_lance_init(dev, MODE_DTX | MODE_DRX);
  846.         printk("## %s: Reinit with DTX + DRX off. CSR0: %#06xn", 
  847.                SK_NAME, SK_read_reg(CSR0));
  848.         SK_write_reg(CSR0, CSR0_STOP);
  849.         printk("## %s: LANCE stopped. CSR0: %#06xn", 
  850.                SK_NAME, SK_read_reg(CSR0));
  851.         SK_lance_init(dev, MODE_NORMAL);
  852.         printk("## %s: LANCE back to normal mode. CSR0: %#06xn", 
  853.                SK_NAME, SK_read_reg(CSR0));
  854.         SK_print_pos(dev, "POS regs before returning OK");
  855. #endif /* SK_DEBUG */
  856.        
  857. return 0;              /* SK_open() is successful */
  858.     }
  859.     else /* LANCE init failed */
  860.     {
  861. PRINTK(("## %s: LANCE init failed: CSR0: %#06xn", 
  862.                SK_NAME, SK_read_reg(CSR0)));
  863. return -EAGAIN;
  864.     }
  865. } /* End of SK_open() */
  866. /*-
  867.  * Function       : SK_lance_init
  868.  * Author         : Patrick J.D. Weichmann
  869.  * Date Created   : 94/05/26
  870.  *
  871.  * Description    : Reset LANCE chip, fill RMD, TMD structures with
  872.  *                  start values and Start LANCE.
  873.  *
  874.  * Parameters     : I : struct net_device *dev - SK_G16 device structure
  875.  *                  I : int mode - put LANCE into "mode" see data-sheet for
  876.  *                                 more info.
  877.  * Return Value   : 0  - Init done
  878.  * Errors         : -1 - Init failed
  879.  * Update History :
  880.  *     YY/MM/DD  uid  Description
  881. -*/
  882. static int SK_lance_init(struct net_device *dev, unsigned short mode)
  883. {
  884.     int i;
  885.     unsigned long flags;
  886.     struct priv *p = (struct priv *) dev->priv; 
  887.     struct tmd  *tmdp;
  888.     struct rmd  *rmdp;
  889.     PRINTK(("## %s: At beginning of LANCE init. CSR0: %#06xn", 
  890.            SK_NAME, SK_read_reg(CSR0)));
  891.     /* Reset LANCE */
  892.     SK_reset_board();
  893.     /* Initialize TMD's with start values */
  894.     p->tmdnum = 0;                   /* First descriptor for transmitting */ 
  895.     p->tmdlast = 0;                  /* First descriptor for reading stats */
  896.     for (i = 0; i < TMDNUM; i++)     /* Init all TMD's */
  897.     {
  898. tmdp = p->tmdhead + i; 
  899.    
  900. writel((unsigned long) p->tmdbufs[i], tmdp->u.buffer); /* assign buffer */
  901. /* Mark TMD as start and end of packet */
  902. writeb(TX_STP | TX_ENP, &tmdp->u.s.status);
  903.     }
  904.     /* Initialize RMD's with start values */
  905.     p->rmdnum = 0;                   /* First RMD which will be used */
  906.  
  907.     for (i = 0; i < RMDNUM; i++)     /* Init all RMD's */
  908.     {
  909. rmdp = p->rmdhead + i;
  910. writel((unsigned long) p->rmdbufs[i], rmdp->u.buffer); /* assign buffer */
  911. /* 
  912.          * LANCE must be owner at beginning so that he can fill in 
  913.  * receiving packets, set status and release RMD 
  914.  */
  915. writeb(RX_OWN, &rmdp->u.s.status);
  916. writew(-PKT_BUF_SZ, &rmdp->blen); /* Buffer Size (two's complement) */
  917. writeb(0, &rmdp->mlen);           /* init message length */       
  918.     }
  919.     /* Fill LANCE Initialize Block */
  920.     writew(mode, (&((p->ram)->ib.mode))); /* Set operation mode */
  921.     for (i = 0; i < ETH_ALEN; i++)   /* Set physical address */
  922.     {
  923. writeb(dev->dev_addr[i], (&((p->ram)->ib.paddr[i]))); 
  924.     }
  925.     for (i = 0; i < 8; i++)          /* Set multicast, logical address */
  926.     {
  927. writeb(0, (&((p->ram)->ib.laddr[i]))); /* We do not use logical addressing */
  928.     } 
  929.     /* Set ring descriptor pointers and set number of descriptors */
  930.     writel((int)p->rmdhead | RMDNUMMASK, (&((p->ram)->ib.rdrp)));
  931.     writel((int)p->tmdhead | TMDNUMMASK, (&((p->ram)->ib.tdrp)));
  932.     /* Prepare LANCE Control and Status Registers */
  933.     spin_lock_irqsave(&SK_lock, flags);
  934.     SK_write_reg(CSR3, CSR3_ACON);   /* Ale Control !!!THIS MUST BE SET!!!! */
  935.  
  936.     /* 
  937.      * LANCE addresses the RAM from 0x0000 to 0x3fbf and has no access to
  938.      * PC Memory locations.
  939.      *
  940.      * In structure SK_ram is defined that the first thing in ram
  941.      * is the initialization block. So his address is for LANCE always
  942.      * 0x0000
  943.      *
  944.      * CSR1 contains low order bits 15:0 of initialization block address
  945.      * CSR2 is built of: 
  946.      *    7:0  High order bits 23:16 of initialization block address
  947.      *   15:8  reserved, must be 0
  948.      */
  949.     
  950.     /* Set initialization block address (must be on word boundary) */
  951.     SK_write_reg(CSR1, 0);          /* Set low order bits 15:0 */
  952.     SK_write_reg(CSR2, 0);          /* Set high order bits 23:16 */ 
  953.     
  954.     PRINTK(("## %s: After setting CSR1-3. CSR0: %#06xn", 
  955.            SK_NAME, SK_read_reg(CSR0)));
  956.     /* Initialize LANCE */
  957.     /* 
  958.      * INIT = Initialize, when set, causes the LANCE to begin the
  959.      * initialization procedure and access the Init Block.
  960.      */
  961.     SK_write_reg(CSR0, CSR0_INIT); 
  962.     spin_unlock_irqrestore(&SK_lock, flags);
  963.     /* Wait until LANCE finished initialization */
  964.     
  965.     SK_set_RAP(CSR0);              /* Register Address Pointer to CSR0 */
  966.     for (i = 0; (i < 100) && !(SK_rread_reg() & CSR0_IDON); i++) 
  967. ; /* Wait until init done or go ahead if problems (i>=100) */
  968.     if (i >= 100) /* Something is wrong ! */
  969.     {
  970. printk("%s: can't init am7990, status: %04x "
  971.        "init_block: %#08xn", 
  972. dev->name, (int) SK_read_reg(CSR0), 
  973. (unsigned int) &(p->ram)->ib);
  974. #ifdef SK_DEBUG
  975. SK_print_pos(dev, "LANCE INIT failed");
  976. SK_print_dev(dev,"Device Structure:");
  977. #endif
  978. return -1;                 /* LANCE init failed */
  979.     }
  980.     PRINTK(("## %s: init done after %d ticksn", SK_NAME, i));
  981.     /* Clear Initialize done, enable Interrupts, start LANCE */
  982.     SK_write_reg(CSR0, CSR0_IDON | CSR0_INEA | CSR0_STRT);
  983.     PRINTK(("## %s: LANCE started. CSR0: %#06xn", SK_NAME, 
  984.             SK_read_reg(CSR0)));
  985.     return 0;                      /* LANCE is up and running */
  986. } /* End of SK_lance_init() */
  987. /*-
  988.  * Function       : SK_send_packet
  989.  * Author         : Patrick J.D. Weichmann
  990.  * Date Created   : 94/05/27
  991.  *
  992.  * Description    : Writes an socket buffer into a transmit descriptor
  993.  *                  and starts transmission.
  994.  *
  995.  * Parameters     : I : struct sk_buff *skb - packet to transfer
  996.  *                  I : struct net_device *dev  - SK_G16 device structure
  997.  * Return Value   : 0 - OK
  998.  *                  1 - Could not transmit (dev_queue_xmit will queue it)
  999.  *                      and try to sent it later
  1000.  * Globals        : None
  1001.  * Side Effects   : None
  1002.  * Update History :
  1003.  *     YY/MM/DD  uid  Description
  1004. -*/
  1005. static void SK_timeout(struct net_device *dev)
  1006. {
  1007. printk(KERN_WARNING "%s: xmitter timed out, try to restart!n", dev->name);
  1008. SK_lance_init(dev, MODE_NORMAL); /* Reinit LANCE */
  1009. netif_wake_queue(dev);  /* Clear Transmitter flag */
  1010. dev->trans_start = jiffies;      /* Mark Start of transmission */
  1011. }
  1012. static int SK_send_packet(struct sk_buff *skb, struct net_device *dev)
  1013. {
  1014.     struct priv *p = (struct priv *) dev->priv;
  1015.     struct tmd *tmdp;
  1016.     PRINTK2(("## %s: SK_send_packet() called, CSR0 %#04x.n", 
  1017.     SK_NAME, SK_read_reg(CSR0)));
  1018.     /* 
  1019.      * Block a timer-based transmit from overlapping. 
  1020.      * This means check if we are already in. 
  1021.      */
  1022.     netif_stop_queue (dev);
  1023.     {
  1024. /* Evaluate Packet length */
  1025. short len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN; 
  1026.        
  1027. tmdp = p->tmdhead + p->tmdnum; /* Which descriptor for transmitting */
  1028. /* Fill in Transmit Message Descriptor */
  1029. /* Copy data into dual ported ram */
  1030. memcpy_toio((tmdp->u.buffer & 0x00ffffff), skb->data, skb->len);
  1031. writew(-len, &tmdp->blen);            /* set length to transmit */
  1032. /* 
  1033.  * Packet start and end is always set because we use the maximum
  1034.  * packet length as buffer length.
  1035.  * Relinquish ownership to LANCE
  1036.  */
  1037. writeb(TX_OWN | TX_STP | TX_ENP, &tmdp->u.s.status);
  1038. /* Start Demand Transmission */
  1039. SK_write_reg(CSR0, CSR0_TDMD | CSR0_INEA);
  1040. dev->trans_start = jiffies;   /* Mark start of transmission */
  1041. /* Set pointer to next transmit buffer */
  1042. p->tmdnum++; 
  1043. p->tmdnum &= TMDNUM-1; 
  1044. /* Do we own the next transmit buffer ? */
  1045. if (! (readb(&((p->tmdhead + p->tmdnum)->u.s.status)) & TX_OWN) )
  1046. {
  1047.    /* 
  1048.     * We own next buffer and are ready to transmit, so
  1049.     * clear busy flag
  1050.     */
  1051.    netif_start_queue(dev);
  1052. }
  1053. p->stats.tx_bytes += skb->len;
  1054.     }
  1055.     dev_kfree_skb(skb);
  1056.     return 0;  
  1057. } /* End of SK_send_packet */
  1058. /*-
  1059.  * Function       : SK_interrupt
  1060.  * Author         : Patrick J.D. Weichmann
  1061.  * Date Created   : 94/05/27
  1062.  *
  1063.  * Description    : SK_G16 interrupt handler which checks for LANCE
  1064.  *                  Errors, handles transmit and receive interrupts
  1065.  *
  1066.  * Parameters     : I : int irq, void *dev_id, struct pt_regs * regs -
  1067.  * Return Value   : None
  1068.  * Errors         : None
  1069.  * Globals        : None
  1070.  * Side Effects   : None
  1071.  * Update History :
  1072.  *     YY/MM/DD  uid  Description
  1073. -*/
  1074. static void SK_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1075. {
  1076.     int csr0;
  1077.     struct net_device *dev = dev_id;
  1078.     struct priv *p = (struct priv *) dev->priv;
  1079.     PRINTK2(("## %s: SK_interrupt(). status: %#06xn", 
  1080.             SK_NAME, SK_read_reg(CSR0)));
  1081.     if (dev == NULL)
  1082.     {
  1083. printk("SK_interrupt(): IRQ %d for unknown device.n", irq);
  1084.     }
  1085.     
  1086.     spin_lock (&SK_lock);
  1087.     csr0 = SK_read_reg(CSR0);      /* store register for checking */
  1088.     /* 
  1089.      * Acknowledge all of the current interrupt sources, disable      
  1090.      * Interrupts (INEA = 0) 
  1091.      */
  1092.     SK_write_reg(CSR0, csr0 & CSR0_CLRALL); 
  1093.     if (csr0 & CSR0_ERR) /* LANCE Error */
  1094.     {
  1095. printk("%s: error: %04xn", dev->name, csr0);
  1096.       
  1097.         if (csr0 & CSR0_MISS)      /* No place to store packet ? */
  1098.         { 
  1099.             p->stats.rx_dropped++;
  1100.         }
  1101.     }
  1102.     if (csr0 & CSR0_RINT)          /* Receive Interrupt (packet arrived) */ 
  1103.     {
  1104. SK_rxintr(dev); 
  1105.     }
  1106.     if (csr0 & CSR0_TINT)          /* Transmit interrupt (packet sent) */
  1107.     {
  1108. SK_txintr(dev);
  1109.     }
  1110.     SK_write_reg(CSR0, CSR0_INEA); /* Enable Interrupts */
  1111.     spin_unlock (&SK_lock);
  1112. } /* End of SK_interrupt() */ 
  1113. /*-
  1114.  * Function       : SK_txintr
  1115.  * Author         : Patrick J.D. Weichmann
  1116.  * Date Created   : 94/05/27
  1117.  *
  1118.  * Description    : After sending a packet we check status, update
  1119.  *                  statistics and relinquish ownership of transmit 
  1120.  *                  descriptor ring.
  1121.  *
  1122.  * Parameters     : I : struct net_device *dev - SK_G16 device structure
  1123.  * Return Value   : None
  1124.  * Errors         : None
  1125.  * Globals        : None
  1126.  * Update History :
  1127.  *     YY/MM/DD  uid  Description
  1128. -*/
  1129. static void SK_txintr(struct net_device *dev)
  1130. {
  1131.     int tmdstat;
  1132.     struct tmd *tmdp;
  1133.     struct priv *p = (struct priv *) dev->priv;
  1134.     PRINTK2(("## %s: SK_txintr() status: %#06xn", 
  1135.             SK_NAME, SK_read_reg(CSR0)));
  1136.     tmdp = p->tmdhead + p->tmdlast;     /* Which buffer we sent at last ? */
  1137.     /* Set next buffer */
  1138.     p->tmdlast++;
  1139.     p->tmdlast &= TMDNUM-1;
  1140.     tmdstat = readb(&tmdp->u.s.status);
  1141.     /* 
  1142.      * We check status of transmitted packet.
  1143.      * see LANCE data-sheet for error explanation
  1144.      */
  1145.     if (tmdstat & TX_ERR) /* Error occurred */
  1146.     {
  1147. int stat2 = readw(&tmdp->status2);
  1148. printk("%s: TX error: %04x %04xn", dev->name, tmdstat, stat2);
  1149. if (stat2 & TX_TDR)    /* TDR problems? */
  1150. {
  1151.     printk("%s: tdr-problems n", dev->name);
  1152. }
  1153. if (stat2 & TX_RTRY)   /* Failed in 16 attempts to transmit ? */
  1154.             p->stats.tx_aborted_errors++;   
  1155.         if (stat2 & TX_LCOL)   /* Late collision ? */
  1156.             p->stats.tx_window_errors++; 
  1157. if (stat2 & TX_LCAR)   /* Loss of Carrier ? */  
  1158.             p->stats.tx_carrier_errors++;
  1159.         if (stat2 & TX_UFLO)   /* Underflow error ? */
  1160.         {
  1161.             p->stats.tx_fifo_errors++;
  1162.             /* 
  1163.              * If UFLO error occurs it will turn transmitter of.
  1164.              * So we must reinit LANCE
  1165.              */
  1166.             SK_lance_init(dev, MODE_NORMAL);
  1167.         }
  1168. p->stats.tx_errors++;
  1169. writew(0, &tmdp->status2);             /* Clear error flags */
  1170.     }
  1171.     else if (tmdstat & TX_MORE)        /* Collisions occurred ? */
  1172.     {
  1173.         /* 
  1174.          * Here I have a problem.
  1175.          * I only know that there must be one or up to 15 collisions.
  1176.          * That's why TX_MORE is set, because after 16 attempts TX_RTRY
  1177.          * will be set which means couldn't send packet aborted transfer.
  1178.          *
  1179.          * First I did not have this in but then I thought at minimum
  1180.          * we see that something was not ok.
  1181.          * If anyone knows something better than this to handle this
  1182.          * please report it.
  1183.          */ 
  1184.         p->stats.collisions++; 
  1185.     }
  1186.     else   /* Packet sent without any problems */
  1187.     {
  1188.         p->stats.tx_packets++; 
  1189.     }
  1190.     /* 
  1191.      * We mark transmitter not busy anymore, because now we have a free
  1192.      * transmit descriptor which can be filled by SK_send_packet and
  1193.      * afterwards sent by the LANCE
  1194.      * 
  1195.      * The function which do handle slow IRQ parts is do_bottom_half()
  1196.      * which runs at normal kernel priority, that means all interrupt are
  1197.      * enabled. (see kernel/irq.c)
  1198.      *  
  1199.      * net_bh does something like this:
  1200.      *  - check if already in net_bh
  1201.      *  - try to transmit something from the send queue
  1202.      *  - if something is in the receive queue send it up to higher 
  1203.      *    levels if it is a known protocol
  1204.      *  - try to transmit something from the send queue
  1205.      */
  1206.     netif_wake_queue(dev);
  1207. } /* End of SK_txintr() */
  1208. /*-
  1209.  * Function       : SK_rxintr
  1210.  * Author         : Patrick J.D. Weichmann
  1211.  * Date Created   : 94/05/27
  1212.  *
  1213.  * Description    : Buffer sent, check for errors, relinquish ownership
  1214.  *                  of the receive message descriptor. 
  1215.  *
  1216.  * Parameters     : I : SK_G16 device structure
  1217.  * Return Value   : None
  1218.  * Globals        : None
  1219.  * Update History :
  1220.  *     YY/MM/DD  uid  Description
  1221. -*/
  1222. static void SK_rxintr(struct net_device *dev)
  1223. {
  1224.     struct rmd *rmdp;
  1225.     int rmdstat;
  1226.     struct priv *p = (struct priv *) dev->priv;
  1227.     PRINTK2(("## %s: SK_rxintr(). CSR0: %#06xn", 
  1228.             SK_NAME, SK_read_reg(CSR0)));
  1229.     rmdp = p->rmdhead + p->rmdnum;
  1230.     /* As long as we own the next entry, check status and send
  1231.      * it up to higher layer 
  1232.      */
  1233.     while (!( (rmdstat = readb(&rmdp->u.s.status)) & RX_OWN))
  1234.     {
  1235. /* 
  1236.          * Start and end of packet must be set, because we use 
  1237.  * the ethernet maximum packet length (1518) as buffer size.
  1238.  * 
  1239.  * Because our buffers are at maximum OFLO and BUFF errors are
  1240.  * not to be concerned (see Data sheet)
  1241.  */
  1242. if ((rmdstat & (RX_STP | RX_ENP)) != (RX_STP | RX_ENP))
  1243. {
  1244.     /* Start of a frame > 1518 Bytes ? */
  1245.     if (rmdstat & RX_STP) 
  1246.     {
  1247. p->stats.rx_errors++;        /* bad packet received */
  1248. p->stats.rx_length_errors++; /* packet too long */
  1249. printk("%s: packet too longn", dev->name);
  1250.     }
  1251.     
  1252.     /* 
  1253.              * All other packets will be ignored until a new frame with
  1254.      * start (RX_STP) set follows.
  1255.      * 
  1256.      * What we do is just give descriptor free for new incoming
  1257.      * packets. 
  1258.      */
  1259.     writeb(RX_OWN, &rmdp->u.s.status); /* Relinquish ownership to LANCE */ 
  1260. }
  1261. else if (rmdstat & RX_ERR)          /* Receive Error ? */
  1262. {
  1263.     printk("%s: RX error: %04xn", dev->name, (int) rmdstat);
  1264.     
  1265.     p->stats.rx_errors++;
  1266.     if (rmdstat & RX_FRAM) p->stats.rx_frame_errors++;
  1267.     if (rmdstat & RX_CRC)  p->stats.rx_crc_errors++;
  1268.     writeb(RX_OWN, &rmdp->u.s.status); /* Relinquish ownership to LANCE */
  1269. }
  1270. else /* We have a packet which can be queued for the upper layers */
  1271. {
  1272.     int len = readw(&rmdp->mlen) & 0x0fff;  /* extract message length from receive buffer */
  1273.     struct sk_buff *skb;
  1274.     skb = dev_alloc_skb(len+2); /* allocate socket buffer */ 
  1275.     if (skb == NULL)                /* Could not get mem ? */
  1276.     {
  1277.     
  1278. /* 
  1279.                  * Couldn't allocate sk_buffer so we give descriptor back
  1280.  * to Lance, update statistics and go ahead.
  1281.  */
  1282. writeb(RX_OWN, &rmdp->u.s.status); /* Relinquish ownership to LANCE */
  1283. printk("%s: Couldn't allocate sk_buff, deferring packet.n",
  1284.        dev->name);
  1285. p->stats.rx_dropped++;
  1286. break;                      /* Jump out */
  1287.     }
  1288.     
  1289.     /* Prepare sk_buff to queue for upper layers */
  1290.     skb->dev = dev;
  1291.     skb_reserve(skb,2); /* Align IP header on 16 byte boundary */
  1292.     
  1293.     /* 
  1294.              * Copy data out of our receive descriptor into sk_buff.
  1295.      *
  1296.      * (rmdp->u.buffer & 0x00ffffff) -> get address of buffer and 
  1297.      * ignore status fields) 
  1298.      */
  1299.     memcpy_fromio(skb_put(skb,len), (rmdp->u.buffer & 0x00ffffff), len);
  1300.     /* 
  1301.              * Notify the upper protocol layers that there is another packet
  1302.      * to handle
  1303.      *
  1304.      * netif_rx() always succeeds. see /net/inet/dev.c for more.
  1305.      */
  1306.     skb->protocol=eth_type_trans(skb,dev);
  1307.     netif_rx(skb);                 /* queue packet and mark it for processing */
  1308.    
  1309.     /* 
  1310.              * Packet is queued and marked for processing so we
  1311.      * free our descriptor and update statistics 
  1312.      */
  1313.     writeb(RX_OWN, &rmdp->u.s.status);
  1314.     dev->last_rx = jiffies;
  1315.     p->stats.rx_packets++;
  1316.     p->stats.rx_bytes += len;
  1317.     p->rmdnum++;
  1318.     p->rmdnum %= RMDNUM;
  1319.     rmdp = p->rmdhead + p->rmdnum;
  1320. }
  1321.     }
  1322. } /* End of SK_rxintr() */
  1323. /*-
  1324.  * Function       : SK_close
  1325.  * Author         : Patrick J.D. Weichmann
  1326.  * Date Created   : 94/05/26
  1327.  *
  1328.  * Description    : close gets called from dev_close() and should
  1329.  *                  deinstall the card (free_irq, mem etc).
  1330.  *
  1331.  * Parameters     : I : struct net_device *dev - our device structure
  1332.  * Return Value   : 0 - closed device driver
  1333.  * Errors         : None
  1334.  * Globals        : None
  1335.  * Update History :
  1336.  *     YY/MM/DD  uid  Description
  1337. -*/
  1338. /* I have tried to set BOOT_ROM on and RAM off but then, after a 'ifconfig
  1339.  * down' the system stops. So I don't shut set card to init state.
  1340.  */
  1341. static int SK_close(struct net_device *dev)
  1342. {
  1343.     PRINTK(("## %s: SK_close(). CSR0: %#06xn", 
  1344.            SK_NAME, SK_read_reg(CSR0)));
  1345.     netif_stop_queue(dev);    /* Transmitter busy */
  1346.     printk("%s: Shutting %s down CSR0 %#06xn", dev->name, SK_NAME, 
  1347.            (int) SK_read_reg(CSR0));
  1348.     SK_write_reg(CSR0, CSR0_STOP); /* STOP the LANCE */
  1349.     free_irq(dev->irq, dev);      /* Free IRQ */
  1350.     return 0; /* always succeed */
  1351.     
  1352. } /* End of SK_close() */
  1353. /*-
  1354.  * Function       : SK_get_stats
  1355.  * Author         : Patrick J.D. Weichmann
  1356.  * Date Created   : 94/05/26
  1357.  *
  1358.  * Description    : Return current status structure to upper layers.
  1359.  *                  It is called by sprintf_stats (dev.c).
  1360.  *
  1361.  * Parameters     : I : struct net_device *dev   - our device structure
  1362.  * Return Value   : struct net_device_stats * - our current statistics
  1363.  * Errors         : None
  1364.  * Side Effects   : None
  1365.  * Update History :
  1366.  *     YY/MM/DD  uid  Description
  1367. -*/
  1368. static struct net_device_stats *SK_get_stats(struct net_device *dev)
  1369. {
  1370.     struct priv *p = (struct priv *) dev->priv;
  1371.     PRINTK(("## %s: SK_get_stats(). CSR0: %#06xn", 
  1372.            SK_NAME, SK_read_reg(CSR0)));
  1373.     return &p->stats;             /* Return Device status */
  1374. } /* End of SK_get_stats() */
  1375. /*-
  1376.  * Function       : set_multicast_list
  1377.  * Author         : Patrick J.D. Weichmann
  1378.  * Date Created   : 94/05/26
  1379.  *
  1380.  * Description    : This function gets called when a program performs
  1381.  *                  a SIOCSIFFLAGS call. Ifconfig does this if you call
  1382.  *                  'ifconfig [-]allmulti' which enables or disables the
  1383.  *                  Promiscuous mode.
  1384.  *                  Promiscuous mode is when the Network card accepts all
  1385.  *                  packets, not only the packets which match our MAC 
  1386.  *                  Address. It is useful for writing a network monitor,
  1387.  *                  but it is also a security problem. You have to remember
  1388.  *                  that all information on the net is not encrypted.
  1389.  *
  1390.  * Parameters     : I : struct net_device *dev - SK_G16 device Structure
  1391.  * Return Value   : None
  1392.  * Errors         : None
  1393.  * Globals        : None
  1394.  * Update History :
  1395.  *     YY/MM/DD  uid  Description
  1396.  *     95/10/18  ACox  New multicast calling scheme
  1397. -*/
  1398. /* Set or clear the multicast filter for SK_G16.
  1399.  */
  1400. static void set_multicast_list(struct net_device *dev)
  1401. {
  1402.     if (dev->flags&IFF_PROMISC)
  1403.     {
  1404. /* Reinitialize LANCE with MODE_PROM set */
  1405. SK_lance_init(dev, MODE_PROM);
  1406.     }
  1407.     else if (dev->mc_count==0 && !(dev->flags&IFF_ALLMULTI))
  1408.     {
  1409. /* Reinitialize LANCE without MODE_PROM */
  1410. SK_lance_init(dev, MODE_NORMAL);
  1411.     }
  1412.     else
  1413.     {
  1414. /* Multicast with logical address filter on */
  1415. /* Reinitialize LANCE without MODE_PROM */
  1416. SK_lance_init(dev, MODE_NORMAL);
  1417. /* Not implemented yet. */
  1418.     }
  1419. } /* End of set_multicast_list() */
  1420. /*-
  1421.  * Function       : SK_rom_addr
  1422.  * Author         : Patrick J.D. Weichmann
  1423.  * Date Created   : 94/06/01
  1424.  *
  1425.  * Description    : Try to find a Boot_ROM at all possible locations
  1426.  *
  1427.  * Parameters     : None
  1428.  * Return Value   : Address where Boot_ROM is
  1429.  * Errors         : 0 - Did not find Boot_ROM
  1430.  * Globals        : None
  1431.  * Update History :
  1432.  *     YY/MM/DD  uid  Description
  1433. -*/
  1434. unsigned int __init SK_rom_addr(void)
  1435. {
  1436.     int i,j;
  1437.     int rom_found = 0;
  1438.     unsigned int rom_location[] = SK_BOOT_ROM_LOCATIONS;
  1439.     unsigned char rom_id[] = SK_BOOT_ROM_ID;
  1440.     unsigned char test_byte;
  1441.     /* Autodetect Boot_ROM */
  1442.     PRINTK(("## %s: Autodetection of Boot_ROMn", SK_NAME));
  1443.     for (i = 0; (rom_location[i] != 0) && (rom_found == 0); i++)
  1444.     {
  1445. PRINTK(("##   Trying ROM location %#08x", rom_location[i]));
  1446. rom_found = 1; 
  1447. for (j = 0; j < 6; j++)
  1448. {
  1449.     test_byte = readb(rom_location[i]+j);
  1450.     PRINTK((" %02x ", *test_byte));
  1451.     if(test_byte != rom_id[j])
  1452.     {
  1453. rom_found = 0;
  1454.     } 
  1455. }
  1456. PRINTK(("n"));
  1457.     }
  1458.     if (rom_found == 1)
  1459.     {
  1460. PRINTK(("## %s: Boot_ROM found at %#08xn", 
  1461.                SK_NAME, rom_location[(i-1)]));
  1462. return (rom_location[--i]);
  1463.     }
  1464.     else
  1465.     {
  1466. PRINTK(("%s: No Boot_ROM foundn", SK_NAME));
  1467. return 0;
  1468.     }
  1469. } /* End of SK_rom_addr() */
  1470. /* LANCE access functions 
  1471.  *
  1472.  * ! CSR1-3 can only be accessed when in CSR0 the STOP bit is set !
  1473.  */
  1474. /*-
  1475.  * Function       : SK_reset_board
  1476.  *
  1477.  * Author         : Patrick J.D. Weichmann
  1478.  *
  1479.  * Date Created   : 94/05/25
  1480.  *
  1481.  * Description    : This function resets SK_G16 and all components, but
  1482.  *                  POS registers are not changed
  1483.  *
  1484.  * Parameters     : None
  1485.  * Return Value   : None
  1486.  * Errors         : None
  1487.  * Globals        : SK_RAM *board - SK_RAM structure pointer
  1488.  *
  1489.  * Update History :
  1490.  *     YY/MM/DD  uid  Description
  1491. -*/
  1492. void SK_reset_board(void)
  1493. {
  1494.     writeb(0x00, SK_PORT);       /* Reset active */
  1495.     mdelay(5);                /* Delay min 5ms */
  1496.     writeb(SK_RESET, SK_PORT);   /* Set back to normal operation */
  1497. } /* End of SK_reset_board() */
  1498. /*-
  1499.  * Function       : SK_set_RAP
  1500.  * Author         : Patrick J.D. Weichmann
  1501.  * Date Created   : 94/05/25
  1502.  *
  1503.  * Description    : Set LANCE Register Address Port to register
  1504.  *                  for later data transfer.
  1505.  *
  1506.  * Parameters     : I : reg_number - which CSR to read/write from/to
  1507.  * Return Value   : None
  1508.  * Errors         : None
  1509.  * Globals        : SK_RAM *board - SK_RAM structure pointer
  1510.  * Update History :
  1511.  *     YY/MM/DD  uid  Description
  1512. -*/
  1513. void SK_set_RAP(int reg_number)
  1514. {
  1515.     writew(reg_number, SK_IOREG);
  1516.     writeb(SK_RESET | SK_RAP | SK_WREG, SK_PORT);
  1517.     writeb(SK_DOIO, SK_IOCOM);
  1518.     while (readb(SK_PORT) & SK_IORUN) 
  1519. barrier();
  1520. } /* End of SK_set_RAP() */
  1521. /*-
  1522.  * Function       : SK_read_reg
  1523.  * Author         : Patrick J.D. Weichmann
  1524.  * Date Created   : 94/05/25
  1525.  *
  1526.  * Description    : Set RAP and read data from a LANCE CSR register
  1527.  *
  1528.  * Parameters     : I : reg_number - which CSR to read from
  1529.  * Return Value   : Register contents
  1530.  * Errors         : None
  1531.  * Globals        : SK_RAM *board - SK_RAM structure pointer
  1532.  * Update History :
  1533.  *     YY/MM/DD  uid  Description
  1534. -*/
  1535. int SK_read_reg(int reg_number)
  1536. {
  1537.     SK_set_RAP(reg_number);
  1538.     writeb(SK_RESET | SK_RDATA | SK_RREG, SK_PORT);
  1539.     writeb(SK_DOIO, SK_IOCOM);
  1540.     while (readb(SK_PORT) & SK_IORUN)
  1541. barrier();
  1542.     return (readw(SK_IOREG));
  1543. } /* End of SK_read_reg() */
  1544. /*-
  1545.  * Function       : SK_rread_reg
  1546.  * Author         : Patrick J.D. Weichmann
  1547.  * Date Created   : 94/05/28
  1548.  *
  1549.  * Description    : Read data from preseted register.
  1550.  *                  This function requires that you know which
  1551.  *                  Register is actually set. Be aware that CSR1-3
  1552.  *                  can only be accessed when in CSR0 STOP is set.
  1553.  *
  1554.  * Return Value   : Register contents
  1555.  * Errors         : None
  1556.  * Globals        : SK_RAM *board - SK_RAM structure pointer
  1557.  * Update History :
  1558.  *     YY/MM/DD  uid  Description
  1559. -*/
  1560. int SK_rread_reg(void)
  1561. {
  1562.     writeb(SK_RESET | SK_RDATA | SK_RREG, SK_PORT);
  1563.     writeb(SK_DOIO, SK_IOCOM);
  1564.     while (readb(SK_PORT) & SK_IORUN)
  1565. barrier();
  1566.     return (readw(SK_IOREG));
  1567. } /* End of SK_rread_reg() */
  1568. /*-
  1569.  * Function       : SK_write_reg
  1570.  * Author         : Patrick J.D. Weichmann
  1571.  * Date Created   : 94/05/25
  1572.  *
  1573.  * Description    : This function sets the RAP then fills in the
  1574.  *                  LANCE I/O Reg and starts Transfer to LANCE.
  1575.  *                  It waits until transfer has ended which is max. 7 ms
  1576.  *                  and then it returns.
  1577.  *
  1578.  * Parameters     : I : reg_number - which CSR to write to
  1579.  *                  I : value      - what value to fill into register 
  1580.  * Return Value   : None
  1581.  * Errors         : None
  1582.  * Globals        : SK_RAM *board - SK_RAM structure pointer
  1583.  * Update History :
  1584.  *     YY/MM/DD  uid  Description
  1585. -*/
  1586. void SK_write_reg(int reg_number, int value)
  1587. {
  1588.     SK_set_RAP(reg_number);
  1589.     writew(value, SK_IOREG);
  1590.     writeb(SK_RESET | SK_RDATA | SK_WREG, SK_PORT);
  1591.     writeb(SK_DOIO, SK_IOCOM);
  1592.     while (readb(SK_PORT) & SK_IORUN)
  1593. barrier();
  1594. } /* End of SK_write_reg */
  1595. /* 
  1596.  * Debugging functions
  1597.  * -------------------
  1598.  */
  1599. /*-
  1600.  * Function       : SK_print_pos
  1601.  * Author         : Patrick J.D. Weichmann
  1602.  * Date Created   : 94/05/25
  1603.  *
  1604.  * Description    : This function prints out the 4 POS (Programmable
  1605.  *                  Option Select) Registers. Used mainly to debug operation.
  1606.  *
  1607.  * Parameters     : I : struct net_device *dev - SK_G16 device structure
  1608.  *                  I : char * - Text which will be printed as title
  1609.  * Return Value   : None
  1610.  * Errors         : None
  1611.  * Update History :
  1612.  *     YY/MM/DD  uid  Description
  1613. -*/
  1614. void SK_print_pos(struct net_device *dev, char *text)
  1615. {
  1616.     int ioaddr = dev->base_addr;
  1617.     unsigned char pos0 = inb(SK_POS0),
  1618.   pos1 = inb(SK_POS1),
  1619.   pos2 = inb(SK_POS2),
  1620.   pos3 = inb(SK_POS3),
  1621.   pos4 = inb(SK_POS4);
  1622.     printk("## %s: %s.n"
  1623.            "##   pos0=%#4x pos1=%#4x pos2=%#04x pos3=%#08x pos4=%#04xn",
  1624.            SK_NAME, text, pos0, pos1, pos2, (pos3<<14), pos4);
  1625. } /* End of SK_print_pos() */
  1626. /*-
  1627.  * Function       : SK_print_dev
  1628.  * Author         : Patrick J.D. Weichmann
  1629.  * Date Created   : 94/05/25
  1630.  *
  1631.  * Description    : This function simply prints out the important fields
  1632.  *                  of the device structure.
  1633.  *
  1634.  * Parameters     : I : struct net_device *dev  - SK_G16 device structure
  1635.  *                  I : char *text - Title for printing
  1636.  * Return Value   : None
  1637.  * Errors         : None
  1638.  * Update History :
  1639.  *     YY/MM/DD  uid  Description
  1640. -*/
  1641. void SK_print_dev(struct net_device *dev, char *text)
  1642. {
  1643.     if (dev == NULL)
  1644.     {
  1645. printk("## %s: Device Structure. %sn", SK_NAME, text);
  1646. printk("## DEVICE == NULLn");
  1647.     }
  1648.     else
  1649.     {
  1650. printk("## %s: Device Structure. %sn", SK_NAME, text);
  1651. printk("## Device Name: %s Base Address: %#06lx IRQ: %dn", 
  1652.                dev->name, dev->base_addr, dev->irq);
  1653.        
  1654. printk("## next device: %#08x init function: %#08xn", 
  1655.               (int) dev->next, (int) dev->init);
  1656.     }
  1657. } /* End of SK_print_dev() */
  1658. /*-
  1659.  * Function       : SK_print_ram
  1660.  * Author         : Patrick J.D. Weichmann
  1661.  * Date Created   : 94/06/02
  1662.  *
  1663.  * Description    : This function is used to check how are things set up
  1664.  *                  in the 16KB RAM. Also the pointers to the receive and 
  1665.  *                  transmit descriptor rings and rx and tx buffers locations.
  1666.  *                  It contains a minor bug in printing, but has no effect to the values
  1667.  *                  only newlines are not correct.
  1668.  *
  1669.  * Parameters     : I : struct net_device *dev - SK_G16 device structure
  1670.  * Return Value   : None
  1671.  * Errors         : None
  1672.  * Globals        : None
  1673.  * Update History :
  1674.  *     YY/MM/DD  uid  Description
  1675. -*/
  1676. void __init SK_print_ram(struct net_device *dev)
  1677. {
  1678.     int i;    
  1679.     struct priv *p = (struct priv *) dev->priv;
  1680.     printk("## %s: RAM Details.n"
  1681.            "##   RAM at %#08x tmdhead: %#08x rmdhead: %#08x initblock: %#08xn",
  1682.            SK_NAME, 
  1683.            (unsigned int) p->ram,
  1684.            (unsigned int) p->tmdhead, 
  1685.            (unsigned int) p->rmdhead, 
  1686.            (unsigned int) &(p->ram)->ib);
  1687.            
  1688.     printk("##   ");
  1689.     for(i = 0; i < TMDNUM; i++)
  1690.     {
  1691.            if (!(i % 3)) /* Every third line do a newline */
  1692.            {
  1693.                printk("n##   ");
  1694.            }
  1695.         printk("tmdbufs%d: %#08x ", (i+1), (int) p->tmdbufs[i]);
  1696.     }
  1697.     printk("##   ");
  1698.     for(i = 0; i < RMDNUM; i++)
  1699.     {
  1700.          if (!(i % 3)) /* Every third line do a newline */
  1701.            {
  1702.                printk("n##   ");
  1703.            }
  1704.         printk("rmdbufs%d: %#08x ", (i+1), (int) p->rmdbufs[i]);
  1705.     } 
  1706.     printk("n");
  1707. } /* End of SK_print_ram() */