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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
  3.  *
  4.  * Sun3 DMA routines added by Sam Creasey (sammy@oh.verio.com)
  5.  *
  6.  * Adapted from mac_scsinew.c:
  7.  */
  8. /*
  9.  * Generic Macintosh NCR5380 driver
  10.  *
  11.  * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
  12.  *
  13.  * derived in part from:
  14.  */
  15. /*
  16.  * Generic Generic NCR5380 driver
  17.  *
  18.  * Copyright 1995, Russell King
  19.  *
  20.  * ALPHA RELEASE 1.
  21.  *
  22.  * For more information, please consult
  23.  *
  24.  * NCR 5380 Family
  25.  * SCSI Protocol Controller
  26.  * Databook
  27.  *
  28.  * NCR Microelectronics
  29.  * 1635 Aeroplaza Drive
  30.  * Colorado Springs, CO 80916
  31.  * 1+ (719) 578-3400
  32.  * 1+ (800) 334-5454
  33.  */
  34. /*
  35.  * This is from mac_scsi.h, but hey, maybe this is useful for Sun3 too! :)
  36.  *
  37.  * Options :
  38.  *
  39.  * PARITY - enable parity checking.  Not supported.
  40.  *
  41.  * SCSI2 - enable support for SCSI-II tagged queueing.  Untested.
  42.  *
  43.  * USLEEP - enable support for devices that don't disconnect.  Untested.
  44.  */
  45. /*
  46.  * $Log: sun3_NCR5380.c,v $
  47.  */
  48. #define AUTOSENSE
  49. #include <linux/types.h>
  50. #include <linux/stddef.h>
  51. #include <linux/ctype.h>
  52. #include <linux/delay.h>
  53. #include <linux/module.h>
  54. #include <linux/signal.h>
  55. #include <linux/sched.h>
  56. #include <linux/ioport.h>
  57. #include <linux/init.h>
  58. #include <linux/blk.h>
  59. #include <asm/io.h>
  60. #include <asm/system.h>
  61. #include <asm/sun3ints.h>
  62. #include <asm/dvma.h>
  63. #include <asm/idprom.h>
  64. #include <asm/machines.h>
  65. /* dma on! */
  66. #define REAL_DMA
  67. #include "scsi.h"
  68. #include "hosts.h"
  69. #include "sun3_scsi.h"
  70. #include "NCR5380.h"
  71. #include "constants.h"
  72. #define USE_WRAPPER
  73. #define RESET_BOOT
  74. #define DRIVER_SETUP
  75. #define NDEBUG 0
  76. /*
  77.  * BUG can be used to trigger a strange code-size related hang on 2.1 kernels
  78.  */
  79. #ifdef BUG
  80. #undef RESET_BOOT
  81. #undef DRIVER_SETUP
  82. #endif
  83. #undef SUPPORT_TAGS
  84. #define ENABLE_IRQ() enable_irq( IRQ_SUN3_SCSI ); 
  85. static void scsi_sun3_intr(int irq, void *dummy, struct pt_regs *fp);
  86. static inline unsigned char sun3scsi_read(int reg);
  87. static inline void sun3scsi_write(int reg, int value);
  88. static int setup_can_queue = -1;
  89. static int setup_cmd_per_lun = -1;
  90. static int setup_sg_tablesize = -1;
  91. #ifdef SUPPORT_TAGS
  92. static int setup_use_tagged_queuing = -1;
  93. #endif
  94. static int setup_hostid = -1;
  95. static Scsi_Cmnd *sun3_dma_setup_done = NULL;
  96. #define AFTER_RESET_DELAY (HZ/2)
  97. /* ms to wait after hitting dma regs */
  98. #define SUN3_DMA_DELAY 10
  99. /* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
  100. #define SUN3_DVMA_BUFSIZE 0xe000
  101. /* minimum number of bytes to do dma on */
  102. #define SUN3_DMA_MINSIZE 128
  103. static volatile unsigned char *sun3_scsi_regp;
  104. static volatile struct sun3_dma_regs *dregs;
  105. static unsigned char *dmabuf = NULL; /* dma memory buffer */
  106. static struct sun3_udc_regs *udc_regs = NULL;
  107. static unsigned char *sun3_dma_orig_addr = NULL;
  108. static unsigned long sun3_dma_orig_count = 0;
  109. static int sun3_dma_active = 0;
  110. static unsigned long last_residual = 0;
  111. /*
  112.  * NCR 5380 register access functions
  113.  */
  114. static inline unsigned char sun3scsi_read(int reg)
  115. {
  116. return( sun3_scsi_regp[reg] );
  117. }
  118. static inline void sun3scsi_write(int reg, int value)
  119. {
  120. sun3_scsi_regp[reg] = value;
  121. }
  122. /* dma controller register access functions */
  123. static inline unsigned short sun3_udc_read(unsigned char reg)
  124. {
  125. unsigned short ret;
  126. dregs->udc_addr = UDC_CSR;
  127. udelay(SUN3_DMA_DELAY);
  128. ret = dregs->udc_data;
  129. udelay(SUN3_DMA_DELAY);
  130. return ret;
  131. }
  132. static inline void sun3_udc_write(unsigned short val, unsigned char reg)
  133. {
  134. dregs->udc_addr = reg;
  135. udelay(SUN3_DMA_DELAY);
  136. dregs->udc_data = val;
  137. udelay(SUN3_DMA_DELAY);
  138. }
  139. /*
  140.  * XXX: status debug
  141.  */
  142. static struct Scsi_Host *default_instance;
  143. /*
  144.  * Function : int sun3scsi_detect(Scsi_Host_Template * tpnt)
  145.  *
  146.  * Purpose : initializes mac NCR5380 driver based on the
  147.  * command line / compile time port and irq definitions.
  148.  *
  149.  * Inputs : tpnt - template for this SCSI adapter.
  150.  *
  151.  * Returns : 1 if a host adapter was found, 0 if not.
  152.  *
  153.  */
  154.  
  155. int sun3scsi_detect(Scsi_Host_Template * tpnt)
  156. {
  157. unsigned long ioaddr, iopte;
  158. int count = 0;
  159. static int called = 0;
  160. struct Scsi_Host *instance;
  161. /* check that this machine has an onboard 5380 */
  162. switch(idprom->id_machtype) {
  163. case SM_SUN3|SM_3_50:
  164. case SM_SUN3|SM_3_60:
  165. break;
  166. default:
  167. return 0;
  168. }
  169. if(called)
  170. return 0;
  171. tpnt->proc_name = "Sun3 5380 SCSI";
  172. /* setup variables */
  173. tpnt->can_queue =
  174. (setup_can_queue > 0) ? setup_can_queue : CAN_QUEUE;
  175. tpnt->cmd_per_lun =
  176. (setup_cmd_per_lun > 0) ? setup_cmd_per_lun : CMD_PER_LUN;
  177. tpnt->sg_tablesize = 
  178. (setup_sg_tablesize >= 0) ? setup_sg_tablesize : SG_TABLESIZE;
  179. if (setup_hostid >= 0)
  180. tpnt->this_id = setup_hostid;
  181. else {
  182. /* use 7 as default */
  183. tpnt->this_id = 7;
  184. }
  185. /* Taken from Sammy's lance driver: */
  186.         /* IOBASE_SUN3_SCSI can be found within the IO pmeg with some effort */
  187.         for(ioaddr = 0xfe00000; ioaddr < (0xfe00000 + SUN3_PMEG_SIZE);
  188.             ioaddr += SUN3_PTE_SIZE) {
  189.                 iopte = sun3_get_pte(ioaddr);
  190.                 if(!(iopte & SUN3_PAGE_TYPE_IO)) /* this an io page? */
  191.                         continue;
  192.                 if(((iopte & SUN3_PAGE_PGNUM_MASK) << PAGE_SHIFT) ==
  193.                    IOBASE_SUN3_SCSI) {
  194.                         count = 1;
  195.                         break;
  196.                 }
  197.         }
  198. if(!count) {
  199. printk("No Sun3 NCR5380 found!n");
  200. return 0;
  201. }
  202. sun3_scsi_regp = (unsigned char *)ioaddr;
  203. dregs = (struct sun3_dma_regs *)(((unsigned char *)ioaddr) + 8);
  204. if((udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs)))
  205.    == NULL) {
  206.      printk("SUN3 Scsi couldn't allocate DVMA memory!n");
  207.      return 0;
  208. }
  209. #ifdef OLDDMA
  210. if((dmabuf = dvma_malloc_align(SUN3_DVMA_BUFSIZE, 0x10000)) == NULL) {
  211.      printk("SUN3 Scsi couldn't allocate DVMA memory!n");
  212.      return 0;
  213. }
  214. #endif
  215. #ifdef SUPPORT_TAGS
  216. if (setup_use_tagged_queuing < 0)
  217. setup_use_tagged_queuing = DEFAULT_USE_TAGGED_QUEUING;
  218. #endif
  219. instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
  220. if(instance == NULL)
  221. return 0;
  222. default_instance = instance;
  223.         instance->io_port = (unsigned long) ioaddr;
  224. instance->irq = IRQ_SUN3_SCSI;
  225. NCR5380_init(instance, 0);
  226. instance->n_io_port = 32;
  227.         ((struct NCR5380_hostdata *)instance->hostdata)->ctrl = 0;
  228. if (request_irq(instance->irq, scsi_sun3_intr,
  229.      0, "Sun3SCSI-5380", NULL)) {
  230. #ifndef REAL_DMA
  231. printk("scsi%d: IRQ%d not free, interrupts disabledn",
  232.        instance->host_no, instance->irq);
  233. instance->irq = IRQ_NONE;
  234. #else
  235. printk("scsi%d: IRQ%d not free, bailing outn",
  236.        instance->host_no, instance->irq);
  237. return 0;
  238. #endif
  239. }
  240. printk("scsi%d: Sun3 5380 at port %lX irq", instance->host_no, instance->io_port);
  241. if (instance->irq == IRQ_NONE)
  242. printk ("s disabled");
  243. else
  244. printk (" %d", instance->irq);
  245. printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d",
  246.        instance->can_queue, instance->cmd_per_lun,
  247.        SUN3SCSI_PUBLIC_RELEASE);
  248. printk("nscsi%d:", instance->host_no);
  249. NCR5380_print_options(instance);
  250. printk("n");
  251. dregs->csr = 0;
  252. udelay(SUN3_DMA_DELAY);
  253. dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
  254. udelay(SUN3_DMA_DELAY);
  255. dregs->fifo_count = 0;
  256. called = 1;
  257. return 1;
  258. }
  259. int sun3scsi_release (struct Scsi_Host *shpnt)
  260. {
  261. if (shpnt->irq != IRQ_NONE)
  262. free_irq (shpnt->irq, NULL);
  263. return 0;
  264. }
  265. #ifdef RESET_BOOT
  266. /*
  267.  * Our 'bus reset on boot' function
  268.  */
  269. static void sun3_scsi_reset_boot(struct Scsi_Host *instance)
  270. {
  271. unsigned long end;
  272. NCR5380_local_declare();
  273. NCR5380_setup(instance);
  274. /*
  275.  * Do a SCSI reset to clean up the bus during initialization. No
  276.  * messing with the queues, interrupts, or locks necessary here.
  277.  */
  278. printk( "Sun3 SCSI: resetting the SCSI bus..." );
  279. /* switch off SCSI IRQ - catch an interrupt without IRQ bit set else */
  280.         sun3_disable_irq( IRQ_SUN3_SCSI );
  281. /* get in phase */
  282. NCR5380_write( TARGET_COMMAND_REG,
  283.       PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG) ));
  284. /* assert RST */
  285. NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST );
  286. /* The min. reset hold time is 25us, so 40us should be enough */
  287. udelay( 50 );
  288. /* reset RST and interrupt */
  289. NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
  290. NCR5380_read( RESET_PARITY_INTERRUPT_REG );
  291. for( end = jiffies + AFTER_RESET_DELAY; time_before(jiffies, end); )
  292. barrier();
  293. /* switch on SCSI IRQ again */
  294.         sun3_enable_irq( IRQ_SUN3_SCSI );
  295. printk( " donen" );
  296. }
  297. #endif
  298. const char * sun3scsi_info (struct Scsi_Host *spnt) {
  299.     return "";
  300. }
  301. // safe bits for the CSR
  302. #define CSR_GOOD 0x060f
  303. static void scsi_sun3_intr(int irq, void *dummy, struct pt_regs *fp)
  304. {
  305. unsigned short csr = dregs->csr;
  306. if(csr & ~CSR_GOOD) {
  307. if(csr & CSR_DMA_BUSERR) {
  308. printk("scsi%d: bus error in dman", default_instance->host_no);
  309. }
  310. if(csr & CSR_DMA_CONFLICT) {
  311. printk("scsi%d: dma conflictn", default_instance->host_no);
  312. }
  313. }
  314. if(csr & (CSR_SDB_INT | CSR_DMA_INT))
  315. NCR5380_intr(irq, dummy, fp);
  316. }
  317. /*
  318.  * Debug stuff - to be called on NMI, or sysrq key. Use at your own risk; 
  319.  * reentering NCR5380_print_status seems to have ugly side effects
  320.  */
  321. /* this doesn't seem to get used at all -- sam */
  322. #if 0
  323. void sun3_sun3_debug (void)
  324. {
  325. unsigned long flags;
  326. NCR5380_local_declare();
  327. if (default_instance) {
  328. save_flags(flags);
  329. cli();
  330. NCR5380_print_status(default_instance);
  331. restore_flags(flags);
  332. }
  333. }
  334. #endif
  335. /* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
  336. static unsigned long sun3scsi_dma_setup(void *data, unsigned long count, int write_flag)
  337. {
  338. #ifdef OLDDMA
  339. if(write_flag) 
  340. memcpy(dmabuf, data, count);
  341. else {
  342. sun3_dma_orig_addr = data;
  343. sun3_dma_orig_count = count;
  344. }
  345. #else
  346. void *addr;
  347. // addr = sun3_dvma_page((unsigned long)data, (unsigned long)dmabuf);
  348. addr = (void *)dvma_map((unsigned long) data, count);
  349. sun3_dma_orig_addr = addr;
  350. sun3_dma_orig_count = count;
  351. #endif
  352. dregs->fifo_count = 0;
  353. sun3_udc_write(UDC_RESET, UDC_CSR);
  354. /* reset fifo */
  355. dregs->csr &= ~CSR_FIFO;
  356. dregs->csr |= CSR_FIFO;
  357. /* set direction */
  358. if(write_flag)
  359. dregs->csr |= CSR_SEND;
  360. else
  361. dregs->csr &= ~CSR_SEND;
  362. /* byte count for fifo */
  363. dregs->fifo_count = count;
  364. sun3_udc_write(UDC_RESET, UDC_CSR);
  365. /* reset fifo */
  366. dregs->csr &= ~CSR_FIFO;
  367. dregs->csr |= CSR_FIFO;
  368. if(dregs->fifo_count != count) { 
  369. printk("scsi%d: fifo_mismatch %04x not %04xn",
  370.        default_instance->host_no, dregs->fifo_count,
  371.        (unsigned int) count);
  372. NCR5380_print(default_instance);
  373. }
  374. /* setup udc */
  375. #ifdef OLDDMA
  376. udc_regs->addr_hi = ((dvma_vtob(dmabuf) & 0xff0000) >> 8);
  377. udc_regs->addr_lo = (dvma_vtob(dmabuf) & 0xffff);
  378. #else
  379. udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
  380. udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
  381. #endif
  382. udc_regs->count = count/2; /* count in words */
  383. udc_regs->mode_hi = UDC_MODE_HIWORD;
  384. if(write_flag) {
  385. if(count & 1)
  386. udc_regs->count++;
  387. udc_regs->mode_lo = UDC_MODE_LSEND;
  388. udc_regs->rsel = UDC_RSEL_SEND;
  389. } else {
  390. udc_regs->mode_lo = UDC_MODE_LRECV;
  391. udc_regs->rsel = UDC_RSEL_RECV;
  392. }
  393. /* announce location of regs block */
  394. sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
  395.        UDC_CHN_HI); 
  396. sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);
  397. /* set dma master on */
  398. sun3_udc_write(0xd, UDC_MODE);
  399. /* interrupt enable */
  400. sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
  401.         return count;
  402. }
  403. static inline unsigned long sun3scsi_dma_count(struct Scsi_Host *instance)
  404. {
  405. unsigned short resid;
  406. dregs->udc_addr = 0x32; 
  407. udelay(SUN3_DMA_DELAY);
  408. resid = dregs->udc_data;
  409. udelay(SUN3_DMA_DELAY);
  410. resid *= 2;
  411. return (unsigned long) resid;
  412. }
  413. static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
  414. {
  415. return last_residual;
  416. }
  417. static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted, Scsi_Cmnd *cmd,
  418.     int write_flag)
  419. {
  420. if((cmd->request.cmd == 0) || (cmd->request.cmd == 1))
  421.   return wanted;
  422. else
  423. return 0;
  424. }
  425. /* clean up after our dma is done */
  426. static int sun3scsi_dma_finish(int write_flag)
  427. {
  428. unsigned short count;
  429. unsigned short fifo;
  430. int ret = 0;
  431. sun3_dma_active = 0;
  432. // check to empty the fifo on a read
  433. if(!write_flag) {
  434. int tmo = 200000; /* 2 sec */
  435. while(1) {
  436. if(dregs->csr & CSR_FIFO_EMPTY)
  437. break;
  438. if(--tmo <= 0) 
  439. return 1;
  440. udelay(10);
  441. }
  442. }
  443. count = sun3scsi_dma_count(default_instance);
  444. #ifdef OLDDMA
  445. /* if we've finished a read, copy out the data we read */
  446.   if(sun3_dma_orig_addr) {
  447. /* check for residual bytes after dma end */
  448. if(count && (NCR5380_read(BUS_AND_STATUS_REG) &
  449.      (BASR_PHASE_MATCH | BASR_ACK))) {
  450. printk("scsi%d: sun3_scsi_finish: read overrun baby... ", default_instance->host_no);
  451. printk("basr now %02xn", NCR5380_read(BUS_AND_STATUS_REG));
  452. ret = count;
  453. }
  454. /* copy in what we dma'd no matter what */
  455. memcpy(sun3_dma_orig_addr, dmabuf, sun3_dma_orig_count);
  456. sun3_dma_orig_addr = NULL;
  457. }
  458. #else
  459. fifo = dregs->fifo_count;
  460. last_residual = fifo;
  461. /* empty bytes from the fifo which didn't make it */
  462. if((!write_flag) && (count - fifo) == 2) {
  463. unsigned short data;
  464. unsigned char *vaddr;
  465. data = dregs->fifo_data;
  466. vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
  467. vaddr += (sun3_dma_orig_count - fifo);
  468. vaddr[-2] = (data & 0xff00) >> 8;
  469. vaddr[-1] = (data & 0xff);
  470. }
  471. dvma_unmap(sun3_dma_orig_addr);
  472. #endif
  473. sun3_udc_write(UDC_RESET, UDC_CSR);
  474. dregs->fifo_count = 0;
  475. dregs->csr &= ~CSR_SEND;
  476. /* reset fifo */
  477. dregs->csr &= ~CSR_FIFO;
  478. dregs->csr |= CSR_FIFO;
  479. sun3_dma_setup_done = NULL;
  480. return ret;
  481. }
  482. #include "sun3_NCR5380.c"
  483. static Scsi_Host_Template driver_template = SUN3_NCR5380;
  484. #include "scsi_module.c"