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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: boardergo.c,v 1.1.4.1 2001/11/20 14:19:37 kai Exp $
  2.  *
  3.  * Linux driver for HYSDN cards, specific routines for ergo type boards.
  4.  *
  5.  * Author    Werner Cornelius (werner@titro.de) for Hypercope GmbH
  6.  * Copyright 1999 by Werner Cornelius (werner@titro.de)
  7.  *
  8.  * This software may be used and distributed according to the terms
  9.  * of the GNU General Public License, incorporated herein by reference.
  10.  *
  11.  * As all Linux supported cards Champ2, Ergo and Metro2/4 use the same
  12.  * DPRAM interface and layout with only minor differences all related
  13.  * stuff is done here, not in separate modules.
  14.  *
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/sched.h>
  18. #include <linux/signal.h>
  19. #include <linux/kernel.h>
  20. #include <linux/ioport.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/vmalloc.h>
  23. #include <asm/io.h>
  24. #include "hysdn_defs.h"
  25. #include "boardergo.h"
  26. #define byteout(addr,val) outb(val,addr)
  27. #define bytein(addr) inb(addr)
  28. /***************************************************/
  29. /* The cards interrupt handler. Called from system */
  30. /***************************************************/
  31. static void
  32. ergo_interrupt(int intno, void *dev_id, struct pt_regs *regs)
  33. {
  34. hysdn_card *card = dev_id; /* parameter from irq */
  35. tErgDpram *dpr;
  36. ulong flags;
  37. uchar volatile b;
  38. if (!card)
  39. return; /* error -> spurious interrupt */
  40. if (!card->irq_enabled)
  41. return; /* other device interrupting or irq switched off */
  42. save_flags(flags);
  43. cli(); /* no further irqs allowed */
  44. if (!(bytein(card->iobase + PCI9050_INTR_REG) & PCI9050_INTR_REG_STAT1)) {
  45. restore_flags(flags); /* restore old state */
  46. return; /* no interrupt requested by E1 */
  47. }
  48. /* clear any pending ints on the board */
  49. dpr = card->dpram;
  50. b = dpr->ToPcInt; /* clear for ergo */
  51. b |= dpr->ToPcIntMetro; /* same for metro */
  52. b |= dpr->ToHyInt; /* and for champ */
  53. /* start kernel task immediately after leaving all interrupts */
  54. if (!card->hw_lock) {
  55. queue_task(&card->irq_queue, &tq_immediate);
  56. mark_bh(IMMEDIATE_BH);
  57. }
  58. restore_flags(flags);
  59. } /* ergo_interrupt */
  60. /******************************************************************************/
  61. /* ergo_irq_bh is the function called by the immediate kernel task list after */
  62. /* being activated with queue_task and no interrupts active. This task is the */
  63. /* only one handling data transfer from or to the card after booting. The task */
  64. /* may be queued from everywhere (interrupts included).                       */
  65. /******************************************************************************/
  66. static void
  67. ergo_irq_bh(hysdn_card * card)
  68. {
  69. tErgDpram *dpr;
  70. int again;
  71. ulong flags;
  72. if (card->state != CARD_STATE_RUN)
  73. return; /* invalid call */
  74. dpr = card->dpram; /* point to DPRAM */
  75. save_flags(flags);
  76. cli();
  77. if (card->hw_lock) {
  78. restore_flags(flags); /* hardware currently unavailable */
  79. return;
  80. }
  81. card->hw_lock = 1; /* we now lock the hardware */
  82. do {
  83. sti(); /* reenable other ints */
  84. again = 0; /* assume loop not to be repeated */
  85. if (!dpr->ToHyFlag) {
  86. /* we are able to send a buffer */
  87. if (hysdn_sched_tx(card, dpr->ToHyBuf, &dpr->ToHySize, &dpr->ToHyChannel,
  88.    ERG_TO_HY_BUF_SIZE)) {
  89. dpr->ToHyFlag = 1; /* enable tx */
  90. again = 1; /* restart loop */
  91. }
  92. } /* we are able to send a buffer */
  93. if (dpr->ToPcFlag) {
  94. /* a message has arrived for us, handle it */
  95. if (hysdn_sched_rx(card, dpr->ToPcBuf, dpr->ToPcSize, dpr->ToPcChannel)) {
  96. dpr->ToPcFlag = 0; /* we worked the data */
  97. again = 1; /* restart loop */
  98. }
  99. } /* a message has arrived for us */
  100. cli(); /* no further ints */
  101. if (again) {
  102. dpr->ToHyInt = 1;
  103. dpr->ToPcInt = 1; /* interrupt to E1 for all cards */
  104. } else
  105. card->hw_lock = 0; /* free hardware again */
  106. } while (again); /* until nothing more to do */
  107. restore_flags(flags);
  108. } /* ergo_irq_bh */
  109. /*********************************************************/
  110. /* stop the card (hardware reset) and disable interrupts */
  111. /*********************************************************/
  112. static void
  113. ergo_stopcard(hysdn_card * card)
  114. {
  115. ulong flags;
  116. uchar val;
  117. hysdn_net_release(card); /* first release the net device if existing */
  118. #ifdef CONFIG_HYSDN_CAPI
  119. hycapi_capi_stop(card);
  120. #endif /* CONFIG_HYSDN_CAPI */
  121. save_flags(flags);
  122. cli();
  123. val = bytein(card->iobase + PCI9050_INTR_REG); /* get actual value */
  124. val &= ~(PCI9050_INTR_REG_ENPCI | PCI9050_INTR_REG_EN1); /* mask irq */
  125. byteout(card->iobase + PCI9050_INTR_REG, val);
  126. card->irq_enabled = 0;
  127. byteout(card->iobase + PCI9050_USER_IO, PCI9050_E1_RESET); /* reset E1 processor */
  128. card->state = CARD_STATE_UNUSED;
  129. card->err_log_state = ERRLOG_STATE_OFF; /* currently no log active */
  130. restore_flags(flags);
  131. } /* ergo_stopcard */
  132. /**************************************************************************/
  133. /* enable or disable the cards error log. The event is queued if possible */
  134. /**************************************************************************/
  135. static void
  136. ergo_set_errlog_state(hysdn_card * card, int on)
  137. {
  138. ulong flags;
  139. if (card->state != CARD_STATE_RUN) {
  140. card->err_log_state = ERRLOG_STATE_OFF; /* must be off */
  141. return;
  142. }
  143. save_flags(flags);
  144. cli();
  145. if (((card->err_log_state == ERRLOG_STATE_OFF) && !on) ||
  146.     ((card->err_log_state == ERRLOG_STATE_ON) && on)) {
  147. restore_flags(flags);
  148. return; /* nothing to do */
  149. }
  150. if (on)
  151. card->err_log_state = ERRLOG_STATE_START; /* request start */
  152. else
  153. card->err_log_state = ERRLOG_STATE_STOP; /* request stop */
  154. restore_flags(flags);
  155. queue_task(&card->irq_queue, &tq_immediate);
  156. mark_bh(IMMEDIATE_BH);
  157. } /* ergo_set_errlog_state */
  158. /******************************************/
  159. /* test the cards RAM and return 0 if ok. */
  160. /******************************************/
  161. static const char TestText[36] = "This Message is filler, why read it";
  162. static int
  163. ergo_testram(hysdn_card * card)
  164. {
  165. tErgDpram *dpr = card->dpram;
  166. memset(dpr->TrapTable, 0, sizeof(dpr->TrapTable)); /* clear all Traps */
  167. dpr->ToHyInt = 1; /* E1 INTR state forced */
  168. memcpy(&dpr->ToHyBuf[ERG_TO_HY_BUF_SIZE - sizeof(TestText)], TestText,
  169.        sizeof(TestText));
  170. if (memcmp(&dpr->ToHyBuf[ERG_TO_HY_BUF_SIZE - sizeof(TestText)], TestText,
  171.    sizeof(TestText)))
  172. return (-1);
  173. memcpy(&dpr->ToPcBuf[ERG_TO_PC_BUF_SIZE - sizeof(TestText)], TestText,
  174.        sizeof(TestText));
  175. if (memcmp(&dpr->ToPcBuf[ERG_TO_PC_BUF_SIZE - sizeof(TestText)], TestText,
  176.    sizeof(TestText)))
  177. return (-1);
  178. return (0);
  179. } /* ergo_testram */
  180. /*****************************************************************************/
  181. /* this function is intended to write stage 1 boot image to the cards buffer */
  182. /* this is done in two steps. First the 1024 hi-words are written (offs=0),  */
  183. /* then the 1024 lo-bytes are written. The remaining DPRAM is cleared, the   */
  184. /* PCI-write-buffers flushed and the card is taken out of reset.             */
  185. /* The function then waits for a reaction of the E1 processor or a timeout.  */
  186. /* Negative return values are interpreted as errors.                         */
  187. /*****************************************************************************/
  188. static int
  189. ergo_writebootimg(struct HYSDN_CARD *card, uchar * buf, ulong offs)
  190. {
  191. uchar *dst;
  192. tErgDpram *dpram;
  193. int cnt = (BOOT_IMG_SIZE >> 2); /* number of words to move and swap (byte order!) */
  194. if (card->debug_flags & LOG_POF_CARD)
  195. hysdn_addlog(card, "ERGO: write bootldr offs=0x%lx ", offs);
  196. dst = card->dpram; /* pointer to start of DPRAM */
  197. dst += (offs + ERG_DPRAM_FILL_SIZE); /* offset in the DPRAM */
  198. while (cnt--) {
  199. *dst++ = *(buf + 1); /* high byte */
  200. *dst++ = *buf; /* low byte */
  201. dst += 2; /* point to next longword */
  202. buf += 2; /* buffer only filled with words */
  203. }
  204. /* if low words (offs = 2) have been written, clear the rest of the DPRAM, */
  205. /* flush the PCI-write-buffer and take the E1 out of reset */
  206. if (offs) {
  207. memset(card->dpram, 0, ERG_DPRAM_FILL_SIZE); /* fill the DPRAM still not cleared */
  208. dpram = card->dpram; /* get pointer to dpram structure */
  209. dpram->ToHyNoDpramErrLog = 0xFF; /* write a dpram register */
  210. while (!dpram->ToHyNoDpramErrLog); /* reread volatile register to flush PCI */
  211. byteout(card->iobase + PCI9050_USER_IO, PCI9050_E1_RUN); /* start E1 processor */
  212. /* the interrupts are still masked */
  213. sti();
  214. set_current_state(TASK_INTERRUPTIBLE);
  215. schedule_timeout((20 * HZ) / 1000); /* Timeout 20ms */
  216. if (((tDpramBootSpooler *) card->dpram)->Len != DPRAM_SPOOLER_DATA_SIZE) {
  217. if (card->debug_flags & LOG_POF_CARD)
  218. hysdn_addlog(card, "ERGO: write bootldr no answer");
  219. return (-ERR_BOOTIMG_FAIL);
  220. }
  221. } /* start_boot_img */
  222. return (0); /* successful */
  223. } /* ergo_writebootimg */
  224. /********************************************************************************/
  225. /* ergo_writebootseq writes the buffer containing len bytes to the E1 processor */
  226. /* using the boot spool mechanism. If everything works fine 0 is returned. In   */
  227. /* case of errors a negative error value is returned.                           */
  228. /********************************************************************************/
  229. static int
  230. ergo_writebootseq(struct HYSDN_CARD *card, uchar * buf, int len)
  231. {
  232. tDpramBootSpooler *sp = (tDpramBootSpooler *) card->dpram;
  233. uchar *dst;
  234. uchar buflen;
  235. int nr_write;
  236. uchar tmp_rdptr;
  237. uchar wr_mirror;
  238. int i;
  239. if (card->debug_flags & LOG_POF_CARD)
  240. hysdn_addlog(card, "ERGO: write boot seq len=%d ", len);
  241. dst = sp->Data; /* point to data in spool structure */
  242. buflen = sp->Len; /* maximum len of spooled data */
  243. wr_mirror = sp->WrPtr; /* only once read */
  244. sti();
  245. /* try until all bytes written or error */
  246. i = 0x1000; /* timeout value */
  247. while (len) {
  248. /* first determine the number of bytes that may be buffered */
  249. do {
  250. tmp_rdptr = sp->RdPtr; /* first read the pointer */
  251. i--; /* decrement timeout */
  252. } while (i && (tmp_rdptr != sp->RdPtr)); /* wait for stable pointer */
  253. if (!i) {
  254. if (card->debug_flags & LOG_POF_CARD)
  255. hysdn_addlog(card, "ERGO: write boot seq timeout");
  256. return (-ERR_BOOTSEQ_FAIL); /* value not stable -> timeout */
  257. }
  258. if ((nr_write = tmp_rdptr - wr_mirror - 1) < 0)
  259. nr_write += buflen; /* now we got number of free bytes - 1 in buffer */
  260. if (!nr_write)
  261. continue; /* no free bytes in buffer */
  262. if (nr_write > len)
  263. nr_write = len; /* limit if last few bytes */
  264. i = 0x1000; /* reset timeout value */
  265. /* now we know how much bytes we may put in the puffer */
  266. len -= nr_write; /* we savely could adjust len before output */
  267. while (nr_write--) {
  268. *(dst + wr_mirror) = *buf++; /* output one byte */
  269. if (++wr_mirror >= buflen)
  270. wr_mirror = 0;
  271. sp->WrPtr = wr_mirror; /* announce the next byte to E1 */
  272. } /* while (nr_write) */
  273. } /* while (len) */
  274. return (0);
  275. } /* ergo_writebootseq */
  276. /***********************************************************************************/
  277. /* ergo_waitpofready waits for a maximum of 10 seconds for the completition of the */
  278. /* boot process. If the process has been successful 0 is returned otherwise a     */
  279. /* negative error code is returned.                                                */
  280. /***********************************************************************************/
  281. static int
  282. ergo_waitpofready(struct HYSDN_CARD *card)
  283. {
  284. tErgDpram *dpr = card->dpram; /* pointer to DPRAM structure */
  285. int timecnt = 10000 / 50; /* timeout is 10 secs max. */
  286. ulong flags;
  287. int msg_size;
  288. int i;
  289. if (card->debug_flags & LOG_POF_CARD)
  290. hysdn_addlog(card, "ERGO: waiting for pof ready");
  291. while (timecnt--) {
  292. /* wait until timeout  */
  293. if (dpr->ToPcFlag) {
  294. /* data has arrived */
  295. if ((dpr->ToPcChannel != CHAN_SYSTEM) ||
  296.     (dpr->ToPcSize < MIN_RDY_MSG_SIZE) ||
  297.     (dpr->ToPcSize > MAX_RDY_MSG_SIZE) ||
  298.     ((*(ulong *) dpr->ToPcBuf) != RDY_MAGIC))
  299. break; /* an error occurred */
  300. /* Check for additional data delivered during SysReady */
  301. msg_size = dpr->ToPcSize - RDY_MAGIC_SIZE;
  302. if (msg_size > 0)
  303. if (EvalSysrTokData(card, dpr->ToPcBuf + RDY_MAGIC_SIZE, msg_size))
  304. break;
  305. if (card->debug_flags & LOG_POF_RECORD)
  306. hysdn_addlog(card, "ERGO: pof boot success");
  307. save_flags(flags);
  308. cli();
  309. card->state = CARD_STATE_RUN; /* now card is running */
  310. /* enable the cards interrupt */
  311. byteout(card->iobase + PCI9050_INTR_REG,
  312. bytein(card->iobase + PCI9050_INTR_REG) |
  313. (PCI9050_INTR_REG_ENPCI | PCI9050_INTR_REG_EN1));
  314. card->irq_enabled = 1; /* we are ready to receive interrupts */
  315. dpr->ToPcFlag = 0; /* reset data indicator */
  316. dpr->ToHyInt = 1;
  317. dpr->ToPcInt = 1; /* interrupt to E1 for all cards */
  318. restore_flags(flags);
  319. if ((hynet_enable & (1 << card->myid)) 
  320.     && (i = hysdn_net_create(card))) 
  321. {
  322. ergo_stopcard(card);
  323. card->state = CARD_STATE_BOOTERR;
  324. return (i);
  325. }
  326. #ifdef CONFIG_HYSDN_CAPI
  327. if((i = hycapi_capi_create(card))) {
  328. printk(KERN_WARNING "HYSDN: failed to create capi-interface.n");
  329. }
  330. #endif /* CONFIG_HYSDN_CAPI */
  331. return (0); /* success */
  332. } /* data has arrived */
  333. sti();
  334. set_current_state(TASK_INTERRUPTIBLE);
  335. schedule_timeout((50 * HZ) / 1000); /* Timeout 50ms */
  336. } /* wait until timeout */
  337. if (card->debug_flags & LOG_POF_CARD)
  338. hysdn_addlog(card, "ERGO: pof boot ready timeout");
  339. return (-ERR_POF_TIMEOUT);
  340. } /* ergo_waitpofready */
  341. /************************************************************************************/
  342. /* release the cards hardware. Before releasing do a interrupt disable and hardware */
  343. /* reset. Also unmap dpram.                                                         */
  344. /* Use only during module release.                                                  */
  345. /************************************************************************************/
  346. static void
  347. ergo_releasehardware(hysdn_card * card)
  348. {
  349. ergo_stopcard(card); /* first stop the card if not already done */
  350. free_irq(card->irq, card); /* release interrupt */
  351. release_region(card->iobase + PCI9050_INTR_REG, 1); /* release all io ports */
  352. release_region(card->iobase + PCI9050_USER_IO, 1);
  353. vfree(card->dpram);
  354. card->dpram = NULL; /* release shared mem */
  355. } /* ergo_releasehardware */
  356. /*********************************************************************************/
  357. /* acquire the needed hardware ports and map dpram. If an error occurs a nonzero */
  358. /* value is returned.                                                            */
  359. /* Use only during module init.                                                  */
  360. /*********************************************************************************/
  361. int
  362. ergo_inithardware(hysdn_card * card)
  363. {
  364. if (check_region(card->iobase + PCI9050_INTR_REG, 1) ||
  365.     check_region(card->iobase + PCI9050_USER_IO, 1))
  366. return (-1); /* ports already in use */
  367. card->memend = card->membase + ERG_DPRAM_PAGE_SIZE - 1;
  368. if (!(card->dpram = ioremap(card->membase, ERG_DPRAM_PAGE_SIZE)))
  369. return (-1);
  370. request_region(card->iobase + PCI9050_INTR_REG, 1, "HYSDN");
  371. request_region(card->iobase + PCI9050_USER_IO, 1, "HYSDN");
  372. ergo_stopcard(card); /* disable interrupts */
  373. if (request_irq(card->irq, ergo_interrupt, SA_SHIRQ, "HYSDN", card)) {
  374. ergo_releasehardware(card); /* return the acquired hardware */
  375. return (-1);
  376. }
  377. /* success, now setup the function pointers */
  378. card->stopcard = ergo_stopcard;
  379. card->releasehardware = ergo_releasehardware;
  380. card->testram = ergo_testram;
  381. card->writebootimg = ergo_writebootimg;
  382. card->writebootseq = ergo_writebootseq;
  383. card->waitpofready = ergo_waitpofready;
  384. card->set_errlog_state = ergo_set_errlog_state;
  385. card->irq_queue.sync = 0;
  386. card->irq_queue.data = card; /* init task queue for interrupt */
  387. card->irq_queue.routine = (void *) (void *) ergo_irq_bh;
  388. return (0);
  389. } /* ergo_inithardware */