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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* ibmtr.c:  A shared-memory IBM Token Ring 16/4 driver for linux
  2.  *
  3.  * Written 1993 by Mark Swanson and Peter De Schrijver.
  4.  * This software may be used and distributed according to the terms
  5.  * of the GNU General Public License, incorporated herein by reference.
  6.  *
  7.  * This device driver should work with Any IBM Token Ring Card that does
  8.  * not use DMA.
  9.  *
  10.  * I used Donald Becker's (becker@scyld.com) device driver work
  11.  * as a base for most of my initial work.
  12.  *
  13.  * Changes by Peter De Schrijver
  14.  * (Peter.Deschrijver@linux.cc.kuleuven.ac.be) :
  15.  *
  16.  * + changed name to ibmtr.c in anticipation of other tr boards.
  17.  * + changed reset code and adapter open code.
  18.  * + added SAP open code.
  19.  * + a first attempt to write interrupt, transmit and receive routines.
  20.  *
  21.  * Changes by David W. Morris (dwm@shell.portal.com) :
  22.  * 941003 dwm: - Restructure tok_probe for multiple adapters, devices.
  23.  * + Add comments, misc reorg for clarity.
  24.  * + Flatten interrupt handler levels.
  25.  *
  26.  * Changes by Farzad Farid (farzy@zen.via.ecp.fr)
  27.  * and Pascal Andre (andre@chimay.via.ecp.fr) (March 9 1995) :
  28.  * + multi ring support clean up.
  29.  * + RFC1042 compliance enhanced.
  30.  *
  31.  * Changes by Pascal Andre (andre@chimay.via.ecp.fr) (September 7 1995) :
  32.  * + bug correction in tr_tx
  33.  * + removed redundant information display
  34.  * + some code reworking
  35.  *
  36.  * Changes by Michel Lespinasse (walken@via.ecp.fr),
  37.  * Yann Doussot (doussot@via.ecp.fr) and Pascal Andre (andre@via.ecp.fr)
  38.  * (February 18, 1996) :
  39.  * + modified shared memory and mmio access port the driver to
  40.  *   alpha platform (structure access -> readb/writeb)
  41.  *
  42.  * Changes by Steve Kipisz (bungy@ibm.net or kipisz@vnet.ibm.com)
  43.  * (January 18 1996):
  44.  * + swapped WWOR and WWCR in ibmtr.h
  45.  * + moved some init code from tok_probe into trdev_init.  The
  46.  *   PCMCIA code can call trdev_init to complete initializing
  47.  *   the driver.
  48.  * + added -DPCMCIA to support PCMCIA
  49.  * + detecting PCMCIA Card Removal in interrupt handler.  If
  50.  *   ISRP is FF, then a PCMCIA card has been removed
  51.  *        10/2000 Burt needed a new method to avoid crashing the OS
  52.  *
  53.  * Changes by Paul Norton (pnorton@cts.com) :
  54.  * + restructured the READ.LOG logic to prevent the transmit SRB
  55.  *   from being rudely overwritten before the transmit cycle is
  56.  *   complete. (August 15 1996)
  57.  * + completed multiple adapter support. (November 20 1996)
  58.  * + implemented csum_partial_copy in tr_rx and increased receive 
  59.  *        buffer size and count. Minor fixes. (March 15, 1997)
  60.  *
  61.  * Changes by Christopher Turcksin <wabbit@rtfc.demon.co.uk>
  62.  * + Now compiles ok as a module again.
  63.  *
  64.  * Changes by Paul Norton (pnorton@ieee.org) :
  65.  *      + moved the header manipulation code in tr_tx and tr_rx to
  66.  *        net/802/tr.c. (July 12 1997)
  67.  *      + add retry and timeout on open if cable disconnected. (May 5 1998)
  68.  *      + lifted 2000 byte mtu limit. now depends on shared-RAM size.
  69.  *        May 25 1998)
  70.  *      + can't allocate 2k recv buff at 8k shared-RAM. (20 October 1998)
  71.  *
  72.  *      Changes by Joel Sloan (jjs@c-me.com) :
  73.  *      + disable verbose debug messages by default - to enable verbose
  74.  *   debugging, edit the IBMTR_DEBUG_MESSAGES define below 
  75.  *
  76.  * Changes by Mike Phillips <phillim@amtrak.com> :
  77.  * + Added extra #ifdef's to work with new PCMCIA Token Ring Code.
  78.  *   The PCMCIA code now just sets up the card so it can be recognized
  79.  *        by ibmtr_probe. Also checks allocated memory vs. on-board memory
  80.  *   for correct figure to use.
  81.  *
  82.  * Changes by Tim Hockin (thockin@isunix.it.ilstu.edu) :
  83.  * + added spinlocks for SMP sanity (10 March 1999)
  84.  *
  85.  *      Changes by Jochen Friedrich to enable RFC1469 Option 2 multicasting
  86.  *      i.e. using functional address C0 00 00 04 00 00 to transmit and 
  87.  *      receive multicast packets.
  88.  *
  89.  *      Changes by Mike Sullivan (based on original sram patch by Dave Grothe
  90.  *      to support windowing into on adapter shared ram.
  91.  *      i.e. Use LANAID to setup a PnP configuration with 16K RAM. Paging
  92.  *      will shift this 16K window over the entire available shared RAM.
  93.  *
  94.  *      Changes by Peter De Schrijver (p2@mind.be) :
  95.  *      + fixed a problem with PCMCIA card removal
  96.  *
  97.  *      Change by Mike Sullivan et al.:
  98.  *      + added turbo card support. No need to use lanaid to configure
  99.  *      the adapter into isa compatiblity mode.
  100.  *
  101.  *      Changes by Burt Silverman to allow the computer to behave nicely when
  102.  * a cable is pulled or not in place, or a PCMCIA card is removed hot.
  103.  */
  104. /* change the define of IBMTR_DEBUG_MESSAGES to a nonzero value 
  105. in the event that chatty debug messages are desired - jjs 12/30/98 */
  106. #define IBMTR_DEBUG_MESSAGES 0
  107. #include <linux/module.h>
  108. #ifdef PCMCIA
  109. #undef MODULE
  110. #undef ENABLE_PAGING
  111. #else
  112. #define ENABLE_PAGING 1
  113. #endif
  114. #define FALSE 0
  115. #define TRUE (!FALSE)
  116. /* changes the output format of driver initialization */
  117. #define TR_VERBOSE 0
  118. /* some 95 OS send many non UI frame; this allow removing the warning */
  119. #define TR_FILTERNONUI 1
  120. #include <linux/sched.h>
  121. #include <linux/ioport.h>
  122. #include <linux/netdevice.h>
  123. #include <linux/trdevice.h>
  124. #include <linux/ibmtr.h>
  125. #include <net/checksum.h>
  126. #include <asm/io.h>
  127. #define DPRINTK(format, args...) printk("%s: " format, dev->name , ## args)
  128. #define DPRINTD(format, args...) DummyCall("%s: " format, dev->name , ## args)
  129. #define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  130. #define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  131. /* version and credits */
  132. #ifndef PCMCIA
  133. static char version[] __initdata =
  134.     "nibmtr.c: v1.3.57   8/ 7/94 Peter De Schrijver and Mark Swansonn"
  135.     "         v2.1.125 10/20/98 Paul Norton    <pnorton@ieee.org>n"
  136.     "         v2.2.0   12/30/98 Joel Sloan     <jjs@c-me.com>n"
  137.     "         v2.2.1   02/08/00 Mike Sullivan  <sullivam@us.ibm.com>n" 
  138.     "         v2.2.2   07/27/00 Burt Silverman <burts@us.ibm.com>n" 
  139.     "         v2.4.0   03/01/01 Mike Sullivan <sullivan@us.ibm.com>n";
  140. #endif
  141. /* this allows displaying full adapter information */
  142. char *channel_def[] __initdata = { "ISA", "MCA", "ISA P&P" };
  143. static char pcchannelid[] __devinitdata = {
  144. 0x05, 0x00, 0x04, 0x09,
  145. 0x04, 0x03, 0x04, 0x0f,
  146. 0x03, 0x06, 0x03, 0x01,
  147. 0x03, 0x01, 0x03, 0x00,
  148. 0x03, 0x09, 0x03, 0x09,
  149. 0x03, 0x00, 0x02, 0x00
  150. };
  151. static char mcchannelid[] __devinitdata =  {
  152. 0x04, 0x0d, 0x04, 0x01,
  153. 0x05, 0x02, 0x05, 0x03,
  154. 0x03, 0x06, 0x03, 0x03,
  155. 0x05, 0x08, 0x03, 0x04,
  156. 0x03, 0x05, 0x03, 0x01,
  157. 0x03, 0x08, 0x02, 0x00
  158. };
  159. char __devinit *adapter_def(char type)
  160. {
  161. switch (type) {
  162. case 0xF: return "PC Adapter | PC Adapter II | Adapter/A";
  163. case 0xE: return "16/4 Adapter | 16/4 Adapter/A (long)";
  164. case 0xD: return "16/4 Adapter/A (short) | 16/4 ISA-16 Adapter";
  165. case 0xC: return "Auto 16/4 Adapter";
  166. default: return "adapter (unknown type)";
  167. };
  168. };
  169. #define TRC_INIT 0x01 /*  Trace initialization & PROBEs */
  170. #define TRC_INITV 0x02 /*  verbose init trace points     */
  171. unsigned char ibmtr_debug_trace = 0;
  172. int  ibmtr_probe(struct net_device *dev);
  173. static int ibmtr_probe1(struct net_device *dev, int ioaddr);
  174. static unsigned char get_sram_size(struct tok_info *adapt_info);
  175. static int  trdev_init(struct net_device *dev);
  176. static int  tok_open(struct net_device *dev);
  177. static int  tok_init_card(struct net_device *dev);
  178. void  tok_open_adapter(unsigned long dev_addr);
  179. static void  open_sap(unsigned char type, struct net_device *dev);
  180. static void  tok_set_multicast_list(struct net_device *dev);
  181. static int  tok_send_packet(struct sk_buff *skb, struct net_device *dev);
  182. static int  tok_close(struct net_device *dev);
  183. void  tok_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  184. static void  initial_tok_int(struct net_device *dev);
  185. static void  tr_tx(struct net_device *dev);
  186. static void  tr_rx(struct net_device *dev);
  187. void  ibmtr_reset_timer(struct timer_list*tmr,struct net_device *dev);
  188. static void tok_rerun(unsigned long dev_addr);
  189. void  ibmtr_readlog(struct net_device *dev);
  190. static struct  net_device_stats *tok_get_stats(struct net_device *dev);
  191. int  ibmtr_change_mtu(struct net_device *dev, int mtu);
  192. static void find_turbo_adapters(int *iolist);
  193. static int ibmtr_portlist[IBMTR_MAX_ADAPTERS+1] __devinitdata = {
  194. 0xa20, 0xa24, 0, 0, 0
  195. };
  196. static int __devinitdata turbo_io[IBMTR_MAX_ADAPTERS] = {0};
  197. static int __devinitdata turbo_irq[IBMTR_MAX_ADAPTERS] = {0};
  198. static int __devinitdata turbo_searched = 0;
  199. #ifndef PCMCIA
  200. static __u32 ibmtr_mem_base __initdata = 0xd0000;
  201. #endif
  202. static void __devinit PrtChanID(char *pcid, short stride)
  203. {
  204. short i, j;
  205. for (i = 0, j = 0; i < 24; i++, j += stride)
  206. printk("%1x", ((int) pcid[j]) & 0x0f);
  207. printk("n");
  208. }
  209. static void __devinit HWPrtChanID(void * pcid, short stride)
  210. {
  211. short i, j;
  212. for (i = 0, j = 0; i < 24; i++, j += stride)
  213. printk("%1x", ((int) readb(pcid + j)) & 0x0f);
  214. printk("n");
  215. }
  216. static void __devinit find_turbo_adapters(int *iolist) {
  217. int ram_addr;
  218. int index=0;
  219. __u32 chanid;
  220. int found_turbo=0;
  221. unsigned char *tchanid, ctemp;
  222. int i,j;
  223.   
  224. if (turbo_searched == 1) return;
  225. turbo_searched=1;
  226. for (ram_addr=0xC0000; ram_addr < 0xE0000; ram_addr+=0x2000) {
  227. __u32 intf_tbl=0;
  228. found_turbo=1;
  229. chanid=(CHANNEL_ID + ram_addr);
  230. tchanid=pcchannelid;
  231. ctemp=isa_readb(chanid) & 0x0f;
  232. if (ctemp != *tchanid) continue;
  233. for (i=2,j=1; i<=46; i=i+2,j++) {
  234. if ((isa_readb(chanid+i) & 0x0f) != tchanid[j]){
  235. found_turbo=0;
  236. break;
  237. }
  238. }
  239. if (!found_turbo) continue;
  240. isa_writeb(0x90, ram_addr+0x1E01);
  241. for(i=2; i<0x0f; i++) {
  242. isa_writeb(0x00, ram_addr+0x1E01+i);
  243. }
  244. isa_writeb(0x00, ram_addr+0x1E01);
  245. for(i=jiffies+TR_BUSY_INTERVAL; time_before_eq(jiffies,i););
  246. intf_tbl=ntohs(isa_readw(ram_addr+ACA_OFFSET+ACA_RW+WRBR_EVEN));
  247. if (intf_tbl) {
  248. #if IBMTR_DEBUG_MESSAGES
  249. printk("ibmtr::find_turbo_adapters, Turbo found at "
  250. "ram_addr %xn",ram_addr);
  251. printk("ibmtr::find_turbo_adapters, interface_table ");
  252. for(i=0; i<6; i++) {
  253. printk("%x:",isa_readb(ram_addr+intf_tbl+i));
  254. }
  255. printk("n");
  256. #endif
  257. turbo_io[index]=ntohs(isa_readw(ram_addr+intf_tbl+4));
  258. turbo_irq[index]=isa_readb(ram_addr+intf_tbl+3);
  259. outb(0, turbo_io[index] + ADAPTRESET);
  260. for(i=jiffies+TR_RST_TIME;time_before_eq(jiffies,i););
  261. outb(0, turbo_io[index] + ADAPTRESETREL);
  262. index++;
  263. continue;
  264. }
  265. #if IBMTR_DEBUG_MESSAGES 
  266. printk("ibmtr::find_turbo_adapters, ibmtr card found at"
  267. " %x but not a Turbo modeln",ram_addr);
  268. #endif
  269. }
  270. for(i=0; i<IBMTR_MAX_ADAPTERS; i++) {
  271. if(!turbo_io[i]) break;
  272. for (j=0; j<IBMTR_MAX_ADAPTERS; j++) {
  273. if ( iolist[j] && iolist[j] != turbo_io[i]) continue;
  274. iolist[j]=turbo_io[i];
  275. break;
  276. }
  277. }
  278. }
  279. /****************************************************************************
  280.  * ibmtr_probe():  Routine specified in the network device structure
  281.  * to probe for an IBM Token Ring Adapter.  Routine outline:
  282.  * I.    Interrogate hardware to determine if an adapter exists
  283.  *       and what the speeds and feeds are
  284.  * II.   Setup data structures to control execution based upon
  285.  *       adapter characteristics.
  286.  *
  287.  * We expect ibmtr_probe to be called once for each device entry
  288.  * which references it.
  289.  ****************************************************************************/
  290. int __devinit ibmtr_probe(struct net_device *dev)
  291. {
  292. int i;
  293. int base_addr = dev->base_addr;
  294. if (base_addr && base_addr <= 0x1ff) /* Don't probe at all. */
  295. return -ENXIO;
  296. if (base_addr > 0x1ff) { /* Check a single specified location.  */
  297. if (!ibmtr_probe1(dev, base_addr)) return 0;
  298. return -ENODEV;
  299. }
  300. find_turbo_adapters(ibmtr_portlist);
  301. for (i = 0; ibmtr_portlist[i]; i++) {
  302. int ioaddr = ibmtr_portlist[i];
  303. if (!ibmtr_probe1(dev, ioaddr)) return 0;
  304. }
  305. return -ENODEV;
  306. }
  307. /*****************************************************************************/
  308. static int __devinit ibmtr_probe1(struct net_device *dev, int PIOaddr)
  309. {
  310. unsigned char segment, intr=0, irq=0, i, j, cardpresent=NOTOK, temp=0;
  311. void * t_mmio = 0;
  312. struct tok_info *ti = 0;
  313. void *cd_chanid;
  314. unsigned char *tchanid, ctemp;
  315. #ifndef PCMCIA
  316. unsigned char t_irq=0;
  317.         unsigned long timeout;
  318. static int version_printed;
  319. #endif
  320. #ifndef MODULE
  321. #ifndef PCMCIA
  322. dev = init_trdev(dev, 0);
  323. if (!dev)
  324. return -ENOMEM;
  325. #endif
  326. #endif
  327. /*    Query the adapter PIO base port which will return
  328.  *    indication of where MMIO was placed. We also have a
  329.  *    coded interrupt number.
  330.  */
  331. segment = inb(PIOaddr);
  332. if (segment < 0x40 || segment > 0xe0) {
  333. /* Out of range values so we'll assume non-existent IO device
  334.  * but this is not necessarily a problem, esp if a turbo
  335.  * adapter is being used.  */
  336. #if IBMTR_DEBUG_MESSAGES
  337. DPRINTK("ibmtr_probe1(): unhappy that inb(0x%X) == 0x%X, "
  338. "Hardware Problem?n",PIOaddr,segment);
  339. #endif
  340. return -ENODEV;
  341. }
  342. /*
  343.  *    Compute the linear base address of the MMIO area
  344.  *    as LINUX doesn't care about segments
  345.  */
  346. t_mmio = ioremap(((__u32) (segment & 0xfc) << 11) + 0x80000,2048);
  347. if (!t_mmio) { 
  348. DPRINTK("Cannot remap mmiobase memory area") ; 
  349. return -ENODEV ; 
  350. intr = segment & 0x03; /* low bits is coded interrupt # */
  351. if (ibmtr_debug_trace & TRC_INIT)
  352. DPRINTK("PIOaddr: %4hx seg/intr: %2x mmio base: %p intr: %dn"
  353. , PIOaddr, (int) segment, t_mmio, (int) intr);
  354. /*
  355.  *    Now we will compare expected 'channelid' strings with
  356.  *    what we is there to learn of ISA/MCA or not TR card
  357.  */
  358. #ifdef PCMCIA
  359. iounmap(t_mmio);
  360. ti = dev->priv; /*BMS moved up here */
  361. t_mmio = (void *)ti->mmio; /*BMS to get virtual address */
  362. irq = ti->irq; /*BMS to display the irq!   */
  363. #endif
  364. cd_chanid = (CHANNEL_ID + t_mmio); /* for efficiency */
  365. tchanid = pcchannelid;
  366. cardpresent = TR_ISA; /* try ISA */
  367. /*    Suboptimize knowing first byte different */
  368. ctemp = readb(cd_chanid) & 0x0f;
  369. if (ctemp != *tchanid) { /* NOT ISA card, try MCA */
  370. tchanid = mcchannelid;
  371. cardpresent = TR_MCA;
  372. if (ctemp != *tchanid) /* Neither ISA nor MCA */
  373. cardpresent = NOTOK;
  374. }
  375. if (cardpresent != NOTOK) {
  376. /*       Know presumed type, try rest of ID */
  377. for (i = 2, j = 1; i <= 46; i = i + 2, j++) {
  378. if( (readb(cd_chanid+i)&0x0f) == tchanid[j]) continue;
  379. /* match failed, not TR card */
  380. cardpresent = NOTOK;
  381. break;
  382. }
  383. }
  384. /* 
  385.  *    If we have an ISA board check for the ISA P&P version,
  386.  *    as it has different IRQ settings 
  387.  */
  388. if (cardpresent == TR_ISA && (readb(AIPFID + t_mmio) == 0x0e))
  389. cardpresent = TR_ISAPNP;
  390. if (cardpresent == NOTOK) { /* "channel_id" did not match, report */
  391. if (!(ibmtr_debug_trace & TRC_INIT)) {
  392. #ifndef PCMCIA
  393. iounmap(t_mmio);
  394. #endif
  395. return -ENODEV;
  396. }
  397. DPRINTK( "Channel ID string not found for PIOaddr: %4hxn",
  398. PIOaddr);
  399. DPRINTK("Expected for ISA: ");
  400. PrtChanID(pcchannelid, 1);
  401. DPRINTK("           found: ");
  402. /* BMS Note that this can be misleading, when hardware is flaky, because you
  403.    are reading it a second time here. So with my flaky hardware, I'll see my-
  404.    self in this block, with the HW ID matching the ISA ID exactly! */
  405. HWPrtChanID(cd_chanid, 2);
  406. DPRINTK("Expected for MCA: ");
  407. PrtChanID(mcchannelid, 1);
  408. }
  409. /* Now, allocate some of the pl0 buffers for this driver.. */
  410. /* If called from PCMCIA, it is already set up, so no need to 
  411.    waste the memory, just use the existing structure */
  412. #ifndef PCMCIA
  413. ti = (struct tok_info *) kmalloc(sizeof(struct tok_info), GFP_KERNEL);
  414. if (ti == NULL) {
  415. iounmap(t_mmio);
  416. return -ENOMEM;
  417. }
  418. memset(ti, 0, sizeof(struct tok_info));
  419. ti->mmio = t_mmio;
  420. dev->priv = ti; /* this seems like the logical use of the
  421.    field ... let's try some empirical tests
  422.    using the token-info structure -- that
  423.    should fit with out future hope of multiple
  424.    adapter support as well /dwm   */
  425.         for(i=0; i<IBMTR_MAX_ADAPTERS; i++) {
  426.                 if (turbo_io[i] != PIOaddr) continue;
  427. #if IBMTR_DEBUG_MESSAGES 
  428. printk("ibmtr::tr_probe1, setting PIOaddr %x to Turbon" ,
  429. PIOaddr);
  430. #endif
  431. ti->turbo=1;
  432. t_irq=turbo_irq[i];
  433.         }
  434. #endif /* !PCMCIA */
  435. ti->readlog_pending = 0;
  436. init_waitqueue_head(&ti->wait_for_reset);
  437. /* if PCMCIA, the card can be recognized as either TR_ISA or TR_ISAPNP
  438.  * depending which card is inserted. */
  439. #ifndef PCMCIA
  440. switch (cardpresent) {
  441. case TR_ISA:
  442. if (intr == 0) irq = 9; /* irq2 really is irq9 */
  443. if (intr == 1) irq = 3;
  444. if (intr == 2) irq = 6;
  445. if (intr == 3) irq = 7;
  446. ti->adapter_int_enable = PIOaddr + ADAPTINTREL;
  447. break;
  448. case TR_MCA:
  449. if (intr == 0) irq = 9;
  450. if (intr == 1) irq = 3;
  451. if (intr == 2) irq = 10;
  452. if (intr == 3) irq = 11;
  453. ti->global_int_enable = 0;
  454. ti->adapter_int_enable = 0;
  455. ti->sram_virt=(__u32)(inb(PIOaddr+ADAPTRESETREL) & 0xfe) << 12;
  456. break;
  457. case TR_ISAPNP:
  458. if (!t_irq) {
  459. if (intr == 0) irq = 9;
  460. if (intr == 1) irq = 3;
  461. if (intr == 2) irq = 10;
  462. if (intr == 3) irq = 11;
  463. } else
  464. irq=t_irq;
  465. timeout = jiffies + TR_SPIN_INTERVAL;
  466. while (!readb(ti->mmio + ACA_OFFSET + ACA_RW + RRR_EVEN)){
  467. if (!time_after(jiffies, timeout)) continue;
  468. DPRINTK( "Hardware timeout during initialization.n");
  469. iounmap(t_mmio);
  470. kfree(ti);
  471. return -ENODEV;
  472. }
  473. ti->sram_virt =
  474.      ((__u32)readb(ti->mmio+ACA_OFFSET+ACA_RW+RRR_EVEN)<<12);
  475. ti->adapter_int_enable = PIOaddr + ADAPTINTREL;
  476. break;
  477. } /*end switch (cardpresent) */
  478. #endif /*not PCMCIA */
  479. if (ibmtr_debug_trace & TRC_INIT) { /* just report int */
  480. DPRINTK("irq=%d", irq);
  481. printk(", sram_virt=0x%x", ti->sram_virt);
  482. if(ibmtr_debug_trace&TRC_INITV){ /* full chat in verbose only */
  483. DPRINTK(", ti->mmio=%p", ti->mmio);
  484. printk(", segment=%02X", segment);
  485. }
  486. printk(".n");
  487. }
  488. /* Get hw address of token ring card */
  489. j = 0;
  490. for (i = 0; i < 0x18; i = i + 2) {
  491. /* technical reference states to do this */
  492. temp = readb(ti->mmio + AIP + i) & 0x0f;
  493. ti->hw_address[j] = temp;
  494. if (j & 1)
  495. dev->dev_addr[(j / 2)] =
  496. ti->hw_address[j]+ (ti->hw_address[j - 1] << 4);
  497. ++j;
  498. }
  499. /* get Adapter type:  'F' = Adapter/A, 'E' = 16/4 Adapter II,... */
  500. ti->adapter_type = readb(ti->mmio + AIPADAPTYPE);
  501. /* get Data Rate:  F=4Mb, E=16Mb, D=4Mb & 16Mb ?? */
  502. ti->data_rate = readb(ti->mmio + AIPDATARATE);
  503. /* Get Early Token Release support?: F=no, E=4Mb, D=16Mb, C=4&16Mb */
  504. ti->token_release = readb(ti->mmio + AIPEARLYTOKEN);
  505. /* How much shared RAM is on adapter ? */
  506. if (ti->turbo) {
  507. ti->avail_shared_ram=127;
  508. } else {
  509. ti->avail_shared_ram = get_sram_size(ti);/*in 512 byte units */
  510. }
  511. /* We need to set or do a bunch of work here based on previous results*/
  512. /* Support paging?  What sizes?:  F=no, E=16k, D=32k, C=16 & 32k */
  513. ti->shared_ram_paging = readb(ti->mmio + AIPSHRAMPAGE);
  514. /* Available DHB  4Mb size:   F=2048, E=4096, D=4464 */
  515. switch (readb(ti->mmio + AIP4MBDHB)) {
  516. case 0xe: ti->dhb_size4mb = 4096; break;
  517. case 0xd: ti->dhb_size4mb = 4464; break;
  518. default:  ti->dhb_size4mb = 2048; break;
  519. }
  520. /* Available DHB 16Mb size:  F=2048, E=4096, D=8192, C=16384, B=17960 */
  521. switch (readb(ti->mmio + AIP16MBDHB)) {
  522. case 0xe: ti->dhb_size16mb = 4096; break;
  523. case 0xd: ti->dhb_size16mb = 8192; break;
  524. case 0xc: ti->dhb_size16mb = 16384; break;
  525. case 0xb: ti->dhb_size16mb = 17960; break;
  526. default:  ti->dhb_size16mb = 2048; break;
  527. }
  528. /*    We must figure out how much shared memory space this adapter
  529.  *    will occupy so that if there are two adapters we can fit both
  530.  *    in.  Given a choice, we will limit this adapter to 32K.  The
  531.  *    maximum space will will use for two adapters is 64K so if the
  532.  *    adapter we are working on demands 64K (it also doesn't support
  533.  *    paging), then only one adapter can be supported.  
  534.  */
  535. /*
  536.  *    determine how much of total RAM is mapped into PC space 
  537.  */
  538. ti->mapped_ram_size= /*sixteen to onehundredtwentyeight 512byte blocks*/
  539.     1<< ((readb(ti->mmio+ACA_OFFSET+ACA_RW+RRR_ODD) >> 2 & 0x03) + 4);
  540. ti->page_mask = 0;
  541. if (ti->turbo)  ti->page_mask=0xf0;
  542. else if (ti->shared_ram_paging == 0xf);  /* No paging in adapter */
  543. else {
  544. #ifdef ENABLE_PAGING
  545. unsigned char pg_size = 0;
  546. /* BMS:   page size: PCMCIA, use configuration register;
  547.    ISAPNP, use LANAIDC config tool from www.ibm.com  */
  548. switch (ti->shared_ram_paging) {
  549. case 0xf:
  550. break;
  551. case 0xe:
  552. ti->page_mask = (ti->mapped_ram_size == 32) ? 0xc0 : 0;
  553. pg_size = 32; /* 16KB page size */
  554. break;
  555. case 0xd:
  556. ti->page_mask = (ti->mapped_ram_size == 64) ? 0x80 : 0;
  557. pg_size = 64; /* 32KB page size */
  558. break;
  559. case 0xc:
  560. switch (ti->mapped_ram_size) {
  561. case 32:
  562. ti->page_mask = 0xc0;
  563. pg_size = 32;
  564. break;
  565. case 64:
  566. ti->page_mask = 0x80;
  567. pg_size = 64;
  568. break;
  569. }
  570. break;
  571. default:
  572. DPRINTK("Unknown shared ram paging info %01Xn",
  573. ti->shared_ram_paging);
  574. iounmap(t_mmio); 
  575. kfree(ti);
  576. return -ENODEV;
  577. break;
  578. } /*end switch shared_ram_paging */
  579. if (ibmtr_debug_trace & TRC_INIT)
  580. DPRINTK("Shared RAM paging code: %02X, "
  581. "mapped RAM size: %dK, shared RAM size: %dK, "
  582. "page mask: %02Xn:",
  583. ti->shared_ram_paging, ti->mapped_ram_size / 2,
  584. ti->avail_shared_ram / 2, ti->page_mask);
  585. #endif /*ENABLE_PAGING */
  586. }
  587. #ifndef PCMCIA
  588. /* finish figuring the shared RAM address */
  589. if (cardpresent == TR_ISA) {
  590. static __u32 ram_bndry_mask[] =
  591. { 0xffffe000, 0xffffc000, 0xffff8000, 0xffff0000 };
  592. __u32 new_base, rrr_32, chk_base, rbm;
  593. rrr_32=readb(ti->mmio+ACA_OFFSET+ACA_RW+RRR_ODD) >> 2 & 0x03;
  594. rbm = ram_bndry_mask[rrr_32];
  595. new_base = (ibmtr_mem_base + (~rbm)) & rbm;/* up to boundary */
  596. chk_base = new_base + (ti->mapped_ram_size << 9);
  597. if (chk_base > (ibmtr_mem_base + IBMTR_SHARED_RAM_SIZE)) {
  598. DPRINTK("Shared RAM for this adapter (%05x) exceeds "
  599. "driver limit (%05x), adapter not started.n",
  600. chk_base, ibmtr_mem_base + IBMTR_SHARED_RAM_SIZE);
  601. iounmap(t_mmio);
  602. kfree(ti);
  603. return -ENODEV;
  604. } else { /* seems cool, record what we have figured out */
  605. ti->sram_base = new_base >> 12;
  606. ibmtr_mem_base = chk_base;
  607. }
  608. }
  609. else  ti->sram_base = ti->sram_virt >> 12;
  610. /* The PCMCIA has already got the interrupt line and the io port, 
  611.    so no chance of anybody else getting it - MLP */
  612. if (request_irq(dev->irq = irq, &tok_interrupt, 0, "ibmtr", dev) != 0) {
  613. DPRINTK("Could not grab irq %d.  Halting Token Ring driver.n",
  614. irq);
  615. iounmap(t_mmio);
  616. kfree(ti);
  617. return -ENODEV;
  618. }
  619. /*?? Now, allocate some of the PIO PORTs for this driver.. */
  620. /* record PIOaddr range as busy */
  621. if (!request_region(PIOaddr, IBMTR_IO_EXTENT, "ibmtr")) {
  622. DPRINTK("Could not grab PIO range. Halting driver.n");
  623. free_irq(dev->irq, dev);
  624. iounmap(t_mmio);
  625. kfree(ti);
  626. return -EBUSY;
  627. }
  628. if (!version_printed++) {
  629. printk(version);
  630. }
  631. #endif /* !PCMCIA */
  632. DPRINTK("%s %s foundn",
  633. channel_def[cardpresent - 1], adapter_def(ti->adapter_type));
  634. DPRINTK("using irq %d, PIOaddr %hx, %dK shared RAM.n",
  635. irq, PIOaddr, ti->mapped_ram_size / 2);
  636. DPRINTK("Hardware address : %02X:%02X:%02X:%02X:%02X:%02Xn",
  637. dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
  638. dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
  639. if (ti->page_mask)
  640. DPRINTK("Shared RAM paging enabled. "
  641. "Page size: %uK Shared Ram size %dKn",
  642. ((ti->page_mask^0xff)+1) >>2, ti->avail_shared_ram / 2);
  643. else
  644. DPRINTK("Shared RAM paging disabled. ti->page_mask %xn",
  645. ti->page_mask);
  646. /* Calculate the maximum DHB we can use */
  647. /* two cases where avail_shared_ram doesn't equal mapped_ram_size:
  648.     1. avail_shared_ram is 127 but mapped_ram_size is 128 (typical)
  649.     2. user has configured adapter for less than avail_shared_ram
  650.        but is not using paging (she should use paging, I believe)
  651. */
  652. if (!ti->page_mask) {
  653. ti->avail_shared_ram=
  654. MIN(ti->mapped_ram_size,ti->avail_shared_ram);
  655. }
  656. switch (ti->avail_shared_ram) {
  657. case 16: /* 8KB shared RAM */
  658. ti->dhb_size4mb = MIN(ti->dhb_size4mb, 2048);
  659. ti->rbuf_len4 = 1032;
  660. ti->rbuf_cnt4=2;
  661. ti->dhb_size16mb = MIN(ti->dhb_size16mb, 2048);
  662. ti->rbuf_len16 = 1032;
  663. ti->rbuf_cnt16=2;
  664. break;
  665. case 32: /* 16KB shared RAM */
  666. ti->dhb_size4mb = MIN(ti->dhb_size4mb, 4464);
  667. ti->rbuf_len4 = 1032;
  668. ti->rbuf_cnt4=4;
  669. ti->dhb_size16mb = MIN(ti->dhb_size16mb, 4096);
  670. ti->rbuf_len16 = 1032; /*1024 usable */
  671. ti->rbuf_cnt16=4;
  672. break;
  673. case 64: /* 32KB shared RAM */
  674. ti->dhb_size4mb = MIN(ti->dhb_size4mb, 4464);
  675. ti->rbuf_len4 = 1032;
  676. ti->rbuf_cnt4=6;
  677. ti->dhb_size16mb = MIN(ti->dhb_size16mb, 10240);
  678. ti->rbuf_len16 = 1032;
  679. ti->rbuf_cnt16=6;
  680. break;
  681. case 127: /* 63.5KB shared RAM */
  682. ti->dhb_size4mb = MIN(ti->dhb_size4mb, 4464);
  683. ti->rbuf_len4 = 1032;
  684. ti->rbuf_cnt4=6;
  685. ti->dhb_size16mb = MIN(ti->dhb_size16mb, 16384);
  686. ti->rbuf_len16 = 1032;
  687. ti->rbuf_cnt16=16;
  688. break;
  689. case 128: /* 64KB   shared RAM */
  690. ti->dhb_size4mb = MIN(ti->dhb_size4mb, 4464);
  691. ti->rbuf_len4 = 1032;
  692. ti->rbuf_cnt4=6;
  693. ti->dhb_size16mb = MIN(ti->dhb_size16mb, 17960);
  694. ti->rbuf_len16 = 1032;
  695. ti->rbuf_cnt16=16;
  696. break;
  697. default:
  698. ti->dhb_size4mb = 2048;
  699. ti->rbuf_len4 = 1032;
  700. ti->rbuf_cnt4=2;
  701. ti->dhb_size16mb = 2048;
  702. ti->rbuf_len16 = 1032;
  703. ti->rbuf_cnt16=2;
  704. break;
  705. }
  706. /* this formula is not smart enough for the paging case
  707. ti->rbuf_cnt<x> = (ti->avail_shared_ram * BLOCKSZ - ADAPT_PRIVATE -
  708. ARBLENGTH - SSBLENGTH - DLC_MAX_SAP * SAPLENGTH -
  709. DLC_MAX_STA * STALENGTH - ti->dhb_size<x>mb * NUM_DHB -
  710. SRBLENGTH - ASBLENGTH) / ti->rbuf_len<x>;
  711. */
  712. ti->maxmtu16 = (ti->rbuf_len16 - 8) * ti->rbuf_cnt16  - TR_HLEN;
  713. ti->maxmtu4 = (ti->rbuf_len4 - 8) * ti->rbuf_cnt4 - TR_HLEN;
  714. /*BMS assuming 18 bytes of Routing Information (usually works) */
  715. DPRINTK("Maximum Receive Internet Protocol MTU 16Mbps: %d, 4Mbps: %dn",
  716.      ti->maxmtu16, ti->maxmtu4);
  717. dev->base_addr = PIOaddr; /* set the value for device */
  718. dev->mem_start = ti->sram_base << 12;
  719. dev->mem_end = dev->mem_start + (ti->mapped_ram_size << 9) - 1;
  720. trdev_init(dev);
  721. return 0;   /* Return 0 to indicate we have found a Token Ring card. */
  722. } /*ibmtr_probe1() */
  723. /*****************************************************************************/
  724. /* query the adapter for the size of shared RAM  */
  725. /* the function returns the RAM size in units of 512 bytes */
  726. static unsigned char __devinit get_sram_size(struct tok_info *adapt_info)
  727. {
  728. unsigned char avail_sram_code;
  729. static unsigned char size_code[] = { 0, 16, 32, 64, 127, 128 };
  730. /* Adapter gives
  731.    'F' -- use RRR bits 3,2
  732.    'E' -- 8kb   'D' -- 16kb
  733.    'C' -- 32kb  'A' -- 64KB
  734.    'B' - 64KB less 512 bytes at top
  735.    (WARNING ... must zero top bytes in INIT */
  736. avail_sram_code = 0xf - readb(adapt_info->mmio + AIPAVAILSHRAM);
  737. if (avail_sram_code) return size_code[avail_sram_code];
  738. else /* for code 'F', must compute size from RRR(3,2) bits */
  739. return 1 <<
  740.  ((readb(adapt_info->mmio+ACA_OFFSET+ACA_RW+RRR_ODD)>>2&3)+4);
  741. }
  742. /*****************************************************************************/
  743. static int __devinit trdev_init(struct net_device *dev)
  744. {
  745. struct tok_info *ti = (struct tok_info *) dev->priv;
  746. SET_PAGE(ti->srb_page);
  747.         ti->open_failure = NO    ;
  748. dev->open = tok_open;
  749. dev->stop = tok_close;
  750. dev->hard_start_xmit = tok_send_packet;
  751. dev->get_stats = tok_get_stats;
  752. dev->set_multicast_list = tok_set_multicast_list;
  753. dev->change_mtu = ibmtr_change_mtu;
  754. #ifndef MODULE
  755. #ifndef PCMCIA
  756. tr_setup(dev);
  757. #endif
  758. #endif
  759. return 0;
  760. }
  761. /*****************************************************************************/
  762. static int tok_init_card(struct net_device *dev)
  763. {
  764. struct tok_info *ti;
  765. short PIOaddr;
  766. unsigned long i;
  767. PIOaddr = dev->base_addr;
  768. ti = (struct tok_info *) dev->priv;
  769. /* Special processing for first interrupt after reset */
  770. ti->do_tok_int = FIRST_INT;
  771. /* Reset adapter */
  772. writeb(~INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_RESET + ISRP_EVEN);
  773. outb(0, PIOaddr + ADAPTRESET);
  774. current->state=TASK_UNINTERRUPTIBLE;
  775. schedule_timeout(TR_RST_TIME); /* wait 50ms */
  776. outb(0, PIOaddr + ADAPTRESETREL);
  777. #ifdef ENABLE_PAGING
  778. if (ti->page_mask)
  779. writeb(SRPR_ENABLE_PAGING,ti->mmio+ACA_OFFSET+ACA_RW+SRPR_EVEN);
  780. #endif
  781. writeb(INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_SET + ISRP_EVEN);
  782. i = sleep_on_timeout(&ti->wait_for_reset, 4 * HZ);
  783. return i? 0 : -EAGAIN;
  784. }
  785. /*****************************************************************************/
  786. static int tok_open(struct net_device *dev)
  787. {
  788. struct tok_info *ti = (struct tok_info *) dev->priv;
  789. int i;
  790. /*the case we were left in a failure state during a previous open */
  791. if (ti->open_failure == YES) {
  792. DPRINTK("Last time you were disconnected, how about now?n");
  793. printk("You can't insert with an ICS connector half-cocked.n");
  794. }
  795. ti->open_status  = CLOSED; /* CLOSED or OPEN      */
  796. ti->sap_status   = CLOSED; /* CLOSED or OPEN      */
  797. ti->open_failure =     NO; /* NO     or YES       */
  798. ti->open_mode    = MANUAL; /* MANUAL or AUTOMATIC */
  799. /* 12/2000 not typical Linux, but we can use RUNNING to let us know when
  800. the network has crapped out or cables are disconnected. Useful because
  801. the IFF_UP flag stays up the whole time, until ifconfig tr0 down.
  802. */
  803. dev->flags &= ~IFF_RUNNING;
  804. ti->sram_virt &= ~1; /* to reverse what we do in tok_close */
  805. /* init the spinlock */
  806. ti->lock = (spinlock_t) SPIN_LOCK_UNLOCKED;
  807. i = tok_init_card(dev);
  808. if (i) return i;
  809. while (1){
  810. tok_open_adapter((unsigned long) dev);
  811. i= interruptible_sleep_on_timeout(&ti->wait_for_reset, 25 * HZ);
  812. /* sig catch: estimate opening adapter takes more than .5 sec*/
  813. if (i>(245*HZ)/10) break; /* fancier than if (i==25*HZ) */
  814. if (i==0) break;
  815. if (ti->open_status == OPEN && ti->sap_status==OPEN) {
  816. netif_start_queue(dev);
  817. MOD_INC_USE_COUNT;
  818. DPRINTK("Adapter is up and runningn");
  819. return 0;
  820. }
  821. current->state=TASK_INTERRUPTIBLE;
  822. i=schedule_timeout(TR_RETRY_INTERVAL); /* wait 30 seconds */
  823. if(i!=0) break; /*prob. a signal, like the i>24*HZ case above */
  824. }
  825. outb(0, dev->base_addr + ADAPTRESET);/* kill pending interrupts*/
  826. DPRINTK("TERMINATED via signaln"); /*BMS useful */
  827. return -EAGAIN;
  828. }
  829. /*****************************************************************************/
  830. #define COMMAND_OFST             0
  831. #define OPEN_OPTIONS_OFST        8
  832. #define NUM_RCV_BUF_OFST        24
  833. #define RCV_BUF_LEN_OFST        26
  834. #define DHB_LENGTH_OFST         28
  835. #define NUM_DHB_OFST            30
  836. #define DLC_MAX_SAP_OFST        32
  837. #define DLC_MAX_STA_OFST        33
  838. void tok_open_adapter(unsigned long dev_addr)
  839. {
  840. struct net_device *dev = (struct net_device *) dev_addr;
  841. struct tok_info *ti;
  842. int i;
  843. ti = (struct tok_info *) dev->priv;
  844. SET_PAGE(ti->init_srb_page); 
  845. writeb(~SRB_RESP_INT, ti->mmio + ACA_OFFSET + ACA_RESET + ISRP_ODD);
  846. for (i = 0; i < sizeof(struct dir_open_adapter); i++)
  847. writeb(0, ti->init_srb + i);
  848. writeb(DIR_OPEN_ADAPTER, ti->init_srb + COMMAND_OFST);
  849. writew(htons(OPEN_PASS_BCON_MAC), ti->init_srb + OPEN_OPTIONS_OFST);
  850. if (ti->ring_speed == 16) {
  851. writew(htons(ti->dhb_size16mb), ti->init_srb + DHB_LENGTH_OFST);
  852. writew(htons(ti->rbuf_cnt16), ti->init_srb + NUM_RCV_BUF_OFST);
  853. writew(htons(ti->rbuf_len16), ti->init_srb + RCV_BUF_LEN_OFST);
  854. } else {
  855. writew(htons(ti->dhb_size4mb), ti->init_srb + DHB_LENGTH_OFST);
  856. writew(htons(ti->rbuf_cnt4), ti->init_srb + NUM_RCV_BUF_OFST);
  857. writew(htons(ti->rbuf_len4), ti->init_srb + RCV_BUF_LEN_OFST);
  858. }
  859. writeb(NUM_DHB, /* always 2 */ ti->init_srb + NUM_DHB_OFST);
  860. writeb(DLC_MAX_SAP, ti->init_srb + DLC_MAX_SAP_OFST);
  861. writeb(DLC_MAX_STA, ti->init_srb + DLC_MAX_STA_OFST);
  862. ti->srb = ti->init_srb; /* We use this one in the interrupt handler */
  863. ti->srb_page = ti->init_srb_page;
  864. DPRINTK("Opening adapter: Xmit bfrs: %d X %d, Rcv bfrs: %d X %dn",
  865. readb(ti->init_srb + NUM_DHB_OFST),
  866. ntohs(readw(ti->init_srb + DHB_LENGTH_OFST)),
  867. ntohs(readw(ti->init_srb + NUM_RCV_BUF_OFST)),
  868. ntohs(readw(ti->init_srb + RCV_BUF_LEN_OFST)));
  869. writeb(INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_SET + ISRP_EVEN);
  870. writeb(CMD_IN_SRB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  871. }
  872. /*****************************************************************************/
  873. static void open_sap(unsigned char type, struct net_device *dev)
  874. {
  875. int i;
  876. struct tok_info *ti = (struct tok_info *) dev->priv;
  877. SET_PAGE(ti->srb_page);
  878. for (i = 0; i < sizeof(struct dlc_open_sap); i++)
  879. writeb(0, ti->srb + i);
  880. #define MAX_I_FIELD_OFST        14
  881. #define SAP_VALUE_OFST          16
  882. #define SAP_OPTIONS_OFST        17
  883. #define STATION_COUNT_OFST      18
  884. writeb(DLC_OPEN_SAP, ti->srb + COMMAND_OFST);
  885. writew(htons(MAX_I_FIELD), ti->srb + MAX_I_FIELD_OFST);
  886. writeb(SAP_OPEN_IND_SAP | SAP_OPEN_PRIORITY, ti->srb+ SAP_OPTIONS_OFST);
  887. writeb(SAP_OPEN_STATION_CNT, ti->srb + STATION_COUNT_OFST);
  888. writeb(type, ti->srb + SAP_VALUE_OFST);
  889. writeb(CMD_IN_SRB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  890. }
  891. /*****************************************************************************/
  892. static void tok_set_multicast_list(struct net_device *dev)
  893. {
  894. struct tok_info *ti = (struct tok_info *) dev->priv;
  895. struct dev_mc_list *mclist;
  896. unsigned char address[4];
  897. int i;
  898. /*BMS the next line is CRUCIAL or you may be sad when you */
  899. /*BMS ifconfig tr down or hot unplug a PCMCIA card ??hownowbrowncow*/
  900. if (/*BMSHELPdev->start == 0 ||*/ ti->open_status != OPEN) return;
  901. address[0] = address[1] = address[2] = address[3] = 0;
  902. mclist = dev->mc_list;
  903. for (i = 0; i < dev->mc_count; i++) {
  904. address[0] |= mclist->dmi_addr[2];
  905. address[1] |= mclist->dmi_addr[3];
  906. address[2] |= mclist->dmi_addr[4];
  907. address[3] |= mclist->dmi_addr[5];
  908. mclist = mclist->next;
  909. }
  910. SET_PAGE(ti->srb_page);
  911. for (i = 0; i < sizeof(struct srb_set_funct_addr); i++)
  912. writeb(0, ti->srb + i);
  913. #define FUNCT_ADDRESS_OFST 6
  914. writeb(DIR_SET_FUNC_ADDR, ti->srb + COMMAND_OFST);
  915. for (i = 0; i < 4; i++) 
  916. writeb(address[i], ti->srb + FUNCT_ADDRESS_OFST + i);
  917. writeb(CMD_IN_SRB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  918. #if TR_VERBOSE
  919. DPRINTK("Setting functional address: ");
  920. for (i=0;i<4;i++)  printk("%02X ", address[i]);
  921. printk("n");
  922. #endif
  923. }
  924. /*****************************************************************************/
  925. #define STATION_ID_OFST 4
  926. static int tok_send_packet(struct sk_buff *skb, struct net_device *dev)
  927. {
  928. struct tok_info *ti;
  929. unsigned long flags;
  930. ti = (struct tok_info *) dev->priv;
  931.         netif_stop_queue(dev);
  932. /* lock against other CPUs */
  933. spin_lock_irqsave(&(ti->lock), flags);
  934. /* Save skb; we'll need it when the adapter asks for the data */
  935. ti->current_skb = skb;
  936. SET_PAGE(ti->srb_page);
  937. writeb(XMIT_UI_FRAME, ti->srb + COMMAND_OFST);
  938. writew(ti->exsap_station_id, ti->srb + STATION_ID_OFST);
  939. writeb(CMD_IN_SRB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  940. spin_unlock_irqrestore(&(ti->lock), flags);
  941. dev->trans_start = jiffies;
  942. return 0;
  943. }
  944. /*****************************************************************************/
  945. static int tok_close(struct net_device *dev)
  946. {
  947. struct tok_info *ti = (struct tok_info *) dev->priv;
  948. /* Important for PCMCIA hot unplug, otherwise, we'll pull the card, */
  949. /* unloading the module from memory, and then if a timer pops, ouch */
  950. del_timer(&ti->tr_timer);
  951. outb(0, dev->base_addr + ADAPTRESET);
  952. ti->sram_virt |= 1;
  953. ti->open_status = CLOSED;
  954. netif_stop_queue(dev);
  955. DPRINTK("Adapter is closed.n");
  956. MOD_DEC_USE_COUNT;
  957. return 0;
  958. }
  959. /*****************************************************************************/
  960. #define RETCODE_OFST 2
  961. #define OPEN_ERROR_CODE_OFST 6
  962. #define ASB_ADDRESS_OFST        8
  963. #define SRB_ADDRESS_OFST        10
  964. #define ARB_ADDRESS_OFST        12
  965. #define SSB_ADDRESS_OFST        14
  966. static char *printphase[]= {"Lobe media test","Physical insertion",
  967.       "Address verification","Roll call poll","Request Parameters"};
  968. static char *printerror[]={"Function failure","Signal loss","Reserved",
  969. "Frequency error","Timeout","Ring failure","Ring beaconing",
  970. "Duplicate node address",
  971. "Parameter request-retry count exceeded","Remove received",
  972. "IMPL force received","Duplicate modifier",
  973. "No monitor detected","Monitor contention failed for RPL"};
  974. void dir_open_adapter (struct net_device *dev) {
  975.         struct tok_info *ti = (struct tok_info *) dev->priv;
  976.         unsigned char ret_code;
  977.         __u16 err;
  978.         ti->srb = ntohs(readw(ti->init_srb + SRB_ADDRESS_OFST));
  979.         ti->ssb = ntohs(readw(ti->init_srb + SSB_ADDRESS_OFST));
  980.         ti->arb = ntohs(readw(ti->init_srb + ARB_ADDRESS_OFST));
  981.         ti->asb = ntohs(readw(ti->init_srb + ASB_ADDRESS_OFST));
  982.         if (ti->page_mask) {
  983.                 ti->srb_page = (ti->srb >> 8) & ti->page_mask;
  984.                 ti->srb &= ~(ti->page_mask << 8);
  985.                 ti->ssb_page = (ti->ssb >> 8) & ti->page_mask;
  986.                 ti->ssb &= ~(ti->page_mask << 8);
  987.                 ti->arb_page = (ti->arb >> 8) & ti->page_mask;
  988.                 ti->arb &= ~(ti->page_mask << 8);
  989.                 ti->asb_page = (ti->asb >> 8) & ti->page_mask;
  990.                 ti->asb &= ~(ti->page_mask << 8);
  991.         }
  992.         ti->srb += ti->sram_virt;
  993.         ti->ssb += ti->sram_virt;
  994.         ti->arb += ti->sram_virt;
  995.         ti->asb += ti->sram_virt;
  996.         ti->current_skb = NULL;
  997.         ret_code = readb(ti->init_srb + RETCODE_OFST);
  998.         err = ntohs(readw(ti->init_srb + OPEN_ERROR_CODE_OFST));
  999.         if (!ret_code) {
  1000. ti->open_status = OPEN; /* TR adapter is now available */
  1001.                 if (ti->open_mode == AUTOMATIC) {
  1002. DPRINTK("Adapter reopened.n");
  1003.                 }
  1004.                 writeb(~SRB_RESP_INT, ti->mmio+ACA_OFFSET+ACA_RESET+ISRP_ODD);
  1005.                 open_sap(EXTENDED_SAP, dev);
  1006. return;
  1007. }
  1008. ti->open_failure = YES;
  1009. if (ret_code == 7){
  1010.                if (err == 0x24) {
  1011. if (!ti->auto_speedsave) {
  1012. DPRINTK("Open failed: Adapter speed must match "
  1013.                                  "ring speed if Automatic Ring Speed Save is "
  1014.  "disabled.n");
  1015. ti->open_action = FAIL;
  1016. }else
  1017. DPRINTK("Retrying open to adjust to "
  1018. "ring speed, ");
  1019.                 } else if (err == 0x2d) {
  1020. DPRINTK("Physical Insertion: No Monitor Detected, ");
  1021. printk("retrying after %ds delay...n",
  1022. TR_RETRY_INTERVAL/HZ);
  1023.                 } else if (err == 0x11) {
  1024. DPRINTK("Lobe Media Function Failure (0x11), ");
  1025. printk(" retrying after %ds delay...n",
  1026. TR_RETRY_INTERVAL/HZ);
  1027.                 } else {
  1028. char **prphase = printphase;
  1029. char **prerror = printerror;
  1030. DPRINTK("TR Adapter misc open failure, error code = ");
  1031. printk("0x%x, Phase: %s, Error: %sn",
  1032. err, prphase[err/16 -1], prerror[err%16 -1]);
  1033. printk(" retrying after %ds delay...n",
  1034. TR_RETRY_INTERVAL/HZ);
  1035.                 }
  1036.         } else DPRINTK("open failed: ret_code = %02X..., ", ret_code);
  1037. if (ti->open_action != FAIL) {
  1038. if (ti->open_mode==AUTOMATIC){
  1039. ti->open_action = REOPEN;
  1040. ibmtr_reset_timer(&(ti->tr_timer), dev);
  1041. return;
  1042. }
  1043. wake_up(&ti->wait_for_reset);
  1044. return;
  1045. }
  1046. DPRINTK("FAILURE, CAPUTn");
  1047. }
  1048. /******************************************************************************/
  1049. void tok_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1050. {
  1051. unsigned char status;
  1052. /*  unsigned char status_even ; */
  1053. struct tok_info *ti;
  1054. struct net_device *dev;
  1055. #ifdef ENABLE_PAGING
  1056. unsigned char save_srpr;
  1057. #endif
  1058. dev = dev_id;
  1059. #if TR_VERBOSE
  1060. DPRINTK("Int from tok_driver, dev : %p irq%d regs=%pn", dev,irq,regs);
  1061. #endif
  1062. ti = (struct tok_info *) dev->priv;
  1063. if (ti->sram_virt & 1)
  1064. return;         /* PCMCIA card extraction flag */
  1065. spin_lock(&(ti->lock));
  1066. #ifdef ENABLE_PAGING
  1067. save_srpr = readb(ti->mmio + ACA_OFFSET + ACA_RW + SRPR_EVEN);
  1068. #endif
  1069. /* Disable interrupts till processing is finished */
  1070. writeb((~INT_ENABLE), ti->mmio + ACA_OFFSET + ACA_RESET + ISRP_EVEN);
  1071. /* Reset interrupt for ISA boards */
  1072. if (ti->adapter_int_enable)
  1073. outb(0, ti->adapter_int_enable);
  1074. else /* used for PCMCIA cards */
  1075. outb(0, ti->global_int_enable);
  1076.         if (ti->do_tok_int == FIRST_INT){
  1077.                 initial_tok_int(dev);
  1078. #ifdef ENABLE_PAGING
  1079.                 writeb(save_srpr, ti->mmio + ACA_OFFSET + ACA_RW + SRPR_EVEN);
  1080. #endif
  1081.                 spin_unlock(&(ti->lock));
  1082.                 return;
  1083.         }
  1084. /*  Begin interrupt handler HERE inline to avoid the extra
  1085.     levels of logic and call depth for the original solution. */
  1086. status = readb(ti->mmio + ACA_OFFSET + ACA_RW + ISRP_ODD);
  1087. /*BMSstatus_even = readb (ti->mmio + ACA_OFFSET + ACA_RW + ISRP_EVEN) */
  1088. /*BMSdebugprintk("tok_interrupt: ISRP_ODD = 0x%x ISRP_EVEN = 0x%xn", */
  1089. /*BMS                                       status,status_even);      */
  1090. if (status & ADAP_CHK_INT) {
  1091. int i;
  1092. __u32 check_reason;
  1093. __u8 check_reason_page = 0;
  1094. check_reason =
  1095. ntohs(readw(ti->mmio+ ACA_OFFSET+ACA_RW + WWCR_EVEN));
  1096. if (ti->page_mask) {
  1097. check_reason_page = (check_reason >> 8) & ti->page_mask;
  1098. check_reason &= ~(ti->page_mask << 8);
  1099. }
  1100. check_reason += ti->sram_virt;
  1101. SET_PAGE(check_reason_page);
  1102. DPRINTK("Adapter check interruptn");
  1103. DPRINTK("8 reason bytes follow: ");
  1104. for (i = 0; i < 8; i++, check_reason++)
  1105. printk("%02X ", (int) readb(check_reason));
  1106. printk("n");
  1107. writeb(~ADAP_CHK_INT, ti->mmio+ ACA_OFFSET+ACA_RESET+ ISRP_ODD);
  1108. status = readb(ti->mmio + ACA_OFFSET + ACA_RW + ISRA_EVEN);
  1109. DPRINTK("ISRA_EVEN == 0x02%xn",status);
  1110. ti->open_status = CLOSED;
  1111. ti->sap_status  = CLOSED;
  1112. ti->open_mode   = AUTOMATIC;
  1113. dev->flags &= ~IFF_RUNNING;
  1114. netif_stop_queue(dev);
  1115. ti->open_action = RESTART;
  1116. outb(0, dev->base_addr + ADAPTRESET);
  1117. ibmtr_reset_timer(&(ti->tr_timer), dev);/*BMS try to reopen*/
  1118. spin_unlock(&(ti->lock));
  1119. return;
  1120. }
  1121. if (readb(ti->mmio + ACA_OFFSET + ACA_RW + ISRP_EVEN)
  1122. & (TCR_INT | ERR_INT | ACCESS_INT)) {
  1123. DPRINTK("adapter error: ISRP_EVEN : %02xn",
  1124. (int)readb(ti->mmio+ ACA_OFFSET + ACA_RW + ISRP_EVEN));
  1125. writeb(~(TCR_INT | ERR_INT | ACCESS_INT),
  1126. ti->mmio + ACA_OFFSET + ACA_RESET + ISRP_EVEN);
  1127. status= readb(ti->mmio+ ACA_OFFSET + ACA_RW + ISRA_EVEN);/*BMS*/
  1128. DPRINTK("ISRA_EVEN == 0x02%xn",status);/*BMS*/
  1129.                 writeb(INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_SET + ISRP_EVEN);
  1130. #ifdef ENABLE_PAGING
  1131.                 writeb(save_srpr, ti->mmio + ACA_OFFSET + ACA_RW + SRPR_EVEN);
  1132. #endif
  1133.                 spin_unlock(&(ti->lock));
  1134.                 return;
  1135.         }
  1136. if (status & SRB_RESP_INT) { /* SRB response */
  1137. SET_PAGE(ti->srb_page);
  1138. #if TR_VERBOSE
  1139. DPRINTK("SRB resp: cmd=%02X rsp=%02Xn",
  1140. readb(ti->srb), readb(ti->srb + RETCODE_OFST));
  1141. #endif
  1142. switch (readb(ti->srb)) { /* SRB command check */
  1143. case XMIT_DIR_FRAME:{
  1144. unsigned char xmit_ret_code;
  1145. xmit_ret_code = readb(ti->srb + RETCODE_OFST);
  1146. if (xmit_ret_code == 0xff) break;
  1147. DPRINTK("error on xmit_dir_frame request: %02Xn",
  1148. xmit_ret_code);
  1149. if (ti->current_skb) {
  1150. dev_kfree_skb_irq(ti->current_skb);
  1151. ti->current_skb = NULL;
  1152. }
  1153. /*dev->tbusy = 0;*/
  1154. netif_wake_queue(dev);
  1155. if (ti->readlog_pending)
  1156. ibmtr_readlog(dev);
  1157. break;
  1158. }
  1159. case XMIT_UI_FRAME:{
  1160. unsigned char xmit_ret_code;
  1161. xmit_ret_code = readb(ti->srb + RETCODE_OFST);
  1162. if (xmit_ret_code == 0xff) break;
  1163. DPRINTK("error on xmit_ui_frame request: %02Xn",
  1164. xmit_ret_code);
  1165. if (ti->current_skb) {
  1166. dev_kfree_skb_irq(ti->current_skb);
  1167. ti->current_skb = NULL;
  1168. }
  1169. netif_wake_queue(dev);
  1170. if (ti->readlog_pending)
  1171. ibmtr_readlog(dev);
  1172. break;
  1173. }
  1174. case DIR_OPEN_ADAPTER:
  1175. dir_open_adapter(dev);
  1176. break;
  1177. case DLC_OPEN_SAP:
  1178. if (readb(ti->srb + RETCODE_OFST)) {
  1179. DPRINTK("open_sap failed: ret_code = %02X, "
  1180. "retryingn",
  1181. (int) readb(ti->srb + RETCODE_OFST));
  1182. ti->open_action = REOPEN;
  1183. ibmtr_reset_timer(&(ti->tr_timer), dev);
  1184. break;
  1185. }
  1186. ti->exsap_station_id = readw(ti->srb + STATION_ID_OFST);
  1187. ti->sap_status = OPEN;/* TR adapter is now available */
  1188. if (ti->open_mode==MANUAL){
  1189. wake_up(&ti->wait_for_reset);
  1190. break;
  1191. }
  1192. netif_wake_queue(dev);
  1193. dev->flags |= IFF_RUNNING;/*BMS 12/2000*/
  1194. break;
  1195. case DIR_INTERRUPT:
  1196. case DIR_MOD_OPEN_PARAMS:
  1197. case DIR_SET_GRP_ADDR:
  1198. case DIR_SET_FUNC_ADDR:
  1199. case DLC_CLOSE_SAP:
  1200. if (readb(ti->srb + RETCODE_OFST))
  1201. DPRINTK("error on %02X: %02Xn",
  1202. (int) readb(ti->srb + COMMAND_OFST),
  1203. (int) readb(ti->srb + RETCODE_OFST));
  1204. break;
  1205. case DIR_READ_LOG:
  1206. if (readb(ti->srb + RETCODE_OFST)){
  1207. DPRINTK("error on dir_read_log: %02Xn",
  1208. (int) readb(ti->srb + RETCODE_OFST));
  1209. netif_wake_queue(dev);
  1210. break;
  1211. }
  1212. #if IBMTR_DEBUG_MESSAGES
  1213. #define LINE_ERRORS_OFST                 0
  1214. #define INTERNAL_ERRORS_OFST             1
  1215. #define BURST_ERRORS_OFST                2
  1216. #define AC_ERRORS_OFST                   3
  1217. #define ABORT_DELIMITERS_OFST            4
  1218. #define LOST_FRAMES_OFST                 6
  1219. #define RECV_CONGEST_COUNT_OFST          7
  1220. #define FRAME_COPIED_ERRORS_OFST         8
  1221. #define FREQUENCY_ERRORS_OFST            9
  1222. #define TOKEN_ERRORS_OFST               10
  1223. DPRINTK("Line errors %02X, Internal errors %02X, "
  1224. "Burst errors %02Xn" "A/C errors %02X, "
  1225. "Abort delimiters %02X, Lost frames %02Xn"
  1226. "Receive congestion count %02X, "
  1227. "Frame copied errors %02XnFrequency errors %02X, "
  1228. "Token errors %02Xn",
  1229. (int) readb(ti->srb + LINE_ERRORS_OFST),
  1230. (int) readb(ti->srb + INTERNAL_ERRORS_OFST),
  1231. (int) readb(ti->srb + BURST_ERRORS_OFST),
  1232. (int) readb(ti->srb + AC_ERRORS_OFST),
  1233. (int) readb(ti->srb + ABORT_DELIMITERS_OFST),
  1234. (int) readb(ti->srb + LOST_FRAMES_OFST),
  1235. (int) readb(ti->srb + RECV_CONGEST_COUNT_OFST),
  1236. (int) readb(ti->srb + FRAME_COPIED_ERRORS_OFST),
  1237. (int) readb(ti->srb + FREQUENCY_ERRORS_OFST),
  1238. (int) readb(ti->srb + TOKEN_ERRORS_OFST));
  1239. #endif
  1240. netif_wake_queue(dev);
  1241. break;
  1242. default:
  1243. DPRINTK("Unknown command %02X encounteredn",
  1244. (int) readb(ti->srb));
  1245.          } /* end switch SRB command check */
  1246. writeb(~SRB_RESP_INT, ti->mmio+ ACA_OFFSET+ACA_RESET+ ISRP_ODD);
  1247. } /* if SRB response */
  1248. if (status & ASB_FREE_INT) { /* ASB response */
  1249. SET_PAGE(ti->asb_page);
  1250. #if TR_VERBOSE
  1251. DPRINTK("ASB resp: cmd=%02Xn", readb(ti->asb));
  1252. #endif
  1253. switch (readb(ti->asb)) { /* ASB command check */
  1254. case REC_DATA:
  1255. case XMIT_UI_FRAME:
  1256. case XMIT_DIR_FRAME:
  1257. break;
  1258. default:
  1259. DPRINTK("unknown command in asb %02Xn",
  1260. (int) readb(ti->asb));
  1261. } /* switch ASB command check */
  1262. if (readb(ti->asb + 2) != 0xff) /* checks ret_code */
  1263. DPRINTK("ASB error %02X in cmd %02Xn",
  1264. (int) readb(ti->asb + 2), (int) readb(ti->asb));
  1265. writeb(~ASB_FREE_INT, ti->mmio+ ACA_OFFSET+ACA_RESET+ ISRP_ODD);
  1266. } /* if ASB response */
  1267. #define STATUS_OFST             6
  1268. #define NETW_STATUS_OFST        6
  1269. if (status & ARB_CMD_INT) { /* ARB response */
  1270. SET_PAGE(ti->arb_page);
  1271. #if TR_VERBOSE
  1272. DPRINTK("ARB resp: cmd=%02Xn", readb(ti->arb));
  1273. #endif
  1274. switch (readb(ti->arb)) { /* ARB command check */
  1275. case DLC_STATUS:
  1276. DPRINTK("DLC_STATUS new status: %02X on station %02Xn",
  1277. ntohs(readw(ti->arb + STATUS_OFST)),
  1278. ntohs(readw(ti->arb+ STATION_ID_OFST)));
  1279. break;
  1280. case REC_DATA:
  1281. tr_rx(dev);
  1282. break;
  1283. case RING_STAT_CHANGE:{
  1284. unsigned short ring_status;
  1285. ring_status= ntohs(readw(ti->arb + NETW_STATUS_OFST));
  1286. if (ibmtr_debug_trace & TRC_INIT)
  1287. DPRINTK("Ring Status Change...(0x%x)n",
  1288. ring_status);
  1289. if(ring_status& (REMOVE_RECV|AUTO_REMOVAL|LOBE_FAULT)){
  1290. netif_stop_queue(dev);
  1291. dev->flags &= ~IFF_RUNNING;/*not typical Linux*/
  1292. DPRINTK("Remove received, or Auto-removal error"
  1293. ", or Lobe faultn");
  1294. DPRINTK("We'll try to reopen the closed adapter"
  1295. " after a %d second delay.n",
  1296. TR_RETRY_INTERVAL/HZ);
  1297. /*I was confused: I saw the TR reopening but */
  1298. /*forgot:with an RJ45 in an RJ45/ICS adapter */
  1299. /*but adapter not in the ring, the TR will   */
  1300. /* open, and then soon close and come here.  */
  1301. ti->open_mode = AUTOMATIC;
  1302. ti->open_status = CLOSED; /*12/2000 BMS*/
  1303. ti->open_action = REOPEN;
  1304. ibmtr_reset_timer(&(ti->tr_timer), dev);
  1305. } else if (ring_status & LOG_OVERFLOW) {
  1306. if(netif_queue_stopped(dev))
  1307. ti->readlog_pending = 1;
  1308. else
  1309. ibmtr_readlog(dev);
  1310. }
  1311. break;
  1312.            }
  1313. case XMIT_DATA_REQ:
  1314. tr_tx(dev);
  1315. break;
  1316. default:
  1317. DPRINTK("Unknown command %02X in arbn",
  1318. (int) readb(ti->arb));
  1319. break;
  1320. } /* switch ARB command check */
  1321. writeb(~ARB_CMD_INT, ti->mmio+ ACA_OFFSET+ACA_RESET + ISRP_ODD);
  1322. writeb(ARB_FREE, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1323. } /* if ARB response */
  1324. if (status & SSB_RESP_INT) { /* SSB response */
  1325. unsigned char retcode;
  1326. SET_PAGE(ti->ssb_page);
  1327. #if TR_VERBOSE
  1328. DPRINTK("SSB resp: cmd=%02X rsp=%02Xn",
  1329. readb(ti->ssb), readb(ti->ssb + 2));
  1330. #endif
  1331. switch (readb(ti->ssb)) { /* SSB command check */
  1332. case XMIT_DIR_FRAME:
  1333. case XMIT_UI_FRAME:
  1334. retcode = readb(ti->ssb + 2);
  1335. if (retcode && (retcode != 0x22))/* checks ret_code */
  1336. DPRINTK("xmit ret_code: %02X xmit error code: "
  1337. "%02Xn",
  1338. (int)retcode, (int)readb(ti->ssb + 6));
  1339. else
  1340. ti->tr_stats.tx_packets++;
  1341. break;
  1342. case XMIT_XID_CMD:
  1343. DPRINTK("xmit xid ret_code: %02Xn",
  1344. (int) readb(ti->ssb + 2));
  1345. default:
  1346. DPRINTK("Unknown command %02X in ssbn",
  1347. (int) readb(ti->ssb));
  1348. } /* SSB command check */
  1349. writeb(~SSB_RESP_INT, ti->mmio+ ACA_OFFSET+ACA_RESET+ ISRP_ODD);
  1350. writeb(SSB_FREE, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1351. } /* if SSB response */
  1352. #ifdef ENABLE_PAGING
  1353. writeb(save_srpr, ti->mmio + ACA_OFFSET + ACA_RW + SRPR_EVEN);
  1354. #endif
  1355. writeb(INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_SET + ISRP_EVEN);
  1356. spin_unlock(&(ti->lock));
  1357. } /*tok_interrupt */
  1358. /*****************************************************************************/
  1359. #define INIT_STATUS_OFST        1
  1360. #define INIT_STATUS_2_OFST      2
  1361. #define ENCODED_ADDRESS_OFST    8
  1362. static void initial_tok_int(struct net_device *dev)
  1363. {
  1364. __u32 encoded_addr, hw_encoded_addr;
  1365. struct tok_info *ti;
  1366.         unsigned char init_status; /*BMS 12/2000*/
  1367. ti = (struct tok_info *) dev->priv;
  1368. ti->do_tok_int = NOT_FIRST;
  1369. /* we assign the shared-ram address for ISA devices */
  1370. writeb(ti->sram_base, ti->mmio + ACA_OFFSET + ACA_RW + RRR_EVEN);
  1371. #ifndef PCMCIA
  1372.         ti->sram_virt = (u32)ioremap(((__u32)ti->sram_base << 12), ti->avail_shared_ram);
  1373. #endif
  1374. ti->init_srb = ntohs(readw(ti->mmio + ACA_OFFSET + WRBR_EVEN));
  1375. if (ti->page_mask) {
  1376. ti->init_srb_page = (ti->init_srb >> 8) & ti->page_mask;
  1377. ti->init_srb &= ~(ti->page_mask << 8);
  1378. }
  1379. ti->init_srb += ti->sram_virt;
  1380. if (ti->page_mask && ti->avail_shared_ram == 127) {
  1381. int last_512 = 0xfe00, i;
  1382. int last_512_page=0;
  1383. last_512_page=(last_512>>8)&ti->page_mask;
  1384. last_512 &= ~(ti->page_mask << 8);
  1385. /* initialize high section of ram (if necessary) */
  1386. SET_PAGE(last_512_page);
  1387. for (i = 0; i < 512; i++)
  1388. writeb(0, ti->sram_virt + last_512 + i);
  1389. }
  1390. SET_PAGE(ti->init_srb_page);
  1391. #if TR_VERBOSE
  1392. {
  1393. int i;
  1394. DPRINTK("ti->init_srb_page=0x%xn", ti->init_srb_page);
  1395. DPRINTK("init_srb(%x):", (ti->init_srb) );
  1396. for (i = 0; i < 20; i++)
  1397. printk("%02X ", (int) readb(ti->init_srb + i));
  1398. printk("n");
  1399. }
  1400. #endif
  1401. hw_encoded_addr = readw(ti->init_srb + ENCODED_ADDRESS_OFST);
  1402. encoded_addr = ntohs(hw_encoded_addr);
  1403.         init_status= /*BMS 12/2000 check for shallow mode possibility (Turbo)*/
  1404. readb(ti->init_srb+offsetof(struct srb_init_response,init_status));
  1405. /*printk("Initial interrupt: init_status= 0x%02xn",init_status);*/
  1406. ti->ring_speed = init_status & 0x01 ? 16 : 4;
  1407. DPRINTK("Initial interrupt : %d Mbps, shared RAM base %08x.n",
  1408. ti->ring_speed, (unsigned int)dev->mem_start);
  1409. ti->auto_speedsave=readb(ti->init_srb+INIT_STATUS_2_OFST)&4?TRUE:FALSE;
  1410.         if (ti->open_mode == MANUAL) wake_up(&ti->wait_for_reset);
  1411. else tok_open_adapter((unsigned long)dev);
  1412.         
  1413. } /*initial_tok_int() */
  1414. /*****************************************************************************/
  1415. #define CMD_CORRELATE_OFST      1
  1416. #define DHB_ADDRESS_OFST        6
  1417. #define FRAME_LENGTH_OFST       6
  1418. #define HEADER_LENGTH_OFST      8
  1419. #define RSAP_VALUE_OFST         9
  1420. static void tr_tx(struct net_device *dev)
  1421. {
  1422. struct tok_info *ti = (struct tok_info *) dev->priv;
  1423. struct trh_hdr *trhdr = (struct trh_hdr *) ti->current_skb->data;
  1424. unsigned int hdr_len;
  1425. __u32 dhb=0,dhb_base;
  1426. unsigned char xmit_command;
  1427. int i,dhb_len=0x4000,src_len,src_offset;
  1428. struct trllc *llc;
  1429. struct srb_xmit xsrb;
  1430. __u8 dhb_page = 0;
  1431. __u8 llc_ssap;
  1432. SET_PAGE(ti->asb_page);
  1433. if (readb(ti->asb+RETCODE_OFST) != 0xFF) DPRINTK("ASB not free !!!n");
  1434. /* in providing the transmit interrupts, is telling us it is ready for
  1435.    data and providing a shared memory address for us to stuff with data.
  1436.    Here we compute the effective address where we will place data.
  1437. */
  1438. SET_PAGE(ti->arb_page);
  1439. dhb=dhb_base=ntohs(readw(ti->arb + DHB_ADDRESS_OFST));
  1440. if (ti->page_mask) {
  1441. dhb_page = (dhb_base >> 8) & ti->page_mask;
  1442. dhb=dhb_base & ~(ti->page_mask << 8);
  1443. }
  1444. dhb += ti->sram_virt;
  1445. /* Figure out the size of the 802.5 header */
  1446. if (!(trhdr->saddr[0] & 0x80)) /* RIF present? */
  1447. hdr_len = sizeof(struct trh_hdr) - TR_MAXRIFLEN;
  1448. else
  1449. hdr_len = ((ntohs(trhdr->rcf) & TR_RCF_LEN_MASK) >> 8)
  1450.     + sizeof(struct trh_hdr) - TR_MAXRIFLEN;
  1451. llc = (struct trllc *) (ti->current_skb->data + hdr_len);
  1452. llc_ssap = llc->ssap;
  1453. SET_PAGE(ti->srb_page);
  1454. memcpy_fromio(&xsrb, ti->srb, sizeof(xsrb));
  1455. SET_PAGE(ti->asb_page);
  1456. xmit_command = xsrb.command;
  1457. writeb(xmit_command, ti->asb + COMMAND_OFST);
  1458. writew(xsrb.station_id, ti->asb + STATION_ID_OFST);
  1459. writeb(llc_ssap, ti->asb + RSAP_VALUE_OFST);
  1460. writeb(xsrb.cmd_corr, ti->asb + CMD_CORRELATE_OFST);
  1461. writeb(0, ti->asb + RETCODE_OFST);
  1462. if ((xmit_command == XMIT_XID_CMD) || (xmit_command == XMIT_TEST_CMD)) {
  1463. writew(htons(0x11), ti->asb + FRAME_LENGTH_OFST);
  1464. writeb(0x0e, ti->asb + HEADER_LENGTH_OFST);
  1465. SET_PAGE(dhb_page);
  1466. writeb(AC, dhb);
  1467. writeb(LLC_FRAME, dhb + 1);
  1468. for (i = 0; i < TR_ALEN; i++)
  1469. writeb((int) 0x0FF, dhb + i + 2);
  1470. for (i = 0; i < TR_ALEN; i++)
  1471. writeb(0, dhb + i + TR_ALEN + 2);
  1472. writeb(RESP_IN_ASB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1473. return;
  1474. }
  1475. /*
  1476.  *    the token ring packet is copied from sk_buff to the adapter
  1477.  *    buffer identified in the command data received with the interrupt.
  1478.  */
  1479. writeb(hdr_len, ti->asb + HEADER_LENGTH_OFST);
  1480. writew(htons(ti->current_skb->len), ti->asb + FRAME_LENGTH_OFST);
  1481. src_len=ti->current_skb->len;
  1482. src_offset=0;
  1483. dhb=dhb_base;
  1484. while(1) {
  1485. if (ti->page_mask) {
  1486. dhb_page=(dhb >> 8) & ti->page_mask;
  1487. dhb=dhb & ~(ti->page_mask << 8);
  1488. dhb_len=0x4000-dhb; /* remaining size of this page */
  1489. }
  1490. dhb+=ti->sram_virt;
  1491. SET_PAGE(dhb_page);
  1492. if (src_len > dhb_len) {
  1493. memcpy_toio(dhb,&ti->current_skb->data[src_offset],
  1494. dhb_len);
  1495. src_len -= dhb_len;
  1496. src_offset += dhb_len;
  1497. dhb_base+=dhb_len;
  1498. dhb=dhb_base;
  1499. continue;
  1500. }
  1501. memcpy_toio(dhb, &ti->current_skb->data[src_offset], src_len);
  1502. break;
  1503. }
  1504. writeb(RESP_IN_ASB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1505. ti->tr_stats.tx_bytes += ti->current_skb->len;
  1506. dev_kfree_skb_irq(ti->current_skb);
  1507. ti->current_skb = NULL;
  1508. netif_wake_queue(dev);
  1509. if (ti->readlog_pending)
  1510. ibmtr_readlog(dev);
  1511. } /*tr_tx */
  1512. /*****************************************************************************/
  1513. #define RECEIVE_BUFFER_OFST     6
  1514. #define LAN_HDR_LENGTH_OFST     8
  1515. #define DLC_HDR_LENGTH_OFST     9
  1516. #define DSAP_OFST               0
  1517. #define SSAP_OFST               1
  1518. #define LLC_OFST                2
  1519. #define PROTID_OFST             3
  1520. #define ETHERTYPE_OFST          6
  1521. static void tr_rx(struct net_device *dev)
  1522. {
  1523. struct tok_info *ti = (struct tok_info *) dev->priv;
  1524. __u32 rbuffer, rbufdata;
  1525. __u8 rbuffer_page = 0;
  1526. __u32 llc;
  1527. unsigned char *data;
  1528. unsigned int rbuffer_len, lan_hdr_len, hdr_len, ip_len, length;
  1529. unsigned char dlc_hdr_len;
  1530. struct sk_buff *skb;
  1531. unsigned int skb_size = 0;
  1532. int IPv4_p = 0;
  1533. unsigned int chksum = 0;
  1534. struct iphdr *iph;
  1535. struct arb_rec_req rarb;
  1536. SET_PAGE(ti->arb_page);
  1537. memcpy_fromio(&rarb, ti->arb, sizeof(rarb));
  1538. rbuffer = ntohs(rarb.rec_buf_addr) ;
  1539. if (ti->page_mask) {
  1540. rbuffer_page = (rbuffer >> 8) & ti->page_mask;
  1541. rbuffer &= ~(ti->page_mask << 8);
  1542. }
  1543. rbuffer += ti->sram_virt;
  1544. SET_PAGE(ti->asb_page);
  1545. if (readb(ti->asb + RETCODE_OFST) !=0xFF) DPRINTK("ASB not free !!!n");
  1546. writeb(REC_DATA, ti->asb + COMMAND_OFST);
  1547. writew(rarb.station_id, ti->asb + STATION_ID_OFST);
  1548. writew(rarb.rec_buf_addr, ti->asb + RECEIVE_BUFFER_OFST);
  1549. lan_hdr_len = rarb.lan_hdr_len;
  1550. if (lan_hdr_len > sizeof(struct trh_hdr)) {
  1551. DPRINTK("Linux cannot handle greater than 18 bytes RIFn");
  1552. return;
  1553. } /*BMS I added this above just to be very safe */
  1554. dlc_hdr_len = readb(ti->arb + DLC_HDR_LENGTH_OFST);
  1555. hdr_len = lan_hdr_len + sizeof(struct trllc) + sizeof(struct iphdr);
  1556. SET_PAGE(rbuffer_page);
  1557. llc = (rbuffer + offsetof(struct rec_buf, data) + lan_hdr_len);
  1558. #if TR_VERBOSE
  1559. DPRINTK("offsetof data: %02X lan_hdr_len: %02Xn",
  1560. (__u32) offsetof(struct rec_buf, data), (unsigned int) lan_hdr_len);
  1561. DPRINTK("llc: %08X rec_buf_addr: %04X dev->mem_start: %lXn",
  1562. llc, ntohs(rarb.rec_buf_addr), dev->mem_start);
  1563. DPRINTK("dsap: %02X, ssap: %02X, llc: %02X, protid: %02X%02X%02X, "
  1564. "ethertype: %04Xn",
  1565. (int) readb(llc + DSAP_OFST), (int) readb(llc + SSAP_OFST),
  1566. (int) readb(llc + LLC_OFST), (int) readb(llc + PROTID_OFST),
  1567. (int) readb(llc+PROTID_OFST+1),(int)readb(llc+PROTID_OFST + 2),
  1568. (int) ntohs(readw(llc + ETHERTYPE_OFST)));
  1569. #endif
  1570. if (readb(llc + offsetof(struct trllc, llc)) != UI_CMD) {
  1571. SET_PAGE(ti->asb_page);
  1572. writeb(DATA_LOST, ti->asb + RETCODE_OFST);
  1573. ti->tr_stats.rx_dropped++;
  1574. writeb(RESP_IN_ASB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1575. return;
  1576. }
  1577. length = ntohs(rarb.frame_len);
  1578. if (readb(llc + DSAP_OFST) == EXTENDED_SAP &&
  1579.    readb(llc + SSAP_OFST) == EXTENDED_SAP &&
  1580. length >= hdr_len) IPv4_p = 1;
  1581. #if TR_VERBOSE
  1582. #define SADDR_OFST 8
  1583. #define DADDR_OFST 2
  1584. if (!IPv4_p) {
  1585. __u32 trhhdr;
  1586. trhhdr = (rbuffer + offsetof(struct rec_buf, data));
  1587. DPRINTK("Probably non-IP frame received.n");
  1588. DPRINTK("ssap: %02X dsap: %02X "
  1589. "saddr: %02X:%02X:%02X:%02X:%02X:%02X "
  1590. "daddr: %02X:%02X:%02X:%02X:%02X:%02Xn",
  1591. readb(llc + SSAP_OFST), readb(llc + DSAP_OFST),
  1592. readb(trhhdr+SADDR_OFST), readb(trhhdr+ SADDR_OFST+1),
  1593. readb(trhhdr+SADDR_OFST+2), readb(trhhdr+SADDR_OFST+3),
  1594. readb(trhhdr+SADDR_OFST+4), readb(trhhdr+SADDR_OFST+5),
  1595. readb(trhhdr+DADDR_OFST), readb(trhhdr+DADDR_OFST + 1),
  1596. readb(trhhdr+DADDR_OFST+2), readb(trhhdr+DADDR_OFST+3),
  1597. readb(trhhdr+DADDR_OFST+4), readb(trhhdr+DADDR_OFST+5));
  1598. }
  1599. #endif
  1600. /*BMS handle the case she comes in with few hops but leaves with many */
  1601.         skb_size=length-lan_hdr_len+sizeof(struct trh_hdr)+sizeof(struct trllc);
  1602. if (!(skb = dev_alloc_skb(skb_size))) {
  1603. DPRINTK("out of memory. frame dropped.n");
  1604. ti->tr_stats.rx_dropped++;
  1605. SET_PAGE(ti->asb_page);
  1606. writeb(DATA_LOST, ti->asb + offsetof(struct asb_rec, ret_code));
  1607. writeb(RESP_IN_ASB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1608. return;
  1609. }
  1610. /*BMS again, if she comes in with few but leaves with many */
  1611. skb_reserve(skb, sizeof(struct trh_hdr) - lan_hdr_len);
  1612. skb_put(skb, length);
  1613. skb->dev = dev;
  1614. data = skb->data;
  1615. rbuffer_len = ntohs(readw(rbuffer + offsetof(struct rec_buf, buf_len)));
  1616. rbufdata = rbuffer + offsetof(struct rec_buf, data);
  1617. if (IPv4_p) {
  1618. /* Copy the headers without checksumming */
  1619. memcpy_fromio(data, rbufdata, hdr_len);
  1620. /* Watch for padded packets and bogons */
  1621. iph= (struct iphdr *)(data+ lan_hdr_len + sizeof(struct trllc));
  1622. ip_len = ntohs(iph->tot_len) - sizeof(struct iphdr);
  1623. length -= hdr_len;
  1624. if ((ip_len <= length) && (ip_len > 7))
  1625. length = ip_len;
  1626. data += hdr_len;
  1627. rbuffer_len -= hdr_len;
  1628. rbufdata += hdr_len;
  1629. }
  1630. /* Copy the payload... */
  1631. #define BUFFER_POINTER_OFST 2
  1632. #define BUFFER_LENGTH_OFST      6
  1633. for (;;) {
  1634. if (ibmtr_debug_trace&TRC_INITV && length < rbuffer_len)
  1635. DPRINTK("CURIOUS, length=%d < rbuffer_len=%dn",
  1636. length,rbuffer_len);
  1637. if (IPv4_p)
  1638. chksum=csum_partial_copy_nocheck((void*)rbufdata,
  1639.     data,length<rbuffer_len?length:rbuffer_len,chksum);
  1640. else
  1641. memcpy_fromio(data, rbufdata, rbuffer_len);
  1642. rbuffer = ntohs(readw(rbuffer+BUFFER_POINTER_OFST)) ;
  1643. if (!rbuffer)
  1644. break;
  1645. rbuffer -= 2;
  1646. length -= rbuffer_len;
  1647. data += rbuffer_len;
  1648. if (ti->page_mask) {
  1649. rbuffer_page = (rbuffer >> 8) & ti->page_mask;
  1650. rbuffer &= ~(ti->page_mask << 8);
  1651. }
  1652. rbuffer += ti->sram_virt;
  1653. SET_PAGE(rbuffer_page);
  1654. rbuffer_len = ntohs(readw(rbuffer + BUFFER_LENGTH_OFST));
  1655. rbufdata = rbuffer + offsetof(struct rec_buf, data);
  1656. }
  1657. SET_PAGE(ti->asb_page);
  1658. writeb(0, ti->asb + offsetof(struct asb_rec, ret_code));
  1659. writeb(RESP_IN_ASB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1660. ti->tr_stats.rx_bytes += skb->len;
  1661. ti->tr_stats.rx_packets++;
  1662. skb->protocol = tr_type_trans(skb, dev);
  1663. if (IPv4_p) {
  1664. skb->csum = chksum;
  1665. skb->ip_summed = 1;
  1666. }
  1667. netif_rx(skb);
  1668. dev->last_rx = jiffies;
  1669. } /*tr_rx */
  1670. /*****************************************************************************/
  1671. void ibmtr_reset_timer(struct timer_list *tmr, struct net_device *dev)
  1672. {
  1673. tmr->expires = jiffies + TR_RETRY_INTERVAL;
  1674. tmr->data = (unsigned long) dev;
  1675. tmr->function = tok_rerun;
  1676. init_timer(tmr);
  1677. add_timer(tmr);
  1678. }
  1679. /*****************************************************************************/
  1680. void tok_rerun(unsigned long dev_addr){
  1681. struct net_device *dev = (struct net_device *)dev_addr;
  1682. struct tok_info *ti = (struct tok_info *) dev->priv;
  1683. if ( ti->open_action == RESTART){
  1684. ti->do_tok_int = FIRST_INT;
  1685. outb(0, dev->base_addr + ADAPTRESETREL);
  1686. #ifdef ENABLE_PAGING
  1687. if (ti->page_mask)
  1688. writeb(SRPR_ENABLE_PAGING,
  1689. ti->mmio + ACA_OFFSET + ACA_RW + SRPR_EVEN);
  1690. #endif
  1691. writeb(INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_SET + ISRP_EVEN);
  1692. } else
  1693. tok_open_adapter(dev_addr);
  1694. }
  1695. /*****************************************************************************/
  1696. void ibmtr_readlog(struct net_device *dev)
  1697. {
  1698. struct tok_info *ti;
  1699. ti = (struct tok_info *) dev->priv;
  1700. ti->readlog_pending = 0;
  1701. SET_PAGE(ti->srb_page);
  1702. writeb(DIR_READ_LOG, ti->srb);
  1703. writeb(INT_ENABLE, ti->mmio + ACA_OFFSET + ACA_SET + ISRP_EVEN);
  1704. writeb(CMD_IN_SRB, ti->mmio + ACA_OFFSET + ACA_SET + ISRA_ODD);
  1705. netif_stop_queue(dev);
  1706. }
  1707. /*****************************************************************************/
  1708. /* tok_get_stats():  Basically a scaffold routine which will return
  1709.    the address of the tr_statistics structure associated with
  1710.    this device -- the tr.... structure is an ethnet look-alike
  1711.    so at least for this iteration may suffice.   */
  1712. static struct net_device_stats *tok_get_stats(struct net_device *dev)
  1713. {
  1714. struct tok_info *toki;
  1715. toki = (struct tok_info *) dev->priv;
  1716. return (struct net_device_stats *) &toki->tr_stats;
  1717. }
  1718. /*****************************************************************************/
  1719. int ibmtr_change_mtu(struct net_device *dev, int mtu)
  1720. {
  1721. struct tok_info *ti = (struct tok_info *) dev->priv;
  1722. if (ti->ring_speed == 16 && mtu > ti->maxmtu16)
  1723. return -EINVAL;
  1724. if (ti->ring_speed == 4 && mtu > ti->maxmtu4)
  1725. return -EINVAL;
  1726. dev->mtu = mtu;
  1727. return 0;
  1728. }
  1729. /*****************************************************************************/
  1730. #ifdef MODULE
  1731. /* 3COM 3C619C supports 8 interrupts, 32 I/O ports */
  1732. static struct net_device *dev_ibmtr[IBMTR_MAX_ADAPTERS];
  1733. static int io[IBMTR_MAX_ADAPTERS] = { 0xa20, 0xa24 };
  1734. static int irq[IBMTR_MAX_ADAPTERS];
  1735. static int mem[IBMTR_MAX_ADAPTERS];
  1736. MODULE_LICENSE("GPL");
  1737. MODULE_PARM(io, "1-" __MODULE_STRING(IBMTR_MAX_ADAPTERS) "i");
  1738. MODULE_PARM(irq, "1-" __MODULE_STRING(IBMTR_MAX_ADAPTERS) "i");
  1739. MODULE_PARM(mem, "1-" __MODULE_STRING(IBMTR_MAX_ADAPTERS) "i");
  1740. int init_module(void)
  1741. {
  1742. int i;
  1743. int count=0;
  1744. find_turbo_adapters(io);
  1745. for (i = 0; io[i] && (i < IBMTR_MAX_ADAPTERS); i++) {
  1746. irq[i] = 0;
  1747. mem[i] = 0;
  1748. dev_ibmtr[i] = NULL;
  1749. dev_ibmtr[i] = init_trdev(dev_ibmtr[i], 0);
  1750. if (dev_ibmtr[i] == NULL) { 
  1751. if (i==0)
  1752. return -ENOMEM;
  1753. break ; 
  1754. }
  1755. dev_ibmtr[i]->base_addr = io[i];
  1756. dev_ibmtr[i]->irq = irq[i];
  1757. dev_ibmtr[i]->mem_start = mem[i];
  1758. dev_ibmtr[i]->init = &ibmtr_probe;
  1759. if (register_trdev(dev_ibmtr[i]) != 0) {
  1760. kfree(dev_ibmtr[i]);
  1761. dev_ibmtr[i] = NULL;
  1762. continue;
  1763. }
  1764. count++;
  1765. }
  1766. if (count) return 0;
  1767. printk("ibmtr: register_trdev() returned non-zero.n");
  1768. return -EIO;
  1769. } /*init_module */
  1770. void cleanup_module(void)
  1771. {
  1772. int i,j;
  1773. for (i = 0; i < IBMTR_MAX_ADAPTERS; i++){
  1774. if(!dev_ibmtr[i]) continue;
  1775. if (dev_ibmtr[i]->base_addr) {
  1776. outb(0,dev_ibmtr[i]->base_addr+ADAPTRESET);
  1777. for(j=jiffies+TR_RST_TIME;
  1778. time_before_eq(jiffies,j);) ;
  1779.                         outb(0,dev_ibmtr[i]->base_addr+ADAPTRESETREL);
  1780.                 }
  1781. unregister_trdev(dev_ibmtr[i]);
  1782. free_irq(dev_ibmtr[i]->irq, dev_ibmtr[i]);
  1783. release_region(dev_ibmtr[i]->base_addr, IBMTR_IO_EXTENT);
  1784. #ifndef PCMCIA
  1785. struct tok_info *ti = (struct tok_info *)dev_ibmtr[i]->priv ; 
  1786. iounmap((u32 *)ti->mmio) ; 
  1787. iounmap((u32 *)ti->sram_virt) ; 
  1788. }
  1789. #endif
  1790. kfree(dev_ibmtr[i]->priv);
  1791. kfree(dev_ibmtr[i]);
  1792. dev_ibmtr[i] = NULL;
  1793. }
  1794. }
  1795. #endif /* MODULE */