sd.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  1. /*
  2. * sd.c Copyright (C) 1992 Drew Eckhardt
  3. * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
  4. *
  5. * Linux scsi disk driver
  6. * Initial versions: Drew Eckhardt
  7. * Subsequent revisions: Eric Youngdale
  8. * Modification history:
  9. * - Drew Eckhardt <drew@colorado.edu> original
  10. * - Eric Youngdale <eric@andante.org> add scatter-gather, multiple
  11. * outstanding request, and other enhancements.
  12. * Support loadable low-level scsi drivers.
  13. * - Jirka Hanika <geo@ff.cuni.cz> support more scsi disks using
  14. * eight major numbers.
  15. * - Richard Gooch <rgooch@atnf.csiro.au> support devfs.
  16. * - Torben Mathiasen <tmm@image.dk> Resource allocation fixes in
  17. * sd_init and cleanups.
  18. * - Alex Davis <letmein@erols.com> Fix problem where partition info
  19. * not being read in sd_open. Fix problem where removable media
  20. * could be ejected after sd_open.
  21. * - Douglas Gilbert <dgilbert@interlog.com> cleanup for lk 2.5.x
  22. * - Badari Pulavarty <pbadari@us.ibm.com>, Matthew Wilcox
  23. * <willy@debian.org>, Kurt Garloff <garloff@suse.de>:
  24. * Support 32k/1M disks.
  25. *
  26. * Logging policy (needs CONFIG_SCSI_LOGGING defined):
  27. * - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2
  28. * - end of transfer (bh + scsi_lib): SCSI_LOG_HLCOMPLETE level 1
  29. * - entering sd_ioctl: SCSI_LOG_IOCTL level 1
  30. * - entering other commands: SCSI_LOG_HLQUEUE level 3
  31. * Note: when the logging level is set by the user, it must be greater
  32. * than the level indicated above to trigger output.
  33. */
  34. #include <linux/config.h>
  35. #include <linux/module.h>
  36. #include <linux/fs.h>
  37. #include <linux/kernel.h>
  38. #include <linux/sched.h>
  39. #include <linux/mm.h>
  40. #include <linux/bio.h>
  41. #include <linux/genhd.h>
  42. #include <linux/hdreg.h>
  43. #include <linux/errno.h>
  44. #include <linux/idr.h>
  45. #include <linux/interrupt.h>
  46. #include <linux/init.h>
  47. #include <linux/blkdev.h>
  48. #include <linux/blkpg.h>
  49. #include <linux/delay.h>
  50. #include <linux/mutex.h>
  51. #include <asm/uaccess.h>
  52. #include <scsi/scsi.h>
  53. #include <scsi/scsi_cmnd.h>
  54. #include <scsi/scsi_dbg.h>
  55. #include <scsi/scsi_device.h>
  56. #include <scsi/scsi_driver.h>
  57. #include <scsi/scsi_eh.h>
  58. #include <scsi/scsi_host.h>
  59. #include <scsi/scsi_ioctl.h>
  60. #include <scsi/scsicam.h>
  61. #include "scsi_logging.h"
  62. /*
  63. * More than enough for everybody ;) The huge number of majors
  64. * is a leftover from 16bit dev_t days, we don't really need that
  65. * much numberspace.
  66. */
  67. #define SD_MAJORS 16
  68. MODULE_AUTHOR("Eric Youngdale");
  69. MODULE_DESCRIPTION("SCSI disk (sd) driver");
  70. MODULE_LICENSE("GPL");
  71. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
  72. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
  73. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
  74. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
  75. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
  76. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
  77. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
  78. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
  79. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
  80. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
  81. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
  82. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
  83. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
  84. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
  85. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
  86. MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
  87. /*
  88. * This is limited by the naming scheme enforced in sd_probe,
  89. * add another character to it if you really need more disks.
  90. */
  91. #define SD_MAX_DISKS (((26 * 26) + 26 + 1) * 26)
  92. /*
  93. * Time out in seconds for disks and Magneto-opticals (which are slower).
  94. */
  95. #define SD_TIMEOUT (30 * HZ)
  96. #define SD_MOD_TIMEOUT (75 * HZ)
  97. /*
  98. * Number of allowed retries
  99. */
  100. #define SD_MAX_RETRIES 5
  101. #define SD_PASSTHROUGH_RETRIES 1
  102. /*
  103. * Size of the initial data buffer for mode and read capacity data
  104. */
  105. #define SD_BUF_SIZE 512
  106. struct scsi_disk {
  107. struct scsi_driver *driver; /* always &sd_template */
  108. struct scsi_device *device;
  109. struct class_device cdev;
  110. struct gendisk *disk;
  111. unsigned int openers; /* protected by BKL for now, yuck */
  112. sector_t capacity; /* size in 512-byte sectors */
  113. u32 index;
  114. u8 media_present;
  115. u8 write_prot;
  116. unsigned WCE : 1; /* state of disk WCE bit */
  117. unsigned RCD : 1; /* state of disk RCD bit, unused */
  118. unsigned DPOFUA : 1; /* state of disk DPOFUA bit */
  119. };
  120. #define to_scsi_disk(obj) container_of(obj,struct scsi_disk,cdev)
  121. static DEFINE_IDR(sd_index_idr);
  122. static DEFINE_SPINLOCK(sd_index_lock);
  123. /* This semaphore is used to mediate the 0->1 reference get in the
  124. * face of object destruction (i.e. we can't allow a get on an
  125. * object after last put) */
  126. static DEFINE_MUTEX(sd_ref_mutex);
  127. static int sd_revalidate_disk(struct gendisk *disk);
  128. static void sd_rw_intr(struct scsi_cmnd * SCpnt);
  129. static int sd_probe(struct device *);
  130. static int sd_remove(struct device *);
  131. static void sd_shutdown(struct device *dev);
  132. static void sd_rescan(struct device *);
  133. static int sd_init_command(struct scsi_cmnd *);
  134. static int sd_issue_flush(struct device *, sector_t *);
  135. static void sd_prepare_flush(request_queue_t *, struct request *);
  136. static void sd_read_capacity(struct scsi_disk *sdkp, char *diskname,
  137. unsigned char *buffer);
  138. static void scsi_disk_release(struct class_device *cdev);
  139. static const char *sd_cache_types[] = {
  140. "write through", "none", "write back",
  141. "write back, no read (daft)"
  142. };
  143. static ssize_t sd_store_cache_type(struct class_device *cdev, const char *buf,
  144. size_t count)
  145. {
  146. int i, ct = -1, rcd, wce, sp;
  147. struct scsi_disk *sdkp = to_scsi_disk(cdev);
  148. struct scsi_device *sdp = sdkp->device;
  149. char buffer[64];
  150. char *buffer_data;
  151. struct scsi_mode_data data;
  152. struct scsi_sense_hdr sshdr;
  153. int len;
  154. if (sdp->type != TYPE_DISK)
  155. /* no cache control on RBC devices; theoretically they
  156. * can do it, but there's probably so many exceptions
  157. * it's not worth the risk */
  158. return -EINVAL;
  159. for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
  160. const int len = strlen(sd_cache_types[i]);
  161. if (strncmp(sd_cache_types[i], buf, len) == 0 &&
  162. buf[len] == '\n') {
  163. ct = i;
  164. break;
  165. }
  166. }
  167. if (ct < 0)
  168. return -EINVAL;
  169. rcd = ct & 0x01 ? 1 : 0;
  170. wce = ct & 0x02 ? 1 : 0;
  171. if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
  172. SD_MAX_RETRIES, &data, NULL))
  173. return -EINVAL;
  174. len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
  175. data.block_descriptor_length);
  176. buffer_data = buffer + data.header_length +
  177. data.block_descriptor_length;
  178. buffer_data[2] &= ~0x05;
  179. buffer_data[2] |= wce << 2 | rcd;
  180. sp = buffer_data[0] & 0x80 ? 1 : 0;
  181. if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
  182. SD_MAX_RETRIES, &data, &sshdr)) {
  183. if (scsi_sense_valid(&sshdr))
  184. scsi_print_sense_hdr(sdkp->disk->disk_name, &sshdr);
  185. return -EINVAL;
  186. }
  187. sd_revalidate_disk(sdkp->disk);
  188. return count;
  189. }
  190. static ssize_t sd_show_cache_type(struct class_device *cdev, char *buf)
  191. {
  192. struct scsi_disk *sdkp = to_scsi_disk(cdev);
  193. int ct = sdkp->RCD + 2*sdkp->WCE;
  194. return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
  195. }
  196. static ssize_t sd_show_fua(struct class_device *cdev, char *buf)
  197. {
  198. struct scsi_disk *sdkp = to_scsi_disk(cdev);
  199. return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
  200. }
  201. static struct class_device_attribute sd_disk_attrs[] = {
  202. __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
  203. sd_store_cache_type),
  204. __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
  205. __ATTR_NULL,
  206. };
  207. static struct class sd_disk_class = {
  208. .name = "scsi_disk",
  209. .owner = THIS_MODULE,
  210. .release = scsi_disk_release,
  211. .class_dev_attrs = sd_disk_attrs,
  212. };
  213. static struct scsi_driver sd_template = {
  214. .owner = THIS_MODULE,
  215. .gendrv = {
  216. .name = "sd",
  217. .probe = sd_probe,
  218. .remove = sd_remove,
  219. .shutdown = sd_shutdown,
  220. },
  221. .rescan = sd_rescan,
  222. .init_command = sd_init_command,
  223. .issue_flush = sd_issue_flush,
  224. };
  225. /*
  226. * Device no to disk mapping:
  227. *
  228. * major disc2 disc p1
  229. * |............|.............|....|....| <- dev_t
  230. * 31 20 19 8 7 4 3 0
  231. *
  232. * Inside a major, we have 16k disks, however mapped non-
  233. * contiguously. The first 16 disks are for major0, the next
  234. * ones with major1, ... Disk 256 is for major0 again, disk 272
  235. * for major1, ...
  236. * As we stay compatible with our numbering scheme, we can reuse
  237. * the well-know SCSI majors 8, 65--71, 136--143.
  238. */
  239. static int sd_major(int major_idx)
  240. {
  241. switch (major_idx) {
  242. case 0:
  243. return SCSI_DISK0_MAJOR;
  244. case 1 ... 7:
  245. return SCSI_DISK1_MAJOR + major_idx - 1;
  246. case 8 ... 15:
  247. return SCSI_DISK8_MAJOR + major_idx - 8;
  248. default:
  249. BUG();
  250. return 0; /* shut up gcc */
  251. }
  252. }
  253. static inline struct scsi_disk *scsi_disk(struct gendisk *disk)
  254. {
  255. return container_of(disk->private_data, struct scsi_disk, driver);
  256. }
  257. static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
  258. {
  259. struct scsi_disk *sdkp = NULL;
  260. if (disk->private_data) {
  261. sdkp = scsi_disk(disk);
  262. if (scsi_device_get(sdkp->device) == 0)
  263. class_device_get(&sdkp->cdev);
  264. else
  265. sdkp = NULL;
  266. }
  267. return sdkp;
  268. }
  269. static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
  270. {
  271. struct scsi_disk *sdkp;
  272. mutex_lock(&sd_ref_mutex);
  273. sdkp = __scsi_disk_get(disk);
  274. mutex_unlock(&sd_ref_mutex);
  275. return sdkp;
  276. }
  277. static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
  278. {
  279. struct scsi_disk *sdkp;
  280. mutex_lock(&sd_ref_mutex);
  281. sdkp = dev_get_drvdata(dev);
  282. if (sdkp)
  283. sdkp = __scsi_disk_get(sdkp->disk);
  284. mutex_unlock(&sd_ref_mutex);
  285. return sdkp;
  286. }
  287. static void scsi_disk_put(struct scsi_disk *sdkp)
  288. {
  289. struct scsi_device *sdev = sdkp->device;
  290. mutex_lock(&sd_ref_mutex);
  291. class_device_put(&sdkp->cdev);
  292. scsi_device_put(sdev);
  293. mutex_unlock(&sd_ref_mutex);
  294. }
  295. /**
  296. * sd_init_command - build a scsi (read or write) command from
  297. * information in the request structure.
  298. * @SCpnt: pointer to mid-level's per scsi command structure that
  299. * contains request and into which the scsi command is written
  300. *
  301. * Returns 1 if successful and 0 if error (or cannot be done now).
  302. **/
  303. static int sd_init_command(struct scsi_cmnd * SCpnt)
  304. {
  305. struct scsi_device *sdp = SCpnt->device;
  306. struct request *rq = SCpnt->request;
  307. struct gendisk *disk = rq->rq_disk;
  308. sector_t block = rq->sector;
  309. unsigned int this_count = SCpnt->request_bufflen >> 9;
  310. unsigned int timeout = sdp->timeout;
  311. SCSI_LOG_HLQUEUE(1, printk("sd_init_command: disk=%s, block=%llu, "
  312. "count=%d\n", disk->disk_name,
  313. (unsigned long long)block, this_count));
  314. if (!sdp || !scsi_device_online(sdp) ||
  315. block + rq->nr_sectors > get_capacity(disk)) {
  316. SCSI_LOG_HLQUEUE(2, printk("Finishing %ld sectors\n",
  317. rq->nr_sectors));
  318. SCSI_LOG_HLQUEUE(2, printk("Retry with 0x%p\n", SCpnt));
  319. return 0;
  320. }
  321. if (sdp->changed) {
  322. /*
  323. * quietly refuse to do anything to a changed disc until
  324. * the changed bit has been reset
  325. */
  326. /* printk("SCSI disk has been changed. Prohibiting further I/O.\n"); */
  327. return 0;
  328. }
  329. SCSI_LOG_HLQUEUE(2, printk("%s : block=%llu\n",
  330. disk->disk_name, (unsigned long long)block));
  331. /*
  332. * If we have a 1K hardware sectorsize, prevent access to single
  333. * 512 byte sectors. In theory we could handle this - in fact
  334. * the scsi cdrom driver must be able to handle this because
  335. * we typically use 1K blocksizes, and cdroms typically have
  336. * 2K hardware sectorsizes. Of course, things are simpler
  337. * with the cdrom, since it is read-only. For performance
  338. * reasons, the filesystems should be able to handle this
  339. * and not force the scsi disk driver to use bounce buffers
  340. * for this.
  341. */
  342. if (sdp->sector_size == 1024) {
  343. if ((block & 1) || (rq->nr_sectors & 1)) {
  344. printk(KERN_ERR "sd: Bad block number requested");
  345. return 0;
  346. } else {
  347. block = block >> 1;
  348. this_count = this_count >> 1;
  349. }
  350. }
  351. if (sdp->sector_size == 2048) {
  352. if ((block & 3) || (rq->nr_sectors & 3)) {
  353. printk(KERN_ERR "sd: Bad block number requested");
  354. return 0;
  355. } else {
  356. block = block >> 2;
  357. this_count = this_count >> 2;
  358. }
  359. }
  360. if (sdp->sector_size == 4096) {
  361. if ((block & 7) || (rq->nr_sectors & 7)) {
  362. printk(KERN_ERR "sd: Bad block number requested");
  363. return 0;
  364. } else {
  365. block = block >> 3;
  366. this_count = this_count >> 3;
  367. }
  368. }
  369. if (rq_data_dir(rq) == WRITE) {
  370. if (!sdp->writeable) {
  371. return 0;
  372. }
  373. SCpnt->cmnd[0] = WRITE_6;
  374. SCpnt->sc_data_direction = DMA_TO_DEVICE;
  375. } else if (rq_data_dir(rq) == READ) {
  376. SCpnt->cmnd[0] = READ_6;
  377. SCpnt->sc_data_direction = DMA_FROM_DEVICE;
  378. } else {
  379. printk(KERN_ERR "sd: Unknown command %lx\n", rq->flags);
  380. /* overkill panic("Unknown sd command %lx\n", rq->flags); */
  381. return 0;
  382. }
  383. SCSI_LOG_HLQUEUE(2, printk("%s : %s %d/%ld 512 byte blocks.\n",
  384. disk->disk_name, (rq_data_dir(rq) == WRITE) ?
  385. "writing" : "reading", this_count, rq->nr_sectors));
  386. SCpnt->cmnd[1] = 0;
  387. if (block > 0xffffffff) {
  388. SCpnt->cmnd[0] += READ_16 - READ_6;
  389. SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
  390. SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
  391. SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
  392. SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
  393. SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
  394. SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
  395. SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
  396. SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
  397. SCpnt->cmnd[9] = (unsigned char) block & 0xff;
  398. SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
  399. SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
  400. SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
  401. SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
  402. SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
  403. } else if ((this_count > 0xff) || (block > 0x1fffff) ||
  404. SCpnt->device->use_10_for_rw) {
  405. if (this_count > 0xffff)
  406. this_count = 0xffff;
  407. SCpnt->cmnd[0] += READ_10 - READ_6;
  408. SCpnt->cmnd[1] |= blk_fua_rq(rq) ? 0x8 : 0;
  409. SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
  410. SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
  411. SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
  412. SCpnt->cmnd[5] = (unsigned char) block & 0xff;
  413. SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
  414. SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
  415. SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
  416. } else {
  417. if (unlikely(blk_fua_rq(rq))) {
  418. /*
  419. * This happens only if this drive failed
  420. * 10byte rw command with ILLEGAL_REQUEST
  421. * during operation and thus turned off
  422. * use_10_for_rw.
  423. */
  424. printk(KERN_ERR "sd: FUA write on READ/WRITE(6) drive\n");
  425. return 0;
  426. }
  427. SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
  428. SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
  429. SCpnt->cmnd[3] = (unsigned char) block & 0xff;
  430. SCpnt->cmnd[4] = (unsigned char) this_count;
  431. SCpnt->cmnd[5] = 0;
  432. }
  433. SCpnt->request_bufflen = SCpnt->bufflen =
  434. this_count * sdp->sector_size;
  435. /*
  436. * We shouldn't disconnect in the middle of a sector, so with a dumb
  437. * host adapter, it's safe to assume that we can at least transfer
  438. * this many bytes between each connect / disconnect.
  439. */
  440. SCpnt->transfersize = sdp->sector_size;
  441. SCpnt->underflow = this_count << 9;
  442. SCpnt->allowed = SD_MAX_RETRIES;
  443. SCpnt->timeout_per_command = timeout;
  444. /*
  445. * This is the completion routine we use. This is matched in terms
  446. * of capability to this function.
  447. */
  448. SCpnt->done = sd_rw_intr;
  449. /*
  450. * This indicates that the command is ready from our end to be
  451. * queued.
  452. */
  453. return 1;
  454. }
  455. /**
  456. * sd_open - open a scsi disk device
  457. * @inode: only i_rdev member may be used
  458. * @filp: only f_mode and f_flags may be used
  459. *
  460. * Returns 0 if successful. Returns a negated errno value in case
  461. * of error.
  462. *
  463. * Note: This can be called from a user context (e.g. fsck(1) )
  464. * or from within the kernel (e.g. as a result of a mount(1) ).
  465. * In the latter case @inode and @filp carry an abridged amount
  466. * of information as noted above.
  467. **/
  468. static int sd_open(struct inode *inode, struct file *filp)
  469. {
  470. struct gendisk *disk = inode->i_bdev->bd_disk;
  471. struct scsi_disk *sdkp;
  472. struct scsi_device *sdev;
  473. int retval;
  474. if (!(sdkp = scsi_disk_get(disk)))
  475. return -ENXIO;
  476. SCSI_LOG_HLQUEUE(3, printk("sd_open: disk=%s\n", disk->disk_name));
  477. sdev = sdkp->device;
  478. /*
  479. * If the device is in error recovery, wait until it is done.
  480. * If the device is offline, then disallow any access to it.
  481. */
  482. retval = -ENXIO;
  483. if (!scsi_block_when_processing_errors(sdev))
  484. goto error_out;
  485. if (sdev->removable || sdkp->write_prot)
  486. check_disk_change(inode->i_bdev);
  487. /*
  488. * If the drive is empty, just let the open fail.
  489. */
  490. retval = -ENOMEDIUM;
  491. if (sdev->removable && !sdkp->media_present &&
  492. !(filp->f_flags & O_NDELAY))
  493. goto error_out;
  494. /*
  495. * If the device has the write protect tab set, have the open fail
  496. * if the user expects to be able to write to the thing.
  497. */
  498. retval = -EROFS;
  499. if (sdkp->write_prot && (filp->f_mode & FMODE_WRITE))
  500. goto error_out;
  501. /*
  502. * It is possible that the disk changing stuff resulted in
  503. * the device being taken offline. If this is the case,
  504. * report this to the user, and don't pretend that the
  505. * open actually succeeded.
  506. */
  507. retval = -ENXIO;
  508. if (!scsi_device_online(sdev))
  509. goto error_out;
  510. if (!sdkp->openers++ && sdev->removable) {
  511. if (scsi_block_when_processing_errors(sdev))
  512. scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
  513. }
  514. return 0;
  515. error_out:
  516. scsi_disk_put(sdkp);
  517. return retval;
  518. }
  519. /**
  520. * sd_release - invoked when the (last) close(2) is called on this
  521. * scsi disk.
  522. * @inode: only i_rdev member may be used
  523. * @filp: only f_mode and f_flags may be used
  524. *
  525. * Returns 0.
  526. *
  527. * Note: may block (uninterruptible) if error recovery is underway
  528. * on this disk.
  529. **/
  530. static int sd_release(struct inode *inode, struct file *filp)
  531. {
  532. struct gendisk *disk = inode->i_bdev->bd_disk;
  533. struct scsi_disk *sdkp = scsi_disk(disk);
  534. struct scsi_device *sdev = sdkp->device;
  535. SCSI_LOG_HLQUEUE(3, printk("sd_release: disk=%s\n", disk->disk_name));
  536. if (!--sdkp->openers && sdev->removable) {
  537. if (scsi_block_when_processing_errors(sdev))
  538. scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
  539. }
  540. /*
  541. * XXX and what if there are packets in flight and this close()
  542. * XXX is followed by a "rmmod sd_mod"?
  543. */
  544. scsi_disk_put(sdkp);
  545. return 0;
  546. }
  547. static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
  548. {
  549. struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
  550. struct scsi_device *sdp = sdkp->device;
  551. struct Scsi_Host *host = sdp->host;
  552. int diskinfo[4];
  553. /* default to most commonly used values */
  554. diskinfo[0] = 0x40; /* 1 << 6 */
  555. diskinfo[1] = 0x20; /* 1 << 5 */
  556. diskinfo[2] = sdkp->capacity >> 11;
  557. /* override with calculated, extended default, or driver values */
  558. if (host->hostt->bios_param)
  559. host->hostt->bios_param(sdp, bdev, sdkp->capacity, diskinfo);
  560. else
  561. scsicam_bios_param(bdev, sdkp->capacity, diskinfo);
  562. geo->heads = diskinfo[0];
  563. geo->sectors = diskinfo[1];
  564. geo->cylinders = diskinfo[2];
  565. return 0;
  566. }
  567. /**
  568. * sd_ioctl - process an ioctl
  569. * @inode: only i_rdev/i_bdev members may be used
  570. * @filp: only f_mode and f_flags may be used
  571. * @cmd: ioctl command number
  572. * @arg: this is third argument given to ioctl(2) system call.
  573. * Often contains a pointer.
  574. *
  575. * Returns 0 if successful (some ioctls return postive numbers on
  576. * success as well). Returns a negated errno value in case of error.
  577. *
  578. * Note: most ioctls are forward onto the block subsystem or further
  579. * down in the scsi subsytem.
  580. **/
  581. static int sd_ioctl(struct inode * inode, struct file * filp,
  582. unsigned int cmd, unsigned long arg)
  583. {
  584. struct block_device *bdev = inode->i_bdev;
  585. struct gendisk *disk = bdev->bd_disk;
  586. struct scsi_device *sdp = scsi_disk(disk)->device;
  587. void __user *p = (void __user *)arg;
  588. int error;
  589. SCSI_LOG_IOCTL(1, printk("sd_ioctl: disk=%s, cmd=0x%x\n",
  590. disk->disk_name, cmd));
  591. /*
  592. * If we are in the middle of error recovery, don't let anyone
  593. * else try and use this device. Also, if error recovery fails, it
  594. * may try and take the device offline, in which case all further
  595. * access to the device is prohibited.
  596. */
  597. error = scsi_nonblockable_ioctl(sdp, cmd, p, filp);
  598. if (!scsi_block_when_processing_errors(sdp) || !error)
  599. return error;
  600. /*
  601. * Send SCSI addressing ioctls directly to mid level, send other
  602. * ioctls to block level and then onto mid level if they can't be
  603. * resolved.
  604. */
  605. switch (cmd) {
  606. case SCSI_IOCTL_GET_IDLUN:
  607. case SCSI_IOCTL_GET_BUS_NUMBER:
  608. return scsi_ioctl(sdp, cmd, p);
  609. default:
  610. error = scsi_cmd_ioctl(filp, disk, cmd, p);
  611. if (error != -ENOTTY)
  612. return error;
  613. }
  614. return scsi_ioctl(sdp, cmd, p);
  615. }
  616. static void set_media_not_present(struct scsi_disk *sdkp)
  617. {
  618. sdkp->media_present = 0;
  619. sdkp->capacity = 0;
  620. sdkp->device->changed = 1;
  621. }
  622. /**
  623. * sd_media_changed - check if our medium changed
  624. * @disk: kernel device descriptor
  625. *
  626. * Returns 0 if not applicable or no change; 1 if change
  627. *
  628. * Note: this function is invoked from the block subsystem.
  629. **/
  630. static int sd_media_changed(struct gendisk *disk)
  631. {
  632. struct scsi_disk *sdkp = scsi_disk(disk);
  633. struct scsi_device *sdp = sdkp->device;
  634. int retval;
  635. SCSI_LOG_HLQUEUE(3, printk("sd_media_changed: disk=%s\n",
  636. disk->disk_name));
  637. if (!sdp->removable)
  638. return 0;
  639. /*
  640. * If the device is offline, don't send any commands - just pretend as
  641. * if the command failed. If the device ever comes back online, we
  642. * can deal with it then. It is only because of unrecoverable errors
  643. * that we would ever take a device offline in the first place.
  644. */
  645. if (!scsi_device_online(sdp))
  646. goto not_present;
  647. /*
  648. * Using TEST_UNIT_READY enables differentiation between drive with
  649. * no cartridge loaded - NOT READY, drive with changed cartridge -
  650. * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
  651. *
  652. * Drives that auto spin down. eg iomega jaz 1G, will be started
  653. * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
  654. * sd_revalidate() is called.
  655. */
  656. retval = -ENODEV;
  657. if (scsi_block_when_processing_errors(sdp))
  658. retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES);
  659. /*
  660. * Unable to test, unit probably not ready. This usually
  661. * means there is no disc in the drive. Mark as changed,
  662. * and we will figure it out later once the drive is
  663. * available again.
  664. */
  665. if (retval)
  666. goto not_present;
  667. /*
  668. * For removable scsi disk we have to recognise the presence
  669. * of a disk in the drive. This is kept in the struct scsi_disk
  670. * struct and tested at open ! Daniel Roche (dan@lectra.fr)
  671. */
  672. sdkp->media_present = 1;
  673. retval = sdp->changed;
  674. sdp->changed = 0;
  675. return retval;
  676. not_present:
  677. set_media_not_present(sdkp);
  678. return 1;
  679. }
  680. static int sd_sync_cache(struct scsi_device *sdp)
  681. {
  682. int retries, res;
  683. struct scsi_sense_hdr sshdr;
  684. if (!scsi_device_online(sdp))
  685. return -ENODEV;
  686. for (retries = 3; retries > 0; --retries) {
  687. unsigned char cmd[10] = { 0 };
  688. cmd[0] = SYNCHRONIZE_CACHE;
  689. /*
  690. * Leave the rest of the command zero to indicate
  691. * flush everything.
  692. */
  693. res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
  694. SD_TIMEOUT, SD_MAX_RETRIES);
  695. if (res == 0)
  696. break;
  697. }
  698. if (res) { printk(KERN_WARNING "FAILED\n status = %x, message = %02x, "
  699. "host = %d, driver = %02x\n ",
  700. status_byte(res), msg_byte(res),
  701. host_byte(res), driver_byte(res));
  702. if (driver_byte(res) & DRIVER_SENSE)
  703. scsi_print_sense_hdr("sd", &sshdr);
  704. }
  705. return res;
  706. }
  707. static int sd_issue_flush(struct device *dev, sector_t *error_sector)
  708. {
  709. int ret = 0;
  710. struct scsi_device *sdp = to_scsi_device(dev);
  711. struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
  712. if (!sdkp)
  713. return -ENODEV;
  714. if (sdkp->WCE)
  715. ret = sd_sync_cache(sdp);
  716. scsi_disk_put(sdkp);
  717. return ret;
  718. }
  719. static void sd_prepare_flush(request_queue_t *q, struct request *rq)
  720. {
  721. memset(rq->cmd, 0, sizeof(rq->cmd));
  722. rq->flags |= REQ_BLOCK_PC;
  723. rq->timeout = SD_TIMEOUT;
  724. rq->cmd[0] = SYNCHRONIZE_CACHE;
  725. rq->cmd_len = 10;
  726. }
  727. static void sd_rescan(struct device *dev)
  728. {
  729. struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
  730. if (sdkp) {
  731. sd_revalidate_disk(sdkp->disk);
  732. scsi_disk_put(sdkp);
  733. }
  734. }
  735. #ifdef CONFIG_COMPAT
  736. /*
  737. * This gets directly called from VFS. When the ioctl
  738. * is not recognized we go back to the other translation paths.
  739. */
  740. static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  741. {
  742. struct block_device *bdev = file->f_dentry->d_inode->i_bdev;
  743. struct gendisk *disk = bdev->bd_disk;
  744. struct scsi_device *sdev = scsi_disk(disk)->device;
  745. /*
  746. * If we are in the middle of error recovery, don't let anyone
  747. * else try and use this device. Also, if error recovery fails, it
  748. * may try and take the device offline, in which case all further
  749. * access to the device is prohibited.
  750. */
  751. if (!scsi_block_when_processing_errors(sdev))
  752. return -ENODEV;
  753. if (sdev->host->hostt->compat_ioctl) {
  754. int ret;
  755. ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
  756. return ret;
  757. }
  758. /*
  759. * Let the static ioctl translation table take care of it.
  760. */
  761. return -ENOIOCTLCMD;
  762. }
  763. #endif
  764. static struct block_device_operations sd_fops = {
  765. .owner = THIS_MODULE,
  766. .open = sd_open,
  767. .release = sd_release,
  768. .ioctl = sd_ioctl,
  769. .getgeo = sd_getgeo,
  770. #ifdef CONFIG_COMPAT
  771. .compat_ioctl = sd_compat_ioctl,
  772. #endif
  773. .media_changed = sd_media_changed,
  774. .revalidate_disk = sd_revalidate_disk,
  775. };
  776. /**
  777. * sd_rw_intr - bottom half handler: called when the lower level
  778. * driver has completed (successfully or otherwise) a scsi command.
  779. * @SCpnt: mid-level's per command structure.
  780. *
  781. * Note: potentially run from within an ISR. Must not block.
  782. **/
  783. static void sd_rw_intr(struct scsi_cmnd * SCpnt)
  784. {
  785. int result = SCpnt->result;
  786. unsigned int xfer_size = SCpnt->request_bufflen;
  787. unsigned int good_bytes = result ? 0 : xfer_size;
  788. u64 start_lba = SCpnt->request->sector;
  789. u64 bad_lba;
  790. struct scsi_sense_hdr sshdr;
  791. int sense_valid = 0;
  792. int sense_deferred = 0;
  793. int info_valid;
  794. if (result) {
  795. sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
  796. if (sense_valid)
  797. sense_deferred = scsi_sense_is_deferred(&sshdr);
  798. }
  799. #ifdef CONFIG_SCSI_LOGGING
  800. SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: %s: res=0x%x\n",
  801. SCpnt->request->rq_disk->disk_name, result));
  802. if (sense_valid) {
  803. SCSI_LOG_HLCOMPLETE(1, printk("sd_rw_intr: sb[respc,sk,asc,"
  804. "ascq]=%x,%x,%x,%x\n", sshdr.response_code,
  805. sshdr.sense_key, sshdr.asc, sshdr.ascq));
  806. }
  807. #endif
  808. if (driver_byte(result) != DRIVER_SENSE &&
  809. (!sense_valid || sense_deferred))
  810. goto out;
  811. switch (sshdr.sense_key) {
  812. case HARDWARE_ERROR:
  813. case MEDIUM_ERROR:
  814. if (!blk_fs_request(SCpnt->request))
  815. goto out;
  816. info_valid = scsi_get_sense_info_fld(SCpnt->sense_buffer,
  817. SCSI_SENSE_BUFFERSIZE,
  818. &bad_lba);
  819. if (!info_valid)
  820. goto out;
  821. if (xfer_size <= SCpnt->device->sector_size)
  822. goto out;
  823. switch (SCpnt->device->sector_size) {
  824. case 256:
  825. start_lba <<= 1;
  826. break;
  827. case 512:
  828. break;
  829. case 1024:
  830. start_lba >>= 1;
  831. break;
  832. case 2048:
  833. start_lba >>= 2;
  834. break;
  835. case 4096:
  836. start_lba >>= 3;
  837. break;
  838. default:
  839. /* Print something here with limiting frequency. */
  840. goto out;
  841. break;
  842. }
  843. /* This computation should always be done in terms of
  844. * the resolution of the device's medium.
  845. */
  846. good_bytes = (bad_lba - start_lba)*SCpnt->device->sector_size;
  847. break;
  848. case RECOVERED_ERROR:
  849. case NO_SENSE:
  850. /* Inform the user, but make sure that it's not treated
  851. * as a hard error.
  852. */
  853. scsi_print_sense("sd", SCpnt);
  854. SCpnt->result = 0;
  855. memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
  856. good_bytes = xfer_size;
  857. break;
  858. case ILLEGAL_REQUEST:
  859. if (SCpnt->device->use_10_for_rw &&
  860. (SCpnt->cmnd[0] == READ_10 ||
  861. SCpnt->cmnd[0] == WRITE_10))
  862. SCpnt->device->use_10_for_rw = 0;
  863. if (SCpnt->device->use_10_for_ms &&
  864. (SCpnt->cmnd[0] == MODE_SENSE_10 ||
  865. SCpnt->cmnd[0] == MODE_SELECT_10))
  866. SCpnt->device->use_10_for_ms = 0;
  867. break;
  868. default:
  869. break;
  870. }
  871. out:
  872. scsi_io_completion(SCpnt, good_bytes);
  873. }
  874. static int media_not_present(struct scsi_disk *sdkp,
  875. struct scsi_sense_hdr *sshdr)
  876. {
  877. if (!scsi_sense_valid(sshdr))
  878. return 0;
  879. /* not invoked for commands that could return deferred errors */
  880. if (sshdr->sense_key != NOT_READY &&
  881. sshdr->sense_key != UNIT_ATTENTION)
  882. return 0;
  883. if (sshdr->asc != 0x3A) /* medium not present */
  884. return 0;
  885. set_media_not_present(sdkp);
  886. return 1;
  887. }
  888. /*
  889. * spinup disk - called only in sd_revalidate_disk()
  890. */
  891. static void
  892. sd_spinup_disk(struct scsi_disk *sdkp, char *diskname)
  893. {
  894. unsigned char cmd[10];
  895. unsigned long spintime_expire = 0;
  896. int retries, spintime;
  897. unsigned int the_result;
  898. struct scsi_sense_hdr sshdr;
  899. int sense_valid = 0;
  900. spintime = 0;
  901. /* Spin up drives, as required. Only do this at boot time */
  902. /* Spinup needs to be done for module loads too. */
  903. do {
  904. retries = 0;
  905. do {
  906. cmd[0] = TEST_UNIT_READY;
  907. memset((void *) &cmd[1], 0, 9);
  908. the_result = scsi_execute_req(sdkp->device, cmd,
  909. DMA_NONE, NULL, 0,
  910. &sshdr, SD_TIMEOUT,
  911. SD_MAX_RETRIES);
  912. if (the_result)
  913. sense_valid = scsi_sense_valid(&sshdr);
  914. retries++;
  915. } while (retries < 3 &&
  916. (!scsi_status_is_good(the_result) ||
  917. ((driver_byte(the_result) & DRIVER_SENSE) &&
  918. sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
  919. /*
  920. * If the drive has indicated to us that it doesn't have
  921. * any media in it, don't bother with any of the rest of
  922. * this crap.
  923. */
  924. if (media_not_present(sdkp, &sshdr))
  925. return;
  926. if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
  927. /* no sense, TUR either succeeded or failed
  928. * with a status error */
  929. if(!spintime && !scsi_status_is_good(the_result))
  930. printk(KERN_NOTICE "%s: Unit Not Ready, "
  931. "error = 0x%x\n", diskname, the_result);
  932. break;
  933. }
  934. /*
  935. * The device does not want the automatic start to be issued.
  936. */
  937. if (sdkp->device->no_start_on_add) {
  938. break;
  939. }
  940. /*
  941. * If manual intervention is required, or this is an
  942. * absent USB storage device, a spinup is meaningless.
  943. */
  944. if (sense_valid &&
  945. sshdr.sense_key == NOT_READY &&
  946. sshdr.asc == 4 && sshdr.ascq == 3) {
  947. break; /* manual intervention required */
  948. /*
  949. * Issue command to spin up drive when not ready
  950. */
  951. } else if (sense_valid && sshdr.sense_key == NOT_READY) {
  952. if (!spintime) {
  953. printk(KERN_NOTICE "%s: Spinning up disk...",
  954. diskname);
  955. cmd[0] = START_STOP;
  956. cmd[1] = 1; /* Return immediately */
  957. memset((void *) &cmd[2], 0, 8);
  958. cmd[4] = 1; /* Start spin cycle */
  959. scsi_execute_req(sdkp->device, cmd, DMA_NONE,
  960. NULL, 0, &sshdr,
  961. SD_TIMEOUT, SD_MAX_RETRIES);
  962. spintime_expire = jiffies + 100 * HZ;
  963. spintime = 1;
  964. }
  965. /* Wait 1 second for next try */
  966. msleep(1000);
  967. printk(".");
  968. /*
  969. * Wait for USB flash devices with slow firmware.
  970. * Yes, this sense key/ASC combination shouldn't
  971. * occur here. It's characteristic of these devices.
  972. */
  973. } else if (sense_valid &&
  974. sshdr.sense_key == UNIT_ATTENTION &&
  975. sshdr.asc == 0x28) {
  976. if (!spintime) {
  977. spintime_expire = jiffies + 5 * HZ;
  978. spintime = 1;
  979. }
  980. /* Wait 1 second for next try */
  981. msleep(1000);
  982. } else {
  983. /* we don't understand the sense code, so it's
  984. * probably pointless to loop */
  985. if(!spintime) {
  986. printk(KERN_NOTICE "%s: Unit Not Ready, "
  987. "sense:\n", diskname);
  988. scsi_print_sense_hdr("", &sshdr);
  989. }
  990. break;
  991. }
  992. } while (spintime && time_before_eq(jiffies, spintime_expire));
  993. if (spintime) {
  994. if (scsi_status_is_good(the_result))
  995. printk("ready\n");
  996. else
  997. printk("not responding...\n");
  998. }
  999. }
  1000. /*
  1001. * read disk capacity
  1002. */
  1003. static void
  1004. sd_read_capacity(struct scsi_disk *sdkp, char *diskname,
  1005. unsigned char *buffer)
  1006. {
  1007. unsigned char cmd[16];
  1008. int the_result, retries;
  1009. int sector_size = 0;
  1010. int longrc = 0;
  1011. struct scsi_sense_hdr sshdr;
  1012. int sense_valid = 0;
  1013. struct scsi_device *sdp = sdkp->device;
  1014. repeat:
  1015. retries = 3;
  1016. do {
  1017. if (longrc) {
  1018. memset((void *) cmd, 0, 16);
  1019. cmd[0] = SERVICE_ACTION_IN;
  1020. cmd[1] = SAI_READ_CAPACITY_16;
  1021. cmd[13] = 12;
  1022. memset((void *) buffer, 0, 12);
  1023. } else {
  1024. cmd[0] = READ_CAPACITY;
  1025. memset((void *) &cmd[1], 0, 9);
  1026. memset((void *) buffer, 0, 8);
  1027. }
  1028. the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
  1029. buffer, longrc ? 12 : 8, &sshdr,
  1030. SD_TIMEOUT, SD_MAX_RETRIES);
  1031. if (media_not_present(sdkp, &sshdr))
  1032. return;
  1033. if (the_result)
  1034. sense_valid = scsi_sense_valid(&sshdr);
  1035. retries--;
  1036. } while (the_result && retries);
  1037. if (the_result && !longrc) {
  1038. printk(KERN_NOTICE "%s : READ CAPACITY failed.\n"
  1039. "%s : status=%x, message=%02x, host=%d, driver=%02x \n",
  1040. diskname, diskname,
  1041. status_byte(the_result),
  1042. msg_byte(the_result),
  1043. host_byte(the_result),
  1044. driver_byte(the_result));
  1045. if (driver_byte(the_result) & DRIVER_SENSE)
  1046. scsi_print_sense_hdr("sd", &sshdr);
  1047. else
  1048. printk("%s : sense not available. \n", diskname);
  1049. /* Set dirty bit for removable devices if not ready -
  1050. * sometimes drives will not report this properly. */
  1051. if (sdp->removable &&
  1052. sense_valid && sshdr.sense_key == NOT_READY)
  1053. sdp->changed = 1;
  1054. /* Either no media are present but the drive didn't tell us,
  1055. or they are present but the read capacity command fails */
  1056. /* sdkp->media_present = 0; -- not always correct */
  1057. sdkp->capacity = 0x200000; /* 1 GB - random */
  1058. return;
  1059. } else if (the_result && longrc) {
  1060. /* READ CAPACITY(16) has been failed */
  1061. printk(KERN_NOTICE "%s : READ CAPACITY(16) failed.\n"
  1062. "%s : status=%x, message=%02x, host=%d, driver=%02x \n",
  1063. diskname, diskname,
  1064. status_byte(the_result),
  1065. msg_byte(the_result),
  1066. host_byte(the_result),
  1067. driver_byte(the_result));
  1068. printk(KERN_NOTICE "%s : use 0xffffffff as device size\n",
  1069. diskname);
  1070. sdkp->capacity = 1 + (sector_t) 0xffffffff;
  1071. goto got_data;
  1072. }
  1073. if (!longrc) {
  1074. sector_size = (buffer[4] << 24) |
  1075. (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
  1076. if (buffer[0] == 0xff && buffer[1] == 0xff &&
  1077. buffer[2] == 0xff && buffer[3] == 0xff) {
  1078. if(sizeof(sdkp->capacity) > 4) {
  1079. printk(KERN_NOTICE "%s : very big device. try to use"
  1080. " READ CAPACITY(16).\n", diskname);
  1081. longrc = 1;
  1082. goto repeat;
  1083. }
  1084. printk(KERN_ERR "%s: too big for this kernel. Use a "
  1085. "kernel compiled with support for large block "
  1086. "devices.\n", diskname);
  1087. sdkp->capacity = 0;
  1088. goto got_data;
  1089. }
  1090. sdkp->capacity = 1 + (((sector_t)buffer[0] << 24) |
  1091. (buffer[1] << 16) |
  1092. (buffer[2] << 8) |
  1093. buffer[3]);
  1094. } else {
  1095. sdkp->capacity = 1 + (((u64)buffer[0] << 56) |
  1096. ((u64)buffer[1] << 48) |
  1097. ((u64)buffer[2] << 40) |
  1098. ((u64)buffer[3] << 32) |
  1099. ((sector_t)buffer[4] << 24) |
  1100. ((sector_t)buffer[5] << 16) |
  1101. ((sector_t)buffer[6] << 8) |
  1102. (sector_t)buffer[7]);
  1103. sector_size = (buffer[8] << 24) |
  1104. (buffer[9] << 16) | (buffer[10] << 8) | buffer[11];
  1105. }
  1106. /* Some devices return the total number of sectors, not the
  1107. * highest sector number. Make the necessary adjustment. */
  1108. if (sdp->fix_capacity)
  1109. --sdkp->capacity;
  1110. got_data:
  1111. if (sector_size == 0) {
  1112. sector_size = 512;
  1113. printk(KERN_NOTICE "%s : sector size 0 reported, "
  1114. "assuming 512.\n", diskname);
  1115. }
  1116. if (sector_size != 512 &&
  1117. sector_size != 1024 &&
  1118. sector_size != 2048 &&
  1119. sector_size != 4096 &&
  1120. sector_size != 256) {
  1121. printk(KERN_NOTICE "%s : unsupported sector size "
  1122. "%d.\n", diskname, sector_size);
  1123. /*
  1124. * The user might want to re-format the drive with
  1125. * a supported sectorsize. Once this happens, it
  1126. * would be relatively trivial to set the thing up.
  1127. * For this reason, we leave the thing in the table.
  1128. */
  1129. sdkp->capacity = 0;
  1130. /*
  1131. * set a bogus sector size so the normal read/write
  1132. * logic in the block layer will eventually refuse any
  1133. * request on this device without tripping over power
  1134. * of two sector size assumptions
  1135. */
  1136. sector_size = 512;
  1137. }
  1138. {
  1139. /*
  1140. * The msdos fs needs to know the hardware sector size
  1141. * So I have created this table. See ll_rw_blk.c
  1142. * Jacques Gelinas (Jacques@solucorp.qc.ca)
  1143. */
  1144. int hard_sector = sector_size;
  1145. sector_t sz = (sdkp->capacity/2) * (hard_sector/256);
  1146. request_queue_t *queue = sdp->request_queue;
  1147. sector_t mb = sz;
  1148. blk_queue_hardsect_size(queue, hard_sector);
  1149. /* avoid 64-bit division on 32-bit platforms */
  1150. sector_div(sz, 625);
  1151. mb -= sz - 974;
  1152. sector_div(mb, 1950);
  1153. printk(KERN_NOTICE "SCSI device %s: "
  1154. "%llu %d-byte hdwr sectors (%llu MB)\n",
  1155. diskname, (unsigned long long)sdkp->capacity,
  1156. hard_sector, (unsigned long long)mb);
  1157. }
  1158. /* Rescale capacity to 512-byte units */
  1159. if (sector_size == 4096)
  1160. sdkp->capacity <<= 3;
  1161. else if (sector_size == 2048)
  1162. sdkp->capacity <<= 2;
  1163. else if (sector_size == 1024)
  1164. sdkp->capacity <<= 1;
  1165. else if (sector_size == 256)
  1166. sdkp->capacity >>= 1;
  1167. sdkp->device->sector_size = sector_size;
  1168. }
  1169. /* called with buffer of length 512 */
  1170. static inline int
  1171. sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
  1172. unsigned char *buffer, int len, struct scsi_mode_data *data,
  1173. struct scsi_sense_hdr *sshdr)
  1174. {
  1175. return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
  1176. SD_TIMEOUT, SD_MAX_RETRIES, data,
  1177. sshdr);
  1178. }
  1179. /*
  1180. * read write protect setting, if possible - called only in sd_revalidate_disk()
  1181. * called with buffer of length SD_BUF_SIZE
  1182. */
  1183. static void
  1184. sd_read_write_protect_flag(struct scsi_disk *sdkp, char *diskname,
  1185. unsigned char *buffer)
  1186. {
  1187. int res;
  1188. struct scsi_device *sdp = sdkp->device;
  1189. struct scsi_mode_data data;
  1190. set_disk_ro(sdkp->disk, 0);
  1191. if (sdp->skip_ms_page_3f) {
  1192. printk(KERN_NOTICE "%s: assuming Write Enabled\n", diskname);
  1193. return;
  1194. }
  1195. if (sdp->use_192_bytes_for_3f) {
  1196. res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
  1197. } else {
  1198. /*
  1199. * First attempt: ask for all pages (0x3F), but only 4 bytes.
  1200. * We have to start carefully: some devices hang if we ask
  1201. * for more than is available.
  1202. */
  1203. res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
  1204. /*
  1205. * Second attempt: ask for page 0 When only page 0 is
  1206. * implemented, a request for page 3F may return Sense Key
  1207. * 5: Illegal Request, Sense Code 24: Invalid field in
  1208. * CDB.
  1209. */
  1210. if (!scsi_status_is_good(res))
  1211. res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
  1212. /*
  1213. * Third attempt: ask 255 bytes, as we did earlier.
  1214. */
  1215. if (!scsi_status_is_good(res))
  1216. res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
  1217. &data, NULL);
  1218. }
  1219. if (!scsi_status_is_good(res)) {
  1220. printk(KERN_WARNING
  1221. "%s: test WP failed, assume Write Enabled\n", diskname);
  1222. } else {
  1223. sdkp->write_prot = ((data.device_specific & 0x80) != 0);
  1224. set_disk_ro(sdkp->disk, sdkp->write_prot);
  1225. printk(KERN_NOTICE "%s: Write Protect is %s\n", diskname,
  1226. sdkp->write_prot ? "on" : "off");
  1227. printk(KERN_DEBUG "%s: Mode Sense: %02x %02x %02x %02x\n",
  1228. diskname, buffer[0], buffer[1], buffer[2], buffer[3]);
  1229. }
  1230. }
  1231. /*
  1232. * sd_read_cache_type - called only from sd_revalidate_disk()
  1233. * called with buffer of length SD_BUF_SIZE
  1234. */
  1235. static void
  1236. sd_read_cache_type(struct scsi_disk *sdkp, char *diskname,
  1237. unsigned char *buffer)
  1238. {
  1239. int len = 0, res;
  1240. struct scsi_device *sdp = sdkp->device;
  1241. int dbd;
  1242. int modepage;
  1243. struct scsi_mode_data data;
  1244. struct scsi_sense_hdr sshdr;
  1245. if (sdp->skip_ms_page_8)
  1246. goto defaults;
  1247. if (sdp->type == TYPE_RBC) {
  1248. modepage = 6;
  1249. dbd = 8;
  1250. } else {
  1251. modepage = 8;
  1252. dbd = 0;
  1253. }
  1254. /* cautiously ask */
  1255. res = sd_do_mode_sense(sdp, dbd, modepage, buffer, 4, &data, &sshdr);
  1256. if (!scsi_status_is_good(res))
  1257. goto bad_sense;
  1258. if (!data.header_length) {
  1259. modepage = 6;
  1260. printk(KERN_ERR "%s: missing header in MODE_SENSE response\n",
  1261. diskname);
  1262. }
  1263. /* that went OK, now ask for the proper length */
  1264. len = data.length;
  1265. /*
  1266. * We're only interested in the first three bytes, actually.
  1267. * But the data cache page is defined for the first 20.
  1268. */
  1269. if (len < 3)
  1270. goto bad_sense;
  1271. if (len > 20)
  1272. len = 20;
  1273. /* Take headers and block descriptors into account */
  1274. len += data.header_length + data.block_descriptor_length;
  1275. if (len > SD_BUF_SIZE)
  1276. goto bad_sense;
  1277. /* Get the data */
  1278. res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len, &data, &sshdr);
  1279. if (scsi_status_is_good(res)) {
  1280. int ct = 0;
  1281. int offset = data.header_length + data.block_descriptor_length;
  1282. if (offset >= SD_BUF_SIZE - 2) {
  1283. printk(KERN_ERR "%s: malformed MODE SENSE response",
  1284. diskname);
  1285. goto defaults;
  1286. }
  1287. if ((buffer[offset] & 0x3f) != modepage) {
  1288. printk(KERN_ERR "%s: got wrong page\n", diskname);
  1289. goto defaults;
  1290. }
  1291. if (modepage == 8) {
  1292. sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
  1293. sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
  1294. } else {
  1295. sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
  1296. sdkp->RCD = 0;
  1297. }
  1298. sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
  1299. if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
  1300. printk(KERN_NOTICE "SCSI device %s: uses "
  1301. "READ/WRITE(6), disabling FUA\n", diskname);
  1302. sdkp->DPOFUA = 0;
  1303. }
  1304. ct = sdkp->RCD + 2*sdkp->WCE;
  1305. printk(KERN_NOTICE "SCSI device %s: drive cache: %s%s\n",
  1306. diskname, sd_cache_types[ct],
  1307. sdkp->DPOFUA ? " w/ FUA" : "");
  1308. return;
  1309. }
  1310. bad_sense:
  1311. if (scsi_sense_valid(&sshdr) &&
  1312. sshdr.sense_key == ILLEGAL_REQUEST &&
  1313. sshdr.asc == 0x24 && sshdr.ascq == 0x0)
  1314. printk(KERN_NOTICE "%s: cache data unavailable\n",
  1315. diskname); /* Invalid field in CDB */
  1316. else
  1317. printk(KERN_ERR "%s: asking for cache data failed\n",
  1318. diskname);
  1319. defaults:
  1320. printk(KERN_ERR "%s: assuming drive cache: write through\n",
  1321. diskname);
  1322. sdkp->WCE = 0;
  1323. sdkp->RCD = 0;
  1324. sdkp->DPOFUA = 0;
  1325. }
  1326. /**
  1327. * sd_revalidate_disk - called the first time a new disk is seen,
  1328. * performs disk spin up, read_capacity, etc.
  1329. * @disk: struct gendisk we care about
  1330. **/
  1331. static int sd_revalidate_disk(struct gendisk *disk)
  1332. {
  1333. struct scsi_disk *sdkp = scsi_disk(disk);
  1334. struct scsi_device *sdp = sdkp->device;
  1335. unsigned char *buffer;
  1336. unsigned ordered;
  1337. SCSI_LOG_HLQUEUE(3, printk("sd_revalidate_disk: disk=%s\n", disk->disk_name));
  1338. /*
  1339. * If the device is offline, don't try and read capacity or any
  1340. * of the other niceties.
  1341. */
  1342. if (!scsi_device_online(sdp))
  1343. goto out;
  1344. buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL | __GFP_DMA);
  1345. if (!buffer) {
  1346. printk(KERN_WARNING "(sd_revalidate_disk:) Memory allocation "
  1347. "failure.\n");
  1348. goto out;
  1349. }
  1350. /* defaults, until the device tells us otherwise */
  1351. sdp->sector_size = 512;
  1352. sdkp->capacity = 0;
  1353. sdkp->media_present = 1;
  1354. sdkp->write_prot = 0;
  1355. sdkp->WCE = 0;
  1356. sdkp->RCD = 0;
  1357. sd_spinup_disk(sdkp, disk->disk_name);
  1358. /*
  1359. * Without media there is no reason to ask; moreover, some devices
  1360. * react badly if we do.
  1361. */
  1362. if (sdkp->media_present) {
  1363. sd_read_capacity(sdkp, disk->disk_name, buffer);
  1364. sd_read_write_protect_flag(sdkp, disk->disk_name, buffer);
  1365. sd_read_cache_type(sdkp, disk->disk_name, buffer);
  1366. }
  1367. /*
  1368. * We now have all cache related info, determine how we deal
  1369. * with ordered requests. Note that as the current SCSI
  1370. * dispatch function can alter request order, we cannot use
  1371. * QUEUE_ORDERED_TAG_* even when ordered tag is supported.
  1372. */
  1373. if (sdkp->WCE)
  1374. ordered = sdkp->DPOFUA
  1375. ? QUEUE_ORDERED_DRAIN_FUA : QUEUE_ORDERED_DRAIN_FLUSH;
  1376. else
  1377. ordered = QUEUE_ORDERED_DRAIN;
  1378. blk_queue_ordered(sdkp->disk->queue, ordered, sd_prepare_flush);
  1379. set_capacity(disk, sdkp->capacity);
  1380. kfree(buffer);
  1381. out:
  1382. return 0;
  1383. }
  1384. /**
  1385. * sd_probe - called during driver initialization and whenever a
  1386. * new scsi device is attached to the system. It is called once
  1387. * for each scsi device (not just disks) present.
  1388. * @dev: pointer to device object
  1389. *
  1390. * Returns 0 if successful (or not interested in this scsi device
  1391. * (e.g. scanner)); 1 when there is an error.
  1392. *
  1393. * Note: this function is invoked from the scsi mid-level.
  1394. * This function sets up the mapping between a given
  1395. * <host,channel,id,lun> (found in sdp) and new device name
  1396. * (e.g. /dev/sda). More precisely it is the block device major
  1397. * and minor number that is chosen here.
  1398. *
  1399. * Assume sd_attach is not re-entrant (for time being)
  1400. * Also think about sd_attach() and sd_remove() running coincidentally.
  1401. **/
  1402. static int sd_probe(struct device *dev)
  1403. {
  1404. struct scsi_device *sdp = to_scsi_device(dev);
  1405. struct scsi_disk *sdkp;
  1406. struct gendisk *gd;
  1407. u32 index;
  1408. int error;
  1409. error = -ENODEV;
  1410. if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
  1411. goto out;
  1412. SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
  1413. "sd_attach\n"));
  1414. error = -ENOMEM;
  1415. sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
  1416. if (!sdkp)
  1417. goto out;
  1418. gd = alloc_disk(16);
  1419. if (!gd)
  1420. goto out_free;
  1421. if (!idr_pre_get(&sd_index_idr, GFP_KERNEL))
  1422. goto out_put;
  1423. spin_lock(&sd_index_lock);
  1424. error = idr_get_new(&sd_index_idr, NULL, &index);
  1425. spin_unlock(&sd_index_lock);
  1426. if (index >= SD_MAX_DISKS)
  1427. error = -EBUSY;
  1428. if (error)
  1429. goto out_put;
  1430. class_device_initialize(&sdkp->cdev);
  1431. sdkp->cdev.dev = &sdp->sdev_gendev;
  1432. sdkp->cdev.class = &sd_disk_class;
  1433. strncpy(sdkp->cdev.class_id, sdp->sdev_gendev.bus_id, BUS_ID_SIZE);
  1434. if (class_device_add(&sdkp->cdev))
  1435. goto out_put;
  1436. get_device(&sdp->sdev_gendev);
  1437. sdkp->device = sdp;
  1438. sdkp->driver = &sd_template;
  1439. sdkp->disk = gd;
  1440. sdkp->index = index;
  1441. sdkp->openers = 0;
  1442. if (!sdp->timeout) {
  1443. if (sdp->type != TYPE_MOD)
  1444. sdp->timeout = SD_TIMEOUT;
  1445. else
  1446. sdp->timeout = SD_MOD_TIMEOUT;
  1447. }
  1448. gd->major = sd_major((index & 0xf0) >> 4);
  1449. gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
  1450. gd->minors = 16;
  1451. gd->fops = &sd_fops;
  1452. if (index < 26) {
  1453. sprintf(gd->disk_name, "sd%c", 'a' + index % 26);
  1454. } else if (index < (26 + 1) * 26) {
  1455. sprintf(gd->disk_name, "sd%c%c",
  1456. 'a' + index / 26 - 1,'a' + index % 26);
  1457. } else {
  1458. const unsigned int m1 = (index / 26 - 1) / 26 - 1;
  1459. const unsigned int m2 = (index / 26 - 1) % 26;
  1460. const unsigned int m3 = index % 26;
  1461. sprintf(gd->disk_name, "sd%c%c%c",
  1462. 'a' + m1, 'a' + m2, 'a' + m3);
  1463. }
  1464. gd->private_data = &sdkp->driver;
  1465. gd->queue = sdkp->device->request_queue;
  1466. sd_revalidate_disk(gd);
  1467. gd->driverfs_dev = &sdp->sdev_gendev;
  1468. gd->flags = GENHD_FL_DRIVERFS;
  1469. if (sdp->removable)
  1470. gd->flags |= GENHD_FL_REMOVABLE;
  1471. dev_set_drvdata(dev, sdkp);
  1472. add_disk(gd);
  1473. sdev_printk(KERN_NOTICE, sdp, "Attached scsi %sdisk %s\n",
  1474. sdp->removable ? "removable " : "", gd->disk_name);
  1475. return 0;
  1476. out_put:
  1477. put_disk(gd);
  1478. out_free:
  1479. kfree(sdkp);
  1480. out:
  1481. return error;
  1482. }
  1483. /**
  1484. * sd_remove - called whenever a scsi disk (previously recognized by
  1485. * sd_probe) is detached from the system. It is called (potentially
  1486. * multiple times) during sd module unload.
  1487. * @sdp: pointer to mid level scsi device object
  1488. *
  1489. * Note: this function is invoked from the scsi mid-level.
  1490. * This function potentially frees up a device name (e.g. /dev/sdc)
  1491. * that could be re-used by a subsequent sd_probe().
  1492. * This function is not called when the built-in sd driver is "exit-ed".
  1493. **/
  1494. static int sd_remove(struct device *dev)
  1495. {
  1496. struct scsi_disk *sdkp = dev_get_drvdata(dev);
  1497. class_device_del(&sdkp->cdev);
  1498. del_gendisk(sdkp->disk);
  1499. sd_shutdown(dev);
  1500. mutex_lock(&sd_ref_mutex);
  1501. dev_set_drvdata(dev, NULL);
  1502. class_device_put(&sdkp->cdev);
  1503. mutex_unlock(&sd_ref_mutex);
  1504. return 0;
  1505. }
  1506. /**
  1507. * scsi_disk_release - Called to free the scsi_disk structure
  1508. * @cdev: pointer to embedded class device
  1509. *
  1510. * sd_ref_mutex must be held entering this routine. Because it is
  1511. * called on last put, you should always use the scsi_disk_get()
  1512. * scsi_disk_put() helpers which manipulate the semaphore directly
  1513. * and never do a direct class_device_put().
  1514. **/
  1515. static void scsi_disk_release(struct class_device *cdev)
  1516. {
  1517. struct scsi_disk *sdkp = to_scsi_disk(cdev);
  1518. struct gendisk *disk = sdkp->disk;
  1519. spin_lock(&sd_index_lock);
  1520. idr_remove(&sd_index_idr, sdkp->index);
  1521. spin_unlock(&sd_index_lock);
  1522. disk->private_data = NULL;
  1523. put_disk(disk);
  1524. put_device(&sdkp->device->sdev_gendev);
  1525. kfree(sdkp);
  1526. }
  1527. /*
  1528. * Send a SYNCHRONIZE CACHE instruction down to the device through
  1529. * the normal SCSI command structure. Wait for the command to
  1530. * complete.
  1531. */
  1532. static void sd_shutdown(struct device *dev)
  1533. {
  1534. struct scsi_device *sdp = to_scsi_device(dev);
  1535. struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
  1536. if (!sdkp)
  1537. return; /* this can happen */
  1538. if (sdkp->WCE) {
  1539. printk(KERN_NOTICE "Synchronizing SCSI cache for disk %s: \n",
  1540. sdkp->disk->disk_name);
  1541. sd_sync_cache(sdp);
  1542. }
  1543. scsi_disk_put(sdkp);
  1544. }
  1545. /**
  1546. * init_sd - entry point for this driver (both when built in or when
  1547. * a module).
  1548. *
  1549. * Note: this function registers this driver with the scsi mid-level.
  1550. **/
  1551. static int __init init_sd(void)
  1552. {
  1553. int majors = 0, i;
  1554. SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
  1555. for (i = 0; i < SD_MAJORS; i++)
  1556. if (register_blkdev(sd_major(i), "sd") == 0)
  1557. majors++;
  1558. if (!majors)
  1559. return -ENODEV;
  1560. class_register(&sd_disk_class);
  1561. return scsi_register_driver(&sd_template.gendrv);
  1562. }
  1563. /**
  1564. * exit_sd - exit point for this driver (when it is a module).
  1565. *
  1566. * Note: this function unregisters this driver from the scsi mid-level.
  1567. **/
  1568. static void __exit exit_sd(void)
  1569. {
  1570. int i;
  1571. SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
  1572. scsi_unregister_driver(&sd_template.gendrv);
  1573. for (i = 0; i < SD_MAJORS; i++)
  1574. unregister_blkdev(sd_major(i), "sd");
  1575. class_unregister(&sd_disk_class);
  1576. }
  1577. module_init(init_sd);
  1578. module_exit(exit_sd);