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. 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. static ide_startstop_t ide_cd_prepare_rw_request(ide_drive_t *drive,
  575. struct request *rq)
  576. {
  577. if (rq_data_dir(rq) == READ) {
  578. unsigned short sectors_per_frame =
  579. queue_hardsect_size(drive->queue) >> SECTOR_BITS;
  580. int nskip = rq->sector & (sectors_per_frame - 1);
  581. /*
  582. * If the requested sector doesn't start on a frame boundary,
  583. * we must adjust the start of the transfer so that it does,
  584. * and remember to skip the first few sectors.
  585. *
  586. * If the rq->current_nr_sectors field is larger than the size
  587. * of the buffer, it will mean that we're to skip a number of
  588. * sectors equal to the amount by which rq->current_nr_sectors
  589. * is larger than the buffer size.
  590. */
  591. if (nskip > 0) {
  592. /* sanity check... */
  593. if (rq->current_nr_sectors !=
  594. bio_cur_sectors(rq->bio)) {
  595. printk(KERN_ERR "%s: %s: buffer botch (%u)\n",
  596. drive->name, __func__,
  597. rq->current_nr_sectors);
  598. cdrom_end_request(drive, 0);
  599. return ide_stopped;
  600. }
  601. rq->current_nr_sectors += nskip;
  602. }
  603. }
  604. #if 0
  605. else
  606. /* the immediate bit */
  607. rq->cmd[1] = 1 << 3;
  608. #endif
  609. /* set up the command */
  610. rq->timeout = ATAPI_WAIT_PC;
  611. return ide_started;
  612. }
  613. /*
  614. * Routine to send a read/write packet command to the drive. This is usually
  615. * called directly from cdrom_start_{read,write}(). However, for drq_interrupt
  616. * devices, it is called from an interrupt when the drive is ready to accept
  617. * the command.
  618. */
  619. static ide_startstop_t cdrom_start_rw_cont(ide_drive_t *drive)
  620. {
  621. struct request *rq = drive->hwif->hwgroup->rq;
  622. /* send the command to the drive and return */
  623. return cdrom_transfer_packet_command(drive, rq, cdrom_newpc_intr);
  624. }
  625. #define IDECD_SEEK_THRESHOLD (1000) /* 1000 blocks */
  626. #define IDECD_SEEK_TIMER (5 * WAIT_MIN_SLEEP) /* 100 ms */
  627. #define IDECD_SEEK_TIMEOUT (2 * WAIT_CMD) /* 20 sec */
  628. static ide_startstop_t cdrom_seek_intr(ide_drive_t *drive)
  629. {
  630. struct cdrom_info *info = drive->driver_data;
  631. int stat;
  632. static int retry = 10;
  633. if (cdrom_decode_status(drive, 0, &stat))
  634. return ide_stopped;
  635. info->cd_flags |= IDE_CD_FLAG_SEEKING;
  636. if (retry && time_after(jiffies, info->start_seek + IDECD_SEEK_TIMER)) {
  637. if (--retry == 0)
  638. drive->dsc_overlap = 0;
  639. }
  640. return ide_stopped;
  641. }
  642. static void ide_cd_prepare_seek_request(ide_drive_t *drive, struct request *rq)
  643. {
  644. sector_t frame = rq->sector;
  645. sector_div(frame, queue_hardsect_size(drive->queue) >> SECTOR_BITS);
  646. memset(rq->cmd, 0, BLK_MAX_CDB);
  647. rq->cmd[0] = GPCMD_SEEK;
  648. put_unaligned(cpu_to_be32(frame), (unsigned int *) &rq->cmd[2]);
  649. rq->timeout = ATAPI_WAIT_PC;
  650. }
  651. static ide_startstop_t cdrom_start_seek_continuation(ide_drive_t *drive)
  652. {
  653. struct request *rq = drive->hwif->hwgroup->rq;
  654. return cdrom_transfer_packet_command(drive, rq, &cdrom_seek_intr);
  655. }
  656. /*
  657. * Fix up a possibly partially-processed request so that we can start it over
  658. * entirely, or even put it back on the request queue.
  659. */
  660. static void restore_request(struct request *rq)
  661. {
  662. if (rq->buffer != bio_data(rq->bio)) {
  663. sector_t n =
  664. (rq->buffer - (char *)bio_data(rq->bio)) / SECTOR_SIZE;
  665. rq->buffer = bio_data(rq->bio);
  666. rq->nr_sectors += n;
  667. rq->sector -= n;
  668. }
  669. rq->current_nr_sectors = bio_cur_sectors(rq->bio);
  670. rq->hard_cur_sectors = rq->current_nr_sectors;
  671. rq->hard_nr_sectors = rq->nr_sectors;
  672. rq->hard_sector = rq->sector;
  673. rq->q->prep_rq_fn(rq->q, rq);
  674. }
  675. /*
  676. * All other packet commands.
  677. */
  678. static void ide_cd_request_sense_fixup(struct request *rq)
  679. {
  680. /*
  681. * Some of the trailing request sense fields are optional,
  682. * and some drives don't send them. Sigh.
  683. */
  684. if (rq->cmd[0] == GPCMD_REQUEST_SENSE &&
  685. rq->data_len > 0 && rq->data_len <= 5)
  686. while (rq->data_len > 0) {
  687. *(u8 *)rq->data++ = 0;
  688. --rq->data_len;
  689. }
  690. }
  691. int ide_cd_queue_pc(ide_drive_t *drive, const unsigned char *cmd,
  692. int write, void *buffer, unsigned *bufflen,
  693. struct request_sense *sense, int timeout,
  694. unsigned int cmd_flags)
  695. {
  696. struct cdrom_info *info = drive->driver_data;
  697. struct request_sense local_sense;
  698. int retries = 10;
  699. unsigned int flags = 0;
  700. if (!sense)
  701. sense = &local_sense;
  702. /* start of retry loop */
  703. do {
  704. struct request *rq;
  705. int error;
  706. rq = blk_get_request(drive->queue, write, __GFP_WAIT);
  707. memcpy(rq->cmd, cmd, BLK_MAX_CDB);
  708. rq->cmd_type = REQ_TYPE_ATA_PC;
  709. rq->sense = sense;
  710. rq->cmd_flags |= cmd_flags;
  711. rq->timeout = timeout;
  712. if (buffer) {
  713. rq->data = buffer;
  714. rq->data_len = *bufflen;
  715. }
  716. error = blk_execute_rq(drive->queue, info->disk, rq, 0);
  717. if (buffer)
  718. *bufflen = rq->data_len;
  719. flags = rq->cmd_flags;
  720. blk_put_request(rq);
  721. /*
  722. * FIXME: we should probably abort/retry or something in case of
  723. * failure.
  724. */
  725. if (flags & REQ_FAILED) {
  726. /*
  727. * The request failed. Retry if it was due to a unit
  728. * attention status (usually means media was changed).
  729. */
  730. struct request_sense *reqbuf = sense;
  731. if (reqbuf->sense_key == UNIT_ATTENTION)
  732. cdrom_saw_media_change(drive);
  733. else if (reqbuf->sense_key == NOT_READY &&
  734. reqbuf->asc == 4 && reqbuf->ascq != 4) {
  735. /*
  736. * The drive is in the process of loading
  737. * a disk. Retry, but wait a little to give
  738. * the drive time to complete the load.
  739. */
  740. ssleep(2);
  741. } else {
  742. /* otherwise, don't retry */
  743. retries = 0;
  744. }
  745. --retries;
  746. }
  747. /* end of retry loop */
  748. } while ((flags & REQ_FAILED) && retries >= 0);
  749. /* return an error if the command failed */
  750. return (flags & REQ_FAILED) ? -EIO : 0;
  751. }
  752. /*
  753. * Called from blk_end_request_callback() after the data of the request is
  754. * completed and before the request itself is completed. By returning value '1',
  755. * blk_end_request_callback() returns immediately without completing it.
  756. */
  757. static int cdrom_newpc_intr_dummy_cb(struct request *rq)
  758. {
  759. return 1;
  760. }
  761. static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive)
  762. {
  763. ide_hwif_t *hwif = drive->hwif;
  764. struct cdrom_info *info = drive->driver_data;
  765. struct request *rq = HWGROUP(drive)->rq;
  766. xfer_func_t *xferfunc;
  767. ide_expiry_t *expiry = NULL;
  768. int dma_error = 0, dma, stat, ireason, len, thislen, uptodate = 0;
  769. int write = (rq_data_dir(rq) == WRITE) ? 1 : 0;
  770. unsigned int timeout;
  771. u8 lowcyl, highcyl;
  772. /* check for errors */
  773. dma = info->dma;
  774. if (dma) {
  775. info->dma = 0;
  776. dma_error = hwif->dma_ops->dma_end(drive);
  777. if (dma_error) {
  778. printk(KERN_ERR "%s: DMA %s error\n", drive->name,
  779. write ? "write" : "read");
  780. ide_dma_off(drive);
  781. }
  782. }
  783. if (cdrom_decode_status(drive, 0, &stat))
  784. return ide_stopped;
  785. /* using dma, transfer is complete now */
  786. if (dma) {
  787. if (dma_error)
  788. return ide_error(drive, "dma error", stat);
  789. if (blk_fs_request(rq)) {
  790. ide_end_request(drive, 1, rq->nr_sectors);
  791. return ide_stopped;
  792. }
  793. goto end_request;
  794. }
  795. /* ok we fall to pio :/ */
  796. ireason = hwif->INB(hwif->io_ports.nsect_addr) & 0x3;
  797. lowcyl = hwif->INB(hwif->io_ports.lbam_addr);
  798. highcyl = hwif->INB(hwif->io_ports.lbah_addr);
  799. len = lowcyl + (256 * highcyl);
  800. thislen = blk_fs_request(rq) ? len : rq->data_len;
  801. if (thislen > len)
  802. thislen = len;
  803. /* If DRQ is clear, the command has completed. */
  804. if ((stat & DRQ_STAT) == 0) {
  805. if (blk_fs_request(rq)) {
  806. /*
  807. * If we're not done reading/writing, complain.
  808. * Otherwise, complete the command normally.
  809. */
  810. uptodate = 1;
  811. if (rq->current_nr_sectors > 0) {
  812. printk(KERN_ERR "%s: %s: data underrun "
  813. "(%d blocks)\n",
  814. drive->name, __func__,
  815. rq->current_nr_sectors);
  816. if (!write)
  817. rq->cmd_flags |= REQ_FAILED;
  818. uptodate = 0;
  819. }
  820. cdrom_end_request(drive, uptodate);
  821. return ide_stopped;
  822. } else if (!blk_pc_request(rq)) {
  823. ide_cd_request_sense_fixup(rq);
  824. /* complain if we still have data left to transfer */
  825. uptodate = rq->data_len ? 0 : 1;
  826. }
  827. goto end_request;
  828. }
  829. /* check which way to transfer data */
  830. if (ide_cd_check_ireason(drive, rq, len, ireason, write))
  831. return ide_stopped;
  832. if (blk_fs_request(rq)) {
  833. if (write == 0) {
  834. int nskip;
  835. if (ide_cd_check_transfer_size(drive, len)) {
  836. cdrom_end_request(drive, 0);
  837. return ide_stopped;
  838. }
  839. /*
  840. * First, figure out if we need to bit-bucket
  841. * any of the leading sectors.
  842. */
  843. nskip = min_t(int, rq->current_nr_sectors
  844. - bio_cur_sectors(rq->bio),
  845. thislen >> 9);
  846. if (nskip > 0) {
  847. ide_pad_transfer(drive, write, nskip << 9);
  848. rq->current_nr_sectors -= nskip;
  849. thislen -= (nskip << 9);
  850. }
  851. }
  852. }
  853. if (ireason == 0) {
  854. write = 1;
  855. xferfunc = hwif->output_data;
  856. } else {
  857. write = 0;
  858. xferfunc = hwif->input_data;
  859. }
  860. /* transfer data */
  861. while (thislen > 0) {
  862. u8 *ptr = blk_fs_request(rq) ? NULL : rq->data;
  863. int blen = rq->data_len;
  864. /* bio backed? */
  865. if (rq->bio) {
  866. if (blk_fs_request(rq)) {
  867. ptr = rq->buffer;
  868. blen = rq->current_nr_sectors << 9;
  869. } else {
  870. ptr = bio_data(rq->bio);
  871. blen = bio_iovec(rq->bio)->bv_len;
  872. }
  873. }
  874. if (!ptr) {
  875. if (blk_fs_request(rq) && !write)
  876. /*
  877. * If the buffers are full, pipe the rest into
  878. * oblivion.
  879. */
  880. ide_pad_transfer(drive, 0, thislen);
  881. else {
  882. printk(KERN_ERR "%s: confused, missing data\n",
  883. drive->name);
  884. blk_dump_rq_flags(rq, rq_data_dir(rq)
  885. ? "cdrom_newpc_intr, write"
  886. : "cdrom_newpc_intr, read");
  887. }
  888. break;
  889. }
  890. if (blen > thislen)
  891. blen = thislen;
  892. xferfunc(drive, NULL, ptr, blen);
  893. thislen -= blen;
  894. len -= blen;
  895. if (blk_fs_request(rq)) {
  896. rq->buffer += blen;
  897. rq->nr_sectors -= (blen >> 9);
  898. rq->current_nr_sectors -= (blen >> 9);
  899. rq->sector += (blen >> 9);
  900. if (rq->current_nr_sectors == 0 && rq->nr_sectors)
  901. cdrom_end_request(drive, 1);
  902. } else {
  903. rq->data_len -= blen;
  904. /*
  905. * The request can't be completed until DRQ is cleared.
  906. * So complete the data, but don't complete the request
  907. * using the dummy function for the callback feature
  908. * of blk_end_request_callback().
  909. */
  910. if (rq->bio)
  911. blk_end_request_callback(rq, 0, blen,
  912. cdrom_newpc_intr_dummy_cb);
  913. else
  914. rq->data += blen;
  915. }
  916. if (!write && blk_sense_request(rq))
  917. rq->sense_len += blen;
  918. }
  919. /* pad, if necessary */
  920. if (!blk_fs_request(rq) && len > 0)
  921. ide_pad_transfer(drive, write, len);
  922. if (blk_pc_request(rq)) {
  923. timeout = rq->timeout;
  924. } else {
  925. timeout = ATAPI_WAIT_PC;
  926. if (!blk_fs_request(rq))
  927. expiry = cdrom_timer_expiry;
  928. }
  929. ide_set_handler(drive, cdrom_newpc_intr, timeout, expiry);
  930. return ide_started;
  931. end_request:
  932. if (blk_pc_request(rq)) {
  933. unsigned long flags;
  934. unsigned int dlen = rq->data_len;
  935. if (dma)
  936. rq->data_len = 0;
  937. spin_lock_irqsave(&ide_lock, flags);
  938. if (__blk_end_request(rq, 0, dlen))
  939. BUG();
  940. HWGROUP(drive)->rq = NULL;
  941. spin_unlock_irqrestore(&ide_lock, flags);
  942. } else {
  943. if (!uptodate)
  944. rq->cmd_flags |= REQ_FAILED;
  945. cdrom_end_request(drive, uptodate);
  946. }
  947. return ide_stopped;
  948. }
  949. static ide_startstop_t cdrom_start_rw(ide_drive_t *drive, struct request *rq)
  950. {
  951. struct cdrom_info *cd = drive->driver_data;
  952. int write = rq_data_dir(rq) == WRITE;
  953. unsigned short sectors_per_frame =
  954. queue_hardsect_size(drive->queue) >> SECTOR_BITS;
  955. if (write) {
  956. /* disk has become write protected */
  957. if (cd->disk->policy) {
  958. cdrom_end_request(drive, 0);
  959. return ide_stopped;
  960. }
  961. } else {
  962. /*
  963. * We may be retrying this request after an error. Fix up any
  964. * weirdness which might be present in the request packet.
  965. */
  966. restore_request(rq);
  967. }
  968. /* use DMA, if possible / writes *must* be hardware frame aligned */
  969. if ((rq->nr_sectors & (sectors_per_frame - 1)) ||
  970. (rq->sector & (sectors_per_frame - 1))) {
  971. if (write) {
  972. cdrom_end_request(drive, 0);
  973. return ide_stopped;
  974. }
  975. cd->dma = 0;
  976. } else
  977. cd->dma = drive->using_dma;
  978. if (write)
  979. cd->devinfo.media_written = 1;
  980. return ide_started;
  981. }
  982. static ide_startstop_t cdrom_do_newpc_cont(ide_drive_t *drive)
  983. {
  984. struct request *rq = HWGROUP(drive)->rq;
  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. 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");