cops.c 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010
  1. /* cops.c: LocalTalk driver for Linux.
  2. *
  3. * Authors:
  4. * - Jay Schulist <jschlst@samba.org>
  5. *
  6. * With more than a little help from;
  7. * - Alan Cox <alan@lxorguk.ukuu.org.uk>
  8. *
  9. * Derived from:
  10. * - skeleton.c: A network driver outline for linux.
  11. * Written 1993-94 by Donald Becker.
  12. * - ltpc.c: A driver for the LocalTalk PC card.
  13. * Written by Bradford W. Johnson.
  14. *
  15. * Copyright 1993 United States Government as represented by the
  16. * Director, National Security Agency.
  17. *
  18. * This software may be used and distributed according to the terms
  19. * of the GNU General Public License, incorporated herein by reference.
  20. *
  21. * Changes:
  22. * 19970608 Alan Cox Allowed dual card type support
  23. * Can set board type in insmod
  24. * Hooks for cops_setup routine
  25. * (not yet implemented).
  26. * 19971101 Jay Schulist Fixes for multiple lt* devices.
  27. * 19980607 Steven Hirsch Fixed the badly broken support
  28. * for Tangent type cards. Only
  29. * tested on Daystar LT200. Some
  30. * cleanup of formatting and program
  31. * logic. Added emacs 'local-vars'
  32. * setup for Jay's brace style.
  33. * 20000211 Alan Cox Cleaned up for softnet
  34. */
  35. static const char *version =
  36. "cops.c:v0.04 6/7/98 Jay Schulist <jschlst@samba.org>\n";
  37. /*
  38. * Sources:
  39. * COPS Localtalk SDK. This provides almost all of the information
  40. * needed.
  41. */
  42. /*
  43. * insmod/modprobe configurable stuff.
  44. * - IO Port, choose one your card supports or 0 if you dare.
  45. * - IRQ, also choose one your card supports or nothing and let
  46. * the driver figure it out.
  47. */
  48. #include <linux/module.h>
  49. #include <linux/kernel.h>
  50. #include <linux/types.h>
  51. #include <linux/fcntl.h>
  52. #include <linux/interrupt.h>
  53. #include <linux/ptrace.h>
  54. #include <linux/ioport.h>
  55. #include <linux/in.h>
  56. #include <linux/string.h>
  57. #include <linux/errno.h>
  58. #include <linux/init.h>
  59. #include <linux/netdevice.h>
  60. #include <linux/etherdevice.h>
  61. #include <linux/skbuff.h>
  62. #include <linux/if_arp.h>
  63. #include <linux/if_ltalk.h>
  64. #include <linux/delay.h> /* For udelay() */
  65. #include <linux/atalk.h>
  66. #include <linux/spinlock.h>
  67. #include <linux/bitops.h>
  68. #include <linux/jiffies.h>
  69. #include <asm/io.h>
  70. #include <asm/dma.h>
  71. #include "cops.h" /* Our Stuff */
  72. #include "cops_ltdrv.h" /* Firmware code for Tangent type cards. */
  73. #include "cops_ffdrv.h" /* Firmware code for Dayna type cards. */
  74. /*
  75. * The name of the card. Is used for messages and in the requests for
  76. * io regions, irqs and dma channels
  77. */
  78. static const char *cardname = "cops";
  79. #ifdef CONFIG_COPS_DAYNA
  80. static int board_type = DAYNA; /* Module exported */
  81. #else
  82. static int board_type = TANGENT;
  83. #endif
  84. static int io = 0x240; /* Default IO for Dayna */
  85. static int irq = 5; /* Default IRQ */
  86. /*
  87. * COPS Autoprobe information.
  88. * Right now if port address is right but IRQ is not 5 this will
  89. * return a 5 no matter what since we will still get a status response.
  90. * Need one more additional check to narrow down after we have gotten
  91. * the ioaddr. But since only other possible IRQs is 3 and 4 so no real
  92. * hurry on this. I *STRONGLY* recommend using IRQ 5 for your card with
  93. * this driver.
  94. *
  95. * This driver has 2 modes and they are: Dayna mode and Tangent mode.
  96. * Each mode corresponds with the type of card. It has been found
  97. * that there are 2 main types of cards and all other cards are
  98. * the same and just have different names or only have minor differences
  99. * such as more IO ports. As this driver is tested it will
  100. * become more clear on exactly what cards are supported. The driver
  101. * defaults to using Dayna mode. To change the drivers mode, simply
  102. * select Dayna or Tangent mode when configuring the kernel.
  103. *
  104. * This driver should support:
  105. * TANGENT driver mode:
  106. * Tangent ATB-II, Novell NL-1000, Daystar Digital LT-200,
  107. * COPS LT-1
  108. * DAYNA driver mode:
  109. * Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95,
  110. * Farallon PhoneNET PC III, Farallon PhoneNET PC II
  111. * Other cards possibly supported mode unknown though:
  112. * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel)
  113. *
  114. * Cards NOT supported by this driver but supported by the ltpc.c
  115. * driver written by Bradford W. Johnson <johns393@maroon.tc.umn.edu>
  116. * Farallon PhoneNET PC
  117. * Original Apple LocalTalk PC card
  118. *
  119. * N.B.
  120. *
  121. * The Daystar Digital LT200 boards do not support interrupt-driven
  122. * IO. You must specify 'irq=0xff' as a module parameter to invoke
  123. * polled mode. I also believe that the port probing logic is quite
  124. * dangerous at best and certainly hopeless for a polled card. Best to
  125. * specify both. - Steve H.
  126. *
  127. */
  128. /*
  129. * Zero terminated list of IO ports to probe.
  130. */
  131. static unsigned int ports[] = {
  132. 0x240, 0x340, 0x200, 0x210, 0x220, 0x230, 0x260,
  133. 0x2A0, 0x300, 0x310, 0x320, 0x330, 0x350, 0x360,
  134. 0
  135. };
  136. /*
  137. * Zero terminated list of IRQ ports to probe.
  138. */
  139. static int cops_irqlist[] = {
  140. 5, 4, 3, 0
  141. };
  142. static struct timer_list cops_timer;
  143. /* use 0 for production, 1 for verification, 2 for debug, 3 for verbose debug */
  144. #ifndef COPS_DEBUG
  145. #define COPS_DEBUG 1
  146. #endif
  147. static unsigned int cops_debug = COPS_DEBUG;
  148. /* The number of low I/O ports used by the card. */
  149. #define COPS_IO_EXTENT 8
  150. /* Information that needs to be kept for each board. */
  151. struct cops_local
  152. {
  153. int board; /* Holds what board type is. */
  154. int nodeid; /* Set to 1 once have nodeid. */
  155. unsigned char node_acquire; /* Node ID when acquired. */
  156. struct atalk_addr node_addr; /* Full node address */
  157. spinlock_t lock; /* RX/TX lock */
  158. };
  159. /* Index to functions, as function prototypes. */
  160. static int cops_probe1 (struct net_device *dev, int ioaddr);
  161. static int cops_irq (int ioaddr, int board);
  162. static int cops_open (struct net_device *dev);
  163. static int cops_jumpstart (struct net_device *dev);
  164. static void cops_reset (struct net_device *dev, int sleep);
  165. static void cops_load (struct net_device *dev);
  166. static int cops_nodeid (struct net_device *dev, int nodeid);
  167. static irqreturn_t cops_interrupt (int irq, void *dev_id);
  168. static void cops_poll (unsigned long ltdev);
  169. static void cops_timeout(struct net_device *dev);
  170. static void cops_rx (struct net_device *dev);
  171. static netdev_tx_t cops_send_packet (struct sk_buff *skb,
  172. struct net_device *dev);
  173. static void set_multicast_list (struct net_device *dev);
  174. static int cops_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  175. static int cops_close (struct net_device *dev);
  176. static void cleanup_card(struct net_device *dev)
  177. {
  178. if (dev->irq)
  179. free_irq(dev->irq, dev);
  180. release_region(dev->base_addr, COPS_IO_EXTENT);
  181. }
  182. /*
  183. * Check for a network adaptor of this type, and return '0' iff one exists.
  184. * If dev->base_addr == 0, probe all likely locations.
  185. * If dev->base_addr in [1..0x1ff], always return failure.
  186. * otherwise go with what we pass in.
  187. */
  188. struct net_device * __init cops_probe(int unit)
  189. {
  190. struct net_device *dev;
  191. unsigned *port;
  192. int base_addr;
  193. int err = 0;
  194. dev = alloc_ltalkdev(sizeof(struct cops_local));
  195. if (!dev)
  196. return ERR_PTR(-ENOMEM);
  197. if (unit >= 0) {
  198. sprintf(dev->name, "lt%d", unit);
  199. netdev_boot_setup_check(dev);
  200. irq = dev->irq;
  201. base_addr = dev->base_addr;
  202. } else {
  203. base_addr = dev->base_addr = io;
  204. }
  205. if (base_addr > 0x1ff) { /* Check a single specified location. */
  206. err = cops_probe1(dev, base_addr);
  207. } else if (base_addr != 0) { /* Don't probe at all. */
  208. err = -ENXIO;
  209. } else {
  210. /* FIXME Does this really work for cards which generate irq?
  211. * It's definitely N.G. for polled Tangent. sh
  212. * Dayna cards don't autoprobe well at all, but if your card is
  213. * at IRQ 5 & IO 0x240 we find it every time. ;) JS
  214. */
  215. for (port = ports; *port && cops_probe1(dev, *port) < 0; port++)
  216. ;
  217. if (!*port)
  218. err = -ENODEV;
  219. }
  220. if (err)
  221. goto out;
  222. err = register_netdev(dev);
  223. if (err)
  224. goto out1;
  225. return dev;
  226. out1:
  227. cleanup_card(dev);
  228. out:
  229. free_netdev(dev);
  230. return ERR_PTR(err);
  231. }
  232. static const struct net_device_ops cops_netdev_ops = {
  233. .ndo_open = cops_open,
  234. .ndo_stop = cops_close,
  235. .ndo_start_xmit = cops_send_packet,
  236. .ndo_tx_timeout = cops_timeout,
  237. .ndo_do_ioctl = cops_ioctl,
  238. .ndo_set_rx_mode = set_multicast_list,
  239. };
  240. /*
  241. * This is the real probe routine. Linux has a history of friendly device
  242. * probes on the ISA bus. A good device probes avoids doing writes, and
  243. * verifies that the correct device exists and functions.
  244. */
  245. static int __init cops_probe1(struct net_device *dev, int ioaddr)
  246. {
  247. struct cops_local *lp;
  248. static unsigned version_printed;
  249. int board = board_type;
  250. int retval;
  251. if(cops_debug && version_printed++ == 0)
  252. printk("%s", version);
  253. /* Grab the region so no one else tries to probe our ioports. */
  254. if (!request_region(ioaddr, COPS_IO_EXTENT, dev->name))
  255. return -EBUSY;
  256. /*
  257. * Since this board has jumpered interrupts, allocate the interrupt
  258. * vector now. There is no point in waiting since no other device
  259. * can use the interrupt, and this marks the irq as busy. Jumpered
  260. * interrupts are typically not reported by the boards, and we must
  261. * used AutoIRQ to find them.
  262. */
  263. dev->irq = irq;
  264. switch (dev->irq)
  265. {
  266. case 0:
  267. /* COPS AutoIRQ routine */
  268. dev->irq = cops_irq(ioaddr, board);
  269. if (dev->irq)
  270. break;
  271. /* No IRQ found on this port, fallthrough */
  272. case 1:
  273. retval = -EINVAL;
  274. goto err_out;
  275. /* Fixup for users that don't know that IRQ 2 is really
  276. * IRQ 9, or don't know which one to set.
  277. */
  278. case 2:
  279. dev->irq = 9;
  280. break;
  281. /* Polled operation requested. Although irq of zero passed as
  282. * a parameter tells the init routines to probe, we'll
  283. * overload it to denote polled operation at runtime.
  284. */
  285. case 0xff:
  286. dev->irq = 0;
  287. break;
  288. default:
  289. break;
  290. }
  291. /* Reserve any actual interrupt. */
  292. if (dev->irq) {
  293. retval = request_irq(dev->irq, cops_interrupt, 0, dev->name, dev);
  294. if (retval)
  295. goto err_out;
  296. }
  297. dev->base_addr = ioaddr;
  298. lp = netdev_priv(dev);
  299. spin_lock_init(&lp->lock);
  300. /* Copy local board variable to lp struct. */
  301. lp->board = board;
  302. dev->netdev_ops = &cops_netdev_ops;
  303. dev->watchdog_timeo = HZ * 2;
  304. /* Tell the user where the card is and what mode we're in. */
  305. if(board==DAYNA)
  306. printk("%s: %s at %#3x, using IRQ %d, in Dayna mode.\n",
  307. dev->name, cardname, ioaddr, dev->irq);
  308. if(board==TANGENT) {
  309. if(dev->irq)
  310. printk("%s: %s at %#3x, IRQ %d, in Tangent mode\n",
  311. dev->name, cardname, ioaddr, dev->irq);
  312. else
  313. printk("%s: %s at %#3x, using polled IO, in Tangent mode.\n",
  314. dev->name, cardname, ioaddr);
  315. }
  316. return 0;
  317. err_out:
  318. release_region(ioaddr, COPS_IO_EXTENT);
  319. return retval;
  320. }
  321. static int __init cops_irq (int ioaddr, int board)
  322. { /*
  323. * This does not use the IRQ to determine where the IRQ is. We just
  324. * assume that when we get a correct status response that it's the IRQ.
  325. * This really just verifies the IO port but since we only have access
  326. * to such a small number of IRQs (5, 4, 3) this is not bad.
  327. * This will probably not work for more than one card.
  328. */
  329. int irqaddr=0;
  330. int i, x, status;
  331. if(board==DAYNA)
  332. {
  333. outb(0, ioaddr+DAYNA_RESET);
  334. inb(ioaddr+DAYNA_RESET);
  335. mdelay(333);
  336. }
  337. if(board==TANGENT)
  338. {
  339. inb(ioaddr);
  340. outb(0, ioaddr);
  341. outb(0, ioaddr+TANG_RESET);
  342. }
  343. for(i=0; cops_irqlist[i] !=0; i++)
  344. {
  345. irqaddr = cops_irqlist[i];
  346. for(x = 0xFFFF; x>0; x --) /* wait for response */
  347. {
  348. if(board==DAYNA)
  349. {
  350. status = (inb(ioaddr+DAYNA_CARD_STATUS)&3);
  351. if(status == 1)
  352. return irqaddr;
  353. }
  354. if(board==TANGENT)
  355. {
  356. if((inb(ioaddr+TANG_CARD_STATUS)& TANG_TX_READY) !=0)
  357. return irqaddr;
  358. }
  359. }
  360. }
  361. return 0; /* no IRQ found */
  362. }
  363. /*
  364. * Open/initialize the board. This is called (in the current kernel)
  365. * sometime after booting when the 'ifconfig' program is run.
  366. */
  367. static int cops_open(struct net_device *dev)
  368. {
  369. struct cops_local *lp = netdev_priv(dev);
  370. if(dev->irq==0)
  371. {
  372. /*
  373. * I don't know if the Dayna-style boards support polled
  374. * operation. For now, only allow it for Tangent.
  375. */
  376. if(lp->board==TANGENT) /* Poll 20 times per second */
  377. {
  378. init_timer(&cops_timer);
  379. cops_timer.function = cops_poll;
  380. cops_timer.data = (unsigned long)dev;
  381. cops_timer.expires = jiffies + HZ/20;
  382. add_timer(&cops_timer);
  383. }
  384. else
  385. {
  386. printk(KERN_WARNING "%s: No irq line set\n", dev->name);
  387. return -EAGAIN;
  388. }
  389. }
  390. cops_jumpstart(dev); /* Start the card up. */
  391. netif_start_queue(dev);
  392. return 0;
  393. }
  394. /*
  395. * This allows for a dynamic start/restart of the entire card.
  396. */
  397. static int cops_jumpstart(struct net_device *dev)
  398. {
  399. struct cops_local *lp = netdev_priv(dev);
  400. /*
  401. * Once the card has the firmware loaded and has acquired
  402. * the nodeid, if it is reset it will lose it all.
  403. */
  404. cops_reset(dev,1); /* Need to reset card before load firmware. */
  405. cops_load(dev); /* Load the firmware. */
  406. /*
  407. * If atalkd already gave us a nodeid we will use that
  408. * one again, else we wait for atalkd to give us a nodeid
  409. * in cops_ioctl. This may cause a problem if someone steals
  410. * our nodeid while we are resetting.
  411. */
  412. if(lp->nodeid == 1)
  413. cops_nodeid(dev,lp->node_acquire);
  414. return 0;
  415. }
  416. static void tangent_wait_reset(int ioaddr)
  417. {
  418. int timeout=0;
  419. while(timeout++ < 5 && (inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  420. mdelay(1); /* Wait 1 second */
  421. }
  422. /*
  423. * Reset the LocalTalk board.
  424. */
  425. static void cops_reset(struct net_device *dev, int sleep)
  426. {
  427. struct cops_local *lp = netdev_priv(dev);
  428. int ioaddr=dev->base_addr;
  429. if(lp->board==TANGENT)
  430. {
  431. inb(ioaddr); /* Clear request latch. */
  432. outb(0,ioaddr); /* Clear the TANG_TX_READY flop. */
  433. outb(0, ioaddr+TANG_RESET); /* Reset the adapter. */
  434. tangent_wait_reset(ioaddr);
  435. outb(0, ioaddr+TANG_CLEAR_INT);
  436. }
  437. if(lp->board==DAYNA)
  438. {
  439. outb(0, ioaddr+DAYNA_RESET); /* Assert the reset port */
  440. inb(ioaddr+DAYNA_RESET); /* Clear the reset */
  441. if (sleep)
  442. msleep(333);
  443. else
  444. mdelay(333);
  445. }
  446. netif_wake_queue(dev);
  447. }
  448. static void cops_load (struct net_device *dev)
  449. {
  450. struct ifreq ifr;
  451. struct ltfirmware *ltf= (struct ltfirmware *)&ifr.ifr_ifru;
  452. struct cops_local *lp = netdev_priv(dev);
  453. int ioaddr=dev->base_addr;
  454. int length, i = 0;
  455. strcpy(ifr.ifr_name,"lt0");
  456. /* Get card's firmware code and do some checks on it. */
  457. #ifdef CONFIG_COPS_DAYNA
  458. if(lp->board==DAYNA)
  459. {
  460. ltf->length=sizeof(ffdrv_code);
  461. ltf->data=ffdrv_code;
  462. }
  463. else
  464. #endif
  465. #ifdef CONFIG_COPS_TANGENT
  466. if(lp->board==TANGENT)
  467. {
  468. ltf->length=sizeof(ltdrv_code);
  469. ltf->data=ltdrv_code;
  470. }
  471. else
  472. #endif
  473. {
  474. printk(KERN_INFO "%s; unsupported board type.\n", dev->name);
  475. return;
  476. }
  477. /* Check to make sure firmware is correct length. */
  478. if(lp->board==DAYNA && ltf->length!=5983)
  479. {
  480. printk(KERN_WARNING "%s: Firmware is not length of FFDRV.BIN.\n", dev->name);
  481. return;
  482. }
  483. if(lp->board==TANGENT && ltf->length!=2501)
  484. {
  485. printk(KERN_WARNING "%s: Firmware is not length of DRVCODE.BIN.\n", dev->name);
  486. return;
  487. }
  488. if(lp->board==DAYNA)
  489. {
  490. /*
  491. * We must wait for a status response
  492. * with the DAYNA board.
  493. */
  494. while(++i<65536)
  495. {
  496. if((inb(ioaddr+DAYNA_CARD_STATUS)&3)==1)
  497. break;
  498. }
  499. if(i==65536)
  500. return;
  501. }
  502. /*
  503. * Upload the firmware and kick. Byte-by-byte works nicely here.
  504. */
  505. i=0;
  506. length = ltf->length;
  507. while(length--)
  508. {
  509. outb(ltf->data[i], ioaddr);
  510. i++;
  511. }
  512. if(cops_debug > 1)
  513. printk("%s: Uploaded firmware - %d bytes of %d bytes.\n",
  514. dev->name, i, ltf->length);
  515. if(lp->board==DAYNA) /* Tell Dayna to run the firmware code. */
  516. outb(1, ioaddr+DAYNA_INT_CARD);
  517. else /* Tell Tang to run the firmware code. */
  518. inb(ioaddr);
  519. if(lp->board==TANGENT)
  520. {
  521. tangent_wait_reset(ioaddr);
  522. inb(ioaddr); /* Clear initial ready signal. */
  523. }
  524. }
  525. /*
  526. * Get the LocalTalk Nodeid from the card. We can suggest
  527. * any nodeid 1-254. The card will try and get that exact
  528. * address else we can specify 0 as the nodeid and the card
  529. * will autoprobe for a nodeid.
  530. */
  531. static int cops_nodeid (struct net_device *dev, int nodeid)
  532. {
  533. struct cops_local *lp = netdev_priv(dev);
  534. int ioaddr = dev->base_addr;
  535. if(lp->board == DAYNA)
  536. {
  537. /* Empty any pending adapter responses. */
  538. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
  539. {
  540. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupts. */
  541. if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
  542. cops_rx(dev); /* Kick any packets waiting. */
  543. schedule();
  544. }
  545. outb(2, ioaddr); /* Output command packet length as 2. */
  546. outb(0, ioaddr);
  547. outb(LAP_INIT, ioaddr); /* Send LAP_INIT command byte. */
  548. outb(nodeid, ioaddr); /* Suggest node address. */
  549. }
  550. if(lp->board == TANGENT)
  551. {
  552. /* Empty any pending adapter responses. */
  553. while(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
  554. {
  555. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupt. */
  556. cops_rx(dev); /* Kick out packets waiting. */
  557. schedule();
  558. }
  559. /* Not sure what Tangent does if nodeid picked is used. */
  560. if(nodeid == 0) /* Seed. */
  561. nodeid = jiffies&0xFF; /* Get a random try */
  562. outb(2, ioaddr); /* Command length LSB */
  563. outb(0, ioaddr); /* Command length MSB */
  564. outb(LAP_INIT, ioaddr); /* Send LAP_INIT byte */
  565. outb(nodeid, ioaddr); /* LAP address hint. */
  566. outb(0xFF, ioaddr); /* Int. level to use */
  567. }
  568. lp->node_acquire=0; /* Set nodeid holder to 0. */
  569. while(lp->node_acquire==0) /* Get *True* nodeid finally. */
  570. {
  571. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear any interrupt. */
  572. if(lp->board == DAYNA)
  573. {
  574. if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
  575. cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
  576. }
  577. if(lp->board == TANGENT)
  578. {
  579. if(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
  580. cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
  581. }
  582. schedule();
  583. }
  584. if(cops_debug > 1)
  585. printk(KERN_DEBUG "%s: Node ID %d has been acquired.\n",
  586. dev->name, lp->node_acquire);
  587. lp->nodeid=1; /* Set got nodeid to 1. */
  588. return 0;
  589. }
  590. /*
  591. * Poll the Tangent type cards to see if we have work.
  592. */
  593. static void cops_poll(unsigned long ltdev)
  594. {
  595. int ioaddr, status;
  596. int boguscount = 0;
  597. struct net_device *dev = (struct net_device *)ltdev;
  598. del_timer(&cops_timer);
  599. if(dev == NULL)
  600. return; /* We've been downed */
  601. ioaddr = dev->base_addr;
  602. do {
  603. status=inb(ioaddr+TANG_CARD_STATUS);
  604. if(status & TANG_RX_READY)
  605. cops_rx(dev);
  606. if(status & TANG_TX_READY)
  607. netif_wake_queue(dev);
  608. status = inb(ioaddr+TANG_CARD_STATUS);
  609. } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
  610. /* poll 20 times per second */
  611. cops_timer.expires = jiffies + HZ/20;
  612. add_timer(&cops_timer);
  613. }
  614. /*
  615. * The typical workload of the driver:
  616. * Handle the network interface interrupts.
  617. */
  618. static irqreturn_t cops_interrupt(int irq, void *dev_id)
  619. {
  620. struct net_device *dev = dev_id;
  621. struct cops_local *lp;
  622. int ioaddr, status;
  623. int boguscount = 0;
  624. ioaddr = dev->base_addr;
  625. lp = netdev_priv(dev);
  626. if(lp->board==DAYNA)
  627. {
  628. do {
  629. outb(0, ioaddr + COPS_CLEAR_INT);
  630. status=inb(ioaddr+DAYNA_CARD_STATUS);
  631. if((status&0x03)==DAYNA_RX_REQUEST)
  632. cops_rx(dev);
  633. netif_wake_queue(dev);
  634. } while(++boguscount < 20);
  635. }
  636. else
  637. {
  638. do {
  639. status=inb(ioaddr+TANG_CARD_STATUS);
  640. if(status & TANG_RX_READY)
  641. cops_rx(dev);
  642. if(status & TANG_TX_READY)
  643. netif_wake_queue(dev);
  644. status=inb(ioaddr+TANG_CARD_STATUS);
  645. } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
  646. }
  647. return IRQ_HANDLED;
  648. }
  649. /*
  650. * We have a good packet(s), get it/them out of the buffers.
  651. */
  652. static void cops_rx(struct net_device *dev)
  653. {
  654. int pkt_len = 0;
  655. int rsp_type = 0;
  656. struct sk_buff *skb = NULL;
  657. struct cops_local *lp = netdev_priv(dev);
  658. int ioaddr = dev->base_addr;
  659. int boguscount = 0;
  660. unsigned long flags;
  661. spin_lock_irqsave(&lp->lock, flags);
  662. if(lp->board==DAYNA)
  663. {
  664. outb(0, ioaddr); /* Send out Zero length. */
  665. outb(0, ioaddr);
  666. outb(DATA_READ, ioaddr); /* Send read command out. */
  667. /* Wait for DMA to turn around. */
  668. while(++boguscount<1000000)
  669. {
  670. barrier();
  671. if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_READY)
  672. break;
  673. }
  674. if(boguscount==1000000)
  675. {
  676. printk(KERN_WARNING "%s: DMA timed out.\n",dev->name);
  677. spin_unlock_irqrestore(&lp->lock, flags);
  678. return;
  679. }
  680. }
  681. /* Get response length. */
  682. if(lp->board==DAYNA)
  683. pkt_len = inb(ioaddr) & 0xFF;
  684. else
  685. pkt_len = inb(ioaddr) & 0x00FF;
  686. pkt_len |= (inb(ioaddr) << 8);
  687. /* Input IO code. */
  688. rsp_type=inb(ioaddr);
  689. /* Malloc up new buffer. */
  690. skb = dev_alloc_skb(pkt_len);
  691. if(skb == NULL)
  692. {
  693. printk(KERN_WARNING "%s: Memory squeeze, dropping packet.\n",
  694. dev->name);
  695. dev->stats.rx_dropped++;
  696. while(pkt_len--) /* Discard packet */
  697. inb(ioaddr);
  698. spin_unlock_irqrestore(&lp->lock, flags);
  699. return;
  700. }
  701. skb->dev = dev;
  702. skb_put(skb, pkt_len);
  703. skb->protocol = htons(ETH_P_LOCALTALK);
  704. insb(ioaddr, skb->data, pkt_len); /* Eat the Data */
  705. if(lp->board==DAYNA)
  706. outb(1, ioaddr+DAYNA_INT_CARD); /* Interrupt the card */
  707. spin_unlock_irqrestore(&lp->lock, flags); /* Restore interrupts. */
  708. /* Check for bad response length */
  709. if(pkt_len < 0 || pkt_len > MAX_LLAP_SIZE)
  710. {
  711. printk(KERN_WARNING "%s: Bad packet length of %d bytes.\n",
  712. dev->name, pkt_len);
  713. dev->stats.tx_errors++;
  714. dev_kfree_skb_any(skb);
  715. return;
  716. }
  717. /* Set nodeid and then get out. */
  718. if(rsp_type == LAP_INIT_RSP)
  719. { /* Nodeid taken from received packet. */
  720. lp->node_acquire = skb->data[0];
  721. dev_kfree_skb_any(skb);
  722. return;
  723. }
  724. /* One last check to make sure we have a good packet. */
  725. if(rsp_type != LAP_RESPONSE)
  726. {
  727. printk(KERN_WARNING "%s: Bad packet type %d.\n", dev->name, rsp_type);
  728. dev->stats.tx_errors++;
  729. dev_kfree_skb_any(skb);
  730. return;
  731. }
  732. skb_reset_mac_header(skb); /* Point to entire packet. */
  733. skb_pull(skb,3);
  734. skb_reset_transport_header(skb); /* Point to data (Skip header). */
  735. /* Update the counters. */
  736. dev->stats.rx_packets++;
  737. dev->stats.rx_bytes += skb->len;
  738. /* Send packet to a higher place. */
  739. netif_rx(skb);
  740. }
  741. static void cops_timeout(struct net_device *dev)
  742. {
  743. struct cops_local *lp = netdev_priv(dev);
  744. int ioaddr = dev->base_addr;
  745. dev->stats.tx_errors++;
  746. if(lp->board==TANGENT)
  747. {
  748. if((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  749. printk(KERN_WARNING "%s: No TX complete interrupt.\n", dev->name);
  750. }
  751. printk(KERN_WARNING "%s: Transmit timed out.\n", dev->name);
  752. cops_jumpstart(dev); /* Restart the card. */
  753. dev->trans_start = jiffies; /* prevent tx timeout */
  754. netif_wake_queue(dev);
  755. }
  756. /*
  757. * Make the card transmit a LocalTalk packet.
  758. */
  759. static netdev_tx_t cops_send_packet(struct sk_buff *skb,
  760. struct net_device *dev)
  761. {
  762. struct cops_local *lp = netdev_priv(dev);
  763. int ioaddr = dev->base_addr;
  764. unsigned long flags;
  765. /*
  766. * Block a timer-based transmit from overlapping.
  767. */
  768. netif_stop_queue(dev);
  769. spin_lock_irqsave(&lp->lock, flags);
  770. if(lp->board == DAYNA) /* Wait for adapter transmit buffer. */
  771. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
  772. cpu_relax();
  773. if(lp->board == TANGENT) /* Wait for adapter transmit buffer. */
  774. while((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  775. cpu_relax();
  776. /* Output IO length. */
  777. outb(skb->len, ioaddr);
  778. if(lp->board == DAYNA)
  779. outb(skb->len >> 8, ioaddr);
  780. else
  781. outb((skb->len >> 8)&0x0FF, ioaddr);
  782. /* Output IO code. */
  783. outb(LAP_WRITE, ioaddr);
  784. if(lp->board == DAYNA) /* Check the transmit buffer again. */
  785. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
  786. outsb(ioaddr, skb->data, skb->len); /* Send out the data. */
  787. if(lp->board==DAYNA) /* Dayna requires you kick the card */
  788. outb(1, ioaddr+DAYNA_INT_CARD);
  789. spin_unlock_irqrestore(&lp->lock, flags); /* Restore interrupts. */
  790. /* Done sending packet, update counters and cleanup. */
  791. dev->stats.tx_packets++;
  792. dev->stats.tx_bytes += skb->len;
  793. dev_kfree_skb (skb);
  794. return NETDEV_TX_OK;
  795. }
  796. /*
  797. * Dummy function to keep the Appletalk layer happy.
  798. */
  799. static void set_multicast_list(struct net_device *dev)
  800. {
  801. if(cops_debug >= 3)
  802. printk("%s: set_multicast_list executed\n", dev->name);
  803. }
  804. /*
  805. * System ioctls for the COPS LocalTalk card.
  806. */
  807. static int cops_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  808. {
  809. struct cops_local *lp = netdev_priv(dev);
  810. struct sockaddr_at *sa = (struct sockaddr_at *)&ifr->ifr_addr;
  811. struct atalk_addr *aa = &lp->node_addr;
  812. switch(cmd)
  813. {
  814. case SIOCSIFADDR:
  815. /* Get and set the nodeid and network # atalkd wants. */
  816. cops_nodeid(dev, sa->sat_addr.s_node);
  817. aa->s_net = sa->sat_addr.s_net;
  818. aa->s_node = lp->node_acquire;
  819. /* Set broardcast address. */
  820. dev->broadcast[0] = 0xFF;
  821. /* Set hardware address. */
  822. dev->dev_addr[0] = aa->s_node;
  823. dev->addr_len = 1;
  824. return 0;
  825. case SIOCGIFADDR:
  826. sa->sat_addr.s_net = aa->s_net;
  827. sa->sat_addr.s_node = aa->s_node;
  828. return 0;
  829. default:
  830. return -EOPNOTSUPP;
  831. }
  832. }
  833. /*
  834. * The inverse routine to cops_open().
  835. */
  836. static int cops_close(struct net_device *dev)
  837. {
  838. struct cops_local *lp = netdev_priv(dev);
  839. /* If we were running polled, yank the timer.
  840. */
  841. if(lp->board==TANGENT && dev->irq==0)
  842. del_timer(&cops_timer);
  843. netif_stop_queue(dev);
  844. return 0;
  845. }
  846. #ifdef MODULE
  847. static struct net_device *cops_dev;
  848. MODULE_LICENSE("GPL");
  849. module_param(io, int, 0);
  850. module_param(irq, int, 0);
  851. module_param(board_type, int, 0);
  852. static int __init cops_module_init(void)
  853. {
  854. if (io == 0)
  855. printk(KERN_WARNING "%s: You shouldn't autoprobe with insmod\n",
  856. cardname);
  857. cops_dev = cops_probe(-1);
  858. return PTR_ERR_OR_ZERO(cops_dev);
  859. }
  860. static void __exit cops_module_exit(void)
  861. {
  862. unregister_netdev(cops_dev);
  863. cleanup_card(cops_dev);
  864. free_netdev(cops_dev);
  865. }
  866. module_init(cops_module_init);
  867. module_exit(cops_module_exit);
  868. #endif /* MODULE */