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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* blz1230.c: Driver for Blizzard 1230 SCSI IV 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 "blz1230.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. #define MKIV 1
  35. static int  dma_bytes_sent(struct NCR_ESP *esp, int fifo_count);
  36. static int  dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp);
  37. static void dma_dump_state(struct NCR_ESP *esp);
  38. static void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length);
  39. static void dma_init_write(struct NCR_ESP *esp, __u32 addr, int length);
  40. static void dma_ints_off(struct NCR_ESP *esp);
  41. static void dma_ints_on(struct NCR_ESP *esp);
  42. static int  dma_irq_p(struct NCR_ESP *esp);
  43. static int  dma_ports_p(struct NCR_ESP *esp);
  44. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write);
  45. static volatile unsigned char cmd_buffer[16];
  46. /* This is where all commands are put
  47.  * before they are transferred to the ESP chip
  48.  * via PIO.
  49.  */
  50. /***************************************************************** Detection */
  51. int __init blz1230_esp_detect(Scsi_Host_Template *tpnt)
  52. {
  53. struct NCR_ESP *esp;
  54. struct zorro_dev *z = NULL;
  55. unsigned long address;
  56. struct ESP_regs *eregs;
  57. unsigned long board;
  58. #if MKIV
  59. #define REAL_BLZ1230_ID ZORRO_PROD_PHASE5_BLIZZARD_1230_IV_1260
  60. #define REAL_BLZ1230_ESP_ADDR BLZ1230_ESP_ADDR
  61. #define REAL_BLZ1230_DMA_ADDR BLZ1230_DMA_ADDR
  62. #else
  63. #define REAL_BLZ1230_ID ZORRO_PROD_PHASE5_BLIZZARD_1230_II_FASTLANE_Z3_CYBERSCSI_CYBERSTORM060
  64. #define REAL_BLZ1230_ESP_ADDR BLZ1230II_ESP_ADDR
  65. #define REAL_BLZ1230_DMA_ADDR BLZ1230II_DMA_ADDR
  66. #endif
  67. if ((z = zorro_find_device(REAL_BLZ1230_ID, z))) {
  68.     board = z->resource.start;
  69.     if (request_mem_region(board+REAL_BLZ1230_ESP_ADDR,
  70.    sizeof(struct ESP_regs), "NCR53C9x")) {
  71. /* Do some magic to figure out if the blizzard is
  72.  * equipped with a SCSI controller
  73.  */
  74. address = ZTWO_VADDR(board);
  75. eregs = (struct ESP_regs *)(address + REAL_BLZ1230_ESP_ADDR);
  76. esp = esp_allocate(tpnt, (void *)board+REAL_BLZ1230_ESP_ADDR);
  77. esp_write(eregs->esp_cfg1, (ESP_CONFIG1_PENABLE | 7));
  78. udelay(5);
  79. if(esp_read(eregs->esp_cfg1) != (ESP_CONFIG1_PENABLE | 7))
  80. goto err_out;
  81. /* Do command transfer with programmed I/O */
  82. esp->do_pio_cmds = 1;
  83. /* Required functions */
  84. esp->dma_bytes_sent = &dma_bytes_sent;
  85. esp->dma_can_transfer = &dma_can_transfer;
  86. esp->dma_dump_state = &dma_dump_state;
  87. esp->dma_init_read = &dma_init_read;
  88. esp->dma_init_write = &dma_init_write;
  89. esp->dma_ints_off = &dma_ints_off;
  90. esp->dma_ints_on = &dma_ints_on;
  91. esp->dma_irq_p = &dma_irq_p;
  92. esp->dma_ports_p = &dma_ports_p;
  93. esp->dma_setup = &dma_setup;
  94. /* Optional functions */
  95. esp->dma_barrier = 0;
  96. esp->dma_drain = 0;
  97. esp->dma_invalidate = 0;
  98. esp->dma_irq_entry = 0;
  99. esp->dma_irq_exit = 0;
  100. esp->dma_led_on = 0;
  101. esp->dma_led_off = 0;
  102. esp->dma_poll = 0;
  103. esp->dma_reset = 0;
  104. /* SCSI chip speed */
  105. esp->cfreq = 40000000;
  106. /* The DMA registers on the Blizzard are mapped
  107.  * relative to the device (i.e. in the same Zorro
  108.  * I/O block).
  109.  */
  110. esp->dregs = (void *)(address + REAL_BLZ1230_DMA_ADDR);
  111. /* ESP register base */
  112. esp->eregs = eregs;
  113. /* Set the command buffer */
  114. esp->esp_command = (volatile unsigned char*) cmd_buffer;
  115. esp->esp_command_dvma = virt_to_bus(cmd_buffer);
  116. esp->irq = IRQ_AMIGA_PORTS;
  117. esp->slot = board+REAL_BLZ1230_ESP_ADDR;
  118. if (request_irq(IRQ_AMIGA_PORTS, esp_intr, SA_SHIRQ,
  119.  "Blizzard 1230 SCSI IV", esp_intr))
  120. goto err_out;
  121. /* Figure out our scsi ID on the bus */
  122. esp->scsi_id = 7;
  123. /* We don't have a differential SCSI-bus. */
  124. esp->diff = 0;
  125. esp_initialize(esp);
  126. printk("ESP: Total of %d ESP hosts found, %d actually in use.n", nesps, esps_in_use);
  127. esps_running = esps_in_use;
  128. return esps_in_use;
  129.     }
  130. }
  131. return 0;
  132.  
  133.  err_out:
  134. scsi_unregister(esp->ehost);
  135. esp_deallocate(esp);
  136. release_mem_region(board+REAL_BLZ1230_ESP_ADDR,
  137.    sizeof(struct ESP_regs));
  138. return 0;
  139. }
  140. /************************************************************* DMA Functions */
  141. static int dma_bytes_sent(struct NCR_ESP *esp, int fifo_count)
  142. {
  143. /* Since the Blizzard DMA is fully dedicated to the ESP chip,
  144.  * the number of bytes sent (to the ESP chip) equals the number
  145.  * of bytes in the FIFO - there is no buffering in the DMA controller.
  146.  * XXXX Do I read this right? It is from host to ESP, right?
  147.  */
  148. return fifo_count;
  149. }
  150. static int dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  151. {
  152. /* I don't think there's any limit on the Blizzard DMA. So we use what
  153.  * the ESP chip can handle (24 bit).
  154.  */
  155. unsigned long sz = sp->SCp.this_residual;
  156. if(sz > 0x1000000)
  157. sz = 0x1000000;
  158. return sz;
  159. }
  160. static void dma_dump_state(struct NCR_ESP *esp)
  161. {
  162. ESPLOG(("intreq:<%04x>, intena:<%04x>n",
  163. custom.intreqr, custom.intenar));
  164. }
  165. void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length)
  166. {
  167. #if MKIV
  168. struct blz1230_dma_registers *dregs = 
  169. (struct blz1230_dma_registers *) (esp->dregs);
  170. #else
  171. struct blz1230II_dma_registers *dregs = 
  172. (struct blz1230II_dma_registers *) (esp->dregs);
  173. #endif
  174. cache_clear(addr, length);
  175. addr >>= 1;
  176. addr &= ~(BLZ1230_DMA_WRITE);
  177. /* First set latch */
  178. dregs->dma_latch = (addr >> 24) & 0xff;
  179. /* Then pump the address to the DMA address register */
  180. #if MKIV
  181. dregs->dma_addr = (addr >> 24) & 0xff;
  182. #endif
  183. dregs->dma_addr = (addr >> 16) & 0xff;
  184. dregs->dma_addr = (addr >>  8) & 0xff;
  185. dregs->dma_addr = (addr      ) & 0xff;
  186. }
  187. void dma_init_write(struct NCR_ESP *esp, __u32 addr, int length)
  188. {
  189. #if MKIV
  190. struct blz1230_dma_registers *dregs = 
  191. (struct blz1230_dma_registers *) (esp->dregs);
  192. #else
  193. struct blz1230II_dma_registers *dregs = 
  194. (struct blz1230II_dma_registers *) (esp->dregs);
  195. #endif
  196. cache_push(addr, length);
  197. addr >>= 1;
  198. addr |= BLZ1230_DMA_WRITE;
  199. /* First set latch */
  200. dregs->dma_latch = (addr >> 24) & 0xff;
  201. /* Then pump the address to the DMA address register */
  202. #if MKIV
  203. dregs->dma_addr = (addr >> 24) & 0xff;
  204. #endif
  205. dregs->dma_addr = (addr >> 16) & 0xff;
  206. dregs->dma_addr = (addr >>  8) & 0xff;
  207. dregs->dma_addr = (addr      ) & 0xff;
  208. }
  209. static void dma_ints_off(struct NCR_ESP *esp)
  210. {
  211. disable_irq(esp->irq);
  212. }
  213. static void dma_ints_on(struct NCR_ESP *esp)
  214. {
  215. enable_irq(esp->irq);
  216. }
  217. static int dma_irq_p(struct NCR_ESP *esp)
  218. {
  219. return (esp_read(esp->eregs->esp_status) & ESP_STAT_INTR);
  220. }
  221. static int dma_ports_p(struct NCR_ESP *esp)
  222. {
  223. return ((custom.intenar) & IF_PORTS);
  224. }
  225. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write)
  226. {
  227. /* On the Sparc, DMA_ST_WRITE means "move data from device to memory"
  228.  * so when (write) is true, it actually means READ!
  229.  */
  230. if(write){
  231. dma_init_read(esp, addr, count);
  232. } else {
  233. dma_init_write(esp, addr, count);
  234. }
  235. }
  236. #define HOSTS_C
  237. #include "blz1230.h"
  238. static Scsi_Host_Template driver_template = SCSI_BLZ1230;
  239. #include "scsi_module.c"
  240. int blz1230_esp_release(struct Scsi_Host *instance)
  241. {
  242. #ifdef MODULE
  243. unsigned long address = (unsigned long)((struct NCR_ESP *)instance->hostdata)->edev;
  244. esp_deallocate((struct NCR_ESP *)instance->hostdata);
  245. esp_release();
  246. release_mem_region(address, sizeof(struct ESP_regs));
  247. free_irq(IRQ_AMIGA_PORTS, esp_intr);
  248. #endif
  249. return 1;
  250. }