ide-cd.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163
  1. /*
  2. * ATAPI CD-ROM driver.
  3. *
  4. * Copyright (C) 1994-1996 Scott Snyder <snyder@fnald0.fnal.gov>
  5. * Copyright (C) 1996-1998 Erik Andersen <andersee@debian.org>
  6. * Copyright (C) 1998-2000 Jens Axboe <axboe@suse.de>
  7. * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
  8. *
  9. * May be copied or modified under the terms of the GNU General Public
  10. * License. See linux/COPYING for more information.
  11. *
  12. * See Documentation/cdrom/ide-cd for usage information.
  13. *
  14. * Suggestions are welcome. Patches that work are more welcome though. ;-)
  15. * For those wishing to work on this driver, please be sure you download
  16. * and comply with the latest Mt. Fuji (SFF8090 version 4) and ATAPI
  17. * (SFF-8020i rev 2.6) standards. These documents can be obtained by
  18. * anonymous ftp from:
  19. * ftp://fission.dt.wdc.com/pub/standards/SFF_atapi/spec/SFF8020-r2.6/PS/8020r26.ps
  20. * ftp://ftp.avc-pioneer.com/Mtfuji4/Spec/Fuji4r10.pdf
  21. *
  22. * For historical changelog please see:
  23. * Documentation/ide/ChangeLog.ide-cd.1994-2004
  24. */
  25. #define IDECD_VERSION "5.00"
  26. #include <linux/module.h>
  27. #include <linux/types.h>
  28. #include <linux/kernel.h>
  29. #include <linux/delay.h>
  30. #include <linux/timer.h>
  31. #include <linux/slab.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/errno.h>
  34. #include <linux/cdrom.h>
  35. #include <linux/ide.h>
  36. #include <linux/completion.h>
  37. #include <linux/mutex.h>
  38. #include <linux/bcd.h>
  39. /* For SCSI -> ATAPI command conversion */
  40. #include <scsi/scsi.h>
  41. #include <linux/irq.h>
  42. #include <linux/io.h>
  43. #include <asm/byteorder.h>
  44. #include <linux/uaccess.h>
  45. #include <asm/unaligned.h>
  46. #include "ide-cd.h"
  47. static DEFINE_MUTEX(idecd_ref_mutex);
  48. #define to_ide_cd(obj) container_of(obj, struct cdrom_info, kref)
  49. #define ide_cd_g(disk) \
  50. container_of((disk)->private_data, struct cdrom_info, driver)
  51. static struct cdrom_info *ide_cd_get(struct gendisk *disk)
  52. {
  53. struct cdrom_info *cd = NULL;
  54. mutex_lock(&idecd_ref_mutex);
  55. cd = ide_cd_g(disk);
  56. if (cd)
  57. kref_get(&cd->kref);
  58. mutex_unlock(&idecd_ref_mutex);
  59. return cd;
  60. }
  61. static void ide_cd_release(struct kref *);
  62. static void ide_cd_put(struct cdrom_info *cd)
  63. {
  64. mutex_lock(&idecd_ref_mutex);
  65. kref_put(&cd->kref, ide_cd_release);
  66. mutex_unlock(&idecd_ref_mutex);
  67. }
  68. /*
  69. * Generic packet command support and error handling routines.
  70. */
  71. /* Mark that we've seen a media change and invalidate our internal buffers. */
  72. static void cdrom_saw_media_change(ide_drive_t *drive)
  73. {
  74. struct cdrom_info *cd = drive->driver_data;
  75. cd->cd_flags |= IDE_CD_FLAG_MEDIA_CHANGED;
  76. cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID;
  77. }
  78. static int cdrom_log_sense(ide_drive_t *drive, struct request *rq,
  79. struct request_sense *sense)
  80. {
  81. int log = 0;
  82. if (!sense || !rq || (rq->cmd_flags & REQ_QUIET))
  83. return 0;
  84. switch (sense->sense_key) {
  85. case NO_SENSE:
  86. case RECOVERED_ERROR:
  87. break;
  88. case NOT_READY:
  89. /*
  90. * don't care about tray state messages for e.g. capacity
  91. * commands or in-progress or becoming ready
  92. */
  93. if (sense->asc == 0x3a || sense->asc == 0x04)
  94. break;
  95. log = 1;
  96. break;
  97. case ILLEGAL_REQUEST:
  98. /*
  99. * don't log START_STOP unit with LoEj set, since we cannot
  100. * reliably check if drive can auto-close
  101. */
  102. if (rq->cmd[0] == GPCMD_START_STOP_UNIT && sense->asc == 0x24)
  103. break;
  104. log = 1;
  105. break;
  106. case UNIT_ATTENTION:
  107. /*
  108. * Make good and sure we've seen this potential media change.
  109. * Some drives (i.e. Creative) fail to present the correct sense
  110. * key in the error register.
  111. */
  112. cdrom_saw_media_change(drive);
  113. break;
  114. default:
  115. log = 1;
  116. break;
  117. }
  118. return log;
  119. }
  120. static void cdrom_analyze_sense_data(ide_drive_t *drive,
  121. struct request *failed_command,
  122. struct request_sense *sense)
  123. {
  124. unsigned long sector;
  125. unsigned long bio_sectors;
  126. struct cdrom_info *info = drive->driver_data;
  127. if (!cdrom_log_sense(drive, failed_command, sense))
  128. return;
  129. /*
  130. * If a read toc is executed for a CD-R or CD-RW medium where the first
  131. * toc has not been recorded yet, it will fail with 05/24/00 (which is a
  132. * confusing error)
  133. */
  134. if (failed_command && failed_command->cmd[0] == GPCMD_READ_TOC_PMA_ATIP)
  135. if (sense->sense_key == 0x05 && sense->asc == 0x24)
  136. return;
  137. /* current error */
  138. if (sense->error_code == 0x70) {
  139. switch (sense->sense_key) {
  140. case MEDIUM_ERROR:
  141. case VOLUME_OVERFLOW:
  142. case ILLEGAL_REQUEST:
  143. if (!sense->valid)
  144. break;
  145. if (failed_command == NULL ||
  146. !blk_fs_request(failed_command))
  147. break;
  148. sector = (sense->information[0] << 24) |
  149. (sense->information[1] << 16) |
  150. (sense->information[2] << 8) |
  151. (sense->information[3]);
  152. if (drive->queue->hardsect_size == 2048)
  153. /* device sector size is 2K */
  154. sector <<= 2;
  155. bio_sectors = max(bio_sectors(failed_command->bio), 4U);
  156. sector &= ~(bio_sectors - 1);
  157. if (sector < get_capacity(info->disk) &&
  158. drive->probed_capacity - sector < 4 * 75)
  159. set_capacity(info->disk, sector);
  160. }
  161. }
  162. ide_cd_log_error(drive->name, failed_command, sense);
  163. }
  164. static void cdrom_queue_request_sense(ide_drive_t *drive, void *sense,
  165. struct request *failed_command)
  166. {
  167. struct cdrom_info *info = drive->driver_data;
  168. struct request *rq = &info->request_sense_request;
  169. if (sense == NULL)
  170. sense = &info->sense_data;
  171. /* stuff the sense request in front of our current request */
  172. blk_rq_init(NULL, rq);
  173. rq->cmd_type = REQ_TYPE_ATA_PC;
  174. rq->rq_disk = info->disk;
  175. rq->data = sense;
  176. rq->cmd[0] = GPCMD_REQUEST_SENSE;
  177. rq->cmd[4] = 18;
  178. rq->data_len = 18;
  179. rq->cmd_type = REQ_TYPE_SENSE;
  180. rq->cmd_flags |= REQ_PREEMPT;
  181. /* NOTE! Save the failed command in "rq->buffer" */
  182. rq->buffer = (void *) failed_command;
  183. ide_do_drive_cmd(drive, rq);
  184. }
  185. static void cdrom_end_request(ide_drive_t *drive, int uptodate)
  186. {
  187. struct request *rq = HWGROUP(drive)->rq;
  188. int nsectors = rq->hard_cur_sectors;
  189. if (blk_sense_request(rq) && uptodate) {
  190. /*
  191. * For REQ_TYPE_SENSE, "rq->buffer" points to the original
  192. * failed request
  193. */
  194. struct request *failed = (struct request *) rq->buffer;
  195. struct cdrom_info *info = drive->driver_data;
  196. void *sense = &info->sense_data;
  197. unsigned long flags;
  198. if (failed) {
  199. if (failed->sense) {
  200. sense = failed->sense;
  201. failed->sense_len = rq->sense_len;
  202. }
  203. cdrom_analyze_sense_data(drive, failed, sense);
  204. /*
  205. * now end the failed request
  206. */
  207. if (blk_fs_request(failed)) {
  208. if (ide_end_dequeued_request(drive, failed, 0,
  209. failed->hard_nr_sectors))
  210. BUG();
  211. } else {
  212. spin_lock_irqsave(&ide_lock, flags);
  213. if (__blk_end_request(failed, -EIO,
  214. failed->data_len))
  215. BUG();
  216. spin_unlock_irqrestore(&ide_lock, flags);
  217. }
  218. } else
  219. cdrom_analyze_sense_data(drive, NULL, sense);
  220. }
  221. if (!rq->current_nr_sectors && blk_fs_request(rq))
  222. uptodate = 1;
  223. /* make sure it's fully ended */
  224. if (blk_pc_request(rq))
  225. nsectors = (rq->data_len + 511) >> 9;
  226. if (!nsectors)
  227. nsectors = 1;
  228. ide_end_request(drive, uptodate, nsectors);
  229. }
  230. static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 st)
  231. {
  232. if (st & 0x80)
  233. return;
  234. ide_dump_status(drive, msg, st);
  235. }
  236. /*
  237. * Returns:
  238. * 0: if the request should be continued.
  239. * 1: if the request was ended.
  240. */
  241. static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret)
  242. {
  243. ide_hwif_t *hwif = drive->hwif;
  244. struct request *rq = hwif->hwgroup->rq;
  245. int stat, err, sense_key;
  246. /* check for errors */
  247. stat = hwif->tp_ops->read_status(hwif);
  248. if (stat_ret)
  249. *stat_ret = stat;
  250. if (OK_STAT(stat, good_stat, BAD_R_STAT))
  251. return 0;
  252. /* get the IDE error register */
  253. err = ide_read_error(drive);
  254. sense_key = err >> 4;
  255. if (rq == NULL) {
  256. printk(KERN_ERR "%s: missing rq in %s\n",
  257. drive->name, __func__);
  258. return 1;
  259. }
  260. if (blk_sense_request(rq)) {
  261. /*
  262. * We got an error trying to get sense info from the drive
  263. * (probably while trying to recover from a former error).
  264. * Just give up.
  265. */
  266. rq->cmd_flags |= REQ_FAILED;
  267. cdrom_end_request(drive, 0);
  268. ide_error(drive, "request sense failure", stat);
  269. return 1;
  270. } else if (blk_pc_request(rq) || rq->cmd_type == REQ_TYPE_ATA_PC) {
  271. /* All other functions, except for READ. */
  272. /*
  273. * if we have an error, pass back CHECK_CONDITION as the
  274. * scsi status byte
  275. */
  276. if (blk_pc_request(rq) && !rq->errors)
  277. rq->errors = SAM_STAT_CHECK_CONDITION;
  278. /* check for tray open */
  279. if (sense_key == NOT_READY) {
  280. cdrom_saw_media_change(drive);
  281. } else if (sense_key == UNIT_ATTENTION) {
  282. /* check for media change */
  283. cdrom_saw_media_change(drive);
  284. return 0;
  285. } else if (sense_key == ILLEGAL_REQUEST &&
  286. rq->cmd[0] == GPCMD_START_STOP_UNIT) {
  287. /*
  288. * Don't print error message for this condition--
  289. * SFF8090i indicates that 5/24/00 is the correct
  290. * response to a request to close the tray if the
  291. * drive doesn't have that capability.
  292. * cdrom_log_sense() knows this!
  293. */
  294. } else if (!(rq->cmd_flags & REQ_QUIET)) {
  295. /* otherwise, print an error */
  296. ide_dump_status(drive, "packet command error", stat);
  297. }
  298. rq->cmd_flags |= REQ_FAILED;
  299. /*
  300. * instead of playing games with moving completions around,
  301. * remove failed request completely and end it when the
  302. * request sense has completed
  303. */
  304. goto end_request;
  305. } else if (blk_fs_request(rq)) {
  306. int do_end_request = 0;
  307. /* handle errors from READ and WRITE requests */
  308. if (blk_noretry_request(rq))
  309. do_end_request = 1;
  310. if (sense_key == NOT_READY) {
  311. /* tray open */
  312. if (rq_data_dir(rq) == READ) {
  313. cdrom_saw_media_change(drive);
  314. /* fail the request */
  315. printk(KERN_ERR "%s: tray open\n", drive->name);
  316. do_end_request = 1;
  317. } else {
  318. struct cdrom_info *info = drive->driver_data;
  319. /*
  320. * Allow the drive 5 seconds to recover, some
  321. * devices will return this error while flushing
  322. * data from cache.
  323. */
  324. if (!rq->errors)
  325. info->write_timeout = jiffies +
  326. ATAPI_WAIT_WRITE_BUSY;
  327. rq->errors = 1;
  328. if (time_after(jiffies, info->write_timeout))
  329. do_end_request = 1;
  330. else {
  331. unsigned long flags;
  332. /*
  333. * take a breather relying on the unplug
  334. * timer to kick us again
  335. */
  336. spin_lock_irqsave(&ide_lock, flags);
  337. blk_plug_device(drive->queue);
  338. spin_unlock_irqrestore(&ide_lock,
  339. flags);
  340. return 1;
  341. }
  342. }
  343. } else if (sense_key == UNIT_ATTENTION) {
  344. /* media change */
  345. cdrom_saw_media_change(drive);
  346. /*
  347. * Arrange to retry the request but be sure to give up
  348. * if we've retried too many times.
  349. */
  350. if (++rq->errors > ERROR_MAX)
  351. do_end_request = 1;
  352. } else if (sense_key == ILLEGAL_REQUEST ||
  353. sense_key == DATA_PROTECT) {
  354. /*
  355. * No point in retrying after an illegal request or data
  356. * protect error.
  357. */
  358. ide_dump_status_no_sense(drive, "command error", stat);
  359. do_end_request = 1;
  360. } else if (sense_key == MEDIUM_ERROR) {
  361. /*
  362. * No point in re-trying a zillion times on a bad
  363. * sector. If we got here the error is not correctable.
  364. */
  365. ide_dump_status_no_sense(drive,
  366. "media error (bad sector)",
  367. stat);
  368. do_end_request = 1;
  369. } else if (sense_key == BLANK_CHECK) {
  370. /* disk appears blank ?? */
  371. ide_dump_status_no_sense(drive, "media error (blank)",
  372. stat);
  373. do_end_request = 1;
  374. } else if ((err & ~ABRT_ERR) != 0) {
  375. /* go to the default handler for other errors */
  376. ide_error(drive, "cdrom_decode_status", stat);
  377. return 1;
  378. } else if ((++rq->errors > ERROR_MAX)) {
  379. /* we've racked up too many retries, abort */
  380. do_end_request = 1;
  381. }
  382. /*
  383. * End a request through request sense analysis when we have
  384. * sense data. We need this in order to perform end of media
  385. * processing.
  386. */
  387. if (do_end_request)
  388. goto end_request;
  389. /*
  390. * If we got a CHECK_CONDITION status, queue
  391. * a request sense command.
  392. */
  393. if (stat & ERR_STAT)
  394. cdrom_queue_request_sense(drive, NULL, NULL);
  395. } else {
  396. blk_dump_rq_flags(rq, "ide-cd: bad rq");
  397. cdrom_end_request(drive, 0);
  398. }
  399. /* retry, or handle the next request */
  400. return 1;
  401. end_request:
  402. if (stat & ERR_STAT) {
  403. unsigned long flags;
  404. spin_lock_irqsave(&ide_lock, flags);
  405. blkdev_dequeue_request(rq);
  406. HWGROUP(drive)->rq = NULL;
  407. spin_unlock_irqrestore(&ide_lock, flags);
  408. cdrom_queue_request_sense(drive, rq->sense, rq);
  409. } else
  410. cdrom_end_request(drive, 0);
  411. return 1;
  412. }
  413. static int cdrom_timer_expiry(ide_drive_t *drive)
  414. {
  415. struct request *rq = HWGROUP(drive)->rq;
  416. unsigned long wait = 0;
  417. /*
  418. * Some commands are *slow* and normally take a long time to complete.
  419. * Usually we can use the ATAPI "disconnect" to bypass this, but not all
  420. * commands/drives support that. Let ide_timer_expiry keep polling us
  421. * for these.
  422. */
  423. switch (rq->cmd[0]) {
  424. case GPCMD_BLANK:
  425. case GPCMD_FORMAT_UNIT:
  426. case GPCMD_RESERVE_RZONE_TRACK:
  427. case GPCMD_CLOSE_TRACK:
  428. case GPCMD_FLUSH_CACHE:
  429. wait = ATAPI_WAIT_PC;
  430. break;
  431. default:
  432. if (!(rq->cmd_flags & REQ_QUIET))
  433. printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n",
  434. rq->cmd[0]);
  435. wait = 0;
  436. break;
  437. }
  438. return wait;
  439. }
  440. /*
  441. * Set up the device registers for transferring a packet command on DEV,
  442. * expecting to later transfer XFERLEN bytes. HANDLER is the routine
  443. * which actually transfers the command to the drive. If this is a
  444. * drq_interrupt device, this routine will arrange for HANDLER to be
  445. * called when the interrupt from the drive arrives. Otherwise, HANDLER
  446. * will be called immediately after the drive is prepared for the transfer.
  447. */
  448. static ide_startstop_t cdrom_start_packet_command(ide_drive_t *drive,
  449. int xferlen,
  450. ide_handler_t *handler)
  451. {
  452. struct cdrom_info *info = drive->driver_data;
  453. ide_hwif_t *hwif = drive->hwif;
  454. /* FIXME: for Virtual DMA we must check harder */
  455. if (info->dma)
  456. info->dma = !hwif->dma_ops->dma_setup(drive);
  457. /* set up the controller registers */
  458. ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL,
  459. xferlen, info->dma);
  460. if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) {
  461. /* waiting for CDB interrupt, not DMA yet. */
  462. if (info->dma)
  463. drive->waiting_for_dma = 0;
  464. /* packet command */
  465. ide_execute_command(drive, WIN_PACKETCMD, handler,
  466. ATAPI_WAIT_PC, cdrom_timer_expiry);
  467. return ide_started;
  468. } else {
  469. ide_execute_pkt_cmd(drive);
  470. return (*handler) (drive);
  471. }
  472. }
  473. /*
  474. * Send a packet command to DRIVE described by CMD_BUF and CMD_LEN. The device
  475. * registers must have already been prepared by cdrom_start_packet_command.
  476. * HANDLER is the interrupt handler to call when the command completes or
  477. * there's data ready.
  478. */
  479. #define ATAPI_MIN_CDB_BYTES 12
  480. static ide_startstop_t cdrom_transfer_packet_command(ide_drive_t *drive,
  481. struct request *rq,
  482. ide_handler_t *handler)
  483. {
  484. ide_hwif_t *hwif = drive->hwif;
  485. int cmd_len;
  486. struct cdrom_info *info = drive->driver_data;
  487. ide_startstop_t startstop;
  488. if (info->cd_flags & IDE_CD_FLAG_DRQ_INTERRUPT) {
  489. /*
  490. * Here we should have been called after receiving an interrupt
  491. * from the device. DRQ should how be set.
  492. */
  493. /* check for errors */
  494. if (cdrom_decode_status(drive, DRQ_STAT, NULL))
  495. return ide_stopped;
  496. /* ok, next interrupt will be DMA interrupt */
  497. if (info->dma)
  498. drive->waiting_for_dma = 1;
  499. } else {
  500. /* otherwise, we must wait for DRQ to get set */
  501. if (ide_wait_stat(&startstop, drive, DRQ_STAT,
  502. BUSY_STAT, WAIT_READY))
  503. return startstop;
  504. }
  505. /* arm the interrupt handler */
  506. ide_set_handler(drive, handler, rq->timeout, cdrom_timer_expiry);
  507. /* ATAPI commands get padded out to 12 bytes minimum */
  508. cmd_len = COMMAND_SIZE(rq->cmd[0]);
  509. if (cmd_len < ATAPI_MIN_CDB_BYTES)
  510. cmd_len = ATAPI_MIN_CDB_BYTES;
  511. /* send the command to the device */
  512. hwif->tp_ops->output_data(drive, NULL, rq->cmd, cmd_len);
  513. /* start the DMA if need be */
  514. if (info->dma)
  515. hwif->dma_ops->dma_start(drive);
  516. return ide_started;
  517. }
  518. /*
  519. * Check the contents of the interrupt reason register from the cdrom
  520. * and attempt to recover if there are problems. Returns 0 if everything's
  521. * ok; nonzero if the request has been terminated.
  522. */
  523. static int ide_cd_check_ireason(ide_drive_t *drive, struct request *rq,
  524. int len, int ireason, int rw)
  525. {
  526. ide_hwif_t *hwif = drive->hwif;
  527. /*
  528. * ireason == 0: the drive wants to receive data from us
  529. * ireason == 2: the drive is expecting to transfer data to us
  530. */
  531. if (ireason == (!rw << 1))
  532. return 0;
  533. else if (ireason == (rw << 1)) {
  534. /* whoops... */
  535. printk(KERN_ERR "%s: %s: wrong transfer direction!\n",
  536. drive->name, __func__);
  537. ide_pad_transfer(drive, rw, len);
  538. } else if (rw == 0 && ireason == 1) {
  539. /*
  540. * Some drives (ASUS) seem to tell us that status info is
  541. * available. Just get it and ignore.
  542. */
  543. (void)hwif->tp_ops->read_status(hwif);
  544. return 0;
  545. } else {
  546. /* drive wants a command packet, or invalid ireason... */
  547. printk(KERN_ERR "%s: %s: bad interrupt reason 0x%02x\n",
  548. drive->name, __func__, ireason);
  549. }
  550. if (rq->cmd_type == REQ_TYPE_ATA_PC)
  551. rq->cmd_flags |= REQ_FAILED;
  552. cdrom_end_request(drive, 0);
  553. return -1;
  554. }
  555. /*
  556. * Assume that the drive will always provide data in multiples of at least
  557. * SECTOR_SIZE, as it gets hairy to keep track of the transfers otherwise.
  558. */
  559. static int ide_cd_check_transfer_size(ide_drive_t *drive, int len)
  560. {
  561. struct cdrom_info *cd = drive->driver_data;
  562. if ((len % SECTOR_SIZE) == 0)
  563. return 0;
  564. printk(KERN_ERR "%s: %s: Bad transfer size %d\n",
  565. drive->name, __func__, len);
  566. if (cd->cd_flags & IDE_CD_FLAG_LIMIT_NFRAMES)
  567. printk(KERN_ERR " This drive is not supported by "
  568. "this version of the driver\n");
  569. else {
  570. printk(KERN_ERR " Trying to limit transfer sizes\n");
  571. cd->cd_flags |= IDE_CD_FLAG_LIMIT_NFRAMES;
  572. }
  573. return 1;
  574. }
  575. static ide_startstop_t cdrom_newpc_intr(ide_drive_t *);
  576. static ide_startstop_t ide_cd_prepare_rw_request(ide_drive_t *drive,
  577. struct request *rq)
  578. {
  579. if (rq_data_dir(rq) == READ) {
  580. unsigned short sectors_per_frame =
  581. queue_hardsect_size(drive->queue) >> SECTOR_BITS;
  582. int nskip = rq->sector & (sectors_per_frame - 1);
  583. /*
  584. * If the requested sector doesn't start on a frame boundary,
  585. * we must adjust the start of the transfer so that it does,
  586. * and remember to skip the first few sectors.
  587. *
  588. * If the rq->current_nr_sectors field is larger than the size
  589. * of the buffer, it will mean that we're to skip a number of
  590. * sectors equal to the amount by which rq->current_nr_sectors
  591. * is larger than the buffer size.
  592. */
  593. if (nskip > 0) {
  594. /* sanity check... */
  595. if (rq->current_nr_sectors !=
  596. bio_cur_sectors(rq->bio)) {
  597. printk(KERN_ERR "%s: %s: buffer botch (%u)\n",
  598. drive->name, __func__,
  599. rq->current_nr_sectors);
  600. cdrom_end_request(drive, 0);
  601. return ide_stopped;
  602. }
  603. rq->current_nr_sectors += nskip;
  604. }
  605. }
  606. #if 0
  607. else
  608. /* the immediate bit */
  609. rq->cmd[1] = 1 << 3;
  610. #endif
  611. /* set up the command */
  612. rq->timeout = ATAPI_WAIT_PC;
  613. return ide_started;
  614. }
  615. /*
  616. * Routine to send a read/write packet command to the drive. This is usually
  617. * called directly from cdrom_start_{read,write}(). However, for drq_interrupt
  618. * devices, it is called from an interrupt when the drive is ready to accept
  619. * the command.
  620. */
  621. static ide_startstop_t cdrom_start_rw_cont(ide_drive_t *drive)
  622. {
  623. struct request *rq = drive->hwif->hwgroup->rq;
  624. /* send the command to the drive and return */
  625. return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
  626. }
  627. #define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
  628. #define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
  629. #define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
  630. static ide_startstop_t cdrom_seek_intr(ide_drive_t *drive)
  631. {
  632. struct cdrom_info *info = drive->driver_data;
  633. int stat;
  634. static int retry = 10;
  635. if (cdrom_decode_status(drive, 0, &stat))
  636. return ide_stopped;
  637. info->cd_flags |= IDE_CD_FLAG_SEEKING;
  638. if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
  639. if (--retry == 0)
  640. drive->dsc_overlap = 0;
  641. }
  642. return ide_stopped;
  643. }
  644. static void ide_cd_prepare_seek_request(ide_drive_t *drive, struct request *rq)
  645. {
  646. sector_t frame = rq->sector;
  647. sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
  648. memset(rq->cmd, 0, BLK_MAX_CDB);
  649. rq->cmd[0] = GPCMD_SEEK;
  650. put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
  651. rq->timeout = ATAPI_WAIT_PC;
  652. }
  653. static ide_startstop_t cdrom_start_seek_continuation(ide_drive_t *drive)
  654. {
  655. struct request *rq = drive->hwif->hwgroup->rq;
  656. return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
  657. }
  658. /*
  659. * Fix up a possibly partially-processed request so that we can start it over
  660. * entirely, or even put it back on the request queue.
  661. */
  662. static void restore_request(struct request *rq)
  663. {
  664. if (rq->buffer != bio_data(rq->bio)) {
  665. sector_t n =
  666. (rq->buffer - (char *)bio_data(rq->bio)) / SECTOR_SIZE;
  667. rq->buffer = bio_data(rq->bio);
  668. rq->nr_sectors += n;
  669. rq->sector -= n;
  670. }
  671. rq->current_nr_sectors = bio_cur_sectors(rq->bio);
  672. rq->hard_cur_sectors = rq->current_nr_sectors;
  673. rq->hard_nr_sectors = rq->nr_sectors;
  674. rq->hard_sector = rq->sector;
  675. rq->q->prep_rq_fn(rq->q, rq);
  676. }
  677. /*
  678. * All other packet commands.
  679. */
  680. static void ide_cd_request_sense_fixup(struct request *rq)
  681. {
  682. /*
  683. * Some of the trailing request sense fields are optional,
  684. * and some drives don't send them. Sigh.
  685. */
  686. if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
  687. rq->data_len > 0 && rq->data_len <= 5)
  688. while (rq->data_len > 0) {
  689. *(u8 *)rq->data++ = 0;
  690. --rq->data_len;
  691. }
  692. }
  693. int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
  694. int write, void *buffer, unsigned *bufflen,
  695. struct request_sense *sense, int timeout,
  696. unsigned int cmd_flags)
  697. {
  698. struct cdrom_info *info = drive->driver_data;
  699. struct request_sense local_sense;
  700. int retries = 10;
  701. unsigned int flags = 0;
  702. if (!sense)
  703. sense = &local_sense;
  704. /* start of retry loop */
  705. do {
  706. struct request *rq;
  707. int error;
  708. rq = blk_get_request(drive->queue, write, __GFP_WAIT);
  709. memcpy(rq->cmd, cmd, BLK_MAX_CDB);
  710. rq->cmd_type = REQ_TYPE_ATA_PC;
  711. rq->sense = sense;
  712. rq->cmd_flags |= cmd_flags;
  713. rq->timeout = timeout;
  714. if (buffer) {
  715. rq->data = buffer;
  716. rq->data_len = *bufflen;
  717. }
  718. error = blk_execute_rq(drive->queue, info->disk, rq, 0);
  719. if (buffer)
  720. *bufflen = rq->data_len;
  721. flags = rq->cmd_flags;
  722. blk_put_request(rq);
  723. /*
  724. * FIXME: we should probably abort/retry or something in case of
  725. * failure.
  726. */
  727. if (flags & REQ_FAILED) {
  728. /*
  729. * The request failed. Retry if it was due to a unit
  730. * attention status (usually means media was changed).
  731. */
  732. struct request_sense *reqbuf = sense;
  733. if (reqbuf->sense_key == UNIT_ATTENTION)
  734. cdrom_saw_media_change(drive);
  735. else if (reqbuf->sense_key == NOT_READY &&
  736. reqbuf->asc == 4 && reqbuf->ascq != 4) {
  737. /*
  738. * The drive is in the process of loading
  739. * a disk. Retry, but wait a little to give
  740. * the drive time to complete the load.
  741. */
  742. ssleep(2);
  743. } else {
  744. /* otherwise, don't retry */
  745. retries = 0;
  746. }
  747. --retries;
  748. }
  749. /* end of retry loop */
  750. } while ((flags & REQ_FAILED) && retries >= 0);
  751. /* return an error if the command failed */
  752. return (flags & REQ_FAILED) ? -EIO : 0;
  753. }
  754. /*
  755. * Called from blk_end_request_callback() after the data of the request is
  756. * completed and before the request itself is completed. By returning value '1',
  757. * blk_end_request_callback() returns immediately without completing it.
  758. */
  759. static int cdrom_newpc_intr_dummy_cb(struct request *rq)
  760. {
  761. return 1;
  762. }
  763. static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
  764. {
  765. ide_hwif_t *hwif = drive->hwif;
  766. struct cdrom_info *info = drive->driver_data;
  767. struct request *rq = HWGROUP(drive)->rq;
  768. xfer_func_t *xferfunc;
  769. ide_expiry_t *expiry = NULL;
  770. int dma_error = 0, dma, stat, thislen, uptodate = 0;
  771. int write = (rq_data_dir(rq) == WRITE) ? 1 : 0;
  772. unsigned int timeout;
  773. u16 len;
  774. u8 ireason;
  775. /* check for errors */
  776. dma = info->dma;
  777. if (dma) {
  778. info->dma = 0;
  779. dma_error = hwif->dma_ops->dma_end(drive);
  780. if (dma_error) {
  781. printk(KERN_ERR "%s: DMA %s error\n", drive->name,
  782. write ? "write" : "read");
  783. ide_dma_off(drive);
  784. }
  785. }
  786. if (cdrom_decode_status(drive, 0, &stat))
  787. return ide_stopped;
  788. /* using dma, transfer is complete now */
  789. if (dma) {
  790. if (dma_error)
  791. return ide_error(drive, "dma error", stat);
  792. if (blk_fs_request(rq)) {
  793. ide_end_request(drive, 1, rq->nr_sectors);
  794. return ide_stopped;
  795. }
  796. goto end_request;
  797. }
  798. ide_read_bcount_and_ireason(drive, &len, &ireason);
  799. thislen = blk_fs_request(rq) ? len : rq->data_len;
  800. if (thislen > len)
  801. thislen = len;
  802. /* If DRQ is clear, the command has completed. */
  803. if ((stat & DRQ_STAT) == 0) {
  804. if (blk_fs_request(rq)) {
  805. /*
  806. * If we're not done reading/writing, complain.
  807. * Otherwise, complete the command normally.
  808. */
  809. uptodate = 1;
  810. if (rq->current_nr_sectors > 0) {
  811. printk(KERN_ERR "%s: %s: data underrun "
  812. "(%d blocks)\n",
  813. drive->name, __func__,
  814. rq->current_nr_sectors);
  815. if (!write)
  816. rq->cmd_flags |= REQ_FAILED;
  817. uptodate = 0;
  818. }
  819. cdrom_end_request(drive, uptodate);
  820. return ide_stopped;
  821. } else if (!blk_pc_request(rq)) {
  822. ide_cd_request_sense_fixup(rq);
  823. /* complain if we still have data left to transfer */
  824. uptodate = rq->data_len ? 0 : 1;
  825. }
  826. goto end_request;
  827. }
  828. /* check which way to transfer data */
  829. if (ide_cd_check_ireason(drive, rq, len, ireason, write))
  830. return ide_stopped;
  831. if (blk_fs_request(rq)) {
  832. if (write == 0) {
  833. int nskip;
  834. if (ide_cd_check_transfer_size(drive, len)) {
  835. cdrom_end_request(drive, 0);
  836. return ide_stopped;
  837. }
  838. /*
  839. * First, figure out if we need to bit-bucket
  840. * any of the leading sectors.
  841. */
  842. nskip = min_t(int, rq->current_nr_sectors
  843. - bio_cur_sectors(rq->bio),
  844. thislen >> 9);
  845. if (nskip > 0) {
  846. ide_pad_transfer(drive, write, nskip << 9);
  847. rq->current_nr_sectors -= nskip;
  848. thislen -= (nskip << 9);
  849. }
  850. }
  851. }
  852. if (ireason == 0) {
  853. write = 1;
  854. xferfunc = hwif->tp_ops->output_data;
  855. } else {
  856. write = 0;
  857. xferfunc = hwif->tp_ops->input_data;
  858. }
  859. /* transfer data */
  860. while (thislen > 0) {
  861. u8 *ptr = blk_fs_request(rq) ? NULL : rq->data;
  862. int blen = rq->data_len;
  863. /* bio backed? */
  864. if (rq->bio) {
  865. if (blk_fs_request(rq)) {
  866. ptr = rq->buffer;
  867. blen = rq->current_nr_sectors << 9;
  868. } else {
  869. ptr = bio_data(rq->bio);
  870. blen = bio_iovec(rq->bio)->bv_len;
  871. }
  872. }
  873. if (!ptr) {
  874. if (blk_fs_request(rq) && !write)
  875. /*
  876. * If the buffers are full, pipe the rest into
  877. * oblivion.
  878. */
  879. ide_pad_transfer(drive, 0, thislen);
  880. else {
  881. printk(KERN_ERR "%s: confused, missing data\n",
  882. drive->name);
  883. blk_dump_rq_flags(rq, rq_data_dir(rq)
  884. ? "cdrom_newpc_intr, write"
  885. : "cdrom_newpc_intr, read");
  886. }
  887. break;
  888. }
  889. if (blen > thislen)
  890. blen = thislen;
  891. xferfunc(drive, NULL, ptr, blen);
  892. thislen -= blen;
  893. len -= blen;
  894. if (blk_fs_request(rq)) {
  895. rq->buffer += blen;
  896. rq->nr_sectors -= (blen >> 9);
  897. rq->current_nr_sectors -= (blen >> 9);
  898. rq->sector += (blen >> 9);
  899. if (rq->current_nr_sectors == 0 && rq->nr_sectors)
  900. cdrom_end_request(drive, 1);
  901. } else {
  902. rq->data_len -= blen;
  903. /*
  904. * The request can't be completed until DRQ is cleared.
  905. * So complete the data, but don't complete the request
  906. * using the dummy function for the callback feature
  907. * of blk_end_request_callback().
  908. */
  909. if (rq->bio)
  910. blk_end_request_callback(rq, 0, blen,
  911. cdrom_newpc_intr_dummy_cb);
  912. else
  913. rq->data += blen;
  914. }
  915. if (!write && blk_sense_request(rq))
  916. rq->sense_len += blen;
  917. }
  918. /* pad, if necessary */
  919. if (!blk_fs_request(rq) && len > 0)
  920. ide_pad_transfer(drive, write, len);
  921. if (blk_pc_request(rq)) {
  922. timeout = rq->timeout;
  923. } else {
  924. timeout = ATAPI_WAIT_PC;
  925. if (!blk_fs_request(rq))
  926. expiry = cdrom_timer_expiry;
  927. }
  928. ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry);
  929. return ide_started;
  930. end_request:
  931. if (blk_pc_request(rq)) {
  932. unsigned long flags;
  933. unsigned int dlen = rq->data_len;
  934. if (dma)
  935. rq->data_len = 0;
  936. spin_lock_irqsave(&ide_lock, flags);
  937. if (__blk_end_request(rq, 0, dlen))
  938. BUG();
  939. HWGROUP(drive)->rq = NULL;
  940. spin_unlock_irqrestore(&ide_lock, flags);
  941. } else {
  942. if (!uptodate)
  943. rq->cmd_flags |= REQ_FAILED;
  944. cdrom_end_request(drive, uptodate);
  945. }
  946. return ide_stopped;
  947. }
  948. static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
  949. {
  950. struct cdrom_info *cd = drive->driver_data;
  951. int write = rq_data_dir(rq) == WRITE;
  952. unsigned short sectors_per_frame =
  953. queue_hardsect_size(drive->queue) >> SECTOR_BITS;
  954. if (write) {
  955. /* disk has become write protected */
  956. if (cd->disk->policy) {
  957. cdrom_end_request(drive, 0);
  958. return ide_stopped;
  959. }
  960. } else {
  961. /*
  962. * We may be retrying this request after an error. Fix up any
  963. * weirdness which might be present in the request packet.
  964. */
  965. restore_request(rq);
  966. }
  967. /* use DMA, if possible / writes *must* be hardware frame aligned */
  968. if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
  969. (rq->sector & (sectors_per_frame - 1))) {
  970. if (write) {
  971. cdrom_end_request(drive, 0);
  972. return ide_stopped;
  973. }
  974. cd->dma = 0;
  975. } else
  976. cd->dma = drive->using_dma;
  977. if (write)
  978. cd->devinfo.media_written = 1;
  979. return ide_started;
  980. }
  981. static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
  982. {
  983. struct request *rq = HWGROUP(drive)->rq;
  984. return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
  985. }
  986. static void cdrom_do_block_pc(ide_drive_t *drive, struct request *rq)
  987. {
  988. struct cdrom_info *info = drive->driver_data;
  989. if (blk_pc_request(rq))
  990. rq->cmd_flags |= REQ_QUIET;
  991. else
  992. rq->cmd_flags &= ~REQ_FAILED;
  993. info->dma = 0;
  994. /* sg request */
  995. if (rq->bio || ((rq->cmd_type == REQ_TYPE_ATA_PC) && rq->data_len)) {
  996. struct request_queue *q = drive->queue;
  997. unsigned int alignment;
  998. unsigned long addr;
  999. unsigned long stack_mask = ~(THREAD_SIZE - 1);
  1000. if (rq->bio)
  1001. addr = (unsigned long)bio_data(rq->bio);
  1002. else
  1003. addr = (unsigned long)rq->data;
  1004. info->dma = drive->using_dma;
  1005. /*
  1006. * check if dma is safe
  1007. *
  1008. * NOTE! The "len" and "addr" checks should possibly have
  1009. * separate masks.
  1010. */
  1011. alignment = queue_dma_alignment(q) | q->dma_pad_mask;
  1012. if (addr & alignment || rq->data_len & alignment)
  1013. info->dma = 0;
  1014. if (!((addr & stack_mask) ^
  1015. ((unsigned long)current->stack & stack_mask)))
  1016. info->dma = 0;
  1017. }
  1018. }
  1019. /*
  1020. * cdrom driver request routine.
  1021. */
  1022. static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
  1023. sector_t block)
  1024. {
  1025. struct cdrom_info *info = drive->driver_data;
  1026. ide_handler_t *fn;
  1027. int xferlen;
  1028. if (blk_fs_request(rq)) {
  1029. if (info->cd_flags & IDE_CD_FLAG_SEEKING) {
  1030. ide_hwif_t *hwif = drive->hwif;
  1031. unsigned long elapsed = jiffies - info->start_seek;
  1032. int stat = hwif->tp_ops->read_status(hwif);
  1033. if ((stat & SEEK_STAT) != SEEK_STAT) {
  1034. if (elapsed < IDECD_SEEK_TIMEOUT) {
  1035. ide_stall_queue(drive,
  1036. IDECD_SEEK_TIMER);
  1037. return ide_stopped;
  1038. }
  1039. printk(KERN_ERR "%s: DSC timeout\n",
  1040. drive->name);
  1041. }
  1042. info->cd_flags &= ~IDE_CD_FLAG_SEEKING;
  1043. }
  1044. if (rq_data_dir(rq) == READ &&
  1045. IDE_LARGE_SEEK(info->last_block, block,
  1046. IDECD_SEEK_THRESHOLD) &&
  1047. drive->dsc_overlap) {
  1048. xferlen = 0;
  1049. fn = cdrom_start_seek_continuation;
  1050. info->dma = 0;
  1051. info->start_seek = jiffies;
  1052. ide_cd_prepare_seek_request(drive, rq);
  1053. } else {
  1054. xferlen = 32768;
  1055. fn = cdrom_start_rw_cont;
  1056. if (cdrom_start_rw(drive, rq) == ide_stopped)
  1057. return ide_stopped;
  1058. if (ide_cd_prepare_rw_request(drive, rq) == ide_stopped)
  1059. return ide_stopped;
  1060. }
  1061. info->last_block = block;
  1062. } else if (blk_sense_request(rq) || blk_pc_request(rq) ||
  1063. rq->cmd_type == REQ_TYPE_ATA_PC) {
  1064. xferlen = rq->data_len;
  1065. fn = cdrom_do_newpc_cont;
  1066. if (!rq->timeout)
  1067. rq->timeout = ATAPI_WAIT_PC;
  1068. cdrom_do_block_pc(drive, rq);
  1069. } else if (blk_special_request(rq)) {
  1070. /* right now this can only be a reset... */
  1071. cdrom_end_request(drive, 1);
  1072. return ide_stopped;
  1073. } else {
  1074. blk_dump_rq_flags(rq, "ide-cd bad flags");
  1075. cdrom_end_request(drive, 0);
  1076. return ide_stopped;
  1077. }
  1078. return cdrom_start_packet_command(drive, xferlen, fn);
  1079. }
  1080. /*
  1081. * Ioctl handling.
  1082. *
  1083. * Routines which queue packet commands take as a final argument a pointer to a
  1084. * request_sense struct. If execution of the command results in an error with a
  1085. * CHECK CONDITION status, this structure will be filled with the results of the
  1086. * subsequent request sense command. The pointer can also be NULL, in which case
  1087. * no sense information is returned.
  1088. */
  1089. static void msf_from_bcd(struct atapi_msf *msf)
  1090. {
  1091. msf->minute = BCD2BIN(msf->minute);
  1092. msf->second = BCD2BIN(msf->second);
  1093. msf->frame = BCD2BIN(msf->frame);
  1094. }
  1095. int cdrom_check_status(ide_drive_t *drive, struct request_sense *sense)
  1096. {
  1097. struct cdrom_info *info = drive->driver_data;
  1098. struct cdrom_device_info *cdi = &info->devinfo;
  1099. unsigned char cmd[BLK_MAX_CDB];
  1100. memset(cmd, 0, BLK_MAX_CDB);
  1101. cmd[0] = GPCMD_TEST_UNIT_READY;
  1102. /*
  1103. * Sanyo 3 CD changer uses byte 7 of TEST_UNIT_READY to switch CDs
  1104. * instead of supporting the LOAD_UNLOAD opcode.
  1105. */
  1106. cmd[7] = cdi->sanyo_slot % 3;
  1107. return ide_cd_queue_pc(drive, cmd, 0, NULL, 0, sense, 0, REQ_QUIET);
  1108. }
  1109. static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
  1110. unsigned long *sectors_per_frame,
  1111. struct request_sense *sense)
  1112. {
  1113. struct {
  1114. __u32 lba;
  1115. __u32 blocklen;
  1116. } capbuf;
  1117. int stat;
  1118. unsigned char cmd[BLK_MAX_CDB];
  1119. unsigned len = sizeof(capbuf);
  1120. memset(cmd, 0, BLK_MAX_CDB);
  1121. cmd[0] = GPCMD_READ_CDVD_CAPACITY;
  1122. stat = ide_cd_queue_pc(drive, cmd, 0, &capbuf, &len, sense, 0,
  1123. REQ_QUIET);
  1124. if (stat == 0) {
  1125. *capacity = 1 + be32_to_cpu(capbuf.lba);
  1126. *sectors_per_frame =
  1127. be32_to_cpu(capbuf.blocklen) >> SECTOR_BITS;
  1128. }
  1129. return stat;
  1130. }
  1131. static int cdrom_read_tocentry(ide_drive_t *drive, int trackno, int msf_flag,
  1132. int format, char *buf, int buflen,
  1133. struct request_sense *sense)
  1134. {
  1135. unsigned char cmd[BLK_MAX_CDB];
  1136. memset(cmd, 0, BLK_MAX_CDB);
  1137. cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
  1138. cmd[6] = trackno;
  1139. cmd[7] = (buflen >> 8);
  1140. cmd[8] = (buflen & 0xff);
  1141. cmd[9] = (format << 6);
  1142. if (msf_flag)
  1143. cmd[1] = 2;
  1144. return ide_cd_queue_pc(drive, cmd, 0, buf, &buflen, sense, 0, REQ_QUIET);
  1145. }
  1146. /* Try to read the entire TOC for the disk into our internal buffer. */
  1147. int ide_cd_read_toc(ide_drive_t *drive, struct request_sense *sense)
  1148. {
  1149. int stat, ntracks, i;
  1150. struct cdrom_info *info = drive->driver_data;
  1151. struct cdrom_device_info *cdi = &info->devinfo;
  1152. struct atapi_toc *toc = info->toc;
  1153. struct {
  1154. struct atapi_toc_header hdr;
  1155. struct atapi_toc_entry ent;
  1156. } ms_tmp;
  1157. long last_written;
  1158. unsigned long sectors_per_frame = SECTORS_PER_FRAME;
  1159. if (toc == NULL) {
  1160. /* try to allocate space */
  1161. toc = kmalloc(sizeof(struct atapi_toc), GFP_KERNEL);
  1162. if (toc == NULL) {
  1163. printk(KERN_ERR "%s: No cdrom TOC buffer!\n",
  1164. drive->name);
  1165. return -ENOMEM;
  1166. }
  1167. info->toc = toc;
  1168. }
  1169. /*
  1170. * Check to see if the existing data is still valid. If it is,
  1171. * just return.
  1172. */
  1173. (void) cdrom_check_status(drive, sense);
  1174. if (info->cd_flags & IDE_CD_FLAG_TOC_VALID)
  1175. return 0;
  1176. /* try to get the total cdrom capacity and sector size */
  1177. stat = cdrom_read_capacity(drive, &toc->capacity, &sectors_per_frame,
  1178. sense);
  1179. if (stat)
  1180. toc->capacity = 0x1fffff;
  1181. set_capacity(info->disk, toc->capacity * sectors_per_frame);
  1182. /* save a private copy of the TOC capacity for error handling */
  1183. drive->probed_capacity = toc->capacity * sectors_per_frame;
  1184. blk_queue_hardsect_size(drive->queue,
  1185. sectors_per_frame << SECTOR_BITS);
  1186. /* first read just the header, so we know how long the TOC is */
  1187. stat = cdrom_read_tocentry(drive, 0, 1, 0, (char *) &toc->hdr,
  1188. sizeof(struct atapi_toc_header), sense);
  1189. if (stat)
  1190. return stat;
  1191. if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
  1192. toc->hdr.first_track = BCD2BIN(toc->hdr.first_track);
  1193. toc->hdr.last_track = BCD2BIN(toc->hdr.last_track);
  1194. }
  1195. ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
  1196. if (ntracks <= 0)
  1197. return -EIO;
  1198. if (ntracks > MAX_TRACKS)
  1199. ntracks = MAX_TRACKS;
  1200. /* now read the whole schmeer */
  1201. stat = cdrom_read_tocentry(drive, toc->hdr.first_track, 1, 0,
  1202. (char *)&toc->hdr,
  1203. sizeof(struct atapi_toc_header) +
  1204. (ntracks + 1) *
  1205. sizeof(struct atapi_toc_entry), sense);
  1206. if (stat && toc->hdr.first_track > 1) {
  1207. /*
  1208. * Cds with CDI tracks only don't have any TOC entries, despite
  1209. * of this the returned values are
  1210. * first_track == last_track = number of CDI tracks + 1,
  1211. * so that this case is indistinguishable from the same layout
  1212. * plus an additional audio track. If we get an error for the
  1213. * regular case, we assume a CDI without additional audio
  1214. * tracks. In this case the readable TOC is empty (CDI tracks
  1215. * are not included) and only holds the Leadout entry.
  1216. *
  1217. * Heiko Eißfeldt.
  1218. */
  1219. ntracks = 0;
  1220. stat = cdrom_read_tocentry(drive, CDROM_LEADOUT, 1, 0,
  1221. (char *)&toc->hdr,
  1222. sizeof(struct atapi_toc_header) +
  1223. (ntracks + 1) *
  1224. sizeof(struct atapi_toc_entry),
  1225. sense);
  1226. if (stat)
  1227. return stat;
  1228. if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
  1229. toc->hdr.first_track = (u8)BIN2BCD(CDROM_LEADOUT);
  1230. toc->hdr.last_track = (u8)BIN2BCD(CDROM_LEADOUT);
  1231. } else {
  1232. toc->hdr.first_track = CDROM_LEADOUT;
  1233. toc->hdr.last_track = CDROM_LEADOUT;
  1234. }
  1235. }
  1236. if (stat)
  1237. return stat;
  1238. toc->hdr.toc_length = be16_to_cpu(toc->hdr.toc_length);
  1239. if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD) {
  1240. toc->hdr.first_track = BCD2BIN(toc->hdr.first_track);
  1241. toc->hdr.last_track = BCD2BIN(toc->hdr.last_track);
  1242. }
  1243. for (i = 0; i <= ntracks; i++) {
  1244. if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) {
  1245. if (info->cd_flags & IDE_CD_FLAG_TOCTRACKS_AS_BCD)
  1246. toc->ent[i].track = BCD2BIN(toc->ent[i].track);
  1247. msf_from_bcd(&toc->ent[i].addr.msf);
  1248. }
  1249. toc->ent[i].addr.lba = msf_to_lba(toc->ent[i].addr.msf.minute,
  1250. toc->ent[i].addr.msf.second,
  1251. toc->ent[i].addr.msf.frame);
  1252. }
  1253. if (toc->hdr.first_track != CDROM_LEADOUT) {
  1254. /* read the multisession information */
  1255. stat = cdrom_read_tocentry(drive, 0, 0, 1, (char *)&ms_tmp,
  1256. sizeof(ms_tmp), sense);
  1257. if (stat)
  1258. return stat;
  1259. toc->last_session_lba = be32_to_cpu(ms_tmp.ent.addr.lba);
  1260. } else {
  1261. ms_tmp.hdr.last_track = CDROM_LEADOUT;
  1262. ms_tmp.hdr.first_track = ms_tmp.hdr.last_track;
  1263. toc->last_session_lba = msf_to_lba(0, 2, 0); /* 0m 2s 0f */
  1264. }
  1265. if (info->cd_flags & IDE_CD_FLAG_TOCADDR_AS_BCD) {
  1266. /* re-read multisession information using MSF format */
  1267. stat = cdrom_read_tocentry(drive, 0, 1, 1, (char *)&ms_tmp,
  1268. sizeof(ms_tmp), sense);
  1269. if (stat)
  1270. return stat;
  1271. msf_from_bcd(&ms_tmp.ent.addr.msf);
  1272. toc->last_session_lba = msf_to_lba(ms_tmp.ent.addr.msf.minute,
  1273. ms_tmp.ent.addr.msf.second,
  1274. ms_tmp.ent.addr.msf.frame);
  1275. }
  1276. toc->xa_flag = (ms_tmp.hdr.first_track != ms_tmp.hdr.last_track);
  1277. /* now try to get the total cdrom capacity */
  1278. stat = cdrom_get_last_written(cdi, &last_written);
  1279. if (!stat && (last_written > toc->capacity)) {
  1280. toc->capacity = last_written;
  1281. set_capacity(info->disk, toc->capacity * sectors_per_frame);
  1282. drive->probed_capacity = toc->capacity * sectors_per_frame;
  1283. }
  1284. /* Remember that we've read this stuff. */
  1285. info->cd_flags |= IDE_CD_FLAG_TOC_VALID;
  1286. return 0;
  1287. }
  1288. int ide_cdrom_get_capabilities(ide_drive_t *drive, u8 *buf)
  1289. {
  1290. struct cdrom_info *info = drive->driver_data;
  1291. struct cdrom_device_info *cdi = &info->devinfo;
  1292. struct packet_command cgc;
  1293. int stat, attempts = 3, size = ATAPI_CAPABILITIES_PAGE_SIZE;
  1294. if ((info->cd_flags & IDE_CD_FLAG_FULL_CAPS_PAGE) == 0)
  1295. size -= ATAPI_CAPABILITIES_PAGE_PAD_SIZE;
  1296. init_cdrom_command(&cgc, buf, size, CGC_DATA_UNKNOWN);
  1297. do {
  1298. /* we seem to get stat=0x01,err=0x00 the first time (??) */
  1299. stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
  1300. if (!stat)
  1301. break;
  1302. } while (--attempts);
  1303. return stat;
  1304. }
  1305. void ide_cdrom_update_speed(ide_drive_t *drive, u8 *buf)
  1306. {
  1307. struct cdrom_info *cd = drive->driver_data;
  1308. u16 curspeed, maxspeed;
  1309. curspeed = *(u16 *)&buf[8 + 14];
  1310. maxspeed = *(u16 *)&buf[8 + 8];
  1311. if (cd->cd_flags & IDE_CD_FLAG_LE_SPEED_FIELDS) {
  1312. curspeed = le16_to_cpu(curspeed);
  1313. maxspeed = le16_to_cpu(maxspeed);
  1314. } else {
  1315. curspeed = be16_to_cpu(curspeed);
  1316. maxspeed = be16_to_cpu(maxspeed);
  1317. }
  1318. cd->current_speed = (curspeed + (176/2)) / 176;
  1319. cd->max_speed = (maxspeed + (176/2)) / 176;
  1320. }
  1321. #define IDE_CD_CAPABILITIES \
  1322. (CDC_CLOSE_TRAY | CDC_OPEN_TRAY | CDC_LOCK | CDC_SELECT_SPEED | \
  1323. CDC_SELECT_DISC | CDC_MULTI_SESSION | CDC_MCN | CDC_MEDIA_CHANGED | \
  1324. CDC_PLAY_AUDIO | CDC_RESET | CDC_DRIVE_STATUS | CDC_CD_R | \
  1325. CDC_CD_RW | CDC_DVD | CDC_DVD_R | CDC_DVD_RAM | CDC_GENERIC_PACKET | \
  1326. CDC_MO_DRIVE | CDC_MRW | CDC_MRW_W | CDC_RAM)
  1327. static struct cdrom_device_ops ide_cdrom_dops = {
  1328. .open = ide_cdrom_open_real,
  1329. .release = ide_cdrom_release_real,
  1330. .drive_status = ide_cdrom_drive_status,
  1331. .media_changed = ide_cdrom_check_media_change_real,
  1332. .tray_move = ide_cdrom_tray_move,
  1333. .lock_door = ide_cdrom_lock_door,
  1334. .select_speed = ide_cdrom_select_speed,
  1335. .get_last_session = ide_cdrom_get_last_session,
  1336. .get_mcn = ide_cdrom_get_mcn,
  1337. .reset = ide_cdrom_reset,
  1338. .audio_ioctl = ide_cdrom_audio_ioctl,
  1339. .capability = IDE_CD_CAPABILITIES,
  1340. .generic_packet = ide_cdrom_packet,
  1341. };
  1342. static int ide_cdrom_register(ide_drive_t *drive, int nslots)
  1343. {
  1344. struct cdrom_info *info = drive->driver_data;
  1345. struct cdrom_device_info *devinfo = &info->devinfo;
  1346. devinfo->ops = &ide_cdrom_dops;
  1347. devinfo->speed = info->current_speed;
  1348. devinfo->capacity = nslots;
  1349. devinfo->handle = drive;
  1350. strcpy(devinfo->name, drive->name);
  1351. if (info->cd_flags & IDE_CD_FLAG_NO_SPEED_SELECT)
  1352. devinfo->mask |= CDC_SELECT_SPEED;
  1353. devinfo->disk = info->disk;
  1354. return register_cdrom(devinfo);
  1355. }
  1356. static int ide_cdrom_probe_capabilities(ide_drive_t *drive)
  1357. {
  1358. struct cdrom_info *cd = drive->driver_data;
  1359. struct cdrom_device_info *cdi = &cd->devinfo;
  1360. u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
  1361. mechtype_t mechtype;
  1362. int nslots = 1;
  1363. cdi->mask = (CDC_CD_R | CDC_CD_RW | CDC_DVD | CDC_DVD_R |
  1364. CDC_DVD_RAM | CDC_SELECT_DISC | CDC_PLAY_AUDIO |
  1365. CDC_MO_DRIVE | CDC_RAM);
  1366. if (drive->media == ide_optical) {
  1367. cdi->mask &= ~(CDC_MO_DRIVE | CDC_RAM);
  1368. printk(KERN_ERR "%s: ATAPI magneto-optical drive\n",
  1369. drive->name);
  1370. return nslots;
  1371. }
  1372. if (cd->cd_flags & IDE_CD_FLAG_PRE_ATAPI12) {
  1373. cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT;
  1374. cdi->mask &= ~CDC_PLAY_AUDIO;
  1375. return nslots;
  1376. }
  1377. /*
  1378. * We have to cheat a little here. the packet will eventually be queued
  1379. * with ide_cdrom_packet(), which extracts the drive from cdi->handle.
  1380. * Since this device hasn't been registered with the Uniform layer yet,
  1381. * it can't do this. Same goes for cdi->ops.
  1382. */
  1383. cdi->handle = drive;
  1384. cdi->ops = &ide_cdrom_dops;
  1385. if (ide_cdrom_get_capabilities(drive, buf))
  1386. return 0;
  1387. if ((buf[8 + 6] & 0x01) == 0)
  1388. cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK;
  1389. if (buf[8 + 6] & 0x08)
  1390. cd->cd_flags &= ~IDE_CD_FLAG_NO_EJECT;
  1391. if (buf[8 + 3] & 0x01)
  1392. cdi->mask &= ~CDC_CD_R;
  1393. if (buf[8 + 3] & 0x02)
  1394. cdi->mask &= ~(CDC_CD_RW | CDC_RAM);
  1395. if (buf[8 + 2] & 0x38)
  1396. cdi->mask &= ~CDC_DVD;
  1397. if (buf[8 + 3] & 0x20)
  1398. cdi->mask &= ~(CDC_DVD_RAM | CDC_RAM);
  1399. if (buf[8 + 3] & 0x10)
  1400. cdi->mask &= ~CDC_DVD_R;
  1401. if ((buf[8 + 4] & 0x01) || (cd->cd_flags & IDE_CD_FLAG_PLAY_AUDIO_OK))
  1402. cdi->mask &= ~CDC_PLAY_AUDIO;
  1403. mechtype = buf[8 + 6] >> 5;
  1404. if (mechtype == mechtype_caddy || mechtype == mechtype_popup)
  1405. cdi->mask |= CDC_CLOSE_TRAY;
  1406. if (cdi->sanyo_slot > 0) {
  1407. cdi->mask &= ~CDC_SELECT_DISC;
  1408. nslots = 3;
  1409. } else if (mechtype == mechtype_individual_changer ||
  1410. mechtype == mechtype_cartridge_changer) {
  1411. nslots = cdrom_number_of_slots(cdi);
  1412. if (nslots > 1)
  1413. cdi->mask &= ~CDC_SELECT_DISC;
  1414. }
  1415. ide_cdrom_update_speed(drive, buf);
  1416. printk(KERN_INFO "%s: ATAPI", drive->name);
  1417. /* don't print speed if the drive reported 0 */
  1418. if (cd->max_speed)
  1419. printk(KERN_CONT " %dX", cd->max_speed);
  1420. printk(KERN_CONT " %s", (cdi->mask & CDC_DVD) ? "CD-ROM" : "DVD-ROM");
  1421. if ((cdi->mask & CDC_DVD_R) == 0 || (cdi->mask & CDC_DVD_RAM) == 0)
  1422. printk(KERN_CONT " DVD%s%s",
  1423. (cdi->mask & CDC_DVD_R) ? "" : "-R",
  1424. (cdi->mask & CDC_DVD_RAM) ? "" : "-RAM");
  1425. if ((cdi->mask & CDC_CD_R) == 0 || (cdi->mask & CDC_CD_RW) == 0)
  1426. printk(KERN_CONT " CD%s%s",
  1427. (cdi->mask & CDC_CD_R) ? "" : "-R",
  1428. (cdi->mask & CDC_CD_RW) ? "" : "/RW");
  1429. if ((cdi->mask & CDC_SELECT_DISC) == 0)
  1430. printk(KERN_CONT " changer w/%d slots", nslots);
  1431. else
  1432. printk(KERN_CONT " drive");
  1433. printk(KERN_CONT ", %dkB Cache\n", be16_to_cpu(*(u16 *)&buf[8 + 12]));
  1434. return nslots;
  1435. }
  1436. /* standard prep_rq_fn that builds 10 byte cmds */
  1437. static int ide_cdrom_prep_fs(struct request_queue *q, struct request *rq)
  1438. {
  1439. int hard_sect = queue_hardsect_size(q);
  1440. long block = (long)rq->hard_sector / (hard_sect >> 9);
  1441. unsigned long blocks = rq->hard_nr_sectors / (hard_sect >> 9);
  1442. memset(rq->cmd, 0, BLK_MAX_CDB);
  1443. if (rq_data_dir(rq) == READ)
  1444. rq->cmd[0] = GPCMD_READ_10;
  1445. else
  1446. rq->cmd[0] = GPCMD_WRITE_10;
  1447. /*
  1448. * fill in lba
  1449. */
  1450. rq->cmd[2] = (block >> 24) & 0xff;
  1451. rq->cmd[3] = (block >> 16) & 0xff;
  1452. rq->cmd[4] = (block >> 8) & 0xff;
  1453. rq->cmd[5] = block & 0xff;
  1454. /*
  1455. * and transfer length
  1456. */
  1457. rq->cmd[7] = (blocks >> 8) & 0xff;
  1458. rq->cmd[8] = blocks & 0xff;
  1459. rq->cmd_len = 10;
  1460. return BLKPREP_OK;
  1461. }
  1462. /*
  1463. * Most of the SCSI commands are supported directly by ATAPI devices.
  1464. * This transform handles the few exceptions.
  1465. */
  1466. static int ide_cdrom_prep_pc(struct request *rq)
  1467. {
  1468. u8 *c = rq->cmd;
  1469. /* transform 6-byte read/write commands to the 10-byte version */
  1470. if (c[0] == READ_6 || c[0] == WRITE_6) {
  1471. c[8] = c[4];
  1472. c[5] = c[3];
  1473. c[4] = c[2];
  1474. c[3] = c[1] & 0x1f;
  1475. c[2] = 0;
  1476. c[1] &= 0xe0;
  1477. c[0] += (READ_10 - READ_6);
  1478. rq->cmd_len = 10;
  1479. return BLKPREP_OK;
  1480. }
  1481. /*
  1482. * it's silly to pretend we understand 6-byte sense commands, just
  1483. * reject with ILLEGAL_REQUEST and the caller should take the
  1484. * appropriate action
  1485. */
  1486. if (c[0] == MODE_SENSE || c[0] == MODE_SELECT) {
  1487. rq->errors = ILLEGAL_REQUEST;
  1488. return BLKPREP_KILL;
  1489. }
  1490. return BLKPREP_OK;
  1491. }
  1492. static int ide_cdrom_prep_fn(struct request_queue *q, struct request *rq)
  1493. {
  1494. if (blk_fs_request(rq))
  1495. return ide_cdrom_prep_fs(q, rq);
  1496. else if (blk_pc_request(rq))
  1497. return ide_cdrom_prep_pc(rq);
  1498. return 0;
  1499. }
  1500. struct cd_list_entry {
  1501. const char *id_model;
  1502. const char *id_firmware;
  1503. unsigned int cd_flags;
  1504. };
  1505. #ifdef CONFIG_IDE_PROC_FS
  1506. static sector_t ide_cdrom_capacity(ide_drive_t *drive)
  1507. {
  1508. unsigned long capacity, sectors_per_frame;
  1509. if (cdrom_read_capacity(drive, &capacity, &sectors_per_frame, NULL))
  1510. return 0;
  1511. return capacity * sectors_per_frame;
  1512. }
  1513. static int proc_idecd_read_capacity(char *page, char **start, off_t off,
  1514. int count, int *eof, void *data)
  1515. {
  1516. ide_drive_t *drive = data;
  1517. int len;
  1518. len = sprintf(page, "%llu\n", (long long)ide_cdrom_capacity(drive));
  1519. PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
  1520. }
  1521. static ide_proc_entry_t idecd_proc[] = {
  1522. { "capacity", S_IFREG|S_IRUGO, proc_idecd_read_capacity, NULL },
  1523. { NULL, 0, NULL, NULL }
  1524. };
  1525. static void ide_cdrom_add_settings(ide_drive_t *drive)
  1526. {
  1527. ide_add_setting(drive, "dsc_overlap", SETTING_RW, TYPE_BYTE, 0, 1, 1, 1,
  1528. &drive->dsc_overlap, NULL);
  1529. }
  1530. #else
  1531. static inline void ide_cdrom_add_settings(ide_drive_t *drive) { ; }
  1532. #endif
  1533. static const struct cd_list_entry ide_cd_quirks_list[] = {
  1534. /* Limit transfer size per interrupt. */
  1535. { "SAMSUNG CD-ROM SCR-2430", NULL, IDE_CD_FLAG_LIMIT_NFRAMES },
  1536. { "SAMSUNG CD-ROM SCR-2432", NULL, IDE_CD_FLAG_LIMIT_NFRAMES },
  1537. /* SCR-3231 doesn't support the SET_CD_SPEED command. */
  1538. { "SAMSUNG CD-ROM SCR-3231", NULL, IDE_CD_FLAG_NO_SPEED_SELECT },
  1539. /* Old NEC260 (not R) was released before ATAPI 1.2 spec. */
  1540. { "NEC CD-ROM DRIVE:260", "1.01", IDE_CD_FLAG_TOCADDR_AS_BCD |
  1541. IDE_CD_FLAG_PRE_ATAPI12, },
  1542. /* Vertos 300, some versions of this drive like to talk BCD. */
  1543. { "V003S0DS", NULL, IDE_CD_FLAG_VERTOS_300_SSD, },
  1544. /* Vertos 600 ESD. */
  1545. { "V006E0DS", NULL, IDE_CD_FLAG_VERTOS_600_ESD, },
  1546. /*
  1547. * Sanyo 3 CD changer uses a non-standard command for CD changing
  1548. * (by default standard ATAPI support for CD changers is used).
  1549. */
  1550. { "CD-ROM CDR-C3 G", NULL, IDE_CD_FLAG_SANYO_3CD },
  1551. { "CD-ROM CDR-C3G", NULL, IDE_CD_FLAG_SANYO_3CD },
  1552. { "CD-ROM CDR_C36", NULL, IDE_CD_FLAG_SANYO_3CD },
  1553. /* Stingray 8X CD-ROM. */
  1554. { "STINGRAY 8422 IDE 8X CD-ROM 7-27-95", NULL, IDE_CD_FLAG_PRE_ATAPI12},
  1555. /*
  1556. * ACER 50X CD-ROM and WPI 32X CD-ROM require the full spec length
  1557. * mode sense page capabilities size, but older drives break.
  1558. */
  1559. { "ATAPI CD ROM DRIVE 50X MAX", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE },
  1560. { "WPI CDS-32X", NULL, IDE_CD_FLAG_FULL_CAPS_PAGE },
  1561. /* ACER/AOpen 24X CD-ROM has the speed fields byte-swapped. */
  1562. { "", "241N", IDE_CD_FLAG_LE_SPEED_FIELDS },
  1563. /*
  1564. * Some drives used by Apple don't advertise audio play
  1565. * but they do support reading TOC & audio datas.
  1566. */
  1567. { "MATSHITADVD-ROM SR-8187", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
  1568. { "MATSHITADVD-ROM SR-8186", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
  1569. { "MATSHITADVD-ROM SR-8176", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
  1570. { "MATSHITADVD-ROM SR-8174", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
  1571. { "Optiarc DVD RW AD-5200A", NULL, IDE_CD_FLAG_PLAY_AUDIO_OK },
  1572. { NULL, NULL, 0 }
  1573. };
  1574. static unsigned int ide_cd_flags(struct hd_driveid *id)
  1575. {
  1576. const struct cd_list_entry *cle = ide_cd_quirks_list;
  1577. while (cle->id_model) {
  1578. if (strcmp(cle->id_model, id->model) == 0 &&
  1579. (cle->id_firmware == NULL ||
  1580. strstr(id->fw_rev, cle->id_firmware)))
  1581. return cle->cd_flags;
  1582. cle++;
  1583. }
  1584. return 0;
  1585. }
  1586. static int ide_cdrom_setup(ide_drive_t *drive)
  1587. {
  1588. struct cdrom_info *cd = drive->driver_data;
  1589. struct cdrom_device_info *cdi = &cd->devinfo;
  1590. struct hd_driveid *id = drive->id;
  1591. int nslots;
  1592. blk_queue_prep_rq(drive->queue, ide_cdrom_prep_fn);
  1593. blk_queue_dma_alignment(drive->queue, 31);
  1594. blk_queue_update_dma_pad(drive->queue, 15);
  1595. drive->queue->unplug_delay = (1 * HZ) / 1000;
  1596. if (!drive->queue->unplug_delay)
  1597. drive->queue->unplug_delay = 1;
  1598. drive->special.all = 0;
  1599. cd->cd_flags = IDE_CD_FLAG_MEDIA_CHANGED | IDE_CD_FLAG_NO_EJECT |
  1600. ide_cd_flags(id);
  1601. if ((id->config & 0x0060) == 0x20)
  1602. cd->cd_flags |= IDE_CD_FLAG_DRQ_INTERRUPT;
  1603. if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_300_SSD) &&
  1604. id->fw_rev[4] == '1' && id->fw_rev[6] <= '2')
  1605. cd->cd_flags |= (IDE_CD_FLAG_TOCTRACKS_AS_BCD |
  1606. IDE_CD_FLAG_TOCADDR_AS_BCD);
  1607. else if ((cd->cd_flags & IDE_CD_FLAG_VERTOS_600_ESD) &&
  1608. id->fw_rev[4] == '1' && id->fw_rev[6] <= '2')
  1609. cd->cd_flags |= IDE_CD_FLAG_TOCTRACKS_AS_BCD;
  1610. else if (cd->cd_flags & IDE_CD_FLAG_SANYO_3CD)
  1611. /* 3 => use CD in slot 0 */
  1612. cdi->sanyo_slot = 3;
  1613. nslots = ide_cdrom_probe_capabilities(drive);
  1614. /* set correct block size */
  1615. blk_queue_hardsect_size(drive->queue, CD_FRAMESIZE);
  1616. drive->dsc_overlap = (drive->next != drive);
  1617. if (ide_cdrom_register(drive, nslots)) {
  1618. printk(KERN_ERR "%s: %s failed to register device with the"
  1619. " cdrom driver.\n", drive->name, __func__);
  1620. cd->devinfo.handle = NULL;
  1621. return 1;
  1622. }
  1623. ide_cdrom_add_settings(drive);
  1624. return 0;
  1625. }
  1626. static void ide_cd_remove(ide_drive_t *drive)
  1627. {
  1628. struct cdrom_info *info = drive->driver_data;
  1629. ide_proc_unregister_driver(drive, info->driver);
  1630. del_gendisk(info->disk);
  1631. ide_cd_put(info);
  1632. }
  1633. static void ide_cd_release(struct kref *kref)
  1634. {
  1635. struct cdrom_info *info = to_ide_cd(kref);
  1636. struct cdrom_device_info *devinfo = &info->devinfo;
  1637. ide_drive_t *drive = info->drive;
  1638. struct gendisk *g = info->disk;
  1639. kfree(info->toc);
  1640. if (devinfo->handle == drive)
  1641. unregister_cdrom(devinfo);
  1642. drive->dsc_overlap = 0;
  1643. drive->driver_data = NULL;
  1644. blk_queue_prep_rq(drive->queue, NULL);
  1645. g->private_data = NULL;
  1646. put_disk(g);
  1647. kfree(info);
  1648. }
  1649. static int ide_cd_probe(ide_drive_t *);
  1650. static ide_driver_t ide_cdrom_driver = {
  1651. .gen_driver = {
  1652. .owner = THIS_MODULE,
  1653. .name = "ide-cdrom",
  1654. .bus = &ide_bus_type,
  1655. },
  1656. .probe = ide_cd_probe,
  1657. .remove = ide_cd_remove,
  1658. .version = IDECD_VERSION,
  1659. .media = ide_cdrom,
  1660. .supports_dsc_overlap = 1,
  1661. .do_request = ide_cd_do_request,
  1662. .end_request = ide_end_request,
  1663. .error = __ide_error,
  1664. #ifdef CONFIG_IDE_PROC_FS
  1665. .proc = idecd_proc,
  1666. #endif
  1667. };
  1668. static int idecd_open(struct inode *inode, struct file *file)
  1669. {
  1670. struct gendisk *disk = inode->i_bdev->bd_disk;
  1671. struct cdrom_info *info;
  1672. int rc = -ENOMEM;
  1673. info = ide_cd_get(disk);
  1674. if (!info)
  1675. return -ENXIO;
  1676. rc = cdrom_open(&info->devinfo, inode, file);
  1677. if (rc < 0)
  1678. ide_cd_put(info);
  1679. return rc;
  1680. }
  1681. static int idecd_release(struct inode *inode, struct file *file)
  1682. {
  1683. struct gendisk *disk = inode->i_bdev->bd_disk;
  1684. struct cdrom_info *info = ide_cd_g(disk);
  1685. cdrom_release(&info->devinfo, file);
  1686. ide_cd_put(info);
  1687. return 0;
  1688. }
  1689. static int idecd_set_spindown(struct cdrom_device_info *cdi, unsigned long arg)
  1690. {
  1691. struct packet_command cgc;
  1692. char buffer[16];
  1693. int stat;
  1694. char spindown;
  1695. if (copy_from_user(&spindown, (void __user *)arg, sizeof(char)))
  1696. return -EFAULT;
  1697. init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
  1698. stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
  1699. if (stat)
  1700. return stat;
  1701. buffer[11] = (buffer[11] & 0xf0) | (spindown & 0x0f);
  1702. return cdrom_mode_select(cdi, &cgc);
  1703. }
  1704. static int idecd_get_spindown(struct cdrom_device_info *cdi, unsigned long arg)
  1705. {
  1706. struct packet_command cgc;
  1707. char buffer[16];
  1708. int stat;
  1709. char spindown;
  1710. init_cdrom_command(&cgc, buffer, sizeof(buffer), CGC_DATA_UNKNOWN);
  1711. stat = cdrom_mode_sense(cdi, &cgc, GPMODE_CDROM_PAGE, 0);
  1712. if (stat)
  1713. return stat;
  1714. spindown = buffer[11] & 0x0f;
  1715. if (copy_to_user((void __user *)arg, &spindown, sizeof(char)))
  1716. return -EFAULT;
  1717. return 0;
  1718. }
  1719. static int idecd_ioctl(struct inode *inode, struct file *file,
  1720. unsigned int cmd, unsigned long arg)
  1721. {
  1722. struct block_device *bdev = inode->i_bdev;
  1723. struct cdrom_info *info = ide_cd_g(bdev->bd_disk);
  1724. int err;
  1725. switch (cmd) {
  1726. case CDROMSETSPINDOWN:
  1727. return idecd_set_spindown(&info->devinfo, arg);
  1728. case CDROMGETSPINDOWN:
  1729. return idecd_get_spindown(&info->devinfo, arg);
  1730. default:
  1731. break;
  1732. }
  1733. err = generic_ide_ioctl(info->drive, file, bdev, cmd, arg);
  1734. if (err == -EINVAL)
  1735. err = cdrom_ioctl(file, &info->devinfo, inode, cmd, arg);
  1736. return err;
  1737. }
  1738. static int idecd_media_changed(struct gendisk *disk)
  1739. {
  1740. struct cdrom_info *info = ide_cd_g(disk);
  1741. return cdrom_media_changed(&info->devinfo);
  1742. }
  1743. static int idecd_revalidate_disk(struct gendisk *disk)
  1744. {
  1745. struct cdrom_info *info = ide_cd_g(disk);
  1746. struct request_sense sense;
  1747. ide_cd_read_toc(info->drive, &sense);
  1748. return 0;
  1749. }
  1750. static struct block_device_operations idecd_ops = {
  1751. .owner = THIS_MODULE,
  1752. .open = idecd_open,
  1753. .release = idecd_release,
  1754. .ioctl = idecd_ioctl,
  1755. .media_changed = idecd_media_changed,
  1756. .revalidate_disk = idecd_revalidate_disk
  1757. };
  1758. /* module options */
  1759. static char *ignore;
  1760. module_param(ignore, charp, 0400);
  1761. MODULE_DESCRIPTION("ATAPI CD-ROM Driver");
  1762. static int ide_cd_probe(ide_drive_t *drive)
  1763. {
  1764. struct cdrom_info *info;
  1765. struct gendisk *g;
  1766. struct request_sense sense;
  1767. if (!strstr("ide-cdrom", drive->driver_req))
  1768. goto failed;
  1769. if (!drive->present)
  1770. goto failed;
  1771. if (drive->media != ide_cdrom && drive->media != ide_optical)
  1772. goto failed;
  1773. /* skip drives that we were told to ignore */
  1774. if (ignore != NULL) {
  1775. if (strstr(ignore, drive->name)) {
  1776. printk(KERN_INFO "ide-cd: ignoring drive %s\n",
  1777. drive->name);
  1778. goto failed;
  1779. }
  1780. }
  1781. info = kzalloc(sizeof(struct cdrom_info), GFP_KERNEL);
  1782. if (info == NULL) {
  1783. printk(KERN_ERR "%s: Can't allocate a cdrom structure\n",
  1784. drive->name);
  1785. goto failed;
  1786. }
  1787. g = alloc_disk(1 << PARTN_BITS);
  1788. if (!g)
  1789. goto out_free_cd;
  1790. ide_init_disk(g, drive);
  1791. ide_proc_register_driver(drive, &ide_cdrom_driver);
  1792. kref_init(&info->kref);
  1793. info->drive = drive;
  1794. info->driver = &ide_cdrom_driver;
  1795. info->disk = g;
  1796. g->private_data = &info->driver;
  1797. drive->driver_data = info;
  1798. g->minors = 1;
  1799. g->driverfs_dev = &drive->gendev;
  1800. g->flags = GENHD_FL_CD | GENHD_FL_REMOVABLE;
  1801. if (ide_cdrom_setup(drive)) {
  1802. ide_proc_unregister_driver(drive, &ide_cdrom_driver);
  1803. ide_cd_release(&info->kref);
  1804. goto failed;
  1805. }
  1806. ide_cd_read_toc(drive, &sense);
  1807. g->fops = &idecd_ops;
  1808. g->flags |= GENHD_FL_REMOVABLE;
  1809. add_disk(g);
  1810. return 0;
  1811. out_free_cd:
  1812. kfree(info);
  1813. failed:
  1814. return -ENODEV;
  1815. }
  1816. static void __exit ide_cdrom_exit(void)
  1817. {
  1818. driver_unregister(&ide_cdrom_driver.gen_driver);
  1819. }
  1820. static int __init ide_cdrom_init(void)
  1821. {
  1822. return driver_register(&ide_cdrom_driver.gen_driver);
  1823. }
  1824. MODULE_ALIAS("ide:*m-cdrom*");
  1825. MODULE_ALIAS("ide-cd");
  1826. module_init(ide_cdrom_init);
  1827. module_exit(ide_cdrom_exit);
  1828. MODULE_LICENSE("GPL");