ide-cd.c 56 KB

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