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

嵌入式Linux

开发平台:

Unix_Linux

  1. /****************************************************************************
  2.  * Perceptive Solutions, Inc. PCI-2000 device driver for Linux.
  3.  *
  4.  * pci2000.c - Linux Host Driver for PCI-2000 IntelliCache SCSI Adapters
  5.  *
  6.  * Copyright (c) 1997-1999 Perceptive Solutions, Inc.
  7.  * All Rights Reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that redistributions of source
  11.  * code retain the above copyright notice and this comment without
  12.  * modification.
  13.  *
  14.  * Technical updates and product information at:
  15.  *  http://www.psidisk.com
  16.  *
  17.  * Please send questions, comments, bug reports to:
  18.  *  tech@psidisk.com Technical Support
  19.  *
  20.  *
  21.  * Revisions 1.10 Jan-21-1999
  22.  * - Fixed sign on message to reflect proper controller name.
  23.  * - Added support for RAID status monitoring and control.
  24.  *
  25.  *  Revisions 1.11 Mar-22-1999
  26.  * - Fixed control timeout to not lock up the entire system if
  27.  *   controller goes offline completely.
  28.  *
  29.  * Revisions 1.12 Mar-26-1999
  30.  * - Fixed spinlock and PCI configuration.
  31.  *
  32.  * Revisions 1.20 Mar-27-2000
  33.  * - Added support for dynamic DMA
  34.  *
  35.  ****************************************************************************/
  36. #define PCI2000_VERSION "1.20"
  37. #include <linux/module.h>
  38. #include <linux/kernel.h>
  39. #include <linux/types.h>
  40. #include <linux/string.h>
  41. #include <linux/pci.h>
  42. #include <linux/ioport.h>
  43. #include <linux/delay.h>
  44. #include <linux/sched.h>
  45. #include <linux/proc_fs.h>
  46. #include <asm/dma.h>
  47. #include <asm/system.h>
  48. #include <asm/io.h>
  49. #include <linux/blk.h>
  50. #include "scsi.h"
  51. #include "hosts.h"
  52. #include <linux/stat.h>
  53. #include <linux/spinlock.h>
  54. #include "pci2000.h"
  55. #include "psi_roy.h"
  56. //#define DEBUG 1
  57. #ifdef DEBUG
  58. #define DEB(x) x
  59. #define STOP_HERE {int st;for(st=0;st<100;st++){st=1;}}
  60. #else
  61. #define DEB(x)
  62. #define STOP_HERE
  63. #endif
  64. typedef struct
  65. {
  66. unsigned int address;
  67. unsigned int length;
  68. } SCATGATH, *PSCATGATH;
  69. typedef struct
  70. {
  71. Scsi_Cmnd *SCpnt;
  72. PSCATGATH  scatGath;
  73. dma_addr_t  scatGathDma;
  74. UCHAR *cdb;
  75. dma_addr_t  cdbDma; 
  76. UCHAR  tag;
  77. } DEV2000, *PDEV2000;
  78. typedef struct
  79. {
  80. ULONG  basePort;
  81. ULONG  mb0;
  82. ULONG  mb1;
  83. ULONG  mb2;
  84. ULONG  mb3;
  85. ULONG  mb4;
  86. ULONG  cmd;
  87. ULONG  tag;
  88. ULONG  irqOwned;
  89. struct pci_dev *pdev;
  90. DEV2000    dev[MAX_BUS][MAX_UNITS];
  91. } ADAPTER2000, *PADAPTER2000;
  92. #define HOSTDATA(host) ((PADAPTER2000)&host->hostdata)
  93. #define consistentLen (MAX_BUS * MAX_UNITS * (16 * sizeof (SCATGATH) + MAX_COMMAND_SIZE))
  94. static struct Scsi_Host     *PsiHost[MAXADAPTER] = {NULL,};  // One for each adapter
  95. static int NumAdapters = 0;
  96. /****************************************************************
  97.  * Name: WaitReady :LOCAL
  98.  *
  99.  * Description: Wait for controller ready.
  100.  *
  101.  * Parameters: padapter - Pointer adapter data structure.
  102.  *
  103.  * Returns: TRUE on not ready.
  104.  *
  105.  ****************************************************************/
  106. static int WaitReady (PADAPTER2000 padapter)
  107. {
  108. ULONG z;
  109. for ( z = 0;  z < (TIMEOUT_COMMAND * 4);  z++ )
  110. {
  111. if ( !inb_p (padapter->cmd) )
  112. return FALSE;
  113. udelay (250);
  114. };
  115. return TRUE;
  116. }
  117. /****************************************************************
  118.  * Name: WaitReadyLong :LOCAL
  119.  *
  120.  * Description: Wait for controller ready.
  121.  *
  122.  * Parameters: padapter - Pointer adapter data structure.
  123.  *
  124.  * Returns: TRUE on not ready.
  125.  *
  126.  ****************************************************************/
  127. static int WaitReadyLong (PADAPTER2000 padapter)
  128. {
  129. ULONG z;
  130. for ( z = 0;  z < (5000 * 4);  z++ )
  131. {
  132. if ( !inb_p (padapter->cmd) )
  133. return FALSE;
  134. udelay (250);
  135. };
  136. return TRUE;
  137. }
  138. /****************************************************************
  139.  * Name: OpDone :LOCAL
  140.  *
  141.  * Description: Clean up operation and issue done to caller.
  142.  *
  143.  * Parameters: SCpnt - Pointer to SCSI command structure.
  144.  * status - Caller status.
  145.  *
  146.  * Returns: Nothing.
  147.  *
  148.  ****************************************************************/
  149. static void OpDone (Scsi_Cmnd *SCpnt, ULONG status)
  150. {
  151. SCpnt->result = status;
  152. SCpnt->scsi_done (SCpnt);
  153. }
  154. /****************************************************************
  155.  * Name: Command :LOCAL
  156.  *
  157.  * Description: Issue queued command to the PCI-2000.
  158.  *
  159.  * Parameters: padapter - Pointer to adapter information structure.
  160.  * cmd  - PCI-2000 command byte.
  161.  *
  162.  * Returns: Non-zero command tag if operation is accepted.
  163.  *
  164.  ****************************************************************/
  165. static UCHAR Command (PADAPTER2000 padapter, UCHAR cmd)
  166. {
  167. outb_p (cmd, padapter->cmd);
  168. if ( WaitReady (padapter) )
  169. return 0;
  170. if ( inw_p (padapter->mb0) )
  171. return 0;
  172. return inb_p (padapter->mb1);
  173. }
  174. /****************************************************************
  175.  * Name: BuildSgList :LOCAL
  176.  *
  177.  * Description: Build the scatter gather list for controller.
  178.  *
  179.  * Parameters: SCpnt  - Pointer to SCSI command structure.
  180.  * padapter - Pointer to adapter information structure.
  181.  * pdev  - Pointer to adapter device structure.
  182.  *
  183.  * Returns: Non-zero in not scatter gather.
  184.  *
  185.  ****************************************************************/
  186. static int BuildSgList (Scsi_Cmnd *SCpnt, PADAPTER2000 padapter, PDEV2000 pdev)
  187. {
  188. int  z;
  189. int  zc;
  190. struct scatterlist *sg;
  191. if ( SCpnt->use_sg )
  192. {
  193. sg = (struct scatterlist *)SCpnt->request_buffer;
  194. zc = pci_map_sg (padapter->pdev, sg, SCpnt->use_sg, scsi_to_pci_dma_dir (SCpnt->sc_data_direction));
  195. for ( z = 0;  z < zc;  z++ )
  196. {
  197. pdev->scatGath[z].address = cpu_to_le32 (sg_dma_address (sg));
  198. pdev->scatGath[z].length = cpu_to_le32 (sg_dma_len (sg++));
  199. }
  200. outl (pdev->scatGathDma, padapter->mb2);
  201. outl ((zc << 24) | SCpnt->request_bufflen, padapter->mb3);
  202. return FALSE;
  203. }
  204. if ( !SCpnt->request_bufflen)
  205. {
  206. outl (0, padapter->mb2);
  207. outl (0, padapter->mb3);
  208. return TRUE;
  209. }
  210. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, SCpnt->request_buffer, SCpnt->request_bufflen, scsi_to_pci_dma_dir (SCpnt->sc_data_direction));
  211. outl (SCpnt->SCp.have_data_in, padapter->mb2);
  212. outl (SCpnt->request_bufflen, padapter->mb3);
  213. return TRUE;
  214. }
  215. /*********************************************************************
  216.  * Name: PsiRaidCmd
  217.  *
  218.  * Description: Execute a simple command.
  219.  *
  220.  * Parameters: padapter - Pointer to adapter control structure.
  221.  * cmd  - Roy command byte.
  222.  *
  223.  * Returns: Return error status.
  224.  *
  225.  ********************************************************************/
  226. static int PsiRaidCmd (PADAPTER2000 padapter, char cmd)
  227. {
  228. if ( WaitReady (padapter) ) // test for command register ready
  229. return DID_TIME_OUT;
  230. outb_p (cmd, padapter->cmd); // issue command
  231. if ( WaitReadyLong (padapter) ) // wait for adapter ready
  232. return DID_TIME_OUT;
  233. return DID_OK;
  234. }
  235. /****************************************************************
  236.  * Name: Irq_Handler :LOCAL
  237.  *
  238.  * Description: Interrupt handler.
  239.  *
  240.  * Parameters: irq - Hardware IRQ number.
  241.  * dev_id -
  242.  * regs -
  243.  *
  244.  * Returns: TRUE if drive is not ready in time.
  245.  *
  246.  ****************************************************************/
  247. static void Irq_Handler (int irq, void *dev_id, struct pt_regs *regs)
  248. {
  249. struct Scsi_Host   *shost = NULL; // Pointer to host data block
  250. PADAPTER2000 padapter; // Pointer to adapter control structure
  251. PDEV2000 pdev;
  252. Scsi_Cmnd    *SCpnt;
  253. UCHAR tag = 0;
  254. UCHAR tag0;
  255. ULONG error;
  256. int pun;
  257. int bus;
  258. int z;
  259.     unsigned long flags;
  260.     /*
  261.      * Disable interrupts, if they aren't already disabled and acquire
  262.      * the I/O spinlock.
  263.      */
  264.     spin_lock_irqsave (&io_request_lock, flags);
  265. DEB(printk ("npci2000 received interrupt "));
  266. for ( z = 0; z < NumAdapters;  z++ ) // scan for interrupt to process
  267. {
  268. if ( PsiHost[z]->irq == (UCHAR)(irq & 0xFF) )
  269. {
  270. tag = inb_p (HOSTDATA(PsiHost[z])->tag);
  271. if (  tag )
  272. {
  273. shost = PsiHost[z];
  274. break;
  275. }
  276. }
  277. }
  278. if ( !shost )
  279. {
  280. DEB (printk ("npci2000: not my interrupt"));
  281. goto irq_return;
  282. }
  283. padapter = HOSTDATA(shost);
  284. tag0 = tag & 0x7F; // mask off the error bit
  285. for ( bus = 0;  bus < MAX_BUS;  bus++ ) // scan the busses
  286.      {
  287. for ( pun = 0;  pun < MAX_UNITS;  pun++ ) // scan the targets
  288.      {
  289. pdev = &padapter->dev[bus][pun];
  290. if ( !pdev->tag )
  291.      continue;
  292. if ( pdev->tag == tag0 ) // is this it?
  293. {
  294. pdev->tag = 0;
  295. SCpnt = pdev->SCpnt;
  296. goto unmapProceed;
  297.      }
  298. }
  299.      }
  300. outb_p (0xFF, padapter->tag); // clear the op interrupt
  301. outb_p (CMD_DONE, padapter->cmd); // complete the op
  302. goto irq_return;; // done, but, with what?
  303. unmapProceed:;
  304. if ( !bus )
  305. {
  306. switch ( SCpnt->cmnd[0] )
  307. {
  308. case SCSIOP_TEST_UNIT_READY:
  309. pci_unmap_single (padapter->pdev, SCpnt->SCp.have_data_in, sizeof (SCpnt->sense_buffer), PCI_DMA_FROMDEVICE);
  310. goto irqProceed;
  311. case SCSIOP_READ_CAPACITY:
  312. pci_unmap_single (padapter->pdev, SCpnt->SCp.have_data_in, 8, PCI_DMA_FROMDEVICE);
  313. goto irqProceed;
  314. case SCSIOP_VERIFY:
  315. case SCSIOP_START_STOP_UNIT:
  316. case SCSIOP_MEDIUM_REMOVAL:
  317. goto irqProceed;
  318. }
  319. }
  320. if ( SCpnt->SCp.have_data_in )
  321. pci_unmap_single (padapter->pdev, SCpnt->SCp.have_data_in, SCpnt->request_bufflen, scsi_to_pci_dma_dir(SCpnt->sc_data_direction));
  322. else 
  323. {
  324. if ( SCpnt->use_sg )
  325. pci_unmap_sg (padapter->pdev, (struct scatterlist *)SCpnt->request_buffer, SCpnt->use_sg, scsi_to_pci_dma_dir(SCpnt->sc_data_direction));
  326. }
  327. irqProceed:;
  328. if ( tag & ERR08_TAGGED ) // is there an error here?
  329. {
  330. if ( WaitReady (padapter) )
  331. {
  332. OpDone (SCpnt, DID_TIME_OUT << 16);
  333. goto irq_return;;
  334. }
  335. outb_p (tag0, padapter->mb0); // get real error code
  336. outb_p (CMD_ERROR, padapter->cmd);
  337. if ( WaitReady (padapter) ) // wait for controller to suck up the op
  338. {
  339. OpDone (SCpnt, DID_TIME_OUT << 16);
  340. goto irq_return;;
  341. }
  342. error = inl (padapter->mb0); // get error data
  343. outb_p (0xFF, padapter->tag); // clear the op interrupt
  344. outb_p (CMD_DONE, padapter->cmd); // complete the op
  345. DEB (printk ("status: %lX ", error));
  346. if ( error == 0x00020002 ) // is this error a check condition?
  347. {
  348. if ( bus ) // are we doint SCSI commands?
  349. {
  350. OpDone (SCpnt, (DID_OK << 16) | 2);
  351. goto irq_return;;
  352. }
  353. if ( *SCpnt->cmnd == SCSIOP_TEST_UNIT_READY )
  354. OpDone (SCpnt, (DRIVER_SENSE << 24) | (DID_OK << 16) | 2); // test caller we have sense data too
  355. else
  356. OpDone (SCpnt, DID_ERROR << 16);
  357. goto irq_return;;
  358. }
  359. OpDone (SCpnt, DID_ERROR << 16);
  360. goto irq_return;;
  361. }
  362. outb_p (0xFF, padapter->tag); // clear the op interrupt
  363. outb_p (CMD_DONE, padapter->cmd); // complete the op
  364. OpDone (SCpnt, DID_OK << 16);
  365. irq_return:;
  366.     /*
  367.      * Release the I/O spinlock and restore the original flags
  368.      * which will enable interrupts if and only if they were
  369.      * enabled on entry.
  370.      */
  371.     spin_unlock_irqrestore (&io_request_lock, flags);
  372. }
  373. /****************************************************************
  374.  * Name: Pci2000_QueueCommand
  375.  *
  376.  * Description: Process a queued command from the SCSI manager.
  377.  *
  378.  * Parameters: SCpnt - Pointer to SCSI command structure.
  379.  * done  - Pointer to done function to call.
  380.  *
  381.  * Returns: Status code.
  382.  *
  383.  ****************************************************************/
  384. int Pci2000_QueueCommand (Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *))
  385. {
  386. UCHAR    *cdb = (UCHAR *)SCpnt->cmnd; // Pointer to SCSI CDB
  387. PADAPTER2000 padapter = HOSTDATA(SCpnt->host); // Pointer to adapter control structure
  388. int rc  = -1; // command return code
  389. UCHAR bus  = SCpnt->channel;
  390. UCHAR pun  = SCpnt->target;
  391. UCHAR lun  = SCpnt->lun;
  392. UCHAR cmd;
  393. PDEV2000 pdev  = &padapter->dev[bus][pun];
  394. if ( !done )
  395. {
  396. printk("pci2000_queuecommand: %02X: done can't be NULLn", *cdb);
  397. return 0;
  398. }
  399. SCpnt->scsi_done = done;
  400. SCpnt->SCp.have_data_in = 0;
  401. pdev->SCpnt = SCpnt;   // Save this command data
  402. if ( WaitReady (padapter) )
  403. {
  404. rc = DID_ERROR;
  405. goto finished;
  406. }
  407. outw_p (pun | (lun << 8), padapter->mb0);
  408. if ( bus )
  409. {
  410. DEB (if(*cdb) printk ("nCDB: %X-  %X %X %X %X %X %X %X %X %X %X ", SCpnt->cmd_len, cdb[0], cdb[1], cdb[2], cdb[3], cdb[4], cdb[5], cdb[6], cdb[7], cdb[8], cdb[9]));
  411. DEB (if(*cdb) printk ("ntimeout_per_command: %d, timeout_total: %d, timeout: %d, internal_timout: %d", SCpnt->timeout_per_command,
  412.   SCpnt->timeout_total, SCpnt->timeout, SCpnt->internal_timeout));
  413. outl (SCpnt->timeout_per_command, padapter->mb1);
  414. outb_p (CMD_SCSI_TIMEOUT, padapter->cmd);
  415. if ( WaitReady (padapter) )
  416. {
  417. rc = DID_ERROR;
  418. goto finished;
  419. }
  420. outw_p (pun | (lun << 8), padapter->mb0);
  421. outw_p (SCpnt->cmd_len << 8, padapter->mb0 + 2);
  422. memcpy (pdev->cdb, cdb, MAX_COMMAND_SIZE);
  423. outl (pdev->cdbDma, padapter->mb1);
  424. if ( BuildSgList (SCpnt, padapter, pdev) )
  425. cmd = CMD_SCSI_THRU;
  426. else
  427. cmd = CMD_SCSI_THRU_SG;
  428. if ( (pdev->tag = Command (padapter, cmd)) == 0 )
  429. rc = DID_TIME_OUT;
  430. goto finished;
  431. }
  432. else
  433. {
  434. if ( lun )
  435. {
  436. rc = DID_BAD_TARGET;
  437. goto finished;
  438. }
  439. }
  440. switch ( *cdb )
  441. {
  442. case SCSIOP_INQUIRY:    // inquiry CDB
  443. if ( cdb[2] == SC_MY_RAID )
  444. {
  445. switch ( cdb[3] ) 
  446. {
  447. case MY_SCSI_REBUILD:
  448. OpDone (SCpnt, PsiRaidCmd (padapter, CMD_RAID_REBUILD) << 16);
  449. return 0;
  450. case MY_SCSI_ALARMMUTE:
  451. OpDone (SCpnt, PsiRaidCmd (padapter, CMD_RAID_MUTE) << 16);
  452. return 0;
  453. case MY_SCSI_DEMOFAIL:
  454. OpDone (SCpnt, PsiRaidCmd (padapter, CMD_RAID_FAIL) << 16);
  455. return 0;
  456. default:
  457. if ( SCpnt->use_sg )
  458. {
  459. rc = DID_ERROR;
  460. goto finished;
  461. }
  462. else
  463. {
  464. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, SCpnt->request_buffer, SCpnt->request_bufflen,
  465.   scsi_to_pci_dma_dir(SCpnt->sc_data_direction));
  466. outl (SCpnt->SCp.have_data_in, padapter->mb2);
  467. }
  468. outl (cdb[5], padapter->mb0);
  469. outl (cdb[3], padapter->mb3);
  470. cmd = CMD_DASD_RAID_RQ;
  471. break;
  472. }
  473. break;
  474. }
  475. if ( SCpnt->use_sg )
  476. {
  477. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, ((struct scatterlist *)SCpnt->request_buffer)->address, 
  478.   SCpnt->request_bufflen, scsi_to_pci_dma_dir (SCpnt->sc_data_direction));
  479. }
  480. else
  481. {
  482. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, SCpnt->request_buffer, 
  483.   SCpnt->request_bufflen, scsi_to_pci_dma_dir (SCpnt->sc_data_direction));
  484. }
  485. outl (SCpnt->SCp.have_data_in, padapter->mb2);
  486. outl (SCpnt->request_bufflen, padapter->mb3);
  487. cmd = CMD_DASD_SCSI_INQ;
  488. break;
  489. case SCSIOP_TEST_UNIT_READY: // test unit ready CDB
  490. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, SCpnt->sense_buffer, sizeof (SCpnt->sense_buffer), PCI_DMA_FROMDEVICE);
  491. outl (SCpnt->SCp.have_data_in, padapter->mb2);
  492. outl (sizeof (SCpnt->sense_buffer), padapter->mb3);
  493. cmd = CMD_TEST_READY;
  494. break;
  495. case SCSIOP_READ_CAPACITY:    // read capacity CDB
  496. if ( SCpnt->use_sg )
  497. {
  498. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, ((struct scatterlist *)(SCpnt->request_buffer))->address,
  499.   8, PCI_DMA_FROMDEVICE);
  500. }
  501. else
  502. SCpnt->SCp.have_data_in = pci_map_single (padapter->pdev, SCpnt->request_buffer, 8, PCI_DMA_FROMDEVICE);
  503. outl (SCpnt->SCp.have_data_in, padapter->mb2);
  504. outl (8, padapter->mb3);
  505. cmd = CMD_DASD_CAP;
  506. break;
  507. case SCSIOP_VERIFY: // verify CDB
  508. outw_p ((USHORT)cdb[8] | ((USHORT)cdb[7] << 8), padapter->mb0 + 2);
  509. outl (XSCSI2LONG (&cdb[2]), padapter->mb1);
  510. cmd = CMD_READ_SG;
  511. break;
  512. case SCSIOP_READ: // read10 CDB
  513. outw_p ((USHORT)cdb[8] | ((USHORT)cdb[7] << 8), padapter->mb0 + 2);
  514. outl (XSCSI2LONG (&cdb[2]), padapter->mb1);
  515. if ( BuildSgList (SCpnt, padapter, pdev) )
  516. cmd = CMD_READ;
  517. else
  518. cmd = CMD_READ_SG;
  519. break;
  520. case SCSIOP_READ6: // read6  CDB
  521. outw_p (cdb[4], padapter->mb0 + 2);
  522. outl ((SCSI2LONG (&cdb[1])) & 0x001FFFFF, padapter->mb1);
  523. if ( BuildSgList (SCpnt, padapter, pdev) )
  524. cmd = CMD_READ;
  525. else
  526. cmd = CMD_READ_SG;
  527. break;
  528. case SCSIOP_WRITE: // write10 CDB
  529. outw_p ((USHORT)cdb[8] | ((USHORT)cdb[7] << 8), padapter->mb0 + 2);
  530. outl (XSCSI2LONG (&cdb[2]), padapter->mb1);
  531. if ( BuildSgList (SCpnt, padapter, pdev) )
  532. cmd = CMD_WRITE;
  533. else
  534. cmd = CMD_WRITE_SG;
  535. break;
  536. case SCSIOP_WRITE6: // write6  CDB
  537. outw_p (cdb[4], padapter->mb0 + 2);
  538. outl ((SCSI2LONG (&cdb[1])) & 0x001FFFFF, padapter->mb1);
  539. if ( BuildSgList (SCpnt, padapter, pdev) )
  540. cmd = CMD_WRITE;
  541. else
  542. cmd = CMD_WRITE_SG;
  543. break;
  544. case SCSIOP_START_STOP_UNIT:
  545. cmd = CMD_EJECT_MEDIA;
  546. break;
  547. case SCSIOP_MEDIUM_REMOVAL:
  548. switch ( cdb[4] )
  549. {
  550. case 0:
  551. cmd = CMD_UNLOCK_DOOR;
  552. break;
  553. case 1:
  554. cmd = CMD_LOCK_DOOR;
  555. break;
  556. default:
  557. cmd = 0;
  558. break;
  559. }
  560. if ( cmd )
  561. break;
  562. default:
  563. DEB (printk ("pci2000_queuecommand: Unsupported command %02Xn", *cdb));
  564. OpDone (SCpnt, DID_ERROR << 16);
  565. return 0;
  566. }
  567. if ( (pdev->tag = Command (padapter, cmd)) == 0 )
  568. rc = DID_TIME_OUT;
  569. finished:;
  570. if ( rc != -1 )
  571. OpDone (SCpnt, rc << 16);
  572. return 0;
  573. }
  574. /****************************************************************
  575.  * Name: internal_done :LOCAL
  576.  *
  577.  * Description: Done handler for non-queued commands
  578.  *
  579.  * Parameters: SCpnt - Pointer to SCSI command structure.
  580.  *
  581.  * Returns: Nothing.
  582.  *
  583.  ****************************************************************/
  584. static void internal_done (Scsi_Cmnd * SCpnt)
  585. {
  586. SCpnt->SCp.Status++;
  587. }
  588. /****************************************************************
  589.  * Name: Pci2000_Command
  590.  *
  591.  * Description: Process a command from the SCSI manager.
  592.  *
  593.  * Parameters: SCpnt - Pointer to SCSI command structure.
  594.  *
  595.  * Returns: Status code.
  596.  *
  597.  ****************************************************************/
  598. int Pci2000_Command (Scsi_Cmnd *SCpnt)
  599. {
  600. DEB(printk("pci2000_command: ..calling pci2000_queuecommandn"));
  601. Pci2000_QueueCommand (SCpnt, internal_done);
  602.     SCpnt->SCp.Status = 0;
  603. while (!SCpnt->SCp.Status)
  604. barrier ();
  605. return SCpnt->result;
  606. }
  607. /****************************************************************
  608.  * Name: Pci2000_Detect
  609.  *
  610.  * Description: Detect and initialize our boards.
  611.  *
  612.  * Parameters: tpnt - Pointer to SCSI host template structure.
  613.  *
  614.  * Returns: Number of adapters installed.
  615.  *
  616.  ****************************************************************/
  617. int Pci2000_Detect (Scsi_Host_Template *tpnt)
  618. {
  619. int found = 0;
  620. int installed = 0;
  621. struct Scsi_Host   *pshost;
  622. PADAPTER2000     padapter;
  623. int z, zz;
  624. int setirq;
  625. struct pci_dev    *pdev = NULL;
  626. UCHAR    *consistent;
  627. dma_addr_t consistentDma;
  628. if ( !pci_present () )
  629. {
  630. printk ("pci2000: PCI BIOS not presentn");
  631. return 0;
  632. }
  633. while ( (pdev = pci_find_device (VENDOR_PSI, DEVICE_ROY_1, pdev)) != NULL )
  634. {
  635. if (pci_enable_device(pdev))
  636. continue;
  637. pshost = scsi_register (tpnt, sizeof(ADAPTER2000));
  638. if(pshost == NULL)
  639. continue;
  640. padapter = HOSTDATA(pshost);
  641. padapter->basePort = pci_resource_start (pdev, 1);
  642. DEB (printk ("nBase Regs = %#04X", padapter->basePort)); // get the base I/O port address
  643. padapter->mb0 = padapter->basePort + RTR_MAILBOX;     // get the 32 bit mail boxes
  644. padapter->mb1 = padapter->basePort + RTR_MAILBOX + 4;
  645. padapter->mb2 = padapter->basePort + RTR_MAILBOX + 8;
  646. padapter->mb3 = padapter->basePort + RTR_MAILBOX + 12;
  647. padapter->mb4 = padapter->basePort + RTR_MAILBOX + 16;
  648. padapter->cmd = padapter->basePort + RTR_LOCAL_DOORBELL; // command register
  649. padapter->tag = padapter->basePort + RTR_PCI_DOORBELL; // tag/response register
  650. padapter->pdev = pdev;
  651. if ( WaitReady (padapter) )
  652. goto unregister;
  653. outb_p (0x84, padapter->mb0);
  654. outb_p (CMD_SPECIFY, padapter->cmd);
  655. if ( WaitReady (padapter) )
  656. goto unregister;
  657. consistent = pci_alloc_consistent (pdev, consistentLen, &consistentDma);
  658. if ( !consistent )
  659. {
  660. printk ("Unable to allocate DMA memory for PCI-2000 controller.n");
  661. goto unregister;
  662. }
  663. scsi_set_pci_device(pshost, pdev);
  664. pshost->irq = pdev->irq;
  665. setirq = 1;
  666. padapter->irqOwned = 0;
  667. for ( z = 0;  z < installed;  z++ ) // scan for shared interrupts
  668. {
  669. if ( PsiHost[z]->irq == pshost->irq ) // if shared then, don't posses
  670. setirq = 0;
  671. }
  672. if ( setirq ) // if not shared, posses
  673. {
  674. if ( request_irq (pshost->irq, Irq_Handler, SA_SHIRQ, "pci2000", padapter) < 0 )
  675. {
  676. if ( request_irq (pshost->irq, Irq_Handler, SA_INTERRUPT | SA_SHIRQ, "pci2000", padapter) < 0 )
  677. {
  678. printk ("Unable to allocate IRQ for PCI-2000 controller.n");
  679. pci_free_consistent (pdev, consistentLen, consistent, consistentDma);
  680. goto unregister;
  681. }
  682. }
  683. padapter->irqOwned = pshost->irq; // set IRQ as owned
  684. }
  685. PsiHost[installed] = pshost; // save SCSI_HOST pointer
  686. pshost->io_port = padapter->basePort;
  687. pshost->n_io_port = 0xFF;
  688. pshost->unique_id = padapter->basePort;
  689. pshost->max_id = 16;
  690. pshost->max_channel = 1;
  691. for ( zz = 0;  zz < MAX_BUS;  zz++ )
  692. for ( z = 0; z < MAX_UNITS;  z++ )
  693. {
  694. padapter->dev[zz][z].tag = 0;
  695. padapter->dev[zz][z].scatGath = (PSCATGATH)consistent;
  696. padapter->dev[zz][z].scatGathDma = consistentDma;
  697. consistent += 16 * sizeof (SCATGATH);
  698. consistentDma += 16 * sizeof (SCATGATH);
  699. padapter->dev[zz][z].cdb = (UCHAR *)consistent;
  700. padapter->dev[zz][z].cdbDma = consistentDma;
  701. consistent += MAX_COMMAND_SIZE;
  702. consistentDma += MAX_COMMAND_SIZE;
  703. }
  704. printk("nPSI-2000 Intelligent Storage SCSI CONTROLLER: at I/O = %lX  IRQ = %dn", padapter->basePort, pshost->irq);
  705. printk("Version %s, Compiled %s %snn", PCI2000_VERSION,  __DATE__, __TIME__);
  706. found++;
  707. if ( ++installed < MAXADAPTER )
  708. continue;
  709. break;
  710. unregister:;
  711. scsi_unregister (pshost);
  712. found++;
  713. }
  714. NumAdapters = installed;
  715. return installed;
  716. }
  717. /****************************************************************
  718.  * Name: Pci2000_Abort
  719.  *
  720.  * Description: Process the Abort command from the SCSI manager.
  721.  *
  722.  * Parameters: SCpnt - Pointer to SCSI command structure.
  723.  *
  724.  * Returns: Allways snooze.
  725.  *
  726.  ****************************************************************/
  727. int Pci2000_Abort (Scsi_Cmnd *SCpnt)
  728. {
  729. DEB (printk ("pci2000_abortn"));
  730. return SCSI_ABORT_SNOOZE;
  731. }
  732. /****************************************************************
  733.  * Name: Pci2000_Reset
  734.  *
  735.  * Description: Process the Reset command from the SCSI manager.
  736.  *
  737.  * Parameters: SCpnt - Pointer to SCSI command structure.
  738.  * flags - Flags about the reset command
  739.  *
  740.  * Returns: No active command at this time, so this means
  741.  * that each time we got some kind of response the
  742.  * last time through.  Tell the mid-level code to
  743.  * request sense information in order to decide what
  744.  * to do next.
  745.  *
  746.  ****************************************************************/
  747. int Pci2000_Reset (Scsi_Cmnd *SCpnt, unsigned int reset_flags)
  748. {
  749. return SCSI_RESET_PUNT;
  750. }
  751. /****************************************************************
  752.  * Name: Pci2000_Release
  753.  *
  754.  * Description: Release resources allocated for a single each adapter.
  755.  *
  756.  * Parameters: pshost - Pointer to SCSI command structure.
  757.  *
  758.  * Returns: zero.
  759.  *
  760.  ****************************************************************/
  761. int Pci2000_Release (struct Scsi_Host *pshost)
  762. {
  763.     PADAPTER2000 padapter = HOSTDATA (pshost);
  764. if ( padapter->irqOwned )
  765. free_irq (pshost->irq, padapter);
  766. pci_free_consistent (padapter->pdev, consistentLen, padapter->dev[0][0].scatGath, padapter->dev[0][0].scatGathDma);
  767. release_region (pshost->io_port, pshost->n_io_port);
  768.     scsi_unregister(pshost);
  769.     return 0;
  770. }
  771. #include "sd.h"
  772. /****************************************************************
  773.  * Name: Pci2000_BiosParam
  774.  *
  775.  * Description: Process the biosparam request from the SCSI manager to
  776.  * return C/H/S data.
  777.  *
  778.  * Parameters: disk - Pointer to SCSI disk structure.
  779.  * dev  - Major/minor number from kernel.
  780.  * geom - Pointer to integer array to place geometry data.
  781.  *
  782.  * Returns: zero.
  783.  *
  784.  ****************************************************************/
  785. int Pci2000_BiosParam (Scsi_Disk *disk, kdev_t dev, int geom[])
  786. {
  787. PADAPTER2000     padapter;
  788. padapter = HOSTDATA(disk->device->host);
  789. if ( WaitReady (padapter) )
  790. return 0;
  791. outb_p (disk->device->id, padapter->mb0);
  792. outb_p (CMD_GET_PARMS, padapter->cmd);
  793. if ( WaitReady (padapter) )
  794. return 0;
  795. geom[0] = inb_p (padapter->mb2 + 3);
  796. geom[1] = inb_p (padapter->mb2 + 2);
  797. geom[2] = inw_p (padapter->mb2);
  798. return 0;
  799. }
  800. MODULE_LICENSE("Dual BSD/GPL");
  801. /* Eventually this will go into an include file, but this will be later */
  802. static Scsi_Host_Template driver_template = PCI2000;
  803. #include "scsi_module.c"