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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*******************************************************************************
  2. *
  3. *   (c) 1998 by Computone Corporation
  4. *
  5. ********************************************************************************
  6. *
  7. *
  8. *   PACKAGE:     Linux tty Device Driver for IntelliPort family of multiport
  9. *                serial I/O controllers.
  10. *
  11. *   DESCRIPTION: Low-level interface code for the device driver
  12. *                (This is included source code, not a separate compilation
  13. *                module.)
  14. *
  15. *******************************************************************************/
  16. //---------------------------------------------
  17. // Function declarations private to this module
  18. //---------------------------------------------
  19. // Functions called only indirectly through i2eBordStr entries.
  20. static int iiWriteBuf16(i2eBordStrPtr, unsigned char *, int);
  21. static int iiWriteBuf8(i2eBordStrPtr, unsigned char *, int);
  22. static int iiReadBuf16(i2eBordStrPtr, unsigned char *, int);
  23. static int iiReadBuf8(i2eBordStrPtr, unsigned char *, int);
  24. static unsigned short iiReadWord16(i2eBordStrPtr);
  25. static unsigned short iiReadWord8(i2eBordStrPtr);
  26. static void iiWriteWord16(i2eBordStrPtr, unsigned short);
  27. static void iiWriteWord8(i2eBordStrPtr, unsigned short);
  28. static int iiWaitForTxEmptyII(i2eBordStrPtr, int);
  29. static int iiWaitForTxEmptyIIEX(i2eBordStrPtr, int);
  30. static int iiTxMailEmptyII(i2eBordStrPtr);
  31. static int iiTxMailEmptyIIEX(i2eBordStrPtr);
  32. static int iiTrySendMailII(i2eBordStrPtr, unsigned char);
  33. static int iiTrySendMailIIEX(i2eBordStrPtr, unsigned char);
  34. static unsigned short iiGetMailII(i2eBordStrPtr);
  35. static unsigned short iiGetMailIIEX(i2eBordStrPtr);
  36. static void iiEnableMailIrqII(i2eBordStrPtr);
  37. static void iiEnableMailIrqIIEX(i2eBordStrPtr);
  38. static void iiWriteMaskII(i2eBordStrPtr, unsigned char);
  39. static void iiWriteMaskIIEX(i2eBordStrPtr, unsigned char);
  40. static void ii2DelayTimer(unsigned int);
  41. static void ii2DelayWakeup(unsigned long id);
  42. static void ii2Nop(void);
  43. //***************
  44. //* Static Data *
  45. //***************
  46. static int ii2Safe;         // Safe I/O address for delay routine
  47. static int iiDelayed; // Set when the iiResetDelay function is
  48. // called. Cleared when ANY board is reset.
  49. static struct timer_list * pDelayTimer;   // Used by iiDelayTimer
  50. static wait_queue_head_t pDelayWait;    // Used by iiDelayTimer
  51. static rwlock_t Dl_spinlock;
  52. //********
  53. //* Code *
  54. //********
  55. //=======================================================
  56. // Initialization Routines
  57. //
  58. // iiSetAddress
  59. // iiReset
  60. // iiResetDelay
  61. // iiInitialize
  62. //=======================================================
  63. //******************************************************************************
  64. // Function:   iiEllisInit()
  65. // Parameters: None
  66. //
  67. // Returns:    Nothing
  68. //
  69. // Description:
  70. //
  71. // This routine performs any required initialization of the iiEllis subsystem.
  72. //
  73. //******************************************************************************
  74. static void
  75. iiEllisInit(void)
  76. {
  77. pDelayTimer = kmalloc ( sizeof (struct timer_list), GFP_KERNEL );
  78. init_waitqueue_head(&pDelayWait);
  79. LOCK_INIT(&Dl_spinlock);
  80. }
  81. //******************************************************************************
  82. // Function:   iiEllisCleanup()
  83. // Parameters: None
  84. //
  85. // Returns:    Nothing
  86. //
  87. // Description:
  88. //
  89. // This routine performs any required cleanup of the iiEllis subsystem.
  90. //
  91. //******************************************************************************
  92. static void
  93. iiEllisCleanup(void)
  94. {
  95. if ( pDelayTimer != NULL ) {
  96. kfree ( pDelayTimer );
  97. }
  98. }
  99. //******************************************************************************
  100. // Function:   iiSetAddress(pB, address, delay)
  101. // Parameters: pB      - pointer to the board structure
  102. //             address - the purported I/O address of the board
  103. //             delay   - pointer to the 1-ms delay function to use
  104. //                       in this and any future operations to this board
  105. //
  106. // Returns:    True if everything appears copacetic.
  107. //             False if there is any error: the pB->i2eError field has the error
  108. //
  109. // Description:
  110. //
  111. // This routine (roughly) checks for address validity, sets the i2eValid OK and
  112. // sets the state to II_STATE_COLD which means that we haven't even sent a reset
  113. // yet.
  114. //
  115. //******************************************************************************
  116. static int
  117. iiSetAddress( i2eBordStrPtr pB, int address, delayFunc_t delay )
  118. {
  119. // Should any failure occur before init is finished...
  120. pB->i2eValid = I2E_INCOMPLETE;
  121. // Cannot check upper limit except extremely: Might be microchannel
  122. // Address must be on an 8-byte boundary
  123. if ((unsigned int)address <= 0x100
  124. || (unsigned int)address >= 0xfff8
  125. || (address & 0x7)
  126. )
  127. {
  128. COMPLETE(pB,I2EE_BADADDR);
  129. }
  130. // Initialize accelerators
  131. pB->i2eBase    = address;
  132. pB->i2eData    = address + FIFO_DATA;
  133. pB->i2eStatus  = address + FIFO_STATUS;
  134. pB->i2ePointer = address + FIFO_PTR;
  135. pB->i2eXMail   = address + FIFO_MAIL;
  136. pB->i2eXMask   = address + FIFO_MASK;
  137. // Initialize i/o address for ii2DelayIO
  138. ii2Safe = address + FIFO_NOP;
  139. // Initialize the delay routine
  140. pB->i2eDelay = ((delay != (delayFunc_t)NULL) ? delay : (delayFunc_t)ii2Nop);
  141. pB->i2eValid = I2E_MAGIC;
  142. pB->i2eState = II_STATE_COLD;
  143. COMPLETE(pB, I2EE_GOOD);
  144. }
  145. //******************************************************************************
  146. // Function:   iiReset(pB)
  147. // Parameters: pB - pointer to the board structure
  148. //
  149. // Returns:    True if everything appears copacetic.
  150. //             False if there is any error: the pB->i2eError field has the error
  151. //
  152. // Description:
  153. //
  154. // Attempts to reset the board (see also i2hw.h). Normally, we would use this to
  155. // reset a board immediately after iiSetAddress(), but it is valid to reset a
  156. // board from any state, say, in order to change or re-load loadware. (Under
  157. // such circumstances, no reason to re-run iiSetAddress(), which is why it is a
  158. // separate routine and not included in this routine.
  159. //
  160. //******************************************************************************
  161. static int
  162. iiReset(i2eBordStrPtr pB)
  163. {
  164. // Magic number should be set, else even the address is suspect
  165. if (pB->i2eValid != I2E_MAGIC)
  166. {
  167. COMPLETE(pB, I2EE_BADMAGIC);
  168. }
  169. OUTB(pB->i2eBase + FIFO_RESET, 0);  // Any data will do
  170. iiDelay(pB, 50);                    // Pause between resets
  171. OUTB(pB->i2eBase + FIFO_RESET, 0);  // Second reset
  172. // We must wait before even attempting to read anything from the FIFO: the
  173. // board's P.O.S.T may actually attempt to read and write its end of the
  174. // FIFO in order to check flags, loop back (where supported), etc. On
  175. // completion of this testing it would reset the FIFO, and on completion
  176. // of all // P.O.S.T., write the message. We must not mistake data which
  177. // might have been sent for testing as part of the reset message. To
  178. // better utilize time, say, when resetting several boards, we allow the
  179. // delay to be performed externally; in this way the caller can reset 
  180. // several boards, delay a single time, then call the initialization
  181. // routine for all.
  182. pB->i2eState = II_STATE_RESET;
  183. iiDelayed = 0; // i.e., the delay routine hasn't been called since the most
  184. // recent reset.
  185. // Ensure anything which would have been of use to standard loadware is
  186. // blanked out, since board has now forgotten everything!.
  187. pB->i2eUsingIrq = IRQ_UNDEFINED; // Not set up to use an interrupt yet
  188. pB->i2eWaitingForEmptyFifo = 0;
  189. pB->i2eOutMailWaiting = 0;
  190. pB->i2eChannelPtr = NULL;
  191. pB->i2eChannelCnt = 0;
  192. pB->i2eLeadoffWord[0] = 0;
  193. pB->i2eFifoInInts = 0;
  194. pB->i2eFifoOutInts = 0;
  195. pB->i2eFatalTrap = NULL;
  196. pB->i2eFatal = 0;
  197. COMPLETE(pB, I2EE_GOOD);
  198. }
  199. //******************************************************************************
  200. // Function:   iiResetDelay(pB)
  201. // Parameters: pB - pointer to the board structure
  202. //
  203. // Returns:    True if everything appears copacetic.
  204. //             False if there is any error: the pB->i2eError field has the error
  205. //
  206. // Description:
  207. //
  208. // Using the delay defined in board structure, waits two seconds (for board to
  209. // reset).
  210. //
  211. //******************************************************************************
  212. static int
  213. iiResetDelay(i2eBordStrPtr pB)
  214. {
  215. if (pB->i2eValid != I2E_MAGIC) {
  216. COMPLETE(pB, I2EE_BADMAGIC);
  217. }
  218. if (pB->i2eState != II_STATE_RESET) {
  219. COMPLETE(pB, I2EE_BADSTATE);
  220. }
  221. iiDelay(pB,2000);       /* Now we wait for two seconds. */
  222. iiDelayed = 1;          /* Delay has been called: ok to initialize */
  223. COMPLETE(pB, I2EE_GOOD);
  224. }
  225. //******************************************************************************
  226. // Function:   iiInitialize(pB)
  227. // Parameters: pB - pointer to the board structure
  228. //
  229. // Returns:    True if everything appears copacetic.
  230. //             False if there is any error: the pB->i2eError field has the error
  231. //
  232. // Description:
  233. //
  234. // Attempts to read the Power-on reset message. Initializes any remaining fields
  235. // in the pB structure.
  236. //
  237. // This should be called as the third step of a process beginning with
  238. // iiReset(), then iiResetDelay(). This routine checks to see that the structure
  239. // is "valid" and in the reset state, also confirms that the delay routine has
  240. // been called since the latest reset (to any board! overly strong!).
  241. //
  242. //******************************************************************************
  243. static int
  244. iiInitialize(i2eBordStrPtr pB)
  245. {
  246. int itemp;
  247. unsigned char c;
  248. unsigned short utemp;
  249. unsigned int ilimit;
  250. if (pB->i2eValid != I2E_MAGIC)
  251. {
  252. COMPLETE(pB, I2EE_BADMAGIC);
  253. }
  254. if (pB->i2eState != II_STATE_RESET || !iiDelayed)
  255. {
  256. COMPLETE(pB, I2EE_BADSTATE);
  257. }
  258. // In case there is a failure short of our completely reading the power-up
  259. // message.
  260. pB->i2eValid = I2E_INCOMPLETE;
  261. // Now attempt to read the message.
  262. for (itemp = 0; itemp < sizeof(porStr); itemp++)
  263. {
  264. // We expect the entire message is ready.
  265. if (HAS_NO_INPUT(pB))
  266. {
  267. pB->i2ePomSize = itemp;
  268. COMPLETE(pB, I2EE_PORM_SHORT);
  269. }
  270. pB->i2ePom.c[itemp] = c = BYTE_FROM(pB);
  271. // We check the magic numbers as soon as they are supposed to be read
  272. // (rather than after) to minimize effect of reading something we
  273. // already suspect can't be "us".
  274. if (  (itemp == POR_1_INDEX && c != POR_MAGIC_1) ||
  275. (itemp == POR_2_INDEX && c != POR_MAGIC_2))
  276. {
  277. pB->i2ePomSize = itemp+1;
  278. COMPLETE(pB, I2EE_BADMAGIC);
  279. }
  280. }
  281. pB->i2ePomSize = itemp;
  282. // Ensure that this was all the data...
  283. if (HAS_INPUT(pB))
  284. COMPLETE(pB, I2EE_PORM_LONG);
  285. // For now, we'll fail to initialize if P.O.S.T reports bad chip mapper:
  286. // Implying we will not be able to download any code either:  That's ok: the
  287. // condition is pretty explicit.
  288. if (pB->i2ePom.e.porDiag1 & POR_BAD_MAPPER)
  289. {
  290. COMPLETE(pB, I2EE_POSTERR);
  291. }
  292. // Determine anything which must be done differently depending on the family
  293. // of boards!
  294. switch (pB->i2ePom.e.porID & POR_ID_FAMILY)
  295. {
  296. case POR_ID_FII:  // IntelliPort-II
  297. pB->i2eFifoStyle   = FIFO_II;
  298. pB->i2eFifoSize    = 512;     // 512 bytes, always
  299. pB->i2eDataWidth16 = NO;
  300. pB->i2eMaxIrq = 15; // Because board cannot tell us it is in an 8-bit
  301. // slot, we do allow it to be done (documentation!)
  302. pB->i2eGoodMap[1] =
  303. pB->i2eGoodMap[2] =
  304. pB->i2eGoodMap[3] =
  305. pB->i2eChannelMap[1] =
  306. pB->i2eChannelMap[2] =
  307. pB->i2eChannelMap[3] = 0;
  308. switch (pB->i2ePom.e.porID & POR_ID_SIZE)
  309. {
  310. case POR_ID_II_4:
  311. pB->i2eGoodMap[0] =
  312. pB->i2eChannelMap[0] = 0x0f;  // four-port
  313. // Since porPorts1 is based on the Hardware ID register, the numbers
  314. // should always be consistent for IntelliPort-II.  Ditto below...
  315. if (pB->i2ePom.e.porPorts1 != 4)
  316. {
  317. COMPLETE(pB, I2EE_INCONSIST);
  318. }
  319. break;
  320. case POR_ID_II_8:
  321. case POR_ID_II_8R:
  322. pB->i2eGoodMap[0] =
  323. pB->i2eChannelMap[0] = 0xff;  // Eight port
  324. if (pB->i2ePom.e.porPorts1 != 8)
  325. {
  326. COMPLETE(pB, I2EE_INCONSIST);
  327. }
  328. break;
  329. case POR_ID_II_6:
  330. pB->i2eGoodMap[0] =
  331. pB->i2eChannelMap[0] = 0x3f;  // Six Port
  332. if (pB->i2ePom.e.porPorts1 != 6)
  333. {
  334. COMPLETE(pB, I2EE_INCONSIST);
  335. }
  336. break;
  337. }
  338. // Fix up the "good channel list based on any errors reported.
  339. if (pB->i2ePom.e.porDiag1 & POR_BAD_UART1)
  340. {
  341. pB->i2eGoodMap[0] &= ~0x0f;
  342. }
  343. if (pB->i2ePom.e.porDiag1 & POR_BAD_UART2)
  344. {
  345. pB->i2eGoodMap[0] &= ~0xf0;
  346. }
  347. break;   // POR_ID_FII case
  348. case POR_ID_FIIEX:   // IntelliPort-IIEX
  349. pB->i2eFifoStyle = FIFO_IIEX;
  350. itemp = pB->i2ePom.e.porFifoSize;
  351. // Implicit assumption that fifo would not grow beyond 32k, 
  352. // nor would ever be less than 256.
  353. if (itemp < 8 || itemp > 15)
  354. {
  355. COMPLETE(pB, I2EE_INCONSIST);
  356. }
  357. pB->i2eFifoSize = (1 << itemp);
  358. // These are based on what P.O.S.T thinks should be there, based on
  359. // box ID registers
  360. ilimit = pB->i2ePom.e.porNumBoxes;
  361. if (ilimit > ABS_MAX_BOXES)
  362. {
  363. ilimit = ABS_MAX_BOXES;
  364. }
  365. // For as many boxes as EXIST, gives the type of box.
  366. // Added 8/6/93: check for the ISA-4 (asic) which looks like an
  367. // expandable but for whom "8 or 16?" is not the right question.
  368. utemp = pB->i2ePom.e.porFlags;
  369. if (utemp & POR_CEX4)
  370. {
  371. pB->i2eChannelMap[0] = 0x000f;
  372. } else {
  373. utemp &= POR_BOXES;
  374. for (itemp = 0; itemp < ilimit; itemp++)
  375. {
  376. pB->i2eChannelMap[itemp] = 
  377. ((utemp & POR_BOX_16) ? 0xffff : 0x00ff);
  378. utemp >>= 1;
  379. }
  380. }
  381. // These are based on what P.O.S.T actually found.
  382. utemp = (pB->i2ePom.e.porPorts2 << 8) + pB->i2ePom.e.porPorts1;
  383. for (itemp = 0; itemp < ilimit; itemp++)
  384. {
  385. pB->i2eGoodMap[itemp] = 0;
  386. if (utemp & 1) pB->i2eGoodMap[itemp] |= 0x000f;
  387. if (utemp & 2) pB->i2eGoodMap[itemp] |= 0x00f0;
  388. if (utemp & 4) pB->i2eGoodMap[itemp] |= 0x0f00;
  389. if (utemp & 8) pB->i2eGoodMap[itemp] |= 0xf000;
  390. utemp >>= 4;
  391. }
  392. // Now determine whether we should transfer in 8 or 16-bit mode.
  393. switch (pB->i2ePom.e.porBus & (POR_BUS_SLOT16 | POR_BUS_DIP16) )
  394. {
  395. case POR_BUS_SLOT16 | POR_BUS_DIP16:
  396. pB->i2eDataWidth16 = YES;
  397. pB->i2eMaxIrq = 15;
  398. break;
  399. case POR_BUS_SLOT16:
  400. pB->i2eDataWidth16 = NO;
  401. pB->i2eMaxIrq = 15;
  402. break;
  403. case 0:
  404. case POR_BUS_DIP16:     // In an 8-bit slot, DIP switch don't care.
  405. default:
  406. pB->i2eDataWidth16 = NO;
  407. pB->i2eMaxIrq = 7;
  408. break;
  409. }
  410. break;   // POR_ID_FIIEX case
  411. default:    // Unknown type of board
  412. COMPLETE(pB, I2EE_BAD_FAMILY);
  413. break;
  414. }  // End the switch based on family
  415. // Temporarily, claim there is no room in the outbound fifo. 
  416. // We will maintain this whenever we check for an empty outbound FIFO.
  417. pB->i2eFifoRemains = 0;
  418. // Now, based on the bus type, should we expect to be able to re-configure
  419. // interrupts (say, for testing purposes).
  420. switch (pB->i2ePom.e.porBus & POR_BUS_TYPE)
  421. {
  422. case POR_BUS_T_ISA:
  423. case POR_BUS_T_UNK:  // If the type of bus is undeclared, assume ok.
  424. pB->i2eChangeIrq = YES;
  425. break;
  426. case POR_BUS_T_MCA:
  427. case POR_BUS_T_EISA:
  428. pB->i2eChangeIrq = NO;
  429. break;
  430. default:
  431. COMPLETE(pB, I2EE_BADBUS);
  432. }
  433. if (pB->i2eDataWidth16 == YES)
  434. {
  435. pB->i2eWriteBuf  = iiWriteBuf16;
  436. pB->i2eReadBuf   = iiReadBuf16;
  437. pB->i2eWriteWord = iiWriteWord16;
  438. pB->i2eReadWord  = iiReadWord16;
  439. } else {
  440. pB->i2eWriteBuf  = iiWriteBuf8;
  441. pB->i2eReadBuf   = iiReadBuf8;
  442. pB->i2eWriteWord = iiWriteWord8;
  443. pB->i2eReadWord  = iiReadWord8;
  444. }
  445. switch(pB->i2eFifoStyle)
  446. {
  447. case FIFO_II:
  448. pB->i2eWaitForTxEmpty = iiWaitForTxEmptyII;
  449. pB->i2eTxMailEmpty    = iiTxMailEmptyII;
  450. pB->i2eTrySendMail    = iiTrySendMailII;
  451. pB->i2eGetMail        = iiGetMailII;
  452. pB->i2eEnableMailIrq  = iiEnableMailIrqII;
  453. pB->i2eWriteMask      = iiWriteMaskII;
  454. break;
  455. case FIFO_IIEX:
  456. pB->i2eWaitForTxEmpty = iiWaitForTxEmptyIIEX;
  457. pB->i2eTxMailEmpty    = iiTxMailEmptyIIEX;
  458. pB->i2eTrySendMail    = iiTrySendMailIIEX;
  459. pB->i2eGetMail        = iiGetMailIIEX;
  460. pB->i2eEnableMailIrq  = iiEnableMailIrqIIEX;
  461. pB->i2eWriteMask      = iiWriteMaskIIEX;
  462. break;
  463. default:
  464. COMPLETE(pB, I2EE_INCONSIST);
  465. }
  466. // Initialize state information.
  467. pB->i2eState = II_STATE_READY;   // Ready to load loadware.
  468. // Some Final cleanup:
  469. // For some boards, the bootstrap firmware may perform some sort of test
  470. // resulting in a stray character pending in the incoming mailbox. If one is
  471. // there, it should be read and discarded, especially since for the standard
  472. // firmware, it's the mailbox that interrupts the host.
  473. pB->i2eStartMail = iiGetMail(pB);
  474. // Throw it away and clear the mailbox structure element
  475. pB->i2eStartMail = NO_MAIL_HERE;
  476. // Everything is ok now, return with good status/
  477. pB->i2eValid = I2E_MAGIC;
  478. COMPLETE(pB, I2EE_GOOD);
  479. }
  480. //=======================================================
  481. // Delay Routines
  482. //
  483. // iiDelayIO
  484. // iiNop
  485. //=======================================================
  486. static void
  487. ii2DelayWakeup(unsigned long id)
  488. {
  489. wake_up_interruptible ( &pDelayWait );
  490. }
  491. //******************************************************************************
  492. // Function:   ii2DelayTimer(mseconds)
  493. // Parameters: mseconds - number of milliseconds to delay
  494. //
  495. // Returns:    Nothing
  496. //
  497. // Description:
  498. //
  499. // This routine delays for approximately mseconds milliseconds and is intended
  500. // to be called indirectly through i2Delay field in i2eBordStr. It uses the
  501. // Linux timer_list mechanism.
  502. //
  503. // The Linux timers use a unit called "jiffies" which are 10mS in the Intel
  504. // architecture. This function rounds the delay period up to the next "jiffy".
  505. // In the Alpha architecture the "jiffy" is 1mS, but this driver is not intended
  506. // for Alpha platforms at this time.
  507. //
  508. //******************************************************************************
  509. static void
  510. ii2DelayTimer(unsigned int mseconds)
  511. {
  512. wait_queue_t wait;
  513. init_waitqueue_entry(&wait, current);
  514. init_timer ( pDelayTimer );
  515. add_wait_queue(&pDelayWait, &wait);
  516. set_current_state( TASK_INTERRUPTIBLE );
  517. pDelayTimer->expires  = jiffies + ( mseconds + 9 ) / 10;
  518. pDelayTimer->function = ii2DelayWakeup;
  519. pDelayTimer->data     = 0;
  520. add_timer ( pDelayTimer );
  521. schedule();
  522. set_current_state( TASK_RUNNING );
  523. remove_wait_queue(&pDelayWait, &wait);
  524. del_timer ( pDelayTimer );
  525. }
  526. #if 0
  527. //static void ii2DelayIO(unsigned int);
  528. //******************************************************************************
  529. // !!! Not Used, this is DOS crap, some of you young folks may be interested in
  530. //     in how things were done in the stone age of caculating machines       !!!
  531. // Function:   ii2DelayIO(mseconds)
  532. // Parameters: mseconds - number of milliseconds to delay
  533. //
  534. // Returns:    Nothing
  535. //
  536. // Description:
  537. //
  538. // This routine delays for approximately mseconds milliseconds and is intended
  539. // to be called indirectly through i2Delay field in i2eBordStr. It is intended
  540. // for use where a clock-based function is impossible: for example, DOS drivers.
  541. //
  542. // This function uses the IN instruction to place bounds on the timing and
  543. // assumes that ii2Safe has been set. This is because I/O instructions are not
  544. // subject to caching and will therefore take a certain minimum time. To ensure
  545. // the delay is at least long enough on fast machines, it is based on some
  546. // fastest-case calculations.  On slower machines this may cause VERY long
  547. // delays. (3 x fastest case). In the fastest case, everything is cached except
  548. // the I/O instruction itself.
  549. //
  550. // Timing calculations:
  551. // The fastest bus speed for I/O operations is likely to be 10 MHz. The I/O
  552. // operation in question is a byte operation to an odd address. For 8-bit
  553. // operations, the architecture generally enforces two wait states. At 10 MHz, a
  554. // single cycle time is 100nS. A read operation at two wait states takes 6
  555. // cycles for a total time of 600nS. Therefore approximately 1666 iterations
  556. // would be required to generate a single millisecond delay. The worst
  557. // (reasonable) case would be an 8MHz system with no cacheing. In this case, the
  558. // I/O instruction would take 125nS x 6 cyles = 750 nS. More importantly, code
  559. // fetch of other instructions in the loop would take time (zero wait states,
  560. // however) and would be hard to estimate. This is minimized by using in-line
  561. // assembler for the in inner loop of IN instructions. This consists of just a
  562. // few bytes. So we'll guess about four code fetches per loop. Each code fetch
  563. // should take four cycles, so we have 125nS * 8 = 1000nS. Worst case then is
  564. // that what should have taken 1 mS takes instead 1666 * (1750) = 2.9 mS.
  565. //
  566. // So much for theoretical timings: results using 1666 value on some actual
  567. // machines:
  568. // IBM      286      6MHz     3.15 mS
  569. // Zenith   386      33MHz    2.45 mS
  570. // (brandX) 386      33MHz    1.90 mS  (has cache)
  571. // (brandY) 486      33MHz    2.35 mS
  572. // NCR      486      ??       1.65 mS (microchannel)
  573. //
  574. // For most machines, it is probably safe to scale this number back (remember,
  575. // for robust operation use an actual timed delay if possible), so we are using
  576. // a value of 1190. This yields 1.17 mS for the fastest machine in our sample,
  577. // 1.75 mS for typical 386 machines, and 2.25 mS the absolute slowest machine.
  578. //
  579. // 1/29/93:
  580. // The above timings are too slow. Actual cycle times might be faster. ISA cycle
  581. // times could approach 500 nS, and ...
  582. // The IBM model 77 being microchannel has no wait states for 8-bit reads and
  583. // seems to be accessing the I/O at 440 nS per access (from start of one to
  584. // start of next). This would imply we need 1000/.440 = 2272 iterations to
  585. // guarantee we are fast enough. In actual testing, we see that 2 * 1190 are in
  586. // fact enough. For diagnostics, we keep the level at 1190, but developers note
  587. // this needs tuning.
  588. //
  589. // Safe assumption:  2270 i/o reads = 1 millisecond
  590. //
  591. //******************************************************************************
  592. static int ii2DelValue = 1190;  // See timing calculations below
  593. // 1666 for fastest theoretical machine
  594. // 1190 safe for most fast 386 machines
  595. // 1000 for fastest machine tested here
  596. //  540 (sic) for AT286/6Mhz
  597. static void
  598. ii2DelayIO(unsigned int mseconds)
  599. {
  600. if (!ii2Safe) 
  601. return;   /* Do nothing if this variable uninitialized */
  602. while(mseconds--) {
  603. int i = ii2DelValue;
  604. while ( i-- ) {
  605. INB ( ii2Safe );
  606. }
  607. }
  608. }
  609. #endif 
  610. //******************************************************************************
  611. // Function:   ii2Nop()
  612. // Parameters: None
  613. //
  614. // Returns:    Nothing
  615. //
  616. // Description:
  617. //
  618. // iiInitialize will set i2eDelay to this if the delay parameter is NULL. This
  619. // saves checking for a NULL pointer at every call.
  620. //******************************************************************************
  621. static void
  622. ii2Nop(void)
  623. {
  624. return; // no mystery here
  625. }
  626. //=======================================================
  627. // Routines which are available in 8/16-bit versions, or
  628. // in different fifo styles. These are ALL called
  629. // indirectly through the board structure.
  630. //=======================================================
  631. //******************************************************************************
  632. // Function:   iiWriteBuf16(pB, address, count)
  633. // Parameters: pB      - pointer to board structure
  634. //             address - address of data to write
  635. //             count   - number of data bytes to write
  636. //
  637. // Returns:    True if everything appears copacetic.
  638. //             False if there is any error: the pB->i2eError field has the error
  639. //
  640. // Description:
  641. //
  642. // Writes 'count' bytes from 'address' to the data fifo specified by the board
  643. // structure pointer pB. Should count happen to be odd, an extra pad byte is
  644. // sent (identity unknown...). Uses 16-bit (word) operations. Is called
  645. // indirectly through pB->i2eWriteBuf.
  646. //
  647. //******************************************************************************
  648. static int
  649. iiWriteBuf16(i2eBordStrPtr pB, unsigned char *address, int count)
  650. {
  651. // Rudimentary sanity checking here.
  652. if (pB->i2eValid != I2E_MAGIC)
  653. COMPLETE(pB, I2EE_INVALID);
  654. OUTSW ( pB->i2eData, address, count);
  655. COMPLETE(pB, I2EE_GOOD);
  656. }
  657. //******************************************************************************
  658. // Function:   iiWriteBuf8(pB, address, count)
  659. // Parameters: pB      - pointer to board structure
  660. //             address - address of data to write
  661. //             count   - number of data bytes to write
  662. //
  663. // Returns:    True if everything appears copacetic.
  664. //             False if there is any error: the pB->i2eError field has the error
  665. //
  666. // Description:
  667. //
  668. // Writes 'count' bytes from 'address' to the data fifo specified by the board
  669. // structure pointer pB. Should count happen to be odd, an extra pad byte is
  670. // sent (identity unknown...). This is to be consistant with the 16-bit version.
  671. // Uses 8-bit (byte) operations. Is called indirectly through pB->i2eWriteBuf.
  672. //
  673. //******************************************************************************
  674. static int
  675. iiWriteBuf8(i2eBordStrPtr pB, unsigned char *address, int count)
  676. {
  677. /* Rudimentary sanity checking here */
  678. if (pB->i2eValid != I2E_MAGIC)
  679. COMPLETE(pB, I2EE_INVALID);
  680. OUTSB ( pB->i2eData, address, count );
  681. COMPLETE(pB, I2EE_GOOD);
  682. }
  683. //******************************************************************************
  684. // Function:   iiReadBuf16(pB, address, count)
  685. // Parameters: pB      - pointer to board structure
  686. //             address - address to put data read
  687. //             count   - number of data bytes to read
  688. //
  689. // Returns:    True if everything appears copacetic.
  690. //             False if there is any error: the pB->i2eError field has the error
  691. //
  692. // Description:
  693. //
  694. // Reads 'count' bytes into 'address' from the data fifo specified by the board
  695. // structure pointer pB. Should count happen to be odd, an extra pad byte is
  696. // received (identity unknown...). Uses 16-bit (word) operations. Is called
  697. // indirectly through pB->i2eReadBuf.
  698. //
  699. //******************************************************************************
  700. static int
  701. iiReadBuf16(i2eBordStrPtr pB, unsigned char *address, int count)
  702. {
  703. // Rudimentary sanity checking here.
  704. if (pB->i2eValid != I2E_MAGIC)
  705. COMPLETE(pB, I2EE_INVALID);
  706. INSW ( pB->i2eData, address, count);
  707. COMPLETE(pB, I2EE_GOOD);
  708. }
  709. //******************************************************************************
  710. // Function:   iiReadBuf8(pB, address, count)
  711. // Parameters: pB      - pointer to board structure
  712. //             address - address to put data read
  713. //             count   - number of data bytes to read
  714. //
  715. // Returns:    True if everything appears copacetic.
  716. //             False if there is any error: the pB->i2eError field has the error
  717. //
  718. // Description:
  719. //
  720. // Reads 'count' bytes into 'address' from the data fifo specified by the board
  721. // structure pointer pB. Should count happen to be odd, an extra pad byte is
  722. // received (identity unknown...). This to match the 16-bit behaviour. Uses
  723. // 8-bit (byte) operations. Is called indirectly through pB->i2eReadBuf.
  724. //
  725. //******************************************************************************
  726. static int
  727. iiReadBuf8(i2eBordStrPtr pB, unsigned char *address, int count)
  728. {
  729. // Rudimentary sanity checking here.
  730. if (pB->i2eValid != I2E_MAGIC)
  731. COMPLETE(pB, I2EE_INVALID);
  732. INSB ( pB->i2eData, address, count);
  733. COMPLETE(pB, I2EE_GOOD);
  734. }
  735. //******************************************************************************
  736. // Function:   iiReadWord16(pB)
  737. // Parameters: pB      - pointer to board structure
  738. //
  739. // Returns:    True if everything appears copacetic.
  740. //             False if there is any error: the pB->i2eError field has the error
  741. //
  742. // Description:
  743. //
  744. // Returns the word read from the data fifo specified by the board-structure
  745. // pointer pB. Uses a 16-bit operation. Is called indirectly through
  746. // pB->i2eReadWord.
  747. //
  748. //******************************************************************************
  749. static unsigned short
  750. iiReadWord16(i2eBordStrPtr pB)
  751. {
  752. return (unsigned short)( INW(pB->i2eData) );
  753. }
  754. //******************************************************************************
  755. // Function:   iiReadWord8(pB)
  756. // Parameters: pB      - pointer to board structure
  757. //
  758. // Returns:    True if everything appears copacetic.
  759. //             False if there is any error: the pB->i2eError field has the error
  760. //
  761. // Description:
  762. //
  763. // Returns the word read from the data fifo specified by the board-structure
  764. // pointer pB. Uses two 8-bit operations. Bytes are assumed to be LSB first. Is
  765. // called indirectly through pB->i2eReadWord.
  766. //
  767. //******************************************************************************
  768. static unsigned short
  769. iiReadWord8(i2eBordStrPtr pB)
  770. {
  771. unsigned short urs;
  772. urs = INB ( pB->i2eData );
  773. return ( ( INB ( pB->i2eData ) << 8 ) | urs );
  774. }
  775. //******************************************************************************
  776. // Function:   iiWriteWord16(pB, value)
  777. // Parameters: pB    - pointer to board structure
  778. //             value - data to write
  779. //
  780. // Returns:    True if everything appears copacetic.
  781. //             False if there is any error: the pB->i2eError field has the error
  782. //
  783. // Description:
  784. //
  785. // Writes the word 'value' to the data fifo specified by the board-structure
  786. // pointer pB. Uses 16-bit operation. Is called indirectly through
  787. // pB->i2eWriteWord.
  788. //
  789. //******************************************************************************
  790. static void
  791. iiWriteWord16(i2eBordStrPtr pB, unsigned short value)
  792. {
  793. WORD_TO(pB, (int)value);
  794. }
  795. //******************************************************************************
  796. // Function:   iiWriteWord8(pB, value)
  797. // Parameters: pB    - pointer to board structure
  798. //             value - data to write
  799. //
  800. // Returns:    True if everything appears copacetic.
  801. //             False if there is any error: the pB->i2eError field has the error
  802. //
  803. // Description:
  804. //
  805. // Writes the word 'value' to the data fifo specified by the board-structure
  806. // pointer pB. Uses two 8-bit operations (writes LSB first). Is called
  807. // indirectly through pB->i2eWriteWord.
  808. //
  809. //******************************************************************************
  810. static void
  811. iiWriteWord8(i2eBordStrPtr pB, unsigned short value)
  812. {
  813. BYTE_TO(pB, (char)value);
  814. BYTE_TO(pB, (char)(value >> 8) );
  815. }
  816. //******************************************************************************
  817. // Function:   iiWaitForTxEmptyII(pB, mSdelay)
  818. // Parameters: pB      - pointer to board structure
  819. //             mSdelay - period to wait before returning
  820. //
  821. // Returns:    True if the FIFO is empty.
  822. //             False if it not empty in the required time: the pB->i2eError
  823. //             field has the error.
  824. //
  825. // Description:
  826. //
  827. // Waits up to "mSdelay" milliseconds for the outgoing FIFO to become empty; if
  828. // not empty by the required time, returns false and error in pB->i2eError,
  829. // otherwise returns true.
  830. //
  831. // mSdelay == 0 is taken to mean must be empty on the first test.
  832. //
  833. // This version operates on IntelliPort-II - style FIFO's
  834. //
  835. // Note this routine is organized so that if status is ok there is no delay at
  836. // all called either before or after the test.  Is called indirectly through
  837. // pB->i2eWaitForTxEmpty.
  838. //
  839. //******************************************************************************
  840. static int
  841. iiWaitForTxEmptyII(i2eBordStrPtr pB, int mSdelay)
  842. {
  843. unsigned long flags;
  844. int itemp;
  845. for (;;)
  846. {
  847. // This routine hinges on being able to see the "other" status register
  848. // (as seen by the local processor).  His incoming fifo is our outgoing
  849. // FIFO.
  850. //
  851. // By the nature of this routine, you would be using this as part of a
  852. // larger atomic context: i.e., you would use this routine to ensure the
  853. // fifo empty, then act on this information. Between these two halves, 
  854. // you will generally not want to service interrupts or in any way 
  855. // disrupt the assumptions implicit in the larger context.
  856. //
  857. // Even worse, however, this routine "shifts" the status register to 
  858. // point to the local status register which is not the usual situation.
  859. // Therefore for extra safety, we force the critical section to be
  860. // completely atomic, and pick up after ourselves before allowing any
  861. // interrupts of any kind.
  862. WRITE_LOCK_IRQSAVE(&Dl_spinlock,flags)
  863. OUTB(pB->i2ePointer, SEL_COMMAND);
  864. OUTB(pB->i2ePointer, SEL_CMD_SH);
  865. itemp = INB(pB->i2eStatus);
  866. OUTB(pB->i2ePointer, SEL_COMMAND);
  867. OUTB(pB->i2ePointer, SEL_CMD_UNSH);
  868. if (itemp & ST_IN_EMPTY)
  869. {
  870. UPDATE_FIFO_ROOM(pB);
  871. WRITE_UNLOCK_IRQRESTORE(&Dl_spinlock,flags)
  872. COMPLETE(pB, I2EE_GOOD);
  873. }
  874. WRITE_UNLOCK_IRQRESTORE(&Dl_spinlock,flags)
  875. if (mSdelay-- == 0)
  876. break;
  877. iiDelay(pB, 1);      /* 1 mS granularity on checking condition */
  878. }
  879. COMPLETE(pB, I2EE_TXE_TIME);
  880. }
  881. //******************************************************************************
  882. // Function:   iiWaitForTxEmptyIIEX(pB, mSdelay)
  883. // Parameters: pB      - pointer to board structure
  884. //             mSdelay - period to wait before returning
  885. //
  886. // Returns:    True if the FIFO is empty.
  887. //             False if it not empty in the required time: the pB->i2eError
  888. //             field has the error.
  889. //
  890. // Description:
  891. //
  892. // Waits up to "mSdelay" milliseconds for the outgoing FIFO to become empty; if
  893. // not empty by the required time, returns false and error in pB->i2eError,
  894. // otherwise returns true.
  895. //
  896. // mSdelay == 0 is taken to mean must be empty on the first test.
  897. //
  898. // This version operates on IntelliPort-IIEX - style FIFO's
  899. //
  900. // Note this routine is organized so that if status is ok there is no delay at
  901. // all called either before or after the test.  Is called indirectly through
  902. // pB->i2eWaitForTxEmpty.
  903. //
  904. //******************************************************************************
  905. static int
  906. iiWaitForTxEmptyIIEX(i2eBordStrPtr pB, int mSdelay)
  907. {
  908. unsigned long flags;
  909. for (;;)
  910. {
  911. // By the nature of this routine, you would be using this as part of a
  912. // larger atomic context: i.e., you would use this routine to ensure the
  913. // fifo empty, then act on this information. Between these two halves,
  914. // you will generally not want to service interrupts or in any way
  915. // disrupt the assumptions implicit in the larger context.
  916. WRITE_LOCK_IRQSAVE(&Dl_spinlock,flags)
  917. if (INB(pB->i2eStatus) & STE_OUT_MT) {
  918. UPDATE_FIFO_ROOM(pB);
  919. WRITE_UNLOCK_IRQRESTORE(&Dl_spinlock,flags)
  920. COMPLETE(pB, I2EE_GOOD);
  921. }
  922. WRITE_UNLOCK_IRQRESTORE(&Dl_spinlock,flags)
  923. if (mSdelay-- == 0)
  924. break;
  925. iiDelay(pB, 1);      // 1 mS granularity on checking condition
  926. }
  927. COMPLETE(pB, I2EE_TXE_TIME);
  928. }
  929. //******************************************************************************
  930. // Function:   iiTxMailEmptyII(pB)
  931. // Parameters: pB      - pointer to board structure
  932. //
  933. // Returns:    True if the transmit mailbox is empty.
  934. //             False if it not empty.
  935. //
  936. // Description:
  937. //
  938. // Returns true or false according to whether the transmit mailbox is empty (and
  939. // therefore able to accept more mail)
  940. //
  941. // This version operates on IntelliPort-II - style FIFO's
  942. //
  943. //******************************************************************************
  944. static int
  945. iiTxMailEmptyII(i2eBordStrPtr pB)
  946. {
  947. int port = pB->i2ePointer;
  948. OUTB ( port, SEL_OUTMAIL );
  949. return ( INB(port) == 0 );
  950. }
  951. //******************************************************************************
  952. // Function:   iiTxMailEmptyIIEX(pB)
  953. // Parameters: pB      - pointer to board structure
  954. //
  955. // Returns:    True if the transmit mailbox is empty.
  956. //             False if it not empty.
  957. //
  958. // Description:
  959. //
  960. // Returns true or false according to whether the transmit mailbox is empty (and
  961. // therefore able to accept more mail)
  962. //
  963. // This version operates on IntelliPort-IIEX - style FIFO's
  964. //
  965. //******************************************************************************
  966. static int
  967. iiTxMailEmptyIIEX(i2eBordStrPtr pB)
  968. {
  969. return !(INB(pB->i2eStatus) & STE_OUT_MAIL);
  970. }
  971. //******************************************************************************
  972. // Function:   iiTrySendMailII(pB,mail)
  973. // Parameters: pB   - pointer to board structure
  974. //             mail - value to write to mailbox
  975. //
  976. // Returns:    True if the transmit mailbox is empty, and mail is sent.
  977. //             False if it not empty.
  978. //
  979. // Description:
  980. //
  981. // If outgoing mailbox is empty, sends mail and returns true. If outgoing
  982. // mailbox is not empty, returns false.
  983. //
  984. // This version operates on IntelliPort-II - style FIFO's
  985. //
  986. //******************************************************************************
  987. static int
  988. iiTrySendMailII(i2eBordStrPtr pB, unsigned char mail)
  989. {
  990. int port = pB->i2ePointer;
  991. OUTB(port, SEL_OUTMAIL);
  992. if (INB(port) == 0) {
  993. OUTB(port, SEL_OUTMAIL);
  994. OUTB(port, mail);
  995. return 1;
  996. }
  997. return 0;
  998. }
  999. //******************************************************************************
  1000. // Function:   iiTrySendMailIIEX(pB,mail)
  1001. // Parameters: pB   - pointer to board structure
  1002. //             mail - value to write to mailbox
  1003. //
  1004. // Returns:    True if the transmit mailbox is empty, and mail is sent.
  1005. //             False if it not empty.
  1006. //
  1007. // Description:
  1008. //
  1009. // If outgoing mailbox is empty, sends mail and returns true. If outgoing
  1010. // mailbox is not empty, returns false.
  1011. //
  1012. // This version operates on IntelliPort-IIEX - style FIFO's
  1013. //
  1014. //******************************************************************************
  1015. static int
  1016. iiTrySendMailIIEX(i2eBordStrPtr pB, unsigned char mail)
  1017. {
  1018. if(INB(pB->i2eStatus) & STE_OUT_MAIL) {
  1019. return 0;
  1020. }
  1021. OUTB(pB->i2eXMail, mail);
  1022. return 1;
  1023. }
  1024. //******************************************************************************
  1025. // Function:   iiGetMailII(pB,mail)
  1026. // Parameters: pB   - pointer to board structure
  1027. //
  1028. // Returns:    Mailbox data or NO_MAIL_HERE.
  1029. //
  1030. // Description:
  1031. //
  1032. // If no mail available, returns NO_MAIL_HERE otherwise returns the data from
  1033. // the mailbox, which is guaranteed != NO_MAIL_HERE.
  1034. //
  1035. // This version operates on IntelliPort-II - style FIFO's
  1036. //
  1037. //******************************************************************************
  1038. static unsigned short
  1039. iiGetMailII(i2eBordStrPtr pB)
  1040. {
  1041. if (HAS_MAIL(pB)) {
  1042. OUTB(pB->i2ePointer, SEL_INMAIL);
  1043. return INB(pB->i2ePointer);
  1044. } else {
  1045. return NO_MAIL_HERE;
  1046. }
  1047. }
  1048. //******************************************************************************
  1049. // Function:   iiGetMailIIEX(pB,mail)
  1050. // Parameters: pB   - pointer to board structure
  1051. //
  1052. // Returns:    Mailbox data or NO_MAIL_HERE.
  1053. //
  1054. // Description:
  1055. //
  1056. // If no mail available, returns NO_MAIL_HERE otherwise returns the data from
  1057. // the mailbox, which is guaranteed != NO_MAIL_HERE.
  1058. //
  1059. // This version operates on IntelliPort-IIEX - style FIFO's
  1060. //
  1061. //******************************************************************************
  1062. static unsigned short
  1063. iiGetMailIIEX(i2eBordStrPtr pB)
  1064. {
  1065. if (HAS_MAIL(pB)) {
  1066. return INB(pB->i2eXMail);
  1067. } else {
  1068. return NO_MAIL_HERE;
  1069. }
  1070. }
  1071. //******************************************************************************
  1072. // Function:   iiEnableMailIrqII(pB)
  1073. // Parameters: pB - pointer to board structure
  1074. //
  1075. // Returns:    Nothing
  1076. //
  1077. // Description:
  1078. //
  1079. // Enables board to interrupt host (only) by writing to host's in-bound mailbox.
  1080. //
  1081. // This version operates on IntelliPort-II - style FIFO's
  1082. //
  1083. //******************************************************************************
  1084. static void
  1085. iiEnableMailIrqII(i2eBordStrPtr pB)
  1086. {
  1087. OUTB(pB->i2ePointer, SEL_MASK);
  1088. OUTB(pB->i2ePointer, ST_IN_MAIL);
  1089. }
  1090. //******************************************************************************
  1091. // Function:   iiEnableMailIrqIIEX(pB)
  1092. // Parameters: pB - pointer to board structure
  1093. //
  1094. // Returns:    Nothing
  1095. //
  1096. // Description:
  1097. //
  1098. // Enables board to interrupt host (only) by writing to host's in-bound mailbox.
  1099. //
  1100. // This version operates on IntelliPort-IIEX - style FIFO's
  1101. //
  1102. //******************************************************************************
  1103. static void
  1104. iiEnableMailIrqIIEX(i2eBordStrPtr pB)
  1105. {
  1106. OUTB(pB->i2eXMask, MX_IN_MAIL);
  1107. }
  1108. //******************************************************************************
  1109. // Function:   iiWriteMaskII(pB)
  1110. // Parameters: pB - pointer to board structure
  1111. //
  1112. // Returns:    Nothing
  1113. //
  1114. // Description:
  1115. //
  1116. // Writes arbitrary value to the mask register.
  1117. //
  1118. // This version operates on IntelliPort-II - style FIFO's
  1119. //
  1120. //******************************************************************************
  1121. static void
  1122. iiWriteMaskII(i2eBordStrPtr pB, unsigned char value)
  1123. {
  1124. OUTB(pB->i2ePointer, SEL_MASK);
  1125. OUTB(pB->i2ePointer, value);
  1126. }
  1127. //******************************************************************************
  1128. // Function:   iiWriteMaskIIEX(pB)
  1129. // Parameters: pB - pointer to board structure
  1130. //
  1131. // Returns:    Nothing
  1132. //
  1133. // Description:
  1134. //
  1135. // Writes arbitrary value to the mask register.
  1136. //
  1137. // This version operates on IntelliPort-IIEX - style FIFO's
  1138. //
  1139. //******************************************************************************
  1140. static void
  1141. iiWriteMaskIIEX(i2eBordStrPtr pB, unsigned char value)
  1142. {
  1143. OUTB(pB->i2eXMask, value);
  1144. }
  1145. //******************************************************************************
  1146. // Function:   iiDownloadBlock(pB, pSource, isStandard)
  1147. // Parameters: pB         - pointer to board structure
  1148. //             pSource    - loadware block to download
  1149. //             isStandard - True if "standard" loadware, else false.
  1150. //
  1151. // Returns:    Success or Failure
  1152. //
  1153. // Description:
  1154. //
  1155. // Downloads a single block (at pSource)to the board referenced by pB. Caller
  1156. // sets isStandard to true/false according to whether the "standard" loadware is
  1157. // what's being loaded. The normal process, then, is to perform an iiInitialize
  1158. // to the board, then perform some number of iiDownloadBlocks using the returned
  1159. // state to determine when download is complete.
  1160. //
  1161. // Possible return values: (see I2ELLIS.H)
  1162. // II_DOWN_BADVALID
  1163. // II_DOWN_BADFILE
  1164. // II_DOWN_CONTINUING
  1165. // II_DOWN_GOOD
  1166. // II_DOWN_BAD
  1167. // II_DOWN_BADSTATE
  1168. // II_DOWN_TIMEOUT
  1169. //
  1170. // Uses the i2eState and i2eToLoad fields (initialized at iiInitialize) to
  1171. // determine whether this is the first block, whether to check for magic
  1172. // numbers, how many blocks there are to go...
  1173. //
  1174. //******************************************************************************
  1175. static int
  1176. iiDownloadBlock ( i2eBordStrPtr pB, loadHdrStrPtr pSource, int isStandard)
  1177. {
  1178. int itemp;
  1179. int loadedFirst;
  1180. if (pB->i2eValid != I2E_MAGIC) return II_DOWN_BADVALID;
  1181. switch(pB->i2eState)
  1182. {
  1183. case II_STATE_READY:
  1184. // Loading the first block after reset. Must check the magic number of the
  1185. // loadfile, store the number of blocks we expect to load.
  1186. if (pSource->e.loadMagic != MAGIC_LOADFILE)
  1187. {
  1188. return II_DOWN_BADFILE;
  1189. }
  1190. // Next we store the total number of blocks to load, including this one.
  1191. pB->i2eToLoad = 1 + pSource->e.loadBlocksMore;
  1192. // Set the state, store the version numbers. ('Cause this may have come
  1193. // from a file - we might want to report these versions and revisions in
  1194. // case of an error!
  1195. pB->i2eState = II_STATE_LOADING;
  1196. pB->i2eLVersion = pSource->e.loadVersion;
  1197. pB->i2eLRevision = pSource->e.loadRevision;
  1198. pB->i2eLSub = pSource->e.loadSubRevision;
  1199. // The time and date of compilation is also available but don't bother
  1200. // storing it for normal purposes.
  1201. loadedFirst = 1;
  1202. break;
  1203. case II_STATE_LOADING:
  1204. loadedFirst = 0;
  1205. break;
  1206. default:
  1207. return II_DOWN_BADSTATE;
  1208. }
  1209. // Now we must be in the II_STATE_LOADING state, and we assume i2eToLoad
  1210. // must be positive still, because otherwise we would have cleaned up last
  1211. // time and set the state to II_STATE_LOADED.
  1212. if (!iiWaitForTxEmpty(pB, MAX_DLOAD_READ_TIME)) {
  1213. return II_DOWN_TIMEOUT;
  1214. }
  1215. if (!iiWriteBuf(pB, pSource->c, LOADWARE_BLOCK_SIZE)) {
  1216. return II_DOWN_BADVALID;
  1217. }
  1218. // If we just loaded the first block, wait for the fifo to empty an extra
  1219. // long time to allow for any special startup code in the firmware, like
  1220. // sending status messages to the LCD's.
  1221. if (loadedFirst) {
  1222. if (!iiWaitForTxEmpty(pB, MAX_DLOAD_START_TIME)) {
  1223. return II_DOWN_TIMEOUT;
  1224. }
  1225. }
  1226. // Determine whether this was our last block!
  1227. if (--(pB->i2eToLoad)) {
  1228. return II_DOWN_CONTINUING;    // more to come...
  1229. }
  1230. // It WAS our last block: Clean up operations...
  1231. // ...Wait for last buffer to drain from the board...
  1232. if (!iiWaitForTxEmpty(pB, MAX_DLOAD_READ_TIME)) {
  1233. return II_DOWN_TIMEOUT;
  1234. }
  1235. // If there were only a single block written, this would come back
  1236. // immediately and be harmless, though not strictly necessary.
  1237. itemp = MAX_DLOAD_ACK_TIME/10;
  1238. while (--itemp) {
  1239. if (HAS_INPUT(pB)) {
  1240. switch(BYTE_FROM(pB))
  1241. {
  1242. case LOADWARE_OK:
  1243. pB->i2eState =
  1244. isStandard ? II_STATE_STDLOADED :II_STATE_LOADED;
  1245. // Some revisions of the bootstrap firmware (e.g. ISA-8 1.0.2)
  1246. // will, // if there is a debug port attached, require some
  1247. // time to send information to the debug port now. It will do
  1248. // this before // executing any of the code we just downloaded.
  1249. // It may take up to 700 milliseconds.
  1250. if (pB->i2ePom.e.porDiag2 & POR_DEBUG_PORT) {
  1251. iiDelay(pB, 700);
  1252. }
  1253. return II_DOWN_GOOD;
  1254. case LOADWARE_BAD:
  1255. default:
  1256. return II_DOWN_BAD;
  1257. }
  1258. }
  1259. iiDelay(pB, 10);      // 10 mS granularity on checking condition
  1260. }
  1261. // Drop-through --> timed out waiting for firmware confirmation
  1262. pB->i2eState = II_STATE_BADLOAD;
  1263. return II_DOWN_TIMEOUT;
  1264. }
  1265. //******************************************************************************
  1266. // Function:   iiDownloadAll(pB, pSource, isStandard, size)
  1267. // Parameters: pB         - pointer to board structure
  1268. //             pSource    - loadware block to download
  1269. //             isStandard - True if "standard" loadware, else false.
  1270. //             size       - size of data to download (in bytes)
  1271. //
  1272. // Returns:    Success or Failure
  1273. //
  1274. // Description:
  1275. //
  1276. // Given a pointer to a board structure, a pointer to the beginning of some
  1277. // loadware, whether it is considered the "standard loadware", and the size of
  1278. // the array in bytes loads the entire array to the board as loadware.
  1279. //
  1280. // Assumes the board has been freshly reset and the power-up reset message read.
  1281. // (i.e., in II_STATE_READY). Complains if state is bad, or if there seems to be
  1282. // too much or too little data to load, or if iiDownloadBlock complains.
  1283. //******************************************************************************
  1284. static int
  1285. iiDownloadAll(i2eBordStrPtr pB, loadHdrStrPtr pSource, int isStandard, int size)
  1286. {
  1287. int status;
  1288. // We know (from context) board should be ready for the first block of
  1289. // download.  Complain if not.
  1290. if (pB->i2eState != II_STATE_READY) return II_DOWN_BADSTATE;
  1291. while (size > 0) {
  1292. size -= LOADWARE_BLOCK_SIZE; // How much data should there be left to
  1293. // load after the following operation ?
  1294. // Note we just bump pSource by "one", because its size is actually that
  1295. // of an entire block, same as LOADWARE_BLOCK_SIZE.
  1296. status = iiDownloadBlock(pB, pSource++, isStandard);
  1297. switch(status)
  1298. {
  1299. case II_DOWN_GOOD:
  1300. return ( (size > 0) ? II_DOWN_OVER : II_DOWN_GOOD);
  1301. case II_DOWN_CONTINUING:
  1302. break;
  1303. default:
  1304. return status;
  1305. }
  1306. }
  1307. // We shouldn't drop out: it means "while" caught us with nothing left to
  1308. // download, yet the previous DownloadBlock did not return complete. Ergo,
  1309. // not enough data to match the size byte in the header.
  1310. return II_DOWN_UNDER;
  1311. }