rioinit.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:42k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** -----------------------------------------------------------------------------
  3. **
  4. **  Perle Specialix driver for Linux
  5. **  Ported from existing RIO Driver for SCO sources.
  6.  *
  7.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  8.  *
  9.  *      This program is free software; you can redistribute it and/or modify
  10.  *      it under the terms of the GNU General Public License as published by
  11.  *      the Free Software Foundation; either version 2 of the License, or
  12.  *      (at your option) any later version.
  13.  *
  14.  *      This program is distributed in the hope that it will be useful,
  15.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *      GNU General Public License for more details.
  18.  *
  19.  *      You should have received a copy of the GNU General Public License
  20.  *      along with this program; if not, write to the Free Software
  21.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. **
  23. ** Module : rioinit.c
  24. ** SID : 1.3
  25. ** Last Modified : 11/6/98 10:33:43
  26. ** Retrieved : 11/6/98 10:33:49
  27. **
  28. **  ident @(#)rioinit.c 1.3
  29. **
  30. ** -----------------------------------------------------------------------------
  31. */
  32. #ifdef SCCS_LABELS
  33. static char *_rioinit_c_sccs_ = "@(#)rioinit.c 1.3";
  34. #endif
  35. #define __NO_VERSION__
  36. #include <linux/config.h>
  37. #include <linux/module.h>
  38. #include <linux/slab.h>
  39. #include <linux/errno.h>
  40. #include <asm/io.h>
  41. #include <asm/system.h>
  42. #include <asm/string.h>
  43. #include <asm/semaphore.h>
  44. #include <asm/uaccess.h>
  45. #include <linux/termios.h>
  46. #include <linux/serial.h>
  47. #include <linux/compatmac.h>
  48. #include <linux/generic_serial.h>
  49. #include "linux_compat.h"
  50. #include "typdef.h"
  51. #include "pkt.h"
  52. #include "daemon.h"
  53. #include "rio.h"
  54. #include "riospace.h"
  55. #include "top.h"
  56. #include "cmdpkt.h"
  57. #include "map.h"
  58. #include "riotypes.h"
  59. #include "rup.h"
  60. #include "port.h"
  61. #include "riodrvr.h"
  62. #include "rioinfo.h"
  63. #include "func.h"
  64. #include "errors.h"
  65. #include "pci.h"
  66. #include "parmmap.h"
  67. #include "unixrup.h"
  68. #include "board.h"
  69. #include "host.h"
  70. #include "error.h"
  71. #include "phb.h"
  72. #include "link.h"
  73. #include "cmdblk.h"
  74. #include "route.h"
  75. #include "control.h"
  76. #include "cirrus.h"
  77. #include "rioioctl.h"
  78. #include "rio_linux.h"
  79. #undef bcopy
  80. #define bcopy rio_pcicopy
  81. int
  82. RIOPCIinit(struct rio_info *p, int Mode);
  83. #if 0
  84. extern int rio_intr();
  85. /*
  86. ** Init time code.
  87. */
  88. void
  89. rioinit( p, info )
  90. struct rio_info * p;
  91. struct RioHostInfo * info;
  92. {
  93. /*
  94. ** Multi-Host card support - taking the easy way out - sorry !
  95. ** We allocate and set up the Host and Port structs when the
  96. ** driver is called to 'install' the first host.
  97. ** We check for this first 'call' by testing the RIOPortp pointer.
  98. */
  99. if ( !p->RIOPortp )
  100. {
  101. rio_dprintk (RIO_DEBUG_INIT,  "Allocating and setting up driver data structuresn");
  102. RIOAllocDataStructs(p); /* allocate host/port structs */
  103. RIOSetupDataStructs(p); /* setup topology structs */
  104. }
  105. RIOInitHosts( p, info ); /* hunt down the hardware */
  106. RIOAllocateInterrupts(p); /* allocate interrupts */
  107. RIOReport(p); /* show what we found */
  108. }
  109. /*
  110. ** Initialise the Cards 
  111. */ 
  112. void
  113. RIOInitHosts(p, info)
  114. struct rio_info * p;
  115. struct RioHostInfo * info;
  116. {
  117. /*
  118. ** 15.10.1998 ARG - ESIL 0762 part fix
  119. ** If there is no ISA card definition - we always look for PCI cards.
  120. ** As we currently only support one host card this lets an ISA card
  121. ** definition take precedence over PLUG and PLAY.
  122. ** No ISA card - we are PLUG and PLAY with PCI.
  123. */
  124. /*
  125. ** Note - for PCI both these will be zero, that's okay because
  126. ** RIOPCIInit() fills them in if a card is found.
  127. */
  128. p->RIOHosts[p->RIONumHosts].Ivec = info->vector;
  129. p->RIOHosts[p->RIONumHosts].PaddrP = info->location;
  130. /*
  131. ** Check that we are able to accomodate another host
  132. */
  133. if ( p->RIONumHosts >= RIO_HOSTS )
  134. {
  135. p->RIOFailed++;
  136. return;
  137. }
  138. if ( info->bus & ISA_BUS )
  139. {
  140. rio_dprintk (RIO_DEBUG_INIT,  "initialising card %d (ISA)n", p->RIONumHosts);
  141. RIOISAinit(p, p->mode);
  142. }
  143. else
  144. {
  145. rio_dprintk (RIO_DEBUG_INIT,  "initialising card %d (PCI)n", p->RIONumHosts);
  146. RIOPCIinit(p, RIO_PCI_DEFAULT_MODE);
  147. }
  148. rio_dprintk (RIO_DEBUG_INIT,  "Total hosts initialised so far : %dn", p->RIONumHosts);
  149. #ifdef FUTURE_RELEASE
  150. if (p->bus & EISA_BUS)
  151. /* EISA card */
  152. RIOEISAinit(p, RIO_EISA_DEFAULT_MODE);
  153. if (p->bus & MCA_BUS)
  154. /* MCA card */
  155. RIOMCAinit(p, RIO_MCA_DEFAULT_MODE);
  156. #endif
  157. }
  158. /*
  159. ** go through memory for an AT host that we pass in the device info
  160. ** structure and initialise
  161. */
  162. void
  163. RIOISAinit(p, mode)
  164. struct rio_info * p;
  165. int mode;
  166. {
  167.   /* XXX Need to implement this. */
  168. #if 0
  169. p->intr_tid = iointset(p->RIOHosts[p->RIONumHosts].Ivec,
  170. (int (*)())rio_intr, (char*)p->RIONumHosts);
  171. rio_dprintk (RIO_DEBUG_INIT,  "Set interrupt handler, intr_tid = 0x%xn", p->intr_tid );
  172. if (RIODoAT(p, p->RIOHosts[p->RIONumHosts].PaddrP, mode)) {
  173. return;
  174. }
  175. else {
  176. rio_dprintk (RIO_DEBUG_INIT, "RIODoAT failedn");
  177. p->RIOFailed++;
  178. }
  179. #endif
  180. }
  181. /*
  182. ** RIODoAT :
  183. **
  184. ** Map in a boards physical address, check that the board is there,
  185. ** test the board and if everything is okay assign the board an entry
  186. ** in the Rio Hosts structure.
  187. */
  188. int
  189. RIODoAT(p, Base, mode)
  190. struct rio_info * p;
  191. int Base;
  192. int mode;
  193. {
  194. #define FOUND 1
  195. #define NOT_FOUND 0
  196. caddr_t cardAddr;
  197. /*
  198. ** Check to see if we actually have a board at this physical address.
  199. */
  200. if ((cardAddr = RIOCheckForATCard(Base)) != 0) {
  201. /*
  202. ** Now test the board to see if it is working.
  203. */
  204. if (RIOBoardTest(Base, cardAddr, RIO_AT, 0) == RIO_SUCCESS) {
  205. /*
  206. ** Fill out a slot in the Rio host structure.
  207. */
  208. if (RIOAssignAT(p, Base, cardAddr, mode)) {
  209. return(FOUND);
  210. }
  211. }
  212. RIOMapout(Base, RIO_AT_MEM_SIZE, cardAddr);
  213. }
  214. return(NOT_FOUND);
  215. }
  216. caddr_t
  217. RIOCheckForATCard(Base)
  218. int Base;
  219. {
  220. int off;
  221. struct DpRam *cardp; /* (Points at the host) */
  222. caddr_t virtAddr;
  223. unsigned char RIOSigTab[24];
  224. /*
  225. ** Table of values to search for as prom signature of a host card
  226. */
  227. strcpy(RIOSigTab, "JBJGPGGHINSMJPJR");
  228. /*
  229. ** Hey! Yes, You reading this code! Yo, grab a load a this:
  230. **
  231. ** IF the card is using WORD MODE rather than BYTE MODE
  232. ** then it will occupy 128K of PHYSICAL memory area. So,
  233. ** you might think that the following Mapin is wrong. Well,
  234. ** it isn't, because the SECOND 64K of occupied space is an
  235. ** EXACT COPY of the FIRST 64K. (good?), so, we need only
  236. ** map it in in one 64K block.
  237. */
  238. if (RIOMapin(Base, RIO_AT_MEM_SIZE, &virtAddr) == -1) {
  239. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Couldn't map the board in!n");
  240. return((caddr_t)0);
  241. }
  242. /*
  243. ** virtAddr points to the DP ram of the system.
  244. ** We now cast this to a pointer to a RIO Host,
  245. ** and have a rummage about in the PROM.
  246. */
  247. cardp = (struct DpRam *)virtAddr;
  248. for (off=0; RIOSigTab[off]; off++) {
  249. if ((RBYTE(cardp->DpSignature[off]) & 0xFF) != RIOSigTab[off]) {
  250. /*
  251. ** Signature mismatch - card not at this address
  252. */
  253. RIOMapout(Base, RIO_AT_MEM_SIZE, virtAddr);
  254. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Couldn't match the signature 0x%x 0x%x!n",
  255. (int)cardp, off);
  256. return((caddr_t)0);
  257. }
  258. }
  259. /*
  260. ** If we get here then we must have found a valid board so return
  261. ** its virtual address.
  262. */
  263. return(virtAddr);
  264. }
  265. #endif
  266. /**
  267. ** RIOAssignAT :
  268. **
  269. ** Fill out the fields in the p->RIOHosts structure now we know we know
  270. ** we have a board present.
  271. **
  272. ** bits < 0 indicates 8 bit operation requested,
  273. ** bits > 0 indicates 16 bit operation.
  274. */
  275. int
  276. RIOAssignAT(p, Base, virtAddr, mode)
  277. struct rio_info * p;
  278. int Base;
  279. caddr_t virtAddr;
  280. int mode;
  281. {
  282. int bits;
  283. struct DpRam *cardp = (struct DpRam *)virtAddr;
  284. if ((Base < ONE_MEG) || (mode & BYTE_ACCESS_MODE))
  285. bits = BYTE_OPERATION;
  286. else
  287. bits = WORD_OPERATION;
  288. /*
  289. ** Board has passed its scrub test. Fill in all the
  290. ** transient stuff.
  291. */
  292. p->RIOHosts[p->RIONumHosts].Caddr = virtAddr;
  293. p->RIOHosts[p->RIONumHosts].CardP = (struct DpRam *)virtAddr;
  294. /*
  295. ** Revision 01 AT host cards don't support WORD operations,
  296. */
  297. if ( RBYTE(cardp->DpRevision) == 01 )
  298. bits = BYTE_OPERATION;
  299. p->RIOHosts[p->RIONumHosts].Type = RIO_AT;
  300. p->RIOHosts[p->RIONumHosts].Copy = bcopy;
  301. /* set this later */
  302. p->RIOHosts[p->RIONumHosts].Slot = -1;
  303. p->RIOHosts[p->RIONumHosts].Mode = SLOW_LINKS | SLOW_AT_BUS | bits;
  304. WBYTE(p->RIOHosts[p->RIONumHosts].Control, 
  305. BOOT_FROM_RAM | EXTERNAL_BUS_OFF | 
  306. p->RIOHosts[p->RIONumHosts].Mode | 
  307. INTERRUPT_DISABLE );
  308. WBYTE(p->RIOHosts[p->RIONumHosts].ResetInt,0xff);
  309. WBYTE(p->RIOHosts[p->RIONumHosts].Control,
  310. BOOT_FROM_RAM | EXTERNAL_BUS_OFF | 
  311. p->RIOHosts[p->RIONumHosts].Mode |
  312. INTERRUPT_DISABLE );
  313. WBYTE(p->RIOHosts[p->RIONumHosts].ResetInt,0xff);
  314. p->RIOHosts[p->RIONumHosts].UniqueNum =
  315. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[0])&0xFF)<<0)|
  316. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[1])&0xFF)<<8)|
  317. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[2])&0xFF)<<16)|
  318. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[3])&0xFF)<<24);
  319. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Uniquenum 0x%xn",p->RIOHosts[p->RIONumHosts].UniqueNum);
  320. p->RIONumHosts++;
  321. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Tests Passed at 0x%xn", Base);
  322. return(1);
  323. }
  324. #if 0
  325. #ifdef FUTURE_RELEASE
  326. int RIOMCAinit(int Mode)
  327. {
  328. uchar SlotNumber;
  329. caddr_t Caddr;
  330. uint Paddr;
  331. uint Ivec;
  332. int  Handle;
  333. int  ret = 0;
  334. /*
  335. ** Valid mode information for MCA cards
  336. ** is only FAST LINKS
  337. */
  338. Mode = (Mode & FAST_LINKS) ? McaTpFastLinks : McaTpSlowLinks;
  339. rio_dprintk (RIO_DEBUG_INIT, "RIOMCAinit(%d)n",Mode);
  340. /*
  341. ** Check out each of the slots
  342. */
  343. for (SlotNumber = 0; SlotNumber < McaMaxSlots; SlotNumber++) {
  344. /*
  345. ** Enable the slot we want to talk to
  346. */
  347. outb( McaSlotSelect, SlotNumber | McaSlotEnable );
  348. /*
  349. ** Read the ID word from the slot
  350. */
  351. if (((inb(McaIdHigh)<< 8)|inb(McaIdLow)) == McaRIOId)
  352. {
  353. rio_dprintk (RIO_DEBUG_INIT, "Potential MCA card in slot %dn", SlotNumber);
  354. /*
  355. ** Card appears to be a RIO MCA card!
  356. */
  357. RIOMachineType |= (1<<RIO_MCA);
  358. /*
  359. ** Just check we haven't found too many wonderful objects
  360. */
  361. if ( RIONumHosts >= RIO_HOSTS )
  362. {
  363. Rprintf(RIOMesgTooManyCards);
  364. return(ret);
  365. }
  366. /*
  367. ** McaIrqEnable contains the interrupt vector, and a card
  368. ** enable bit.
  369. */
  370. Ivec = inb(McaIrqEnable);
  371. rio_dprintk (RIO_DEBUG_INIT, "Ivec is %xn", Ivec);
  372. switch ( Ivec & McaIrqMask )
  373. {
  374. case McaIrq9:
  375. rio_dprintk (RIO_DEBUG_INIT, "IRQ9n");
  376. break;
  377. case McaIrq3:
  378. rio_dprintk (RIO_DEBUG_INIT, "IRQ3n");
  379. break;
  380. case McaIrq4:
  381. rio_dprintk (RIO_DEBUG_INIT, "IRQ4n");
  382. break;
  383. case McaIrq7:
  384. rio_dprintk (RIO_DEBUG_INIT, "IRQ7n");
  385. break;
  386. case McaIrq10:
  387. rio_dprintk (RIO_DEBUG_INIT, "IRQ10n");
  388. break;
  389. case McaIrq11:
  390. rio_dprintk (RIO_DEBUG_INIT, "IRQ11n");
  391. break;
  392. case McaIrq12:
  393. rio_dprintk (RIO_DEBUG_INIT, "IRQ12n");
  394. break;
  395. case McaIrq15:
  396. rio_dprintk (RIO_DEBUG_INIT, "IRQ15n");
  397. break;
  398. }
  399. /*
  400. ** If the card enable bit isn't set, then set it!
  401. */
  402. if ((Ivec & McaCardEnable) != McaCardEnable) {
  403. rio_dprintk (RIO_DEBUG_INIT, "McaCardEnable not set - setting!n");
  404. outb(McaIrqEnable,Ivec|McaCardEnable);
  405. } else
  406. rio_dprintk (RIO_DEBUG_INIT, "McaCardEnable already setn");
  407. /*
  408. ** Convert the IRQ enable mask into something useful
  409. */
  410. Ivec = RIOMcaToIvec[Ivec & McaIrqMask];
  411. /*
  412. ** Find the physical address
  413. */
  414. rio_dprintk (RIO_DEBUG_INIT, "inb(McaMemory) is %xn", inb(McaMemory));
  415. Paddr = McaAddress(inb(McaMemory));
  416. rio_dprintk (RIO_DEBUG_INIT, "MCA card has Ivec %d Addr %xn", Ivec, Paddr);
  417. if ( Paddr != 0 )
  418. {
  419. /*
  420. ** Tell the memory mapper that we want to talk to it
  421. */
  422. Handle = RIOMapin( Paddr, RIO_MCA_MEM_SIZE, &Caddr );
  423. if ( Handle == -1 ) {
  424. rio_dprintk (RIO_DEBUG_INIT, "Couldn't map %d bytes at %xn", RIO_MCA_MEM_SIZE, Paddr;
  425. continue;
  426. }
  427. rio_dprintk (RIO_DEBUG_INIT, "Board mapped to vaddr 0x%xn", Caddr);
  428. /*
  429. ** And check that it is actually there!
  430. */
  431. if ( RIOBoardTest( Paddr,Caddr,RIO_MCA,SlotNumber ) == RIO_SUCCESS )
  432. {
  433. rio_dprintk (RIO_DEBUG_INIT, "Board has passed testn");
  434. rio_dprintk (RIO_DEBUG_INIT, "Slot %d. Type %d. Paddr 0x%x. Caddr 0x%x. Mode 0x%x.n",
  435.                             SlotNumber, RIO_MCA, Paddr, Caddr, Mode);
  436. /*
  437. ** Board has passed its scrub test. Fill in all the
  438. ** transient stuff.
  439. */
  440. p->RIOHosts[RIONumHosts].Slot  = SlotNumber;
  441. p->RIOHosts[RIONumHosts].Ivec  = Ivec;
  442. p->RIOHosts[RIONumHosts].Type  = RIO_MCA;
  443. p->RIOHosts[RIONumHosts].Copy  = bcopy;
  444. p->RIOHosts[RIONumHosts].PaddrP   = Paddr;
  445. p->RIOHosts[RIONumHosts].Caddr = Caddr;
  446. p->RIOHosts[RIONumHosts].CardP = (struct DpRam *)Caddr;
  447. p->RIOHosts[RIONumHosts].Mode  = Mode;
  448. WBYTE(p->RIOHosts[p->RIONumHosts].ResetInt , 0xff);
  449. p->RIOHosts[RIONumHosts].UniqueNum =
  450. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[0])&0xFF)<<0)|
  451. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[1])&0xFF)<<8)|
  452. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[2])&0xFF)<<16)|
  453. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[3])&0xFF)<<24);
  454. RIONumHosts++;
  455. ret++;
  456. }
  457. else
  458. {
  459. /*
  460. ** It failed the test, so ignore it.
  461. */
  462. rio_dprintk (RIO_DEBUG_INIT, "TEST FAILEDn");
  463. RIOMapout(Paddr, RIO_MCA_MEM_SIZE, Caddr );
  464. }
  465. }
  466. else
  467. {
  468. rio_dprintk (RIO_DEBUG_INIT, "Slot %d - Paddr zero!n", SlotNumber);
  469. }
  470. }
  471. else
  472. {
  473. rio_dprintk (RIO_DEBUG_INIT, "Slot %d NOT RIOn", SlotNumber);
  474. }
  475. }
  476. /*
  477. ** Now we have checked all the slots, turn off the MCA slot selector
  478. */
  479. outb(McaSlotSelect,0);
  480. rio_dprintk (RIO_DEBUG_INIT, "Slot %d NOT RIOn", SlotNumber);
  481. return ret;
  482. }
  483. int RIOEISAinit( int Mode )
  484. {
  485. static int EISADone = 0;
  486. uint Paddr;
  487. int PollIntMixMsgDone = 0;
  488. caddr_t Caddr;
  489. ushort Ident;
  490. uchar EisaSlot;
  491. uchar Ivec;
  492. int ret = 0;
  493. /*
  494. ** The only valid mode information for EISA hosts is fast or slow
  495. ** links.
  496. */
  497. Mode = (Mode & FAST_LINKS) ? EISA_TP_FAST_LINKS : EISA_TP_SLOW_LINKS;
  498. if ( EISADone )
  499. {
  500. rio_dprintk (RIO_DEBUG_INIT, "RIOEISAinit() - already done, return.n");
  501. return(0);
  502. }
  503. EISADone++;
  504. rio_dprintk (RIO_DEBUG_INIT, "RIOEISAinit()n");
  505. /*
  506. ** First check all cards to see if ANY are set for polled mode operation.
  507. ** If so, set ALL to polled.
  508. */
  509. for ( EisaSlot=1; EisaSlot<=RIO_MAX_EISA_SLOTS; EisaSlot++ )
  510. {
  511. Ident = (INBZ(EisaSlot,EISA_PRODUCT_IDENT_HI)<<8) |
  512.  INBZ(EisaSlot,EISA_PRODUCT_IDENT_LO);
  513. if ( Ident == RIO_EISA_IDENT )
  514. {
  515. rio_dprintk (RIO_DEBUG_INIT, "Found Specialix productn");
  516. if ( INBZ(EisaSlot,EISA_PRODUCT_NUMBER) != RIO_EISA_PRODUCT_CODE )
  517. {
  518. rio_dprintk (RIO_DEBUG_INIT, "Not Specialix RIO - Product number %xn",
  519. INBZ(EisaSlot, EISA_PRODUCT_NUMBER));
  520. continue;  /* next slot */
  521. }
  522. /*
  523. ** Its a Specialix RIO!
  524. */
  525. rio_dprintk (RIO_DEBUG_INIT, "RIO Revision %dn",
  526. INBZ(EisaSlot, EISA_REVISION_NUMBER));
  527. RIOMachineType |= (1<<RIO_EISA);
  528. /*
  529. ** Just check we haven't found too many wonderful objects
  530. */
  531. if ( RIONumHosts >= RIO_HOSTS )
  532. {
  533. Rprintf(RIOMesgTooManyCards);
  534. return 0;
  535. }
  536. /*
  537. ** Ensure that the enable bit is set!
  538. */
  539. OUTBZ( EisaSlot, EISA_ENABLE, RIO_EISA_ENABLE_BIT );
  540. /*
  541. ** EISA_INTERRUPT_VEC contains the interrupt vector.
  542. */
  543. Ivec = INBZ(EisaSlot,EISA_INTERRUPT_VEC);
  544. #ifdef RIODEBUG
  545. switch ( Ivec & EISA_INTERRUPT_MASK )
  546. {
  547. case EISA_IRQ_3:
  548. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 3n");
  549. break;
  550. case EISA_IRQ_4:
  551. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 4n");
  552. break;
  553. case EISA_IRQ_5:
  554. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 5n");
  555. break;
  556. case EISA_IRQ_6:
  557. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 6n");
  558. break;
  559. case EISA_IRQ_7:
  560. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 7n");
  561. break;
  562. case EISA_IRQ_9:
  563. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 9n");
  564. break;
  565. case EISA_IRQ_10:
  566. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 10n");
  567. break;
  568. case EISA_IRQ_11:
  569. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 11n");
  570. break;
  571. case EISA_IRQ_12:
  572. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 12n");
  573. break;
  574. case EISA_IRQ_14:
  575. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 14n");
  576. break;
  577. case EISA_IRQ_15:
  578. rio_dprintk (RIO_DEBUG_INIT, "EISA IRQ 15n");
  579. break;
  580. case EISA_POLLED:
  581. rio_dprintk (RIO_DEBUG_INIT, "EISA POLLEDn");
  582. break;
  583. default:
  584. rio_dprintk (RIO_DEBUG_INIT, NULL,DBG_INIT|DBG_FAIL,"Shagged interrupt number!n");
  585. Ivec &= EISA_CONTROL_MASK;
  586. }
  587. #endif
  588. if ( (Ivec & EISA_INTERRUPT_MASK) ==
  589.  EISA_POLLED )
  590. {
  591. RIOWillPoll = 1;
  592. break; /* From EisaSlot loop */
  593. }
  594. }
  595. }
  596. /*
  597. ** Do it all again now we know whether to change all cards to polled
  598. ** mode or not
  599. */
  600. for ( EisaSlot=1; EisaSlot<=RIO_MAX_EISA_SLOTS; EisaSlot++ )
  601. {
  602. Ident = (INBZ(EisaSlot,EISA_PRODUCT_IDENT_HI)<<8) |
  603.  INBZ(EisaSlot,EISA_PRODUCT_IDENT_LO);
  604. if ( Ident == RIO_EISA_IDENT )
  605. {
  606. if ( INBZ(EisaSlot,EISA_PRODUCT_NUMBER) != RIO_EISA_PRODUCT_CODE )
  607. continue;  /* next slot */
  608. /*
  609. ** Its a Specialix RIO!
  610. */
  611. /*
  612. ** Ensure that the enable bit is set!
  613. */
  614. OUTBZ( EisaSlot, EISA_ENABLE, RIO_EISA_ENABLE_BIT );
  615. /*
  616. ** EISA_INTERRUPT_VEC contains the interrupt vector.
  617. */
  618. Ivec = INBZ(EisaSlot,EISA_INTERRUPT_VEC);
  619. if ( RIOWillPoll )
  620. {
  621. /*
  622. ** If we are going to operate in polled mode, but this
  623. ** board is configured to be interrupt driven, display
  624. ** the message explaining the situation to the punter,
  625. ** assuming we haven't already done so.
  626. */
  627. if ( !PollIntMixMsgDone &&
  628.  (Ivec & EISA_INTERRUPT_MASK) != EISA_POLLED )
  629. {
  630. Rprintf(RIOMesgAllPolled);
  631. PollIntMixMsgDone = 1;
  632. }
  633. /*
  634. ** Ungraciously ignore whatever the board reports as its
  635. ** interrupt vector...
  636. */
  637. Ivec &= ~EISA_INTERRUPT_MASK;
  638. /*
  639. ** ...and force it to dance to the poll tune.
  640. */
  641. Ivec |= EISA_POLLED;
  642. }
  643. /*
  644. ** Convert the IRQ enable mask into something useful (0-15)
  645. */
  646. Ivec = RIOEisaToIvec(Ivec);
  647. rio_dprintk (RIO_DEBUG_INIT, "EISA host in slot %d has Ivec 0x%xn",
  648.  EisaSlot, Ivec);
  649. /*
  650. ** Find the physical address
  651. */
  652. Paddr = (INBZ(EisaSlot,EISA_MEMORY_BASE_HI)<<24) |
  653. (INBZ(EisaSlot,EISA_MEMORY_BASE_LO)<<16);
  654. rio_dprintk (RIO_DEBUG_INIT, "EISA card has Ivec %d Addr %xn", Ivec, Paddr);
  655. if ( Paddr == 0 )
  656. {
  657. rio_dprintk (RIO_DEBUG_INIT,
  658.  "Board in slot %d configured for address zero!n", EisaSlot);
  659. continue;
  660. }
  661. /*
  662. ** Tell the memory mapper that we want to talk to it
  663. */
  664. rio_dprintk (RIO_DEBUG_INIT, "About to map EISA card n");
  665. if (RIOMapin( Paddr, RIO_EISA_MEM_SIZE, &Caddr) == -1) {
  666. rio_dprintk (RIO_DEBUG_INIT, "Couldn't map %d bytes at %xn",
  667. RIO_EISA_MEM_SIZE,Paddr);
  668. continue;
  669. }
  670. rio_dprintk (RIO_DEBUG_INIT, "Board mapped to vaddr 0x%xn", Caddr);
  671. /*
  672. ** And check that it is actually there!
  673. */
  674. if ( RIOBoardTest( Paddr,Caddr,RIO_EISA,EisaSlot) == RIO_SUCCESS )
  675. {
  676. rio_dprintk (RIO_DEBUG_INIT, "Board has passed testn");
  677. rio_dprintk (RIO_DEBUG_INIT, 
  678. "Slot %d. Ivec %d. Type %d. Paddr 0x%x. Caddr 0x%x. Mode 0x%x.n",
  679. EisaSlot,Ivec,RIO_EISA,Paddr,Caddr,Mode);
  680. /*
  681. ** Board has passed its scrub test. Fill in all the
  682. ** transient stuff.
  683. */
  684. p->RIOHosts[RIONumHosts].Slot  = EisaSlot;
  685. p->RIOHosts[RIONumHosts].Ivec  = Ivec;
  686. p->RIOHosts[RIONumHosts].Type  = RIO_EISA;
  687. p->RIOHosts[RIONumHosts].Copy  = bcopy;
  688. p->RIOHosts[RIONumHosts].PaddrP   = Paddr;
  689. p->RIOHosts[RIONumHosts].Caddr = Caddr;
  690. p->RIOHosts[RIONumHosts].CardP = (struct DpRam *)Caddr;
  691. p->RIOHosts[RIONumHosts].Mode  = Mode;
  692. /*
  693. ** because the EISA prom is mapped into IO space, we
  694. ** need to copy the unqiue number into the memory area
  695. ** that it would have occupied, so that the download
  696. ** code can determine its ID and card type.
  697. */
  698.  WBYTE(p->RIOHosts[RIONumHosts].Unique[0],INBZ(EisaSlot,EISA_UNIQUE_NUM_0));
  699.  WBYTE(p->RIOHosts[RIONumHosts].Unique[1],INBZ(EisaSlot,EISA_UNIQUE_NUM_1));
  700.  WBYTE(p->RIOHosts[RIONumHosts].Unique[2],INBZ(EisaSlot,EISA_UNIQUE_NUM_2));
  701.  WBYTE(p->RIOHosts[RIONumHosts].Unique[3],INBZ(EisaSlot,EISA_UNIQUE_NUM_3));
  702. p->RIOHosts[RIONumHosts].UniqueNum =
  703. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[0])&0xFF)<<0)|
  704. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[1])&0xFF)<<8)|
  705. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[2])&0xFF)<<16)|
  706. ((RBYTE(p->RIOHosts[RIONumHosts].Unique[3])&0xFF)<<24);
  707. INBZ(EisaSlot,EISA_INTERRUPT_RESET);
  708. RIONumHosts++;
  709. ret++;
  710. }
  711. else
  712. {
  713. /*
  714. ** It failed the test, so ignore it.
  715. */
  716. rio_dprintk (RIO_DEBUG_INIT, "TEST FAILEDn");
  717. RIOMapout(Paddr, RIO_EISA_MEM_SIZE, Caddr );
  718. }
  719. }
  720. }
  721. if (RIOMachineType & RIO_EISA)
  722. return ret+1;
  723. return ret;
  724. }
  725. #endif
  726. #ifndef linux
  727. #define CONFIG_ADDRESS 0xcf8
  728. #define CONFIG_DATA 0xcfc
  729. #define FORWARD_REG 0xcfa
  730. static int
  731. read_config(int bus_number, int device_num, int r_number) 
  732. {
  733. unsigned int cav;
  734. unsigned int val;
  735. /*
  736.    Build config_address_value:
  737.       31        24 23        16 15      11 10  8 7        0 
  738.       ------------------------------------------------------
  739.       |1| 0000000 | bus_number | device # | 000 | register |
  740.       ------------------------------------------------------
  741. */
  742. cav = r_number & 0xff;
  743. cav |= ((device_num & 0x1f) << 11);
  744. cav |= ((bus_number & 0xff) << 16);
  745. cav |= 0x80000000; /* Enable bit */
  746. outpd(CONFIG_ADDRESS,cav);
  747. val = inpd(CONFIG_DATA);
  748. outpd(CONFIG_ADDRESS,0);
  749. return val;
  750. }
  751. static
  752. write_config(bus_number,device_num,r_number,val) 
  753. {
  754. unsigned int cav;
  755. /*
  756.    Build config_address_value:
  757.       31        24 23        16 15      11 10  8 7        0 
  758.       ------------------------------------------------------
  759.       |1| 0000000 | bus_number | device # | 000 | register |
  760.       ------------------------------------------------------
  761. */
  762. cav = r_number & 0xff;
  763. cav |= ((device_num & 0x1f) << 11);
  764. cav |= ((bus_number & 0xff) << 16);
  765. cav |= 0x80000000; /* Enable bit */
  766. outpd(CONFIG_ADDRESS, cav);
  767. outpd(CONFIG_DATA, val);
  768. outpd(CONFIG_ADDRESS, 0);
  769. return val;
  770. }
  771. #else
  772. /* XXX Implement these... */
  773. static int
  774. read_config(int bus_number, int device_num, int r_number) 
  775. {
  776.   return 0;
  777. }
  778. static int
  779. write_config(int bus_number, int device_num, int r_number) 
  780. {
  781.   return 0;
  782. }
  783. #endif
  784. int
  785. RIOPCIinit(p, Mode)
  786. struct rio_info *p;
  787. int  Mode;
  788. {
  789. #define MAX_PCI_SLOT 32
  790. #define RIO_PCI_JET_CARD 0x200011CB
  791. static int slot; /* count of machine's PCI slots searched so far */
  792. caddr_t Caddr; /* Virtual address of the current PCI host card. */
  793. unsigned char Ivec; /* interrupt vector for the current PCI host */
  794. unsigned long Paddr; /* Physical address for the current PCI host */
  795. int Handle; /* Handle to Virtual memory allocated for current PCI host */
  796. rio_dprintk (RIO_DEBUG_INIT,  "Search for a RIO PCI card - start at slot %dn", slot);
  797. /*
  798. ** Initialise the search status
  799. */
  800. p->RIOLastPCISearch = RIO_FAIL;
  801. while ( (slot < MAX_PCI_SLOT) & (p->RIOLastPCISearch != RIO_SUCCESS) )
  802. {
  803. rio_dprintk (RIO_DEBUG_INIT,  "Currently testing slot %dn", slot);
  804. if (read_config(0,slot,0) == RIO_PCI_JET_CARD) {
  805. p->RIOHosts[p->RIONumHosts].Ivec = 0;
  806. Paddr = read_config(0,slot,0x18);
  807. Paddr = Paddr - (Paddr & 0x1); /* Mask off the io bit */
  808. if ( (Paddr == 0) || ((Paddr & 0xffff0000) == 0xffff0000) ) {
  809. rio_dprintk (RIO_DEBUG_INIT,  "Goofed up slotn"); /* what! */
  810. slot++;
  811. continue;
  812. }
  813. p->RIOHosts[p->RIONumHosts].PaddrP = Paddr;
  814. Ivec = (read_config(0,slot,0x3c) & 0xff);
  815. rio_dprintk (RIO_DEBUG_INIT,  "PCI Host at 0x%x, Intr %dn", (int)Paddr, Ivec);
  816. Handle = RIOMapin( Paddr, RIO_PCI_MEM_SIZE, &Caddr );
  817. if (Handle == -1) {
  818. rio_dprintk (RIO_DEBUG_INIT,  "Couldn't map %d bytes at 0x%xn", RIO_PCI_MEM_SIZE, (int)Paddr);
  819. slot++;
  820. continue;
  821. }
  822. p->RIOHosts[p->RIONumHosts].Ivec = Ivec + 32;
  823. p->intr_tid = iointset(p->RIOHosts[p->RIONumHosts].Ivec,
  824. (int (*)())rio_intr, (char *)p->RIONumHosts);
  825. if (RIOBoardTest( Paddr, Caddr, RIO_PCI, 0 ) == RIO_SUCCESS) {
  826. rio_dprintk (RIO_DEBUG_INIT, ("Board has passed testn");
  827. rio_dprintk (RIO_DEBUG_INIT, ("Paddr 0x%x. Caddr 0x%x. Mode 0x%x.n", Paddr, Caddr, Mode);
  828. /*
  829. ** Board has passed its scrub test. Fill in all the
  830. ** transient stuff.
  831. */
  832. p->RIOHosts[p->RIONumHosts].Slot    = 0;
  833. p->RIOHosts[p->RIONumHosts].Ivec    = Ivec + 32;
  834. p->RIOHosts[p->RIONumHosts].Type    = RIO_PCI;
  835. p->RIOHosts[p->RIONumHosts].Copy    = rio_pcicopy; 
  836. p->RIOHosts[p->RIONumHosts].PaddrP    = Paddr;
  837. p->RIOHosts[p->RIONumHosts].Caddr    = Caddr;
  838. p->RIOHosts[p->RIONumHosts].CardP    = (struct DpRam *)Caddr;
  839. p->RIOHosts[p->RIONumHosts].Mode    = Mode;
  840. #if 0
  841. WBYTE(p->RIOHosts[p->RIONumHosts].Control, 
  842. BOOT_FROM_RAM | EXTERNAL_BUS_OFF | 
  843. p->RIOHosts[p->RIONumHosts].Mode | 
  844. INTERRUPT_DISABLE );
  845. WBYTE(p->RIOHosts[p->RIONumHosts].ResetInt,0xff);
  846. WBYTE(p->RIOHosts[p->RIONumHosts].Control,
  847. BOOT_FROM_RAM | EXTERNAL_BUS_OFF | 
  848. p->RIOHosts[p->RIONumHosts].Mode |
  849. INTERRUPT_DISABLE );
  850. WBYTE(p->RIOHosts[p->RIONumHosts].ResetInt,0xff);
  851. #else
  852. WBYTE(p->RIOHosts[p->RIONumHosts].ResetInt, 0xff);
  853. #endif
  854. p->RIOHosts[p->RIONumHosts].UniqueNum  =
  855. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[0])&0xFF)<<0)|
  856. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[1])&0xFF)<<8)|
  857. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[2])&0xFF)<<16)|
  858. ((RBYTE(p->RIOHosts[p->RIONumHosts].Unique[3])&0xFF)<<24);
  859. rio_dprintk (RIO_DEBUG_INIT, "Unique no 0x%x.n", 
  860.     p->RIOHosts[p->RIONumHosts].UniqueNum);
  861. p->RIOLastPCISearch = RIO_SUCCESS;
  862. p->RIONumHosts++;
  863. }
  864. }
  865. slot++;
  866. }
  867. if ( slot >= MAX_PCI_SLOT ) {
  868. rio_dprintk (RIO_DEBUG_INIT,  "All %d PCI slots have tested for RIO cards !!!n",
  869.      MAX_PCI_SLOT);
  870. }
  871. /*
  872. ** I don't think we want to do this anymore
  873. **
  874. if (!p->RIOLastPCISearch == RIO_FAIL ) {
  875. p->RIOFailed++;
  876. }
  877. **
  878. */
  879. }
  880. #ifdef FUTURE_RELEASE
  881. void riohalt( void )
  882. {
  883. int host;
  884. for ( host=0; host<p->RIONumHosts; host++ )
  885. {
  886. rio_dprintk (RIO_DEBUG_INIT, "Stop host %dn", host);
  887. (void)RIOBoardTest( p->RIOHosts[host].PaddrP, p->RIOHosts[host].Caddr, p->RIOHosts[host].Type,p->RIOHosts[host].Slot );
  888. }
  889. }
  890. #endif
  891. #endif
  892. static uchar val[] = {
  893. #ifdef VERY_LONG_TEST
  894.   0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
  895.   0xa5, 0xff, 0x5a, 0x00, 0xff, 0xc9, 0x36, 
  896. #endif
  897.   0xff, 0x00, 0x00 };
  898. #define TEST_END sizeof(val)
  899. /*
  900. ** RAM test a board. 
  901. ** Nothing too complicated, just enough to check it out.
  902. */
  903. int
  904. RIOBoardTest(paddr, caddr, type, slot)
  905. paddr_t paddr;
  906. caddr_t caddr;
  907. uchar type;
  908. int slot;
  909. {
  910. struct DpRam *DpRam = (struct DpRam *)caddr;
  911. char *ram[4];
  912. int  size[4];
  913. int  op, bank;
  914. int  nbanks;
  915. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Reset host type=%d, DpRam=0x%x, slot=%dn",
  916. type,(int)DpRam, slot);
  917. RIOHostReset(type, DpRam, slot);
  918. /*
  919. ** Scrub the memory. This comes in several banks:
  920. ** DPsram1 - 7000h bytes
  921. ** DPsram2 - 200h  bytes
  922. ** DPsram3 - 7000h bytes
  923. ** scratch - 1000h bytes
  924. */
  925. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Setup ram/size arraysn");
  926. size[0] = DP_SRAM1_SIZE;
  927. size[1] = DP_SRAM2_SIZE;
  928. size[2] = DP_SRAM3_SIZE;
  929. size[3] = DP_SCRATCH_SIZE;
  930. ram[0] = (char *)&DpRam->DpSram1[0];
  931. ram[1] = (char *)&DpRam->DpSram2[0];
  932. ram[2] = (char *)&DpRam->DpSram3[0];
  933. nbanks = (type == RIO_PCI) ? 3 : 4;
  934. if (nbanks == 4)
  935. ram[3] = (char *)&DpRam->DpScratch[0];
  936. if (nbanks == 3) {
  937. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Memory: 0x%x(0x%x), 0x%x(0x%x), 0x%x(0x%x)n",
  938. (int)ram[0], size[0], (int)ram[1], size[1], (int)ram[2], size[2]);
  939. } else {
  940. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: 0x%x(0x%x), 0x%x(0x%x), 0x%x(0x%x), 0x%x(0x%x)n",
  941. (int)ram[0], size[0], (int)ram[1], size[1], (int)ram[2], size[2], (int)ram[3], 
  942. size[3]);
  943. }
  944. /*
  945. ** This scrub operation will test for crosstalk between
  946. ** banks. TEST_END is a magic number, and relates to the offset
  947. ** within the 'val' array used by Scrub.
  948. */
  949. for (op=0; op<TEST_END; op++) {
  950. for (bank=0; bank<nbanks; bank++) {
  951. if (RIOScrub(op, (BYTE *)ram[bank], size[bank]) == RIO_FAIL) {
  952. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: RIOScrub band %d, op %d failedn", 
  953. bank, op);
  954. return RIO_FAIL;
  955. }
  956. }
  957. }
  958. rio_dprintk (RIO_DEBUG_INIT, "Test completedn");
  959. return RIO_SUCCESS;
  960. }
  961. /*
  962. ** Scrub an area of RAM.
  963. ** Define PRETEST and POSTTEST for a more thorough checking of the
  964. ** state of the memory.
  965. ** Call with op set to an index into the above 'val' array to determine
  966. ** which value will be written into memory.
  967. ** Call with op set to zero means that the RAM will not be read and checked
  968. ** before it is written.
  969. ** Call with op not zero, and the RAM will be read and compated with val[op-1]
  970. ** to check that the data from the previous phase was retained.
  971. */
  972. int
  973. RIOScrub(op, ram, size)
  974. int op;
  975. BYTE * ram;
  976. int size; 
  977. {
  978. int off;
  979. unsigned char oldbyte;
  980. unsigned char newbyte;
  981. unsigned char invbyte;
  982. unsigned short oldword;
  983. unsigned short newword;
  984. unsigned short invword;
  985. unsigned short swapword;
  986. if (op) {
  987. oldbyte = val[op-1];
  988. oldword = oldbyte | (oldbyte<<8);
  989. } else
  990.   oldbyte = oldword = 0; /* Tell the compiler we've initilalized them. */
  991. newbyte = val[op];
  992. newword = newbyte | (newbyte<<8);
  993. invbyte = ~newbyte;
  994. invword = invbyte | (invbyte<<8);
  995. /*
  996. ** Check that the RAM contains the value that should have been left there
  997. ** by the previous test (not applicable for pass zero)
  998. */
  999. if (op) {
  1000. for (off=0; off<size; off++) {
  1001. if (RBYTE(ram[off]) != oldbyte) {
  1002. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Byte Pre Check 1: BYTE at offset 0x%x should have been=%x, was=%xn", off, oldbyte, RBYTE(ram[off]));
  1003. return RIO_FAIL;
  1004. }
  1005. }
  1006. for (off=0; off<size; off+=2) {
  1007. if (*(ushort *)&ram[off] != oldword) {
  1008. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Word Pre Check: WORD at offset 0x%x should have been=%x, was=%xn",off,oldword,*(ushort *)&ram[off]);
  1009. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Word Pre Check: BYTE at offset 0x%x is %x BYTE at offset 0x%x is %xn", off, RBYTE(ram[off]), off+1, RBYTE(ram[off+1]));
  1010. return RIO_FAIL;
  1011. }
  1012. }
  1013. }
  1014. /*
  1015. ** Now write the INVERSE of the test data into every location, using
  1016. ** BYTE write operations, first checking before each byte is written
  1017. ** that the location contains the old value still, and checking after
  1018. ** the write that the location contains the data specified - this is
  1019. ** the BYTE read/write test.
  1020. */
  1021. for (off=0; off<size; off++) {
  1022. if (op && (RBYTE(ram[off]) != oldbyte)) {
  1023. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Byte Pre Check 2: BYTE at offset 0x%x should have been=%x, was=%xn", off, oldbyte, RBYTE(ram[off]));
  1024. return RIO_FAIL;
  1025. }
  1026. WBYTE(ram[off],invbyte);
  1027. if (RBYTE(ram[off]) != invbyte) {
  1028. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Byte Inv Check: BYTE at offset 0x%x should have been=%x, was=%xn", off, invbyte, RBYTE(ram[off]));
  1029. return RIO_FAIL;
  1030. }
  1031. }
  1032. /*
  1033. ** now, use WORD operations to write the test value into every location,
  1034. ** check as before that the location contains the previous test value
  1035. ** before overwriting, and that it contains the data value written
  1036. ** afterwards.
  1037. ** This is the WORD operation test.
  1038. */
  1039. for (off=0; off<size; off+=2) {
  1040. if (*(ushort *)&ram[off] != invword) {
  1041. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Word Inv Check: WORD at offset 0x%x should have been=%x, was=%xn", off, invword, *(ushort *)&ram[off]);
  1042. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Word Inv Check: BYTE at offset 0x%x is %x BYTE at offset 0x%x is %xn", off, RBYTE(ram[off]), off+1, RBYTE(ram[off+1]));
  1043. return RIO_FAIL;
  1044. }
  1045. *(ushort *)&ram[off] = newword;
  1046. if ( *(ushort *)&ram[off] != newword ) {
  1047. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Post Word Check 1: WORD at offset 0x%x should have been=%x, was=%xn", off, newword, *(ushort *)&ram[off]);
  1048. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Post Word Check 1: BYTE at offset 0x%x is %x BYTE at offset 0x%x is %xn", off, RBYTE(ram[off]), off+1, RBYTE(ram[off+1]));
  1049. return RIO_FAIL;
  1050. }
  1051. }
  1052. /*
  1053. ** now run through the block of memory again, first in byte mode
  1054. ** then in word mode, and check that all the locations contain the
  1055. ** required test data.
  1056. */
  1057. for (off=0; off<size; off++) {
  1058. if (RBYTE(ram[off]) != newbyte) {
  1059. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Post Byte Check: BYTE at offset 0x%x should have been=%x, was=%xn", off, newbyte, RBYTE(ram[off]));
  1060. return RIO_FAIL;
  1061. }
  1062. }
  1063. for (off=0; off<size; off+=2) {
  1064. if ( *(ushort *)&ram[off] != newword ) {
  1065. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Post Word Check 2: WORD at offset 0x%x should have been=%x, was=%xn", off, newword, *(ushort *)&ram[off]);
  1066. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: Post Word Check 2: BYTE at offset 0x%x is %x BYTE at offset 0x%x is %xn", off, RBYTE(ram[off]), off+1, RBYTE(ram[off+1]));
  1067. return RIO_FAIL;
  1068. }
  1069. }
  1070. /*
  1071. ** time to check out byte swapping errors
  1072. */
  1073. swapword = invbyte | (newbyte << 8);
  1074. for (off=0; off<size; off+=2) {
  1075. WBYTE(ram[off],invbyte);
  1076. WBYTE(ram[off+1],newbyte);
  1077. }
  1078. for ( off=0; off<size; off+=2 ) {
  1079. if (*(ushort *)&ram[off] != swapword) {
  1080. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: SwapWord Check 1: WORD at offset 0x%x should have been=%x, was=%xn", off, swapword, *((ushort *)&ram[off]));
  1081. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: SwapWord Check 1: BYTE at offset 0x%x is %x BYTE at offset 0x%x is %xn", off, RBYTE(ram[off]), off+1, RBYTE(ram[off+1]));
  1082. return RIO_FAIL;
  1083. }
  1084. *((ushort *)&ram[off]) = ~swapword;
  1085. }
  1086. for (off=0; off<size; off+=2) {
  1087. if (RBYTE(ram[off]) != newbyte) {
  1088. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: SwapWord Check 2: BYTE at offset 0x%x should have been=%x, was=%xn", off, newbyte, RBYTE(ram[off]));
  1089. return RIO_FAIL;
  1090. }
  1091. if (RBYTE(ram[off+1]) != invbyte) {
  1092. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: SwapWord Check 2: BYTE at offset 0x%x should have been=%x, was=%xn", off+1, invbyte, RBYTE(ram[off+1]));
  1093. return RIO_FAIL;
  1094. }
  1095. *((ushort *)&ram[off]) = newword;
  1096. }
  1097. return RIO_SUCCESS;
  1098. }
  1099. /*
  1100. ** try to ensure that every host is either in polled mode
  1101. ** or is in interrupt mode. Only allow interrupt mode if
  1102. ** all hosts can interrupt (why?)
  1103. ** and force into polled mode if told to. Patch up the
  1104. ** interrupt vector & salute The Queen when you've done.
  1105. */
  1106. void
  1107. RIOAllocateInterrupts(p)
  1108. struct rio_info * p;
  1109. {
  1110. int Host;
  1111. /*
  1112. ** Easy case - if we have been told to poll, then we poll.
  1113. */
  1114. if (p->mode & POLLED_MODE) {
  1115. RIOStopInterrupts(p, 0, 0);
  1116. return;
  1117. }
  1118. /*
  1119. ** check - if any host has been set to polled mode, then all must be.
  1120. */
  1121. for (Host=0; Host<p->RIONumHosts; Host++) {
  1122. if ( (p->RIOHosts[Host].Type != RIO_AT) &&
  1123. (p->RIOHosts[Host].Ivec == POLLED) ) {
  1124. RIOStopInterrupts(p, 1, Host );
  1125. return;
  1126. }
  1127. }
  1128. for (Host=0; Host<p->RIONumHosts; Host++) {
  1129. if (p->RIOHosts[Host].Type == RIO_AT) {
  1130. if ( (p->RIOHosts[Host].Ivec - 32) == 0) {
  1131. RIOStopInterrupts(p, 2, Host );
  1132. return;
  1133. }
  1134. }
  1135. }
  1136. }
  1137. /*
  1138. ** something has decided that we can't be doing with these
  1139. ** new-fangled interrupt thingies. Set everything up to just
  1140. ** poll.
  1141. */
  1142. void
  1143. RIOStopInterrupts(p, Reason, Host)
  1144. struct rio_info * p;
  1145. int Reason;
  1146. int Host; 
  1147. {
  1148. #ifdef FUTURE_RELEASE
  1149. switch (Reason) {
  1150. case 0: /* forced into polling by rio_polled */
  1151. break;
  1152. case 1: /* SCU has set 'Host' into polled mode */
  1153. break;
  1154. case 2: /* there aren't enough interrupt vectors for 'Host' */
  1155. break;
  1156. }
  1157. #endif
  1158. for (Host=0; Host<p->RIONumHosts; Host++ ) {
  1159. struct Host *HostP = &p->RIOHosts[Host];
  1160. switch (HostP->Type) {
  1161. case RIO_AT:
  1162. /*
  1163. ** The AT host has it's interrupts disabled by clearing the
  1164. ** int_enable bit.
  1165. */
  1166. HostP->Mode &= ~INTERRUPT_ENABLE;
  1167. HostP->Ivec = POLLED;
  1168. break;
  1169. #ifdef FUTURE_RELEASE
  1170. case RIO_EISA:
  1171. /*
  1172. ** The EISA host has it's interrupts disabled by setting the
  1173. ** Ivec to zero
  1174. */
  1175. HostP->Ivec = POLLED;
  1176. break;
  1177. #endif
  1178. case RIO_PCI:
  1179. /*
  1180. ** The PCI host has it's interrupts disabled by clearing the
  1181. ** int_enable bit, like a regular host card.
  1182. */
  1183. HostP->Mode &= ~RIO_PCI_INT_ENABLE;
  1184. HostP->Ivec = POLLED;
  1185. break;
  1186. #ifdef FUTURE_RELEASE
  1187. case RIO_MCA:
  1188. /*
  1189. ** There's always one, isn't there?
  1190. ** The MCA host card cannot have it's interrupts disabled.
  1191. */
  1192. RIOPatchVec(HostP);
  1193. break;
  1194. #endif
  1195. }
  1196. }
  1197. }
  1198. #if 0
  1199. /*
  1200. ** This function is called at init time to setup the data structures.
  1201. */
  1202. void
  1203. RIOAllocDataStructs(p)
  1204. struct rio_info * p;
  1205. {
  1206. int port,
  1207. host,
  1208. tm;
  1209. p->RIOPortp = (struct Port *)sysbrk(RIO_PORTS * sizeof(struct Port));
  1210. if (!p->RIOPortp) {
  1211. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: No memory for port structuresn");
  1212. p->RIOFailed++;
  1213. return;
  1214. bzero( p->RIOPortp, sizeof(struct Port) * RIO_PORTS );
  1215. rio_dprintk (RIO_DEBUG_INIT,  "RIO-init: allocated and cleared memory for port structsn");
  1216. rio_dprintk (RIO_DEBUG_INIT,  "First RIO port struct @0x%x, size=0x%x bytesn",
  1217.     (int)p->RIOPortp, sizeof(struct Port));
  1218. for( port=0; port<RIO_PORTS; port++ ) {
  1219. p->RIOPortp[port].PortNum = port;
  1220. p->RIOPortp[port].TtyP = &p->channel[port];
  1221. sreset (p->RIOPortp[port].InUse); /* Let the first guy uses it */
  1222. p->RIOPortp[port].portSem = -1; /* Let the first guy takes it */
  1223. p->RIOPortp[port].ParamSem = -1; /* Let the first guy takes it */
  1224. p->RIOPortp[port].timeout_id = 0; /* Let the first guy takes it */
  1225. }
  1226. p->RIOHosts = (struct Host *)sysbrk(RIO_HOSTS * sizeof(struct Host));
  1227. if (!p->RIOHosts) {
  1228. rio_dprintk (RIO_DEBUG_INIT, "RIO-init: No memory for host structuresn");
  1229. p->RIOFailed++;
  1230. return;
  1231. }
  1232. bzero(p->RIOHosts, sizeof(struct Host)*RIO_HOSTS);
  1233. rio_dprintk (RIO_DEBUG_INIT,  "RIO-init: allocated and cleared memory for host structsn");
  1234. rio_dprintk (RIO_DEBUG_INIT,  "First RIO host struct @0x%x, size=0x%x bytesn",
  1235.     (int)p->RIOHosts, sizeof(struct Host));
  1236. for( host=0; host<RIO_HOSTS; host++ ) {
  1237. spin_lock_init (&p->RIOHosts[host].HostLock);
  1238. p->RIOHosts[host].timeout_id = 0; /* Let the first guy takes it */
  1239. }
  1240. /*
  1241. ** check that the buffer size is valid, round down to the next power of
  1242. ** two if necessary; if the result is zero, then, hey, no double buffers.
  1243. */
  1244. for ( tm = 1; tm && tm <= p->RIOConf.BufferSize; tm <<= 1 )
  1245. ;
  1246. tm >>= 1;
  1247. p->RIOBufferSize = tm;
  1248. p->RIOBufferMask = tm ? tm - 1 : 0;
  1249. }
  1250. /*
  1251. ** this function gets called whenever the data structures need to be
  1252. ** re-setup, for example, after a riohalt (why did I ever invent it?)
  1253. */
  1254. void
  1255. RIOSetupDataStructs(p)
  1256. struct rio_info * p;
  1257. {
  1258. int host, entry, rup;
  1259. for ( host=0; host<RIO_HOSTS; host++ ) {
  1260. struct Host *HostP = &p->RIOHosts[host];
  1261. for ( entry=0; entry<LINKS_PER_UNIT; entry++ ) {
  1262. HostP->Topology[entry].Unit = ROUTE_DISCONNECT;
  1263. HostP->Topology[entry].Link = NO_LINK;
  1264. }
  1265. bcopy("HOST X", HostP->Name, 7);
  1266. HostP->Name[5] = '1'+host;
  1267. for (rup=0; rup<(MAX_RUP + LINKS_PER_UNIT); rup++) {
  1268. if (rup < MAX_RUP) {
  1269. for (entry=0; entry<LINKS_PER_UNIT; entry++ ) {
  1270. HostP->Mapping[rup].Topology[entry].Unit = ROUTE_DISCONNECT;
  1271. HostP->Mapping[rup].Topology[entry].Link = NO_LINK;
  1272. }
  1273. RIODefaultName(p, HostP, rup);
  1274. }
  1275. HostP->UnixRups[rup].RupLock = SPIN_LOCK_UNLOCKED;
  1276. }
  1277. }
  1278. }
  1279. #endif
  1280. int
  1281. RIODefaultName(p, HostP, UnitId)
  1282. struct rio_info * p;
  1283. struct Host * HostP;
  1284. uint UnitId;
  1285. {
  1286. #ifdef CHECK
  1287. CheckHost( Host );
  1288. CheckUnitId( UnitId );
  1289. #endif
  1290. bcopy("UNKNOWN RTA X-XX",HostP->Mapping[UnitId].Name,17);
  1291. HostP->Mapping[UnitId].Name[12]='1'+(HostP-p->RIOHosts);
  1292. if ((UnitId+1) > 9) {
  1293. HostP->Mapping[UnitId].Name[14]='0'+((UnitId+1)/10);
  1294. HostP->Mapping[UnitId].Name[15]='0'+((UnitId+1)%10);
  1295. }
  1296. else {
  1297. HostP->Mapping[UnitId].Name[14]='1'+UnitId;
  1298. HostP->Mapping[UnitId].Name[15]=0;
  1299. }
  1300. return 0;
  1301. }
  1302. #define RIO_RELEASE "Linux"
  1303. #define RELEASE_ID "1.0"
  1304. int
  1305. RIOReport(p)
  1306. struct rio_info * p;
  1307. {
  1308. char * RIORelease = RIO_RELEASE;
  1309. char * RIORelID = RELEASE_ID;
  1310. int host;
  1311. rio_dprintk (RIO_DEBUG_INIT, "RIO : Release: %s ID: %sn", RIORelease, RIORelID);
  1312. if ( p->RIONumHosts==0 ) {
  1313. rio_dprintk (RIO_DEBUG_INIT, "nNo Hosts configuredn");
  1314. return(0);
  1315. }
  1316. for ( host=0; host < p->RIONumHosts; host++ ) {
  1317. struct Host *HostP = &p->RIOHosts[host];
  1318. switch ( HostP->Type ) {
  1319. case RIO_AT:
  1320. rio_dprintk (RIO_DEBUG_INIT, "AT BUS : found the card at 0x%xn", HostP->PaddrP);
  1321. }
  1322. }
  1323. return 0;
  1324. }
  1325. /*
  1326. ** This function returns release/version information as used by ioctl() calls
  1327. ** It returns a MAX_VERSION_LEN byte string, null terminated.
  1328. */
  1329. char *
  1330. OLD_RIOVersid( void )
  1331. {
  1332. static char Info[MAX_VERSION_LEN];
  1333. char * RIORelease = RIO_RELEASE;
  1334. char * cp;
  1335. int ct = 0;
  1336. for ( ct=0; RIORelease[ct] && ct<MAX_VERSION_LEN; ct++ )
  1337. Info[ct] = RIORelease[ct];
  1338. if ( ct>=MAX_VERSION_LEN ) {
  1339. Info[MAX_VERSION_LEN-1] = '';
  1340. return Info;
  1341. }
  1342. Info[ct++]=' ';
  1343. if ( ct>=MAX_VERSION_LEN ) {
  1344. Info[MAX_VERSION_LEN-1] = '';
  1345. return Info;
  1346. }
  1347. cp=""; /* Fill the RCS Id here */
  1348. while ( *cp && ct<MAX_VERSION_LEN )
  1349. Info[ct++] = *cp++;
  1350. if ( ct<MAX_VERSION_LEN-1 )
  1351. Info[ct] = '';
  1352. Info[MAX_VERSION_LEN-1] = '';
  1353. return Info;
  1354. }
  1355. static struct rioVersion stVersion;
  1356. struct rioVersion *
  1357. RIOVersid(void)
  1358. {
  1359.     strncpy(stVersion.version, "RIO driver for linux V1.0", 255);
  1360.     strncpy(stVersion.buildDate, __DATE__, 255);
  1361.     return &stVersion;
  1362. }
  1363. #if 0
  1364. int
  1365. RIOMapin(paddr, size, vaddr)
  1366. paddr_t paddr;
  1367. int size;
  1368. caddr_t * vaddr;
  1369. {
  1370. *vaddr = (caddr_t)permap( (long)paddr, size);
  1371. return ((int)*vaddr);
  1372. }
  1373. void
  1374. RIOMapout(paddr, size, vaddr)
  1375. paddr_t paddr;
  1376. long size;
  1377. caddr_t  vaddr;
  1378. {
  1379. }
  1380. #endif
  1381. void
  1382. RIOHostReset(Type, DpRamP, Slot)
  1383. uint Type;
  1384. volatile struct DpRam *DpRamP;
  1385. uint Slot; 
  1386. {
  1387. /*
  1388. ** Reset the Tpu
  1389. */
  1390. rio_dprintk (RIO_DEBUG_INIT,  "RIOHostReset: type 0x%x", Type);
  1391. switch ( Type ) {
  1392. case RIO_AT:
  1393. rio_dprintk (RIO_DEBUG_INIT, " (RIO_AT)n");
  1394. WBYTE(DpRamP->DpControl,  BOOT_FROM_RAM | EXTERNAL_BUS_OFF | 
  1395.   INTERRUPT_DISABLE | BYTE_OPERATION |
  1396.   SLOW_LINKS | SLOW_AT_BUS);
  1397. WBYTE(DpRamP->DpResetTpu, 0xFF);
  1398. rio_udelay (3);
  1399. rio_dprintk (RIO_DEBUG_INIT,  "RIOHostReset: Don't know if it worked. Try reset againn");
  1400. WBYTE(DpRamP->DpControl,  BOOT_FROM_RAM | EXTERNAL_BUS_OFF |
  1401.   INTERRUPT_DISABLE | BYTE_OPERATION |
  1402.   SLOW_LINKS | SLOW_AT_BUS);
  1403. WBYTE(DpRamP->DpResetTpu, 0xFF);
  1404. rio_udelay (3);
  1405. break;
  1406. #ifdef FUTURE_RELEASE
  1407. case RIO_EISA:
  1408. /*
  1409. ** Bet this doesn't work!
  1410. */
  1411. OUTBZ( Slot, EISA_CONTROL_PORT,
  1412. EISA_TP_RUN | EISA_TP_BUS_DISABLE   |
  1413. EISA_TP_SLOW_LINKS | EISA_TP_BOOT_FROM_RAM );
  1414. OUTBZ( Slot, EISA_CONTROL_PORT,
  1415. EISA_TP_RESET   | EISA_TP_BUS_DISABLE   | 
  1416. EISA_TP_SLOW_LINKS | EISA_TP_BOOT_FROM_RAM );
  1417. suspend( 3 );
  1418. OUTBZ( Slot, EISA_CONTROL_PORT,
  1419. EISA_TP_RUN | EISA_TP_BUS_DISABLE   | 
  1420. EISA_TP_SLOW_LINKS | EISA_TP_BOOT_FROM_RAM );
  1421. break;
  1422. case RIO_MCA:
  1423. WBYTE(DpRamP->DpControl  , McaTpBootFromRam | McaTpBusDisable );
  1424. WBYTE(DpRamP->DpResetTpu , 0xFF );
  1425. suspend( 3 );
  1426. WBYTE(DpRamP->DpControl  , McaTpBootFromRam | McaTpBusDisable );
  1427. WBYTE(DpRamP->DpResetTpu , 0xFF );
  1428. suspend( 3 );
  1429. break;
  1430. #endif
  1431. case RIO_PCI:
  1432. rio_dprintk (RIO_DEBUG_INIT, " (RIO_PCI)n");
  1433. DpRamP->DpControl  = RIO_PCI_BOOT_FROM_RAM;
  1434. DpRamP->DpResetInt = 0xFF;
  1435. DpRamP->DpResetTpu = 0xFF;
  1436. rio_udelay (100);
  1437. /* for (i=0; i<6000; i++);  */
  1438. /* suspend( 3 ); */
  1439. break;
  1440. #ifdef FUTURE_RELEASE
  1441. default:
  1442. Rprintf(RIOMesgNoSupport,Type,DpRamP,Slot);
  1443. return;
  1444. #endif
  1445. default:
  1446. rio_dprintk (RIO_DEBUG_INIT, " (UNKNOWN)n");
  1447. break;
  1448. }
  1449. return;
  1450. }