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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Oktagon_esp.c -- Driver for bsc Oktagon
  3.  *
  4.  * Written by Carsten Pluntke 1998
  5.  *
  6.  * Based on cyber_esp.c
  7.  */
  8. #include <linux/config.h>
  9. #if defined(CONFIG_AMIGA) || defined(CONFIG_APUS)
  10. #define USE_BOTTOM_HALF
  11. #endif
  12. #define __KERNEL_SYSCALLS__
  13. #include <linux/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/delay.h>
  16. #include <linux/types.h>
  17. #include <linux/string.h>
  18. #include <linux/slab.h>
  19. #include <linux/blk.h>
  20. #include <linux/proc_fs.h>
  21. #include <linux/stat.h>
  22. #include <linux/reboot.h>
  23. #include <asm/system.h>
  24. #include <asm/ptrace.h>
  25. #include <asm/pgtable.h>
  26. #include "scsi.h"
  27. #include "hosts.h"
  28. #include "NCR53C9x.h"
  29. #include "oktagon_esp.h"
  30. #include <linux/zorro.h>
  31. #include <asm/irq.h>
  32. #include <asm/amigaints.h>
  33. #include <asm/amigahw.h>
  34. #ifdef USE_BOTTOM_HALF
  35. #include <linux/tqueue.h>
  36. #include <linux/interrupt.h>
  37. #endif
  38. #include <linux/unistd.h>
  39. static int  dma_bytes_sent(struct NCR_ESP *esp, int fifo_count);
  40. static int  dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp);
  41. static void dma_dump_state(struct NCR_ESP *esp);
  42. static void dma_init_read(struct NCR_ESP *esp, __u32 vaddress, int length);
  43. static void dma_init_write(struct NCR_ESP *esp, __u32 vaddress, int length);
  44. static void dma_ints_off(struct NCR_ESP *esp);
  45. static void dma_ints_on(struct NCR_ESP *esp);
  46. static int  dma_irq_p(struct NCR_ESP *esp);
  47. static void dma_led_off(struct NCR_ESP *esp);
  48. static void dma_led_on(struct NCR_ESP *esp);
  49. static int  dma_ports_p(struct NCR_ESP *esp);
  50. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write);
  51. static void dma_irq_exit(struct NCR_ESP *esp);
  52. static void dma_invalidate(struct NCR_ESP *esp);
  53. static void dma_mmu_get_scsi_one(struct NCR_ESP *,Scsi_Cmnd *);
  54. static void dma_mmu_get_scsi_sgl(struct NCR_ESP *,Scsi_Cmnd *);
  55. static void dma_mmu_release_scsi_one(struct NCR_ESP *,Scsi_Cmnd *);
  56. static void dma_mmu_release_scsi_sgl(struct NCR_ESP *,Scsi_Cmnd *);
  57. static void dma_advance_sg(Scsi_Cmnd *);
  58. static int  oktagon_notify_reboot(struct notifier_block *this, unsigned long code, void *x);
  59. void esp_bootup_reset(struct NCR_ESP *esp,struct ESP_regs *eregs);
  60. #ifdef USE_BOTTOM_HALF
  61. static void dma_commit(void *opaque);
  62. long oktag_to_io(long *paddr, long *addr, long len);
  63. long oktag_from_io(long *addr, long *paddr, long len);
  64. static struct tq_struct tq_fake_dma = { NULL, 0, dma_commit, NULL };
  65. #define DMA_MAXTRANSFER 0x8000
  66. #else
  67. /*
  68.  * No bottom half. Use transfer directly from IRQ. Find a narrow path
  69.  * between too much IRQ overhead and clogging the IRQ for too long.
  70.  */
  71. #define DMA_MAXTRANSFER 0x1000
  72. #endif
  73. static struct notifier_block oktagon_notifier = { 
  74. oktagon_notify_reboot,
  75. NULL,
  76. 0
  77. };
  78. static long *paddress;
  79. static long *address;
  80. static long len;
  81. static long dma_on;
  82. static int direction;
  83. static struct NCR_ESP *current_esp;
  84. static volatile unsigned char cmd_buffer[16];
  85. /* This is where all commands are put
  86.  * before they are trasfered to the ESP chip
  87.  * via PIO.
  88.  */
  89. /***************************************************************** Detection */
  90. int oktagon_esp_detect(Scsi_Host_Template *tpnt)
  91. {
  92. struct NCR_ESP *esp;
  93. struct zorro_dev *z = NULL;
  94. unsigned long address;
  95. struct ESP_regs *eregs;
  96. while ((z = zorro_find_device(ZORRO_PROD_BSC_OKTAGON_2008, z))) {
  97.     unsigned long board = z->resource.start;
  98.     if (request_mem_region(board+OKTAGON_ESP_ADDR,
  99.    sizeof(struct ESP_regs), "NCR53C9x")) {
  100. /*
  101.  * It is a SCSI controller.
  102.  * Hardwire Host adapter to SCSI ID 7
  103.  */
  104. address = (unsigned long)ZTWO_VADDR(board);
  105. eregs = (struct ESP_regs *)(address + OKTAGON_ESP_ADDR);
  106. /* This line was 5 lines lower */
  107. esp = esp_allocate(tpnt, (void *)board+OKTAGON_ESP_ADDR);
  108. /* we have to shift the registers only one bit for oktagon */
  109. esp->shift = 1;
  110. esp_write(eregs->esp_cfg1, (ESP_CONFIG1_PENABLE | 7));
  111. udelay(5);
  112. if (esp_read(eregs->esp_cfg1) != (ESP_CONFIG1_PENABLE | 7))
  113. return 0; /* Bail out if address did not hold data */
  114. /* Do command transfer with programmed I/O */
  115. esp->do_pio_cmds = 1;
  116. /* Required functions */
  117. esp->dma_bytes_sent = &dma_bytes_sent;
  118. esp->dma_can_transfer = &dma_can_transfer;
  119. esp->dma_dump_state = &dma_dump_state;
  120. esp->dma_init_read = &dma_init_read;
  121. esp->dma_init_write = &dma_init_write;
  122. esp->dma_ints_off = &dma_ints_off;
  123. esp->dma_ints_on = &dma_ints_on;
  124. esp->dma_irq_p = &dma_irq_p;
  125. esp->dma_ports_p = &dma_ports_p;
  126. esp->dma_setup = &dma_setup;
  127. /* Optional functions */
  128. esp->dma_barrier = 0;
  129. esp->dma_drain = 0;
  130. esp->dma_invalidate = &dma_invalidate;
  131. esp->dma_irq_entry = 0;
  132. esp->dma_irq_exit = &dma_irq_exit;
  133. esp->dma_led_on = &dma_led_on;
  134. esp->dma_led_off = &dma_led_off;
  135. esp->dma_poll = 0;
  136. esp->dma_reset = 0;
  137. esp->dma_mmu_get_scsi_one = &dma_mmu_get_scsi_one;
  138. esp->dma_mmu_get_scsi_sgl = &dma_mmu_get_scsi_sgl;
  139. esp->dma_mmu_release_scsi_one = &dma_mmu_release_scsi_one;
  140. esp->dma_mmu_release_scsi_sgl = &dma_mmu_release_scsi_sgl;
  141. esp->dma_advance_sg = &dma_advance_sg;
  142. /* SCSI chip speed */
  143. /* Looking at the quartz of the SCSI board... */
  144. esp->cfreq = 25000000;
  145. /* The DMA registers on the CyberStorm are mapped
  146.  * relative to the device (i.e. in the same Zorro
  147.  * I/O block).
  148.  */
  149. esp->dregs = (void *)(address + OKTAGON_DMA_ADDR);
  150. paddress = (long *) esp->dregs;
  151. /* ESP register base */
  152. esp->eregs = eregs;
  153. /* Set the command buffer */
  154. esp->esp_command = (volatile unsigned char*) cmd_buffer;
  155. /* Yes, the virtual address. See below. */
  156. esp->esp_command_dvma = (__u32) cmd_buffer;
  157. esp->irq = IRQ_AMIGA_PORTS;
  158. request_irq(IRQ_AMIGA_PORTS, esp_intr, SA_SHIRQ,
  159.     "BSC Oktagon SCSI", esp_intr);
  160. /* Figure out our scsi ID on the bus */
  161. esp->scsi_id = 7;
  162. /* We don't have a differential SCSI-bus. */
  163. esp->diff = 0;
  164. esp_initialize(esp);
  165. printk("ESP_Oktagon Driver 1.1"
  166. #ifdef USE_BOTTOM_HALF
  167.        " [BOTTOM_HALF]"
  168. #else
  169.        " [IRQ]"
  170. #endif
  171.        " registered.n");
  172. printk("ESP: Total of %d ESP hosts found, %d actually in use.n", nesps,esps_in_use);
  173. esps_running = esps_in_use;
  174. current_esp = esp;
  175. register_reboot_notifier(&oktagon_notifier);
  176. return esps_in_use;
  177.     }
  178. }
  179. return 0;
  180. }
  181. /*
  182.  * On certain configurations the SCSI equipment gets confused on reboot,
  183.  * so we have to reset it then.
  184.  */
  185. static int
  186. oktagon_notify_reboot(struct notifier_block *this, unsigned long code, void *x)
  187. {
  188.   struct NCR_ESP *esp;
  189.   
  190.   if((code == SYS_DOWN || code == SYS_HALT) && (esp = current_esp))
  191.    {
  192.     esp_bootup_reset(esp,esp->eregs);
  193.     udelay(500); /* Settle time. Maybe unneccessary. */
  194.    }
  195.   return NOTIFY_DONE;
  196. }
  197.     
  198. #ifdef USE_BOTTOM_HALF
  199. /*
  200.  * The bsc Oktagon controller has no real DMA, so we have to do the 'DMA
  201.  * transfer' in the interrupt (Yikes!) or use a bottom half to not to clutter
  202.  * IRQ's for longer-than-good.
  203.  *
  204.  * FIXME
  205.  * BIG PROBLEM: 'len' is usually the buffer length, not the expected length
  206.  * of the data. So DMA may finish prematurely, further reads lead to
  207.  * 'machine check' on APUS systems (don't know about m68k systems, AmigaOS
  208.  * deliberately ignores the bus faults) and a normal copy-loop can't
  209.  * be exited prematurely just at the right moment by the dma_invalidate IRQ.
  210.  * So do it the hard way, write an own copier in assembler and
  211.  * catch the exception.
  212.  *                                     -- Carsten
  213.  */
  214.  
  215.  
  216. static void dma_commit(void *opaque)
  217. {
  218.     long wait,len2,pos;
  219.     struct NCR_ESP *esp;
  220.     ESPDATA(("Transfer: %ld bytes, Address 0x%08lX, Direction: %dn",
  221.          len,(long) address,direction));
  222.     dma_ints_off(current_esp);
  223.     pos = 0;
  224.     wait = 1;
  225.     if(direction) /* write? (memory to device) */
  226.      {
  227.       while(len > 0)
  228.        {
  229.         len2 = oktag_to_io(paddress, address+pos, len);
  230. if(!len2)
  231.  {
  232.   if(wait > 1000)
  233.    {
  234.     printk("Expedited DMA exit (writing) %ldn",len);
  235.     break;
  236.    }
  237.   mdelay(wait);
  238.   wait *= 2;
  239.  }
  240. pos += len2;
  241. len -= len2*sizeof(long);
  242.        }
  243.      } else {
  244.       while(len > 0)
  245.        {
  246.         len2 = oktag_from_io(address+pos, paddress, len);
  247. if(!len2)
  248.  {
  249.   if(wait > 1000)
  250.    {
  251.     printk("Expedited DMA exit (reading) %ldn",len);
  252.     break;
  253.    }
  254.   mdelay(wait);
  255.   wait *= 2;
  256.  }
  257. pos += len2;
  258. len -= len2*sizeof(long);
  259.        }
  260.      }
  261.     /* to make esp->shift work */
  262.     esp=current_esp;
  263. #if 0
  264.     len2 = (esp_read(current_esp->eregs->esp_tclow) & 0xff) |
  265.            ((esp_read(current_esp->eregs->esp_tcmed) & 0xff) << 8);
  266.     /*
  267.      * Uh uh. If you see this, len and transfer count registers were out of
  268.      * sync. That means really serious trouble.
  269.      */
  270.     if(len2)
  271.       printk("Eeeek!! Transfer count still %ld!n",len2);
  272. #endif
  273.     /*
  274.      * Normally we just need to exit and wait for the interrupt to come.
  275.      * But at least one device (my Microtek ScanMaker 630) regularly mis-
  276.      * calculates the bytes it should send which is really ugly because
  277.      * it locks up the SCSI bus if not accounted for.
  278.      */
  279.     if(!(esp_read(current_esp->eregs->esp_status) & ESP_STAT_INTR))
  280.      {
  281.       long len = 100;
  282.       long trash[10];
  283.       /*
  284.        * Interrupt bit was not set. Either the device is just plain lazy
  285.        * so we give it a 10 ms chance or...
  286.        */
  287.       while(len-- && (!(esp_read(current_esp->eregs->esp_status) & ESP_STAT_INTR)))
  288.         udelay(100);
  289.       if(!(esp_read(current_esp->eregs->esp_status) & ESP_STAT_INTR))
  290.        {
  291.         /*
  292.  * So we think that the transfer count is out of sync. Since we
  293.  * have all we want we are happy and can ditch the trash.
  294.  */
  295.  
  296.         len = DMA_MAXTRANSFER;
  297.         while(len-- && (!(esp_read(current_esp->eregs->esp_status) & ESP_STAT_INTR)))
  298.           oktag_from_io(trash,paddress,2);
  299.         if(!(esp_read(current_esp->eregs->esp_status) & ESP_STAT_INTR))
  300.          {
  301.           /*
  302.            * Things really have gone wrong. If we leave the system in that
  303.            * state, the SCSI bus is locked forever. I hope that this will
  304.            * turn the system in a more or less running state.
  305.            */
  306.           printk("Device is bolixed, trying bus reset...n");
  307.   esp_bootup_reset(current_esp,current_esp->eregs);
  308.          }
  309.        }
  310.      }
  311.     ESPDATA(("Transfer_finale: do_data_finale should comen"));
  312.     len = 0;
  313.     dma_on = 0;
  314.     dma_ints_on(current_esp);
  315. }
  316. #endif
  317. /************************************************************* DMA Functions */
  318. static int dma_bytes_sent(struct NCR_ESP *esp, int fifo_count)
  319. {
  320. /* Since the CyberStorm DMA is fully dedicated to the ESP chip,
  321.  * the number of bytes sent (to the ESP chip) equals the number
  322.  * of bytes in the FIFO - there is no buffering in the DMA controller.
  323.  * XXXX Do I read this right? It is from host to ESP, right?
  324.  */
  325. return fifo_count;
  326. }
  327. static int dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  328. {
  329. unsigned long sz = sp->SCp.this_residual;
  330. if(sz > DMA_MAXTRANSFER)
  331. sz = DMA_MAXTRANSFER;
  332. return sz;
  333. }
  334. static void dma_dump_state(struct NCR_ESP *esp)
  335. {
  336. }
  337. /*
  338.  * What the f$@& is this?
  339.  *
  340.  * Some SCSI devices (like my Microtek ScanMaker 630 scanner) want to transfer
  341.  * more data than requested. How much? Dunno. So ditch the bogus data into
  342.  * the sink, hoping the device will advance to the next phase sooner or later.
  343.  *
  344.  *                         -- Carsten
  345.  */
  346. static long oktag_eva_buffer[16]; /* The data sink */
  347. static void oktag_check_dma(void)
  348. {
  349.   struct NCR_ESP *esp;
  350.   esp=current_esp;
  351.   if(!len)
  352.    {
  353.     address = oktag_eva_buffer;
  354.     len = 2;
  355.     /* esp_do_data sets them to zero like len */
  356.     esp_write(current_esp->eregs->esp_tclow,2);
  357.     esp_write(current_esp->eregs->esp_tcmed,0);
  358.    }
  359. }
  360. static void dma_init_read(struct NCR_ESP *esp, __u32 vaddress, int length)
  361. {
  362. /* Zorro is noncached, everything else done using processor. */
  363. /* cache_clear(addr, length); */
  364. if(dma_on)
  365.   panic("dma_init_read while dma process is initialized/running!n");
  366. direction = 0;
  367. address = (long *) vaddress;
  368. current_esp = esp;
  369. len = length;
  370. oktag_check_dma();
  371.         dma_on = 1;
  372. }
  373. static void dma_init_write(struct NCR_ESP *esp, __u32 vaddress, int length)
  374. {
  375. /* cache_push(addr, length); */
  376. if(dma_on)
  377.   panic("dma_init_write while dma process is initialized/running!n");
  378. direction = 1;
  379. address = (long *) vaddress;
  380. current_esp = esp;
  381. len = length;
  382. oktag_check_dma();
  383. dma_on = 1;
  384. }
  385. static void dma_ints_off(struct NCR_ESP *esp)
  386. {
  387. disable_irq(esp->irq);
  388. }
  389. static void dma_ints_on(struct NCR_ESP *esp)
  390. {
  391. enable_irq(esp->irq);
  392. }
  393. static int dma_irq_p(struct NCR_ESP *esp)
  394. {
  395. /* It's important to check the DMA IRQ bit in the correct way! */
  396. return (esp_read(esp->eregs->esp_status) & ESP_STAT_INTR);
  397. }
  398. static void dma_led_off(struct NCR_ESP *esp)
  399. {
  400. }
  401. static void dma_led_on(struct NCR_ESP *esp)
  402. {
  403. }
  404. static int dma_ports_p(struct NCR_ESP *esp)
  405. {
  406. return ((custom.intenar) & IF_PORTS);
  407. }
  408. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write)
  409. {
  410. /* On the Sparc, DMA_ST_WRITE means "move data from device to memory"
  411.  * so when (write) is true, it actually means READ!
  412.  */
  413. if(write){
  414. dma_init_read(esp, addr, count);
  415. } else {
  416. dma_init_write(esp, addr, count);
  417. }
  418. }
  419. /*
  420.  * IRQ entry when DMA transfer is ready to be started
  421.  */
  422. static void dma_irq_exit(struct NCR_ESP *esp)
  423. {
  424. #ifdef USE_BOTTOM_HALF
  425. if(dma_on)
  426.  {
  427.   tq_fake_dma.sync = 0;
  428.   queue_task(&tq_fake_dma,&tq_immediate);
  429.   mark_bh(IMMEDIATE_BH);
  430.  }
  431. #else
  432. while(len && !dma_irq_p(esp))
  433.  {
  434.   if(direction)
  435.     *paddress = *address++;
  436.    else
  437.     *address++ = *paddress;
  438.   len -= (sizeof(long));
  439.  }
  440. len = 0;
  441.         dma_on = 0;
  442. #endif
  443. }
  444. /*
  445.  * IRQ entry when DMA has just finished
  446.  */
  447. static void dma_invalidate(struct NCR_ESP *esp)
  448. {
  449. }
  450. /*
  451.  * Since the processor does the data transfer we have to use the custom
  452.  * mmu interface to pass the virtual address, not the physical.
  453.  */
  454. void dma_mmu_get_scsi_one(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  455. {
  456.         sp->SCp.have_data_in = (int) sp->SCp.ptr =
  457.                 sp->request_buffer;
  458. }
  459. void dma_mmu_get_scsi_sgl(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  460. {
  461.         sp->SCp.ptr = 
  462.                 sp->SCp.buffer->address;
  463. }
  464. void dma_mmu_release_scsi_one(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  465. {
  466. }
  467. void dma_mmu_release_scsi_sgl(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  468. {
  469. }
  470. void dma_advance_sg(Scsi_Cmnd *sp)
  471. {
  472.   sp->SCp.ptr = sp->SCp.buffer->address;
  473. }
  474. #define HOSTS_C
  475. #include "oktagon_esp.h"
  476. static Scsi_Host_Template driver_template = SCSI_OKTAGON_ESP;
  477. #include "scsi_module.c"
  478. int oktagon_esp_release(struct Scsi_Host *instance)
  479. {
  480. #ifdef MODULE
  481. unsigned long address = (unsigned long)((struct NCR_ESP *)instance->hostdata)->edev;
  482. esp_release();
  483. release_mem_region(address, sizeof(struct ESP_regs));
  484. free_irq(IRQ_AMIGA_PORTS, esp_intr);
  485. unregister_reboot_notifier(&oktagon_notifier);
  486. #endif
  487. return 1;
  488. }