root/include/linux/cdu31a.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * Definitions for a Sony interface CDROM drive.
   3  *
   4  * Corey Minyard (minyard@wf-rch.cirr.com)
   5  *
   6  *  Copyright (C) 1993  Corey Minyard
   7  *
   8  *  This program is free software; you can redistribute it and/or modify
   9  *  it under the terms of the GNU General Public License as published by
  10  *  the Free Software Foundation; either version 2 of the License, or
  11  *  (at your option) any later version.
  12  *
  13  *  This program is distributed in the hope that it will be useful,
  14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16  *  GNU General Public License for more details.
  17  *
  18  *  You should have received a copy of the GNU General Public License
  19  *  along with this program; if not, write to the Free Software
  20  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21  *
  22  */
  23 
  24 /*
  25  * General defines.
  26  */
  27 #define SONY_XA_DISK_TYPE 0x20
  28 
  29 /*
  30  * Offsets (from the base address) and bits for the various write registers
  31  * of the drive.
  32  */
  33 #define SONY_CMD_REG_OFFSET     0
  34 #define SONY_PARAM_REG_OFFSET   1
  35 #define SONY_WRITE_REG_OFFSET   2
  36 #define SONY_CONTROL_REG_OFFSET 3
  37 #       define SONY_ATTN_CLR_BIT        0x01
  38 #       define SONY_RES_RDY_CLR_BIT     0x02
  39 #       define SONY_DATA_RDY_CLR_BIT    0x04
  40 #       define SONY_ATTN_INT_EN_BIT     0x08
  41 #       define SONY_RES_RDY_INT_EN_BIT  0x10
  42 #       define SONY_DATA_RDY_INT_EN_BIT 0x20
  43 #       define SONY_PARAM_CLR_BIT       0x40
  44 #       define SONY_DRIVE_RESET_BIT     0x80
  45 
  46 /*
  47  * Offsets (from the base address) and bits for the various read registers
  48  * of the drive.
  49  */
  50 #define SONY_STATUS_REG_OFFSET  0
  51 #       define SONY_ATTN_BIT            0x01
  52 #       define SONY_RES_RDY_BIT         0x02
  53 #       define SONY_DATA_RDY_BIT        0x04
  54 #       define SONY_ATTN_INT_ST_BIT     0x08
  55 #       define SONY_RES_RDY_INT_ST_BIT  0x10
  56 #       define SONY_DATA_RDY_INT_ST_BIT 0x20
  57 #       define SONY_DATA_REQUEST_BIT    0x40
  58 #       define SONY_BUSY_BIT            0x80
  59 #define SONY_RESULT_REG_OFFSET  1
  60 #define SONY_READ_REG_OFFSET    2
  61 #define SONY_FIFOST_REG_OFFSET  3
  62 #       define SONY_PARAM_WRITE_RDY_BIT 0x01
  63 #       define SONY_PARAM_REG_EMPTY_BIT 0x02
  64 #       define SONY_RES_REG_NOT_EMP_BIT 0x04
  65 #       define SONY_RES_REG_FULL_BIT    0x08
  66 
  67 #define LOG_START_OFFSET        150     /* Offset of first logical sector */
  68 
  69 #define SONY_DETECT_TIMEOUT     80      /* Maximum amount of time
  70                                            that drive detection code
  71                                            will wait for response
  72                                            from drive (in 1/100th's
  73                                            of seconds). */
  74  
  75 #define SONY_JIFFIES_TIMEOUT    1000    /* Maximum number of times the
  76                                            drive will wait/try for an
  77                                            operation */
  78 #define SONY_RESET_TIMEOUT      100     /* Maximum number of times the
  79                                            drive will wait/try a reset
  80                                            operation */
  81 #define SONY_READY_RETRIES      20000   /* How many times to retry a
  82                                            spin waiting for a register
  83                                            to come ready */
  84 
  85 #define MAX_CDU31A_RETRIES      3       /* How many times to retry an
  86                                            operation */
  87 
  88 /* Commands to request or set drive control parameters and disc information */
  89 #define SONY_REQ_DRIVE_CONFIG_CMD       0x00    /* Returns s_sony_drive_config */
  90 #define SONY_REQ_DRIVE_MODE_CMD         0x01
  91 #define SONY_REQ_DRIVE_PARAM_CMD        0x02
  92 #define SONY_REQ_MECH_STATUS_CMD        0x03
  93 #define SONY_REQ_AUDIO_STATUS_CMD       0x04
  94 #define SONY_SET_DRIVE_PARAM_CMD        0x10
  95 #define SONY_REQ_TOC_DATA_CMD           0x20    /* Returns s_sony_toc */
  96 #define SONY_REQ_SUBCODE_ADDRESS_CMD    0x21    /* Returns s_sony_subcode */
  97 #define SONY_REQ_UPC_EAN_CMD            0x22
  98 #define SONY_REQ_ISRC_CMD               0x23
  99 #define SONY_REQ_TOC_DATA_SPEC_CMD      0x24
 100 
 101 /* Commands to request information from the drive */
 102 #define SONY_READ_TOC_CMD               0x30
 103 #define SONY_SEEK_CMD                   0x31
 104 #define SONY_READ_CMD                   0x32
 105 #define SONY_READ_BLKERR_STAT_CMD       0x34
 106 #define SONY_ABORT_CMD                  0x35
 107 #define SONY_READ_TOC_SPEC_CMD          0x36
 108 
 109 /* Commands to control audio */
 110 #define SONY_AUDIO_PLAYBACK_CMD         0x40
 111 #define SONY_AUDIO_STOP_CMD             0x41
 112 #define SONY_AUDIO_SCAN_CMD             0x42
 113 
 114 /* Miscellaneous control commands */
 115 #define SONY_EJECT_CMD                  0x50
 116 #define SONY_SPIN_UP_CMD                0x51
 117 #define SONY_SPIN_DOWN_CMD              0x52
 118 
 119 /* Diagnostic commands */
 120 #define SONY_WRITE_BUFFER_CMD           0x60
 121 #define SONY_READ_BUFFER_CMD            0x61
 122 #define SONY_DIAGNOSTICS_CMD            0x62
 123 
 124 
 125 /*
 126  * The following are command parameters for the set drive parameter command
 127  */
 128 #define SONY_SD_DECODE_PARAM            0x00
 129 #define SONY_SD_INTERFACE_PARAM         0x01
 130 #define SONY_SD_BUFFERING_PARAM         0x02
 131 #define SONY_SD_AUDIO_PARAM             0x03
 132 #define SONY_SD_AUDIO_VOLUME            0x04
 133 #define SONY_SD_MECH_CONTROL            0x05
 134 #define SONY_SD_AUTO_SPIN_DOWN_TIME     0x06
 135 
 136 /*
 137  * The following extract information from the drive configuration about
 138  * the drive itself.
 139  */
 140 #define SONY_HWC_GET_LOAD_MECH(c)       (c.hw_config[0] & 0x03)
 141 #define SONY_HWC_EJECT(c)               (c.hw_config[0] & 0x04)
 142 #define SONY_HWC_LED_SUPPORT(c)         (c.hw_config[0] & 0x08)
 143 #define SONY_HWC_DOUBLE_SPEED(c)        (c.hw_config[0] & 0x10)
 144 #define SONY_HWC_GET_BUF_MEM_SIZE(c)    ((c.hw_config[0] & 0xc0) >> 6)
 145 #define SONY_HWC_AUDIO_PLAYBACK(c)      (c.hw_config[1] & 0x01)
 146 #define SONY_HWC_ELECTRIC_VOLUME(c)     (c.hw_config[1] & 0x02)
 147 #define SONY_HWC_ELECTRIC_VOLUME_CTL(c) (c.hw_config[1] & 0x04)
 148 
 149 #define SONY_HWC_CADDY_LOAD_MECH        0x00
 150 #define SONY_HWC_TRAY_LOAD_MECH         0x01
 151 #define SONY_HWC_POPUP_LOAD_MECH        0x02
 152 #define SONY_HWC_UNKWN_LOAD_MECH        0x03
 153 
 154 #define SONY_HWC_8KB_BUFFER             0x00
 155 #define SONY_HWC_32KB_BUFFER            0x01
 156 #define SONY_HWC_64KB_BUFFER            0x02
 157 #define SONY_HWC_UNKWN_BUFFER           0x03
 158 
 159 /*
 160  * This is the complete status returned from the drive configuration request
 161  * command.
 162  */
 163 struct s_sony_drive_config
 164 {
 165    unsigned char exec_status[2];
 166    char vendor_id[8];
 167    char product_id[16];
 168    char product_rev_level[8];
 169    unsigned char hw_config[2];
 170 };
 171 
 172 /* The following is returned from the request subcode address command */
 173 struct s_sony_subcode
 174 {
 175    unsigned char exec_status[2];
 176    unsigned char address        :4;
 177    unsigned char control        :4;
 178    unsigned char track_num;
 179    unsigned char index_num;
 180    unsigned char rel_msf[3];
 181    unsigned char reserved1;
 182    unsigned char abs_msf[3];
 183 };
 184 
 185 #define MAX_TRACKS 100  /* The maximum tracks a disk may have. */
 186 /*
 187  * The following is returned from the request TOC (Table Of Contents) command.
 188  * (last_track_num-first_track_num+1) values are valid in tracks.
 189  */
 190 struct s_sony_toc
 191 {
 192    unsigned char exec_status[2];
 193    unsigned char address0       :4;
 194    unsigned char control0       :4;
 195    unsigned char point0;
 196    unsigned char first_track_num;
 197    unsigned char disk_type;
 198    unsigned char dummy0;
 199    unsigned char address1       :4;
 200    unsigned char control1       :4;
 201    unsigned char point1;
 202    unsigned char last_track_num;
 203    unsigned char dummy1;
 204    unsigned char dummy2;
 205    unsigned char address2       :4;
 206    unsigned char control2       :4;
 207    unsigned char point2;
 208    unsigned char lead_out_start_msf[3];
 209    struct
 210    {
 211       unsigned char address     :4;
 212       unsigned char control     :4;
 213       unsigned char track;
 214       unsigned char track_start_msf[3];
 215    } tracks[MAX_TRACKS];
 216 
 217    unsigned int lead_out_start_lba;
 218 };
 219 
 220 struct s_sony_session_toc
 221 {
 222    unsigned char exec_status[2];
 223    unsigned char session_number;
 224    unsigned char address0       :4;
 225    unsigned char control0       :4;
 226    unsigned char point0;
 227    unsigned char first_track_num;
 228    unsigned char disk_type;
 229    unsigned char dummy0;
 230    unsigned char address1       :4;
 231    unsigned char control1       :4;
 232    unsigned char point1;
 233    unsigned char last_track_num;
 234    unsigned char dummy1;
 235    unsigned char dummy2;
 236    unsigned char address2       :4;
 237    unsigned char control2       :4;
 238    unsigned char point2;
 239    unsigned char lead_out_start_msf[3];
 240    unsigned char addressb0      :4;
 241    unsigned char controlb0      :4;
 242    unsigned char pointb0;
 243    unsigned char next_poss_prog_area_msf[3];
 244    unsigned char num_mode_5_pointers;
 245    unsigned char max_start_outer_leadout_msf[3];
 246    unsigned char addressb1      :4;
 247    unsigned char controlb1      :4;
 248    unsigned char pointb1;
 249    unsigned char dummyb0_1[4];
 250    unsigned char num_skip_interval_pointers;
 251    unsigned char num_skip_track_assignments;
 252    unsigned char dummyb0_2;
 253    unsigned char addressb2      :4;
 254    unsigned char controlb2      :4;
 255    unsigned char pointb2;
 256    unsigned char tracksb2[7];
 257    unsigned char addressb3      :4;
 258    unsigned char controlb3      :4;
 259    unsigned char pointb3;
 260    unsigned char tracksb3[7];
 261    unsigned char addressb4      :4;
 262    unsigned char controlb4      :4;
 263    unsigned char pointb4;
 264    unsigned char tracksb4[7];
 265    unsigned char addressc0      :4;
 266    unsigned char controlc0      :4;
 267    unsigned char pointc0;
 268    unsigned char dummyc0[7];
 269    struct
 270    {
 271       unsigned char address     :4;
 272       unsigned char control     :4;
 273       unsigned char track;
 274       unsigned char track_start_msf[3];
 275    } tracks[MAX_TRACKS];
 276 
 277    unsigned int start_track_lba;
 278    unsigned int lead_out_start_lba;
 279 };
 280 
 281 
 282 /*
 283  * The following are errors returned from the drive.
 284  */
 285 
 286 /* Command error group */
 287 #define SONY_ILL_CMD_ERR                0x10
 288 #define SONY_ILL_PARAM_ERR              0x11
 289 
 290 /* Mechanism group */
 291 #define SONY_NOT_LOAD_ERR               0x20
 292 #define SONY_NO_DISK_ERR                0x21
 293 #define SONY_NOT_SPIN_ERR               0x22
 294 #define SONY_SPIN_ERR                   0x23
 295 #define SONY_SPINDLE_SERVO_ERR          0x25
 296 #define SONY_FOCUS_SERVO_ERR            0x26
 297 #define SONY_EJECT_MECH_ERR             0x29
 298 #define SONY_AUDIO_PLAYING_ERR          0x2a
 299 #define SONY_EMERGENCY_EJECT_ERR        0x2c
 300 
 301 /* Seek error group */
 302 #define SONY_FOCUS_ERR                  0x30
 303 #define SONY_FRAME_SYNC_ERR             0x31
 304 #define SONY_SUBCODE_ADDR_ERR           0x32
 305 #define SONY_BLOCK_SYNC_ERR             0x33
 306 #define SONY_HEADER_ADDR_ERR            0x34
 307 
 308 /* Read error group */
 309 #define SONY_ILL_TRACK_R_ERR            0x40
 310 #define SONY_MODE_0_R_ERR               0x41
 311 #define SONY_ILL_MODE_R_ERR             0x42
 312 #define SONY_ILL_BLOCK_SIZE_R_ERR       0x43
 313 #define SONY_MODE_R_ERR                 0x44
 314 #define SONY_FORM_R_ERR                 0x45
 315 #define SONY_LEAD_OUT_R_ERR             0x46
 316 #define SONY_BUFFER_OVERRUN_R_ERR       0x47
 317 
 318 /* Data error group */
 319 #define SONY_UNREC_CIRC_ERR             0x53
 320 #define SONY_UNREC_LECC_ERR             0x57
 321 
 322 /* Subcode error group */
 323 #define SONY_NO_TOC_ERR                 0x60
 324 #define SONY_SUBCODE_DATA_NVAL_ERR      0x61
 325 #define SONY_FOCUS_ON_TOC_READ_ERR      0x63
 326 #define SONY_FRAME_SYNC_ON_TOC_READ_ERR 0x64
 327 #define SONY_TOC_DATA_ERR               0x65
 328 
 329 /* Hardware failure group */
 330 #define SONY_HW_FAILURE_ERR             0x70
 331 #define SONY_LEAD_IN_A_ERR              0x91
 332 #define SONY_LEAD_OUT_A_ERR             0x92
 333 #define SONY_DATA_TRACK_A_ERR           0x93
 334 
 335 /*
 336  * The following are returned from the Read With Block Error Status command.
 337  * They are not errors but information (Errors from the 0x5x group above may
 338  * also be returned
 339  */
 340 #define SONY_NO_CIRC_ERR_BLK_STAT       0x50
 341 #define SONY_NO_LECC_ERR_BLK_STAT       0x54
 342 #define SONY_RECOV_LECC_ERR_BLK_STAT    0x55
 343 #define SONY_NO_ERR_DETECTION_STAT      0x59
 344 
 345 /* 
 346  * The following is not an error returned by the drive, but by the code
 347  * that talks to the drive.  It is returned because of a timeout.
 348  */
 349 #define SONY_TIMEOUT_OP_ERR             0x01
 350 #define SONY_SIGNAL_OP_ERR              0x02
 351 #define SONY_BAD_DATA_ERR               0x03
 352 
 353 
 354 /*
 355  * The following are attention code for asynchronous events from the drive.
 356  */
 357 
 358 /* Standard attention group */
 359 #define SONY_EMER_EJECT_ATTN            0x2c
 360 #define SONY_HW_FAILURE_ATTN            0x70
 361 #define SONY_MECH_LOADED_ATTN           0x80
 362 #define SONY_EJECT_PUSHED_ATTN          0x81
 363 
 364 /* Audio attention group */
 365 #define SONY_AUDIO_PLAY_DONE_ATTN       0x90
 366 #define SONY_LEAD_IN_ERR_ATTN           0x91
 367 #define SONY_LEAD_OUT_ERR_ATTN          0x92
 368 #define SONY_DATA_TRACK_ERR_ATTN        0x93
 369 #define SONY_AUDIO_PLAYBACK_ERR_ATTN    0x94
 370 
 371 /* Auto spin up group */
 372 #define SONY_SPIN_UP_COMPLETE_ATTN      0x24
 373 #define SONY_SPINDLE_SERVO_ERR_ATTN     0x25
 374 #define SONY_FOCUS_SERVO_ERR_ATTN       0x26
 375 #define SONY_TOC_READ_DONE_ATTN         0x62
 376 #define SONY_FOCUS_ON_TOC_READ_ERR_ATTN 0x63
 377 #define SONY_SYNC_ON_TOC_READ_ERR_ATTN  0x65
 378 
 379 /* Auto eject group */
 380 #define SONY_SPIN_DOWN_COMPLETE_ATTN    0x27
 381 #define SONY_EJECT_COMPLETE_ATTN        0x28
 382 #define SONY_EJECT_MECH_ERR_ATTN        0x29

/* [previous][next][first][last][top][bottom][index][help] */