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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     NinjaSCSI-3 / NinjaSCSI-32Bi PCMCIA SCSI hostadapter card driver
  3.       By: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
  4.     Ver.2.0   Support 32bit PIO mode
  5.     Ver.1.1.2 Fix for scatter list buffer exceeds
  6.     Ver.1.1   Support scatter list
  7.     Ver.0.1   Initial version
  8.     This software may be used and distributed according to the terms of
  9.     the GNU General Public License.
  10. ======================================================================*/
  11. /***********************************************************************
  12.     This driver is for these PCcards.
  13. I-O DATA PCSC-F  (Workbit NinjaSCSI-3)
  14. "WBT", "NinjaSCSI-3", "R1.0"
  15. I-O DATA CBSC-II (Workbit NinjaSCSI-32Bi in 16bit mode)
  16. "IO DATA", "CBSC16  ", "1"
  17. ***********************************************************************/
  18. /* $Id: nsp_cs.c,v 1.42 2001/09/10 10:30:58 elca Exp $ */
  19. #ifdef NSP_KERNEL_2_2
  20. #include <pcmcia/config.h>
  21. #include <pcmcia/k_compat.h>
  22. #endif
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/init.h>
  26. #include <linux/sched.h>
  27. #include <linux/slab.h>
  28. #include <linux/string.h>
  29. #include <linux/timer.h>
  30. #include <linux/ioport.h>
  31. #include <linux/delay.h>
  32. #include <linux/tqueue.h>
  33. #include <linux/interrupt.h>
  34. #include <linux/module.h>
  35. #include <linux/major.h>
  36. #include <linux/blk.h>
  37. #include <linux/stat.h>
  38. #include <asm/io.h>
  39. #include <asm/irq.h>
  40. #include <../drivers/scsi/scsi.h>
  41. #include <../drivers/scsi/hosts.h>
  42. #include <../drivers/scsi/sd.h>
  43. #include <scsi/scsi.h>
  44. #include <scsi/scsi_ioctl.h>
  45. #include <pcmcia/version.h>
  46. #include <pcmcia/cs_types.h>
  47. #include <pcmcia/cs.h>
  48. #include <pcmcia/cistpl.h>
  49. #include <pcmcia/ds.h>
  50. #include "nsp_cs.h"
  51. MODULE_AUTHOR("YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>");
  52. MODULE_DESCRIPTION("WorkBit NinjaSCSI-3 / NinjaSCSI-32Bi(16bit) PCMCIA SCSI host adapter module");
  53. MODULE_SUPPORTED_DEVICE("sd,sr,sg,st");
  54. MODULE_LICENSE("GPL");
  55. #ifdef PCMCIA_DEBUG
  56. static int pc_debug = PCMCIA_DEBUG;
  57. MODULE_PARM(pc_debug, "i");
  58. MODULE_PARM_DESC(pc_debug, "set debug level");
  59. static char *version = "$Id: nsp_cs.c,v 1.42 2001/09/10 10:30:58 elca Exp $";
  60. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  61. #else
  62. #define DEBUG(n, args...) /* */
  63. #endif
  64. #include "nsp_io.h"
  65. /*====================================================================*/
  66. typedef struct scsi_info_t {
  67. dev_link_t             link;
  68. struct Scsi_Host      *host;
  69. int                ndev;
  70. dev_node_t             node[8];
  71. int                    stop;
  72. struct bus_operations *bus;
  73. } scsi_info_t;
  74. /*----------------------------------------------------------------*/
  75. #if (KERNEL_VERSION(2,4,0) > LINUX_VERSION_CODE)
  76. #define PROC_SCSI_NSP PROC_SCSI_IBMMCA /* bad hack... */
  77. static struct proc_dir_entry proc_scsi_nsp = {
  78. PROC_SCSI_NSP, 6, "nsp_cs",
  79. S_IFDIR | S_IRUGO | S_IXUGO, 2
  80. };
  81. #endif
  82. /*====================================================================*/
  83. /* Parameters that can be set with 'insmod' */
  84. static unsigned int irq_mask = 0xffff;
  85. MODULE_PARM(irq_mask, "i");
  86. MODULE_PARM_DESC(irq_mask, "IRQ mask bits");
  87. static int irq_list[4] = { -1 };
  88. MODULE_PARM(irq_list, "1-4i");
  89. MODULE_PARM_DESC(irq_list, "IRQ number list");
  90. /*----------------------------------------------------------------*/
  91. /* driver state info, local to driver */
  92. static char nspinfo[100];     /* description */
  93. /* /usr/src/linux/drivers/scsi/hosts.h */
  94. static Scsi_Host_Template driver_template = {
  95. /* next: NULL,*/
  96. #if (KERNEL_VERSION(2,3,99) > LINUX_VERSION_CODE)
  97. proc_dir:        &proc_scsi_nsp, /* kernel 2.2 */
  98. #else
  99. proc_name:        "nsp_cs",       /* kernel 2.4 */
  100. #endif
  101. /* proc_info: NULL,*/
  102. name: "WorkBit NinjaSCSI-3/32Bi",
  103. detect: nsp_detect,
  104. release: nsp_release,
  105. info: nsp_info,
  106. /* command: NULL,*/
  107. queuecommand: nsp_queuecommand,
  108. /* eh_strategy_handler: nsp_eh_strategy,*/
  109. eh_abort_handler: nsp_eh_abort,
  110. eh_device_reset_handler: nsp_eh_device_reset,
  111. eh_bus_reset_handler: nsp_eh_bus_reset,
  112. eh_host_reset_handler: nsp_eh_host_reset,
  113. abort: nsp_abort,
  114. reset: nsp_reset,
  115. /* slave_attach: NULL,*/
  116. /* bios_param: NULL,*/
  117. can_queue: 1,
  118. this_id: SCSI_INITIATOR_ID,
  119. sg_tablesize: SG_ALL,
  120. cmd_per_lun: 1,
  121. /* present: 0,*/
  122. /* unchecked_isa_dma: 0,*/
  123. use_clustering: DISABLE_CLUSTERING,
  124. use_new_eh_code: 0,
  125. /* emulated: 0,*/
  126. };
  127. static dev_link_t *dev_list = NULL;
  128. static dev_info_t dev_info  = {"nsp_cs"};
  129. static nsp_hw_data nsp_data;
  130. /***********************************************************/
  131. static int nsp_queuecommand(Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *))
  132. {
  133. #ifdef PCMCIA_DEBUG
  134. //unsigned int host_id = SCpnt->host->this_id;
  135. //unsigned int base    = SCpnt->host->io_port;
  136. unsigned char target = SCpnt->target;
  137. #endif
  138. nsp_hw_data *data = &nsp_data;
  139. DEBUG(0, __FUNCTION__ "() SCpnt=0x%p target=%d lun=%d buff=0x%p bufflen=%d use_sg=%dn",
  140.       SCpnt, target, SCpnt->lun, SCpnt->request_buffer, SCpnt->request_bufflen, SCpnt->use_sg);
  141. //DEBUG(0, " before CurrentSC=0x%pn", data->CurrentSC);
  142. if(data->CurrentSC != NULL) {
  143. printk(KERN_DEBUG " " __FUNCTION__ "() CurrentSC!=NULL this can't be happenn");
  144. data->CurrentSC = NULL;
  145. SCpnt->result   = DID_BAD_TARGET << 16;
  146. done(SCpnt);
  147. return -1;
  148. }
  149. show_command(SCpnt);
  150. SCpnt->scsi_done = done;
  151. data->CurrentSC = SCpnt;
  152. RESID         = SCpnt->request_bufflen;
  153. SCpnt->SCp.Status = -1;
  154. SCpnt->SCp.Message = -1;
  155. SCpnt->SCp.have_data_in = IO_UNKNOWN;
  156. SCpnt->SCp.sent_command = 0;
  157. SCpnt->SCp.phase = PH_UNDETERMINED;
  158. /* setup scratch area
  159.    SCp.ptr : buffer pointer
  160.    SCp.this_residual : buffer length
  161.    SCp.buffer : next buffer
  162.    SCp.buffers_residual : left buffers in list
  163.    SCp.phase : current state of the command */
  164. if (SCpnt->use_sg) {
  165. SCpnt->SCp.buffer     = (struct scatterlist *) SCpnt->request_buffer;
  166. SCpnt->SCp.ptr     = SCpnt->SCp.buffer->address;
  167. SCpnt->SCp.this_residual    = SCpnt->SCp.buffer->length;
  168. SCpnt->SCp.buffers_residual = SCpnt->use_sg - 1;
  169. } else {
  170. SCpnt->SCp.ptr     = (char *) SCpnt->request_buffer;
  171. SCpnt->SCp.this_residual    = SCpnt->request_bufflen;
  172. SCpnt->SCp.buffer     = NULL;
  173. SCpnt->SCp.buffers_residual = 0;
  174. }
  175. if(nsphw_start_selection(SCpnt, data) == FALSE) {
  176. DEBUG(0, " selection failn");
  177. data->CurrentSC = NULL;
  178. SCpnt->result   = DID_NO_CONNECT << 16;
  179. done(SCpnt);
  180. return -1;
  181. }
  182. //DEBUG(0, __FUNCTION__ "() outn");
  183. return 0;
  184. }
  185. /*
  186.  * setup PIO FIFO transfer mode and enable/disable to data out
  187.  */
  188. static void nsp_setup_fifo(nsp_hw_data *data, int enabled)
  189. {
  190. unsigned int  base = data->BaseAddress;
  191. unsigned char transfer_mode_reg;
  192. //DEBUG(0, __FUNCTION__ "() enabled=%dn", enabled);
  193. if (enabled != FALSE) {
  194. transfer_mode_reg = TRANSFER_GO | BRAIND;
  195. } else {
  196. transfer_mode_reg = 0;
  197. }
  198. transfer_mode_reg |= data->TransferMode;
  199. nsp_index_write(base, TRANSFERMODE, transfer_mode_reg);
  200. }
  201. /*
  202.  * Initialize Ninja hardware
  203.  */
  204. static int nsphw_init(nsp_hw_data *data)
  205. {
  206. unsigned int base     = data->BaseAddress;
  207. int      i, j;
  208. sync_data    tmp_sync = { SyncNegotiation: SYNC_NOT_YET,
  209.   SyncPeriod:    0,
  210.   SyncOffset:    0
  211. };
  212. DEBUG(0, __FUNCTION__ "() in base=0x%xn", base);
  213. data->ScsiClockDiv = CLOCK_40M;
  214. data->CurrentSC    = NULL;
  215. data->FifoCount    = 0;
  216. data->TransferMode = MODE_IO8;
  217. /* setup sync data */
  218. for ( i = 0; i < N_TARGET; i++ ) {
  219. for ( j = 0; j < N_LUN; j++ ) {
  220. data->Sync[i][j] = tmp_sync;
  221. }
  222. }
  223. /* block all interrupts */
  224. nsp_write(base,       IRQCONTROL,   IRQCONTROL_ALLMASK);
  225. /* setup SCSI interface */
  226. nsp_write(base,       IFSELECT,     IF_IFSEL);
  227. nsp_index_write(base, SCSIIRQMODE,  0);
  228. nsp_index_write(base, TRANSFERMODE, MODE_IO8);
  229. nsp_index_write(base, CLOCKDIV,     data->ScsiClockDiv);
  230. nsp_index_write(base, PARITYCTRL,   0);
  231. nsp_index_write(base, POINTERCLR,   POINTER_CLEAR     |
  232.     ACK_COUNTER_CLEAR |
  233.     REQ_COUNTER_CLEAR |
  234.     HOST_COUNTER_CLEAR);
  235. /* setup fifo asic */
  236. nsp_write(base,       IFSELECT,     IF_REGSEL);
  237. nsp_index_write(base, TERMPWRCTRL,  0);
  238. if ((nsp_index_read(base, OTHERCONTROL) & TPWR_SENSE) == 0) {
  239. printk(KERN_INFO "nsp_cs: terminator power onn");
  240. nsp_index_write(base, TERMPWRCTRL, POWER_ON);
  241. }
  242. nsp_index_write(base, TIMERCOUNT,   0);
  243. nsp_index_write(base, TIMERCOUNT,   0); /* requires 2 times!! */
  244. nsp_index_write(base, SYNCREG,     0);
  245. nsp_index_write(base, ACKWIDTH,     0);
  246. /* enable interrupts and ack them */
  247. nsp_index_write(base, SCSIIRQMODE,  SCSI_PHASE_CHANGE_EI |
  248.     RESELECT_EI  |
  249.     SCSI_RESET_IRQ_EI  );
  250. nsp_write(base,       IRQCONTROL,   IRQCONTROL_ALLCLEAR);
  251. nsp_setup_fifo(data, FALSE);
  252. return TRUE;
  253. }
  254. /*
  255.  * Start selection phase
  256.  */
  257. static unsigned int nsphw_start_selection(Scsi_Cmnd   *SCpnt,
  258.   nsp_hw_data *data)
  259. {
  260. unsigned int  host_id  = SCpnt->host->this_id;
  261. unsigned int  base  = SCpnt->host->io_port;
  262. unsigned char target  = SCpnt->target;
  263. int       wait_count;
  264. unsigned char phase, arbit;
  265. //DEBUG(0, __FUNCTION__ "()inn");
  266. phase = nsp_index_read(base, SCSIBUSMON);
  267. if(phase != BUSMON_BUS_FREE) {
  268. //DEBUG(0, " bus busyn");
  269. return FALSE;
  270. }
  271. /* start arbitration */
  272. //DEBUG(0, " start arbitn");
  273. SCpnt->SCp.phase = PH_ARBSTART;
  274. nsp_index_write(base, SETARBIT, ARBIT_GO);
  275. wait_count = jiffies + 10 * HZ;
  276. do {
  277. /* XXX: what a stupid chip! */
  278. arbit = nsp_index_read(base, ARBITSTATUS);
  279. //DEBUG(0, " arbit=%d, wait_count=%dn", arbit, wait_count);
  280. udelay(1); /* hold 1.2us */
  281. } while((arbit & (ARBIT_WIN | ARBIT_FAIL)) == 0 &&
  282. time_before(jiffies, wait_count));
  283. if((arbit & ARBIT_WIN) == 0) {
  284. //DEBUG(0, " arbit failn");
  285. nsp_index_write(base, SETARBIT, ARBIT_FLAG_CLEAR);
  286. return FALSE;
  287. }
  288. /* assert select line */
  289. //DEBUG(0, " assert SEL linen");
  290. SCpnt->SCp.phase = PH_SELSTART;
  291. udelay(3);
  292. nsp_index_write(base, SCSIDATALATCH, (1 << host_id) | (1 << target));
  293. nsp_index_write(base, SCSIBUSCTRL,   SCSI_SEL | SCSI_BSY | SCSI_ATN);
  294. udelay(3);
  295. nsp_index_write(base, SCSIBUSCTRL,   SCSI_SEL | SCSI_BSY | SCSI_DATAOUT_ENB | SCSI_ATN);
  296. nsp_index_write(base, SETARBIT,      ARBIT_FLAG_CLEAR);
  297. udelay(3);
  298. nsp_index_write(base, SCSIBUSCTRL,   SCSI_SEL | SCSI_DATAOUT_ENB | SCSI_ATN);
  299. /* check selection timeout */
  300. nsp_start_timer(SCpnt, data, 1000/51);
  301. data->SelectionTimeOut = 1;
  302. return TRUE;
  303. }
  304. struct nsp_sync_table {
  305. unsigned int min_period;
  306. unsigned int max_period;
  307. unsigned int chip_period;
  308. unsigned int ack_width;
  309. };
  310. static struct nsp_sync_table nsp_sync_table_40M[] = {
  311. {0x0c,0x0c,0x1,0}, /* 20MB  50ns*/
  312. {0x19,0x19,0x3,1}, /* 10MB  100ns*/ 
  313. {0x1a,0x25,0x5,2}, /* 7.5MB 150ns*/ 
  314. {0x26,0x32,0x7,3}, /* 5MB  200ns*/
  315. {0x0, 0,   0,  0}
  316. };
  317. static struct nsp_sync_table nsp_sync_table_20M[] = {
  318. {0x19,0x19,0x1,0}, /* 10MB  100ns*/ 
  319. {0x1a,0x25,0x2,0}, /* 7.5MB 150ns*/ 
  320. {0x26,0x32,0x3,1}, /* 5MB  200ns*/
  321. {0x0, 0,   0,  0}
  322. };
  323. /*
  324.  * setup synchronous data transfer mode
  325.  */
  326. static int nsp_msg(Scsi_Cmnd *SCpnt, nsp_hw_data *data)
  327. {
  328. unsigned char        target = SCpnt->target;
  329. unsigned char        lun    = SCpnt->lun;
  330. sync_data       *sync   = &(data->Sync[target][lun]);
  331. struct nsp_sync_table *sync_table;
  332. unsigned int        period, offset;
  333. int        i;
  334. DEBUG(0, __FUNCTION__ "()n");
  335. /**!**/
  336. period = sync->SyncPeriod;
  337. offset = sync->SyncOffset;
  338. DEBUG(0, " period=0x%x, offset=0x%xn", period, offset);
  339. if (data->ScsiClockDiv == CLOCK_20M) {
  340. sync_table = &nsp_sync_table_20M[0];
  341. } else {
  342. sync_table = &nsp_sync_table_40M[0];
  343. }
  344. for ( i = 0; sync_table->max_period != 0; i++, sync_table++) {
  345. if ( period >= sync_table->min_period &&
  346.      period <= sync_table->max_period  ) {
  347. break;
  348. }
  349. }
  350. if (period != 0 && sync_table->max_period == 0) {
  351. /*
  352.  * No proper period/offset found
  353.  */
  354. DEBUG(0, " no proper period/offsetn");
  355. sync->SyncPeriod      = 0;
  356. sync->SyncOffset      = 0;
  357. sync->SyncRegister    = 0;
  358. sync->AckWidth       = 0;
  359. sync->SyncNegotiation = SYNC_OK;
  360. return FALSE;
  361. }
  362. sync->SyncRegister    = (sync_table->chip_period << SYNCREG_PERIOD_SHIFT) |
  363.                 (offset & SYNCREG_OFFSET_MASK);
  364. sync->AckWidth       = sync_table->ack_width;
  365. sync->SyncNegotiation = SYNC_OK;
  366. DEBUG(0, " sync_reg=0x%x, ack_width=0x%xn", sync->SyncRegister, sync->AckWidth);
  367. return TRUE;
  368. }
  369. /*
  370.  * start ninja hardware timer
  371.  */
  372. static void nsp_start_timer(Scsi_Cmnd *SCpnt, nsp_hw_data *data, int time)
  373. {
  374. unsigned int base = SCpnt->host->io_port;
  375. //DEBUG(0, __FUNCTION__ "() in SCpnt=0x%p, time=%dn", SCpnt, time);
  376. data->TimerCount = time;
  377. nsp_index_write(base, TIMERCOUNT, time);
  378. }
  379. /*
  380.  * wait for bus phase change
  381.  */
  382. static int nsp_negate_signal(Scsi_Cmnd *SCpnt, unsigned char mask, char *str)
  383. {
  384. unsigned int  base = SCpnt->host->io_port;
  385. unsigned char reg;
  386. int       count, i = TRUE;
  387. //DEBUG(0, __FUNCTION__ "()n");
  388. count = jiffies + HZ;
  389. do {
  390. reg = nsp_index_read(base, SCSIBUSMON);
  391. if (reg == 0xff) {
  392. break;
  393. }
  394. } while ((i = time_before(jiffies, count)) && (reg & mask) != 0);
  395. if (!i) {
  396. printk(KERN_DEBUG __FUNCTION__ " %s signal off timeutn", str);
  397. }
  398. return 0;
  399. }
  400. /*
  401.  * expect Ninja Irq
  402.  */
  403. static int nsp_expect_signal(Scsi_Cmnd    *SCpnt,
  404.      unsigned char  current_phase,
  405.      unsigned char  mask)
  406. {
  407. unsigned int  base  = SCpnt->host->io_port;
  408. int       wait_count;
  409. unsigned char phase, i_src;
  410. //DEBUG(0, __FUNCTION__ "() current_phase=0x%x, mask=0x%xn", current_phase, mask);
  411. wait_count = jiffies + HZ;
  412. do {
  413. phase = nsp_index_read(base, SCSIBUSMON);
  414. if (phase == 0xff) {
  415. //DEBUG(0, " ret -1n");
  416. return -1;
  417. }
  418. i_src = nsp_read(base, IRQSTATUS);
  419. if (i_src & IRQSTATUS_SCSI) {
  420. //DEBUG(0, " ret 0 found scsi signaln");
  421. return 0;
  422. }
  423. if ((phase & mask) != 0 && (phase & BUSMON_PHASE_MASK) == current_phase) {
  424. //DEBUG(0, " ret 1 phase=0x%xn", phase);
  425. return 1;
  426. }
  427. } while(time_before(jiffies, wait_count));
  428. //DEBUG(0, __FUNCTION__ " : " __FUNCTION__ " timeoutn");
  429. return -1;
  430. }
  431. /*
  432.  * transfer SCSI message
  433.  */
  434. static int nsp_xfer(Scsi_Cmnd *SCpnt, nsp_hw_data *data, int phase)
  435. {
  436. unsigned int  base = SCpnt->host->io_port;
  437. char      *buf  = data->MsgBuffer;
  438. int       len  = MIN(MSGBUF_SIZE, data->MsgLen);
  439. int       ptr;
  440. int       ret;
  441. //DEBUG(0, __FUNCTION__ "()n");
  442. for (ptr = 0; len > 0; len --, ptr ++) {
  443. ret = nsp_expect_signal(SCpnt, phase, BUSMON_REQ);
  444. if (ret <= 0) {
  445. DEBUG(0, " xfer quitn");
  446. return 0;
  447. }
  448. /* if last byte, negate ATN */
  449. if (len == 1 && SCpnt->SCp.phase == PH_MSG_OUT) {
  450. nsp_index_write(base, SCSIBUSCTRL, AUTODIRECTION | ACKENB);
  451. }
  452. /* read & write message */
  453. if (phase & BUSMON_IO) {
  454. DEBUG(0, " read msgn");
  455. buf[ptr] = nsp_index_read(base, SCSIDATAWITHACK);
  456. } else {
  457. DEBUG(0, " write msgn");
  458. nsp_index_write(base, SCSIDATAWITHACK, buf[ptr]);
  459. }
  460. nsp_negate_signal(SCpnt, BUSMON_ACK, "xfer<ack>");
  461. }
  462. return len;
  463. }
  464. /*
  465.  * get extra SCSI data from fifo
  466.  */
  467. static int nsp_dataphase_bypass(Scsi_Cmnd *SCpnt, nsp_hw_data *data)
  468. {
  469. unsigned int count;
  470. //DEBUG(0, __FUNCTION__ "()n");
  471. if (SCpnt->SCp.have_data_in != IO_IN) {
  472. return 0;
  473. }
  474. count = nsp_fifo_count(SCpnt);
  475. if (data->FifoCount == count) {
  476. //DEBUG(0, " not use bypass quirkn");
  477. return 0;
  478. }
  479. /*
  480.  * XXX: NSP_QUIRK
  481.  * data phase skip only occures in case of SCSI_LOW_READ
  482.  */
  483. SCpnt->SCp.phase = PH_DATA;
  484. nsp_pio_read(SCpnt, data);
  485. nsp_setup_fifo(data, FALSE);
  486. DEBUG(0, " use bypass quirkn");
  487. return 0;
  488. }
  489. /*
  490.  * accept reselection
  491.  */
  492. static int nsp_reselected(Scsi_Cmnd *SCpnt, nsp_hw_data *data)
  493. {
  494. unsigned int  base = SCpnt->host->io_port;
  495. unsigned char reg;
  496. //DEBUG(0, __FUNCTION__ "()n");
  497. nsp_negate_signal(SCpnt, BUSMON_SEL, "reselect<SEL>");
  498. nsp_nexus(SCpnt, data);
  499. reg = nsp_index_read(base, SCSIBUSCTRL) & ~(SCSI_BSY | SCSI_ATN);
  500. nsp_index_write(base, SCSIBUSCTRL, reg);
  501. nsp_index_write(base, SCSIBUSCTRL, reg | AUTODIRECTION | ACKENB);
  502. return TRUE;
  503. }
  504. /*
  505.  * count how many data transferd
  506.  */
  507. static int nsp_fifo_count(Scsi_Cmnd *SCpnt)
  508. {
  509. unsigned int base = SCpnt->host->io_port;
  510. unsigned int count;
  511. unsigned int l, m, h;
  512. nsp_index_write(base, POINTERCLR, POINTER_CLEAR);
  513.         l = (unsigned int)nsp_read(base, DATAREG);
  514.         m = (unsigned int)nsp_read(base, DATAREG);
  515.         h = (unsigned int)nsp_read(base, DATAREG);
  516. count = (h << 16) | (m << 8) | (l << 0);
  517. //DEBUG(0, __FUNCTION__ "() =0x%xn", count);
  518. return count;
  519. }
  520. /* fifo size */
  521. #define RFIFO_CRIT 64
  522. #define WFIFO_CRIT 64
  523. /*
  524.  * read data in DATA IN phase
  525.  */
  526. static void nsp_pio_read(Scsi_Cmnd *SCpnt, nsp_hw_data *data)
  527. {
  528. unsigned int  base     = SCpnt->host->io_port;
  529. int       time_out, i;
  530. int       ocount, res;
  531. unsigned char stat, fifo_stat;
  532. ocount = data->FifoCount;
  533. DEBUG(0, __FUNCTION__ "() in SCpnt=0x%p resid=%d ocount=%d ptr=0x%p this_residual=%d buffers=0x%p nbuf=%dn", SCpnt, RESID, ocount, SCpnt->SCp.ptr, SCpnt->SCp.this_residual, SCpnt->SCp.buffer, SCpnt->SCp.buffers_residual);
  534. time_out = jiffies + 10 * HZ;
  535. while ((i = time_before(jiffies,time_out)) &&
  536.        (SCpnt->SCp.this_residual > 0 || SCpnt->SCp.buffers_residual > 0 ) ) {
  537. stat = nsp_index_read(base, SCSIBUSMON);
  538. stat &= BUSMON_PHASE_MASK;
  539. res = nsp_fifo_count(SCpnt) - ocount;
  540. //DEBUG(0, " ptr=0x%p this=0x%x ocount=0x%x res=0x%xn", SCpnt->SCp.ptr, SCpnt->SCp.this_residual, ocount, res);
  541. if (res == 0) { /* if some data avilable ? */
  542. if (stat == BUSPHASE_DATA_IN) { /* phase changed? */
  543. //DEBUG(0, " wait for data this=%dn", SCpnt->SCp.this_residual);
  544. continue;
  545. } else {
  546. DEBUG(0, " phase changed stat=0x%xn", stat);
  547. break;
  548. }
  549. }
  550. fifo_stat = nsp_read(base, FIFOSTATUS);
  551. if ((fifo_stat & FIFOSTATUS_FULL_EMPTY) == 0 &&
  552.     stat                                == BUSPHASE_DATA_IN) {
  553. continue;
  554. }
  555. res = MIN(res, SCpnt->SCp.this_residual);
  556. switch (data->TransferMode) {
  557. case MODE_IO32:
  558. res &= ~(BIT(1)|BIT(0)); /* align 4 */
  559. nsp_fifo32_read(base, SCpnt->SCp.ptr, res >> 2);
  560. break;
  561. case MODE_IO8:
  562. nsp_fifo8_read (base, SCpnt->SCp.ptr, res     );
  563. break;
  564. default:
  565. DEBUG(0, "unknown read moden");
  566. break;
  567. }
  568. RESID  -= res;
  569. SCpnt->SCp.ptr  += res;
  570. SCpnt->SCp.this_residual -= res;
  571. ocount  += res;
  572. //DEBUG(0, " ptr=0x%p this_residual=0x%x ocount=0x%xn", SCpnt->SCp.ptr, SCpnt->SCp.this_residual, ocount);
  573. /* go to next scatter list if availavle */
  574. if (SCpnt->SCp.this_residual == 0 &&
  575.     SCpnt->SCp.buffers_residual != 0 ) {
  576. //DEBUG(0, " scatterlist next timeout=%dn", time_out);
  577. SCpnt->SCp.buffers_residual--;
  578. SCpnt->SCp.buffer++;
  579. SCpnt->SCp.ptr  = SCpnt->SCp.buffer->address;
  580. SCpnt->SCp.this_residual = SCpnt->SCp.buffer->length;
  581. }
  582. time_out = jiffies + 10 * HZ;
  583. }
  584. data->FifoCount = ocount;
  585. if (!i) {
  586. printk(KERN_DEBUG __FUNCTION__ "() pio read timeout resid=%d this_residual=%d buffers_residual=%dn", RESID, SCpnt->SCp.this_residual, SCpnt->SCp.buffers_residual);
  587. }
  588. DEBUG(0, " read ocount=0x%xn", ocount);
  589. }
  590. /*
  591.  * write data in DATA OUT phase
  592.  */
  593. static void nsp_pio_write(Scsi_Cmnd *SCpnt, nsp_hw_data *data)
  594. {
  595. unsigned int  base     = SCpnt->host->io_port;
  596. int       time_out, i;
  597. unsigned int  ocount, res;
  598. unsigned char stat;
  599. ocount  = data->FifoCount;
  600. DEBUG(0, __FUNCTION__ "() in fifocount=%d ptr=0x%p this_residual=%d buffers=0x%p nbuf=%d resid=0x%xn", data->FifoCount, SCpnt->SCp.ptr, SCpnt->SCp.this_residual, SCpnt->SCp.buffer, SCpnt->SCp.buffers_residual, RESID);
  601. time_out = jiffies + 10 * HZ;
  602. while ((i = time_before(jiffies, time_out))                             &&
  603.        (SCpnt->SCp.this_residual > 0 || SCpnt->SCp.buffers_residual > 0)) {
  604. stat = nsp_index_read(base, SCSIBUSMON);
  605. stat &= BUSMON_PHASE_MASK;
  606. if (stat != BUSPHASE_DATA_OUT) {
  607. DEBUG(0, " phase changed stat=0x%xn", stat);
  608. break;
  609. }
  610. res = ocount - nsp_fifo_count(SCpnt);
  611. if (res > 0) { /* write all data? */
  612. DEBUG(0, " wait for all data out. ocount=0x%x res=%dn", ocount, res);
  613. continue;
  614. }
  615. res = MIN(SCpnt->SCp.this_residual, WFIFO_CRIT);
  616. //DEBUG(0, " ptr=0x%p this=0x%x res=0x%xn", SCpnt->SCp.ptr, SCpnt->SCp.this_residual, res);
  617. switch (data->TransferMode) {
  618. case MODE_IO32:
  619. res &= ~(BIT(1)|BIT(0)); /* align 4 */
  620. nsp_fifo32_write(base, SCpnt->SCp.ptr, res >> 2);
  621. break;
  622. case MODE_IO8:
  623. nsp_fifo8_write (base, SCpnt->SCp.ptr, res     );
  624. break;
  625. default:
  626. DEBUG(0, "unknown write moden");
  627. break;
  628. }
  629. RESID  -= res;
  630. SCpnt->SCp.ptr  += res;
  631. SCpnt->SCp.this_residual -= res;
  632. ocount  += res;
  633. /* go to next scatter list if availavle */
  634. if (SCpnt->SCp.this_residual == 0 &&
  635.     SCpnt->SCp.buffers_residual != 0 ) {
  636. //DEBUG(0, " scatterlist nextn");
  637. SCpnt->SCp.buffers_residual--;
  638. SCpnt->SCp.buffer++;
  639. SCpnt->SCp.ptr  = SCpnt->SCp.buffer->address;
  640. SCpnt->SCp.this_residual = SCpnt->SCp.buffer->length;
  641. }
  642. time_out = jiffies + 10 * HZ;
  643. }
  644. data->FifoCount = ocount;
  645. if (!i) {
  646. printk(KERN_DEBUG __FUNCTION__ "() pio write timeout resid=%dn", RESID);
  647. }
  648. //DEBUG(0, " write ocount=%dn", ocount);
  649. }
  650. #undef RFIFO_CRIT
  651. #undef WFIFO_CRIT
  652. /*
  653.  * setup synchronous/asynchronous data transfer mode
  654.  */
  655. static int nsp_nexus(Scsi_Cmnd *SCpnt, nsp_hw_data *data)
  656. {
  657. unsigned int   base   = SCpnt->host->io_port;
  658. unsigned char  target = SCpnt->target;
  659. unsigned char  lun    = SCpnt->lun;
  660. sync_data     *sync   = &(data->Sync[target][lun]);
  661. //DEBUG(0, __FUNCTION__ "() in SCpnt=0x%pn", SCpnt);
  662. /* setup synch transfer registers */
  663. nsp_index_write(base, SYNCREG, sync->SyncRegister);
  664. nsp_index_write(base, ACKWIDTH, sync->AckWidth);
  665. if (RESID % 4 != 0   ||
  666.     RESID     <= 256 ) {
  667. data->TransferMode = MODE_IO8;
  668. } else {
  669. data->TransferMode = MODE_IO32;
  670. }
  671. /* setup pdma fifo */
  672. nsp_setup_fifo(data, TRUE);
  673. /* clear ack counter */
  674. data->FifoCount = 0;
  675. nsp_index_write(base, POINTERCLR, POINTER_CLEAR     |
  676.   ACK_COUNTER_CLEAR |
  677.   REQ_COUNTER_CLEAR |
  678.   HOST_COUNTER_CLEAR);
  679. return 0;
  680. }
  681. #include "nsp_message.c"
  682. /*
  683.  * interrupt handler
  684.  */
  685. static void nspintr(int irq, void *dev_id, struct pt_regs *regs)
  686. {
  687. unsigned int   base;
  688. unsigned char  i_src, irq_phase, phase;
  689. Scsi_Cmnd     *tmpSC;
  690. int            len;
  691. unsigned char  target, lun;
  692. unsigned int  *sync_neg;
  693. int            i, tmp;
  694. nsp_hw_data   *data;
  695. //printk("&nsp_data=0x%p, dev_id=0x%pn", &nsp_data, dev_id);
  696. /* sanity check */
  697. if (&nsp_data != dev_id) {
  698. DEBUG(0, " irq conflict? this can't happenn");
  699. return;
  700. }
  701. data = dev_id;
  702. if (irq != data->IrqNumber) {
  703. return;
  704. }
  705. base = data->BaseAddress;
  706. //DEBUG(0, " base=0x%xn", base);
  707. /*
  708.  * interrupt check
  709.  */
  710. nsp_write(base, IRQCONTROL, IRQCONTROL_IRQDISABLE);
  711. i_src = nsp_read(base, IRQSTATUS);
  712. if (i_src == 0xff || (i_src & IRQSTATUS_MASK) == 0) {
  713. nsp_write(base, IRQCONTROL, 0);
  714. //DEBUG(0, " no irqn");
  715. return;
  716. }
  717. //DEBUG(0, " i_src=0x%xn", i_src);
  718. /* XXX: IMPORTANT
  719.  * Do not read an irq_phase register if no scsi phase interrupt.
  720.  * Unless, you should lose a scsi phase interrupt.
  721.  */
  722. phase = nsp_index_read(base, SCSIBUSMON);
  723. if((i_src & IRQSTATUS_SCSI) != 0) {
  724. irq_phase = nsp_index_read(base, IRQPHASESENCE);
  725. } else {
  726. irq_phase = 0;
  727. }
  728. //DEBUG(0, " irq_phase=0x%xn", irq_phase);
  729. /*
  730.  * timer interrupt handler (scsi vs timer interrupts)
  731.  */
  732. //DEBUG(0, " timercount=%dn", data->TimerCount);
  733. if (data->TimerCount != 0) {
  734. //DEBUG(0, " stop timern");
  735. nsp_index_write(base, TIMERCOUNT, 0);
  736. nsp_index_write(base, TIMERCOUNT, 0);
  737. data->TimerCount = 0;
  738. }
  739. if ((i_src & IRQSTATUS_MASK) == IRQSTATUS_TIMER &&
  740.     data->SelectionTimeOut == 0) {
  741. //DEBUG(0, " timer startn");
  742. nsp_write(base, IRQCONTROL, IRQCONTROL_TIMER_CLEAR);
  743. return;
  744. }
  745. nsp_write(base, IRQCONTROL, IRQCONTROL_TIMER_CLEAR | IRQCONTROL_FIFO_CLEAR);
  746. if (data->CurrentSC == NULL) {
  747. printk(KERN_DEBUG __FUNCTION__ " CurrentSC==NULL irq_status=0x%x phase=0x%x irq_phase=0x%x this can't be happenn", i_src, phase, irq_phase);
  748. return;
  749. } else {
  750. tmpSC    = data->CurrentSC;
  751. target   = tmpSC->target;
  752. lun      = tmpSC->lun;
  753. sync_neg = &(data->Sync[target][lun].SyncNegotiation);
  754. }
  755. /*
  756.  * parse hardware SCSI irq reasons register
  757.  */
  758. if ((i_src & IRQSTATUS_SCSI) != 0) {
  759. if ((irq_phase & SCSI_RESET_IRQ) != 0) {
  760. printk(KERN_DEBUG " " __FUNCTION__ "() bus reset (power off?)n");
  761. *sync_neg          = SYNC_NOT_YET;
  762. data->CurrentSC    = NULL;
  763. tmpSC->result    = DID_RESET << 16;
  764. tmpSC->scsi_done(tmpSC);
  765. return;
  766. }
  767. if ((irq_phase & RESELECT_IRQ) != 0) {
  768. DEBUG(0, " reselectn");
  769. nsp_write(base, IRQCONTROL, IRQCONTROL_RESELECT_CLEAR);
  770. if (nsp_reselected(tmpSC, data) != FALSE) {
  771. return;
  772. }
  773. }
  774. if ((irq_phase & (PHASE_CHANGE_IRQ | LATCHED_BUS_FREE)) == 0) {
  775. return; 
  776. }
  777. }
  778. //show_phase(tmpSC);
  779. switch(tmpSC->SCp.phase) {
  780. case PH_SELSTART:
  781. *sync_neg = SYNC_NOT_YET;
  782. if ((phase & BUSMON_BSY) == 0) {
  783. //DEBUG(0, " selection count=%dn", data->SelectionTimeOut);
  784. if (data->SelectionTimeOut >= NSP_SELTIMEOUT) {
  785. DEBUG(0, " selection time outn");
  786. data->SelectionTimeOut = 0;
  787. nsp_index_write(base, SCSIBUSCTRL, 0);
  788. data->CurrentSC = NULL;
  789. tmpSC->result   = DID_NO_CONNECT << 16;
  790. tmpSC->scsi_done(tmpSC);
  791. return;
  792. }
  793. data->SelectionTimeOut += 1;
  794. nsp_start_timer(tmpSC, data, 1000/51);
  795. return;
  796. }
  797. /* attention assert */
  798. //DEBUG(0, " attention assertn");
  799. data->SelectionTimeOut = 0;
  800. tmpSC->SCp.phase       = PH_SELECTED;
  801. nsp_index_write(base, SCSIBUSCTRL, SCSI_ATN);
  802. udelay(1);
  803. nsp_index_write(base, SCSIBUSCTRL, SCSI_ATN | AUTODIRECTION | ACKENB);
  804. return;
  805. break;
  806. case PH_RESELECT:
  807. //DEBUG(0, " phase reselectn");
  808. *sync_neg = SYNC_NOT_YET;
  809. if ((phase & BUSMON_PHASE_MASK) != BUSPHASE_MESSAGE_IN) {
  810. data->CurrentSC = NULL;
  811. tmpSC->result = DID_ABORT << 16;
  812. tmpSC->scsi_done(tmpSC);
  813. return;
  814. }
  815. /* fall thru */
  816. default:
  817. if ((i_src & (IRQSTATUS_SCSI | IRQSTATUS_FIFO)) == 0) {
  818. return;
  819. }
  820. break;
  821. }
  822. /*
  823.  * SCSI sequencer
  824.  */
  825. //DEBUG(0, " start scsi seqn");
  826. /* normal disconnect */
  827. if ((irq_phase & LATCHED_BUS_FREE) != 0) {
  828. //DEBUG(0, " normal disconnect i_src=0x%x, phase=0x%x, irq_phase=0x%xn", i_src, phase, irq_phase);
  829. if ((tmpSC->SCp.Message == MSG_COMMAND_COMPLETE)) {     /* all command complete and return status */
  830. *sync_neg       = SYNC_NOT_YET;
  831. data->CurrentSC = NULL;
  832. tmpSC->result = (DID_OK     << 16) |
  833. (tmpSC->SCp.Message << 8) |
  834. (tmpSC->SCp.Status  << 0);
  835. DEBUG(0, " command complete result=0x%xn", tmpSC->result);
  836. tmpSC->scsi_done(tmpSC);
  837. return;
  838. }
  839. return;
  840. }
  841. /* check unexpected bus free state */
  842. if (phase == 0) {
  843. printk(KERN_DEBUG " " __FUNCTION__ " unexpected bus free. i_src=0x%x, phase=0x%x, irq_phase=0x%xn", i_src, phase, irq_phase);
  844. *sync_neg       = SYNC_NOT_YET;
  845. data->CurrentSC = NULL;
  846. tmpSC->result   = DID_ERROR << 16;
  847. tmpSC->scsi_done(tmpSC);
  848. return;
  849. }
  850. switch (phase & BUSMON_PHASE_MASK) {
  851. case BUSPHASE_COMMAND:
  852. DEBUG(0, " BUSPHASE_COMMANDn");
  853. if ((phase & BUSMON_REQ) == 0) {
  854. DEBUG(0, " REQ == 0n");
  855. return;
  856. }
  857. tmpSC->SCp.phase = PH_COMMAND;
  858. nsp_nexus(tmpSC, data);
  859. /* write scsi command */
  860. nsp_index_write(base, COMMANDCTRL, CLEAR_COMMAND_POINTER);
  861. for (len = 0; len < COMMAND_SIZE(tmpSC->cmnd[0]); len++) {
  862. nsp_index_write(base, COMMANDDATA, tmpSC->cmnd[len]);
  863. }
  864. nsp_index_write(base, COMMANDCTRL, CLEAR_COMMAND_POINTER | AUTO_COMMAND_GO);
  865. break;
  866. case BUSPHASE_DATA_OUT:
  867. DEBUG(0, " BUSPHASE_DATA_OUTn");
  868. tmpSC->SCp.phase = PH_DATA;
  869. tmpSC->SCp.have_data_in = IO_OUT;
  870. nsp_pio_write(tmpSC, data);
  871. break;
  872. case BUSPHASE_DATA_IN:
  873. DEBUG(0, " BUSPHASE_DATA_INn");
  874. tmpSC->SCp.phase = PH_DATA;
  875. tmpSC->SCp.have_data_in = IO_IN;
  876. nsp_pio_read(tmpSC, data);
  877. break;
  878. case BUSPHASE_STATUS:
  879. nsp_dataphase_bypass(tmpSC, data);
  880. DEBUG(0, " BUSPHASE_STATUSn");
  881. tmpSC->SCp.phase = PH_STATUS;
  882. tmpSC->SCp.Status = nsp_index_read(base, SCSIDATAWITHACK);
  883. //DEBUG(0, " message=0x%x status=0x%xn", tmpSC->SCp.Message, tmpSC->SCp.Status);
  884. break;
  885. case BUSPHASE_MESSAGE_OUT:
  886. DEBUG(0, " BUSPHASE_MESSAGE_OUTn");
  887. if ((phase & BUSMON_REQ) == 0) {
  888. goto timer_out;
  889. }
  890. tmpSC->SCp.phase = PH_MSG_OUT;
  891. data->MsgLen = len = 0;
  892. if (*sync_neg == SYNC_NOT_YET) {
  893. data->Sync[target][lun].SyncPeriod = 0;
  894. data->Sync[target][lun].SyncOffset = 0;
  895. nsp_msg(tmpSC, data);
  896. data->MsgBuffer[len] = IDENTIFY(TRUE, lun); len++;
  897. /*
  898. data->MsgBuffer[len] = MSG_EXTENDED;        len++;
  899. data->MsgBuffer[len] = 3;                   len++;
  900. data->MsgBuffer[len] = MSG_EXT_SDTR;        len++;
  901. data->MsgBuffer[len] = 0x0c;                len++;
  902. data->MsgBuffer[len] = 15;                  len++;
  903. */
  904. }
  905. if (len == 0) {
  906. data->MsgBuffer[len] = MSG_NO_OPERATION; len++;
  907. }
  908. data->MsgLen = len;
  909. show_message(data);
  910. nsp_message_out(tmpSC, data);
  911. break;
  912. case BUSPHASE_MESSAGE_IN:
  913. nsp_dataphase_bypass(tmpSC, data);
  914. DEBUG(0, " BUSPHASE_MESSAGE_INn");
  915. if ((phase & BUSMON_REQ) == 0) {
  916. goto timer_out;
  917. }
  918. tmpSC->SCp.phase = PH_MSG_IN;
  919. nsp_message_in(tmpSC, data);
  920. /*
  921. if (data->MsgLen       >= 5            &&
  922.     data->MsgBuffer[0] == MSG_EXTENDED &&
  923.     data->MsgBuffer[1] == 3            &&
  924.     data->MsgBuffer[2] == MSG_EXT_SDTR ) {
  925. data->Sync[target][lun].SyncPeriod = data->MsgBuffer[3];
  926. data->Sync[target][lun].SyncOffset = data->MsgBuffer[4];
  927. nsp_msg(tmpSC, data);
  928. }
  929. */
  930. /* search last messeage byte */
  931. tmp = -1;
  932. for (i = 0; i < data->MsgLen; i++) {
  933. tmp = data->MsgBuffer[i];
  934. if (data->MsgBuffer[i] == MSG_EXTENDED) {
  935. i += (1 + data->MsgBuffer[i+1]);
  936. }
  937. }
  938. tmpSC->SCp.Message = tmp;
  939. DEBUG(0, " message=0x%x len=%dn", tmpSC->SCp.Message, data->MsgLen);
  940. show_message(data);
  941. break;
  942. case BUSPHASE_SELECT:
  943. default:
  944. DEBUG(0, " BUSPHASE othern");
  945. break;
  946. }
  947. //DEBUG(0, __FUNCTION__ "() outn");
  948. return;
  949. timer_out:
  950. nsp_start_timer(tmpSC, data, 1000/102);
  951. return;
  952. }
  953. #ifdef PCMCIA_DEBUG
  954. #include "nsp_debug.c"
  955. #endif /* DBG_SHOWCOMMAND */
  956. /*----------------------------------------------------------------*/
  957. /* look for ninja3 card and init if found   */
  958. /*----------------------------------------------------------------*/
  959. static int nsp_detect(Scsi_Host_Template *sht)
  960. {
  961. struct Scsi_Host *host; /* registered host structure */
  962. nsp_hw_data *data = &nsp_data;
  963. DEBUG(0, __FUNCTION__ " this_id=%dn", sht->this_id);
  964. request_region(data->BaseAddress, data->NumAddress, "nsp_cs");
  965. host   = scsi_register(sht, 0);
  966. host->io_port   = data->BaseAddress;
  967. host->unique_id   = data->BaseAddress;
  968. host->n_io_port   = data->NumAddress;
  969. host->irq   = data->IrqNumber;
  970. host->dma_channel = 0xff;             /* not use dms */
  971. sprintf(nspinfo,
  972. /* Buffer size is 100 bytes */
  973. /*  0         1         2         3         4         5         6         7         8         9         0*/
  974. /*  01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890*/
  975.    "NinjaSCSI-3/32Bi Driver $Revision: 1.42 $, I/O 0x%04lx-0x%04lx IRQ %2d",
  976. host->io_port, host->io_port + host->n_io_port,
  977. host->irq);
  978. sht->name   = nspinfo;
  979. DEBUG(0, __FUNCTION__ " endn");
  980. return 1; /* detect done. */
  981. }
  982. /* nsp_cs requires own release handler because its uses dev_id (=data) */
  983. static int nsp_release(struct Scsi_Host *shpnt)
  984. {
  985. nsp_hw_data *data = &nsp_data;
  986.         if (shpnt->irq) {
  987.                 free_irq(shpnt->irq, data);
  988. }
  989.         if (shpnt->io_port && shpnt->n_io_port) {
  990. release_region(shpnt->io_port, shpnt->n_io_port);
  991. }
  992. return 0;
  993. }
  994. /*----------------------------------------------------------------*/
  995. /* return info string   */
  996. /*----------------------------------------------------------------*/
  997. static const char *nsp_info(struct Scsi_Host *shpnt)
  998. {
  999. return nspinfo;
  1000. }
  1001. /*---------------------------------------------------------------*/
  1002. /* error handler                                                 */
  1003. /*---------------------------------------------------------------*/
  1004. static int nsp_reset(Scsi_Cmnd *SCpnt, unsigned int why)
  1005. {
  1006. DEBUG(0, __FUNCTION__ " SCpnt=0x%p why=%dn", SCpnt, why);
  1007. nsp_eh_bus_reset(SCpnt);
  1008. return SCSI_RESET_SUCCESS;
  1009. }
  1010. static int nsp_abort(Scsi_Cmnd *SCpnt)
  1011. {
  1012. DEBUG(0, __FUNCTION__ " SCpnt=0x%pn", SCpnt);
  1013. nsp_eh_bus_reset(SCpnt);
  1014. return SCSI_ABORT_SUCCESS;
  1015. }
  1016. /*static int nsp_eh_strategy(struct Scsi_Host *Shost)
  1017. {
  1018. return FAILED;
  1019. }*/
  1020. static int nsp_eh_abort(Scsi_Cmnd *SCpnt)
  1021. {
  1022. DEBUG(0, __FUNCTION__ " SCpnt=0x%pn", SCpnt);
  1023. nsp_eh_bus_reset(SCpnt);
  1024. return SUCCESS;
  1025. }
  1026. static int nsp_eh_device_reset(Scsi_Cmnd *SCpnt)
  1027. {
  1028. DEBUG(0, __FUNCTION__ " SCpnt=0x%pn", SCpnt);
  1029. return FAILED;
  1030. }
  1031. static int nsp_eh_bus_reset(Scsi_Cmnd *SCpnt)
  1032. {
  1033. unsigned int base = SCpnt->host->io_port;
  1034. int      i;
  1035. DEBUG(0, __FUNCTION__ "() SCpnt=0x%p base=0x%xn", SCpnt, base);
  1036. nsp_write(base, IRQCONTROL, IRQCONTROL_ALLMASK);
  1037. nsp_index_write(base, SCSIBUSCTRL, SCSI_RST);
  1038. mdelay(100); /* 100ms */
  1039. nsp_index_write(base, SCSIBUSCTRL, 0);
  1040. for(i = 0; i < 5; i++) {
  1041. nsp_index_read(base, IRQPHASESENCE); /* dummy read */
  1042. }
  1043. nsp_write(base, IRQCONTROL, IRQCONTROL_ALLCLEAR);
  1044. return SUCCESS;
  1045. }
  1046. static int nsp_eh_host_reset(Scsi_Cmnd *SCpnt)
  1047. {
  1048. nsp_hw_data *data = &nsp_data;
  1049. DEBUG(0, __FUNCTION__ "n");
  1050. nsphw_init(data);
  1051. return nsp_eh_bus_reset(SCpnt);
  1052. }
  1053. /**********************************************************************
  1054.   PCMCIA functions
  1055.   *********************************************************************/
  1056. /*====================================================================*/
  1057. static void cs_error(client_handle_t handle, int func, int ret)
  1058. {
  1059. error_info_t err = { func, ret };
  1060. CardServices(ReportError, handle, &err);
  1061. }
  1062. /*======================================================================
  1063.     nsp_cs_attach() creates an "instance" of the driver, allocating
  1064.     local data structures for one device.  The device is registered
  1065.     with Card Services.
  1066.     The dev_link structure is initialized, but we don't actually
  1067.     configure the card at this point -- we wait until we receive a
  1068.     card insertion event.
  1069. ======================================================================*/
  1070. static dev_link_t *nsp_cs_attach(void)
  1071. {
  1072. scsi_info_t  *info;
  1073. client_reg_t  client_reg;
  1074. dev_link_t   *link;
  1075. int       ret, i;
  1076. DEBUG(0, __FUNCTION__ "()n");
  1077. /* Create new SCSI device */
  1078. info = kmalloc(sizeof(*info), GFP_KERNEL);
  1079. if (!info) { return NULL; }
  1080. memset(info, 0, sizeof(*info));
  1081. link = &info->link;
  1082. link->priv = info;
  1083. /* Initialize the dev_link_t structure */
  1084. link->release.function  = &nsp_cs_release;
  1085. link->release.data  = (u_long)link;
  1086. /* The io structure describes IO port mapping */
  1087. link->io.NumPorts1  = 0x10;
  1088. link->io.Attributes1  = IO_DATA_PATH_WIDTH_AUTO;
  1089. link->io.IOAddrLines  = 10; /* not used */
  1090. /* Interrupt setup */
  1091. link->irq.Attributes  = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
  1092. link->irq.IRQInfo1  = IRQ_INFO2_VALID    | IRQ_LEVEL_ID;
  1093. if (irq_list[0] == -1) {
  1094. link->irq.IRQInfo2 = irq_mask;
  1095. } else {
  1096. for (i = 0; i < 4; i++) {
  1097. link->irq.IRQInfo2 |= 1 << irq_list[i];
  1098. }
  1099. }
  1100. link->irq.Handler  = &nspintr;
  1101. link->irq.Instance       = &nsp_data;
  1102. /* General socket configuration */
  1103. link->conf.Attributes  = CONF_ENABLE_IRQ;
  1104. link->conf.Vcc  = 50;
  1105. link->conf.IntType  = INT_MEMORY_AND_IO;
  1106. link->conf.Present  = PRESENT_OPTION;
  1107. /* Register with Card Services */
  1108. link->next               = dev_list;
  1109. dev_list                 = link;
  1110. client_reg.dev_info  = &dev_info;
  1111. client_reg.Attributes  = INFO_IO_CLIENT | INFO_CARD_SHARE;
  1112. client_reg.EventMask  =
  1113. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  1114. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  1115. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME  ;
  1116. client_reg.event_handler = &nsp_cs_event;
  1117. client_reg.Version  = 0x0210;
  1118. client_reg.event_callback_args.client_data = link;
  1119. ret = CardServices(RegisterClient, &link->handle, &client_reg);
  1120. if (ret != CS_SUCCESS) {
  1121. cs_error(link->handle, RegisterClient, ret);
  1122. nsp_cs_detach(link);
  1123. return NULL;
  1124. }
  1125. return link;
  1126. } /* nsp_cs_attach */
  1127. /*======================================================================
  1128.     This deletes a driver "instance".  The device is de-registered
  1129.     with Card Services.  If it has been released, all local data
  1130.     structures are freed.  Otherwise, the structures will be freed
  1131.     when the device is released.
  1132. ======================================================================*/
  1133. static void nsp_cs_detach(dev_link_t *link)
  1134. {
  1135. dev_link_t **linkp;
  1136. DEBUG(0, __FUNCTION__ "(0x%p)n", link);
  1137.     
  1138. /* Locate device structure */
  1139. for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next) {
  1140. if (*linkp == link) {
  1141. break;
  1142. }
  1143. }
  1144. if (*linkp == NULL) {
  1145. return;
  1146. }
  1147. del_timer(&link->release);
  1148. if (link->state & DEV_CONFIG) {
  1149. nsp_cs_release((u_long)link);
  1150. if (link->state & DEV_STALE_CONFIG) {
  1151. link->state |= DEV_STALE_LINK;
  1152. return;
  1153. }
  1154. }
  1155. /* Break the link with Card Services */
  1156. if (link->handle) {
  1157. CardServices(DeregisterClient, link->handle);
  1158. }
  1159. /* Unlink device structure, free bits */
  1160. *linkp = link->next;
  1161. kfree(link->priv);
  1162. } /* nsp_cs_detach */
  1163. /*======================================================================
  1164.     nsp_cs_config() is scheduled to run after a CARD_INSERTION event
  1165.     is received, to configure the PCMCIA socket, and to make the
  1166.     ethernet device available to the system.
  1167. ======================================================================*/
  1168. #define CS_CHECK(fn, args...) 
  1169. while ((last_ret=CardServices(last_fn=(fn),args))!=0) goto cs_failed
  1170. #define CFG_CHECK(fn, args...) 
  1171. if (CardServices(fn, args) != 0) goto next_entry
  1172. /*====================================================================*/
  1173. static void nsp_cs_config(dev_link_t *link)
  1174. {
  1175. client_handle_t   handle = link->handle;
  1176. scsi_info_t  *info  = link->priv;
  1177. tuple_t   tuple;
  1178. cisparse_t   parse;
  1179. int   i, last_ret, last_fn;
  1180. u_char   tuple_data[64];
  1181. config_info_t   conf;
  1182. Scsi_Device  *dev;
  1183. dev_node_t **tail, *node;
  1184. struct Scsi_Host *host;
  1185. nsp_hw_data      *data = &nsp_data;
  1186. DEBUG(0, __FUNCTION__ "() inn");
  1187. tuple.DesiredTuple    = CISTPL_CONFIG;
  1188. tuple.Attributes      = 0;
  1189. tuple.TupleData       = tuple_data;
  1190. tuple.TupleDataMax    = sizeof(tuple_data);
  1191. tuple.TupleOffset     = 0;
  1192. CS_CHECK(GetFirstTuple, handle, &tuple);
  1193. CS_CHECK(GetTupleData, handle, &tuple);
  1194. CS_CHECK(ParseTuple, handle, &tuple, &parse);
  1195. link->conf.ConfigBase = parse.config.base;
  1196. link->conf.Present    = parse.config.rmask[0];
  1197. /* Configure card */
  1198. driver_template.module = &__this_module;
  1199. link->state       |= DEV_CONFIG;
  1200. /* Look up the current Vcc */
  1201. CS_CHECK(GetConfigurationInfo, handle, &conf);
  1202. link->conf.Vcc = conf.Vcc;
  1203. tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  1204. CS_CHECK(GetFirstTuple, handle, &tuple);
  1205. while (1) {
  1206. CFG_CHECK(GetTupleData, handle, &tuple);
  1207. CFG_CHECK(ParseTuple, handle, &tuple, &parse);
  1208. link->conf.ConfigIndex = parse.cftable_entry.index;
  1209. link->io.BasePort1     = parse.cftable_entry.io.win[0].base;
  1210. i = CardServices(RequestIO, handle, &link->io);
  1211. if (i == CS_SUCCESS) {
  1212. break;
  1213. }
  1214. next_entry:
  1215. DEBUG(0, __FUNCTION__ " nextn");
  1216. CS_CHECK(GetNextTuple, handle, &tuple);
  1217. }
  1218. CS_CHECK(RequestIRQ,        handle, &link->irq);
  1219. CS_CHECK(RequestConfiguration, handle, &link->conf);
  1220. /* A bad hack... */
  1221. release_region(link->io.BasePort1, link->io.NumPorts1);
  1222. /* Set port and IRQ */
  1223. data->BaseAddress = link->io.BasePort1;
  1224. data->NumAddress  = link->io.NumPorts1;
  1225. data->IrqNumber   = link->irq.AssignedIRQ;
  1226. DEBUG(0, __FUNCTION__ " I/O[0x%x+0x%x] IRQ %dn",
  1227.       data->BaseAddress, data->NumAddress, data->IrqNumber);
  1228. if(nsphw_init(data) == FALSE) {
  1229. goto cs_failed;
  1230. }
  1231. scsi_register_module(MODULE_SCSI_HA, &driver_template);
  1232. DEBUG(0, "GET_SCSI_INFOn");
  1233. tail = &link->dev;
  1234. info->ndev = 0;
  1235. for (host = scsi_hostlist; host != NULL; host = host->next) {
  1236. if (host->hostt == &driver_template) {
  1237. for (dev = host->host_queue; dev != NULL; dev = dev->next) {
  1238. u_long arg[2], id;
  1239. kernel_scsi_ioctl(dev, SCSI_IOCTL_GET_IDLUN, arg);
  1240. id = (arg[0]&0x0f) + ((arg[0]>>4)&0xf0) +
  1241. ((arg[0]>>8)&0xf00) + ((arg[0]>>12)&0xf000);
  1242. node = &info->node[info->ndev];
  1243. node->minor = 0;
  1244. switch (dev->type) {
  1245. case TYPE_TAPE:
  1246. node->major = SCSI_TAPE_MAJOR;
  1247. sprintf(node->dev_name, "st#%04lx", id);
  1248. break;
  1249. case TYPE_DISK:
  1250. case TYPE_MOD:
  1251. node->major = SCSI_DISK0_MAJOR;
  1252. sprintf(node->dev_name, "sd#%04lx", id);
  1253. break;
  1254. case TYPE_ROM:
  1255. case TYPE_WORM:
  1256. node->major = SCSI_CDROM_MAJOR;
  1257. sprintf(node->dev_name, "sr#%04lx", id);
  1258. break;
  1259. default:
  1260. node->major = SCSI_GENERIC_MAJOR;
  1261. sprintf(node->dev_name, "sg#%04lx", id);
  1262. break;
  1263. }
  1264. *tail = node; tail = &node->next;
  1265. info->ndev++;
  1266. info->host = dev->host;
  1267. }
  1268. }
  1269. }
  1270. *tail = NULL;
  1271. if (info->ndev == 0) {
  1272. printk(KERN_INFO "nsp_cs: no SCSI devices foundn");
  1273. }
  1274. /* Finally, report what we've done */
  1275. printk(KERN_INFO "nsp_cs: index 0x%02x: Vcc %d.%d",
  1276.        link->conf.ConfigIndex,
  1277.        link->conf.Vcc/10, link->conf.Vcc%10);
  1278. if (link->conf.Vpp1) {
  1279. printk(", Vpp %d.%d", link->conf.Vpp1/10, link->conf.Vpp1%10);
  1280. }
  1281. if (link->conf.Attributes & CONF_ENABLE_IRQ) {
  1282. printk(", irq %d", link->irq.AssignedIRQ);
  1283. }
  1284. if (link->io.NumPorts1) {
  1285. printk(", io 0x%04x-0x%04x", link->io.BasePort1,
  1286.        link->io.BasePort1+link->io.NumPorts1-1);
  1287. }
  1288. printk("n");
  1289. link->state &= ~DEV_CONFIG_PENDING;
  1290. return;
  1291. cs_failed:
  1292. cs_error(link->handle, last_fn, last_ret);
  1293. nsp_cs_release((u_long)link);
  1294. return;
  1295. } /* nsp_cs_config */
  1296. #undef CS_CHECK
  1297. #undef CFG_CHECK
  1298. /*======================================================================
  1299.     After a card is removed, nsp_cs_release() will unregister the net
  1300.     device, and release the PCMCIA configuration.  If the device is
  1301.     still open, this will be postponed until it is closed.
  1302. ======================================================================*/
  1303. static void nsp_cs_release(u_long arg)
  1304. {
  1305. dev_link_t *link = (dev_link_t *)arg;
  1306. DEBUG(0, __FUNCTION__ "(0x%p)n", link);
  1307. /*
  1308.  * If the device is currently in use, we won't release until it
  1309.  * is actually closed.
  1310.  */
  1311. if (link->open) {
  1312. DEBUG(1, "nsp_cs: release postponed, '%s' still openn",
  1313.       link->dev->dev_name);
  1314. link->state |= DEV_STALE_CONFIG;
  1315. return;
  1316. }
  1317. /* Unlink the device chain */
  1318. scsi_unregister_module(MODULE_SCSI_HA, &driver_template);
  1319. link->dev = NULL;
  1320. if (link->win) {
  1321. CardServices(ReleaseWindow, link->win);
  1322. }
  1323. CardServices(ReleaseConfiguration,  link->handle);
  1324. if (link->io.NumPorts1) {
  1325. CardServices(ReleaseIO,     link->handle, &link->io);
  1326. }
  1327. if (link->irq.AssignedIRQ) {
  1328. CardServices(ReleaseIRQ,    link->handle, &link->irq);
  1329. }
  1330. link->state &= ~DEV_CONFIG;
  1331. if (link->state & DEV_STALE_LINK) {
  1332. nsp_cs_detach(link);
  1333. }
  1334. } /* nsp_cs_release */
  1335. /*======================================================================
  1336.     The card status event handler.  Mostly, this schedules other
  1337.     stuff to run after an event is received.  A CARD_REMOVAL event
  1338.     also sets some flags to discourage the net drivers from trying
  1339.     to talk to the card any more.
  1340.     When a CARD_REMOVAL event is received, we immediately set a flag
  1341.     to block future accesses to this device.  All the functions that
  1342.     actually access the device should check this flag to make sure
  1343.     the card is still present.
  1344.     
  1345. ======================================================================*/
  1346. static int nsp_cs_event(event_t     event,
  1347.      int     priority,
  1348.      event_callback_args_t *args)
  1349. {
  1350. dev_link_t  *link = args->client_data;
  1351. scsi_info_t *info = link->priv;
  1352. DEBUG(1, __FUNCTION__ "(0x%06x)n", event);
  1353. switch (event) {
  1354. case CS_EVENT_CARD_REMOVAL:
  1355. DEBUG(0, " event: removen");
  1356. link->state &= ~DEV_PRESENT;
  1357. if (link->state & DEV_CONFIG) {
  1358. ((scsi_info_t *)link->priv)->stop = 1;
  1359. mod_timer(&link->release, jiffies + HZ/20);
  1360. }
  1361. break;
  1362. case CS_EVENT_CARD_INSERTION:
  1363. DEBUG(0, " event: insertn");
  1364. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  1365. info->bus    =  args->bus;
  1366. nsp_cs_config(link);
  1367. break;
  1368. case CS_EVENT_PM_SUSPEND:
  1369. link->state |= DEV_SUSPEND;
  1370. /* Fall through... */
  1371. case CS_EVENT_RESET_PHYSICAL:
  1372. /* Mark the device as stopped, to block IO until later */
  1373. info->stop = 1;
  1374. if (link->state & DEV_CONFIG) {
  1375. CardServices(ReleaseConfiguration, link->handle);
  1376. }
  1377. break;
  1378. case CS_EVENT_PM_RESUME:
  1379. link->state &= ~DEV_SUSPEND;
  1380. /* Fall through... */
  1381. case CS_EVENT_CARD_RESET:
  1382. DEBUG(0, " event: resetn");
  1383. if (link->state & DEV_CONFIG) {
  1384. Scsi_Cmnd tmp;
  1385. CardServices(RequestConfiguration, link->handle, &link->conf);
  1386. tmp.host = info->host;
  1387. nsp_eh_host_reset(&tmp);
  1388. }
  1389. info->stop = 0;
  1390. break;
  1391. default:
  1392. DEBUG(0, " event: unknownn");
  1393. break;
  1394. }
  1395. DEBUG(0, __FUNCTION__ " endn");
  1396. return 0;
  1397. } /* nsp_cs_event */
  1398. /*======================================================================*
  1399.  * module entry point
  1400.  *====================================================================*/
  1401. static int __init nsp_cs_init(void)
  1402. {
  1403. servinfo_t serv;
  1404. DEBUG(0, __FUNCTION__ "() inn");
  1405. DEBUG(0, "%sn", version);
  1406. CardServices(GetCardServicesInfo, &serv);
  1407. if (serv.Revision != CS_RELEASE_CODE) {
  1408. printk(KERN_DEBUG "nsp_cs: Card Services release "
  1409.        "does not match!n");
  1410. return -1;
  1411. }
  1412. register_pcmcia_driver(&dev_info, &nsp_cs_attach, &nsp_cs_detach);
  1413. DEBUG(0, __FUNCTION__ "() outn");
  1414. return 0;
  1415. }
  1416. static void __exit nsp_cs_cleanup(void)
  1417. {
  1418. DEBUG(0, __FUNCTION__ "() unloadingn");
  1419. unregister_pcmcia_driver(&dev_info);
  1420. while (dev_list != NULL) {
  1421. if (dev_list->state & DEV_CONFIG) {
  1422. nsp_cs_release((u_long)dev_list);
  1423. }
  1424. nsp_cs_detach(dev_list);
  1425. }
  1426. }
  1427. module_init(nsp_cs_init);
  1428. module_exit(nsp_cs_cleanup);
  1429. /*
  1430.  *
  1431.  *
  1432.  */
  1433. /* end */