sd.c 50 KB

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