The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/ata.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2000 - 2006 Søren Schmidt <sos@FreeBSD.org>
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer,
   10  *    without modification, immediately at the beginning of the file.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  *
   15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   25  *
   26  * $FreeBSD$
   27  */
   28 
   29 #ifndef _SYS_ATA_H_
   30 #define _SYS_ATA_H_
   31 
   32 #include <sys/ioccom.h>
   33 
   34 /* ATA/ATAPI device parameters */
   35 struct ata_params {
   36 /*000*/ u_int16_t       config;         /* configuration info */
   37 #define ATA_PROTO_MASK                  0x8003
   38 #define ATA_PROTO_ATAPI                 0x8000
   39 #define ATA_PROTO_ATAPI_12              0x8000
   40 #define ATA_PROTO_ATAPI_16              0x8001
   41 #define ATA_PROTO_CFA                   0x848a
   42 #define ATA_ATAPI_TYPE_MASK             0x1f00
   43 #define ATA_ATAPI_TYPE_DIRECT           0x0000  /* disk/floppy */
   44 #define ATA_ATAPI_TYPE_TAPE             0x0100  /* streaming tape */
   45 #define ATA_ATAPI_TYPE_CDROM            0x0500  /* CD-ROM device */
   46 #define ATA_ATAPI_TYPE_OPTICAL          0x0700  /* optical disk */
   47 #define ATA_DRQ_MASK                    0x0060
   48 #define ATA_DRQ_SLOW                    0x0000  /* cpu 3 ms delay */
   49 #define ATA_DRQ_INTR                    0x0020  /* interrupt 10 ms delay */
   50 #define ATA_DRQ_FAST                    0x0040  /* accel 50 us delay */
   51 
   52 /*001*/ u_int16_t       cylinders;              /* # of cylinders */
   53         u_int16_t       reserved2;
   54 /*003*/ u_int16_t       heads;                  /* # heads */
   55         u_int16_t       obsolete4;
   56         u_int16_t       obsolete5;
   57 /*006*/ u_int16_t       sectors;                /* # sectors/track */
   58 /*007*/ u_int16_t       vendor7[3];
   59 /*010*/ u_int8_t        serial[20];             /* serial number */
   60 /*020*/ u_int16_t       retired20;
   61         u_int16_t       retired21;
   62         u_int16_t       obsolete22;
   63 /*023*/ u_int8_t        revision[8];            /* firmware revision */
   64 /*027*/ u_int8_t        model[40];              /* model name */
   65 /*047*/ u_int16_t       sectors_intr;           /* sectors per interrupt */
   66 /*048*/ u_int16_t       usedmovsd;              /* double word read/write? */
   67 /*049*/ u_int16_t       capabilities1;
   68 #define ATA_SUPPORT_DMA                 0x0100
   69 #define ATA_SUPPORT_LBA                 0x0200
   70 #define ATA_SUPPORT_IORDY               0x0400
   71 #define ATA_SUPPORT_IORDYDIS            0x0800
   72 #define ATA_SUPPORT_OVERLAP             0x4000
   73 
   74 /*050*/ u_int16_t       capabilities2;
   75 /*051*/ u_int16_t       retired_piomode;        /* PIO modes 0-2 */
   76 #define ATA_RETIRED_PIO_MASK            0x0300
   77 
   78 /*052*/ u_int16_t       retired_dmamode;        /* DMA modes */
   79 #define ATA_RETIRED_DMA_MASK            0x0003
   80 
   81 /*053*/ u_int16_t       atavalid;               /* fields valid */
   82 #define ATA_FLAG_54_58                  0x0001  /* words 54-58 valid */
   83 #define ATA_FLAG_64_70                  0x0002  /* words 64-70 valid */
   84 #define ATA_FLAG_88                     0x0004  /* word 88 valid */
   85 
   86 /*054*/ u_int16_t       current_cylinders;
   87 /*055*/ u_int16_t       current_heads;
   88 /*056*/ u_int16_t       current_sectors;
   89 /*057*/ u_int16_t       current_size_1;
   90 /*058*/ u_int16_t       current_size_2;
   91 /*059*/ u_int16_t       multi;
   92 #define ATA_MULTI_VALID                 0x0100
   93 
   94 /*060*/ u_int16_t       lba_size_1;
   95         u_int16_t       lba_size_2;
   96         u_int16_t       obsolete62;
   97 /*063*/ u_int16_t       mwdmamodes;             /* multiword DMA modes */
   98 /*064*/ u_int16_t       apiomodes;              /* advanced PIO modes */
   99 
  100 /*065*/ u_int16_t       mwdmamin;               /* min. M/W DMA time/word ns */
  101 /*066*/ u_int16_t       mwdmarec;               /* rec. M/W DMA time ns */
  102 /*067*/ u_int16_t       pioblind;               /* min. PIO cycle w/o flow */
  103 /*068*/ u_int16_t       pioiordy;               /* min. PIO cycle IORDY flow */
  104         u_int16_t       reserved69;
  105         u_int16_t       reserved70;
  106 /*071*/ u_int16_t       rlsovlap;               /* rel time (us) for overlap */
  107 /*072*/ u_int16_t       rlsservice;             /* rel time (us) for service */
  108         u_int16_t       reserved73;
  109         u_int16_t       reserved74;
  110 /*075*/ u_int16_t       queue;
  111 #define ATA_QUEUE_LEN(x)                ((x) & 0x001f)
  112 
  113 /*76*/  u_int16_t       satacapabilities;
  114 #define ATA_SATA_GEN1                   0x0002
  115 #define ATA_SATA_GEN2                   0x0004
  116 #define ATA_SATA_GEN3                   0x0008
  117 #define ATA_SUPPORT_NCQ                 0x0100
  118 #define ATA_SUPPORT_IFPWRMNGTRCV        0x0200
  119 #define ATA_SUPPORT_PHYEVENTCNT         0x0400
  120 #define ATA_SUPPORT_NCQ_UNLOAD          0x0800
  121 #define ATA_SUPPORT_NCQ_PRIO            0x1000
  122 #define ATA_SUPPORT_HAPST               0x2000
  123 #define ATA_SUPPORT_DAPST               0x4000
  124 #define ATA_SUPPORT_READLOGDMAEXT       0x8000
  125 
  126 /*77*/  u_int16_t       satacapabilities2;
  127 #define ATA_SATA_CURR_GEN_MASK          0x0006
  128 #define ATA_SUPPORT_NCQ_STREAM          0x0010
  129 #define ATA_SUPPORT_NCQ_QMANAGEMENT     0x0020
  130 /*78*/  u_int16_t       satasupport;
  131 #define ATA_SUPPORT_NONZERO             0x0002
  132 #define ATA_SUPPORT_AUTOACTIVATE        0x0004
  133 #define ATA_SUPPORT_IFPWRMNGT           0x0008
  134 #define ATA_SUPPORT_INORDERDATA         0x0010
  135 #define ATA_SUPPORT_SOFTSETPRESERVE     0x0040
  136 /*79*/  u_int16_t       sataenabled;
  137 #define ATA_ENABLED_DAPST               0x0080
  138 
  139 /*080*/ u_int16_t       version_major;
  140 /*081*/ u_int16_t       version_minor;
  141 
  142         struct {
  143 /*082/085*/ u_int16_t   command1;
  144 #define ATA_SUPPORT_SMART               0x0001
  145 #define ATA_SUPPORT_SECURITY            0x0002
  146 #define ATA_SUPPORT_REMOVABLE           0x0004
  147 #define ATA_SUPPORT_POWERMGT            0x0008
  148 #define ATA_SUPPORT_PACKET              0x0010
  149 #define ATA_SUPPORT_WRITECACHE          0x0020
  150 #define ATA_SUPPORT_LOOKAHEAD           0x0040
  151 #define ATA_SUPPORT_RELEASEIRQ          0x0080
  152 #define ATA_SUPPORT_SERVICEIRQ          0x0100
  153 #define ATA_SUPPORT_RESET               0x0200
  154 #define ATA_SUPPORT_PROTECTED           0x0400
  155 #define ATA_SUPPORT_WRITEBUFFER         0x1000
  156 #define ATA_SUPPORT_READBUFFER          0x2000
  157 #define ATA_SUPPORT_NOP                 0x4000
  158 
  159 /*083/086*/ u_int16_t   command2;
  160 #define ATA_SUPPORT_MICROCODE           0x0001
  161 #define ATA_SUPPORT_QUEUED              0x0002
  162 #define ATA_SUPPORT_CFA                 0x0004
  163 #define ATA_SUPPORT_APM                 0x0008
  164 #define ATA_SUPPORT_NOTIFY              0x0010
  165 #define ATA_SUPPORT_STANDBY             0x0020
  166 #define ATA_SUPPORT_SPINUP              0x0040
  167 #define ATA_SUPPORT_MAXSECURITY         0x0100
  168 #define ATA_SUPPORT_AUTOACOUSTIC        0x0200
  169 #define ATA_SUPPORT_ADDRESS48           0x0400
  170 #define ATA_SUPPORT_OVERLAY             0x0800
  171 #define ATA_SUPPORT_FLUSHCACHE          0x1000
  172 #define ATA_SUPPORT_FLUSHCACHE48        0x2000
  173 
  174 /*084/087*/ u_int16_t   extension;
  175 #define ATA_SUPPORT_SMARTLOG            0x0001
  176 #define ATA_SUPPORT_SMARTTEST           0x0002
  177 #define ATA_SUPPORT_MEDIASN             0x0004
  178 #define ATA_SUPPORT_MEDIAPASS           0x0008
  179 #define ATA_SUPPORT_STREAMING           0x0010
  180 #define ATA_SUPPORT_GENLOG              0x0020
  181 #define ATA_SUPPORT_WRITEDMAFUAEXT      0x0040
  182 #define ATA_SUPPORT_WRITEDMAQFUAEXT     0x0080
  183 #define ATA_SUPPORT_64BITWWN            0x0100
  184 #define ATA_SUPPORT_UNLOAD              0x2000
  185         } __packed support, enabled;
  186 
  187 /*088*/ u_int16_t       udmamodes;              /* UltraDMA modes */
  188 /*089*/ u_int16_t       erase_time;
  189 /*090*/ u_int16_t       enhanced_erase_time;
  190 /*091*/ u_int16_t       apm_value;
  191 /*092*/ u_int16_t       master_passwd_revision;
  192 /*093*/ u_int16_t       hwres;
  193 #define ATA_CABLE_ID                    0x2000
  194 
  195 /*094*/ u_int16_t       acoustic;
  196 #define ATA_ACOUSTIC_CURRENT(x)         ((x) & 0x00ff)
  197 #define ATA_ACOUSTIC_VENDOR(x)          (((x) & 0xff00) >> 8)
  198 
  199 /*095*/ u_int16_t       stream_min_req_size;
  200 /*096*/ u_int16_t       stream_transfer_time;
  201 /*097*/ u_int16_t       stream_access_latency;
  202 /*098*/ u_int32_t       stream_granularity;
  203 /*100*/ u_int16_t       lba_size48_1;
  204         u_int16_t       lba_size48_2;
  205         u_int16_t       lba_size48_3;
  206         u_int16_t       lba_size48_4;
  207         u_int16_t       reserved104[2];
  208 /*106*/ u_int16_t       pss;
  209 #define ATA_PSS_LSPPS                   0x000F
  210 #define ATA_PSS_LSSABOVE512             0x1000
  211 #define ATA_PSS_MULTLS                  0x2000
  212 /*107*/ u_int16_t       isd;
  213 /*108*/ u_int16_t       wwn[4];
  214         u_int16_t       reserved112[5];
  215 /*117*/ u_int16_t       lss_1;
  216 /*118*/ u_int16_t       lss_2;
  217 /*119*/ u_int16_t       support2;
  218 #define ATA_SUPPORT_WRITEREADVERIFY     0x0002
  219 #define ATA_SUPPORT_WRITEUNCORREXT      0x0004
  220 #define ATA_SUPPORT_RWLOGDMAEXT         0x0008
  221 #define ATA_SUPPORT_MICROCODE3          0x0010
  222 #define ATA_SUPPORT_FREEFALL            0x0020
  223 /*120*/ u_int16_t       enabled2;
  224         u_int16_t       reserved121[6];
  225 /*127*/ u_int16_t       removable_status;
  226 /*128*/ u_int16_t       security_status;
  227         u_int16_t       reserved129[31];
  228 /*160*/ u_int16_t       cfa_powermode1;
  229         u_int16_t       reserved161;
  230 /*162*/ u_int16_t       cfa_kms_support;
  231 /*163*/ u_int16_t       cfa_trueide_modes;
  232 /*164*/ u_int16_t       cfa_memory_modes;
  233         u_int16_t       reserved165[11];
  234 /*176*/ u_int8_t        media_serial[60];
  235 /*206*/ u_int16_t       sct;
  236         u_int16_t       reserved206[2];
  237 /*209*/ u_int16_t       lbalign;
  238 /*210*/ u_int16_t       wrv_sectors_m3_1;
  239         u_int16_t       wrv_sectors_m3_2;
  240 /*212*/ u_int16_t       wrv_sectors_m2_1;
  241         u_int16_t       wrv_sectors_m2_2;
  242 /*214*/ u_int16_t       nv_cache_caps;
  243 /*215*/ u_int16_t       nv_cache_size_1;
  244         u_int16_t       nv_cache_size_2;
  245 /*217*/ u_int16_t       media_rotation_rate;
  246         u_int16_t       reserved218;
  247 /*219*/ u_int16_t       nv_cache_opt;
  248 /*220*/ u_int16_t       wrv_mode;
  249         u_int16_t       reserved221;
  250 /*222*/ u_int16_t       transport_major;
  251 /*223*/ u_int16_t       transport_minor;
  252         u_int16_t       reserved224[31];
  253 /*255*/ u_int16_t       integrity;
  254 } __packed;
  255 
  256 
  257 /* ATA transfer modes */
  258 #define ATA_MODE_MASK           0x0f
  259 #define ATA_DMA_MASK            0xf0
  260 #define ATA_PIO                 0x00
  261 #define ATA_PIO0                0x08
  262 #define ATA_PIO1                0x09
  263 #define ATA_PIO2                0x0a
  264 #define ATA_PIO3                0x0b
  265 #define ATA_PIO4                0x0c
  266 #define ATA_PIO_MAX             0x0f
  267 #define ATA_DMA                 0x10
  268 #define ATA_WDMA0               0x20
  269 #define ATA_WDMA1               0x21
  270 #define ATA_WDMA2               0x22
  271 #define ATA_UDMA0               0x40
  272 #define ATA_UDMA1               0x41
  273 #define ATA_UDMA2               0x42
  274 #define ATA_UDMA3               0x43
  275 #define ATA_UDMA4               0x44
  276 #define ATA_UDMA5               0x45
  277 #define ATA_UDMA6               0x46
  278 #define ATA_SA150               0x47
  279 #define ATA_SA300               0x48
  280 #define ATA_DMA_MAX             0x4f
  281 #define ATA_USB                 0x80
  282 #define ATA_USB1                0x81
  283 #define ATA_USB2                0x82
  284 
  285 
  286 /* ATA commands */
  287 #define ATA_NOP                         0x00    /* NOP */
  288 #define         ATA_NF_FLUSHQUEUE       0x00    /* flush queued cmd's */
  289 #define         ATA_NF_AUTOPOLL         0x01    /* start autopoll function */
  290 #define ATA_DEVICE_RESET                0x08    /* reset device */
  291 #define ATA_READ                        0x20    /* read */
  292 #define ATA_READ48                      0x24    /* read 48bit LBA */
  293 #define ATA_READ_DMA48                  0x25    /* read DMA 48bit LBA */
  294 #define ATA_READ_DMA_QUEUED48           0x26    /* read DMA QUEUED 48bit LBA */
  295 #define ATA_READ_NATIVE_MAX_ADDDRESS48  0x27    /* read native max addr 48bit */
  296 #define ATA_READ_MUL48                  0x29    /* read multi 48bit LBA */
  297 #define ATA_WRITE                       0x30    /* write */
  298 #define ATA_WRITE48                     0x34    /* write 48bit LBA */
  299 #define ATA_WRITE_DMA48                 0x35    /* write DMA 48bit LBA */
  300 #define ATA_WRITE_DMA_QUEUED48          0x36    /* write DMA QUEUED 48bit LBA*/
  301 #define ATA_SET_MAX_ADDRESS48           0x37    /* set max address 48bit */
  302 #define ATA_WRITE_MUL48                 0x39    /* write multi 48bit LBA */
  303 #define ATA_READ_FPDMA_QUEUED           0x60    /* read DMA NCQ */
  304 #define ATA_WRITE_FPDMA_QUEUED          0x61    /* write DMA NCQ */
  305 #define ATA_SEEK                        0x70    /* seek */
  306 #define ATA_PACKET_CMD                  0xa0    /* packet command */
  307 #define ATA_ATAPI_IDENTIFY              0xa1    /* get ATAPI params*/
  308 #define ATA_SERVICE                     0xa2    /* service command */
  309 #define ATA_SMART_CMD                   0xb0    /* SMART command */
  310 #define ATA_CFA_ERASE                   0xc0    /* CFA erase */
  311 #define ATA_READ_MUL                    0xc4    /* read multi */
  312 #define ATA_WRITE_MUL                   0xc5    /* write multi */
  313 #define ATA_SET_MULTI                   0xc6    /* set multi size */
  314 #define ATA_READ_DMA_QUEUED             0xc7    /* read DMA QUEUED */
  315 #define ATA_READ_DMA                    0xc8    /* read DMA */
  316 #define ATA_WRITE_DMA                   0xca    /* write DMA */
  317 #define ATA_WRITE_DMA_QUEUED            0xcc    /* write DMA QUEUED */
  318 #define ATA_STANDBY_IMMEDIATE           0xe0    /* standby immediate */
  319 #define ATA_IDLE_IMMEDIATE              0xe1    /* idle immediate */
  320 #define ATA_STANDBY_CMD                 0xe2    /* standby */
  321 #define ATA_IDLE_CMD                    0xe3    /* idle */
  322 #define ATA_READ_BUFFER                 0xe4    /* read buffer */
  323 #define ATA_SLEEP                       0xe6    /* sleep */
  324 #define ATA_FLUSHCACHE                  0xe7    /* flush cache to disk */
  325 #define ATA_FLUSHCACHE48                0xea    /* flush cache to disk */
  326 #define ATA_ATA_IDENTIFY                0xec    /* get ATA params */
  327 #define ATA_SETFEATURES                 0xef    /* features command */
  328 #define         ATA_SF_SETXFER          0x03    /* set transfer mode */
  329 #define         ATA_SF_ENAB_WCACHE      0x02    /* enable write cache */
  330 #define         ATA_SF_DIS_WCACHE       0x82    /* disable write cache */
  331 #define         ATA_SF_ENAB_RCACHE      0xaa    /* enable readahead cache */
  332 #define         ATA_SF_DIS_RCACHE       0x55    /* disable readahead cache */
  333 #define         ATA_SF_ENAB_RELIRQ      0x5d    /* enable release interrupt */
  334 #define         ATA_SF_DIS_RELIRQ       0xdd    /* disable release interrupt */
  335 #define         ATA_SF_ENAB_SRVIRQ      0x5e    /* enable service interrupt */
  336 #define         ATA_SF_DIS_SRVIRQ       0xde    /* disable service interrupt */
  337 #define ATA_SECURITY_FREEE_LOCK         0xf5    /* freeze security config */
  338 #define ATA_READ_NATIVE_MAX_ADDDRESS    0xf8    /* read native max address */
  339 #define ATA_SET_MAX_ADDRESS             0xf9    /* set max address */
  340 
  341 
  342 /* ATAPI commands */
  343 #define ATAPI_TEST_UNIT_READY           0x00    /* check if device is ready */
  344 #define ATAPI_REZERO                    0x01    /* rewind */
  345 #define ATAPI_REQUEST_SENSE             0x03    /* get sense data */
  346 #define ATAPI_FORMAT                    0x04    /* format unit */
  347 #define ATAPI_READ                      0x08    /* read data */
  348 #define ATAPI_WRITE                     0x0a    /* write data */
  349 #define ATAPI_WEOF                      0x10    /* write filemark */
  350 #define         ATAPI_WF_WRITE          0x01
  351 #define ATAPI_SPACE                     0x11    /* space command */
  352 #define         ATAPI_SP_FM             0x01
  353 #define         ATAPI_SP_EOD            0x03
  354 #define ATAPI_INQUIRY                   0x12    /* get inquiry data */
  355 #define ATAPI_MODE_SELECT               0x15    /* mode select */
  356 #define ATAPI_ERASE                     0x19    /* erase */
  357 #define ATAPI_MODE_SENSE                0x1a    /* mode sense */
  358 #define ATAPI_START_STOP                0x1b    /* start/stop unit */
  359 #define         ATAPI_SS_LOAD           0x01
  360 #define         ATAPI_SS_RETENSION      0x02
  361 #define         ATAPI_SS_EJECT          0x04
  362 #define ATAPI_PREVENT_ALLOW             0x1e    /* media removal */
  363 #define ATAPI_READ_FORMAT_CAPACITIES    0x23    /* get format capacities */
  364 #define ATAPI_READ_CAPACITY             0x25    /* get volume capacity */
  365 #define ATAPI_READ_BIG                  0x28    /* read data */
  366 #define ATAPI_WRITE_BIG                 0x2a    /* write data */
  367 #define ATAPI_LOCATE                    0x2b    /* locate to position */
  368 #define ATAPI_READ_POSITION             0x34    /* read position */
  369 #define ATAPI_SYNCHRONIZE_CACHE         0x35    /* flush buf, close channel */
  370 #define ATAPI_WRITE_BUFFER              0x3b    /* write device buffer */
  371 #define ATAPI_READ_BUFFER               0x3c    /* read device buffer */
  372 #define ATAPI_READ_SUBCHANNEL           0x42    /* get subchannel info */
  373 #define ATAPI_READ_TOC                  0x43    /* get table of contents */
  374 #define ATAPI_PLAY_10                   0x45    /* play by lba */
  375 #define ATAPI_PLAY_MSF                  0x47    /* play by MSF address */
  376 #define ATAPI_PLAY_TRACK                0x48    /* play by track number */
  377 #define ATAPI_PAUSE                     0x4b    /* pause audio operation */
  378 #define ATAPI_READ_DISK_INFO            0x51    /* get disk info structure */
  379 #define ATAPI_READ_TRACK_INFO           0x52    /* get track info structure */
  380 #define ATAPI_RESERVE_TRACK             0x53    /* reserve track */
  381 #define ATAPI_SEND_OPC_INFO             0x54    /* send OPC structurek */
  382 #define ATAPI_MODE_SELECT_BIG           0x55    /* set device parameters */
  383 #define ATAPI_REPAIR_TRACK              0x58    /* repair track */
  384 #define ATAPI_READ_MASTER_CUE           0x59    /* read master CUE info */
  385 #define ATAPI_MODE_SENSE_BIG            0x5a    /* get device parameters */
  386 #define ATAPI_CLOSE_TRACK               0x5b    /* close track/session */
  387 #define ATAPI_READ_BUFFER_CAPACITY      0x5c    /* get buffer capicity */
  388 #define ATAPI_SEND_CUE_SHEET            0x5d    /* send CUE sheet */
  389 #define ATAPI_SERVICE_ACTION_IN         0x96    /* get service data */
  390 #define ATAPI_BLANK                     0xa1    /* blank the media */
  391 #define ATAPI_SEND_KEY                  0xa3    /* send DVD key structure */
  392 #define ATAPI_REPORT_KEY                0xa4    /* get DVD key structure */
  393 #define ATAPI_PLAY_12                   0xa5    /* play by lba */
  394 #define ATAPI_LOAD_UNLOAD               0xa6    /* changer control command */
  395 #define ATAPI_READ_STRUCTURE            0xad    /* get DVD structure */
  396 #define ATAPI_PLAY_CD                   0xb4    /* universal play command */
  397 #define ATAPI_SET_SPEED                 0xbb    /* set drive speed */
  398 #define ATAPI_MECH_STATUS               0xbd    /* get changer status */
  399 #define ATAPI_READ_CD                   0xbe    /* read data */
  400 #define ATAPI_POLL_DSC                  0xff    /* poll DSC status bit */
  401 
  402 
  403 struct ata_ioc_devices {
  404     int                 channel;
  405     char                name[2][32];
  406     struct ata_params   params[2];
  407 };
  408 
  409 /* pr channel ATA ioctl calls */
  410 #define IOCATAGMAXCHANNEL       _IOR('a',  1, int)
  411 #define IOCATAREINIT            _IOW('a',  2, int)
  412 #define IOCATAATTACH            _IOW('a',  3, int)
  413 #define IOCATADETACH            _IOW('a',  4, int)
  414 #define IOCATADEVICES           _IOWR('a',  5, struct ata_ioc_devices)
  415 
  416 /* ATAPI request sense structure */
  417 struct atapi_sense {
  418     u_int8_t    error;                          /* current or deferred errors */
  419 #define ATA_SENSE_VALID                 0x80
  420 
  421     u_int8_t    segment;                        /* segment number */
  422     u_int8_t    key;                            /* sense key */
  423 #define ATA_SENSE_KEY_MASK              0x0f    /* sense key mask */
  424 #define ATA_SENSE_NO_SENSE              0x00    /* no specific sense key info */
  425 #define ATA_SENSE_RECOVERED_ERROR       0x01    /* command OK, data recovered */
  426 #define ATA_SENSE_NOT_READY             0x02    /* no access to drive */
  427 #define ATA_SENSE_MEDIUM_ERROR          0x03    /* non-recovered data error */
  428 #define ATA_SENSE_HARDWARE_ERROR        0x04    /* non-recoverable HW failure */
  429 #define ATA_SENSE_ILLEGAL_REQUEST       0x05    /* invalid command param(s) */
  430 #define ATA_SENSE_UNIT_ATTENTION        0x06    /* media changed */
  431 #define ATA_SENSE_DATA_PROTECT          0x07    /* write protect */
  432 #define ATA_SENSE_BLANK_CHECK           0x08    /* blank check */
  433 #define ATA_SENSE_VENDOR_SPECIFIC       0x09    /* vendor specific skey */
  434 #define ATA_SENSE_COPY_ABORTED          0x0a    /* copy aborted */
  435 #define ATA_SENSE_ABORTED_COMMAND       0x0b    /* command aborted, try again */
  436 #define ATA_SENSE_EQUAL                 0x0c    /* equal */
  437 #define ATA_SENSE_VOLUME_OVERFLOW       0x0d    /* volume overflow */
  438 #define ATA_SENSE_MISCOMPARE            0x0e    /* data dont match the medium */
  439 #define ATA_SENSE_RESERVED              0x0f
  440 #define ATA_SENSE_ILI                   0x20;
  441 #define ATA_SENSE_EOM                   0x40;
  442 #define ATA_SENSE_FILEMARK              0x80;
  443 
  444     u_int32_t   cmd_info;               /* cmd information */
  445     u_int8_t    sense_length;           /* additional sense len (n-7) */
  446     u_int32_t   cmd_specific_info;      /* additional cmd spec info */
  447     u_int8_t    asc;                    /* additional sense code */
  448     u_int8_t    ascq;                   /* additional sense code qual */
  449     u_int8_t    replaceable_unit_code;  /* replaceable unit code */
  450     u_int8_t    specific;               /* sense key specific */
  451 #define ATA_SENSE_SPEC_VALID    0x80
  452 #define ATA_SENSE_SPEC_MASK     0x7f
  453         
  454     u_int8_t    specific1;              /* sense key specific */
  455     u_int8_t    specific2;              /* sense key specific */
  456 } __packed;
  457 
  458 struct ata_ioc_request {
  459     union {
  460         struct {
  461             u_int8_t            command;
  462             u_int8_t            feature;
  463             u_int64_t           lba;
  464             u_int16_t           count;
  465         } ata;
  466         struct {
  467             char                ccb[16];
  468             struct atapi_sense  sense;
  469         } atapi;
  470     } u;
  471     caddr_t             data;
  472     int                 count;
  473     int                 flags;
  474 #define ATA_CMD_CONTROL                 0x01
  475 #define ATA_CMD_READ                    0x02
  476 #define ATA_CMD_WRITE                   0x04
  477 #define ATA_CMD_ATAPI                   0x08
  478 
  479     int                 timeout;
  480     int                 error;
  481 };
  482 
  483 /* pr device ATA ioctl calls */
  484 #define IOCATAREQUEST           _IOWR('a', 100, struct ata_ioc_request)
  485 #define IOCATAGPARM             _IOR('a', 101, struct ata_params)
  486 #define IOCATAGMODE             _IOR('a', 102, int)
  487 #define IOCATASMODE             _IOW('a', 103, int)
  488 
  489 #define IOCATAGSPINDOWN         _IOR('a', 104, int)
  490 #define IOCATASSPINDOWN         _IOW('a', 105, int)
  491 
  492 
  493 struct ata_ioc_raid_config {
  494             int                 lun;
  495             int                 type;
  496 #define AR_JBOD                         0x0001
  497 #define AR_SPAN                         0x0002
  498 #define AR_RAID0                        0x0004
  499 #define AR_RAID1                        0x0008
  500 #define AR_RAID01                       0x0010
  501 #define AR_RAID3                        0x0020
  502 #define AR_RAID4                        0x0040
  503 #define AR_RAID5                        0x0080
  504 
  505             int                 interleave;
  506             int                 status;
  507 #define AR_READY                        1
  508 #define AR_DEGRADED                     2
  509 #define AR_REBUILDING                   4
  510 
  511             int                 progress;
  512             int                 total_disks;
  513             int                 disks[16];
  514 };
  515 
  516 struct ata_ioc_raid_status {
  517             int                 lun;
  518             int                 type;
  519             int                 interleave;
  520             int                 status;
  521             int                 progress;
  522             int                 total_disks;
  523             struct {
  524                     int         state;
  525 #define AR_DISK_ONLINE                  0x01
  526 #define AR_DISK_PRESENT                 0x02
  527 #define AR_DISK_SPARE                   0x04
  528                     int         lun;
  529             } disks[16];
  530 };
  531 
  532 /* ATA RAID ioctl calls */
  533 #define IOCATARAIDCREATE        _IOWR('a', 200, struct ata_ioc_raid_config)
  534 #define IOCATARAIDDELETE        _IOW('a', 201, int)
  535 #define IOCATARAIDSTATUS        _IOWR('a', 202, struct ata_ioc_raid_status)
  536 #define IOCATARAIDADDSPARE      _IOW('a', 203, struct ata_ioc_raid_config)
  537 #define IOCATARAIDREBUILD       _IOW('a', 204, int)
  538 
  539 #endif /* _SYS_ATA_H_ */

Cache object: e6c2f80cb2ed04ac7e9e2200a7dc2b34


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.