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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* blz2060.c: Driver for Blizzard 2060 SCSI Controller.
  2.  *
  3.  * Copyright (C) 1996 Jesper Skov (jskov@cygnus.co.uk)
  4.  *
  5.  * This driver is based on the CyberStorm driver, hence the occasional
  6.  * reference to CyberStorm.
  7.  */
  8. /* TODO:
  9.  *
  10.  * 1) Figure out how to make a cleaner merge with the sparc driver with regard
  11.  *    to the caches and the Sparc MMU mapping.
  12.  * 2) Make as few routines required outside the generic driver. A lot of the
  13.  *    routines in this file used to be inline!
  14.  */
  15. #include <linux/module.h>
  16. #include <linux/init.h>
  17. #include <linux/kernel.h>
  18. #include <linux/delay.h>
  19. #include <linux/types.h>
  20. #include <linux/string.h>
  21. #include <linux/slab.h>
  22. #include <linux/blk.h>
  23. #include <linux/proc_fs.h>
  24. #include <linux/stat.h>
  25. #include "scsi.h"
  26. #include "hosts.h"
  27. #include "NCR53C9x.h"
  28. #include "blz2060.h"
  29. #include <linux/zorro.h>
  30. #include <asm/irq.h>
  31. #include <asm/amigaints.h>
  32. #include <asm/amigahw.h>
  33. #include <asm/pgtable.h>
  34. static int  dma_bytes_sent(struct NCR_ESP *esp, int fifo_count);
  35. static int  dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp);
  36. static void dma_dump_state(struct NCR_ESP *esp);
  37. static void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length);
  38. static void dma_init_write(struct NCR_ESP *esp, __u32 addr, int length);
  39. static void dma_ints_off(struct NCR_ESP *esp);
  40. static void dma_ints_on(struct NCR_ESP *esp);
  41. static int  dma_irq_p(struct NCR_ESP *esp);
  42. static void dma_led_off(struct NCR_ESP *esp);
  43. static void dma_led_on(struct NCR_ESP *esp);
  44. static int  dma_ports_p(struct NCR_ESP *esp);
  45. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write);
  46. static volatile unsigned char cmd_buffer[16];
  47. /* This is where all commands are put
  48.  * before they are transferred to the ESP chip
  49.  * via PIO.
  50.  */
  51. /***************************************************************** Detection */
  52. int __init blz2060_esp_detect(Scsi_Host_Template *tpnt)
  53. {
  54. struct NCR_ESP *esp;
  55. struct zorro_dev *z = NULL;
  56. unsigned long address;
  57. if ((z = zorro_find_device(ZORRO_PROD_PHASE5_BLIZZARD_2060, z))) {
  58.     unsigned long board = z->resource.start;
  59.     if (request_mem_region(board+BLZ2060_ESP_ADDR,
  60.    sizeof(struct ESP_regs), "NCR53C9x")) {
  61. esp = esp_allocate(tpnt, (void *)board+BLZ2060_ESP_ADDR);
  62. /* Do command transfer with programmed I/O */
  63. esp->do_pio_cmds = 1;
  64. /* Required functions */
  65. esp->dma_bytes_sent = &dma_bytes_sent;
  66. esp->dma_can_transfer = &dma_can_transfer;
  67. esp->dma_dump_state = &dma_dump_state;
  68. esp->dma_init_read = &dma_init_read;
  69. esp->dma_init_write = &dma_init_write;
  70. esp->dma_ints_off = &dma_ints_off;
  71. esp->dma_ints_on = &dma_ints_on;
  72. esp->dma_irq_p = &dma_irq_p;
  73. esp->dma_ports_p = &dma_ports_p;
  74. esp->dma_setup = &dma_setup;
  75. /* Optional functions */
  76. esp->dma_barrier = 0;
  77. esp->dma_drain = 0;
  78. esp->dma_invalidate = 0;
  79. esp->dma_irq_entry = 0;
  80. esp->dma_irq_exit = 0;
  81. esp->dma_led_on = &dma_led_on;
  82. esp->dma_led_off = &dma_led_off;
  83. esp->dma_poll = 0;
  84. esp->dma_reset = 0;
  85. /* SCSI chip speed */
  86. esp->cfreq = 40000000;
  87. /* The DMA registers on the Blizzard are mapped
  88.  * relative to the device (i.e. in the same Zorro
  89.  * I/O block).
  90.  */
  91. address = (unsigned long)ZTWO_VADDR(board);
  92. esp->dregs = (void *)(address + BLZ2060_DMA_ADDR);
  93. /* ESP register base */
  94. esp->eregs = (struct ESP_regs *)(address + BLZ2060_ESP_ADDR);
  95. /* Set the command buffer */
  96. esp->esp_command = (volatile unsigned char*) cmd_buffer;
  97. esp->esp_command_dvma = virt_to_bus(cmd_buffer);
  98. esp->irq = IRQ_AMIGA_PORTS;
  99. request_irq(IRQ_AMIGA_PORTS, esp_intr, SA_SHIRQ,
  100.     "Blizzard 2060 SCSI", esp_intr);
  101. /* Figure out our scsi ID on the bus */
  102. esp->scsi_id = 7;
  103. /* We don't have a differential SCSI-bus. */
  104. esp->diff = 0;
  105. esp_initialize(esp);
  106. printk("ESP: Total of %d ESP hosts found, %d actually in use.n", nesps, esps_in_use);
  107. esps_running = esps_in_use;
  108. return esps_in_use;
  109.     }
  110. }
  111. return 0;
  112. }
  113. /************************************************************* DMA Functions */
  114. static int dma_bytes_sent(struct NCR_ESP *esp, int fifo_count)
  115. {
  116. /* Since the Blizzard DMA is fully dedicated to the ESP chip,
  117.  * the number of bytes sent (to the ESP chip) equals the number
  118.  * of bytes in the FIFO - there is no buffering in the DMA controller.
  119.  * XXXX Do I read this right? It is from host to ESP, right?
  120.  */
  121. return fifo_count;
  122. }
  123. static int dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  124. {
  125. /* I don't think there's any limit on the Blizzard DMA. So we use what
  126.  * the ESP chip can handle (24 bit).
  127.  */
  128. unsigned long sz = sp->SCp.this_residual;
  129. if(sz > 0x1000000)
  130. sz = 0x1000000;
  131. return sz;
  132. }
  133. static void dma_dump_state(struct NCR_ESP *esp)
  134. {
  135. ESPLOG(("intreq:<%04x>, intena:<%04x>n",
  136. custom.intreqr, custom.intenar));
  137. }
  138. static void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length)
  139. {
  140. struct blz2060_dma_registers *dregs = 
  141. (struct blz2060_dma_registers *) (esp->dregs);
  142. cache_clear(addr, length);
  143. addr >>= 1;
  144. addr &= ~(BLZ2060_DMA_WRITE);
  145. dregs->dma_addr3 = (addr      ) & 0xff;
  146. dregs->dma_addr2 = (addr >>  8) & 0xff;
  147. dregs->dma_addr1 = (addr >> 16) & 0xff;
  148. dregs->dma_addr0 = (addr >> 24) & 0xff;
  149. }
  150. static void dma_init_write(struct NCR_ESP *esp, __u32 addr, int length)
  151. {
  152. struct blz2060_dma_registers *dregs = 
  153. (struct blz2060_dma_registers *) (esp->dregs);
  154. cache_push(addr, length);
  155. addr >>= 1;
  156. addr |= BLZ2060_DMA_WRITE;
  157. dregs->dma_addr3 = (addr      ) & 0xff;
  158. dregs->dma_addr2 = (addr >>  8) & 0xff;
  159. dregs->dma_addr1 = (addr >> 16) & 0xff;
  160. dregs->dma_addr0 = (addr >> 24) & 0xff;
  161. }
  162. static void dma_ints_off(struct NCR_ESP *esp)
  163. {
  164. disable_irq(esp->irq);
  165. }
  166. static void dma_ints_on(struct NCR_ESP *esp)
  167. {
  168. enable_irq(esp->irq);
  169. }
  170. static int dma_irq_p(struct NCR_ESP *esp)
  171. {
  172. return (esp_read(esp->eregs->esp_status) & ESP_STAT_INTR);
  173. }
  174. static void dma_led_off(struct NCR_ESP *esp)
  175. {
  176. ((struct blz2060_dma_registers *) (esp->dregs))->dma_led_ctrl =
  177. BLZ2060_DMA_LED;
  178. }
  179. static void dma_led_on(struct NCR_ESP *esp)
  180. {
  181. ((struct blz2060_dma_registers *) (esp->dregs))->dma_led_ctrl = 0;
  182. }
  183. static int dma_ports_p(struct NCR_ESP *esp)
  184. {
  185. return ((custom.intenar) & IF_PORTS);
  186. }
  187. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write)
  188. {
  189. /* On the Sparc, DMA_ST_WRITE means "move data from device to memory"
  190.  * so when (write) is true, it actually means READ!
  191.  */
  192. if(write){
  193. dma_init_read(esp, addr, count);
  194. } else {
  195. dma_init_write(esp, addr, count);
  196. }
  197. }
  198. #define HOSTS_C
  199. #include "blz2060.h"
  200. static Scsi_Host_Template driver_template = SCSI_BLZ2060;
  201. #include "scsi_module.c"
  202. int blz2060_esp_release(struct Scsi_Host *instance)
  203. {
  204. #ifdef MODULE
  205. unsigned long address = (unsigned long)((struct NCR_ESP *)instance->hostdata)->edev;
  206. esp_deallocate((struct NCR_ESP *)instance->hostdata);
  207. esp_release();
  208. release_mem_region(address, sizeof(struct ESP_regs));
  209. free_irq(IRQ_AMIGA_PORTS, esp_intr);
  210. #endif
  211. return 1;
  212. }