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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  scsi_obsolete.c Copyright (C) 1992 Drew Eckhardt
  3.  *         Copyright (C) 1993, 1994, 1995 Eric Youngdale
  4.  *
  5.  *  generic mid-level SCSI driver
  6.  *      Initial versions: Drew Eckhardt
  7.  *      Subsequent revisions: Eric Youngdale
  8.  *
  9.  *  <drew@colorado.edu>
  10.  *
  11.  *  Bug correction thanks go to :
  12.  *      Rik Faith <faith@cs.unc.edu>
  13.  *      Tommy Thorn <tthorn>
  14.  *      Thomas Wuensche <tw@fgb1.fgb.mw.tu-muenchen.de>
  15.  *
  16.  *  Modified by Eric Youngdale eric@andante.org to
  17.  *  add scatter-gather, multiple outstanding request, and other
  18.  *  enhancements.
  19.  *
  20.  *  Native multichannel, wide scsi, /proc/scsi and hot plugging
  21.  *  support added by Michael Neuffer <mike@i-connect.net>
  22.  *
  23.  *  Major improvements to the timeout, abort, and reset processing,
  24.  *  as well as performance modifications for large queue depths by
  25.  *  Leonard N. Zubkoff <lnz@dandelion.com>
  26.  *
  27.  *  Improved compatibility with 2.0 behaviour by Manfred Spraul
  28.  *  <masp0008@stud.uni-sb.de>
  29.  */
  30. /*
  31.  *#########################################################################
  32.  *#########################################################################
  33.  *#########################################################################
  34.  *#########################################################################
  35.  *              NOTE - NOTE - NOTE - NOTE - NOTE - NOTE - NOTE
  36.  *
  37.  *#########################################################################
  38.  *#########################################################################
  39.  *#########################################################################
  40.  *#########################################################################
  41.  *
  42.  * This file contains the 'old' scsi error handling.  It is only present
  43.  * while the new error handling code is being debugged, and while the low
  44.  * level drivers are being converted to use the new code.  Once the last
  45.  * driver uses the new code this *ENTIRE* file will be nuked.
  46.  */
  47. #define __NO_VERSION__
  48. #include <linux/module.h>
  49. #include <linux/sched.h>
  50. #include <linux/timer.h>
  51. #include <linux/string.h>
  52. #include <linux/slab.h>
  53. #include <linux/ioport.h>
  54. #include <linux/kernel.h>
  55. #include <linux/stat.h>
  56. #include <linux/blk.h>
  57. #include <linux/interrupt.h>
  58. #include <linux/delay.h>
  59. #include <asm/system.h>
  60. #include <asm/irq.h>
  61. #include <asm/dma.h>
  62. #include "scsi.h"
  63. #include "hosts.h"
  64. #include "constants.h"
  65. #undef USE_STATIC_SCSI_MEMORY
  66. /*
  67.    static const char RCSid[] = "$Header: /mnt/ide/home/eric/CVSROOT/linux/drivers/scsi/scsi_obsolete.c,v 1.1 1997/05/18 23:27:21 eric Exp $";
  68.  */
  69. #define INTERNAL_ERROR (panic ("Internal error in file %s, line %d.n", __FILE__, __LINE__))
  70. static int scsi_abort(Scsi_Cmnd *, int code);
  71. static int scsi_reset(Scsi_Cmnd *, unsigned int);
  72. extern void scsi_old_done(Scsi_Cmnd * SCpnt);
  73. int update_timeout(Scsi_Cmnd *, int);
  74. extern void scsi_old_times_out(Scsi_Cmnd * SCpnt);
  75. extern int scsi_dispatch_cmd(Scsi_Cmnd * SCpnt);
  76. #define SCSI_BLOCK(HOST) (HOST->can_queue && HOST->host_busy >= HOST->can_queue)
  77. static unsigned char generic_sense[6] =
  78. {REQUEST_SENSE, 0, 0, 0, 255, 0};
  79. /*
  80.  *  This is the number  of clock ticks we should wait before we time out
  81.  *  and abort the command.  This is for  where the scsi.c module generates
  82.  *  the command, not where it originates from a higher level, in which
  83.  *  case the timeout is specified there.
  84.  *
  85.  *  ABORT_TIMEOUT and RESET_TIMEOUT are the timeouts for RESET and ABORT
  86.  *  respectively.
  87.  */
  88. #ifdef DEBUG_TIMEOUT
  89. static void scsi_dump_status(void);
  90. #endif
  91. #ifdef DEBUG
  92. #define SCSI_TIMEOUT (5*HZ)
  93. #else
  94. #define SCSI_TIMEOUT (2*HZ)
  95. #endif
  96. #ifdef DEBUG
  97. #define SENSE_TIMEOUT SCSI_TIMEOUT
  98. #define ABORT_TIMEOUT SCSI_TIMEOUT
  99. #define RESET_TIMEOUT SCSI_TIMEOUT
  100. #else
  101. #define SENSE_TIMEOUT (5*HZ/10)
  102. #define RESET_TIMEOUT (5*HZ/10)
  103. #define ABORT_TIMEOUT (5*HZ/10)
  104. #endif
  105. /* Do not call reset on error if we just did a reset within 15 sec. */
  106. #define MIN_RESET_PERIOD (15*HZ)
  107. /*
  108.  *  Flag bits for the internal_timeout array
  109.  */
  110. #define IN_ABORT  1
  111. #define IN_RESET  2
  112. #define IN_RESET2 4
  113. #define IN_RESET3 8
  114. /*
  115.  * This is our time out function, called when the timer expires for a
  116.  * given host adapter.  It will attempt to abort the currently executing
  117.  * command, that failing perform a kernel panic.
  118.  */
  119. void scsi_old_times_out(Scsi_Cmnd * SCpnt)
  120. {
  121. unsigned long flags;
  122. spin_lock_irqsave(&io_request_lock, flags);
  123. /* Set the serial_number_at_timeout to the current serial_number */
  124. SCpnt->serial_number_at_timeout = SCpnt->serial_number;
  125. switch (SCpnt->internal_timeout & (IN_ABORT | IN_RESET | IN_RESET2 | IN_RESET3)) {
  126. case NORMAL_TIMEOUT:
  127. {
  128. #ifdef DEBUG_TIMEOUT
  129. scsi_dump_status();
  130. #endif
  131. }
  132. if (!scsi_abort(SCpnt, DID_TIME_OUT))
  133. break;
  134. case IN_ABORT:
  135. printk("SCSI host %d abort (pid %ld) timed out - resettingn",
  136.        SCpnt->host->host_no, SCpnt->pid);
  137. if (!scsi_reset(SCpnt, SCSI_RESET_ASYNCHRONOUS))
  138. break;
  139. case IN_RESET:
  140. case (IN_ABORT | IN_RESET):
  141. /* This might be controversial, but if there is a bus hang,
  142.  * you might conceivably want the machine up and running
  143.  * esp if you have an ide disk.
  144.  */
  145. printk("SCSI host %d channel %d reset (pid %ld) timed out - "
  146.        "trying hardern",
  147.        SCpnt->host->host_no, SCpnt->channel, SCpnt->pid);
  148. SCpnt->internal_timeout &= ~IN_RESET;
  149. SCpnt->internal_timeout |= IN_RESET2;
  150. scsi_reset(SCpnt,
  151.  SCSI_RESET_ASYNCHRONOUS | SCSI_RESET_SUGGEST_BUS_RESET);
  152. break;
  153. case IN_RESET2:
  154. case (IN_ABORT | IN_RESET2):
  155. /* Obviously the bus reset didn't work.
  156.  * Let's try even harder and call for an HBA reset.
  157.  * Maybe the HBA itself crashed and this will shake it loose.
  158.  */
  159. printk("SCSI host %d reset (pid %ld) timed out - trying to shake it loosen",
  160.        SCpnt->host->host_no, SCpnt->pid);
  161. SCpnt->internal_timeout &= ~(IN_RESET | IN_RESET2);
  162. SCpnt->internal_timeout |= IN_RESET3;
  163. scsi_reset(SCpnt,
  164. SCSI_RESET_ASYNCHRONOUS | SCSI_RESET_SUGGEST_HOST_RESET);
  165. break;
  166. default:
  167. printk("SCSI host %d reset (pid %ld) timed out again -n",
  168.        SCpnt->host->host_no, SCpnt->pid);
  169. printk("probably an unrecoverable SCSI bus or device hang.n");
  170. break;
  171. }
  172. spin_unlock_irqrestore(&io_request_lock, flags);
  173. }
  174. /*
  175.  *  From what I can find in scsi_obsolete.c, this function is only called
  176.  *  by scsi_old_done and scsi_reset.  Both of these functions run with the
  177.  *  io_request_lock already held, so we need do nothing here about grabbing
  178.  *  any locks.
  179.  */
  180. static void scsi_request_sense(Scsi_Cmnd * SCpnt)
  181. {
  182. SCpnt->flags |= WAS_SENSE | ASKED_FOR_SENSE;
  183. update_timeout(SCpnt, SENSE_TIMEOUT);
  184. memcpy((void *) SCpnt->cmnd, (void *) generic_sense,
  185.        sizeof(generic_sense));
  186. memset((void *) SCpnt->sense_buffer, 0,
  187.        sizeof(SCpnt->sense_buffer));
  188. if (SCpnt->device->scsi_level <= SCSI_2)
  189. SCpnt->cmnd[1] = SCpnt->lun << 5;
  190. SCpnt->cmnd[4] = sizeof(SCpnt->sense_buffer);
  191. SCpnt->request_buffer = &SCpnt->sense_buffer;
  192. SCpnt->request_bufflen = sizeof(SCpnt->sense_buffer);
  193. SCpnt->use_sg = 0;
  194. SCpnt->cmd_len = COMMAND_SIZE(SCpnt->cmnd[0]);
  195. SCpnt->result = 0;
  196. SCpnt->sc_data_direction = SCSI_DATA_READ;
  197.         /*
  198.          * Ugly, ugly.  The newer interfaces all assume that the lock
  199.          * isn't held.  Mustn't disappoint, or we deadlock the system.
  200.          */
  201.         spin_unlock_irq(&io_request_lock);
  202. scsi_dispatch_cmd(SCpnt);
  203.         spin_lock_irq(&io_request_lock);
  204. }
  205. static int check_sense(Scsi_Cmnd * SCpnt)
  206. {
  207. /* If there is no sense information, request it.  If we have already
  208.  * requested it, there is no point in asking again - the firmware must
  209.  * be confused.
  210.  */
  211. if (((SCpnt->sense_buffer[0] & 0x70) >> 4) != 7) {
  212. if (!(SCpnt->flags & ASKED_FOR_SENSE))
  213. return SUGGEST_SENSE;
  214. else
  215. return SUGGEST_RETRY;
  216. }
  217. SCpnt->flags &= ~ASKED_FOR_SENSE;
  218. #ifdef DEBUG_INIT
  219. printk("scsi%d, channel%d : ", SCpnt->host->host_no, SCpnt->channel);
  220. print_sense("", SCpnt);
  221. printk("n");
  222. #endif
  223. if (SCpnt->sense_buffer[2] & 0xe0)
  224. return SUGGEST_ABORT;
  225. switch (SCpnt->sense_buffer[2] & 0xf) {
  226. case NO_SENSE:
  227. return 0;
  228. case RECOVERED_ERROR:
  229. return SUGGEST_IS_OK;
  230. case ABORTED_COMMAND:
  231. return SUGGEST_RETRY;
  232. case NOT_READY:
  233. case UNIT_ATTENTION:
  234. /*
  235.  * If we are expecting a CC/UA because of a bus reset that we
  236.  * performed, treat this just as a retry.  Otherwise this is
  237.  * information that we should pass up to the upper-level driver
  238.  * so that we can deal with it there.
  239.  */
  240. if (SCpnt->device->expecting_cc_ua) {
  241. SCpnt->device->expecting_cc_ua = 0;
  242. return SUGGEST_RETRY;
  243. }
  244. return SUGGEST_ABORT;
  245. /* these three are not supported */
  246. case COPY_ABORTED:
  247. case VOLUME_OVERFLOW:
  248. case MISCOMPARE:
  249. case MEDIUM_ERROR:
  250. return SUGGEST_REMAP;
  251. case BLANK_CHECK:
  252. case DATA_PROTECT:
  253. case HARDWARE_ERROR:
  254. case ILLEGAL_REQUEST:
  255. default:
  256. return SUGGEST_ABORT;
  257. }
  258. }
  259. /* This function is the mid-level interrupt routine, which decides how
  260.  *  to handle error conditions.  Each invocation of this function must
  261.  *  do one and *only* one of the following:
  262.  *
  263.  *  (1) Call last_cmnd[host].done.  This is done for fatal errors and
  264.  *      normal completion, and indicates that the handling for this
  265.  *      request is complete.
  266.  *  (2) Call internal_cmnd to requeue the command.  This will result in
  267.  *      scsi_done being called again when the retry is complete.
  268.  *  (3) Call scsi_request_sense.  This asks the host adapter/drive for
  269.  *      more information about the error condition.  When the information
  270.  *      is available, scsi_done will be called again.
  271.  *  (4) Call reset().  This is sort of a last resort, and the idea is that
  272.  *      this may kick things loose and get the drive working again.  reset()
  273.  *      automatically calls scsi_request_sense, and thus scsi_done will be
  274.  *      called again once the reset is complete.
  275.  *
  276.  *      If none of the above actions are taken, the drive in question
  277.  *      will hang. If more than one of the above actions are taken by
  278.  *      scsi_done, then unpredictable behavior will result.
  279.  */
  280. void scsi_old_done(Scsi_Cmnd * SCpnt)
  281. {
  282. int status = 0;
  283. int exit = 0;
  284. int checked;
  285. int oldto;
  286. struct Scsi_Host *host = SCpnt->host;
  287.         Scsi_Device * device = SCpnt->device;
  288. int result = SCpnt->result;
  289. SCpnt->serial_number = 0;
  290. SCpnt->serial_number_at_timeout = 0;
  291. oldto = update_timeout(SCpnt, 0);
  292. #ifdef DEBUG_TIMEOUT
  293. if (result)
  294. printk("Non-zero result in scsi_done %x %d:%dn",
  295.        result, SCpnt->target, SCpnt->lun);
  296. #endif
  297. /* If we requested an abort, (and we got it) then fix up the return
  298.  *  status to say why
  299.  */
  300. if (host_byte(result) == DID_ABORT && SCpnt->abort_reason)
  301. SCpnt->result = result = (result & 0xff00ffff) |
  302.     (SCpnt->abort_reason << 16);
  303. #define CMD_FINISHED 0
  304. #define MAYREDO  1
  305. #define REDO     3
  306. #define PENDING  4
  307. #ifdef DEBUG
  308. printk("In scsi_done(host = %d, result = %06x)n", host->host_no, result);
  309. #endif
  310. if (SCpnt->flags & SYNC_RESET) {
  311. /*
  312.    * The behaviou of scsi_reset(SYNC) was changed in 2.1.? .
  313.    * The scsi mid-layer does a REDO after every sync reset, the driver
  314.    * must not do that any more. In order to prevent old drivers from
  315.    * crashing, all scsi_done() calls during sync resets are ignored.
  316.  */
  317. printk("scsi%d: device driver called scsi_done() "
  318.        "for a synchronous reset.n", SCpnt->host->host_no);
  319. return;
  320. }
  321. if (SCpnt->flags & WAS_SENSE) {
  322. SCpnt->use_sg = SCpnt->old_use_sg;
  323. SCpnt->cmd_len = SCpnt->old_cmd_len;
  324. SCpnt->sc_data_direction = SCpnt->sc_old_data_direction;
  325. SCpnt->underflow = SCpnt->old_underflow;
  326. }
  327. switch (host_byte(result)) {
  328. case DID_OK:
  329. if (status_byte(result) && (SCpnt->flags & WAS_SENSE))
  330. /* Failed to obtain sense information */
  331. {
  332. SCpnt->flags &= ~WAS_SENSE;
  333. #if 0 /* This cannot possibly be correct. */
  334. SCpnt->internal_timeout &= ~SENSE_TIMEOUT;
  335. #endif
  336. if (!(SCpnt->flags & WAS_RESET)) {
  337. printk("scsi%d : channel %d target %d lun %d request sense"
  338.        " failed, performing reset.n",
  339.        SCpnt->host->host_no, SCpnt->channel, SCpnt->target,
  340.        SCpnt->lun);
  341. scsi_reset(SCpnt, SCSI_RESET_SYNCHRONOUS);
  342. status = REDO;
  343. break;
  344. } else {
  345. exit = (DRIVER_HARD | SUGGEST_ABORT);
  346. status = CMD_FINISHED;
  347. }
  348. } else
  349. switch (msg_byte(result)) {
  350. case COMMAND_COMPLETE:
  351. switch (status_byte(result)) {
  352. case GOOD:
  353. if (SCpnt->flags & WAS_SENSE) {
  354. #ifdef DEBUG
  355. printk("In scsi_done, GOOD status, COMMAND COMPLETE, "
  356.        "parsing sense information.n");
  357. #endif
  358. SCpnt->flags &= ~WAS_SENSE;
  359. #if 0 /* This cannot possibly be correct. */
  360. SCpnt->internal_timeout &= ~SENSE_TIMEOUT;
  361. #endif
  362. switch (checked = check_sense(SCpnt)) {
  363. case SUGGEST_SENSE:
  364. case 0:
  365. #ifdef DEBUG
  366. printk("NO SENSE.  status = REDOn");
  367. #endif
  368. update_timeout(SCpnt, oldto);
  369. status = REDO;
  370. break;
  371. case SUGGEST_IS_OK:
  372. break;
  373. case SUGGEST_REMAP:
  374. #ifdef DEBUG
  375. printk("SENSE SUGGEST REMAP - status = CMD_FINISHEDn");
  376. #endif
  377. status = CMD_FINISHED;
  378. exit = DRIVER_SENSE | SUGGEST_ABORT;
  379. break;
  380. case SUGGEST_RETRY:
  381. #ifdef DEBUG
  382. printk("SENSE SUGGEST RETRY - status = MAYREDOn");
  383. #endif
  384. status = MAYREDO;
  385. exit = DRIVER_SENSE | SUGGEST_RETRY;
  386. break;
  387. case SUGGEST_ABORT:
  388. #ifdef DEBUG
  389. printk("SENSE SUGGEST ABORT - status = CMD_FINISHED");
  390. #endif
  391. status = CMD_FINISHED;
  392. exit = DRIVER_SENSE | SUGGEST_ABORT;
  393. break;
  394. default:
  395. printk("Internal error %s %d n", __FILE__,
  396.        __LINE__);
  397. }
  398. }
  399. /* end WAS_SENSE */
  400. else {
  401. #ifdef DEBUG
  402. printk("COMMAND COMPLETE message returned, "
  403.        "status = CMD_FINISHED. n");
  404. #endif
  405. exit = DRIVER_OK;
  406. status = CMD_FINISHED;
  407. }
  408. break;
  409. case CHECK_CONDITION:
  410. case COMMAND_TERMINATED:
  411. switch (check_sense(SCpnt)) {
  412. case 0:
  413. update_timeout(SCpnt, oldto);
  414. status = REDO;
  415. break;
  416. case SUGGEST_REMAP:
  417. status = CMD_FINISHED;
  418. exit = DRIVER_SENSE | SUGGEST_ABORT;
  419. break;
  420. case SUGGEST_RETRY:
  421. status = MAYREDO;
  422. exit = DRIVER_SENSE | SUGGEST_RETRY;
  423. break;
  424. case SUGGEST_ABORT:
  425. status = CMD_FINISHED;
  426. exit = DRIVER_SENSE | SUGGEST_ABORT;
  427. break;
  428. case SUGGEST_SENSE:
  429. scsi_request_sense(SCpnt);
  430. status = PENDING;
  431. break;
  432. }
  433. break;
  434. case CONDITION_GOOD:
  435. case INTERMEDIATE_GOOD:
  436. case INTERMEDIATE_C_GOOD:
  437. break;
  438. case BUSY:
  439. case QUEUE_FULL:
  440. update_timeout(SCpnt, oldto);
  441. status = REDO;
  442. break;
  443. case RESERVATION_CONFLICT:
  444. printk("scsi%d, channel %d : RESERVATION CONFLICT performing"
  445.        " reset.n", SCpnt->host->host_no, SCpnt->channel);
  446. scsi_reset(SCpnt, SCSI_RESET_SYNCHRONOUS);
  447. status = REDO;
  448. break;
  449. default:
  450. printk("Internal error %s %d n"
  451.  "status byte = %d n", __FILE__,
  452.   __LINE__, status_byte(result));
  453. }
  454. break;
  455. default:
  456. panic("scsi: unsupported message byte %d receivedn",
  457.       msg_byte(result));
  458. }
  459. break;
  460. case DID_TIME_OUT:
  461. #ifdef DEBUG
  462. printk("Host returned DID_TIME_OUT - ");
  463. #endif
  464. if (SCpnt->flags & WAS_TIMEDOUT) {
  465. #ifdef DEBUG
  466. printk("Abortingn");
  467. #endif
  468. /*
  469.    Allow TEST_UNIT_READY and INQUIRY commands to timeout early
  470.    without causing resets.  All other commands should be retried.
  471.  */
  472. if (SCpnt->cmnd[0] != TEST_UNIT_READY &&
  473.     SCpnt->cmnd[0] != INQUIRY)
  474. status = MAYREDO;
  475. exit = (DRIVER_TIMEOUT | SUGGEST_ABORT);
  476. } else {
  477. #ifdef DEBUG
  478. printk("Retrying.n");
  479. #endif
  480. SCpnt->flags |= WAS_TIMEDOUT;
  481. SCpnt->internal_timeout &= ~IN_ABORT;
  482. status = REDO;
  483. }
  484. break;
  485. case DID_BUS_BUSY:
  486. case DID_PARITY:
  487. status = REDO;
  488. break;
  489. case DID_NO_CONNECT:
  490. #ifdef DEBUG
  491. printk("Couldn't connect.n");
  492. #endif
  493. exit = (DRIVER_HARD | SUGGEST_ABORT);
  494. break;
  495. case DID_ERROR:
  496. status = MAYREDO;
  497. exit = (DRIVER_HARD | SUGGEST_ABORT);
  498. break;
  499. case DID_BAD_TARGET:
  500. case DID_ABORT:
  501. exit = (DRIVER_INVALID | SUGGEST_ABORT);
  502. break;
  503. case DID_RESET:
  504. if (SCpnt->flags & IS_RESETTING) {
  505. SCpnt->flags &= ~IS_RESETTING;
  506. status = REDO;
  507. break;
  508. }
  509. if (msg_byte(result) == GOOD &&
  510.     status_byte(result) == CHECK_CONDITION) {
  511. switch (check_sense(SCpnt)) {
  512. case 0:
  513. update_timeout(SCpnt, oldto);
  514. status = REDO;
  515. break;
  516. case SUGGEST_REMAP:
  517. case SUGGEST_RETRY:
  518. status = MAYREDO;
  519. exit = DRIVER_SENSE | SUGGEST_RETRY;
  520. break;
  521. case SUGGEST_ABORT:
  522. status = CMD_FINISHED;
  523. exit = DRIVER_SENSE | SUGGEST_ABORT;
  524. break;
  525. case SUGGEST_SENSE:
  526. scsi_request_sense(SCpnt);
  527. status = PENDING;
  528. break;
  529. }
  530. } else {
  531. status = REDO;
  532. exit = SUGGEST_RETRY;
  533. }
  534. break;
  535. default:
  536. exit = (DRIVER_ERROR | SUGGEST_DIE);
  537. }
  538. switch (status) {
  539. case CMD_FINISHED:
  540. case PENDING:
  541. break;
  542. case MAYREDO:
  543. #ifdef DEBUG
  544. printk("In MAYREDO, allowing %d retries, have %dn",
  545.        SCpnt->allowed, SCpnt->retries);
  546. #endif
  547. if ((++SCpnt->retries) < SCpnt->allowed) {
  548. if ((SCpnt->retries >= (SCpnt->allowed >> 1))
  549.     && !(SCpnt->host->resetting && time_before(jiffies, SCpnt->host->last_reset + MIN_RESET_PERIOD))
  550.     && !(SCpnt->flags & WAS_RESET)) {
  551. printk("scsi%d channel %d : resetting for second half of retries.n",
  552.    SCpnt->host->host_no, SCpnt->channel);
  553. scsi_reset(SCpnt, SCSI_RESET_SYNCHRONOUS);
  554. /* fall through to REDO */
  555. }
  556. } else {
  557. status = CMD_FINISHED;
  558. break;
  559. }
  560. /* fall through to REDO */
  561. case REDO:
  562. if (SCpnt->flags & WAS_SENSE)
  563. scsi_request_sense(SCpnt);
  564. else {
  565. memcpy((void *) SCpnt->cmnd,
  566.        (void *) SCpnt->data_cmnd,
  567.        sizeof(SCpnt->data_cmnd));
  568. memset((void *) SCpnt->sense_buffer, 0,
  569.        sizeof(SCpnt->sense_buffer));
  570. SCpnt->request_buffer = SCpnt->buffer;
  571. SCpnt->request_bufflen = SCpnt->bufflen;
  572. SCpnt->use_sg = SCpnt->old_use_sg;
  573. SCpnt->cmd_len = SCpnt->old_cmd_len;
  574. SCpnt->sc_data_direction = SCpnt->sc_old_data_direction;
  575. SCpnt->underflow = SCpnt->old_underflow;
  576. SCpnt->result = 0;
  577.                         /*
  578.                          * Ugly, ugly.  The newer interfaces all
  579.                          * assume that the lock isn't held.  Mustn't
  580.                          * disappoint, or we deadlock the system.  
  581.                          */
  582.                         spin_unlock_irq(&io_request_lock);
  583. scsi_dispatch_cmd(SCpnt);
  584.                         spin_lock_irq(&io_request_lock);
  585. }
  586. break;
  587. default:
  588. INTERNAL_ERROR;
  589. }
  590. if (status == CMD_FINISHED) {
  591. Scsi_Request *SRpnt;
  592. #ifdef DEBUG
  593. printk("Calling done function - at address %pn", SCpnt->done);
  594. #endif
  595. host->host_busy--; /* Indicate that we are free */
  596.                 device->device_busy--; /* Decrement device usage counter. */
  597. SCpnt->result = result | ((exit & 0xff) << 24);
  598. SCpnt->use_sg = SCpnt->old_use_sg;
  599. SCpnt->cmd_len = SCpnt->old_cmd_len;
  600. SCpnt->sc_data_direction = SCpnt->sc_old_data_direction;
  601. SCpnt->underflow = SCpnt->old_underflow;
  602.                 /*
  603.                  * The upper layers assume the lock isn't held.  We mustn't
  604.                  * disappoint them.  When the new error handling code is in
  605.                  * use, the upper code is run from a bottom half handler, so
  606.                  * it isn't an issue.
  607.                  */
  608.                 spin_unlock_irq(&io_request_lock);
  609. SRpnt = SCpnt->sc_request;
  610. if( SRpnt != NULL ) {
  611. SRpnt->sr_result = SRpnt->sr_command->result;
  612. if( SRpnt->sr_result != 0 ) {
  613. memcpy(SRpnt->sr_sense_buffer,
  614.        SRpnt->sr_command->sense_buffer,
  615.        sizeof(SRpnt->sr_sense_buffer));
  616. }
  617. }
  618. SCpnt->done(SCpnt);
  619.                 spin_lock_irq(&io_request_lock);
  620. }
  621. #undef CMD_FINISHED
  622. #undef REDO
  623. #undef MAYREDO
  624. #undef PENDING
  625. }
  626. /*
  627.  * The scsi_abort function interfaces with the abort() function of the host
  628.  * we are aborting, and causes the current command to not complete.  The
  629.  * caller should deal with any error messages or status returned on the
  630.  * next call.
  631.  *
  632.  * This will not be called reentrantly for a given host.
  633.  */
  634. /*
  635.  * Since we're nice guys and specified that abort() and reset()
  636.  * can be non-reentrant.  The internal_timeout flags are used for
  637.  * this.
  638.  */
  639. static int scsi_abort(Scsi_Cmnd * SCpnt, int why)
  640. {
  641. int oldto;
  642. struct Scsi_Host *host = SCpnt->host;
  643. while (1) {
  644. /*
  645.  * Protect against races here.  If the command is done, or we are
  646.  * on a different command forget it.
  647.  */
  648. if (SCpnt->serial_number != SCpnt->serial_number_at_timeout) {
  649. return 0;
  650. }
  651. if (SCpnt->internal_timeout & IN_ABORT) {
  652. spin_unlock_irq(&io_request_lock);
  653. while (SCpnt->internal_timeout & IN_ABORT)
  654. barrier();
  655. spin_lock_irq(&io_request_lock);
  656. } else {
  657. SCpnt->internal_timeout |= IN_ABORT;
  658. oldto = update_timeout(SCpnt, ABORT_TIMEOUT);
  659. if ((SCpnt->flags & IS_RESETTING) && SCpnt->device->soft_reset) {
  660. /* OK, this command must have died when we did the
  661.  *  reset.  The device itself must have lied.
  662.  */
  663. printk("Stale command on %d %d:%d appears to have died when"
  664.        " the bus was resetn",
  665.        SCpnt->channel, SCpnt->target, SCpnt->lun);
  666. }
  667. if (!host->host_busy) {
  668. SCpnt->internal_timeout &= ~IN_ABORT;
  669. update_timeout(SCpnt, oldto);
  670. return 0;
  671. }
  672. printk("scsi : aborting command due to timeout : pid %lu, scsi%d,"
  673.        " channel %d, id %d, lun %d ",
  674.        SCpnt->pid, SCpnt->host->host_no, (int) SCpnt->channel,
  675.        (int) SCpnt->target, (int) SCpnt->lun);
  676. print_command(SCpnt->cmnd);
  677. if (SCpnt->serial_number != SCpnt->serial_number_at_timeout)
  678. return 0;
  679. SCpnt->abort_reason = why;
  680. switch (host->hostt->abort(SCpnt)) {
  681. /* We do not know how to abort.  Try waiting another
  682.  * time increment and see if this helps. Set the
  683.  * WAS_TIMEDOUT flag set so we do not try this twice
  684.  */
  685. case SCSI_ABORT_BUSY: /* Tough call - returning 1 from
  686.  * this is too severe
  687.  */
  688. case SCSI_ABORT_SNOOZE:
  689. if (why == DID_TIME_OUT) {
  690. SCpnt->internal_timeout &= ~IN_ABORT;
  691. if (SCpnt->flags & WAS_TIMEDOUT) {
  692. return 1; /* Indicate we cannot handle this.
  693.  * We drop down into the reset handler
  694.  * and try again
  695.  */
  696. } else {
  697. SCpnt->flags |= WAS_TIMEDOUT;
  698. oldto = SCpnt->timeout_per_command;
  699. update_timeout(SCpnt, oldto);
  700. }
  701. }
  702. return 0;
  703. case SCSI_ABORT_PENDING:
  704. if (why != DID_TIME_OUT) {
  705. update_timeout(SCpnt, oldto);
  706. }
  707. return 0;
  708. case SCSI_ABORT_SUCCESS:
  709. /* We should have already aborted this one.  No
  710.  * need to adjust timeout
  711.  */
  712. SCpnt->internal_timeout &= ~IN_ABORT;
  713. return 0;
  714. case SCSI_ABORT_NOT_RUNNING:
  715. SCpnt->internal_timeout &= ~IN_ABORT;
  716. update_timeout(SCpnt, 0);
  717. return 0;
  718. case SCSI_ABORT_ERROR:
  719. default:
  720. SCpnt->internal_timeout &= ~IN_ABORT;
  721. return 1;
  722. }
  723. }
  724. }
  725. }
  726. /* Mark a single SCSI Device as having been reset. */
  727. static inline void scsi_mark_device_reset(Scsi_Device * Device)
  728. {
  729. Device->was_reset = 1;
  730. Device->expecting_cc_ua = 1;
  731. }
  732. /* Mark all SCSI Devices on a specific Host as having been reset. */
  733. void scsi_mark_host_reset(struct Scsi_Host *Host)
  734. {
  735. Scsi_Cmnd *SCpnt;
  736. Scsi_Device *SDpnt;
  737. for (SDpnt = Host->host_queue; SDpnt; SDpnt = SDpnt->next) {
  738. for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next)
  739. scsi_mark_device_reset(SCpnt->device);
  740. }
  741. }
  742. /* Mark all SCSI Devices on a specific Host Bus as having been reset. */
  743. static void scsi_mark_bus_reset(struct Scsi_Host *Host, int channel)
  744. {
  745. Scsi_Cmnd *SCpnt;
  746. Scsi_Device *SDpnt;
  747. for (SDpnt = Host->host_queue; SDpnt; SDpnt = SDpnt->next) {
  748. for (SCpnt = SDpnt->device_queue; SCpnt; SCpnt = SCpnt->next)
  749. if (SCpnt->channel == channel)
  750. scsi_mark_device_reset(SCpnt->device);
  751. }
  752. }
  753. static int scsi_reset(Scsi_Cmnd * SCpnt, unsigned int reset_flags)
  754. {
  755. int temp;
  756. Scsi_Cmnd *SCpnt1;
  757. Scsi_Device *SDpnt;
  758. struct Scsi_Host *host = SCpnt->host;
  759. printk("SCSI bus is being reset for host %d channel %d.n",
  760.        host->host_no, SCpnt->channel);
  761. #if 0
  762. /*
  763.  * First of all, we need to make a recommendation to the low-level
  764.  * driver as to whether a BUS_DEVICE_RESET should be performed,
  765.  * or whether we should do a full BUS_RESET.  There is no simple
  766.  * algorithm here - we basically use a series of heuristics
  767.  * to determine what we should do.
  768.  */
  769. SCpnt->host->suggest_bus_reset = FALSE;
  770. /*
  771.  * First see if all of the active devices on the bus have
  772.  * been jammed up so that we are attempting resets.  If so,
  773.  * then suggest a bus reset.  Forcing a bus reset could
  774.  * result in some race conditions, but no more than
  775.  * you would usually get with timeouts.  We will cross
  776.  * that bridge when we come to it.
  777.  *
  778.  * This is actually a pretty bad idea, since a sequence of
  779.  * commands will often timeout together and this will cause a
  780.  * Bus Device Reset followed immediately by a SCSI Bus Reset.
  781.  * If all of the active devices really are jammed up, the
  782.  * Bus Device Reset will quickly timeout and scsi_times_out
  783.  * will follow up with a SCSI Bus Reset anyway.
  784.  */
  785. SCpnt1 = host->host_queue;
  786. while (SCpnt1) {
  787. if (SCpnt1->request.rq_status != RQ_INACTIVE
  788.     && (SCpnt1->flags & (WAS_RESET | IS_RESETTING)) == 0)
  789. break;
  790. SCpnt1 = SCpnt1->next;
  791. }
  792. if (SCpnt1 == NULL) {
  793. reset_flags |= SCSI_RESET_SUGGEST_BUS_RESET;
  794. }
  795. /*
  796.  * If the code that called us is suggesting a hard reset, then
  797.  * definitely request it.  This usually occurs because a
  798.  * BUS_DEVICE_RESET times out.
  799.  *
  800.  * Passing reset_flags along takes care of this automatically.
  801.  */
  802. if (reset_flags & SCSI_RESET_SUGGEST_BUS_RESET) {
  803. SCpnt->host->suggest_bus_reset = TRUE;
  804. }
  805. #endif
  806. while (1) {
  807. /*
  808.  * Protect against races here.  If the command is done, or we are
  809.  * on a different command forget it.
  810.  */
  811. if (reset_flags & SCSI_RESET_ASYNCHRONOUS)
  812. if (SCpnt->serial_number != SCpnt->serial_number_at_timeout) {
  813. return 0;
  814. }
  815. if (SCpnt->internal_timeout & IN_RESET) {
  816. spin_unlock_irq(&io_request_lock);
  817. while (SCpnt->internal_timeout & IN_RESET)
  818. barrier();
  819. spin_lock_irq(&io_request_lock);
  820. } else {
  821. SCpnt->internal_timeout |= IN_RESET;
  822. update_timeout(SCpnt, RESET_TIMEOUT);
  823. if (reset_flags & SCSI_RESET_SYNCHRONOUS)
  824. SCpnt->flags |= SYNC_RESET;
  825. if (host->host_busy) {
  826. for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
  827. SCpnt1 = SDpnt->device_queue;
  828. while (SCpnt1) {
  829. if (SCpnt1->request.rq_status != RQ_INACTIVE) {
  830. #if 0
  831. if (!(SCpnt1->flags & IS_RESETTING) &&
  832.     !(SCpnt1->internal_timeout & IN_ABORT))
  833. scsi_abort(SCpnt1, DID_RESET);
  834. #endif
  835. SCpnt1->flags |= (WAS_RESET | IS_RESETTING);
  836. }
  837. SCpnt1 = SCpnt1->next;
  838. }
  839. }
  840. host->last_reset = jiffies;
  841. host->resetting = 1;
  842. /*
  843.  * I suppose that the host reset callback will not play
  844.  * with the resetting field. We have just set the resetting
  845.  * flag here. -arca
  846.  */
  847. temp = host->hostt->reset(SCpnt, reset_flags);
  848. /*
  849.    This test allows the driver to introduce an additional bus
  850.    settle time delay by setting last_reset up to 20 seconds in
  851.    the future.  In the normal case where the driver does not
  852.    modify last_reset, it must be assumed that the actual bus
  853.    reset occurred immediately prior to the return to this code,
  854.    and so last_reset must be updated to the current time, so
  855.    that the delay in internal_cmnd will guarantee at least a
  856.    MIN_RESET_DELAY bus settle time.
  857.  */
  858. if (host->last_reset - jiffies > 20UL * HZ)
  859. host->last_reset = jiffies;
  860. } else {
  861. host->host_busy++;
  862. host->last_reset = jiffies;
  863. host->resetting = 1;
  864. SCpnt->flags |= (WAS_RESET | IS_RESETTING);
  865. /*
  866.  * I suppose that the host reset callback will not play
  867.  * with the resetting field. We have just set the resetting
  868.  * flag here. -arca
  869.  */
  870. temp = host->hostt->reset(SCpnt, reset_flags);
  871. if (time_before(host->last_reset, jiffies) ||
  872.     (time_after(host->last_reset, jiffies + 20 * HZ)))
  873. host->last_reset = jiffies;
  874. host->host_busy--;
  875. }
  876. if (reset_flags & SCSI_RESET_SYNCHRONOUS)
  877. SCpnt->flags &= ~SYNC_RESET;
  878. #ifdef DEBUG
  879. printk("scsi reset function returned %dn", temp);
  880. #endif
  881. /*
  882.  * Now figure out what we need to do, based upon
  883.  * what the low level driver said that it did.
  884.  * If the result is SCSI_RESET_SUCCESS, SCSI_RESET_PENDING,
  885.  * or SCSI_RESET_WAKEUP, then the low level driver did a
  886.  * bus device reset or bus reset, so we should go through
  887.  * and mark one or all of the devices on that bus
  888.  * as having been reset.
  889.  */
  890. switch (temp & SCSI_RESET_ACTION) {
  891. case SCSI_RESET_SUCCESS:
  892. if (temp & SCSI_RESET_HOST_RESET)
  893. scsi_mark_host_reset(host);
  894. else if (temp & SCSI_RESET_BUS_RESET)
  895. scsi_mark_bus_reset(host, SCpnt->channel);
  896. else
  897. scsi_mark_device_reset(SCpnt->device);
  898. SCpnt->internal_timeout &= ~(IN_RESET | IN_RESET2 | IN_RESET3);
  899. return 0;
  900. case SCSI_RESET_PENDING:
  901. if (temp & SCSI_RESET_HOST_RESET)
  902. scsi_mark_host_reset(host);
  903. else if (temp & SCSI_RESET_BUS_RESET)
  904. scsi_mark_bus_reset(host, SCpnt->channel);
  905. else
  906. scsi_mark_device_reset(SCpnt->device);
  907. case SCSI_RESET_NOT_RUNNING:
  908. return 0;
  909. case SCSI_RESET_PUNT:
  910. SCpnt->internal_timeout &= ~(IN_RESET | IN_RESET2 | IN_RESET3);
  911. scsi_request_sense(SCpnt);
  912. return 0;
  913. case SCSI_RESET_WAKEUP:
  914. if (temp & SCSI_RESET_HOST_RESET)
  915. scsi_mark_host_reset(host);
  916. else if (temp & SCSI_RESET_BUS_RESET)
  917. scsi_mark_bus_reset(host, SCpnt->channel);
  918. else
  919. scsi_mark_device_reset(SCpnt->device);
  920. SCpnt->internal_timeout &= ~(IN_RESET | IN_RESET2 | IN_RESET3);
  921. scsi_request_sense(SCpnt);
  922. /*
  923.  * If a bus reset was performed, we
  924.  * need to wake up each and every command
  925.  * that was active on the bus or if it was a HBA
  926.  * reset all active commands on all channels
  927.  */
  928. if (temp & SCSI_RESET_HOST_RESET) {
  929. for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
  930. SCpnt1 = SDpnt->device_queue;
  931. while (SCpnt1) {
  932. if (SCpnt1->request.rq_status != RQ_INACTIVE
  933.     && SCpnt1 != SCpnt)
  934. scsi_request_sense(SCpnt1);
  935. SCpnt1 = SCpnt1->next;
  936. }
  937. }
  938. } else if (temp & SCSI_RESET_BUS_RESET) {
  939. for (SDpnt = host->host_queue; SDpnt; SDpnt = SDpnt->next) {
  940. SCpnt1 = SDpnt->device_queue;
  941. while (SCpnt1) {
  942. if (SCpnt1->request.rq_status != RQ_INACTIVE
  943. && SCpnt1 != SCpnt
  944.     && SCpnt1->channel == SCpnt->channel)
  945. scsi_request_sense(SCpnt);
  946. SCpnt1 = SCpnt1->next;
  947. }
  948. }
  949. }
  950. return 0;
  951. case SCSI_RESET_SNOOZE:
  952. /* In this case, we set the timeout field to 0
  953.  * so that this command does not time out any more,
  954.  * and we return 1 so that we get a message on the
  955.  * screen.
  956.  */
  957. SCpnt->internal_timeout &= ~(IN_RESET | IN_RESET2 | IN_RESET3);
  958. update_timeout(SCpnt, 0);
  959. /* If you snooze, you lose... */
  960. case SCSI_RESET_ERROR:
  961. default:
  962. return 1;
  963. }
  964. return temp;
  965. }
  966. }
  967. }
  968. /*
  969.  * The strategy is to cause the timer code to call scsi_times_out()
  970.  * when the soonest timeout is pending.
  971.  * The arguments are used when we are queueing a new command, because
  972.  * we do not want to subtract the time used from this time, but when we
  973.  * set the timer, we want to take this value into account.
  974.  */
  975. int update_timeout(Scsi_Cmnd * SCset, int timeout)
  976. {
  977. int rtn;
  978. /*
  979.  * We are using the new error handling code to actually register/deregister
  980.  * timers for timeout.
  981.  */
  982. if (!timer_pending(&SCset->eh_timeout)) {
  983. rtn = 0;
  984. } else {
  985. rtn = SCset->eh_timeout.expires - jiffies;
  986. }
  987. if (timeout == 0) {
  988. scsi_delete_timer(SCset);
  989. } else {
  990. scsi_add_timer(SCset, timeout, scsi_old_times_out);
  991. }
  992. return rtn;
  993. }
  994. /*
  995.  * Overrides for Emacs so that we follow Linus's tabbing style.
  996.  * Emacs will notice this stuff at the end of the file and automatically
  997.  * adjust the settings for this buffer only.  This must remain at the end
  998.  * of the file.
  999.  * ---------------------------------------------------------------------------
  1000.  * Local variables:
  1001.  * c-indent-level: 4
  1002.  * c-brace-imaginary-offset: 0
  1003.  * c-brace-offset: -4
  1004.  * c-argdecl-indent: 4
  1005.  * c-label-offset: -4
  1006.  * c-continued-statement-offset: 4
  1007.  * c-continued-brace-offset: 0
  1008.  * indent-tabs-mode: nil
  1009.  * tab-width: 8
  1010.  * End:
  1011.  */