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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  scsi_scan.c Copyright (C) 2000 Eric Youngdale
  3.  *
  4.  *  Bus scan logic.
  5.  *
  6.  *  This used to live in scsi.c, but that file was just a laundry basket
  7.  *  full of misc stuff.  This got separated out in order to make things
  8.  *  clearer.
  9.  */
  10. #define __NO_VERSION__
  11. #include <linux/config.h>
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/blk.h>
  15. #include "scsi.h"
  16. #include "hosts.h"
  17. #include "constants.h"
  18. #ifdef CONFIG_KMOD
  19. #include <linux/kmod.h>
  20. #endif
  21. /* The following devices are known not to tolerate a lun != 0 scan for
  22.  * one reason or another.  Some will respond to all luns, others will
  23.  * lock up.
  24.  */
  25. #define BLIST_NOLUN      0x001
  26. #define BLIST_FORCELUN   0x002
  27. #define BLIST_BORKEN     0x004
  28. #define BLIST_KEY        0x008
  29. #define BLIST_SINGLELUN  0x010
  30. #define BLIST_NOTQ 0x020
  31. #define BLIST_SPARSELUN  0x040
  32. #define BLIST_MAX5LUN 0x080
  33. #define BLIST_ISDISK     0x100
  34. #define BLIST_ISROM      0x200
  35. static void print_inquiry(unsigned char *data);
  36. static int scan_scsis_single(unsigned int channel, unsigned int dev,
  37. unsigned int lun, int lun0_scsi_level, 
  38. unsigned int *max_scsi_dev, unsigned int *sparse_lun, 
  39. Scsi_Device ** SDpnt, struct Scsi_Host *shpnt, 
  40. char *scsi_result);
  41. static int find_lun0_scsi_level(unsigned int channel, unsigned int dev,
  42. struct Scsi_Host *shpnt);
  43. struct dev_info {
  44. const char *vendor;
  45. const char *model;
  46. const char *revision; /* Latest revision known to be bad.  Not used yet */
  47. unsigned flags;
  48. };
  49. /*
  50.  * This is what was previously known as the blacklist.  The concept
  51.  * has been expanded so that we can specify other types of things we
  52.  * need to be aware of.
  53.  */
  54. static struct dev_info device_list[] =
  55. {
  56. {"Aashima", "IMAGERY 2400SP", "1.03", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  57. {"CHINON", "CD-ROM CDS-431", "H42", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  58. {"CHINON", "CD-ROM CDS-535", "Q14", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  59. {"DENON", "DRD-25X", "V", BLIST_NOLUN}, /* Locks up if probed for lun != 0 */
  60. {"HITACHI", "DK312C", "CM81", BLIST_NOLUN}, /* Responds to all lun - dtg */
  61. {"HITACHI", "DK314C", "CR21", BLIST_NOLUN}, /* responds to all lun */
  62. {"IMS", "CDD521/10", "2.06", BLIST_NOLUN}, /* Locks-up when LUN>0 polled. */
  63. {"MAXTOR", "XT-3280", "PR02", BLIST_NOLUN}, /* Locks-up when LUN>0 polled. */
  64. {"MAXTOR", "XT-4380S", "B3C", BLIST_NOLUN}, /* Locks-up when LUN>0 polled. */
  65. {"MAXTOR", "MXT-1240S", "I1.2", BLIST_NOLUN}, /* Locks up when LUN>0 polled */
  66. {"MAXTOR", "XT-4170S", "B5A", BLIST_NOLUN}, /* Locks-up sometimes when LUN>0 polled. */
  67. {"MAXTOR", "XT-8760S", "B7B", BLIST_NOLUN}, /* guess what? */
  68. {"MEDIAVIS", "RENO CD-ROMX2A", "2.03", BLIST_NOLUN}, /*Responds to all lun */
  69. {"MICROP", "4110", "*", BLIST_NOTQ}, /* Buggy Tagged Queuing */
  70. {"NEC", "CD-ROM DRIVE:841", "1.0", BLIST_NOLUN}, /* Locks-up when LUN>0 polled. */
  71. {"PHILIPS", "PCA80SC", "V4-2", BLIST_NOLUN}, /* Responds to all lun */
  72. {"RODIME", "RO3000S", "2.33", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  73. {"SANYO", "CRD-250S", "1.20", BLIST_NOLUN}, /* causes failed REQUEST SENSE on lun 1
  74.  * for aha152x controller, which causes
  75.  * SCSI code to reset bus.*/
  76. {"SEAGATE", "ST157N", "04|j", BLIST_NOLUN}, /* causes failed REQUEST SENSE on lun 1
  77.  * for aha152x controller, which causes
  78.  * SCSI code to reset bus.*/
  79. {"SEAGATE", "ST296", "921", BLIST_NOLUN}, /* Responds to all lun */
  80. {"SEAGATE", "ST1581", "6538", BLIST_NOLUN}, /* Responds to all lun */
  81. {"SONY", "CD-ROM CDU-541", "4.3d", BLIST_NOLUN},
  82. {"SONY", "CD-ROM CDU-55S", "1.0i", BLIST_NOLUN},
  83. {"SONY", "CD-ROM CDU-561", "1.7x", BLIST_NOLUN},
  84. {"SONY", "CD-ROM CDU-8012", "*", BLIST_NOLUN},
  85. {"TANDBERG", "TDC 3600", "U07", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  86. {"TEAC", "CD-R55S", "1.0H", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  87. {"TEAC", "CD-ROM", "1.06", BLIST_NOLUN}, /* causes failed REQUEST SENSE on lun 1
  88.  * for seagate controller, which causes
  89.  * SCSI code to reset bus.*/
  90. {"TEAC", "MT-2ST/45S2-27", "RV M", BLIST_NOLUN}, /* Responds to all lun */
  91. {"TEXEL", "CD-ROM", "1.06", BLIST_NOLUN}, /* causes failed REQUEST SENSE on lun 1
  92.  * for seagate controller, which causes
  93.  * SCSI code to reset bus.*/
  94. {"QUANTUM", "LPS525S", "3110", BLIST_NOLUN}, /* Locks sometimes if polled for lun != 0 */
  95. {"QUANTUM", "PD1225S", "3110", BLIST_NOLUN}, /* Locks sometimes if polled for lun != 0 */
  96. {"QUANTUM", "FIREBALL ST4.3S", "0F0C", BLIST_NOLUN}, /* Locks up when polled for lun != 0 */
  97. {"MEDIAVIS", "CDR-H93MV", "1.31", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  98. {"SANKYO", "CP525", "6.64", BLIST_NOLUN}, /* causes failed REQ SENSE, extra reset */
  99. {"HP", "C1750A", "3226", BLIST_NOLUN}, /* scanjet iic */
  100. {"HP", "C1790A", "", BLIST_NOLUN}, /* scanjet iip */
  101. {"HP", "C2500A", "", BLIST_NOLUN}, /* scanjet iicx */
  102. {"YAMAHA", "CDR100", "1.00", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  103. {"YAMAHA", "CDR102", "1.00", BLIST_NOLUN}, /* Locks up if polled for lun != 0  
  104.  * extra reset */
  105. {"YAMAHA", "CRW8424S", "1.0", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  106. {"YAMAHA", "CRW6416S", "1.0c", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  107. {"MITSUMI", "CD-R CR-2201CS", "6119", BLIST_NOLUN}, /* Locks up if polled for lun != 0 */
  108. {"RELISYS", "Scorpio", "*", BLIST_NOLUN}, /* responds to all LUN */
  109. {"MICROTEK", "ScanMaker II", "5.61", BLIST_NOLUN}, /* responds to all LUN */
  110. /*
  111.  * Other types of devices that have special flags.
  112.  */
  113. {"SONY", "CD-ROM CDU-8001", "*", BLIST_BORKEN},
  114. {"TEXEL", "CD-ROM", "1.06", BLIST_BORKEN},
  115. {"IOMEGA", "Io20S         *F", "*", BLIST_KEY},
  116. {"INSITE", "Floptical   F*8I", "*", BLIST_KEY},
  117. {"INSITE", "I325VM", "*", BLIST_KEY},
  118. {"LASOUND","CDX7405","3.10", BLIST_MAX5LUN | BLIST_SINGLELUN},
  119. {"NRC", "MBR-7", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  120. {"NRC", "MBR-7.4", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  121. {"REGAL", "CDC-4X", "*", BLIST_MAX5LUN | BLIST_SINGLELUN},
  122. {"NAKAMICH", "MJ-4.8S", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  123. {"NAKAMICH", "MJ-5.16S", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  124. {"PIONEER", "CD-ROM DRM-600", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  125. {"PIONEER", "CD-ROM DRM-602X", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  126. {"PIONEER", "CD-ROM DRM-604X", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  127. {"EMULEX", "MD21/S2     ESDI", "*", BLIST_SINGLELUN},
  128. {"CANON", "IPUBJD", "*", BLIST_SPARSELUN},
  129. {"nCipher", "Fastness Crypto", "*", BLIST_FORCELUN},
  130. {"DEC","HSG80","*", BLIST_FORCELUN},
  131. {"COMPAQ","LOGICAL VOLUME","*", BLIST_FORCELUN},
  132. {"COMPAQ","CR3500","*", BLIST_FORCELUN},
  133. {"NEC", "PD-1 ODX654P", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  134. {"MATSHITA", "PD-1", "*", BLIST_FORCELUN | BLIST_SINGLELUN},
  135. {"iomega", "jaz 1GB", "J.86", BLIST_NOTQ | BLIST_NOLUN},
  136.   {"TOSHIBA","CDROM","*", BLIST_ISROM},
  137.   {"TOSHIBA","CD-ROM","*", BLIST_ISROM},
  138. {"MegaRAID", "LD", "*", BLIST_FORCELUN},
  139. {"DGC",  "RAID",      "*", BLIST_SPARSELUN}, // Dell PV 650F (tgt @ LUN 0)
  140. {"DGC",  "DISK",      "*", BLIST_SPARSELUN}, // Dell PV 650F (no tgt @ LUN 0) 
  141. {"DELL", "PV660F",   "*", BLIST_SPARSELUN},
  142. {"DELL", "PV660F   PSEUDO",   "*", BLIST_SPARSELUN},
  143. {"DELL", "PSEUDO DEVICE .",   "*", BLIST_SPARSELUN}, // Dell PV 530F
  144. {"DELL", "PV530F",    "*", BLIST_SPARSELUN}, // Dell PV 530F
  145. {"EMC", "SYMMETRIX", "*", BLIST_SPARSELUN},
  146. {"CMD", "CRA-7280", "*", BLIST_SPARSELUN},   // CMD RAID Controller
  147. {"CNSI", "G7324", "*", BLIST_SPARSELUN},     // Chaparral G7324 RAID
  148. {"CNSi", "G8324", "*", BLIST_SPARSELUN},     // Chaparral G8324 RAID
  149. {"Zzyzx", "RocketStor 500S", "*", BLIST_SPARSELUN},
  150. {"Zzyzx", "RocketStor 2000", "*", BLIST_SPARSELUN},
  151. {"SONY", "TSL",       "*", BLIST_FORCELUN},  // DDS3 & DDS4 autoloaders
  152. {"DELL", "PERCRAID", "*", BLIST_FORCELUN},
  153. {"HP", "NetRAID-4M", "*", BLIST_FORCELUN},
  154. {"ADAPTEC", "AACRAID", "*", BLIST_FORCELUN},
  155. {"ADAPTEC", "Adaptec 5400S", "*", BLIST_FORCELUN},
  156. {"COMPAQ", "MSA1000", "*", BLIST_FORCELUN},
  157. /*
  158.  * Must be at end of list...
  159.  */
  160. {NULL, NULL, NULL}
  161. };
  162. #define MAX_SCSI_LUNS 0xFFFFFFFF
  163. #ifdef CONFIG_SCSI_MULTI_LUN
  164. static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
  165. #else
  166. static unsigned int max_scsi_luns = 1;
  167. #endif
  168. #ifdef MODULE
  169. MODULE_PARM(max_scsi_luns, "i");
  170. MODULE_PARM_DESC(max_scsi_luns, "last scsi LUN (should be between 1 and 2^32-1)");
  171. #else
  172. static int __init scsi_luns_setup(char *str)
  173. {
  174. unsigned int tmp;
  175. if (get_option(&str, &tmp) == 1) {
  176. max_scsi_luns = tmp;
  177. return 1;
  178. } else {
  179. printk("scsi_luns_setup : usage max_scsi_luns=n "
  180.        "(n should be between 1 and 2^32-1)n");
  181. return 0;
  182. }
  183. }
  184. __setup("max_scsi_luns=", scsi_luns_setup);
  185. #endif
  186. static void print_inquiry(unsigned char *data)
  187. {
  188. int i;
  189. printk("  Vendor: ");
  190. for (i = 8; i < 16; i++) {
  191. if (data[i] >= 0x20 && i < data[4] + 5)
  192. printk("%c", data[i]);
  193. else
  194. printk(" ");
  195. }
  196. printk("  Model: ");
  197. for (i = 16; i < 32; i++) {
  198. if (data[i] >= 0x20 && i < data[4] + 5)
  199. printk("%c", data[i]);
  200. else
  201. printk(" ");
  202. }
  203. printk("  Rev: ");
  204. for (i = 32; i < 36; i++) {
  205. if (data[i] >= 0x20 && i < data[4] + 5)
  206. printk("%c", data[i]);
  207. else
  208. printk(" ");
  209. }
  210. printk("n");
  211. i = data[0] & 0x1f;
  212. printk("  Type:   %s ",
  213.        i < MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] : "Unknown          ");
  214. printk("                 ANSI SCSI revision: %02x", data[2] & 0x07);
  215. if ((data[2] & 0x07) == 1 && (data[3] & 0x0f) == 1)
  216. printk(" CCSn");
  217. else
  218. printk("n");
  219. }
  220. static int get_device_flags(unsigned char *response_data)
  221. {
  222. int i = 0;
  223. unsigned char *pnt;
  224. for (i = 0; 1; i++) {
  225. if (device_list[i].vendor == NULL)
  226. return 0;
  227. pnt = &response_data[8];
  228. while (*pnt && *pnt == ' ')
  229. pnt++;
  230. if (memcmp(device_list[i].vendor, pnt,
  231.    strlen(device_list[i].vendor)))
  232. continue;
  233. pnt = &response_data[16];
  234. while (*pnt && *pnt == ' ')
  235. pnt++;
  236. if (memcmp(device_list[i].model, pnt,
  237.    strlen(device_list[i].model)))
  238. continue;
  239. return device_list[i].flags;
  240. }
  241. return 0;
  242. }
  243. /*
  244.  *  Detecting SCSI devices :
  245.  *  We scan all present host adapter's busses,  from ID 0 to ID (max_id).
  246.  *  We use the INQUIRY command, determine device type, and pass the ID /
  247.  *  lun address of all sequential devices to the tape driver, all random
  248.  *  devices to the disk driver.
  249.  */
  250. void scan_scsis(struct Scsi_Host *shpnt,
  251.        uint hardcoded,
  252.        uint hchannel,
  253.        uint hid,
  254.        uint hlun)
  255. {
  256. uint channel;
  257. unsigned int dev;
  258. unsigned int lun;
  259. unsigned int max_dev_lun;
  260. unsigned char *scsi_result;
  261. unsigned char scsi_result0[256];
  262. Scsi_Device *SDpnt;
  263. Scsi_Device *SDtail;
  264. unsigned int sparse_lun;
  265. int lun0_sl;
  266. scsi_result = NULL;
  267. SDpnt = (Scsi_Device *) kmalloc(sizeof(Scsi_Device),
  268. GFP_ATOMIC);
  269. if (SDpnt) {
  270. memset(SDpnt, 0, sizeof(Scsi_Device));
  271. /*
  272.  * Register the queue for the device.  All I/O requests will
  273.  * come in through here.  We also need to register a pointer to
  274.  * ourselves, since the queue handler won't know what device
  275.  * the queue actually represents.   We could look it up, but it
  276.  * is pointless work.
  277.  */
  278. scsi_initialize_queue(SDpnt, shpnt);
  279. SDpnt->request_queue.queuedata = (void *) SDpnt;
  280. /* Make sure we have something that is valid for DMA purposes */
  281. scsi_result = ((!shpnt->unchecked_isa_dma)
  282.        ? &scsi_result0[0] : kmalloc(512, GFP_DMA));
  283. }
  284. if (scsi_result == NULL) {
  285. printk("Unable to obtain scsi_result buffern");
  286. goto leave;
  287. }
  288. /*
  289.  * We must chain ourself in the host_queue, so commands can time out 
  290.  */
  291. SDpnt->queue_depth = 1;
  292. SDpnt->host = shpnt;
  293. SDpnt->online = TRUE;
  294. initialize_merge_fn(SDpnt);
  295.         /*
  296.          * Initialize the object that we will use to wait for command blocks.
  297.          */
  298. init_waitqueue_head(&SDpnt->scpnt_wait);
  299. /*
  300.  * Next, hook the device to the host in question.
  301.  */
  302. SDpnt->prev = NULL;
  303. SDpnt->next = NULL;
  304. if (shpnt->host_queue != NULL) {
  305. SDtail = shpnt->host_queue;
  306. while (SDtail->next != NULL)
  307. SDtail = SDtail->next;
  308. SDtail->next = SDpnt;
  309. SDpnt->prev = SDtail;
  310. } else {
  311. shpnt->host_queue = SDpnt;
  312. }
  313. /*
  314.  * We need to increment the counter for this one device so we can track
  315.  * when things are quiet.
  316.  */
  317. if (hardcoded == 1) {
  318. Scsi_Device *oldSDpnt = SDpnt;
  319. struct Scsi_Device_Template *sdtpnt;
  320. channel = hchannel;
  321. if (channel > shpnt->max_channel)
  322. goto leave;
  323. dev = hid;
  324. if (dev >= shpnt->max_id)
  325. goto leave;
  326. lun = hlun;
  327. if (lun >= shpnt->max_lun)
  328. goto leave;
  329. if ((0 == lun) || (lun > 7))
  330. lun0_sl = SCSI_3; /* actually don't care for 0 == lun */
  331. else
  332. lun0_sl = find_lun0_scsi_level(channel, dev, shpnt);
  333. scan_scsis_single(channel, dev, lun, lun0_sl, &max_dev_lun, 
  334.   &sparse_lun, &SDpnt, shpnt, scsi_result);
  335. if (SDpnt != oldSDpnt) {
  336. /* it could happen the blockdevice hasn't yet been inited */
  337. /* queue_depth() moved from scsi_proc_info() so that
  338.    it is called before scsi_build_commandblocks() */
  339. if (shpnt->select_queue_depths != NULL)
  340. (shpnt->select_queue_depths)(shpnt,
  341.      shpnt->host_queue);
  342. for (sdtpnt = scsi_devicelist; sdtpnt; sdtpnt = sdtpnt->next)
  343. if (sdtpnt->init && sdtpnt->dev_noticed)
  344. (*sdtpnt->init) ();
  345. for (sdtpnt = scsi_devicelist; sdtpnt; sdtpnt = sdtpnt->next) {
  346. if (sdtpnt->attach) {
  347. (*sdtpnt->attach) (oldSDpnt);
  348. if (oldSDpnt->attached) {
  349. scsi_build_commandblocks(oldSDpnt);
  350. if (0 == oldSDpnt->has_cmdblocks) {
  351. printk("scan_scsis: DANGER, no command blocksn");
  352. /* What to do now ?? */
  353. }
  354. }
  355. }
  356. }
  357. scsi_resize_dma_pool();
  358. for (sdtpnt = scsi_devicelist; sdtpnt; sdtpnt = sdtpnt->next) {
  359. if (sdtpnt->finish && sdtpnt->nr_dev) {
  360. (*sdtpnt->finish) ();
  361. }
  362. }
  363. }
  364. } else {
  365. /* Actual LUN. PC ordering is 0->n IBM/spec ordering is n->0 */
  366. int order_dev;
  367. for (channel = 0; channel <= shpnt->max_channel; channel++) {
  368. for (dev = 0; dev < shpnt->max_id; ++dev) {
  369. if (shpnt->reverse_ordering)
  370. /* Shift to scanning 15,14,13... or 7,6,5,4, */
  371. order_dev = shpnt->max_id - dev - 1;
  372. else
  373. order_dev = dev;
  374. if (shpnt->this_id != order_dev) {
  375. /*
  376.  * We need the for so our continue, etc. work fine. We put this in
  377.  * a variable so that we can override it during the scan if we
  378.  * detect a device *KNOWN* to have multiple logical units.
  379.  */
  380. max_dev_lun = (max_scsi_luns < shpnt->max_lun ?
  381.  max_scsi_luns : shpnt->max_lun);
  382. sparse_lun = 0;
  383. for (lun = 0, lun0_sl = SCSI_2; lun < max_dev_lun; ++lun) {
  384. /* don't probe further for luns > 7 for targets <= SCSI_2 */
  385. if ((lun0_sl < SCSI_3) && (lun > 7))
  386. break;
  387. if (!scan_scsis_single(channel, order_dev, lun, lun0_sl,
  388.          &max_dev_lun, &sparse_lun, &SDpnt, shpnt,
  389.        scsi_result)
  390.     && !sparse_lun)
  391. break; /* break means don't probe further for luns!=0 */
  392. if (SDpnt && (0 == lun))
  393. lun0_sl = SDpnt->scsi_level;
  394. } /* for lun ends */
  395. } /* if this_id != id ends */
  396. } /* for dev ends */
  397. } /* for channel ends */
  398. } /* if/else hardcoded */
  399.       leave:
  400. { /* Unchain SRpnt from host_queue */
  401. Scsi_Device *prev, *next;
  402. Scsi_Device *dqptr;
  403. for (dqptr = shpnt->host_queue; dqptr != SDpnt; dqptr = dqptr->next)
  404. continue;
  405. if (dqptr) {
  406. prev = dqptr->prev;
  407. next = dqptr->next;
  408. if (prev)
  409. prev->next = next;
  410. else
  411. shpnt->host_queue = next;
  412. if (next)
  413. next->prev = prev;
  414. }
  415. }
  416. /* Last device block does not exist.  Free memory. */
  417. if (SDpnt != NULL) {
  418. blk_cleanup_queue(&SDpnt->request_queue);
  419. kfree((char *) SDpnt);
  420. }
  421. /* If we allocated a buffer so we could do DMA, free it now */
  422. if (scsi_result != &scsi_result0[0] && scsi_result != NULL) {
  423. kfree(scsi_result);
  424. } {
  425. Scsi_Device *sdev;
  426. Scsi_Cmnd *scmd;
  427. SCSI_LOG_SCAN_BUS(4, printk("Host status for host %p:n", shpnt));
  428. for (sdev = shpnt->host_queue; sdev; sdev = sdev->next) {
  429. SCSI_LOG_SCAN_BUS(4, printk("Device %d %p: ", sdev->id, sdev));
  430. for (scmd = sdev->device_queue; scmd; scmd = scmd->next) {
  431. SCSI_LOG_SCAN_BUS(4, printk("%p ", scmd));
  432. }
  433. SCSI_LOG_SCAN_BUS(4, printk("n"));
  434. }
  435. }
  436. }
  437. /*
  438.  * The worker for scan_scsis.
  439.  * Returning 0 means Please don't ask further for lun!=0, 1 means OK go on.
  440.  * Global variables used : scsi_devices(linked list)
  441.  */
  442. static int scan_scsis_single(unsigned int channel, unsigned int dev,
  443. unsigned int lun, int lun0_scsi_level,
  444. unsigned int *max_dev_lun, unsigned int *sparse_lun, 
  445. Scsi_Device ** SDpnt2, struct Scsi_Host *shpnt, 
  446. char *scsi_result)
  447. {
  448. char devname[64];
  449. unsigned char scsi_cmd[MAX_COMMAND_SIZE];
  450. struct Scsi_Device_Template *sdtpnt;
  451. Scsi_Device *SDtail, *SDpnt = *SDpnt2;
  452. Scsi_Request * SRpnt;
  453. int bflags, type = -1;
  454. extern devfs_handle_t scsi_devfs_handle;
  455. int scsi_level;
  456. SDpnt->host = shpnt;
  457. SDpnt->id = dev;
  458. SDpnt->lun = lun;
  459. SDpnt->channel = channel;
  460. SDpnt->online = TRUE;
  461. scsi_build_commandblocks(SDpnt);
  462.  
  463. /* Some low level driver could use device->type (DB) */
  464. SDpnt->type = -1;
  465. /*
  466.  * Assume that the device will have handshaking problems, and then fix
  467.  * this field later if it turns out it doesn't
  468.  */
  469. SDpnt->borken = 1;
  470. SDpnt->was_reset = 0;
  471. SDpnt->expecting_cc_ua = 0;
  472. SDpnt->starved = 0;
  473. if (NULL == (SRpnt = scsi_allocate_request(SDpnt))) {
  474. printk("scan_scsis_single: no memoryn");
  475. return 0;
  476. }
  477. /*
  478.  * We used to do a TEST_UNIT_READY before the INQUIRY but that was 
  479.  * not really necessary.  Spec recommends using INQUIRY to scan for
  480.  * devices (and TEST_UNIT_READY to poll for media change). - Paul G.
  481.  */
  482. SCSI_LOG_SCAN_BUS(3, printk("scsi: performing INQUIRYn"));
  483. /*
  484.  * Build an INQUIRY command block.
  485.  */
  486. scsi_cmd[0] = INQUIRY;
  487. if ((lun > 0) && (lun0_scsi_level <= SCSI_2))
  488. scsi_cmd[1] = (lun << 5) & 0xe0;
  489. else
  490. scsi_cmd[1] = 0; /* SCSI_3 and higher, don't touch */
  491. scsi_cmd[2] = 0;
  492. scsi_cmd[3] = 0;
  493. scsi_cmd[4] = 255;
  494. scsi_cmd[5] = 0;
  495. SRpnt->sr_cmd_len = 0;
  496. SRpnt->sr_data_direction = SCSI_DATA_READ;
  497. scsi_wait_req (SRpnt, (void *) scsi_cmd,
  498.           (void *) scsi_result,
  499.           256, SCSI_TIMEOUT+4*HZ, 3);
  500. SCSI_LOG_SCAN_BUS(3, printk("scsi: INQUIRY %s with code 0x%xn",
  501. SRpnt->sr_result ? "failed" : "successful", SRpnt->sr_result));
  502. /*
  503.  * Now that we don't do TEST_UNIT_READY anymore, we must be prepared
  504.  * for media change conditions here, so cannot require zero result.
  505.  */
  506. if (SRpnt->sr_result) {
  507. if ((driver_byte(SRpnt->sr_result) & DRIVER_SENSE) != 0 &&
  508.     (SRpnt->sr_sense_buffer[2] & 0xf) == UNIT_ATTENTION &&
  509.     SRpnt->sr_sense_buffer[12] == 0x28 &&
  510.     SRpnt->sr_sense_buffer[13] == 0) {
  511. /* not-ready to ready transition - good */
  512. } else {
  513. /* assume no peripheral if any other sort of error */
  514. scsi_release_request(SRpnt);
  515. return 0;
  516. }
  517. }
  518. /*
  519.  * Check for SPARSELUN before checking the peripheral qualifier,
  520.  * so sparse lun devices are completely scanned.
  521.  */
  522. /*
  523.  * Get any flags for this device.  
  524.  */
  525. bflags = get_device_flags (scsi_result);
  526. if (bflags & BLIST_SPARSELUN) {
  527.   *sparse_lun = 1;
  528. }
  529. /*
  530.  * Check the peripheral qualifier field - this tells us whether LUNS
  531.  * are supported here or not.
  532.  */
  533. if ((scsi_result[0] >> 5) == 3) {
  534. scsi_release_request(SRpnt);
  535. return 0; /* assume no peripheral if any sort of error */
  536. }
  537.  /*   The Toshiba ROM was "gender-changed" here as an inline hack.
  538.       This is now much more generic.
  539.       This is a mess: What we really want is to leave the scsi_result
  540.       alone, and just change the SDpnt structure. And the SDpnt is what
  541.       we want print_inquiry to print.  -- REW
  542.  */
  543. if (bflags & BLIST_ISDISK) {
  544. scsi_result[0] = TYPE_DISK;                                                
  545. scsi_result[1] |= 0x80;     /* removable */
  546. }
  547. if (bflags & BLIST_ISROM) {
  548. scsi_result[0] = TYPE_ROM;
  549. scsi_result[1] |= 0x80;     /* removable */
  550. }
  551.     
  552. memcpy(SDpnt->vendor, scsi_result + 8, 8);
  553. memcpy(SDpnt->model, scsi_result + 16, 16);
  554. memcpy(SDpnt->rev, scsi_result + 32, 4);
  555. SDpnt->removable = (0x80 & scsi_result[1]) >> 7;
  556. /* Use the peripheral qualifier field to determine online/offline */
  557. if (((scsi_result[0] >> 5) & 7) == 1)  SDpnt->online = FALSE;
  558. else SDpnt->online = TRUE;
  559. SDpnt->lockable = SDpnt->removable;
  560. SDpnt->changed = 0;
  561. SDpnt->access_count = 0;
  562. SDpnt->busy = 0;
  563. SDpnt->has_cmdblocks = 0;
  564. /*
  565.  * Currently, all sequential devices are assumed to be tapes, all random
  566.  * devices disk, with the appropriate read only flags set for ROM / WORM
  567.  * treated as RO.
  568.  */
  569. switch (type = (scsi_result[0] & 0x1f)) {
  570. case TYPE_TAPE:
  571. case TYPE_DISK:
  572. case TYPE_PRINTER:
  573. case TYPE_MOD:
  574. case TYPE_PROCESSOR:
  575. case TYPE_SCANNER:
  576. case TYPE_MEDIUM_CHANGER:
  577. case TYPE_ENCLOSURE:
  578. case TYPE_COMM:
  579. SDpnt->writeable = 1;
  580. break;
  581. case TYPE_WORM:
  582. case TYPE_ROM:
  583. SDpnt->writeable = 0;
  584. break;
  585. default:
  586. printk("scsi: unknown type %dn", type);
  587. }
  588. SDpnt->device_blocked = FALSE;
  589. SDpnt->device_busy = 0;
  590. SDpnt->single_lun = 0;
  591. SDpnt->soft_reset =
  592.     (scsi_result[7] & 1) && ((scsi_result[3] & 7) == 2);
  593. SDpnt->random = (type == TYPE_TAPE) ? 0 : 1;
  594. SDpnt->type = (type & 0x1f);
  595. print_inquiry(scsi_result);
  596.         sprintf (devname, "host%d/bus%d/target%d/lun%d",
  597.                  SDpnt->host->host_no, SDpnt->channel, SDpnt->id, SDpnt->lun);
  598.         if (SDpnt->de) printk ("DEBUG: dir: "%s" already existsn", devname);
  599.         else SDpnt->de = devfs_mk_dir (scsi_devfs_handle, devname, NULL);
  600. for (sdtpnt = scsi_devicelist; sdtpnt;
  601.      sdtpnt = sdtpnt->next)
  602. if (sdtpnt->detect)
  603. SDpnt->attached +=
  604.     (*sdtpnt->detect) (SDpnt);
  605. SDpnt->scsi_level = scsi_result[2] & 0x07;
  606. if (SDpnt->scsi_level >= 2 ||
  607.     (SDpnt->scsi_level == 1 &&
  608.      (scsi_result[3] & 0x0f) == 1))
  609. SDpnt->scsi_level++;
  610. scsi_level = SDpnt->scsi_level;
  611. /*
  612.  * Accommodate drivers that want to sleep when they should be in a polling
  613.  * loop.
  614.  */
  615. SDpnt->disconnect = 0;
  616. /*
  617.  * Set the tagged_queue flag for SCSI-II devices that purport to support
  618.  * tagged queuing in the INQUIRY data.
  619.  */
  620. SDpnt->tagged_queue = 0;
  621. if ((SDpnt->scsi_level >= SCSI_2) &&
  622.     (scsi_result[7] & 2) &&
  623.     !(bflags & BLIST_NOTQ)) {
  624. SDpnt->tagged_supported = 1;
  625. SDpnt->current_tag = 0;
  626. }
  627. /*
  628.  * Some revisions of the Texel CD ROM drives have handshaking problems when
  629.  * used with the Seagate controllers.  Before we know what type of device
  630.  * we're talking to, we assume it's borken and then change it here if it
  631.  * turns out that it isn't a TEXEL drive.
  632.  */
  633. if ((bflags & BLIST_BORKEN) == 0)
  634. SDpnt->borken = 0;
  635. /*
  636.  * If we want to only allow I/O to one of the luns attached to this device
  637.  * at a time, then we set this flag.
  638.  */
  639. if (bflags & BLIST_SINGLELUN)
  640. SDpnt->single_lun = 1;
  641. /*
  642.  * These devices need this "key" to unlock the devices so we can use it
  643.  */
  644. if ((bflags & BLIST_KEY) != 0) {
  645. printk("Unlocked floptical drive.n");
  646. SDpnt->lockable = 0;
  647. scsi_cmd[0] = MODE_SENSE;
  648. if (shpnt->max_lun <= 8)
  649. scsi_cmd[1] = (lun << 5) & 0xe0;
  650. else scsi_cmd[1] = 0; /* any other idea? */
  651. scsi_cmd[2] = 0x2e;
  652. scsi_cmd[3] = 0;
  653. scsi_cmd[4] = 0x2a;
  654. scsi_cmd[5] = 0;
  655. SRpnt->sr_cmd_len = 0;
  656. SRpnt->sr_data_direction = SCSI_DATA_READ;
  657. scsi_wait_req (SRpnt, (void *) scsi_cmd,
  658.          (void *) scsi_result, 0x2a,
  659.          SCSI_TIMEOUT, 3);
  660. }
  661. scsi_release_request(SRpnt);
  662. SRpnt = NULL;
  663. scsi_release_commandblocks(SDpnt);
  664. /*
  665.  * This device was already hooked up to the host in question,
  666.  * so at this point we just let go of it and it should be fine.  We do need to
  667.  * allocate a new one and attach it to the host so that we can further scan the bus.
  668.  */
  669. SDpnt = (Scsi_Device *) kmalloc(sizeof(Scsi_Device), GFP_ATOMIC);
  670. if (!SDpnt) {
  671. printk("scsi: scan_scsis_single: Cannot mallocn");
  672. return 0;
  673. }
  674.         memset(SDpnt, 0, sizeof(Scsi_Device));
  675. *SDpnt2 = SDpnt;
  676. SDpnt->queue_depth = 1;
  677. SDpnt->host = shpnt;
  678. SDpnt->online = TRUE;
  679. SDpnt->scsi_level = scsi_level;
  680. /*
  681.  * Register the queue for the device.  All I/O requests will come
  682.  * in through here.  We also need to register a pointer to
  683.  * ourselves, since the queue handler won't know what device
  684.  * the queue actually represents.   We could look it up, but it
  685.  * is pointless work.
  686.  */
  687. scsi_initialize_queue(SDpnt, shpnt);
  688. SDpnt->host = shpnt;
  689. initialize_merge_fn(SDpnt);
  690. /*
  691.  * Mark this device as online, or otherwise we won't be able to do much with it.
  692.  */
  693. SDpnt->online = TRUE;
  694.         /*
  695.          * Initialize the object that we will use to wait for command blocks.
  696.          */
  697. init_waitqueue_head(&SDpnt->scpnt_wait);
  698. /*
  699.  * Since we just found one device, there had damn well better be one in the list
  700.  * already.
  701.  */
  702. if (shpnt->host_queue == NULL)
  703. panic("scan_scsis_single: Host queue == NULLn");
  704. SDtail = shpnt->host_queue;
  705. while (SDtail->next) {
  706. SDtail = SDtail->next;
  707. }
  708. /* Add this device to the linked list at the end */
  709. SDtail->next = SDpnt;
  710. SDpnt->prev = SDtail;
  711. SDpnt->next = NULL;
  712. /*
  713.  * Some scsi devices cannot be polled for lun != 0 due to firmware bugs
  714.  */
  715. if (bflags & BLIST_NOLUN)
  716. return 0; /* break; */
  717. /*
  718.  * If this device is known to support sparse multiple units, override the
  719.  * other settings, and scan all of them.
  720.  */
  721. if (bflags & BLIST_SPARSELUN) {
  722. *max_dev_lun = shpnt->max_lun;
  723. *sparse_lun = 1;
  724. return 1;
  725. }
  726. /*
  727.  * If this device is known to support multiple units, override the other
  728.  * settings, and scan all of them.
  729.  */
  730. if (bflags & BLIST_FORCELUN) {
  731. /* 
  732.  * Scanning MAX_SCSI_LUNS units would be a bad idea.
  733.  * Any better idea?
  734.  * I think we need REPORT LUNS in future to avoid scanning
  735.  * of unused LUNs. But, that is another item.
  736.  */
  737. if (*max_dev_lun < shpnt->max_lun)
  738. *max_dev_lun = shpnt->max_lun;
  739. else  if ((max_scsi_luns >> 1) >= *max_dev_lun)
  740. *max_dev_lun += shpnt->max_lun;
  741. else *max_dev_lun = max_scsi_luns;
  742. return 1;
  743. }
  744. /*
  745.  * REGAL CDC-4X: avoid hang after LUN 4
  746.  */
  747. if (bflags & BLIST_MAX5LUN) {
  748. *max_dev_lun = 5;
  749. return 1;
  750. }
  751. /*
  752.  * We assume the device can't handle lun!=0 if: - it reports scsi-0
  753.  * (ANSI SCSI Revision 0) (old drives like MAXTOR XT-3280) or - it
  754.  * reports scsi-1 (ANSI SCSI Revision 1) and Response Data Format 0
  755.  */
  756. if (((scsi_result[2] & 0x07) == 0)
  757.     ||
  758.     ((scsi_result[2] & 0x07) == 1 &&
  759.      (scsi_result[3] & 0x0f) == 0))
  760. return 0;
  761. return 1;
  762. }
  763. /*
  764.  * The worker for scan_scsis.
  765.  * Returns the scsi_level of lun0 on this host, channel and dev (if already
  766.  * known), otherwise returns SCSI_2.
  767.  */
  768. static int find_lun0_scsi_level(unsigned int channel, unsigned int dev,
  769. struct Scsi_Host *shpnt)
  770. {
  771. int res = SCSI_2;
  772. Scsi_Device *SDpnt;
  773. for (SDpnt = shpnt->host_queue; SDpnt; SDpnt = SDpnt->next)
  774. {
  775. if ((0 == SDpnt->lun) && (dev == SDpnt->id) &&
  776.     (channel == SDpnt->channel))
  777. return (int)SDpnt->scsi_level;
  778. }
  779. /* haven't found lun0, should send INQUIRY but take easy route */
  780. return res;
  781. }