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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Linux ARCnet driver - COM90xx chipset (IO-mapped buffers)
  3.  * 
  4.  * Written 1997 by David Woodhouse.
  5.  * Written 1994-1999 by Avery Pennarun.
  6.  * Written 1999-2000 by Martin Mares <mj@ucw.cz>.
  7.  * Derived from skeleton.c by Donald Becker.
  8.  *
  9.  * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
  10.  *  for sponsoring the further development of this driver.
  11.  *
  12.  * **********************
  13.  *
  14.  * The original copyright of skeleton.c was as follows:
  15.  *
  16.  * skeleton.c Written 1993 by Donald Becker.
  17.  * Copyright 1993 United States Government as represented by the
  18.  * Director, National Security Agency.  This software may only be used
  19.  * and distributed according to the terms of the GNU General Public License as
  20.  * modified by SRC, incorporated herein by reference.
  21.  *
  22.  * **********************
  23.  *
  24.  * For more details, see drivers/net/arcnet.c
  25.  *
  26.  * **********************
  27.  */
  28. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/ioport.h>
  31. #include <linux/slab.h>
  32. #include <linux/delay.h>
  33. #include <linux/netdevice.h>
  34. #include <linux/bootmem.h>
  35. #include <linux/init.h>
  36. #include <asm/io.h>
  37. #include <linux/arcdevice.h>
  38. #define VERSION "arcnet: COM90xx IO-mapped mode support (by David Woodhouse et el.)n"
  39. /* Internal function declarations */
  40. static int com90io_found(struct net_device *dev);
  41. static void com90io_command(struct net_device *dev, int command);
  42. static int com90io_status(struct net_device *dev);
  43. static void com90io_setmask(struct net_device *dev, int mask);
  44. static int com90io_reset(struct net_device *dev, int really_reset);
  45. static void com90io_openclose(struct net_device *dev, bool open);
  46. static void com90io_copy_to_card(struct net_device *dev, int bufnum, int offset,
  47.  void *buf, int count);
  48. static void com90io_copy_from_card(struct net_device *dev, int bufnum, int offset,
  49.    void *buf, int count);
  50. /* Handy defines for ARCnet specific stuff */
  51. /* The number of low I/O ports used by the card. */
  52. #define ARCNET_TOTAL_SIZE 16
  53. /* COM 9026 controller chip --> ARCnet register addresses */
  54. #define _INTMASK (ioaddr+0) /* writable */
  55. #define _STATUS  (ioaddr+0) /* readable */
  56. #define _COMMAND (ioaddr+1) /* writable, returns random vals on read (?) */
  57. #define _RESET  (ioaddr+8) /* software reset (on read) */
  58. #define _MEMDATA  (ioaddr+12) /* Data port for IO-mapped memory */
  59. #define _ADDR_HI  (ioaddr+15) /* Control registers for said */
  60. #define _ADDR_LO  (ioaddr+14)
  61. #define _CONFIG  (ioaddr+2) /* Configuration register */
  62. #undef ASTATUS
  63. #undef ACOMMAND
  64. #undef AINTMASK
  65. #define ASTATUS() inb(_STATUS)
  66. #define ACOMMAND(cmd) outb((cmd),_COMMAND)
  67. #define AINTMASK(msk) outb((msk),_INTMASK)
  68. #define SETCONF()  outb((lp->config),_CONFIG)
  69. /****************************************************************************
  70.  *                                                                          *
  71.  * IO-mapped operation routines                                             *
  72.  *                                                                          *
  73.  ****************************************************************************/
  74. #undef ONE_AT_A_TIME_TX
  75. #undef ONE_AT_A_TIME_RX
  76. static u_char get_buffer_byte(struct net_device *dev, unsigned offset)
  77. {
  78. int ioaddr = dev->base_addr;
  79. outb(offset >> 8, _ADDR_HI);
  80. outb(offset & 0xff, _ADDR_LO);
  81. return inb(_MEMDATA);
  82. }
  83. #ifdef ONE_AT_A_TIME_TX
  84. static void put_buffer_byte(struct net_device *dev, unsigned offset, u_char datum)
  85. {
  86. int ioaddr = dev->base_addr;
  87. outb(offset >> 8, _ADDR_HI);
  88. outb(offset & 0xff, _ADDR_LO);
  89. outb(datum, _MEMDATA);
  90. }
  91. #endif
  92. static void get_whole_buffer(struct net_device *dev, unsigned offset, unsigned length, char *dest)
  93. {
  94. int ioaddr = dev->base_addr;
  95. outb((offset >> 8) | AUTOINCflag, _ADDR_HI);
  96. outb(offset & 0xff, _ADDR_LO);
  97. while (length--)
  98. #ifdef ONE_AT_A_TIME_RX
  99. *(dest++) = get_buffer_byte(dev, offset++);
  100. #else
  101. *(dest++) = inb(_MEMDATA);
  102. #endif
  103. }
  104. static void put_whole_buffer(struct net_device *dev, unsigned offset, unsigned length, char *dest)
  105. {
  106. int ioaddr = dev->base_addr;
  107. outb((offset >> 8) | AUTOINCflag, _ADDR_HI);
  108. outb(offset & 0xff, _ADDR_LO);
  109. while (length--)
  110. #ifdef ONE_AT_A_TIME_TX
  111. put_buffer_byte(dev, offset++, *(dest++));
  112. #else
  113. outb(*(dest++), _MEMDATA);
  114. #endif
  115. }
  116. /*
  117.  * We cannot probe for an IO mapped card either, although we can check that
  118.  * it's where we were told it was, and even autoirq
  119.  */
  120. static int __init com90io_probe(struct net_device *dev)
  121. {
  122. int ioaddr = dev->base_addr, status;
  123. unsigned long airqmask;
  124. #ifndef MODULE
  125. arcnet_init();
  126. #endif
  127. BUGLVL(D_NORMAL) printk(VERSION);
  128. BUGLVL(D_NORMAL) printk("E-mail me if you actually test this driver, please!n");
  129. if (!ioaddr) {
  130. BUGMSG(D_NORMAL, "No autoprobe for IO mapped cards; you "
  131.        "must specify the base address!n");
  132. return -ENODEV;
  133. }
  134. if (check_region(ioaddr, ARCNET_TOTAL_SIZE)) {
  135. BUGMSG(D_INIT_REASONS, "IO check_region %x-%x failed.n",
  136.        ioaddr, ioaddr + ARCNET_TOTAL_SIZE - 1);
  137. return -ENXIO;
  138. }
  139. if (ASTATUS() == 0xFF) {
  140. BUGMSG(D_INIT_REASONS, "IO address %x emptyn", ioaddr);
  141. return -ENODEV;
  142. }
  143. inb(_RESET);
  144. mdelay(RESETtime);
  145. status = ASTATUS();
  146. if ((status & 0x9D) != (NORXflag | RECONflag | TXFREEflag | RESETflag)) {
  147. BUGMSG(D_INIT_REASONS, "Status invalid (%Xh).n", status);
  148. return -ENODEV;
  149. }
  150. BUGMSG(D_INIT_REASONS, "Status after reset: %Xn", status);
  151. ACOMMAND(CFLAGScmd | RESETclear | CONFIGclear);
  152. BUGMSG(D_INIT_REASONS, "Status after reset acknowledged: %Xn", status);
  153. status = ASTATUS();
  154. if (status & RESETflag) {
  155. BUGMSG(D_INIT_REASONS, "Eternal reset (status=%Xh)n", status);
  156. return -ENODEV;
  157. }
  158. outb((0x16 | IOMAPflag) & ~ENABLE16flag, _CONFIG);
  159. /* Read first loc'n of memory */
  160. outb(AUTOINCflag, _ADDR_HI);
  161. outb(0, _ADDR_LO);
  162. if ((status = inb(_MEMDATA)) != 0xd1) {
  163. BUGMSG(D_INIT_REASONS, "Signature byte not found"
  164.        " (%Xh instead).n", status);
  165. return -ENODEV;
  166. }
  167. if (!dev->irq) {
  168. /*
  169.  * if we do this, we're sure to get an IRQ since the
  170.  * card has just reset and the NORXflag is on until
  171.  * we tell it to start receiving.
  172.  */
  173. airqmask = probe_irq_on();
  174. outb(NORXflag, _INTMASK);
  175. udelay(1);
  176. outb(0, _INTMASK);
  177. dev->irq = probe_irq_off(airqmask);
  178. if (dev->irq <= 0) {
  179. BUGMSG(D_INIT_REASONS, "Autoprobe IRQ failedn");
  180. return -ENODEV;
  181. }
  182. }
  183. return com90io_found(dev);
  184. }
  185. /* Set up the struct net_device associated with this card.  Called after
  186.  * probing succeeds.
  187.  */
  188. static int __init com90io_found(struct net_device *dev)
  189. {
  190. struct arcnet_local *lp;
  191. int ioaddr = dev->base_addr;
  192. /* Reserve the irq */
  193. if (request_irq(dev->irq, &arcnet_interrupt, 0, "arcnet (COM90xx-IO)", dev)) {
  194. BUGMSG(D_NORMAL, "Can't get IRQ %d!n", dev->irq);
  195. return -ENODEV;
  196. }
  197. /* Reserve the I/O region - guaranteed to work by check_region */
  198. if (!request_region(dev->base_addr, ARCNET_TOTAL_SIZE, "arcnet (COM90xx-IO)")) {
  199. free_irq(dev->irq, dev);
  200. return -EBUSY;
  201. }
  202. /* Initialize the rest of the device structure. */
  203. dev->priv = kmalloc(sizeof(struct arcnet_local), GFP_KERNEL);
  204. if (!dev->priv) {
  205. free_irq(dev->irq, dev);
  206. release_region(dev->base_addr, ARCNET_TOTAL_SIZE);
  207. return -ENOMEM;
  208. }
  209. memset(dev->priv, 0, sizeof(struct arcnet_local));
  210. lp = (struct arcnet_local *) (dev->priv);
  211. lp->card_name = "COM90xx I/O";
  212. lp->hw.command = com90io_command;
  213. lp->hw.status = com90io_status;
  214. lp->hw.intmask = com90io_setmask;
  215. lp->hw.reset = com90io_reset;
  216. lp->hw.open_close = com90io_openclose;
  217. lp->hw.copy_to_card = com90io_copy_to_card;
  218. lp->hw.copy_from_card = com90io_copy_from_card;
  219. /*
  220.  * Fill in the fields of the device structure with generic
  221.  * values.
  222.  */
  223. arcdev_setup(dev);
  224. lp->config = (0x16 | IOMAPflag) & ~ENABLE16flag;
  225. SETCONF();
  226. /* get and check the station ID from offset 1 in shmem */
  227. dev->dev_addr[0] = get_buffer_byte(dev, 1);
  228. BUGMSG(D_NORMAL, "COM90IO: station %02Xh found at %03lXh, IRQ %d.n",
  229.        dev->dev_addr[0], dev->base_addr, dev->irq);
  230. return 0;
  231. }
  232. /*
  233.  * Do a hardware reset on the card, and set up necessary registers.
  234.  *
  235.  * This should be called as little as possible, because it disrupts the
  236.  * token on the network (causes a RECON) and requires a significant delay.
  237.  *
  238.  * However, it does make sure the card is in a defined state.
  239.  */
  240. static int com90io_reset(struct net_device *dev, int really_reset)
  241. {
  242. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  243. short ioaddr = dev->base_addr;
  244. BUGMSG(D_INIT, "Resetting %s (status=%02Xh)n", dev->name, ASTATUS());
  245. if (really_reset) {
  246. /* reset the card */
  247. inb(_RESET);
  248. mdelay(RESETtime);
  249. }
  250. /* Set the thing to IO-mapped, 8-bit  mode */
  251. lp->config = (0x1C | IOMAPflag) & ~ENABLE16flag;
  252. SETCONF();
  253. ACOMMAND(CFLAGScmd | RESETclear); /* clear flags & end reset */
  254. ACOMMAND(CFLAGScmd | CONFIGclear);
  255. /* verify that the ARCnet signature byte is present */
  256. if (get_buffer_byte(dev, 0) != TESTvalue) {
  257. BUGMSG(D_NORMAL, "reset failed: TESTvalue not present.n");
  258. return 1;
  259. }
  260. /* enable extended (512-byte) packets */
  261. ACOMMAND(CONFIGcmd | EXTconf);
  262. /* done!  return success. */
  263. return 0;
  264. }
  265. static void com90io_command(struct net_device *dev, int cmd)
  266. {
  267. short ioaddr = dev->base_addr;
  268. ACOMMAND(cmd);
  269. }
  270. static int com90io_status(struct net_device *dev)
  271. {
  272. short ioaddr = dev->base_addr;
  273. return ASTATUS();
  274. }
  275. static void com90io_setmask(struct net_device *dev, int mask)
  276. {
  277. short ioaddr = dev->base_addr;
  278. AINTMASK(mask);
  279. }
  280. static void com90io_openclose(struct net_device *dev, int open)
  281. {
  282. if (open)
  283. MOD_INC_USE_COUNT;
  284. else
  285. MOD_DEC_USE_COUNT;
  286. }
  287. static void com90io_copy_to_card(struct net_device *dev, int bufnum, int offset,
  288.  void *buf, int count)
  289. {
  290. TIME("put_whole_buffer", count, put_whole_buffer(dev, bufnum * 512 + offset, count, buf));
  291. }
  292. static void com90io_copy_from_card(struct net_device *dev, int bufnum, int offset,
  293.    void *buf, int count)
  294. {
  295. TIME("get_whole_buffer", count, get_whole_buffer(dev, bufnum * 512 + offset, count, buf));
  296. }
  297. #ifdef MODULE
  298. static struct net_device *my_dev;
  299. /* Module parameters */
  300. static int io; /* use the insmod io= irq= shmem= options */
  301. static int irq;
  302. static char *device; /* use eg. device=arc1 to change name */
  303. MODULE_PARM(io, "i");
  304. MODULE_PARM(irq, "i");
  305. MODULE_PARM(device, "s");
  306. MODULE_LICENSE("GPL");
  307. int init_module(void)
  308. {
  309. struct net_device *dev;
  310. int err;
  311. dev = dev_alloc(device ? : "arc%d", &err);
  312. if (!dev)
  313. return err;
  314. dev->base_addr = io;
  315. dev->irq = irq;
  316. if (dev->irq == 2)
  317. dev->irq = 9;
  318. if (com90io_probe(dev))
  319. return -EIO;
  320. my_dev = dev;
  321. return 0;
  322. }
  323. void cleanup_module(void)
  324. {
  325. struct net_device *dev = my_dev;
  326. int ioaddr = dev->base_addr;
  327. unregister_netdev(dev);
  328. /* Set the thing back to MMAP mode, in case the old driver is loaded later */
  329. outb((inb(_CONFIG) & ~IOMAPflag), _CONFIG);
  330. free_irq(dev->irq, dev);
  331. release_region(dev->base_addr, ARCNET_TOTAL_SIZE);
  332. kfree(dev->priv);
  333. kfree(dev);
  334. }
  335. #else
  336. static int __init com90io_setup(char *s)
  337. {
  338. struct net_device *dev;
  339. int ints[4];
  340. s = get_options(s, 4, ints);
  341. if (!ints[0])
  342. return 0;
  343. dev = alloc_bootmem(sizeof(struct net_device));
  344. memset(dev, 0, sizeof(struct net_device));
  345. dev->init = com90io_probe;
  346. switch (ints[0]) {
  347. default: /* ERROR */
  348. printk("com90io: Too many arguments.n");
  349. case 2: /* IRQ */
  350. dev->irq = ints[2];
  351. case 1: /* IO address */
  352. dev->base_addr = ints[1];
  353. }
  354. if (*s)
  355. strncpy(dev->name, s, 9);
  356. else
  357. strcpy(dev->name, "arc%d");
  358. if (register_netdev(dev))
  359. printk(KERN_ERR "com90io: Cannot register arcnet devicen");
  360. return 1;
  361. }
  362. __setup("com90io=", com90io_setup);
  363. #endif /* MODULE */