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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  abyss.c: Network driver for the Madge Smart 16/4 PCI Mk2 token ring card.
  3.  *
  4.  *  Written 1999-2000 by Adam Fritzler
  5.  *
  6.  *  This software may be used and distributed according to the terms
  7.  *  of the GNU General Public License, incorporated herein by reference.
  8.  *
  9.  *  This driver module supports the following cards:
  10.  *      - Madge Smart 16/4 PCI Mk2
  11.  *
  12.  *  Maintainer(s):
  13.  *    AF Adam Fritzler mid@auk.cx
  14.  *
  15.  *  Modification History:
  16.  * 30-Dec-99 AF Split off from the tms380tr driver.
  17.  * 22-Jan-00 AF Updated to use indirect read/writes 
  18.  * 23-Nov-00 JG New PCI API, cleanups
  19.  *
  20.  *
  21.  *  TODO:
  22.  * 1. See if we can use MMIO instead of inb/outb/inw/outw
  23.  * 2. Add support for Mk1 (has AT24 attached to the PCI
  24.  * config registers)
  25.  *
  26.  */
  27. #include <linux/module.h>
  28. #include <linux/kernel.h>
  29. #include <linux/sched.h>
  30. #include <linux/errno.h>
  31. #include <linux/pci.h>
  32. #include <linux/init.h>
  33. #include <asm/system.h>
  34. #include <asm/io.h>
  35. #include <asm/irq.h>
  36. #include <linux/netdevice.h>
  37. #include <linux/trdevice.h>
  38. #include "tms380tr.h"
  39. #include "abyss.h"            /* Madge-specific constants */
  40. static char version[] __initdata =
  41. "abyss.c: v1.02 23/11/2000 by Adam Fritzlern";
  42. #define ABYSS_IO_EXTENT 64
  43. static struct pci_device_id abyss_pci_tbl[] __initdata = {
  44. { PCI_VENDOR_ID_MADGE, PCI_DEVICE_ID_MADGE_MK2,
  45.   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NETWORK_TOKEN_RING << 8, 0x00ffffff, },
  46. { } /* Terminating entry */
  47. };
  48. MODULE_DEVICE_TABLE(pci, abyss_pci_tbl);
  49. MODULE_LICENSE("GPL");
  50. static int abyss_open(struct net_device *dev);
  51. static int abyss_close(struct net_device *dev);
  52. static void abyss_enable(struct net_device *dev);
  53. static int abyss_chipset_init(struct net_device *dev);
  54. static void abyss_read_eeprom(struct net_device *dev);
  55. static unsigned short abyss_setnselout_pins(struct net_device *dev);
  56. static void at24_writedatabyte(unsigned long regaddr, unsigned char byte);
  57. static int at24_sendfullcmd(unsigned long regaddr, unsigned char cmd, unsigned char addr);
  58. static int at24_sendcmd(unsigned long regaddr, unsigned char cmd);
  59. static unsigned char at24_readdatabit(unsigned long regaddr);
  60. static unsigned char at24_readdatabyte(unsigned long regaddr);
  61. static int at24_waitforack(unsigned long regaddr);
  62. static int at24_waitfornack(unsigned long regaddr);
  63. static void at24_setlines(unsigned long regaddr, unsigned char clock, unsigned char data);
  64. static void at24_start(unsigned long regaddr);
  65. static unsigned char at24_readb(unsigned long regaddr, unsigned char addr);
  66. static unsigned short abyss_sifreadb(struct net_device *dev, unsigned short reg)
  67. {
  68. return inb(dev->base_addr + reg);
  69. }
  70. static unsigned short abyss_sifreadw(struct net_device *dev, unsigned short reg)
  71. {
  72. return inw(dev->base_addr + reg);
  73. }
  74. static void abyss_sifwriteb(struct net_device *dev, unsigned short val, unsigned short reg)
  75. {
  76. outb(val, dev->base_addr + reg);
  77. }
  78. static void abyss_sifwritew(struct net_device *dev, unsigned short val, unsigned short reg)
  79. {
  80. outw(val, dev->base_addr + reg);
  81. }
  82. static int __init abyss_attach(struct pci_dev *pdev, const struct pci_device_id *ent)
  83. {
  84. static int versionprinted;
  85. struct net_device *dev;
  86. struct net_local *tp;
  87. int i, ret, pci_irq_line;
  88. unsigned long pci_ioaddr;
  89. if (versionprinted++ == 0)
  90. printk("%s", version);
  91. if (pci_enable_device(pdev))
  92. return -EIO;
  93. /* Remove I/O space marker in bit 0. */
  94. pci_irq_line = pdev->irq;
  95. pci_ioaddr = pci_resource_start (pdev, 0);
  96. /* At this point we have found a valid card. */
  97. dev = init_trdev(NULL, 0);
  98. if (!dev)
  99. return -ENOMEM;
  100. SET_MODULE_OWNER(dev);
  101. if (!request_region(pci_ioaddr, ABYSS_IO_EXTENT, dev->name)) {
  102. ret = -EBUSY;
  103. goto err_out_trdev;
  104. }
  105. ret = request_irq(pdev->irq, tms380tr_interrupt, SA_SHIRQ,
  106.   dev->name, dev);
  107. if (ret)
  108. goto err_out_region;
  109. dev->base_addr = pci_ioaddr;
  110. dev->irq = pci_irq_line;
  111. printk("%s: Madge Smart 16/4 PCI Mk2 (Abyss)n", dev->name);
  112. printk("%s:    IO: %#4lx  IRQ: %dn",
  113.        dev->name, pci_ioaddr, dev->irq);
  114. /*
  115.  * The TMS SIF registers lay 0x10 above the card base address.
  116.  */
  117. dev->base_addr += 0x10;
  118. ret = tmsdev_init(dev, PCI_MAX_ADDRESS, pdev);
  119. if (ret) {
  120. printk("%s: unable to get memory for dev->priv.n", 
  121.        dev->name);
  122. goto err_out_irq;
  123. }
  124. abyss_read_eeprom(dev);
  125. printk("%s:    Ring Station Address: ", dev->name);
  126. printk("%2.2x", dev->dev_addr[0]);
  127. for (i = 1; i < 6; i++)
  128. printk(":%2.2x", dev->dev_addr[i]);
  129. printk("n");
  130. tp = dev->priv;
  131. tp->setnselout = abyss_setnselout_pins;
  132. tp->sifreadb = abyss_sifreadb;
  133. tp->sifreadw = abyss_sifreadw;
  134. tp->sifwriteb = abyss_sifwriteb;
  135. tp->sifwritew = abyss_sifwritew;
  136. memcpy(tp->ProductID, "Madge PCI 16/4 Mk2", PROD_ID_SIZE + 1);
  137. dev->open = abyss_open;
  138. dev->stop = abyss_close;
  139. ret = register_trdev(dev);
  140. if (ret)
  141. goto err_out_tmsdev;
  142. pci_set_drvdata(pdev, dev);
  143. return 0;
  144. err_out_tmsdev:
  145. tmsdev_term(dev);
  146. err_out_irq:
  147. free_irq(pdev->irq, dev);
  148. err_out_region:
  149. release_region(pci_ioaddr, ABYSS_IO_EXTENT);
  150. err_out_trdev:
  151. unregister_netdev(dev);
  152. kfree(dev);
  153. return ret;
  154. }
  155. static unsigned short abyss_setnselout_pins(struct net_device *dev)
  156. {
  157. unsigned short val = 0;
  158. struct net_local *tp = (struct net_local *)dev->priv;
  159. if(tp->DataRate == SPEED_4)
  160. val |= 0x01;  /* Set 4Mbps */
  161. else
  162. val |= 0x00;  /* Set 16Mbps */
  163. return val;
  164. }
  165. /*
  166.  * The following Madge boards should use this code:
  167.  *   - Smart 16/4 PCI Mk2 (Abyss)
  168.  *   - Smart 16/4 PCI Mk1 (PCI T)
  169.  *   - Smart 16/4 Client Plus PnP (Big Apple)
  170.  *   - Smart 16/4 Cardbus Mk2
  171.  *
  172.  * These access an Atmel AT24 SEEPROM using their glue chip registers. 
  173.  *
  174.  */
  175. static void at24_writedatabyte(unsigned long regaddr, unsigned char byte)
  176. {
  177. int i;
  178. for (i = 0; i < 8; i++) {
  179. at24_setlines(regaddr, 0, (byte >> (7-i))&0x01);
  180. at24_setlines(regaddr, 1, (byte >> (7-i))&0x01);
  181. at24_setlines(regaddr, 0, (byte >> (7-i))&0x01);
  182. }
  183. }
  184. static int at24_sendfullcmd(unsigned long regaddr, unsigned char cmd, unsigned char addr)
  185. {
  186. if (at24_sendcmd(regaddr, cmd)) {
  187. at24_writedatabyte(regaddr, addr);
  188. return at24_waitforack(regaddr);
  189. }
  190. return 0;
  191. }
  192. static int at24_sendcmd(unsigned long regaddr, unsigned char cmd)
  193. {
  194. int i;
  195. for (i = 0; i < 10; i++) {
  196. at24_start(regaddr);
  197. at24_writedatabyte(regaddr, cmd);
  198. if (at24_waitforack(regaddr))
  199. return 1;
  200. }
  201. return 0;
  202. }
  203. static unsigned char at24_readdatabit(unsigned long regaddr)
  204. {
  205. unsigned char val;
  206. at24_setlines(regaddr, 0, 1);
  207. at24_setlines(regaddr, 1, 1);
  208. val = (inb(regaddr) & AT24_DATA)?1:0;
  209. at24_setlines(regaddr, 1, 1);
  210. at24_setlines(regaddr, 0, 1);
  211. return val;
  212. }
  213. static unsigned char at24_readdatabyte(unsigned long regaddr)
  214. {
  215. unsigned char data = 0;
  216. int i;
  217. for (i = 0; i < 8; i++) {
  218. data <<= 1;
  219. data |= at24_readdatabit(regaddr);
  220. }
  221. return data;
  222. }
  223. static int at24_waitforack(unsigned long regaddr)
  224. {
  225. int i;
  226. for (i = 0; i < 10; i++) {
  227. if ((at24_readdatabit(regaddr) & 0x01) == 0x00)
  228. return 1;
  229. }
  230. return 0;
  231. }
  232. static int at24_waitfornack(unsigned long regaddr)
  233. {
  234. int i;
  235. for (i = 0; i < 10; i++) {
  236. if ((at24_readdatabit(regaddr) & 0x01) == 0x01)
  237. return 1;
  238. }
  239. return 0;
  240. }
  241. static void at24_setlines(unsigned long regaddr, unsigned char clock, unsigned char data)
  242. {
  243. unsigned char val = AT24_ENABLE;
  244. if (clock)
  245. val |= AT24_CLOCK;
  246. if (data)
  247. val |= AT24_DATA;
  248. outb(val, regaddr); 
  249. tms380tr_wait(20); /* Very necessary. */
  250. }
  251. static void at24_start(unsigned long regaddr)
  252. {
  253. at24_setlines(regaddr, 0, 1);
  254. at24_setlines(regaddr, 1, 1);
  255. at24_setlines(regaddr, 1, 0);
  256. at24_setlines(regaddr, 0, 1);
  257. }
  258. static unsigned char at24_readb(unsigned long regaddr, unsigned char addr)
  259. {
  260. unsigned char data = 0xff;
  261. if (at24_sendfullcmd(regaddr, AT24_WRITE, addr)) {
  262. if (at24_sendcmd(regaddr, AT24_READ)) {
  263. data = at24_readdatabyte(regaddr);
  264. if (!at24_waitfornack(regaddr))
  265. data = 0xff;
  266. }
  267. }
  268. return data;
  269. }
  270. /*
  271.  * Enable basic functions of the Madge chipset needed
  272.  * for initialization.
  273.  */
  274. static void abyss_enable(struct net_device *dev)
  275. {
  276. unsigned char reset_reg;
  277. unsigned long ioaddr;
  278. ioaddr = dev->base_addr;
  279. reset_reg = inb(ioaddr + PCIBM2_RESET_REG);
  280. reset_reg |= PCIBM2_RESET_REG_CHIP_NRES;
  281. outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
  282. tms380tr_wait(100);
  283. }
  284. /*
  285.  * Enable the functions of the Madge chipset needed for
  286.  * full working order. 
  287.  */
  288. static int abyss_chipset_init(struct net_device *dev)
  289. {
  290. unsigned char reset_reg;
  291. unsigned long ioaddr;
  292. ioaddr = dev->base_addr;
  293. reset_reg = inb(ioaddr + PCIBM2_RESET_REG);
  294. reset_reg |= PCIBM2_RESET_REG_CHIP_NRES;
  295. outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
  296. reset_reg &= ~(PCIBM2_RESET_REG_CHIP_NRES |
  297.        PCIBM2_RESET_REG_FIFO_NRES | 
  298.        PCIBM2_RESET_REG_SIF_NRES);
  299. outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
  300. tms380tr_wait(100);
  301. reset_reg |= PCIBM2_RESET_REG_CHIP_NRES;
  302. outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
  303. reset_reg |= PCIBM2_RESET_REG_SIF_NRES;
  304. outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
  305. reset_reg |= PCIBM2_RESET_REG_FIFO_NRES;
  306. outb(reset_reg, ioaddr + PCIBM2_RESET_REG);
  307. outb(PCIBM2_INT_CONTROL_REG_SINTEN | 
  308.      PCIBM2_INT_CONTROL_REG_PCI_ERR_ENABLE, 
  309.      ioaddr + PCIBM2_INT_CONTROL_REG);
  310.   
  311. outb(30, ioaddr + PCIBM2_FIFO_THRESHOLD);
  312. return 0;
  313. }
  314. static inline void abyss_chipset_close(struct net_device *dev)
  315. {
  316. unsigned long ioaddr;
  317. ioaddr = dev->base_addr;
  318. outb(0, ioaddr + PCIBM2_RESET_REG);
  319. }
  320. /*
  321.  * Read configuration data from the AT24 SEEPROM on Madge cards.
  322.  *
  323.  */
  324. static void abyss_read_eeprom(struct net_device *dev)
  325. {
  326. struct net_local *tp;
  327. unsigned long ioaddr;
  328. unsigned short val;
  329. int i;
  330. tp = (struct net_local *)dev->priv;
  331. ioaddr = dev->base_addr;
  332. /* Must enable glue chip first */
  333. abyss_enable(dev);
  334. val = at24_readb(ioaddr + PCIBM2_SEEPROM_REG, 
  335.  PCIBM2_SEEPROM_RING_SPEED);
  336. tp->DataRate = val?SPEED_4:SPEED_16; /* set open speed */
  337. printk("%s:    SEEPROM: ring speed: %dMb/secn", dev->name, tp->DataRate);
  338. val = at24_readb(ioaddr + PCIBM2_SEEPROM_REG,
  339.  PCIBM2_SEEPROM_RAM_SIZE) * 128;
  340. printk("%s:    SEEPROM: adapter RAM: %dkbn", dev->name, val);
  341. dev->addr_len = 6;
  342. for (i = 0; i < 6; i++) 
  343. dev->dev_addr[i] = at24_readb(ioaddr + PCIBM2_SEEPROM_REG, 
  344.       PCIBM2_SEEPROM_BIA+i);
  345. }
  346. static int abyss_open(struct net_device *dev)
  347. {  
  348. abyss_chipset_init(dev);
  349. tms380tr_open(dev);
  350. return 0;
  351. }
  352. static int abyss_close(struct net_device *dev)
  353. {
  354. tms380tr_close(dev);
  355. abyss_chipset_close(dev);
  356. return 0;
  357. }
  358. static void __devexit abyss_detach (struct pci_dev *pdev)
  359. {
  360. struct net_device *dev = pci_get_drvdata(pdev);
  361. if (!dev)
  362. BUG();
  363. unregister_netdev(dev);
  364. release_region(dev->base_addr-0x10, ABYSS_IO_EXTENT);
  365. free_irq(dev->irq, dev);
  366. tmsdev_term(dev);
  367. kfree(dev);
  368. pci_set_drvdata(pdev, NULL);
  369. }
  370. static struct pci_driver abyss_driver = {
  371. name: "abyss",
  372. id_table: abyss_pci_tbl,
  373. probe: abyss_attach,
  374. remove: __devexit_p(abyss_detach),
  375. };
  376. static int __init abyss_init (void)
  377. {
  378. int rc = pci_register_driver (&abyss_driver);
  379. if (rc < 0)
  380. return rc;
  381. if (rc == 0) {
  382. pci_unregister_driver (&abyss_driver);
  383. return -ENODEV;
  384. }
  385. return 0;
  386. }
  387. static void __exit abyss_rmmod (void)
  388. {
  389. pci_unregister_driver (&abyss_driver);
  390. }
  391. module_init(abyss_init);
  392. module_exit(abyss_rmmod);
  393. /*
  394.  * Local variables:
  395.  *  compile-command: "gcc -DMODVERSIONS  -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer -I/usr/src/linux/drivers/net/tokenring/ -c abyss.c"
  396.  *  alt-compile-command: "gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer -I/usr/src/linux/drivers/net/tokenring/ -c abyss.c"
  397.  *  c-set-style "K&R"
  398.  *  c-indent-level: 8
  399.  *  c-basic-offset: 8
  400.  *  tab-width: 8
  401.  * End:
  402.  */