cops.c 30 KB

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