cdu31a.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:89k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. * Sony CDU-31A CDROM interface device driver.
  3. *
  4. * Corey Minyard (minyard@wf-rch.cirr.com)
  5. *
  6. * Colossians 3:17
  7. *
  8. *  See Documentation/cdrom/cdu31a for additional details about this driver.
  9. * The Sony interface device driver handles Sony interface CDROM
  10. * drives and provides a complete block-level interface as well as an
  11. * ioctl() interface compatible with the Sun (as specified in
  12. * include/linux/cdrom.h).  With this interface, CDROMs can be
  13. * accessed and standard audio CDs can be played back normally.
  14. *
  15. * WARNING -  All autoprobes have been removed from the driver.
  16. * You MUST configure the CDU31A via a LILO config
  17. * at boot time or in lilo.conf.  I have the
  18. * following in my lilo.conf:
  19. *
  20. *                append="cdu31a=0x1f88,0,PAS"
  21. *
  22. * The first number is the I/O base address of the
  23. * card.  The second is the interrupt (0 means none).
  24.  * The third should be "PAS" if on a Pro-Audio
  25.  * spectrum, or nothing if on something else.
  26.  *
  27.  * This interface is (unfortunately) a polled interface.  This is
  28.  * because most Sony interfaces are set up with DMA and interrupts
  29.  * disables.  Some (like mine) do not even have the capability to
  30.  * handle interrupts or DMA.  For this reason you will see a lot of
  31.  * the following:
  32.  *
  33.  *   retry_count = jiffies+ SONY_JIFFIES_TIMEOUT;
  34.  *   while (time_before(jiffies, retry_count) && (! <some condition to wait for))
  35.  *   {
  36.  *      while (handle_sony_cd_attention())
  37.  *         ;
  38.  *
  39.  *      sony_sleep();
  40.  *   }
  41.  *   if (the condition not met)
  42.  *   {
  43.  *      return an error;
  44.  *   }
  45.  *
  46.  * This ugly hack waits for something to happen, sleeping a little
  47.  * between every try.  it also handles attentions, which are
  48.  * asynchronous events from the drive informing the driver that a disk
  49.  * has been inserted, removed, etc.
  50.  *
  51.  * NEWS FLASH - The driver now supports interrupts but they are
  52.  * turned off by default.  Use of interrupts is highly encouraged, it
  53.  * cuts CPU usage down to a reasonable level.  I had DMA in for a while
  54.  * but PC DMA is just too slow.  Better to just insb() it.
  55.  *
  56.  * One thing about these drives: They talk in MSF (Minute Second Frame) format.
  57.  * There are 75 frames a second, 60 seconds a minute, and up to 75 minutes on a
  58.  * disk.  The funny thing is that these are sent to the drive in BCD, but the
  59.  * interface wants to see them in decimal.  A lot of conversion goes on.
  60.  *
  61.  * DRIVER SPECIAL FEATURES
  62.  * -----------------------
  63.  *
  64.  * This section describes features beyond the normal audio and CD-ROM
  65.  * functions of the drive.
  66.  *
  67.  * 2048 byte buffer mode
  68.  *
  69.  * If a disk is mounted with -o block=2048, data is copied straight
  70.  * from the drive data port to the buffer.  Otherwise, the readahead
  71.  * buffer must be involved to hold the other 1K of data when a 1K
  72.  * block operation is done.  Note that with 2048 byte blocks you
  73.  * cannot execute files from the CD.
  74.  *
  75.  * XA compatibility
  76.  *
  77.  * The driver should support XA disks for both the CDU31A and CDU33A.
  78.  * It does this transparently, the using program doesn't need to set it.
  79.  *
  80.  * Multi-Session
  81.  *
  82.  * A multi-session disk looks just like a normal disk to the user.
  83.  * Just mount one normally, and all the data should be there.
  84.  * A special thanks to Koen for help with this!
  85.  * 
  86.  * Raw sector I/O
  87.  *
  88.  * Using the CDROMREADAUDIO it is possible to read raw audio and data
  89.  * tracks.  Both operations return 2352 bytes per sector.  On the data
  90.  * tracks, the first 12 bytes is not returned by the drive and the value
  91.  * of that data is indeterminate.
  92.  *
  93.  *
  94.  *  Copyright (C) 1993  Corey Minyard
  95.  *
  96.  *  This program is free software; you can redistribute it and/or modify
  97.  *  it under the terms of the GNU General Public License as published by
  98.  *  the Free Software Foundation; either version 2 of the License, or
  99.  *  (at your option) any later version.
  100.  *
  101.  *  This program is distributed in the hope that it will be useful,
  102.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  103.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  104.  *  GNU General Public License for more details.
  105.  *
  106.  *  You should have received a copy of the GNU General Public License
  107.  *  along with this program; if not, write to the Free Software
  108.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  109.  *
  110.  * TODO: 
  111.  *       CDs with form1 and form2 sectors cause problems
  112.  *       with current read-ahead strategy.
  113.  *
  114.  * Credits:
  115.  *    Heiko Eissfeldt <heiko@colossus.escape.de>
  116.  *         For finding abug in the return of the track numbers.
  117.  *         TOC processing redone for proper multisession support.
  118.  *
  119.  *
  120.  *  It probably a little late to be adding a history, but I guess I
  121.  *  will start.
  122.  *
  123.  *  10/24/95 - Added support for disabling the eject button when the
  124.  *             drive is open.  Note that there is a small problem
  125.  *             still here, if the eject button is pushed while the
  126.  *             drive light is flashing, the drive will return a bad
  127.  *             status and be reset.  It recovers, though.
  128.  *
  129.  *  03/07/97 - Fixed a problem with timers.
  130.  *
  131.  *
  132.  *  18 Spetember 1997 -- Ported to Uniform CD-ROM driver by 
  133.  *                 Heiko Eissfeldt <heiko@colossus.escape.de> with additional
  134.  *                 changes by Erik Andersen <andersee@debian.org>
  135.  *
  136.  *  24 January 1998 -- Removed the scd_disc_status() function, which was now
  137.  *                     just dead code left over from the port.
  138.  *                          Erik Andersen <andersee@debian.org>
  139.  *
  140.  *  16 July 1998 -- Drive donated to Erik Andersen by John Kodis
  141.  *                   <kodis@jagunet.com>.  Work begun on fixing driver to
  142.  *                   work under 2.1.X.  Added temporary extra printks
  143.  *                   which seem to slow it down enough to work.
  144.  *
  145.  *  9 November 1999 -- Make kernel-parameter implementation work with 2.3.x 
  146.  *                Removed init_module & cleanup_module in favor of 
  147.  *        module_init & module_exit.
  148.  *        Torben Mathiasen <tmm@image.dk>
  149. */
  150. #include <linux/major.h>
  151. #include <linux/module.h>
  152. #include <linux/errno.h>
  153. #include <linux/signal.h>
  154. #include <linux/sched.h>
  155. #include <linux/timer.h>
  156. #include <linux/fs.h>
  157. #include <linux/kernel.h>
  158. #include <linux/hdreg.h>
  159. #include <linux/genhd.h>
  160. #include <linux/ioport.h>
  161. #include <linux/devfs_fs_kernel.h>
  162. #include <linux/string.h>
  163. #include <linux/slab.h>
  164. #include <linux/init.h>
  165. #include <linux/interrupt.h>
  166. #include <asm/system.h>
  167. #include <asm/io.h>
  168. #include <asm/uaccess.h>
  169. #include <asm/dma.h>
  170. #include <linux/cdrom.h>
  171. #include "cdu31a.h"
  172. #define MAJOR_NR CDU31A_CDROM_MAJOR
  173. #include <linux/blk.h>
  174. #define CDU31A_READAHEAD 4 /* 128 sector, 64kB, 32 reads read-ahead */
  175. #define CDU31A_MAX_CONSECUTIVE_ATTENTIONS 10
  176. #define DEBUG 0
  177. /* Define the following if you have data corruption problems. */
  178. #undef SONY_POLL_EACH_BYTE
  179. /*
  180. ** Edit the following data to change interrupts, DMA channels, etc.
  181. ** Default is polled and no DMA.  DMA is not recommended for double-speed
  182. ** drives.
  183. */
  184. static struct {
  185. unsigned short base; /* I/O Base Address */
  186. short int_num; /* Interrupt Number (-1 means scan for it,
  187.    0 means don't use) */
  188. } cdu31a_addresses[] __initdata = {
  189. {0}
  190. };
  191. static int handle_sony_cd_attention(void);
  192. static int read_subcode(void);
  193. static void sony_get_toc(void);
  194. static int scd_spinup(void);
  195. /*static int scd_open(struct inode *inode, struct file *filp);*/
  196. static int scd_open(struct cdrom_device_info *, int);
  197. static void do_sony_cd_cmd(unsigned char cmd,
  198.    unsigned char *params,
  199.    unsigned int num_params,
  200.    unsigned char *result_buffer,
  201.    unsigned int *result_size);
  202. static void size_to_buf(unsigned int size, unsigned char *buf);
  203. /* Parameters for the read-ahead. */
  204. static unsigned int sony_next_block; /* Next 512 byte block offset */
  205. static unsigned int sony_blocks_left = 0; /* Number of 512 byte blocks left
  206.    in the current read command. */
  207. /* The base I/O address of the Sony Interface.  This is a variable (not a
  208.    #define) so it can be easily changed via some future ioctl() */
  209. static unsigned int cdu31a_port = 0;
  210. MODULE_PARM(cdu31a_port, "i");
  211. /*
  212.  * The following are I/O addresses of the various registers for the drive.  The
  213.  * comment for the base address also applies here.
  214.  */
  215. static volatile unsigned short sony_cd_cmd_reg;
  216. static volatile unsigned short sony_cd_param_reg;
  217. static volatile unsigned short sony_cd_write_reg;
  218. static volatile unsigned short sony_cd_control_reg;
  219. static volatile unsigned short sony_cd_status_reg;
  220. static volatile unsigned short sony_cd_result_reg;
  221. static volatile unsigned short sony_cd_read_reg;
  222. static volatile unsigned short sony_cd_fifost_reg;
  223. static int sony_spun_up = 0; /* Has the drive been spun up? */
  224. static int sony_speed = 0; /* Last wanted speed */
  225. static int sony_xa_mode = 0; /* Is an XA disk in the drive
  226.    and the drive a CDU31A? */
  227. static int sony_raw_data_mode = 1; /* 1 if data tracks, 0 if audio.
  228.    For raw data reads. */
  229. static unsigned int sony_usage = 0; /* How many processes have the
  230.    drive open. */
  231. static int sony_pas_init = 0; /* Initialize the Pro-Audio
  232.    Spectrum card? */
  233. static struct s_sony_session_toc single_toc; /* Holds the
  234.    table of
  235.    contents. */
  236. static struct s_all_sessions_toc sony_toc; /* entries gathered from all
  237.    sessions */
  238. static int sony_toc_read = 0; /* Has the TOC been read for
  239.    the drive? */
  240. static struct s_sony_subcode last_sony_subcode; /* Points to the last
  241.    subcode address read */
  242. static volatile int sony_inuse = 0; /* Is the drive in use?  Only one operation
  243.    at a time allowed */
  244. static DECLARE_WAIT_QUEUE_HEAD(sony_wait); /* Things waiting for the drive */
  245. static struct task_struct *has_cd_task = NULL; /* The task that is currently
  246.    using the CDROM drive, or
  247.    NULL if none. */
  248. static int is_double_speed = 0; /* does the drive support double speed ? */
  249. static int is_a_cdu31a = 1; /* Is the drive a CDU31A? */
  250. static int is_auto_eject = 1; /* Door has been locked? 1=No/0=Yes */
  251. /*
  252.  * The audio status uses the values from read subchannel data as specified
  253.  * in include/linux/cdrom.h.
  254.  */
  255. static volatile int sony_audio_status = CDROM_AUDIO_NO_STATUS;
  256. /*
  257.  * The following are a hack for pausing and resuming audio play.  The drive
  258.  * does not work as I would expect it, if you stop it then start it again,
  259.  * the drive seeks back to the beginning and starts over.  This holds the
  260.  * position during a pause so a resume can restart it.  It uses the
  261.  * audio status variable above to tell if it is paused.
  262.  */
  263. static unsigned volatile char cur_pos_msf[3] = { 0, 0, 0 };
  264. static unsigned volatile char final_pos_msf[3] = { 0, 0, 0 };
  265. /* What IRQ is the drive using?  0 if none. */
  266. static int cdu31a_irq = 0;
  267. MODULE_PARM(cdu31a_irq, "i");
  268. /* The interrupt handler will wake this queue up when it gets an
  269.    interrupts. */
  270. DECLARE_WAIT_QUEUE_HEAD(cdu31a_irq_wait);
  271. static int curr_control_reg = 0; /* Current value of the control register */
  272. /* A disk changed variable.  When a disk change is detected, it will
  273.    all be set to TRUE.  As the upper layers ask for disk_changed status
  274.    it will be cleared. */
  275. static char disk_changed;
  276. /* Variable for using the readahead buffer.  The readahead buffer
  277.    is used for raw sector reads and for blocksizes that are smaller
  278.    than 2048 bytes. */
  279. static char readahead_buffer[CD_FRAMESIZE_RAW];
  280. static int readahead_dataleft = 0;
  281. static int readahead_bad = 0;
  282. /* Used to time a short period to abort an operation after the
  283.    drive has been idle for a while.  This keeps the light on
  284.    the drive from flashing for very long. */
  285. static struct timer_list cdu31a_abort_timer;
  286. /* Marks if the timeout has started an abort read.  This is used
  287.    on entry to the drive to tell the code to read out the status
  288.    from the abort read. */
  289. static int abort_read_started = 0;
  290. /*
  291.  * This routine returns 1 if the disk has been changed since the last
  292.  * check or 0 if it hasn't.
  293.  */
  294. static int scd_disk_change(kdev_t full_dev)
  295. {
  296. int retval;
  297. retval = disk_changed;
  298. disk_changed = 0;
  299. return retval;
  300. }
  301. /*
  302.  * Uniform cdrom interface function
  303.  * report back, if disc has changed from time of last request.
  304.  */
  305. static int scd_media_changed(struct cdrom_device_info *cdi, int disc_nr)
  306. {
  307. return scd_disk_change(cdi->dev);
  308. }
  309. /*
  310.  * Uniform cdrom interface function
  311.  * report back, if drive is ready
  312.  */
  313. static int scd_drive_status(struct cdrom_device_info *cdi, int slot_nr)
  314. {
  315. if (CDSL_CURRENT != slot_nr) {
  316. /* we have no changer support */
  317. return -EINVAL;
  318. }
  319. if (scd_spinup() == 0) {
  320. sony_spun_up = 1;
  321. }
  322. return sony_spun_up ? CDS_DISC_OK : CDS_DRIVE_NOT_READY;
  323. }
  324. static inline void enable_interrupts(void)
  325. {
  326. curr_control_reg |= (SONY_ATTN_INT_EN_BIT
  327.      | SONY_RES_RDY_INT_EN_BIT
  328.      | SONY_DATA_RDY_INT_EN_BIT);
  329. outb(curr_control_reg, sony_cd_control_reg);
  330. }
  331. static inline void disable_interrupts(void)
  332. {
  333. curr_control_reg &= ~(SONY_ATTN_INT_EN_BIT
  334.       | SONY_RES_RDY_INT_EN_BIT
  335.       | SONY_DATA_RDY_INT_EN_BIT);
  336. outb(curr_control_reg, sony_cd_control_reg);
  337. }
  338. /*
  339.  * Wait a little while (used for polling the drive).  If in initialization,
  340.  * setting a timeout doesn't work, so just loop for a while.
  341.  */
  342. static inline void sony_sleep(void)
  343. {
  344. unsigned long flags;
  345. if (cdu31a_irq <= 0) {
  346. current->state = TASK_INTERRUPTIBLE;
  347. schedule_timeout(0);
  348. } else { /* Interrupt driven */
  349. save_flags(flags);
  350. cli();
  351. enable_interrupts();
  352. interruptible_sleep_on(&cdu31a_irq_wait);
  353. restore_flags(flags);
  354. }
  355. }
  356. /*
  357.  * The following are convenience routine to read various status and set
  358.  * various conditions in the drive.
  359.  */
  360. static inline int is_attention(void)
  361. {
  362. return ((inb(sony_cd_status_reg) & SONY_ATTN_BIT) != 0);
  363. }
  364. static inline int is_busy(void)
  365. {
  366. return ((inb(sony_cd_status_reg) & SONY_BUSY_BIT) != 0);
  367. }
  368. static inline int is_data_ready(void)
  369. {
  370. return ((inb(sony_cd_status_reg) & SONY_DATA_RDY_BIT) != 0);
  371. }
  372. static inline int is_data_requested(void)
  373. {
  374. return ((inb(sony_cd_status_reg) & SONY_DATA_REQUEST_BIT) != 0);
  375. }
  376. static inline int is_result_ready(void)
  377. {
  378. return ((inb(sony_cd_status_reg) & SONY_RES_RDY_BIT) != 0);
  379. }
  380. static inline int is_param_write_rdy(void)
  381. {
  382. return ((inb(sony_cd_fifost_reg) & SONY_PARAM_WRITE_RDY_BIT) != 0);
  383. }
  384. static inline int is_result_reg_not_empty(void)
  385. {
  386. return ((inb(sony_cd_fifost_reg) & SONY_RES_REG_NOT_EMP_BIT) != 0);
  387. }
  388. static inline void reset_drive(void)
  389. {
  390. curr_control_reg = 0;
  391. readahead_dataleft = 0;
  392. sony_toc_read = 0;
  393. outb(SONY_DRIVE_RESET_BIT, sony_cd_control_reg);
  394. }
  395. /*
  396.  * Uniform cdrom interface function
  397.  * reset drive and return when it is ready
  398.  */
  399. static int scd_reset(struct cdrom_device_info *cdi)
  400. {
  401. int retry_count;
  402. reset_drive();
  403. retry_count = jiffies + SONY_RESET_TIMEOUT;
  404. while (time_before(jiffies, retry_count) && (!is_attention())) {
  405. sony_sleep();
  406. }
  407. return 0;
  408. }
  409. static inline void clear_attention(void)
  410. {
  411. outb(curr_control_reg | SONY_ATTN_CLR_BIT, sony_cd_control_reg);
  412. }
  413. static inline void clear_result_ready(void)
  414. {
  415. outb(curr_control_reg | SONY_RES_RDY_CLR_BIT, sony_cd_control_reg);
  416. }
  417. static inline void clear_data_ready(void)
  418. {
  419. outb(curr_control_reg | SONY_DATA_RDY_CLR_BIT,
  420.      sony_cd_control_reg);
  421. }
  422. static inline void clear_param_reg(void)
  423. {
  424. outb(curr_control_reg | SONY_PARAM_CLR_BIT, sony_cd_control_reg);
  425. }
  426. static inline unsigned char read_status_register(void)
  427. {
  428. return (inb(sony_cd_status_reg));
  429. }
  430. static inline unsigned char read_result_register(void)
  431. {
  432. return (inb(sony_cd_result_reg));
  433. }
  434. static inline unsigned char read_data_register(void)
  435. {
  436. return (inb(sony_cd_read_reg));
  437. }
  438. static inline void write_param(unsigned char param)
  439. {
  440. outb(param, sony_cd_param_reg);
  441. }
  442. static inline void write_cmd(unsigned char cmd)
  443. {
  444. outb(curr_control_reg | SONY_RES_RDY_INT_EN_BIT,
  445.      sony_cd_control_reg);
  446. outb(cmd, sony_cd_cmd_reg);
  447. }
  448. static void cdu31a_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  449. {
  450. unsigned char val;
  451. if (abort_read_started) {
  452. /* We might be waiting for an abort to finish.  Don't
  453.    disable interrupts yet, though, because we handle
  454.    this one here. */
  455. /* Clear out the result registers. */
  456. while (is_result_reg_not_empty()) {
  457. val = read_result_register();
  458. }
  459. clear_data_ready();
  460. clear_result_ready();
  461. /* Clear out the data */
  462. while (is_data_requested()) {
  463. val = read_data_register();
  464. }
  465. abort_read_started = 0;
  466. /* If something was waiting, wake it up now. */
  467. if (waitqueue_active(&cdu31a_irq_wait)) {
  468. disable_interrupts();
  469. wake_up(&cdu31a_irq_wait);
  470. }
  471. } else if (waitqueue_active(&cdu31a_irq_wait)) {
  472. disable_interrupts();
  473. wake_up(&cdu31a_irq_wait);
  474. } else {
  475. disable_interrupts();
  476. printk
  477.     ("CDU31A: Got an interrupt but nothing was waitingn");
  478. }
  479. }
  480. /*
  481.  * give more verbose error messages
  482.  */
  483. static unsigned char *translate_error(unsigned char err_code)
  484. {
  485. static unsigned char errbuf[80];
  486. switch (err_code) {
  487. case 0x10:
  488. return "illegal command ";
  489. case 0x11:
  490. return "illegal parameter ";
  491. case 0x20:
  492. return "not loaded ";
  493. case 0x21:
  494. return "no disc ";
  495. case 0x22:
  496. return "not spinning ";
  497. case 0x23:
  498. return "spinning ";
  499. case 0x25:
  500. return "spindle servo ";
  501. case 0x26:
  502. return "focus servo ";
  503. case 0x29:
  504. return "eject mechanism ";
  505. case 0x2a:
  506. return "audio playing ";
  507. case 0x2c:
  508. return "emergency eject ";
  509. case 0x30:
  510. return "focus ";
  511. case 0x31:
  512. return "frame sync ";
  513. case 0x32:
  514. return "subcode address ";
  515. case 0x33:
  516. return "block sync ";
  517. case 0x34:
  518. return "header address ";
  519. case 0x40:
  520. return "illegal track read ";
  521. case 0x41:
  522. return "mode 0 read ";
  523. case 0x42:
  524. return "illegal mode read ";
  525. case 0x43:
  526. return "illegal block size read ";
  527. case 0x44:
  528. return "mode read ";
  529. case 0x45:
  530. return "form read ";
  531. case 0x46:
  532. return "leadout read ";
  533. case 0x47:
  534. return "buffer overrun ";
  535. case 0x53:
  536. return "unrecoverable CIRC ";
  537. case 0x57:
  538. return "unrecoverable LECC ";
  539. case 0x60:
  540. return "no TOC ";
  541. case 0x61:
  542. return "invalid subcode data ";
  543. case 0x63:
  544. return "focus on TOC read ";
  545. case 0x64:
  546. return "frame sync on TOC read ";
  547. case 0x65:
  548. return "TOC data ";
  549. case 0x70:
  550. return "hardware failure ";
  551. case 0x91:
  552. return "leadin ";
  553. case 0x92:
  554. return "leadout ";
  555. case 0x93:
  556. return "data track ";
  557. }
  558. sprintf(errbuf, "unknown 0x%02x ", err_code);
  559. return errbuf;
  560. }
  561. /*
  562.  * Set the drive parameters so the drive will auto-spin-up when a
  563.  * disk is inserted.
  564.  */
  565. static void set_drive_params(int want_doublespeed)
  566. {
  567. unsigned char res_reg[12];
  568. unsigned int res_size;
  569. unsigned char params[3];
  570. params[0] = SONY_SD_AUTO_SPIN_DOWN_TIME;
  571. params[1] = 0x00; /* Never spin down the drive. */
  572. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  573.        params, 2, res_reg, &res_size);
  574. if ((res_size < 2) || ((res_reg[0] & 0xf0) == 0x20)) {
  575. printk("  Unable to set spin-down time: 0x%2.2xn",
  576.        res_reg[1]);
  577. }
  578. params[0] = SONY_SD_MECH_CONTROL;
  579. params[1] = SONY_AUTO_SPIN_UP_BIT; /* Set auto spin up */
  580. if (is_auto_eject)
  581. params[1] |= SONY_AUTO_EJECT_BIT;
  582. if (is_double_speed && want_doublespeed) {
  583. params[1] |= SONY_DOUBLE_SPEED_BIT; /* Set the drive to double speed if 
  584.    possible */
  585. }
  586. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  587.        params, 2, res_reg, &res_size);
  588. if ((res_size < 2) || ((res_reg[0] & 0xf0) == 0x20)) {
  589. printk("  Unable to set mechanical parameters: 0x%2.2xn",
  590.        res_reg[1]);
  591. }
  592. }
  593. /*
  594.  * Uniform cdrom interface function
  595.  * select reading speed for data access
  596.  */
  597. static int scd_select_speed(struct cdrom_device_info *cdi, int speed)
  598. {
  599. if (speed == 0)
  600. sony_speed = 1;
  601. else
  602. sony_speed = speed - 1;
  603. set_drive_params(sony_speed);
  604. return 0;
  605. }
  606. /*
  607.  * Uniform cdrom interface function
  608.  * lock or unlock eject button
  609.  */
  610. static int scd_lock_door(struct cdrom_device_info *cdi, int lock)
  611. {
  612. if (lock == 0 && sony_usage == 1) {
  613. /* Unlock the door, only if nobody is using the drive */
  614. is_auto_eject = 1;
  615. } else {
  616. is_auto_eject = 0;
  617. }
  618. set_drive_params(sony_speed);
  619. return 0;
  620. }
  621. /*
  622.  * This code will reset the drive and attempt to restore sane parameters.
  623.  */
  624. static void restart_on_error(void)
  625. {
  626. unsigned char res_reg[12];
  627. unsigned int res_size;
  628. unsigned int retry_count;
  629. printk("cdu31a: Resetting drive on errorn");
  630. reset_drive();
  631. retry_count = jiffies + SONY_RESET_TIMEOUT;
  632. while (time_before(jiffies, retry_count) && (!is_attention())) {
  633. sony_sleep();
  634. }
  635. set_drive_params(sony_speed);
  636. do_sony_cd_cmd(SONY_SPIN_UP_CMD, NULL, 0, res_reg, &res_size);
  637. if ((res_size < 2) || ((res_reg[0] & 0xf0) == 0x20)) {
  638. printk("cdu31a: Unable to spin up drive: 0x%2.2xn",
  639.        res_reg[1]);
  640. }
  641. current->state = TASK_INTERRUPTIBLE;
  642. schedule_timeout(2 * HZ);
  643. sony_get_toc();
  644. }
  645. /*
  646.  * This routine writes data to the parameter register.  Since this should
  647.  * happen fairly fast, it is polled with no OS waits between.
  648.  */
  649. static int write_params(unsigned char *params, int num_params)
  650. {
  651. unsigned int retry_count;
  652. retry_count = SONY_READY_RETRIES;
  653. while ((retry_count > 0) && (!is_param_write_rdy())) {
  654. retry_count--;
  655. }
  656. if (!is_param_write_rdy()) {
  657. return -EIO;
  658. }
  659. while (num_params > 0) {
  660. write_param(*params);
  661. params++;
  662. num_params--;
  663. }
  664. return 0;
  665. }
  666. /*
  667.  * The following reads data from the command result register.  It is a
  668.  * fairly complex routine, all status info flows back through this
  669.  * interface.  The algorithm is stolen directly from the flowcharts in
  670.  * the drive manual.
  671.  */
  672. static void
  673. get_result(unsigned char *result_buffer, unsigned int *result_size)
  674. {
  675. unsigned char a, b;
  676. int i;
  677. unsigned int retry_count;
  678. while (handle_sony_cd_attention());
  679. /* Wait for the result data to be ready */
  680. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  681. while (time_before(jiffies, retry_count)
  682.        && (is_busy() || (!(is_result_ready())))) {
  683. sony_sleep();
  684. while (handle_sony_cd_attention());
  685. }
  686. if (is_busy() || (!(is_result_ready()))) {
  687. #if DEBUG
  688. printk("CDU31A timeout out %dn", __LINE__);
  689. #endif
  690. result_buffer[0] = 0x20;
  691. result_buffer[1] = SONY_TIMEOUT_OP_ERR;
  692. *result_size = 2;
  693. return;
  694. }
  695. /*
  696.  * Get the first two bytes.  This determines what else needs
  697.  * to be done.
  698.  */
  699. clear_result_ready();
  700. a = read_result_register();
  701. *result_buffer = a;
  702. result_buffer++;
  703. /* Check for block error status result. */
  704. if ((a & 0xf0) == 0x50) {
  705. *result_size = 1;
  706. return;
  707. }
  708. b = read_result_register();
  709. *result_buffer = b;
  710. result_buffer++;
  711. *result_size = 2;
  712. /*
  713.  * 0x20 means an error occurred.  Byte 2 will have the error code.
  714.  * Otherwise, the command succeeded, byte 2 will have the count of
  715.  * how many more status bytes are coming.
  716.  *
  717.  * The result register can be read 10 bytes at a time, a wait for
  718.  * result ready to be asserted must be done between every 10 bytes.
  719.  */
  720. if ((a & 0xf0) != 0x20) {
  721. if (b > 8) {
  722. for (i = 0; i < 8; i++) {
  723. *result_buffer = read_result_register();
  724. result_buffer++;
  725. (*result_size)++;
  726. }
  727. b = b - 8;
  728. while (b > 10) {
  729. retry_count = SONY_READY_RETRIES;
  730. while ((retry_count > 0)
  731.        && (!is_result_ready())) {
  732. retry_count--;
  733. }
  734. if (!is_result_ready()) {
  735. #if DEBUG
  736. printk("CDU31A timeout out %dn",
  737.        __LINE__);
  738. #endif
  739. result_buffer[0] = 0x20;
  740. result_buffer[1] =
  741.     SONY_TIMEOUT_OP_ERR;
  742. *result_size = 2;
  743. return;
  744. }
  745. clear_result_ready();
  746. for (i = 0; i < 10; i++) {
  747. *result_buffer =
  748.     read_result_register();
  749. result_buffer++;
  750. (*result_size)++;
  751. }
  752. b = b - 10;
  753. }
  754. if (b > 0) {
  755. retry_count = SONY_READY_RETRIES;
  756. while ((retry_count > 0)
  757.        && (!is_result_ready())) {
  758. retry_count--;
  759. }
  760. if (!is_result_ready()) {
  761. #if DEBUG
  762. printk("CDU31A timeout out %dn",
  763.        __LINE__);
  764. #endif
  765. result_buffer[0] = 0x20;
  766. result_buffer[1] =
  767.     SONY_TIMEOUT_OP_ERR;
  768. *result_size = 2;
  769. return;
  770. }
  771. }
  772. }
  773. while (b > 0) {
  774. *result_buffer = read_result_register();
  775. result_buffer++;
  776. (*result_size)++;
  777. b--;
  778. }
  779. }
  780. }
  781. /*
  782.  * Do a command that does not involve data transfer.  This routine must
  783.  * be re-entrant from the same task to support being called from the
  784.  * data operation code when an error occurs.
  785.  */
  786. static void
  787. do_sony_cd_cmd(unsigned char cmd,
  788.        unsigned char *params,
  789.        unsigned int num_params,
  790.        unsigned char *result_buffer, unsigned int *result_size)
  791. {
  792. unsigned int retry_count;
  793. int num_retries;
  794. int recursive_call;
  795. unsigned long flags;
  796. save_flags(flags);
  797. cli();
  798. if (current != has_cd_task) { /* Allow recursive calls to this routine */
  799. while (sony_inuse) {
  800. interruptible_sleep_on(&sony_wait);
  801. if (signal_pending(current)) {
  802. result_buffer[0] = 0x20;
  803. result_buffer[1] = SONY_SIGNAL_OP_ERR;
  804. *result_size = 2;
  805. restore_flags(flags);
  806. return;
  807. }
  808. }
  809. sony_inuse = 1;
  810. has_cd_task = current;
  811. recursive_call = 0;
  812. } else {
  813. recursive_call = 1;
  814. }
  815. num_retries = 0;
  816. retry_cd_operation:
  817. while (handle_sony_cd_attention());
  818. sti();
  819. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  820. while (time_before(jiffies, retry_count) && (is_busy())) {
  821. sony_sleep();
  822. while (handle_sony_cd_attention());
  823. }
  824. if (is_busy()) {
  825. #if DEBUG
  826. printk("CDU31A timeout out %dn", __LINE__);
  827. #endif
  828. result_buffer[0] = 0x20;
  829. result_buffer[1] = SONY_TIMEOUT_OP_ERR;
  830. *result_size = 2;
  831. } else {
  832. clear_result_ready();
  833. clear_param_reg();
  834. write_params(params, num_params);
  835. write_cmd(cmd);
  836. get_result(result_buffer, result_size);
  837. }
  838. if (((result_buffer[0] & 0xf0) == 0x20)
  839.     && (num_retries < MAX_CDU31A_RETRIES)) {
  840. num_retries++;
  841. current->state = TASK_INTERRUPTIBLE;
  842. schedule_timeout(HZ / 10); /* Wait .1 seconds on retries */
  843. goto retry_cd_operation;
  844. }
  845. if (!recursive_call) {
  846. has_cd_task = NULL;
  847. sony_inuse = 0;
  848. wake_up_interruptible(&sony_wait);
  849. }
  850. restore_flags(flags);
  851. }
  852. /*
  853.  * Handle an attention from the drive.  This will return 1 if it found one
  854.  * or 0 if not (if one is found, the caller might want to call again).
  855.  *
  856.  * This routine counts the number of consecutive times it is called
  857.  * (since this is always called from a while loop until it returns
  858.  * a 0), and returns a 0 if it happens too many times.  This will help
  859.  * prevent a lockup.
  860.  */
  861. static int handle_sony_cd_attention(void)
  862. {
  863. unsigned char atten_code;
  864. static int num_consecutive_attentions = 0;
  865. volatile int val;
  866. #if 0*DEBUG
  867. printk("Entering handle_sony_cd_attentionn");
  868. #endif
  869. if (is_attention()) {
  870. if (num_consecutive_attentions >
  871.     CDU31A_MAX_CONSECUTIVE_ATTENTIONS) {
  872. printk
  873.     ("cdu31a: Too many consecutive attentions: %dn",
  874.      num_consecutive_attentions);
  875. num_consecutive_attentions = 0;
  876. #if DEBUG
  877. printk("Leaving handle_sony_cd_attention at %dn",
  878.        __LINE__);
  879. #endif
  880. return (0);
  881. }
  882. clear_attention();
  883. atten_code = read_result_register();
  884. switch (atten_code) {
  885. /* Someone changed the CD.  Mark it as changed */
  886. case SONY_MECH_LOADED_ATTN:
  887. disk_changed = 1;
  888. sony_toc_read = 0;
  889. sony_audio_status = CDROM_AUDIO_NO_STATUS;
  890. sony_blocks_left = 0;
  891. break;
  892. case SONY_SPIN_DOWN_COMPLETE_ATTN:
  893. /* Mark the disk as spun down. */
  894. sony_spun_up = 0;
  895. break;
  896. case SONY_AUDIO_PLAY_DONE_ATTN:
  897. sony_audio_status = CDROM_AUDIO_COMPLETED;
  898. read_subcode();
  899. break;
  900. case SONY_EJECT_PUSHED_ATTN:
  901. if (is_auto_eject) {
  902. sony_audio_status = CDROM_AUDIO_INVALID;
  903. }
  904. break;
  905. case SONY_LEAD_IN_ERR_ATTN:
  906. case SONY_LEAD_OUT_ERR_ATTN:
  907. case SONY_DATA_TRACK_ERR_ATTN:
  908. case SONY_AUDIO_PLAYBACK_ERR_ATTN:
  909. sony_audio_status = CDROM_AUDIO_ERROR;
  910. break;
  911. }
  912. num_consecutive_attentions++;
  913. #if DEBUG
  914. printk("Leaving handle_sony_cd_attention at %dn",
  915.        __LINE__);
  916. #endif
  917. return (1);
  918. } else if (abort_read_started) {
  919. while (is_result_reg_not_empty()) {
  920. val = read_result_register();
  921. }
  922. clear_data_ready();
  923. clear_result_ready();
  924. /* Clear out the data */
  925. while (is_data_requested()) {
  926. val = read_data_register();
  927. }
  928. abort_read_started = 0;
  929. #if DEBUG
  930. printk("Leaving handle_sony_cd_attention at %dn",
  931.        __LINE__);
  932. #endif
  933. return (1);
  934. }
  935. num_consecutive_attentions = 0;
  936. #if 0*DEBUG
  937. printk("Leaving handle_sony_cd_attention at %dn", __LINE__);
  938. #endif
  939. return (0);
  940. }
  941. /* Convert from an integer 0-99 to BCD */
  942. static inline unsigned int int_to_bcd(unsigned int val)
  943. {
  944. int retval;
  945. retval = (val / 10) << 4;
  946. retval = retval | val % 10;
  947. return (retval);
  948. }
  949. /* Convert from BCD to an integer from 0-99 */
  950. static unsigned int bcd_to_int(unsigned int bcd)
  951. {
  952. return ((((bcd >> 4) & 0x0f) * 10) + (bcd & 0x0f));
  953. }
  954. /*
  955.  * Convert a logical sector value (like the OS would want to use for
  956.  * a block device) to an MSF format.
  957.  */
  958. static void log_to_msf(unsigned int log, unsigned char *msf)
  959. {
  960. log = log + LOG_START_OFFSET;
  961. msf[0] = int_to_bcd(log / 4500);
  962. log = log % 4500;
  963. msf[1] = int_to_bcd(log / 75);
  964. msf[2] = int_to_bcd(log % 75);
  965. }
  966. /*
  967.  * Convert an MSF format to a logical sector.
  968.  */
  969. static unsigned int msf_to_log(unsigned char *msf)
  970. {
  971. unsigned int log;
  972. log = msf[2];
  973. log += msf[1] * 75;
  974. log += msf[0] * 4500;
  975. log = log - LOG_START_OFFSET;
  976. return log;
  977. }
  978. /*
  979.  * Take in integer size value and put it into a buffer like
  980.  * the drive would want to see a number-of-sector value.
  981.  */
  982. static void size_to_buf(unsigned int size, unsigned char *buf)
  983. {
  984. buf[0] = size / 65536;
  985. size = size % 65536;
  986. buf[1] = size / 256;
  987. buf[2] = size % 256;
  988. }
  989. /* Starts a read operation. Returns 0 on success and 1 on failure. 
  990.    The read operation used here allows multiple sequential sectors 
  991.    to be read and status returned for each sector.  The driver will
  992.    read the output one at a time as the requests come and abort the
  993.    operation if the requested sector is not the next one from the
  994.    drive. */
  995. static int
  996. start_request(unsigned int sector, unsigned int nsect, int read_nsect_only)
  997. {
  998. unsigned char params[6];
  999. unsigned int read_size;
  1000. unsigned int retry_count;
  1001. #if DEBUG
  1002. printk("Entering start_requestn");
  1003. #endif
  1004. log_to_msf(sector, params);
  1005. /* If requested, read exactly what was asked. */
  1006. if (read_nsect_only) {
  1007. read_size = nsect;
  1008. }
  1009. /*
  1010.  * If the full read-ahead would go beyond the end of the media, trim
  1011.  * it back to read just till the end of the media.
  1012.  */
  1013. else if ((sector + nsect) >= sony_toc.lead_out_start_lba) {
  1014. read_size = sony_toc.lead_out_start_lba - sector;
  1015. }
  1016. /* Read the full readahead amount. */
  1017. else {
  1018. read_size = CDU31A_READAHEAD / 4;
  1019. }
  1020. size_to_buf(read_size, &params[3]);
  1021. /*
  1022.  * Clear any outstanding attentions and wait for the drive to
  1023.  * complete any pending operations.
  1024.  */
  1025. while (handle_sony_cd_attention());
  1026. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  1027. while (time_before(jiffies, retry_count) && (is_busy())) {
  1028. sony_sleep();
  1029. while (handle_sony_cd_attention());
  1030. }
  1031. if (is_busy()) {
  1032. printk("CDU31A: Timeout while waiting to issue commandn");
  1033. #if DEBUG
  1034. printk("Leaving start_request at %dn", __LINE__);
  1035. #endif
  1036. return (1);
  1037. } else {
  1038. /* Issue the command */
  1039. clear_result_ready();
  1040. clear_param_reg();
  1041. write_params(params, 6);
  1042. write_cmd(SONY_READ_BLKERR_STAT_CMD);
  1043. sony_blocks_left = read_size * 4;
  1044. sony_next_block = sector * 4;
  1045. readahead_dataleft = 0;
  1046. readahead_bad = 0;
  1047. #if DEBUG
  1048. printk("Leaving start_request at %dn", __LINE__);
  1049. #endif
  1050. return (0);
  1051. }
  1052. #if DEBUG
  1053. printk("Leaving start_request at %dn", __LINE__);
  1054. #endif
  1055. }
  1056. /* Abort a pending read operation.  Clear all the drive status and
  1057.    readahead variables. */
  1058. static void abort_read(void)
  1059. {
  1060. unsigned char result_reg[2];
  1061. int result_size;
  1062. volatile int val;
  1063. do_sony_cd_cmd(SONY_ABORT_CMD, NULL, 0, result_reg, &result_size);
  1064. if ((result_reg[0] & 0xf0) == 0x20) {
  1065. printk("CDU31A: Error aborting read, %s errorn",
  1066.        translate_error(result_reg[1]));
  1067. }
  1068. while (is_result_reg_not_empty()) {
  1069. val = read_result_register();
  1070. }
  1071. clear_data_ready();
  1072. clear_result_ready();
  1073. /* Clear out the data */
  1074. while (is_data_requested()) {
  1075. val = read_data_register();
  1076. }
  1077. sony_blocks_left = 0;
  1078. readahead_dataleft = 0;
  1079. readahead_bad = 0;
  1080. }
  1081. /* Called when the timer times out.  This will abort the
  1082.    pending read operation. */
  1083. static void handle_abort_timeout(unsigned long data)
  1084. {
  1085. unsigned long flags;
  1086. #if DEBUG
  1087. printk("Entering handle_abort_timeoutn");
  1088. #endif
  1089. save_flags(flags);
  1090. cli();
  1091. /* If it is in use, ignore it. */
  1092. if (!sony_inuse) {
  1093. /* We can't use abort_read(), because it will sleep
  1094.    or schedule in the timer interrupt.  Just start
  1095.    the operation, finish it on the next access to
  1096.    the drive. */
  1097. clear_result_ready();
  1098. clear_param_reg();
  1099. write_cmd(SONY_ABORT_CMD);
  1100. sony_blocks_left = 0;
  1101. readahead_dataleft = 0;
  1102. readahead_bad = 0;
  1103. abort_read_started = 1;
  1104. }
  1105. restore_flags(flags);
  1106. #if DEBUG
  1107. printk("Leaving handle_abort_timeoutn");
  1108. #endif
  1109. }
  1110. /* Actually get data and status from the drive. */
  1111. static void
  1112. input_data(char *buffer,
  1113.    unsigned int bytesleft,
  1114.    unsigned int nblocks, unsigned int offset, unsigned int skip)
  1115. {
  1116. int i;
  1117. volatile unsigned char val;
  1118. #if DEBUG
  1119. printk("Entering input_datan");
  1120. #endif
  1121. /* If an XA disk on a CDU31A, skip the first 12 bytes of data from
  1122.    the disk.  The real data is after that. */
  1123. if (sony_xa_mode) {
  1124. for (i = 0; i < CD_XA_HEAD; i++) {
  1125. val = read_data_register();
  1126. }
  1127. }
  1128. clear_data_ready();
  1129. if (bytesleft == 2048) { /* 2048 byte direct buffer transfer */
  1130. insb(sony_cd_read_reg, buffer, 2048);
  1131. readahead_dataleft = 0;
  1132. } else {
  1133. /* If the input read did not align with the beginning of the block,
  1134.    skip the necessary bytes. */
  1135. if (skip != 0) {
  1136. insb(sony_cd_read_reg, readahead_buffer, skip);
  1137. }
  1138. /* Get the data into the buffer. */
  1139. insb(sony_cd_read_reg, &buffer[offset], bytesleft);
  1140. /* Get the rest of the data into the readahead buffer at the
  1141.    proper location. */
  1142. readahead_dataleft = (2048 - skip) - bytesleft;
  1143. insb(sony_cd_read_reg,
  1144.      readahead_buffer + bytesleft, readahead_dataleft);
  1145. }
  1146. sony_blocks_left -= nblocks;
  1147. sony_next_block += nblocks;
  1148. /* If an XA disk, we have to clear out the rest of the unused
  1149.    error correction data. */
  1150. if (sony_xa_mode) {
  1151. for (i = 0; i < CD_XA_TAIL; i++) {
  1152. val = read_data_register();
  1153. }
  1154. }
  1155. #if DEBUG
  1156. printk("Leaving input_data at %dn", __LINE__);
  1157. #endif
  1158. }
  1159. /* read data from the drive.  Note the nsect must be <= 4. */
  1160. static void
  1161. read_data_block(char *buffer,
  1162. unsigned int block,
  1163. unsigned int nblocks,
  1164. unsigned char res_reg[], int *res_size)
  1165. {
  1166. unsigned int retry_count;
  1167. unsigned int bytesleft;
  1168. unsigned int offset;
  1169. unsigned int skip;
  1170. #if DEBUG
  1171. printk("Entering read_data_blockn");
  1172. #endif
  1173. res_reg[0] = 0;
  1174. res_reg[1] = 0;
  1175. *res_size = 0;
  1176. bytesleft = nblocks * 512;
  1177. offset = 0;
  1178. /* If the data in the read-ahead does not match the block offset,
  1179.    then fix things up. */
  1180. if (((block % 4) * 512) != ((2048 - readahead_dataleft) % 2048)) {
  1181. sony_next_block += block % 4;
  1182. sony_blocks_left -= block % 4;
  1183. skip = (block % 4) * 512;
  1184. } else {
  1185. skip = 0;
  1186. }
  1187. /* We have readahead data in the buffer, get that first before we
  1188.    decide if a read is necessary. */
  1189. if (readahead_dataleft != 0) {
  1190. if (bytesleft > readahead_dataleft) {
  1191. /* The readahead will not fill the requested buffer, but
  1192.    get the data out of the readahead into the buffer. */
  1193. memcpy(buffer,
  1194.        readahead_buffer + (2048 -
  1195.    readahead_dataleft),
  1196.        readahead_dataleft);
  1197. readahead_dataleft = 0;
  1198. bytesleft -= readahead_dataleft;
  1199. offset += readahead_dataleft;
  1200. } else {
  1201. /* The readahead will fill the whole buffer, get the data
  1202.    and return. */
  1203. memcpy(buffer,
  1204.        readahead_buffer + (2048 -
  1205.    readahead_dataleft),
  1206.        bytesleft);
  1207. readahead_dataleft -= bytesleft;
  1208. bytesleft = 0;
  1209. sony_blocks_left -= nblocks;
  1210. sony_next_block += nblocks;
  1211. /* If the data in the readahead is bad, return an error so the
  1212.    driver will abort the buffer. */
  1213. if (readahead_bad) {
  1214. res_reg[0] = 0x20;
  1215. res_reg[1] = SONY_BAD_DATA_ERR;
  1216. *res_size = 2;
  1217. }
  1218. if (readahead_dataleft == 0) {
  1219. readahead_bad = 0;
  1220. }
  1221. /* Final transfer is done for read command, get final result. */
  1222. if (sony_blocks_left == 0) {
  1223. get_result(res_reg, res_size);
  1224. }
  1225. #if DEBUG
  1226. printk("Leaving read_data_block at %dn",
  1227.        __LINE__);
  1228. #endif
  1229. return;
  1230. }
  1231. }
  1232. /* Wait for the drive to tell us we have something */
  1233. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  1234. while (time_before(jiffies, retry_count) && !(is_data_ready())) {
  1235. while (handle_sony_cd_attention());
  1236. sony_sleep();
  1237. }
  1238. if (!(is_data_ready())) {
  1239. if (is_result_ready()) {
  1240. get_result(res_reg, res_size);
  1241. if ((res_reg[0] & 0xf0) != 0x20) {
  1242. printk
  1243.     ("CDU31A: Got result that should have been error: %dn",
  1244.      res_reg[0]);
  1245. res_reg[0] = 0x20;
  1246. res_reg[1] = SONY_BAD_DATA_ERR;
  1247. *res_size = 2;
  1248. }
  1249. abort_read();
  1250. } else {
  1251. #if DEBUG
  1252. printk("CDU31A timeout out %dn", __LINE__);
  1253. #endif
  1254. res_reg[0] = 0x20;
  1255. res_reg[1] = SONY_TIMEOUT_OP_ERR;
  1256. *res_size = 2;
  1257. abort_read();
  1258. }
  1259. } else {
  1260. input_data(buffer, bytesleft, nblocks, offset, skip);
  1261. /* Wait for the status from the drive. */
  1262. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  1263. while (time_before(jiffies, retry_count)
  1264.        && !(is_result_ready())) {
  1265. while (handle_sony_cd_attention());
  1266. sony_sleep();
  1267. }
  1268. if (!is_result_ready()) {
  1269. #if DEBUG
  1270. printk("CDU31A timeout out %dn", __LINE__);
  1271. #endif
  1272. res_reg[0] = 0x20;
  1273. res_reg[1] = SONY_TIMEOUT_OP_ERR;
  1274. *res_size = 2;
  1275. abort_read();
  1276. } else {
  1277. get_result(res_reg, res_size);
  1278. /* If we got a buffer status, handle that. */
  1279. if ((res_reg[0] & 0xf0) == 0x50) {
  1280. if ((res_reg[0] ==
  1281.      SONY_NO_CIRC_ERR_BLK_STAT)
  1282.     || (res_reg[0] ==
  1283. SONY_NO_LECC_ERR_BLK_STAT)
  1284.     || (res_reg[0] ==
  1285. SONY_RECOV_LECC_ERR_BLK_STAT)) {
  1286. /* The data was successful, but if data was read from
  1287.    the readahead  and it was bad, set the whole
  1288.    buffer as bad. */
  1289. if (readahead_bad) {
  1290. readahead_bad = 0;
  1291. res_reg[0] = 0x20;
  1292. res_reg[1] =
  1293.     SONY_BAD_DATA_ERR;
  1294. *res_size = 2;
  1295. }
  1296. } else {
  1297. printk
  1298.     ("CDU31A: Data block error: 0x%xn",
  1299.      res_reg[0]);
  1300. res_reg[0] = 0x20;
  1301. res_reg[1] = SONY_BAD_DATA_ERR;
  1302. *res_size = 2;
  1303. /* Data is in the readahead buffer but an error was returned.
  1304.    Make sure future requests don't use the data. */
  1305. if (bytesleft != 2048) {
  1306. readahead_bad = 1;
  1307. }
  1308. }
  1309. /* Final transfer is done for read command, get final result. */
  1310. if (sony_blocks_left == 0) {
  1311. get_result(res_reg, res_size);
  1312. }
  1313. } else if ((res_reg[0] & 0xf0) != 0x20) {
  1314. /* The drive gave me bad status, I don't know what to do.
  1315.    Reset the driver and return an error. */
  1316. printk
  1317.     ("CDU31A: Invalid block status: 0x%xn",
  1318.      res_reg[0]);
  1319. restart_on_error();
  1320. res_reg[0] = 0x20;
  1321. res_reg[1] = SONY_BAD_DATA_ERR;
  1322. *res_size = 2;
  1323. }
  1324. }
  1325. }
  1326. #if DEBUG
  1327. printk("Leaving read_data_block at %dn", __LINE__);
  1328. #endif
  1329. }
  1330. /*
  1331.  * The OS calls this to perform a read or write operation to the drive.
  1332.  * Write obviously fail.  Reads to a read ahead of sony_buffer_size
  1333.  * bytes to help speed operations.  This especially helps since the OS
  1334.  * uses 1024 byte blocks and the drive uses 2048 byte blocks.  Since most
  1335.  * data access on a CD is done sequentially, this saves a lot of operations.
  1336.  */
  1337. static void do_cdu31a_request(request_queue_t * q)
  1338. {
  1339. int block;
  1340. int nblock;
  1341. unsigned char res_reg[12];
  1342. unsigned int res_size;
  1343. int num_retries;
  1344. unsigned long flags;
  1345. #if DEBUG
  1346. printk("Entering do_cdu31a_requestn");
  1347. #endif
  1348. /* 
  1349.  * Make sure no one else is using the driver; wait for them
  1350.  * to finish if it is so.
  1351.  */
  1352. save_flags(flags);
  1353. cli();
  1354. while (sony_inuse) {
  1355. interruptible_sleep_on(&sony_wait);
  1356. if (signal_pending(current)) {
  1357. restore_flags(flags);
  1358. if (!QUEUE_EMPTY
  1359.     && CURRENT->rq_status != RQ_INACTIVE) {
  1360. end_request(0);
  1361. }
  1362. restore_flags(flags);
  1363. #if DEBUG
  1364. printk("Leaving do_cdu31a_request at %dn",
  1365.        __LINE__);
  1366. #endif
  1367. return;
  1368. }
  1369. }
  1370. sony_inuse = 1;
  1371. has_cd_task = current;
  1372. /* Get drive status before doing anything. */
  1373. while (handle_sony_cd_attention());
  1374. /* Make sure we have a valid TOC. */
  1375. sony_get_toc();
  1376. spin_unlock_irq(&io_request_lock);
  1377. /* Make sure the timer is cancelled. */
  1378. del_timer(&cdu31a_abort_timer);
  1379. while (1) {
  1380.       cdu31a_request_startover:
  1381. /*
  1382.  * The beginning here is stolen from the hard disk driver.  I hope
  1383.  * it's right.
  1384.  */
  1385. if (QUEUE_EMPTY || CURRENT->rq_status == RQ_INACTIVE) {
  1386. goto end_do_cdu31a_request;
  1387. }
  1388. if (!sony_spun_up) {
  1389. scd_spinup();
  1390. }
  1391. /* I don't use INIT_REQUEST because it calls return, which would
  1392.    return without unlocking the device.  It shouldn't matter,
  1393.    but just to be safe... */
  1394. if (MAJOR(CURRENT->rq_dev) != MAJOR_NR) {
  1395. panic(DEVICE_NAME ": request list destroyed");
  1396. }
  1397. if (CURRENT->bh) {
  1398. if (!buffer_locked(CURRENT->bh)) {
  1399. panic(DEVICE_NAME ": block not locked");
  1400. }
  1401. }
  1402. block = CURRENT->sector;
  1403. nblock = CURRENT->nr_sectors;
  1404. if (!sony_toc_read) {
  1405. printk("CDU31A: TOC not readn");
  1406. end_request(0);
  1407. goto cdu31a_request_startover;
  1408. }
  1409. switch (CURRENT->cmd) {
  1410. case READ:
  1411. /*
  1412.  * If the block address is invalid or the request goes beyond the end of
  1413.  * the media, return an error.
  1414.  */
  1415. #if 0
  1416. if ((block / 4) < sony_toc.start_track_lba) {
  1417. printk
  1418.     ("CDU31A: Request before beginning of median");
  1419. end_request(0);
  1420. goto cdu31a_request_startover;
  1421. }
  1422. #endif
  1423. if ((block / 4) >= sony_toc.lead_out_start_lba) {
  1424. printk
  1425.     ("CDU31A: Request past end of median");
  1426. end_request(0);
  1427. goto cdu31a_request_startover;
  1428. }
  1429. if (((block + nblock) / 4) >=
  1430.     sony_toc.lead_out_start_lba) {
  1431. printk
  1432.     ("CDU31A: Request past end of median");
  1433. end_request(0);
  1434. goto cdu31a_request_startover;
  1435. }
  1436. num_retries = 0;
  1437.       try_read_again:
  1438. while (handle_sony_cd_attention());
  1439. if (!sony_toc_read) {
  1440. printk("CDU31A: TOC not readn");
  1441. end_request(0);
  1442. goto cdu31a_request_startover;
  1443. }
  1444. /* If no data is left to be read from the drive, start the
  1445.    next request. */
  1446. if (sony_blocks_left == 0) {
  1447. if (start_request
  1448.     (block / 4, CDU31A_READAHEAD / 4, 0)) {
  1449. end_request(0);
  1450. goto cdu31a_request_startover;
  1451. }
  1452. }
  1453. /* If the requested block is not the next one waiting in
  1454.    the driver, abort the current operation and start a
  1455.    new one. */
  1456. else if (block != sony_next_block) {
  1457. #if DEBUG
  1458. printk
  1459.     ("CDU31A Warning: Read for block %d, expected %dn",
  1460.      block, sony_next_block);
  1461. #endif
  1462. abort_read();
  1463. if (!sony_toc_read) {
  1464. printk("CDU31A: TOC not readn");
  1465. end_request(0);
  1466. goto cdu31a_request_startover;
  1467. }
  1468. if (start_request
  1469.     (block / 4, CDU31A_READAHEAD / 4, 0)) {
  1470. printk
  1471.     ("CDU31a: start request failedn");
  1472. end_request(0);
  1473. goto cdu31a_request_startover;
  1474. }
  1475. }
  1476. read_data_block(CURRENT->buffer, block, nblock,
  1477. res_reg, &res_size);
  1478. if (res_reg[0] == 0x20) {
  1479. if (num_retries > MAX_CDU31A_RETRIES) {
  1480. end_request(0);
  1481. goto cdu31a_request_startover;
  1482. }
  1483. num_retries++;
  1484. if (res_reg[1] == SONY_NOT_SPIN_ERR) {
  1485. do_sony_cd_cmd(SONY_SPIN_UP_CMD,
  1486.        NULL, 0, res_reg,
  1487.        &res_size);
  1488. } else {
  1489. printk
  1490.     ("CDU31A: %s error for block %d, nblock %dn",
  1491.      translate_error(res_reg[1]),
  1492.      block, nblock);
  1493. }
  1494. goto try_read_again;
  1495. } else {
  1496. end_request(1);
  1497. }
  1498. break;
  1499. case WRITE:
  1500. end_request(0);
  1501. break;
  1502. default:
  1503. panic("CDU31A: Unknown cmd");
  1504. }
  1505. }
  1506.       end_do_cdu31a_request:
  1507. spin_lock_irq(&io_request_lock);
  1508. #if 0
  1509. /* After finished, cancel any pending operations. */
  1510. abort_read();
  1511. #else
  1512. /* Start a timer to time out after a while to disable
  1513.    the read. */
  1514. cdu31a_abort_timer.expires = jiffies + 2 * HZ; /* Wait 2 seconds */
  1515. add_timer(&cdu31a_abort_timer);
  1516. #endif
  1517. has_cd_task = NULL;
  1518. sony_inuse = 0;
  1519. wake_up_interruptible(&sony_wait);
  1520. restore_flags(flags);
  1521. #if DEBUG
  1522. printk("Leaving do_cdu31a_request at %dn", __LINE__);
  1523. #endif
  1524. }
  1525. /*
  1526.  * Read the table of contents from the drive and set up TOC if
  1527.  * successful.
  1528.  */
  1529. static void sony_get_toc(void)
  1530. {
  1531. unsigned char res_reg[2];
  1532. unsigned int res_size;
  1533. unsigned char parms[1];
  1534. int session;
  1535. int num_spin_ups;
  1536. int totaltracks = 0;
  1537. int mint = 99;
  1538. int maxt = 0;
  1539. #if DEBUG
  1540. printk("Entering sony_get_tocn");
  1541. #endif
  1542. num_spin_ups = 0;
  1543. if (!sony_toc_read) {
  1544.       respinup_on_gettoc:
  1545. /* Ignore the result, since it might error if spinning already. */
  1546. do_sony_cd_cmd(SONY_SPIN_UP_CMD, NULL, 0, res_reg,
  1547.        &res_size);
  1548. do_sony_cd_cmd(SONY_READ_TOC_CMD, NULL, 0, res_reg,
  1549.        &res_size);
  1550. /* The drive sometimes returns error 0.  I don't know why, but ignore
  1551.    it.  It seems to mean the drive has already done the operation. */
  1552. if ((res_size < 2)
  1553.     || ((res_reg[0] != 0) && (res_reg[1] != 0))) {
  1554. /* If the drive is already playing, it's ok.  */
  1555. if ((res_reg[1] == SONY_AUDIO_PLAYING_ERR)
  1556.     || (res_reg[1] == 0)) {
  1557. goto gettoc_drive_spinning;
  1558. }
  1559. /* If the drive says it is not spun up (even though we just did it!)
  1560.    then retry the operation at least a few times. */
  1561. if ((res_reg[1] == SONY_NOT_SPIN_ERR)
  1562.     && (num_spin_ups < MAX_CDU31A_RETRIES)) {
  1563. num_spin_ups++;
  1564. goto respinup_on_gettoc;
  1565. }
  1566. printk("cdu31a: Error reading TOC: %x %sn",
  1567.        res_reg[0], translate_error(res_reg[1]));
  1568. return;
  1569. }
  1570.       gettoc_drive_spinning:
  1571. /* The idea here is we keep asking for sessions until the command
  1572.    fails.  Then we know what the last valid session on the disk is.
  1573.    No need to check session 0, since session 0 is the same as session
  1574.    1; the command returns different information if you give it 0. 
  1575.  */
  1576. #if DEBUG
  1577. memset(&sony_toc, 0x0e, sizeof(sony_toc));
  1578. memset(&single_toc, 0x0f, sizeof(single_toc));
  1579. #endif
  1580. session = 1;
  1581. while (1) {
  1582. /* This seems to slow things down enough to make it work.  This
  1583.  * appears to be a problem in do_sony_cd_cmd.  This printk seems 
  1584.  * to address the symptoms...  -Erik */
  1585. #if 1
  1586. printk("cdu31a: Trying session %dn", session);
  1587. #endif
  1588. parms[0] = session;
  1589. do_sony_cd_cmd(SONY_READ_TOC_SPEC_CMD,
  1590.        parms, 1, res_reg, &res_size);
  1591. #if DEBUG
  1592. printk("%2.2x %2.2xn", res_reg[0], res_reg[1]);
  1593. #endif
  1594. if ((res_size < 2)
  1595.     || ((res_reg[0] & 0xf0) == 0x20)) {
  1596. /* An error reading the TOC, this must be past the last session. */
  1597. if (session == 1)
  1598. printk
  1599.     ("Yikes! Couldn't read any sessions!");
  1600. break;
  1601. }
  1602. #if DEBUG
  1603. printk("Reading session %dn", session);
  1604. #endif
  1605. parms[0] = session;
  1606. do_sony_cd_cmd(SONY_REQ_TOC_DATA_SPEC_CMD,
  1607.        parms,
  1608.        1,
  1609.        (unsigned char *) &single_toc,
  1610.        &res_size);
  1611. if ((res_size < 2)
  1612.     || ((single_toc.exec_status[0] & 0xf0) ==
  1613. 0x20)) {
  1614. printk
  1615.     ("cdu31a: Error reading session %d: %x %sn",
  1616.      session, single_toc.exec_status[0],
  1617.      translate_error(single_toc.
  1618.      exec_status[1]));
  1619. /* An error reading the TOC.  Return without sony_toc_read
  1620.    set. */
  1621. return;
  1622. }
  1623. #if DEBUG
  1624. printk
  1625.     ("add0 %01x, con0 %01x, poi0 %02x, 1st trk %d, dsktyp %x, dum0 %xn",
  1626.      single_toc.address0, single_toc.control0,
  1627.      single_toc.point0,
  1628.      bcd_to_int(single_toc.first_track_num),
  1629.      single_toc.disk_type, single_toc.dummy0);
  1630. printk
  1631.     ("add1 %01x, con1 %01x, poi1 %02x, lst trk %d, dummy1 %x, dum2 %xn",
  1632.      single_toc.address1, single_toc.control1,
  1633.      single_toc.point1,
  1634.      bcd_to_int(single_toc.last_track_num),
  1635.      single_toc.dummy1, single_toc.dummy2);
  1636. printk
  1637.     ("add2 %01x, con2 %01x, poi2 %02x leadout start min %d, sec %d, frame %dn",
  1638.      single_toc.address2, single_toc.control2,
  1639.      single_toc.point2,
  1640.      bcd_to_int(single_toc.lead_out_start_msf[0]),
  1641.      bcd_to_int(single_toc.lead_out_start_msf[1]),
  1642.      bcd_to_int(single_toc.lead_out_start_msf[2]));
  1643. if (res_size > 18 && single_toc.pointb0 > 0xaf)
  1644. printk
  1645.     ("addb0 %01x, conb0 %01x, poib0 %02x, nextsession min %d, sec %d, frame %dn"
  1646.      "#mode5_ptrs %02d, max_start_outer_leadout_msf min %d, sec %d, frame %dn",
  1647.      single_toc.addressb0,
  1648.      single_toc.controlb0,
  1649.      single_toc.pointb0,
  1650.      bcd_to_int(single_toc.
  1651. next_poss_prog_area_msf
  1652. [0]),
  1653.      bcd_to_int(single_toc.
  1654. next_poss_prog_area_msf
  1655. [1]),
  1656.      bcd_to_int(single_toc.
  1657. next_poss_prog_area_msf
  1658. [2]),
  1659.      single_toc.num_mode_5_pointers,
  1660.      bcd_to_int(single_toc.
  1661. max_start_outer_leadout_msf
  1662. [0]),
  1663.      bcd_to_int(single_toc.
  1664. max_start_outer_leadout_msf
  1665. [1]),
  1666.      bcd_to_int(single_toc.
  1667. max_start_outer_leadout_msf
  1668. [2]));
  1669. if (res_size > 27 && single_toc.pointb1 > 0xaf)
  1670. printk
  1671.     ("addb1 %01x, conb1 %01x, poib1 %02x, %x %x %x %x #skipint_ptrs %d, #skiptrkassign %d %xn",
  1672.      single_toc.addressb1,
  1673.      single_toc.controlb1,
  1674.      single_toc.pointb1,
  1675.      single_toc.dummyb0_1[0],
  1676.      single_toc.dummyb0_1[1],
  1677.      single_toc.dummyb0_1[2],
  1678.      single_toc.dummyb0_1[3],
  1679.      single_toc.num_skip_interval_pointers,
  1680.      single_toc.num_skip_track_assignments,
  1681.      single_toc.dummyb0_2);
  1682. if (res_size > 36 && single_toc.pointb2 > 0xaf)
  1683. printk
  1684.     ("addb2 %01x, conb2 %01x, poib2 %02x, %02x %02x %02x %02x %02x %02x %02xn",
  1685.      single_toc.addressb2,
  1686.      single_toc.controlb2,
  1687.      single_toc.pointb2,
  1688.      single_toc.tracksb2[0],
  1689.      single_toc.tracksb2[1],
  1690.      single_toc.tracksb2[2],
  1691.      single_toc.tracksb2[3],
  1692.      single_toc.tracksb2[4],
  1693.      single_toc.tracksb2[5],
  1694.      single_toc.tracksb2[6]);
  1695. if (res_size > 45 && single_toc.pointb3 > 0xaf)
  1696. printk
  1697.     ("addb3 %01x, conb3 %01x, poib3 %02x, %02x %02x %02x %02x %02x %02x %02xn",
  1698.      single_toc.addressb3,
  1699.      single_toc.controlb3,
  1700.      single_toc.pointb3,
  1701.      single_toc.tracksb3[0],
  1702.      single_toc.tracksb3[1],
  1703.      single_toc.tracksb3[2],
  1704.      single_toc.tracksb3[3],
  1705.      single_toc.tracksb3[4],
  1706.      single_toc.tracksb3[5],
  1707.      single_toc.tracksb3[6]);
  1708. if (res_size > 54 && single_toc.pointb4 > 0xaf)
  1709. printk
  1710.     ("addb4 %01x, conb4 %01x, poib4 %02x, %02x %02x %02x %02x %02x %02x %02xn",
  1711.      single_toc.addressb4,
  1712.      single_toc.controlb4,
  1713.      single_toc.pointb4,
  1714.      single_toc.tracksb4[0],
  1715.      single_toc.tracksb4[1],
  1716.      single_toc.tracksb4[2],
  1717.      single_toc.tracksb4[3],
  1718.      single_toc.tracksb4[4],
  1719.      single_toc.tracksb4[5],
  1720.      single_toc.tracksb4[6]);
  1721. if (res_size > 63 && single_toc.pointc0 > 0xaf)
  1722. printk
  1723.     ("addc0 %01x, conc0 %01x, poic0 %02x, %02x %02x %02x %02x %02x %02x %02xn",
  1724.      single_toc.addressc0,
  1725.      single_toc.controlc0,
  1726.      single_toc.pointc0,
  1727.      single_toc.dummyc0[0],
  1728.      single_toc.dummyc0[1],
  1729.      single_toc.dummyc0[2],
  1730.      single_toc.dummyc0[3],
  1731.      single_toc.dummyc0[4],
  1732.      single_toc.dummyc0[5],
  1733.      single_toc.dummyc0[6]);
  1734. #endif
  1735. #undef DEBUG
  1736. #define DEBUG 0
  1737. sony_toc.lead_out_start_msf[0] =
  1738.     bcd_to_int(single_toc.lead_out_start_msf[0]);
  1739. sony_toc.lead_out_start_msf[1] =
  1740.     bcd_to_int(single_toc.lead_out_start_msf[1]);
  1741. sony_toc.lead_out_start_msf[2] =
  1742.     bcd_to_int(single_toc.lead_out_start_msf[2]);
  1743. sony_toc.lead_out_start_lba =
  1744.     single_toc.lead_out_start_lba =
  1745.     msf_to_log(sony_toc.lead_out_start_msf);
  1746. /* For points that do not exist, move the data over them
  1747.    to the right location. */
  1748. if (single_toc.pointb0 != 0xb0) {
  1749. memmove(((char *) &single_toc) + 27,
  1750. ((char *) &single_toc) + 18,
  1751. res_size - 18);
  1752. res_size += 9;
  1753. } else if (res_size > 18) {
  1754. sony_toc.lead_out_start_msf[0] =
  1755.     bcd_to_int(single_toc.
  1756.        max_start_outer_leadout_msf
  1757.        [0]);
  1758. sony_toc.lead_out_start_msf[1] =
  1759.     bcd_to_int(single_toc.
  1760.        max_start_outer_leadout_msf
  1761.        [1]);
  1762. sony_toc.lead_out_start_msf[2] =
  1763.     bcd_to_int(single_toc.
  1764.        max_start_outer_leadout_msf
  1765.        [2]);
  1766. sony_toc.lead_out_start_lba =
  1767.     msf_to_log(sony_toc.
  1768.        lead_out_start_msf);
  1769. }
  1770. if (single_toc.pointb1 != 0xb1) {
  1771. memmove(((char *) &single_toc) + 36,
  1772. ((char *) &single_toc) + 27,
  1773. res_size - 27);
  1774. res_size += 9;
  1775. }
  1776. if (single_toc.pointb2 != 0xb2) {
  1777. memmove(((char *) &single_toc) + 45,
  1778. ((char *) &single_toc) + 36,
  1779. res_size - 36);
  1780. res_size += 9;
  1781. }
  1782. if (single_toc.pointb3 != 0xb3) {
  1783. memmove(((char *) &single_toc) + 54,
  1784. ((char *) &single_toc) + 45,
  1785. res_size - 45);
  1786. res_size += 9;
  1787. }
  1788. if (single_toc.pointb4 != 0xb4) {
  1789. memmove(((char *) &single_toc) + 63,
  1790. ((char *) &single_toc) + 54,
  1791. res_size - 54);
  1792. res_size += 9;
  1793. }
  1794. if (single_toc.pointc0 != 0xc0) {
  1795. memmove(((char *) &single_toc) + 72,
  1796. ((char *) &single_toc) + 63,
  1797. res_size - 63);
  1798. res_size += 9;
  1799. }
  1800. #if DEBUG
  1801. printk
  1802.     ("start track lba %u,  leadout start lba %un",
  1803.      single_toc.start_track_lba,
  1804.      single_toc.lead_out_start_lba);
  1805. {
  1806. int i;
  1807. for (i = 0;
  1808.      i <
  1809.      1 +
  1810.      bcd_to_int(single_toc.last_track_num)
  1811.      -
  1812.      bcd_to_int(single_toc.
  1813. first_track_num); i++) {
  1814. printk
  1815.     ("trk %02d: add 0x%01x, con 0x%01x,  track %02d, start min %02d, sec %02d, frame %02dn",
  1816.      i,
  1817.      single_toc.tracks[i].address,
  1818.      single_toc.tracks[i].control,
  1819.      bcd_to_int(single_toc.
  1820. tracks[i].track),
  1821.      bcd_to_int(single_toc.
  1822. tracks[i].
  1823. track_start_msf
  1824. [0]),
  1825.      bcd_to_int(single_toc.
  1826. tracks[i].
  1827. track_start_msf
  1828. [1]),
  1829.      bcd_to_int(single_toc.
  1830. tracks[i].
  1831. track_start_msf
  1832. [2]));
  1833. if (mint >
  1834.     bcd_to_int(single_toc.
  1835.        tracks[i].track))
  1836. mint =
  1837.     bcd_to_int(single_toc.
  1838.        tracks[i].
  1839.        track);
  1840. if (maxt <
  1841.     bcd_to_int(single_toc.
  1842.        tracks[i].track))
  1843. maxt =
  1844.     bcd_to_int(single_toc.
  1845.        tracks[i].
  1846.        track);
  1847. }
  1848. printk
  1849.     ("min track number %d,   max track number %dn",
  1850.      mint, maxt);
  1851. }
  1852. #endif
  1853. /* prepare a special table of contents for a CD-I disc. They don't have one. */
  1854. if (single_toc.disk_type == 0x10 &&
  1855.     single_toc.first_track_num == 2 &&
  1856.     single_toc.last_track_num == 2 /* CD-I */ ) {
  1857. sony_toc.tracks[totaltracks].address = 1;
  1858. sony_toc.tracks[totaltracks].control = 4; /* force data tracks */
  1859. sony_toc.tracks[totaltracks].track = 1;
  1860. sony_toc.tracks[totaltracks].
  1861.     track_start_msf[0] = 0;
  1862. sony_toc.tracks[totaltracks].
  1863.     track_start_msf[1] = 2;
  1864. sony_toc.tracks[totaltracks].
  1865.     track_start_msf[2] = 0;
  1866. mint = maxt = 1;
  1867. totaltracks++;
  1868. } else
  1869. /* gather track entries from this session */
  1870. {
  1871. int i;
  1872. for (i = 0;
  1873.      i <
  1874.      1 +
  1875.      bcd_to_int(single_toc.last_track_num)
  1876.      -
  1877.      bcd_to_int(single_toc.
  1878. first_track_num);
  1879.      i++, totaltracks++) {
  1880. sony_toc.tracks[totaltracks].
  1881.     address =
  1882.     single_toc.tracks[i].address;
  1883. sony_toc.tracks[totaltracks].
  1884.     control =
  1885.     single_toc.tracks[i].control;
  1886. sony_toc.tracks[totaltracks].
  1887.     track =
  1888.     bcd_to_int(single_toc.
  1889.        tracks[i].track);
  1890. sony_toc.tracks[totaltracks].
  1891.     track_start_msf[0] =
  1892.     bcd_to_int(single_toc.
  1893.        tracks[i].
  1894.        track_start_msf[0]);
  1895. sony_toc.tracks[totaltracks].
  1896.     track_start_msf[1] =
  1897.     bcd_to_int(single_toc.
  1898.        tracks[i].
  1899.        track_start_msf[1]);
  1900. sony_toc.tracks[totaltracks].
  1901.     track_start_msf[2] =
  1902.     bcd_to_int(single_toc.
  1903.        tracks[i].
  1904.        track_start_msf[2]);
  1905. if (i == 0)
  1906. single_toc.
  1907.     start_track_lba =
  1908.     msf_to_log(sony_toc.
  1909.        tracks
  1910.        [totaltracks].
  1911.        track_start_msf);
  1912. if (mint >
  1913.     sony_toc.tracks[totaltracks].
  1914.     track)
  1915. mint =
  1916.     sony_toc.
  1917.     tracks[totaltracks].
  1918.     track;
  1919. if (maxt <
  1920.     sony_toc.tracks[totaltracks].
  1921.     track)
  1922. maxt =
  1923.     sony_toc.
  1924.     tracks[totaltracks].
  1925.     track;
  1926. }
  1927. }
  1928. sony_toc.first_track_num = mint;
  1929. sony_toc.last_track_num = maxt;
  1930. /* Disk type of last session wins. For example:
  1931.    CD-Extra has disk type 0 for the first session, so
  1932.    a dumb HiFi CD player thinks it is a plain audio CD.
  1933.    We are interested in the disk type of the last session,
  1934.    which is 0x20 (XA) for CD-Extra, so we can access the
  1935.    data track ... */
  1936. sony_toc.disk_type = single_toc.disk_type;
  1937. sony_toc.sessions = session;
  1938. /* don't believe everything :-) */
  1939. if (session == 1)
  1940. single_toc.start_track_lba = 0;
  1941. sony_toc.start_track_lba =
  1942.     single_toc.start_track_lba;
  1943. if (session > 1 && single_toc.pointb0 == 0xb0 &&
  1944.     sony_toc.lead_out_start_lba ==
  1945.     single_toc.lead_out_start_lba) {
  1946. break;
  1947. }
  1948. /* Let's not get carried away... */
  1949. if (session > 40) {
  1950. printk("cdu31a: too many sessions: %dn",
  1951.        session);
  1952. break;
  1953. }
  1954. session++;
  1955. }
  1956. sony_toc.track_entries = totaltracks;
  1957. /* add one entry for the LAST track with track number CDROM_LEADOUT */
  1958. sony_toc.tracks[totaltracks].address = single_toc.address2;
  1959. sony_toc.tracks[totaltracks].control = single_toc.control2;
  1960. sony_toc.tracks[totaltracks].track = CDROM_LEADOUT;
  1961. sony_toc.tracks[totaltracks].track_start_msf[0] =
  1962.     sony_toc.lead_out_start_msf[0];
  1963. sony_toc.tracks[totaltracks].track_start_msf[1] =
  1964.     sony_toc.lead_out_start_msf[1];
  1965. sony_toc.tracks[totaltracks].track_start_msf[2] =
  1966.     sony_toc.lead_out_start_msf[2];
  1967. sony_toc_read = 1;
  1968. #undef DEBUG
  1969. #if DEBUG
  1970. printk
  1971.     ("Disk session %d, start track: %d, stop track: %dn",
  1972.      session, single_toc.start_track_lba,
  1973.      single_toc.lead_out_start_lba);
  1974. #endif
  1975. }
  1976. #if DEBUG
  1977. printk("Leaving sony_get_tocn");
  1978. #endif
  1979. }
  1980. /*
  1981.  * Uniform cdrom interface function
  1982.  * return multisession offset and sector information
  1983.  */
  1984. static int scd_get_last_session(struct cdrom_device_info *cdi,
  1985. struct cdrom_multisession *ms_info)
  1986. {
  1987. if (ms_info == NULL)
  1988. return 1;
  1989. if (!sony_toc_read)
  1990. sony_get_toc();
  1991. ms_info->addr_format = CDROM_LBA;
  1992. ms_info->addr.lba = sony_toc.start_track_lba;
  1993. ms_info->xa_flag = sony_toc.disk_type == SONY_XA_DISK_TYPE ||
  1994.     sony_toc.disk_type == 0x10 /* CDI */ ;
  1995. return 0;
  1996. }
  1997. /*
  1998.  * Search for a specific track in the table of contents.
  1999.  */
  2000. static int find_track(int track)
  2001. {
  2002. int i;
  2003. for (i = 0; i <= sony_toc.track_entries; i++) {
  2004. if (sony_toc.tracks[i].track == track) {
  2005. return i;
  2006. }
  2007. }
  2008. return -1;
  2009. }
  2010. /*
  2011.  * Read the subcode and put it in last_sony_subcode for future use.
  2012.  */
  2013. static int read_subcode(void)
  2014. {
  2015. unsigned int res_size;
  2016. do_sony_cd_cmd(SONY_REQ_SUBCODE_ADDRESS_CMD,
  2017.        NULL,
  2018.        0, (unsigned char *) &last_sony_subcode, &res_size);
  2019. if ((res_size < 2)
  2020.     || ((last_sony_subcode.exec_status[0] & 0xf0) == 0x20)) {
  2021. printk("Sony CDROM error %s (read_subcode)n",
  2022.        translate_error(last_sony_subcode.exec_status[1]));
  2023. return -EIO;
  2024. }
  2025. last_sony_subcode.track_num =
  2026.     bcd_to_int(last_sony_subcode.track_num);
  2027. last_sony_subcode.index_num =
  2028.     bcd_to_int(last_sony_subcode.index_num);
  2029. last_sony_subcode.abs_msf[0] =
  2030.     bcd_to_int(last_sony_subcode.abs_msf[0]);
  2031. last_sony_subcode.abs_msf[1] =
  2032.     bcd_to_int(last_sony_subcode.abs_msf[1]);
  2033. last_sony_subcode.abs_msf[2] =
  2034.     bcd_to_int(last_sony_subcode.abs_msf[2]);
  2035. last_sony_subcode.rel_msf[0] =
  2036.     bcd_to_int(last_sony_subcode.rel_msf[0]);
  2037. last_sony_subcode.rel_msf[1] =
  2038.     bcd_to_int(last_sony_subcode.rel_msf[1]);
  2039. last_sony_subcode.rel_msf[2] =
  2040.     bcd_to_int(last_sony_subcode.rel_msf[2]);
  2041. return 0;
  2042. }
  2043. /*
  2044.  * Uniform cdrom interface function
  2045.  * return the media catalog number found on some older audio cds
  2046.  */
  2047. static int
  2048. scd_get_mcn(struct cdrom_device_info *cdi, struct cdrom_mcn *mcn)
  2049. {
  2050. unsigned char resbuffer[2 + 14];
  2051. unsigned char *mcnp = mcn->medium_catalog_number;
  2052. unsigned char *resp = resbuffer + 3;
  2053. unsigned int res_size;
  2054. memset(mcn->medium_catalog_number, 0, 14);
  2055. do_sony_cd_cmd(SONY_REQ_UPC_EAN_CMD,
  2056.        NULL, 0, resbuffer, &res_size);
  2057. if ((res_size < 2) || ((resbuffer[0] & 0xf0) == 0x20));
  2058. else {
  2059. /* packed bcd to single ASCII digits */
  2060. *mcnp++ = (*resp >> 4) + '0';
  2061. *mcnp++ = (*resp++ & 0x0f) + '0';
  2062. *mcnp++ = (*resp >> 4) + '0';
  2063. *mcnp++ = (*resp++ & 0x0f) + '0';
  2064. *mcnp++ = (*resp >> 4) + '0';
  2065. *mcnp++ = (*resp++ & 0x0f) + '0';
  2066. *mcnp++ = (*resp >> 4) + '0';
  2067. *mcnp++ = (*resp++ & 0x0f) + '0';
  2068. *mcnp++ = (*resp >> 4) + '0';
  2069. *mcnp++ = (*resp++ & 0x0f) + '0';
  2070. *mcnp++ = (*resp >> 4) + '0';
  2071. *mcnp++ = (*resp++ & 0x0f) + '0';
  2072. *mcnp++ = (*resp >> 4) + '0';
  2073. }
  2074. *mcnp = '';
  2075. return 0;
  2076. }
  2077. /*
  2078.  * Get the subchannel info like the CDROMSUBCHNL command wants to see it.  If
  2079.  * the drive is playing, the subchannel needs to be read (since it would be
  2080.  * changing).  If the drive is paused or completed, the subcode information has
  2081.  * already been stored, just use that.  The ioctl call wants things in decimal
  2082.  * (not BCD), so all the conversions are done.
  2083.  */
  2084. static int sony_get_subchnl_info(struct cdrom_subchnl *schi)
  2085. {
  2086. /* Get attention stuff */
  2087. while (handle_sony_cd_attention());
  2088. sony_get_toc();
  2089. if (!sony_toc_read) {
  2090. return -EIO;
  2091. }
  2092. switch (sony_audio_status) {
  2093. case CDROM_AUDIO_NO_STATUS:
  2094. case CDROM_AUDIO_PLAY:
  2095. if (read_subcode() < 0) {
  2096. return -EIO;
  2097. }
  2098. break;
  2099. case CDROM_AUDIO_PAUSED:
  2100. case CDROM_AUDIO_COMPLETED:
  2101. break;
  2102. #if 0
  2103. case CDROM_AUDIO_NO_STATUS:
  2104. schi->cdsc_audiostatus = sony_audio_status;
  2105. return 0;
  2106. break;
  2107. #endif
  2108. case CDROM_AUDIO_INVALID:
  2109. case CDROM_AUDIO_ERROR:
  2110. default:
  2111. return -EIO;
  2112. }
  2113. schi->cdsc_audiostatus = sony_audio_status;
  2114. schi->cdsc_adr = last_sony_subcode.address;
  2115. schi->cdsc_ctrl = last_sony_subcode.control;
  2116. schi->cdsc_trk = last_sony_subcode.track_num;
  2117. schi->cdsc_ind = last_sony_subcode.index_num;
  2118. if (schi->cdsc_format == CDROM_MSF) {
  2119. schi->cdsc_absaddr.msf.minute =
  2120.     last_sony_subcode.abs_msf[0];
  2121. schi->cdsc_absaddr.msf.second =
  2122.     last_sony_subcode.abs_msf[1];
  2123. schi->cdsc_absaddr.msf.frame =
  2124.     last_sony_subcode.abs_msf[2];
  2125. schi->cdsc_reladdr.msf.minute =
  2126.     last_sony_subcode.rel_msf[0];
  2127. schi->cdsc_reladdr.msf.second =
  2128.     last_sony_subcode.rel_msf[1];
  2129. schi->cdsc_reladdr.msf.frame =
  2130.     last_sony_subcode.rel_msf[2];
  2131. } else if (schi->cdsc_format == CDROM_LBA) {
  2132. schi->cdsc_absaddr.lba =
  2133.     msf_to_log(last_sony_subcode.abs_msf);
  2134. schi->cdsc_reladdr.lba =
  2135.     msf_to_log(last_sony_subcode.rel_msf);
  2136. }
  2137. return 0;
  2138. }
  2139. /* Get audio data from the drive.  This is fairly complex because I
  2140.    am looking for status and data at the same time, but if I get status
  2141.    then I just look for data.  I need to get the status immediately so
  2142.    the switch from audio to data tracks will happen quickly. */
  2143. static void
  2144. read_audio_data(char *buffer, unsigned char res_reg[], int *res_size)
  2145. {
  2146. unsigned int retry_count;
  2147. int result_read;
  2148. res_reg[0] = 0;
  2149. res_reg[1] = 0;
  2150. *res_size = 0;
  2151. result_read = 0;
  2152. /* Wait for the drive to tell us we have something */
  2153. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  2154.       continue_read_audio_wait:
  2155. while (time_before(jiffies, retry_count) && !(is_data_ready())
  2156.        && !(is_result_ready() || result_read)) {
  2157. while (handle_sony_cd_attention());
  2158. sony_sleep();
  2159. }
  2160. if (!(is_data_ready())) {
  2161. if (is_result_ready() && !result_read) {
  2162. get_result(res_reg, res_size);
  2163. /* Read block status and continue waiting for data. */
  2164. if ((res_reg[0] & 0xf0) == 0x50) {
  2165. result_read = 1;
  2166. goto continue_read_audio_wait;
  2167. }
  2168. /* Invalid data from the drive.  Shut down the operation. */
  2169. else if ((res_reg[0] & 0xf0) != 0x20) {
  2170. printk
  2171.     ("CDU31A: Got result that should have been error: %dn",
  2172.      res_reg[0]);
  2173. res_reg[0] = 0x20;
  2174. res_reg[1] = SONY_BAD_DATA_ERR;
  2175. *res_size = 2;
  2176. }
  2177. abort_read();
  2178. } else {
  2179. #if DEBUG
  2180. printk("CDU31A timeout out %dn", __LINE__);
  2181. #endif
  2182. res_reg[0] = 0x20;
  2183. res_reg[1] = SONY_TIMEOUT_OP_ERR;
  2184. *res_size = 2;
  2185. abort_read();
  2186. }
  2187. } else {
  2188. clear_data_ready();
  2189. /* If data block, then get 2340 bytes offset by 12. */
  2190. if (sony_raw_data_mode) {
  2191. insb(sony_cd_read_reg, buffer + CD_XA_HEAD,
  2192.      CD_FRAMESIZE_RAW1);
  2193. } else {
  2194. /* Audio gets the whole 2352 bytes. */
  2195. insb(sony_cd_read_reg, buffer, CD_FRAMESIZE_RAW);
  2196. }
  2197. /* If I haven't already gotten the result, get it now. */
  2198. if (!result_read) {
  2199. /* Wait for the drive to tell us we have something */
  2200. retry_count = jiffies + SONY_JIFFIES_TIMEOUT;
  2201. while (time_before(jiffies, retry_count)
  2202.        && !(is_result_ready())) {
  2203. while (handle_sony_cd_attention());
  2204. sony_sleep();
  2205. }
  2206. if (!is_result_ready()) {
  2207. #if DEBUG
  2208. printk("CDU31A timeout out %dn",
  2209.        __LINE__);
  2210. #endif
  2211. res_reg[0] = 0x20;
  2212. res_reg[1] = SONY_TIMEOUT_OP_ERR;
  2213. *res_size = 2;
  2214. abort_read();
  2215. return;
  2216. } else {
  2217. get_result(res_reg, res_size);
  2218. }
  2219. }
  2220. if ((res_reg[0] & 0xf0) == 0x50) {
  2221. if ((res_reg[0] == SONY_NO_CIRC_ERR_BLK_STAT)
  2222.     || (res_reg[0] == SONY_NO_LECC_ERR_BLK_STAT)
  2223.     || (res_reg[0] == SONY_RECOV_LECC_ERR_BLK_STAT)
  2224.     || (res_reg[0] == SONY_NO_ERR_DETECTION_STAT)) {
  2225. /* Ok, nothing to do. */
  2226. } else {
  2227. printk("CDU31A: Data block error: 0x%xn",
  2228.        res_reg[0]);
  2229. res_reg[0] = 0x20;
  2230. res_reg[1] = SONY_BAD_DATA_ERR;
  2231. *res_size = 2;
  2232. }
  2233. } else if ((res_reg[0] & 0xf0) != 0x20) {
  2234. /* The drive gave me bad status, I don't know what to do.
  2235.    Reset the driver and return an error. */
  2236. printk("CDU31A: Invalid block status: 0x%xn",
  2237.        res_reg[0]);
  2238. restart_on_error();
  2239. res_reg[0] = 0x20;
  2240. res_reg[1] = SONY_BAD_DATA_ERR;
  2241. *res_size = 2;
  2242. }
  2243. }
  2244. }
  2245. /* Perform a raw data read.  This will automatically detect the
  2246.    track type and read the proper data (audio or data). */
  2247. static int read_audio(struct cdrom_read_audio *ra)
  2248. {
  2249. int retval;
  2250. unsigned char params[2];
  2251. unsigned char res_reg[12];
  2252. unsigned int res_size;
  2253. unsigned int cframe;
  2254. unsigned long flags;
  2255. /* 
  2256.  * Make sure no one else is using the driver; wait for them
  2257.  * to finish if it is so.
  2258.  */
  2259. save_flags(flags);
  2260. cli();
  2261. while (sony_inuse) {
  2262. interruptible_sleep_on(&sony_wait);
  2263. if (signal_pending(current)) {
  2264. restore_flags(flags);
  2265. return -EAGAIN;
  2266. }
  2267. }
  2268. sony_inuse = 1;
  2269. has_cd_task = current;
  2270. restore_flags(flags);
  2271. if (!sony_spun_up) {
  2272. scd_spinup();
  2273. }
  2274. /* Set the drive to do raw operations. */
  2275. params[0] = SONY_SD_DECODE_PARAM;
  2276. params[1] = 0x06 | sony_raw_data_mode;
  2277. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  2278.        params, 2, res_reg, &res_size);
  2279. if ((res_size < 2) || ((res_reg[0] & 0xf0) == 0x20)) {
  2280. printk("CDU31A: Unable to set decode params: 0x%2.2xn",
  2281.        res_reg[1]);
  2282. return -EIO;
  2283. }
  2284. /* From here down, we have to goto exit_read_audio instead of returning
  2285.    because the drive parameters have to be set back to data before
  2286.    return. */
  2287. retval = 0;
  2288. /* start_request clears out any readahead data, so it should be safe. */
  2289. if (start_request(ra->addr.lba, ra->nframes, 1)) {
  2290. retval = -EIO;
  2291. goto exit_read_audio;
  2292. }
  2293. /* For every requested frame. */
  2294. cframe = 0;
  2295. while (cframe < ra->nframes) {
  2296. read_audio_data(readahead_buffer, res_reg, &res_size);
  2297. if ((res_reg[0] & 0xf0) == 0x20) {
  2298. if (res_reg[1] == SONY_BAD_DATA_ERR) {
  2299. printk
  2300.     ("CDU31A: Data error on audio sector %dn",
  2301.      ra->addr.lba + cframe);
  2302. } else if (res_reg[1] == SONY_ILL_TRACK_R_ERR) {
  2303. /* Illegal track type, change track types and start over. */
  2304. sony_raw_data_mode =
  2305.     (sony_raw_data_mode) ? 0 : 1;
  2306. /* Set the drive mode. */
  2307. params[0] = SONY_SD_DECODE_PARAM;
  2308. params[1] = 0x06 | sony_raw_data_mode;
  2309. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  2310.        params,
  2311.        2, res_reg, &res_size);
  2312. if ((res_size < 2)
  2313.     || ((res_reg[0] & 0xf0) == 0x20)) {
  2314. printk
  2315.     ("CDU31A: Unable to set decode params: 0x%2.2xn",
  2316.      res_reg[1]);
  2317. retval = -EIO;
  2318. goto exit_read_audio;
  2319. }
  2320. /* Restart the request on the current frame. */
  2321. if (start_request
  2322.     (ra->addr.lba + cframe,
  2323.      ra->nframes - cframe, 1)) {
  2324. retval = -EIO;
  2325. goto exit_read_audio;
  2326. }
  2327. /* Don't go back to the top because don't want to get into
  2328.    and infinite loop.  A lot of code gets duplicated, but
  2329.    that's no big deal, I don't guess. */
  2330. read_audio_data(readahead_buffer, res_reg,
  2331. &res_size);
  2332. if ((res_reg[0] & 0xf0) == 0x20) {
  2333. if (res_reg[1] ==
  2334.     SONY_BAD_DATA_ERR) {
  2335. printk
  2336.     ("CDU31A: Data error on audio sector %dn",
  2337.      ra->addr.lba +
  2338.      cframe);
  2339. } else {
  2340. printk
  2341.     ("CDU31A: Error reading audio data on sector %d: %sn",
  2342.      ra->addr.lba + cframe,
  2343.      translate_error
  2344.      (res_reg[1]));
  2345. retval = -EIO;
  2346. goto exit_read_audio;
  2347. }
  2348. } else {
  2349. copy_to_user((char *) (ra->buf +
  2350.        (CD_FRAMESIZE_RAW
  2351. * cframe)),
  2352.      (char *)
  2353.      readahead_buffer,
  2354.      CD_FRAMESIZE_RAW);
  2355. }
  2356. } else {
  2357. printk
  2358.     ("CDU31A: Error reading audio data on sector %d: %sn",
  2359.      ra->addr.lba + cframe,
  2360.      translate_error(res_reg[1]));
  2361. retval = -EIO;
  2362. goto exit_read_audio;
  2363. }
  2364. } else {
  2365. copy_to_user((char *) (ra->buf +
  2366.        (CD_FRAMESIZE_RAW *
  2367. cframe)),
  2368.      (char *) readahead_buffer,
  2369.      CD_FRAMESIZE_RAW);
  2370. }
  2371. cframe++;
  2372. }
  2373. get_result(res_reg, &res_size);
  2374. if ((res_reg[0] & 0xf0) == 0x20) {
  2375. printk("CDU31A: Error return from audio read: %sn",
  2376.        translate_error(res_reg[1]));
  2377. retval = -EIO;
  2378. goto exit_read_audio;
  2379. }
  2380.       exit_read_audio:
  2381. /* Set the drive mode back to the proper one for the disk. */
  2382. params[0] = SONY_SD_DECODE_PARAM;
  2383. if (!sony_xa_mode) {
  2384. params[1] = 0x0f;
  2385. } else {
  2386. params[1] = 0x07;
  2387. }
  2388. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  2389.        params, 2, res_reg, &res_size);
  2390. if ((res_size < 2) || ((res_reg[0] & 0xf0) == 0x20)) {
  2391. printk("CDU31A: Unable to reset decode params: 0x%2.2xn",
  2392.        res_reg[1]);
  2393. return -EIO;
  2394. }
  2395. has_cd_task = NULL;
  2396. sony_inuse = 0;
  2397. wake_up_interruptible(&sony_wait);
  2398. return (retval);
  2399. }
  2400. static int
  2401. do_sony_cd_cmd_chk(const char *name,
  2402.    unsigned char cmd,
  2403.    unsigned char *params,
  2404.    unsigned int num_params,
  2405.    unsigned char *result_buffer, unsigned int *result_size)
  2406. {
  2407. do_sony_cd_cmd(cmd, params, num_params, result_buffer,
  2408.        result_size);
  2409. if ((*result_size < 2) || ((result_buffer[0] & 0xf0) == 0x20)) {
  2410. printk("Sony CDROM error %s (CDROM%s)n",
  2411.        translate_error(result_buffer[1]), name);
  2412. return -EIO;
  2413. }
  2414. return 0;
  2415. }
  2416. /*
  2417.  * Uniform cdrom interface function
  2418.  * open the tray
  2419.  */
  2420. static int scd_tray_move(struct cdrom_device_info *cdi, int position)
  2421. {
  2422. if (position == 1 /* open tray */ ) {
  2423. unsigned char res_reg[12];
  2424. unsigned int res_size;
  2425. do_sony_cd_cmd(SONY_AUDIO_STOP_CMD, NULL, 0, res_reg,
  2426.        &res_size);
  2427. do_sony_cd_cmd(SONY_SPIN_DOWN_CMD, NULL, 0, res_reg,
  2428.        &res_size);
  2429. sony_audio_status = CDROM_AUDIO_INVALID;
  2430. return do_sony_cd_cmd_chk("EJECT", SONY_EJECT_CMD, NULL, 0,
  2431.   res_reg, &res_size);
  2432. } else {
  2433. if (0 == scd_spinup())
  2434. sony_spun_up = 1;
  2435. return 0;
  2436. }
  2437. }
  2438. /*
  2439.  * The big ugly ioctl handler.
  2440.  */
  2441. static int scd_audio_ioctl(struct cdrom_device_info *cdi,
  2442.    unsigned int cmd, void *arg)
  2443. {
  2444. unsigned char res_reg[12];
  2445. unsigned int res_size;
  2446. unsigned char params[7];
  2447. int i;
  2448. switch (cmd) {
  2449. case CDROMSTART: /* Spin up the drive */
  2450. return do_sony_cd_cmd_chk("START", SONY_SPIN_UP_CMD, NULL,
  2451.   0, res_reg, &res_size);
  2452. break;
  2453. case CDROMSTOP: /* Spin down the drive */
  2454. do_sony_cd_cmd(SONY_AUDIO_STOP_CMD, NULL, 0, res_reg,
  2455.        &res_size);
  2456. /*
  2457.  * Spin the drive down, ignoring the error if the disk was
  2458.  * already not spinning.
  2459.  */
  2460. sony_audio_status = CDROM_AUDIO_NO_STATUS;
  2461. return do_sony_cd_cmd_chk("STOP", SONY_SPIN_DOWN_CMD, NULL,
  2462.   0, res_reg, &res_size);
  2463. case CDROMPAUSE: /* Pause the drive */
  2464. if (do_sony_cd_cmd_chk
  2465.     ("PAUSE", SONY_AUDIO_STOP_CMD, NULL, 0, res_reg,
  2466.      &res_size))
  2467. return -EIO;
  2468. /* Get the current position and save it for resuming */
  2469. if (read_subcode() < 0) {
  2470. return -EIO;
  2471. }
  2472. cur_pos_msf[0] = last_sony_subcode.abs_msf[0];
  2473. cur_pos_msf[1] = last_sony_subcode.abs_msf[1];
  2474. cur_pos_msf[2] = last_sony_subcode.abs_msf[2];
  2475. sony_audio_status = CDROM_AUDIO_PAUSED;
  2476. return 0;
  2477. break;
  2478. case CDROMRESUME: /* Start the drive after being paused */
  2479. if (sony_audio_status != CDROM_AUDIO_PAUSED) {
  2480. return -EINVAL;
  2481. }
  2482. do_sony_cd_cmd(SONY_SPIN_UP_CMD, NULL, 0, res_reg,
  2483.        &res_size);
  2484. /* Start the drive at the saved position. */
  2485. params[1] = int_to_bcd(cur_pos_msf[0]);
  2486. params[2] = int_to_bcd(cur_pos_msf[1]);
  2487. params[3] = int_to_bcd(cur_pos_msf[2]);
  2488. params[4] = int_to_bcd(final_pos_msf[0]);
  2489. params[5] = int_to_bcd(final_pos_msf[1]);
  2490. params[6] = int_to_bcd(final_pos_msf[2]);
  2491. params[0] = 0x03;
  2492. if (do_sony_cd_cmd_chk
  2493.     ("RESUME", SONY_AUDIO_PLAYBACK_CMD, params, 7, res_reg,
  2494.      &res_size) < 0)
  2495. return -EIO;
  2496. sony_audio_status = CDROM_AUDIO_PLAY;
  2497. return 0;
  2498. case CDROMPLAYMSF: /* Play starting at the given MSF address. */
  2499. do_sony_cd_cmd(SONY_SPIN_UP_CMD, NULL, 0, res_reg,
  2500.        &res_size);
  2501. /* The parameters are given in int, must be converted */
  2502. for (i = 1; i < 7; i++) {
  2503. params[i] =
  2504.     int_to_bcd(((unsigned char *) arg)[i - 1]);
  2505. }
  2506. params[0] = 0x03;
  2507. if (do_sony_cd_cmd_chk
  2508.     ("PLAYMSF", SONY_AUDIO_PLAYBACK_CMD, params, 7,
  2509.      res_reg, &res_size) < 0)
  2510. return -EIO;
  2511. /* Save the final position for pauses and resumes */
  2512. final_pos_msf[0] = bcd_to_int(params[4]);
  2513. final_pos_msf[1] = bcd_to_int(params[5]);
  2514. final_pos_msf[2] = bcd_to_int(params[6]);
  2515. sony_audio_status = CDROM_AUDIO_PLAY;
  2516. return 0;
  2517. case CDROMREADTOCHDR: /* Read the table of contents header */
  2518. {
  2519. struct cdrom_tochdr *hdr;
  2520. sony_get_toc();
  2521. if (!sony_toc_read) {
  2522. return -EIO;
  2523. }
  2524. hdr = (struct cdrom_tochdr *) arg;
  2525. hdr->cdth_trk0 = sony_toc.first_track_num;
  2526. hdr->cdth_trk1 = sony_toc.last_track_num;
  2527. }
  2528. return 0;
  2529. case CDROMREADTOCENTRY: /* Read a given table of contents entry */
  2530. {
  2531. struct cdrom_tocentry *entry;
  2532. int track_idx;
  2533. unsigned char *msf_val = NULL;
  2534. sony_get_toc();
  2535. if (!sony_toc_read) {
  2536. return -EIO;
  2537. }
  2538. entry = (struct cdrom_tocentry *) arg;
  2539. track_idx = find_track(entry->cdte_track);
  2540. if (track_idx < 0) {
  2541. return -EINVAL;
  2542. }
  2543. entry->cdte_adr =
  2544.     sony_toc.tracks[track_idx].address;
  2545. entry->cdte_ctrl =
  2546.     sony_toc.tracks[track_idx].control;
  2547. msf_val =
  2548.     sony_toc.tracks[track_idx].track_start_msf;
  2549. /* Logical buffer address or MSF format requested? */
  2550. if (entry->cdte_format == CDROM_LBA) {
  2551. entry->cdte_addr.lba = msf_to_log(msf_val);
  2552. } else if (entry->cdte_format == CDROM_MSF) {
  2553. entry->cdte_addr.msf.minute = *msf_val;
  2554. entry->cdte_addr.msf.second =
  2555.     *(msf_val + 1);
  2556. entry->cdte_addr.msf.frame =
  2557.     *(msf_val + 2);
  2558. }
  2559. }
  2560. return 0;
  2561. break;
  2562. case CDROMPLAYTRKIND: /* Play a track.  This currently ignores index. */
  2563. {
  2564. struct cdrom_ti *ti = (struct cdrom_ti *) arg;
  2565. int track_idx;
  2566. sony_get_toc();
  2567. if (!sony_toc_read) {
  2568. return -EIO;
  2569. }
  2570. if ((ti->cdti_trk0 < sony_toc.first_track_num)
  2571.     || (ti->cdti_trk0 > sony_toc.last_track_num)
  2572.     || (ti->cdti_trk1 < ti->cdti_trk0)) {
  2573. return -EINVAL;
  2574. }
  2575. track_idx = find_track(ti->cdti_trk0);
  2576. if (track_idx < 0) {
  2577. return -EINVAL;
  2578. }
  2579. params[1] =
  2580.     int_to_bcd(sony_toc.tracks[track_idx].
  2581.        track_start_msf[0]);
  2582. params[2] =
  2583.     int_to_bcd(sony_toc.tracks[track_idx].
  2584.        track_start_msf[1]);
  2585. params[3] =
  2586.     int_to_bcd(sony_toc.tracks[track_idx].
  2587.        track_start_msf[2]);
  2588. /*
  2589.  * If we want to stop after the last track, use the lead-out
  2590.  * MSF to do that.
  2591.  */
  2592. if (ti->cdti_trk1 >= sony_toc.last_track_num) {
  2593. track_idx = find_track(CDROM_LEADOUT);
  2594. } else {
  2595. track_idx = find_track(ti->cdti_trk1 + 1);
  2596. }
  2597. if (track_idx < 0) {
  2598. return -EINVAL;
  2599. }
  2600. params[4] =
  2601.     int_to_bcd(sony_toc.tracks[track_idx].
  2602.        track_start_msf[0]);
  2603. params[5] =
  2604.     int_to_bcd(sony_toc.tracks[track_idx].
  2605.        track_start_msf[1]);
  2606. params[6] =
  2607.     int_to_bcd(sony_toc.tracks[track_idx].
  2608.        track_start_msf[2]);
  2609. params[0] = 0x03;
  2610. do_sony_cd_cmd(SONY_SPIN_UP_CMD, NULL, 0, res_reg,
  2611.        &res_size);
  2612. do_sony_cd_cmd(SONY_AUDIO_PLAYBACK_CMD, params, 7,
  2613.        res_reg, &res_size);
  2614. if ((res_size < 2)
  2615.     || ((res_reg[0] & 0xf0) == 0x20)) {
  2616. printk("Params: %x %x %x %x %x %x %xn",
  2617.        params[0], params[1], params[2],
  2618.        params[3], params[4], params[5],
  2619.        params[6]);
  2620. printk
  2621.     ("Sony CDROM error %s (CDROMPLAYTRKIND)n",
  2622.      translate_error(res_reg[1]));
  2623. return -EIO;
  2624. }
  2625. /* Save the final position for pauses and resumes */
  2626. final_pos_msf[0] = bcd_to_int(params[4]);
  2627. final_pos_msf[1] = bcd_to_int(params[5]);
  2628. final_pos_msf[2] = bcd_to_int(params[6]);
  2629. sony_audio_status = CDROM_AUDIO_PLAY;
  2630. return 0;
  2631. }
  2632. case CDROMVOLCTRL: /* Volume control.  What volume does this change, anyway? */
  2633. {
  2634. struct cdrom_volctrl *volctrl =
  2635.     (struct cdrom_volctrl *) arg;
  2636. params[0] = SONY_SD_AUDIO_VOLUME;
  2637. params[1] = volctrl->channel0;
  2638. params[2] = volctrl->channel1;
  2639. return do_sony_cd_cmd_chk("VOLCTRL",
  2640.   SONY_SET_DRIVE_PARAM_CMD,
  2641.   params, 3, res_reg,
  2642.   &res_size);
  2643. }
  2644. case CDROMSUBCHNL: /* Get subchannel info */
  2645. return sony_get_subchnl_info((struct cdrom_subchnl *) arg);
  2646. default:
  2647. return -EINVAL;
  2648. }
  2649. }
  2650. static int scd_dev_ioctl(struct cdrom_device_info *cdi,
  2651.  unsigned int cmd, unsigned long arg)
  2652. {
  2653. int i;
  2654. switch (cmd) {
  2655. case CDROMREADAUDIO: /* Read 2352 byte audio tracks and 2340 byte
  2656.    raw data tracks. */
  2657. {
  2658. struct cdrom_read_audio ra;
  2659. sony_get_toc();
  2660. if (!sony_toc_read) {
  2661. return -EIO;
  2662. }
  2663. if (copy_from_user(&ra, (char *) arg, sizeof(ra)))
  2664. return -EFAULT;
  2665. if (ra.nframes == 0) {
  2666. return 0;
  2667. }
  2668. i = verify_area(VERIFY_WRITE, ra.buf,
  2669. CD_FRAMESIZE_RAW * ra.nframes);
  2670. if (i < 0)
  2671. return i;
  2672. if (ra.addr_format == CDROM_LBA) {
  2673. if ((ra.addr.lba >=
  2674.      sony_toc.lead_out_start_lba)
  2675.     || (ra.addr.lba + ra.nframes >=
  2676. sony_toc.lead_out_start_lba)) {
  2677. return -EINVAL;
  2678. }
  2679. } else if (ra.addr_format == CDROM_MSF) {
  2680. if ((ra.addr.msf.minute >= 75)
  2681.     || (ra.addr.msf.second >= 60)
  2682.     || (ra.addr.msf.frame >= 75)) {
  2683. return -EINVAL;
  2684. }
  2685. ra.addr.lba = ((ra.addr.msf.minute * 4500)
  2686.        + (ra.addr.msf.second * 75)
  2687.        + ra.addr.msf.frame);
  2688. if ((ra.addr.lba >=
  2689.      sony_toc.lead_out_start_lba)
  2690.     || (ra.addr.lba + ra.nframes >=
  2691. sony_toc.lead_out_start_lba)) {
  2692. return -EINVAL;
  2693. }
  2694. /* I know, this can go negative on an unsigned.  However,
  2695.    the first thing done to the data is to add this value,
  2696.    so this should compensate and allow direct msf access. */
  2697. ra.addr.lba -= LOG_START_OFFSET;
  2698. } else {
  2699. return -EINVAL;
  2700. }
  2701. return (read_audio(&ra));
  2702. }
  2703. return 0;
  2704. break;
  2705. default:
  2706. return -EINVAL;
  2707. }
  2708. }
  2709. static int scd_spinup(void)
  2710. {
  2711. unsigned char res_reg[12];
  2712. unsigned int res_size;
  2713. int num_spin_ups;
  2714. num_spin_ups = 0;
  2715.       respinup_on_open:
  2716. do_sony_cd_cmd(SONY_SPIN_UP_CMD, NULL, 0, res_reg, &res_size);
  2717. /* The drive sometimes returns error 0.  I don't know why, but ignore
  2718.    it.  It seems to mean the drive has already done the operation. */
  2719. if ((res_size < 2) || ((res_reg[0] != 0) && (res_reg[1] != 0))) {
  2720. printk("Sony CDROM %s error (scd_open, spin up)n",
  2721.        translate_error(res_reg[1]));
  2722. return 1;
  2723. }
  2724. do_sony_cd_cmd(SONY_READ_TOC_CMD, NULL, 0, res_reg, &res_size);
  2725. /* The drive sometimes returns error 0.  I don't know why, but ignore
  2726.    it.  It seems to mean the drive has already done the operation. */
  2727. if ((res_size < 2) || ((res_reg[0] != 0) && (res_reg[1] != 0))) {
  2728. /* If the drive is already playing, it's ok.  */
  2729. if ((res_reg[1] == SONY_AUDIO_PLAYING_ERR)
  2730.     || (res_reg[1] == 0)) {
  2731. return 0;
  2732. }
  2733. /* If the drive says it is not spun up (even though we just did it!)
  2734.    then retry the operation at least a few times. */
  2735. if ((res_reg[1] == SONY_NOT_SPIN_ERR)
  2736.     && (num_spin_ups < MAX_CDU31A_RETRIES)) {
  2737. num_spin_ups++;
  2738. goto respinup_on_open;
  2739. }
  2740. printk("Sony CDROM error %s (scd_open, read toc)n",
  2741.        translate_error(res_reg[1]));
  2742. do_sony_cd_cmd(SONY_SPIN_DOWN_CMD, NULL, 0, res_reg,
  2743.        &res_size);
  2744. return 1;
  2745. }
  2746. return 0;
  2747. }
  2748. /*
  2749.  * Open the drive for operations.  Spin the drive up and read the table of
  2750.  * contents if these have not already been done.
  2751.  */
  2752. static int scd_open(struct cdrom_device_info *cdi, int openmode)
  2753. {
  2754. unsigned char res_reg[12];
  2755. unsigned int res_size;
  2756. unsigned char params[2];
  2757. if (sony_usage == 0) {
  2758. if (scd_spinup() != 0)
  2759. return -EIO;
  2760. sony_get_toc();
  2761. if (!sony_toc_read) {
  2762. do_sony_cd_cmd(SONY_SPIN_DOWN_CMD, NULL, 0,
  2763.        res_reg, &res_size);
  2764. return -EIO;
  2765. }
  2766. /* For XA on the CDU31A only, we have to do special reads.
  2767.    The CDU33A handles XA automagically. */
  2768. /* if (   (sony_toc.disk_type == SONY_XA_DISK_TYPE) */
  2769. if ((sony_toc.disk_type != 0x00)
  2770.     && (!is_double_speed)) {
  2771. params[0] = SONY_SD_DECODE_PARAM;
  2772. params[1] = 0x07;
  2773. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  2774.        params, 2, res_reg, &res_size);
  2775. if ((res_size < 2)
  2776.     || ((res_reg[0] & 0xf0) == 0x20)) {
  2777. printk
  2778.     ("CDU31A: Unable to set XA params: 0x%2.2xn",
  2779.      res_reg[1]);
  2780. }
  2781. sony_xa_mode = 1;
  2782. }
  2783. /* A non-XA disk.  Set the parms back if necessary. */
  2784. else if (sony_xa_mode) {
  2785. params[0] = SONY_SD_DECODE_PARAM;
  2786. params[1] = 0x0f;
  2787. do_sony_cd_cmd(SONY_SET_DRIVE_PARAM_CMD,
  2788.        params, 2, res_reg, &res_size);
  2789. if ((res_size < 2)
  2790.     || ((res_reg[0] & 0xf0) == 0x20)) {
  2791. printk
  2792.     ("CDU31A: Unable to reset XA params: 0x%2.2xn",
  2793.      res_reg[1]);
  2794. }
  2795. sony_xa_mode = 0;
  2796. }
  2797. sony_spun_up = 1;
  2798. }
  2799. sony_usage++;
  2800. return 0;
  2801. }
  2802. /*
  2803.  * Close the drive.  Spin it down if no task is using it.  The spin
  2804.  * down will fail if playing audio, so audio play is OK.
  2805.  */
  2806. static void scd_release(struct cdrom_device_info *cdi)
  2807. {
  2808. if (sony_usage == 1) {
  2809. unsigned char res_reg[12];
  2810. unsigned int res_size;
  2811. do_sony_cd_cmd(SONY_SPIN_DOWN_CMD, NULL, 0, res_reg,
  2812.        &res_size);
  2813. sony_spun_up = 0;
  2814. }
  2815. sony_usage--;
  2816. }
  2817. struct block_device_operations scd_bdops =
  2818. {
  2819. owner: THIS_MODULE,
  2820. open: cdrom_open,
  2821. release: cdrom_release,
  2822. ioctl: cdrom_ioctl,
  2823. check_media_change: cdrom_media_changed,
  2824. };
  2825. static struct cdrom_device_ops scd_dops = {
  2826. open:scd_open,
  2827. release:scd_release,
  2828. drive_status:scd_drive_status,
  2829. media_changed:scd_media_changed,
  2830. tray_move:scd_tray_move,
  2831. lock_door:scd_lock_door,
  2832. select_speed:scd_select_speed,
  2833. get_last_session:scd_get_last_session,
  2834. get_mcn:scd_get_mcn,
  2835. reset:scd_reset,
  2836. audio_ioctl:scd_audio_ioctl,
  2837. dev_ioctl:scd_dev_ioctl,
  2838. capability:CDC_OPEN_TRAY | CDC_CLOSE_TRAY | CDC_LOCK |
  2839.     CDC_SELECT_SPEED | CDC_MULTI_SESSION |
  2840.     CDC_MULTI_SESSION | CDC_MCN |
  2841.     CDC_MEDIA_CHANGED | CDC_PLAY_AUDIO |
  2842.     CDC_RESET | CDC_IOCTLS | CDC_DRIVE_STATUS,
  2843. n_minors:1,
  2844. };
  2845. static struct cdrom_device_info scd_info = {
  2846. ops:&scd_dops,
  2847. speed:2,
  2848. capacity:1,
  2849. name:"cdu31a"
  2850. };
  2851. /* The different types of disc loading mechanisms supported */
  2852. static char *load_mech[] __initdata =
  2853.     { "caddy", "tray", "pop-up", "unknown" };
  2854. static void __init
  2855. get_drive_configuration(unsigned short base_io,
  2856. unsigned char res_reg[], unsigned int *res_size)
  2857. {
  2858. int retry_count;
  2859. /* Set the base address */
  2860. cdu31a_port = base_io;
  2861. /* Set up all the register locations */
  2862. sony_cd_cmd_reg = cdu31a_port + SONY_CMD_REG_OFFSET;
  2863. sony_cd_param_reg = cdu31a_port + SONY_PARAM_REG_OFFSET;
  2864. sony_cd_write_reg = cdu31a_port + SONY_WRITE_REG_OFFSET;
  2865. sony_cd_control_reg = cdu31a_port + SONY_CONTROL_REG_OFFSET;
  2866. sony_cd_status_reg = cdu31a_port + SONY_STATUS_REG_OFFSET;
  2867. sony_cd_result_reg = cdu31a_port + SONY_RESULT_REG_OFFSET;
  2868. sony_cd_read_reg = cdu31a_port + SONY_READ_REG_OFFSET;
  2869. sony_cd_fifost_reg = cdu31a_port + SONY_FIFOST_REG_OFFSET;
  2870. /*
  2871.  * Check to see if anything exists at the status register location.
  2872.  * I don't know if this is a good way to check, but it seems to work
  2873.  * ok for me.
  2874.  */
  2875. if (read_status_register() != 0xff) {
  2876. /*
  2877.  * Reset the drive and wait for attention from it (to say it's reset).
  2878.  * If you don't wait, the next operation will probably fail.
  2879.  */
  2880. reset_drive();
  2881. retry_count = jiffies + SONY_RESET_TIMEOUT;
  2882. while (time_before(jiffies, retry_count)
  2883.        && (!is_attention())) {
  2884. sony_sleep();
  2885. }
  2886. #if 0
  2887. /* If attention is never seen probably not a CDU31a present */
  2888. if (!is_attention()) {
  2889. res_reg[0] = 0x20;
  2890. return;
  2891. }
  2892. #endif
  2893. /*
  2894.  * Get the drive configuration.
  2895.  */
  2896. do_sony_cd_cmd(SONY_REQ_DRIVE_CONFIG_CMD,
  2897.        NULL,
  2898.        0, (unsigned char *) res_reg, res_size);
  2899. return;
  2900. }
  2901. /* Return an error */
  2902. res_reg[0] = 0x20;
  2903. }
  2904. #ifndef MODULE
  2905. /*
  2906.  * Set up base I/O and interrupts, called from main.c.
  2907.  
  2908.  */
  2909. static int __init cdu31a_setup(char *strings)
  2910. {
  2911. int ints[4];
  2912. (void) get_options(strings, ARRAY_SIZE(ints), ints);
  2913. if (ints[0] > 0) {
  2914. cdu31a_port = ints[1];
  2915. }
  2916. if (ints[0] > 1) {
  2917. cdu31a_irq = ints[2];
  2918. }
  2919. if ((strings != NULL) && (*strings != '')) {
  2920. if (strcmp(strings, "PAS") == 0) {
  2921. sony_pas_init = 1;
  2922. } else {
  2923. printk("CDU31A: Unknown interface type: %sn",
  2924.        strings);
  2925. }
  2926. }
  2927. return 1;
  2928. }
  2929. __setup("cdu31a=", cdu31a_setup);
  2930. #endif
  2931. static int cdu31a_block_size;
  2932. /*
  2933.  * Initialize the driver.
  2934.  */
  2935. int __init cdu31a_init(void)
  2936. {
  2937. struct s_sony_drive_config drive_config;
  2938. unsigned int res_size;
  2939. char msg[255];
  2940. char buf[40];
  2941. int i;
  2942. int drive_found;
  2943. int tmp_irq;
  2944. /*
  2945.  * According to Alex Freed (freed@europa.orion.adobe.com), this is
  2946.  * required for the Fusion CD-16 package.  If the sound driver is
  2947.  * loaded, it should work fine, but just in case...
  2948.  *
  2949.  * The following turn on the CD-ROM interface for a Fusion CD-16.
  2950.  */
  2951. if (sony_pas_init) {
  2952. outb(0xbc, 0x9a01);
  2953. outb(0xe2, 0x9a01);
  2954. }
  2955. drive_found = 0;
  2956. /* Setting the base I/O address to 0xffff will disable it. */
  2957. if (cdu31a_port == 0xffff) {
  2958. } else if (cdu31a_port != 0) {
  2959. tmp_irq = cdu31a_irq; /* Need IRQ 0 because we can't sleep here. */
  2960. cdu31a_irq = 0;
  2961. get_drive_configuration(cdu31a_port,
  2962. drive_config.exec_status,
  2963. &res_size);
  2964. if ((res_size > 2)
  2965.     && ((drive_config.exec_status[0] & 0xf0) == 0x00)) {
  2966. drive_found = 1;
  2967. }
  2968. cdu31a_irq = tmp_irq;
  2969. } else {
  2970. cdu31a_irq = 0;
  2971. i = 0;
  2972. while ((cdu31a_addresses[i].base != 0)
  2973.        && (!drive_found)) {
  2974. if (check_region(cdu31a_addresses[i].base, 4)) {
  2975. i++;
  2976. continue;
  2977. }
  2978. get_drive_configuration(cdu31a_addresses[i].base,
  2979. drive_config.exec_status,
  2980. &res_size);
  2981. if ((res_size > 2)
  2982.     && ((drive_config.exec_status[0] & 0xf0) ==
  2983. 0x00)) {
  2984. drive_found = 1;
  2985. cdu31a_irq = cdu31a_addresses[i].int_num;
  2986. } else {
  2987. i++;
  2988. }
  2989. }
  2990. }
  2991. if (drive_found) {
  2992. int deficiency = 0;
  2993. request_region(cdu31a_port, 4, "cdu31a");
  2994. if (devfs_register_blkdev(MAJOR_NR, "cdu31a", &scd_bdops)) {
  2995. printk("Unable to get major %d for CDU-31an",
  2996.        MAJOR_NR);
  2997. goto errout2;
  2998. }
  2999. if (SONY_HWC_DOUBLE_SPEED(drive_config)) {
  3000. is_double_speed = 1;
  3001. }
  3002. tmp_irq = cdu31a_irq; /* Need IRQ 0 because we can't sleep here. */
  3003. cdu31a_irq = 0;
  3004. set_drive_params(sony_speed);
  3005. cdu31a_irq = tmp_irq;
  3006. if (cdu31a_irq > 0) {
  3007. if (request_irq
  3008.     (cdu31a_irq, cdu31a_interrupt, SA_INTERRUPT,
  3009.      "cdu31a", NULL)) {
  3010. printk
  3011.     ("Unable to grab IRQ%d for the CDU31A drivern",
  3012.      cdu31a_irq);
  3013. cdu31a_irq = 0;
  3014. }
  3015. }
  3016. sprintf(msg, "Sony I/F CDROM : %8.8s %16.16s %8.8sn",
  3017. drive_config.vendor_id,
  3018. drive_config.product_id,
  3019. drive_config.product_rev_level);
  3020. sprintf(buf, "  Capabilities: %s",
  3021. load_mech[SONY_HWC_GET_LOAD_MECH(drive_config)]);
  3022. strcat(msg, buf);
  3023. if (SONY_HWC_AUDIO_PLAYBACK(drive_config)) {
  3024. strcat(msg, ", audio");
  3025. } else
  3026. deficiency |= CDC_PLAY_AUDIO;
  3027. if (SONY_HWC_EJECT(drive_config)) {
  3028. strcat(msg, ", eject");
  3029. } else
  3030. deficiency |= CDC_OPEN_TRAY;
  3031. if (SONY_HWC_LED_SUPPORT(drive_config)) {
  3032. strcat(msg, ", LED");
  3033. }
  3034. if (SONY_HWC_ELECTRIC_VOLUME(drive_config)) {
  3035. strcat(msg, ", elec. Vol");
  3036. }
  3037. if (SONY_HWC_ELECTRIC_VOLUME_CTL(drive_config)) {
  3038. strcat(msg, ", sep. Vol");
  3039. }
  3040. if (is_double_speed) {
  3041. strcat(msg, ", double speed");
  3042. } else
  3043. deficiency |= CDC_SELECT_SPEED;
  3044. if (cdu31a_irq > 0) {
  3045. sprintf(buf, ", irq %d", cdu31a_irq);
  3046. strcat(msg, buf);
  3047. }
  3048. strcat(msg, "n");
  3049. is_a_cdu31a =
  3050.     strcmp("CD-ROM CDU31A", drive_config.product_id) == 0;
  3051. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR),
  3052.        DEVICE_REQUEST);
  3053. read_ahead[MAJOR_NR] = CDU31A_READAHEAD;
  3054. cdu31a_block_size = 1024; /* 1kB default block size */
  3055. /* use 'mount -o block=2048' */
  3056. blksize_size[MAJOR_NR] = &cdu31a_block_size;
  3057. init_timer(&cdu31a_abort_timer);
  3058. cdu31a_abort_timer.function = handle_abort_timeout;
  3059. scd_info.dev = MKDEV(MAJOR_NR, 0);
  3060. scd_info.mask = deficiency;
  3061. strncpy(scd_info.name, "cdu31a", sizeof(scd_info.name));
  3062. if (register_cdrom(&scd_info)) {
  3063. goto errout0;
  3064. }
  3065. devfs_plain_cdrom(&scd_info, &scd_bdops);
  3066. }
  3067. disk_changed = 1;
  3068. if (drive_found) {
  3069. return (0);
  3070. } else {
  3071. goto errout3;
  3072. }
  3073.       errout0:
  3074. printk("Unable to register CDU-31a with Uniform cdrom drivern");
  3075. blk_cleanup_queue(BLK_DEFAULT_QUEUE(MAJOR_NR));
  3076. if (devfs_unregister_blkdev(MAJOR_NR, "cdu31a")) {
  3077. printk("Can't unregister block device for cdu31an");
  3078. }
  3079.       errout2:
  3080. release_region(cdu31a_port, 4);
  3081.       errout3:
  3082. return -EIO;
  3083. }
  3084. void __exit cdu31a_exit(void)
  3085. {
  3086. if (unregister_cdrom(&scd_info)) {
  3087. printk
  3088.     ("Can't unregister cdu31a from Uniform cdrom drivern");
  3089. return;
  3090. }
  3091. if ((devfs_unregister_blkdev(MAJOR_NR, "cdu31a") == -EINVAL)) {
  3092. printk("Can't unregister cdu31an");
  3093. return;
  3094. }
  3095. blk_cleanup_queue(BLK_DEFAULT_QUEUE(MAJOR_NR));
  3096. if (cdu31a_irq > 0)
  3097. free_irq(cdu31a_irq, NULL);
  3098. release_region(cdu31a_port, 4);
  3099. printk(KERN_INFO "cdu31a module released.n");
  3100. }
  3101. #ifdef MODULE
  3102. module_init(cdu31a_init);
  3103. #endif
  3104. module_exit(cdu31a_exit);
  3105. MODULE_LICENSE("GPL");
  3106. EXPORT_NO_SYMBOLS;