fastlane.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* fastlane.c: Driver for Phase5's Fastlane 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.  * Betatesting & crucial adjustments by
  9.  *        Patrik Rak (prak3264@ss1000.ms.mff.cuni.cz)
  10.  *
  11.  */
  12. /* TODO:
  13.  *
  14.  * o According to the doc from laire, it is required to reset the DMA when
  15.  *   the transfer is done. ATM we reset DMA just before every new 
  16.  *   dma_init_(read|write).
  17.  *
  18.  * 1) Figure out how to make a cleaner merge with the sparc driver with regard
  19.  *    to the caches and the Sparc MMU mapping.
  20.  * 2) Make as few routines required outside the generic driver. A lot of the
  21.  *    routines in this file used to be inline!
  22.  */
  23. #include <linux/module.h>
  24. #include <linux/init.h>
  25. #include <linux/kernel.h>
  26. #include <linux/delay.h>
  27. #include <linux/types.h>
  28. #include <linux/string.h>
  29. #include <linux/slab.h>
  30. #include <linux/blk.h>
  31. #include <linux/proc_fs.h>
  32. #include <linux/stat.h>
  33. #include "scsi.h"
  34. #include "hosts.h"
  35. #include "NCR53C9x.h"
  36. #include "fastlane.h"
  37. #include <linux/zorro.h>
  38. #include <asm/irq.h>
  39. #include <asm/amigaints.h>
  40. #include <asm/amigahw.h>
  41. #include <asm/pgtable.h>
  42. /* Such day has just come... */
  43. #if 0
  44. /* Let this defined unless you really need to enable DMA IRQ one day */
  45. #define NODMAIRQ
  46. #endif
  47. static int  dma_bytes_sent(struct NCR_ESP *esp, int fifo_count);
  48. static int  dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp);
  49. static inline void dma_clear(struct NCR_ESP *esp);
  50. static void dma_dump_state(struct NCR_ESP *esp);
  51. static void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length);
  52. static void dma_init_write(struct NCR_ESP *esp, __u32 vaddr, int length);
  53. static void dma_ints_off(struct NCR_ESP *esp);
  54. static void dma_ints_on(struct NCR_ESP *esp);
  55. static int  dma_irq_p(struct NCR_ESP *esp);
  56. static void dma_irq_exit(struct NCR_ESP *esp);
  57. static void dma_led_off(struct NCR_ESP *esp);
  58. static void dma_led_on(struct NCR_ESP *esp);
  59. static int  dma_ports_p(struct NCR_ESP *esp);
  60. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write);
  61. static unsigned char ctrl_data = 0; /* Keep backup of the stuff written
  62.  * to ctrl_reg. Always write a copy
  63.  * to this register when writing to
  64.  * the hardware register!
  65.  */
  66. static volatile unsigned char cmd_buffer[16];
  67. /* This is where all commands are put
  68.  * before they are transferred to the ESP chip
  69.  * via PIO.
  70.  */
  71. /***************************************************************** Detection */
  72. int __init fastlane_esp_detect(Scsi_Host_Template *tpnt)
  73. {
  74. struct NCR_ESP *esp;
  75. struct zorro_dev *z = NULL;
  76. unsigned long address;
  77. if ((z = zorro_find_device(ZORRO_PROD_PHASE5_BLIZZARD_1230_II_FASTLANE_Z3_CYBERSCSI_CYBERSTORM060, z))) {
  78.     unsigned long board = z->resource.start;
  79.     if (request_mem_region(board+FASTLANE_ESP_ADDR,
  80.    sizeof(struct ESP_regs), "NCR53C9x")) {
  81. /* Check if this is really a fastlane controller. The problem
  82.  * is that also the cyberstorm and blizzard controllers use
  83.  * this ID value. Fortunately only Fastlane maps in Z3 space
  84.  */
  85. if (board < 0x1000000) {
  86. goto err_release;
  87. }
  88. esp = esp_allocate(tpnt, (void *)board+FASTLANE_ESP_ADDR);
  89. /* Do command transfer with programmed I/O */
  90. esp->do_pio_cmds = 1;
  91. /* Required functions */
  92. esp->dma_bytes_sent = &dma_bytes_sent;
  93. esp->dma_can_transfer = &dma_can_transfer;
  94. esp->dma_dump_state = &dma_dump_state;
  95. esp->dma_init_read = &dma_init_read;
  96. esp->dma_init_write = &dma_init_write;
  97. esp->dma_ints_off = &dma_ints_off;
  98. esp->dma_ints_on = &dma_ints_on;
  99. esp->dma_irq_p = &dma_irq_p;
  100. esp->dma_ports_p = &dma_ports_p;
  101. esp->dma_setup = &dma_setup;
  102. /* Optional functions */
  103. esp->dma_barrier = 0;
  104. esp->dma_drain = 0;
  105. esp->dma_invalidate = 0;
  106. esp->dma_irq_entry = 0;
  107. esp->dma_irq_exit = &dma_irq_exit;
  108. esp->dma_led_on = &dma_led_on;
  109. esp->dma_led_off = &dma_led_off;
  110. esp->dma_poll = 0;
  111. esp->dma_reset = 0;
  112. /* Initialize the portBits (enable IRQs) */
  113. ctrl_data = (FASTLANE_DMA_FCODE |
  114. #ifndef NODMAIRQ
  115.      FASTLANE_DMA_EDI |
  116. #endif
  117.      FASTLANE_DMA_ESI);
  118. /* SCSI chip clock */
  119. esp->cfreq = 40000000;
  120. /* Map the physical address space into virtual kernel space */
  121. address = (unsigned long)
  122. ioremap_nocache(board, z->resource.end-board+1);
  123. if(!address){
  124. printk("Could not remap Fastlane controller memory!");
  125. goto err_unregister;
  126. }
  127. /* The DMA registers on the Fastlane are mapped
  128.  * relative to the device (i.e. in the same Zorro
  129.  * I/O block).
  130.  */
  131. esp->dregs = (void *)(address + FASTLANE_DMA_ADDR);
  132. /* ESP register base */
  133. esp->eregs = (struct ESP_regs *)(address + FASTLANE_ESP_ADDR);
  134. /* Board base */
  135. esp->edev = (void *) address;
  136. /* Set the command buffer */
  137. esp->esp_command = (volatile unsigned char*) cmd_buffer;
  138. esp->esp_command_dvma = virt_to_bus(cmd_buffer);
  139. esp->irq = IRQ_AMIGA_PORTS;
  140. esp->slot = board+FASTLANE_ESP_ADDR;
  141. if (request_irq(IRQ_AMIGA_PORTS, esp_intr, SA_SHIRQ,
  142. "Fastlane SCSI", esp_intr)) {
  143. printk(KERN_WARNING "Fastlane: Could not get IRQ%d, aborting.n", IRQ_AMIGA_PORTS);
  144. goto err_unmap;
  145. }
  146. /* Controller ID */
  147. esp->scsi_id = 7;
  148. /* We don't have a differential SCSI-bus. */
  149. esp->diff = 0;
  150. dma_clear(esp);
  151. esp_initialize(esp);
  152. printk("ESP: Total of %d ESP hosts found, %d actually in use.n", nesps, esps_in_use);
  153. esps_running = esps_in_use;
  154. return esps_in_use;
  155.     }
  156. }
  157. return 0;
  158.  err_unmap:
  159. iounmap((void *)address);
  160.  err_unregister:
  161. scsi_unregister (esp->ehost);
  162.  err_release:
  163. release_mem_region(z->resource.start+FASTLANE_ESP_ADDR,
  164.    sizeof(struct ESP_regs));
  165. return 0;
  166. }
  167. /************************************************************* DMA Functions */
  168. static int dma_bytes_sent(struct NCR_ESP *esp, int fifo_count)
  169. {
  170. /* Since the Fastlane DMA is fully dedicated to the ESP chip,
  171.  * the number of bytes sent (to the ESP chip) equals the number
  172.  * of bytes in the FIFO - there is no buffering in the DMA controller.
  173.  * XXXX Do I read this right? It is from host to ESP, right?
  174.  */
  175. return fifo_count;
  176. }
  177. static int dma_can_transfer(struct NCR_ESP *esp, Scsi_Cmnd *sp)
  178. {
  179. unsigned long sz = sp->SCp.this_residual;
  180. if(sz > 0xfffc)
  181. sz = 0xfffc;
  182. return sz;
  183. }
  184. static void dma_dump_state(struct NCR_ESP *esp)
  185. {
  186. ESPLOG(("esp%d: dma -- cond_reg<%02x>n",
  187. esp->esp_id, ((struct fastlane_dma_registers *)
  188.       (esp->dregs))->cond_reg));
  189. ESPLOG(("intreq:<%04x>, intena:<%04x>n",
  190. custom.intreqr, custom.intenar));
  191. }
  192. static void dma_init_read(struct NCR_ESP *esp, __u32 addr, int length)
  193. {
  194. struct fastlane_dma_registers *dregs = 
  195. (struct fastlane_dma_registers *) (esp->dregs);
  196. unsigned long *t;
  197. cache_clear(addr, length);
  198. dma_clear(esp);
  199. t = (unsigned long *)((addr & 0x00ffffff) + esp->edev);
  200. dregs->clear_strobe = 0;
  201. *t = addr;
  202. ctrl_data = (ctrl_data & FASTLANE_DMA_MASK) | FASTLANE_DMA_ENABLE;
  203. dregs->ctrl_reg = ctrl_data;
  204. }
  205. static void dma_init_write(struct NCR_ESP *esp, __u32 addr, int length)
  206. {
  207. struct fastlane_dma_registers *dregs = 
  208. (struct fastlane_dma_registers *) (esp->dregs);
  209. unsigned long *t;
  210. cache_push(addr, length);
  211. dma_clear(esp);
  212. t = (unsigned long *)((addr & 0x00ffffff) + (esp->edev));
  213. dregs->clear_strobe = 0;
  214. *t = addr;
  215. ctrl_data = ((ctrl_data & FASTLANE_DMA_MASK) | 
  216.      FASTLANE_DMA_ENABLE |
  217.      FASTLANE_DMA_WRITE);
  218. dregs->ctrl_reg = ctrl_data;
  219. }
  220. static inline void dma_clear(struct NCR_ESP *esp)
  221. {
  222. struct fastlane_dma_registers *dregs = 
  223. (struct fastlane_dma_registers *) (esp->dregs);
  224. unsigned long *t;
  225. ctrl_data = (ctrl_data & FASTLANE_DMA_MASK);
  226. dregs->ctrl_reg = ctrl_data;
  227. t = (unsigned long *)(esp->edev);
  228. dregs->clear_strobe = 0;
  229. *t = 0 ;
  230. }
  231. static void dma_ints_off(struct NCR_ESP *esp)
  232. {
  233. disable_irq(esp->irq);
  234. }
  235. static void dma_ints_on(struct NCR_ESP *esp)
  236. {
  237. enable_irq(esp->irq);
  238. }
  239. static void dma_irq_exit(struct NCR_ESP *esp)
  240. {
  241. struct fastlane_dma_registers *dregs = 
  242. (struct fastlane_dma_registers *) (esp->dregs);
  243. dregs->ctrl_reg = ctrl_data & ~(FASTLANE_DMA_EDI|FASTLANE_DMA_ESI);
  244. #ifdef __mc68000__
  245. nop();
  246. #endif
  247. dregs->ctrl_reg = ctrl_data;
  248. }
  249. static int dma_irq_p(struct NCR_ESP *esp)
  250. {
  251. struct fastlane_dma_registers *dregs = 
  252. (struct fastlane_dma_registers *) (esp->dregs);
  253. unsigned char dma_status;
  254. dma_status = dregs->cond_reg;
  255. if(dma_status & FASTLANE_DMA_IACT)
  256. return 0; /* not our IRQ */
  257. /* Return non-zero if ESP requested IRQ */
  258. return (
  259. #ifndef NODMAIRQ
  260.    (dma_status & FASTLANE_DMA_CREQ) &&
  261. #endif
  262.    (!(dma_status & FASTLANE_DMA_MINT)) &&
  263.    (esp_read(((struct ESP_regs *) (esp->eregs))->esp_status) & ESP_STAT_INTR));
  264. }
  265. static void dma_led_off(struct NCR_ESP *esp)
  266. {
  267. ctrl_data &= ~FASTLANE_DMA_LED;
  268. ((struct fastlane_dma_registers *)(esp->dregs))->ctrl_reg = ctrl_data;
  269. }
  270. static void dma_led_on(struct NCR_ESP *esp)
  271. {
  272. ctrl_data |= FASTLANE_DMA_LED;
  273. ((struct fastlane_dma_registers *)(esp->dregs))->ctrl_reg = ctrl_data;
  274. }
  275. static int dma_ports_p(struct NCR_ESP *esp)
  276. {
  277. return ((custom.intenar) & IF_PORTS);
  278. }
  279. static void dma_setup(struct NCR_ESP *esp, __u32 addr, int count, int write)
  280. {
  281. /* On the Sparc, DMA_ST_WRITE means "move data from device to memory"
  282.  * so when (write) is true, it actually means READ!
  283.  */
  284. if(write){
  285. dma_init_read(esp, addr, count);
  286. } else {
  287. dma_init_write(esp, addr, count);
  288. }
  289. }
  290. #define HOSTS_C
  291. #include "fastlane.h"
  292. static Scsi_Host_Template driver_template = SCSI_FASTLANE;
  293. #include "scsi_module.c"
  294. int fastlane_esp_release(struct Scsi_Host *instance)
  295. {
  296. #ifdef MODULE
  297. unsigned long address = (unsigned long)((struct NCR_ESP *)instance->hostdata)->edev;
  298. esp_deallocate((struct NCR_ESP *)instance->hostdata);
  299. esp_release();
  300. release_mem_region(address, sizeof(struct ESP_regs));
  301. free_irq(IRQ_AMIGA_PORTS, esp_intr);
  302. #endif
  303. return 1;
  304. }
  305. MODULE_LICENSE("GPL");