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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/drivers/scsi/arxescsi.c
  3.  *
  4.  * Copyright (C) 1997-2000 Russell King, Stefan Hanske
  5.  *
  6.  * This driver is based on experimentation.  Hence, it may have made
  7.  * assumptions about the particular card that I have available, and
  8.  * may not be reliable!
  9.  *
  10.  * Changelog:
  11.  *  30-08-1997 RMK 0.0.0 Created, READONLY version as cumana_2.c
  12.  *  22-01-1998 RMK 0.0.1 Updated to 2.1.80
  13.  *  15-04-1998 RMK 0.0.1 Only do PIO if FAS216 will allow it.
  14.  *  11-06-1998  SH 0.0.2   Changed to support ARXE 16-bit SCSI card
  15.  * enabled writing
  16.  *  01-01-2000 SH 0.1.0   Added *real* pseudo dma writing
  17.  * (arxescsi_pseudo_dma_write)
  18.  *  02-04-2000 RMK 0.1.1 Updated for new error handling code.
  19.  *  22-10-2000  SH Updated for new registering scheme.
  20.  */
  21. #include <linux/module.h>
  22. #include <linux/blk.h>
  23. #include <linux/kernel.h>
  24. #include <linux/string.h>
  25. #include <linux/ioport.h>
  26. #include <linux/sched.h>
  27. #include <linux/proc_fs.h>
  28. #include <linux/unistd.h>
  29. #include <linux/stat.h>
  30. #include <linux/delay.h>
  31. #include <linux/init.h>
  32. #include <asm/dma.h>
  33. #include <asm/io.h>
  34. #include <asm/irq.h>
  35. #include <asm/ecard.h>
  36. #include "../../scsi/sd.h"
  37. #include "../../scsi/hosts.h"
  38. #include "arxescsi.h"
  39. #include "fas216.h"
  40. /* Hmm - this should go somewhere else */
  41. #define BUS_ADDR(x) ((((unsigned long)(x)) << 2) + IO_BASE)
  42. /* Configuration */
  43. #define ARXESCSI_XTALFREQ 24
  44. #define ARXESCSI_ASYNC_PERIOD 200
  45. #define ARXESCSI_SYNC_DEPTH 0
  46. /*
  47.  * List of devices that the driver will recognise
  48.  */
  49. #define ARXESCSI_LIST { MANU_ARXE, PROD_ARXE_SCSI }
  50. /*
  51.  * Version
  52.  */
  53. #define VER_MAJOR 0
  54. #define VER_MINOR 1
  55. #define VER_PATCH 1
  56. static struct expansion_card *ecs[MAX_ECARDS];
  57. /*
  58.  * Function: int arxescsi_dma_setup(host, SCpnt, direction, min_type)
  59.  * Purpose : initialises DMA/PIO
  60.  * Params  : host      - host
  61.  *      SCpnt     - command
  62.  *      direction - DMA on to/off of card
  63.  *      min_type  - minimum DMA support that we must have for this transfer
  64.  * Returns : 0 if we should not set CMD_WITHDMA for transfer info command
  65.  */
  66. static fasdmatype_t
  67. arxescsi_dma_setup(struct Scsi_Host *host, Scsi_Pointer *SCp,
  68.        fasdmadir_t direction, fasdmatype_t min_type)
  69. {
  70. /*
  71.  * We don't do real DMA
  72.  */
  73. return fasdma_pseudo;
  74. }
  75. /* Faster transfer routines, written by SH to speed up the loops */
  76. static __inline__ unsigned char getb(unsigned int address, unsigned int reg)
  77. {
  78. unsigned char value;
  79. __asm__ __volatile__(
  80. "ldrb %0, [%1, %2, lsl #5]"
  81. : "=r" (value)
  82. : "r" (address), "r" (reg) );
  83. return value;
  84. }
  85. static __inline__ unsigned int getw(unsigned int address, unsigned int reg)
  86. {
  87. unsigned int value;
  88. __asm__ __volatile__(
  89. "ldr %0, [%1, %2, lsl #5]nt"
  90. "mov %0, %0, lsl #16nt"
  91. "mov %0, %0, lsr #16"
  92. : "=r" (value)
  93. : "r" (address), "r" (reg) );
  94. return value;
  95. }
  96. static __inline__ void putw(unsigned int address, unsigned int reg, unsigned long value)
  97. {
  98. __asm__ __volatile__(
  99. "mov %0, %0, lsl #16nt"
  100. "str %0, [%1, %2, lsl #5]"
  101. :
  102. : "r" (value), "r" (address), "r" (reg) );
  103. }
  104. void arxescsi_pseudo_dma_write(unsigned char *addr, unsigned int io)
  105. {
  106.        __asm__ __volatile__(
  107.        "               stmdb   sp!, {r0-r12}n"
  108.        "               mov     r3, %0n"
  109.        "               mov     r1, %1n"
  110.        "               add     r2, r1, #512n"
  111.        "               mov     r4, #256n"
  112.        ".loop_1:       ldmia   r3!, {r6, r8, r10, r12}n"
  113.        "               mov     r5, r6, lsl #16n"
  114.        "               mov     r7, r8, lsl #16n"
  115.        ".loop_2:       ldrb    r0, [r1, #1536]n"
  116.        "               tst     r0, #1n"
  117.        "               beq     .loop_2n"
  118.        "               stmia   r2, {r5-r8}nt"
  119.        "               mov     r9, r10, lsl #16n"
  120.        "               mov     r11, r12, lsl #16n"
  121.        ".loop_3:       ldrb    r0, [r1, #1536]n"
  122.        "               tst     r0, #1n"
  123.        "               beq     .loop_3n"
  124.        "               stmia   r2, {r9-r12}n"
  125.        "               subs    r4, r4, #16n"
  126.        "               bne     .loop_1n"
  127.        "               ldmia   sp!, {r0-r12}n"
  128.        :
  129.        : "r" (addr), "r" (io) );
  130. }
  131. /*
  132.  * Function: int arxescsi_dma_pseudo(host, SCpnt, direction, transfer)
  133.  * Purpose : handles pseudo DMA
  134.  * Params  : host      - host
  135.  *      SCpnt     - command
  136.  *      direction - DMA on to/off of card
  137.  *      transfer  - minimum number of bytes we expect to transfer
  138.  */
  139. void arxescsi_dma_pseudo(struct Scsi_Host *host, Scsi_Pointer *SCp,
  140. fasdmadir_t direction, int transfer)
  141. {
  142. ARXEScsi_Info *info = (ARXEScsi_Info *)host->hostdata;
  143. unsigned int length, io, error=0;
  144. unsigned char *addr;
  145. length = SCp->this_residual;
  146. addr = SCp->ptr;
  147. io = __ioaddr(host->io_port);
  148. if (direction == DMA_OUT) {
  149. unsigned int word;
  150. while (length > 256) {
  151. if (getb(io, 4) & STAT_INT) {
  152. error=1;
  153. break;
  154. }
  155. arxescsi_pseudo_dma_write(addr, io);
  156. addr += 256;
  157. length -= 256;
  158. }
  159. if (!error)
  160. while (length > 0) {
  161. if (getb(io, 4) & STAT_INT)
  162. break;
  163.  
  164. if (!(getb(io, 48) & CSTATUS_IRQ))
  165. continue;
  166. word = *addr | *(addr + 1) << 8;
  167. putw(io, 16, word);
  168. if (length > 1) {
  169. addr += 2;
  170. length -= 2;
  171. } else {
  172. addr += 1;
  173. length -= 1;
  174. }
  175. }
  176. }
  177. else {
  178. if (transfer && (transfer & 255)) {
  179. while (length >= 256) {
  180. if (getb(io, 4) & STAT_INT) {
  181. error=1;
  182. break;
  183. }
  184.     
  185. if (!(getb(io, 48) & CSTATUS_IRQ))
  186. continue;
  187. insw(info->dmaarea, addr, 256 >> 1);
  188. addr += 256;
  189. length -= 256;
  190. }
  191. }
  192. if (!(error))
  193. while (length > 0) {
  194. unsigned long word;
  195. if (getb(io, 4) & STAT_INT)
  196. break;
  197. if (!(getb(io, 48) & CSTATUS_IRQ))
  198. continue;
  199. word = getw(io, 16);
  200. *addr++ = word;
  201. if (--length > 0) {
  202. *addr++ = word >> 8;
  203. length --;
  204. }
  205. }
  206. }
  207. }
  208. /*
  209.  * Function: int arxescsi_dma_stop(host, SCpnt)
  210.  * Purpose : stops DMA/PIO
  211.  * Params  : host  - host
  212.  *      SCpnt - command
  213.  */
  214. static void arxescsi_dma_stop(struct Scsi_Host *host, Scsi_Pointer *SCp)
  215. {
  216. /*
  217.  * no DMA to stop
  218.  */
  219. }
  220. /*
  221.  * Function: int arxescsi_detect(Scsi_Host_Template * tpnt)
  222.  * Purpose : initialises ARXE SCSI driver
  223.  * Params  : tpnt - template for this SCSI adapter
  224.  * Returns : >0 if host found, 0 otherwise.
  225.  */
  226. int arxescsi_detect(Scsi_Host_Template *tpnt)
  227. {
  228. static const card_ids arxescsi_cids[] = { ARXESCSI_LIST, { 0xffff, 0xffff} };
  229. int count = 0;
  230. struct Scsi_Host *host;
  231.   
  232. tpnt->proc_name = "arxescsi";
  233. memset(ecs, 0, sizeof (ecs));
  234. ecard_startfind();
  235. while (1) {
  236.      ARXEScsi_Info *info;
  237. ecs[count] = ecard_find(0, arxescsi_cids);
  238. if (!ecs[count])
  239. break;
  240. ecard_claim(ecs[count]);
  241. host = scsi_register(tpnt, sizeof (ARXEScsi_Info));
  242. if (!host) {
  243. ecard_release(ecs[count]);
  244. break;
  245. }
  246. host->io_port = ecard_address(ecs[count], ECARD_MEMC, 0) + 0x0800;
  247. host->irq = NO_IRQ;
  248. host->dma_channel = NO_DMA;
  249. host->can_queue = 0; /* no command queueing */
  250. info = (ARXEScsi_Info *)host->hostdata;
  251. info->info.scsi.io_port = host->io_port;
  252. info->info.scsi.irq = host->irq;
  253. info->info.scsi.io_shift = 3;
  254. info->info.ifcfg.clockrate = ARXESCSI_XTALFREQ;
  255. info->info.ifcfg.select_timeout = 255;
  256. info->info.ifcfg.asyncperiod = ARXESCSI_ASYNC_PERIOD;
  257. info->info.ifcfg.sync_max_depth = ARXESCSI_SYNC_DEPTH;
  258. info->info.ifcfg.cntl3 = CNTL3_FASTSCSI | CNTL3_FASTCLK;
  259. info->info.ifcfg.disconnect_ok = 0;
  260. info->info.ifcfg.wide_max_size = 0;
  261. info->info.dma.setup = arxescsi_dma_setup;
  262. info->info.dma.pseudo = arxescsi_dma_pseudo;
  263. info->info.dma.stop = arxescsi_dma_stop;
  264. info->dmaarea = host->io_port + 128;
  265. info->cstatus = host->io_port + 384;
  266. ecs[count]->irqaddr = (unsigned char *)BUS_ADDR(host->io_port);
  267. ecs[count]->irqmask = CSTATUS_IRQ;
  268. request_region(host->io_port      , 120, "arxescsi-fas");
  269. request_region(host->io_port + 128, 384, "arxescsi-dma");
  270. printk("scsi%d: Has no interrupts - using polling moden",
  271.        host->host_no);
  272. fas216_init(host);
  273. ++count;
  274. }
  275. return count;
  276. }
  277. /*
  278.  * Function: int arxescsi_release(struct Scsi_Host * host)
  279.  * Purpose : releases all resources used by this adapter
  280.  * Params  : host - driver host structure to return info for.
  281.  * Returns : nothing
  282.  */
  283. int arxescsi_release(struct Scsi_Host *host)
  284. {
  285. int i;
  286. fas216_release(host);
  287. release_region(host->io_port, 120);
  288. release_region(host->io_port + 128, 384);
  289. for (i = 0; i < MAX_ECARDS; i++)
  290. if (ecs[i] && host->io_port == (ecard_address(ecs[i], ECARD_MEMC, 0) + 0x0800))
  291. ecard_release(ecs[i]);
  292. return 0;
  293. }
  294. /*
  295.  * Function: const char *arxescsi_info(struct Scsi_Host * host)
  296.  * Purpose : returns a descriptive string about this interface,
  297.  * Params  : host - driver host structure to return info for.
  298.  * Returns : pointer to a static buffer containing null terminated string.
  299.  */
  300. const char *arxescsi_info(struct Scsi_Host *host)
  301. {
  302. ARXEScsi_Info *info = (ARXEScsi_Info *)host->hostdata;
  303. static char string[100], *p;
  304. p = string;
  305. p += sprintf(p, "%s ", host->hostt->name);
  306. p += fas216_info(&info->info, p);
  307. p += sprintf(p, "v%d.%d.%d", VER_MAJOR, VER_MINOR, VER_PATCH);
  308. return string;
  309. }
  310. /*
  311.  * Function: int arxescsi_proc_info(char *buffer, char **start, off_t offset,
  312.  *  int length, int host_no, int inout)
  313.  * Purpose : Return information about the driver to a user process accessing
  314.  *      the /proc filesystem.
  315.  * Params  : buffer - a buffer to write information to
  316.  *      start  - a pointer into this buffer set by this routine to the start
  317.  *       of the required information.
  318.  *      offset - offset into information that we have read upto.
  319.  *      length - length of buffer
  320.  *      host_no - host number to return information for
  321.  *      inout  - 0 for reading, 1 for writing.
  322.  * Returns : length of data written to buffer.
  323.  */
  324. int arxescsi_proc_info(char *buffer, char **start, off_t offset,
  325.     int length, int host_no, int inout)
  326. {
  327. int pos, begin;
  328. struct Scsi_Host *host = scsi_hostlist;
  329. ARXEScsi_Info *info;
  330. Scsi_Device *scd;
  331. while (host) {
  332. if (host->host_no == host_no)
  333. break;
  334. host = host->next;
  335. }
  336. if (!host)
  337. return 0;
  338. info = (ARXEScsi_Info *)host->hostdata;
  339. if (inout == 1)
  340. return -EINVAL;
  341. begin = 0;
  342. pos = sprintf(buffer,
  343. "ARXE 16-bit SCSI driver version %d.%d.%dn",
  344. VER_MAJOR, VER_MINOR, VER_PATCH);
  345. pos += fas216_print_host(&info->info, buffer + pos);
  346. pos += fas216_print_stats(&info->info, buffer + pos);
  347. pos += sprintf (buffer+pos, "nAttached devices:n");
  348. for (scd = host->host_queue; scd; scd = scd->next) {
  349. pos += fas216_print_device(&info->info, scd, buffer + pos);
  350. if (pos + begin < offset) {
  351. begin += pos;
  352. pos = 0;
  353. }
  354. if (pos + begin > offset + length)
  355. break;
  356. }
  357. *start = buffer + (offset - begin);
  358. pos -= offset - begin;
  359. if (pos > length)
  360. pos = length;
  361. return pos;
  362. }
  363. static Scsi_Host_Template arxescsi_template = ARXEScsi;
  364. static int __init init_arxe_scsi_driver(void)
  365. {
  366.         arxescsi_template.module = THIS_MODULE;
  367. scsi_register_module(MODULE_SCSI_HA, &arxescsi_template);
  368. if (arxescsi_template.present)
  369. return 0;
  370. scsi_unregister_module(MODULE_SCSI_HA, &arxescsi_template);
  371. return -ENODEV;
  372. }
  373. static void __exit exit_arxe_scsi_driver(void)
  374. {
  375. scsi_unregister_module(MODULE_SCSI_HA, &arxescsi_template);
  376. }
  377. module_init(init_arxe_scsi_driver);
  378. module_exit(exit_arxe_scsi_driver);
  379. MODULE_AUTHOR("Stefan Hanske");
  380. MODULE_DESCRIPTION("ARXESCSI driver for Acorn machines");
  381. MODULE_LICENSE("GPL");
  382. EXPORT_NO_SYMBOLS;