[3] | 1 | ; File name : ATA_ID.inc
|
---|
| 2 | ; Project name : IDE BIOS
|
---|
| 3 | ; Created date : 30.10.2009
|
---|
| 4 | ; Last update : 12.3.2010
|
---|
| 5 | ; Author : Tomi Tilli
|
---|
| 6 | ; Description : ATA Identify Drive information.
|
---|
| 7 | %ifndef ATA_ID_INC
|
---|
| 8 | %define ATA_ID_INC
|
---|
| 9 |
|
---|
| 10 | ; ATA-1 Drive Information struct
|
---|
| 11 | ; F = Fixed value
|
---|
| 12 | ; V = Variable value
|
---|
| 13 | ; R = Reserved word
|
---|
| 14 | ; X = Vendor specific word
|
---|
| 15 | struc ATA1
|
---|
| 16 | .wGenCfg resw 1 ; 0F, General configuration bit-significant information
|
---|
| 17 | .wCylCnt resw 1 ; 1F, Number of cylinders
|
---|
| 18 | resw 1 ; 2R
|
---|
| 19 | .wHeadCnt resw 1 ; 3F, Number of heads
|
---|
| 20 | .wBpTrck resw 1 ; 4F, Number of unformatted bytes per track
|
---|
| 21 | .wBpSect resw 1 ; 5F, Number of unformatted bytes per sector
|
---|
| 22 | .wSPT resw 1 ; 6F, Number of sectors per track
|
---|
| 23 | resw 3 ; 7...9X
|
---|
| 24 | .strSerial resb 20 ; 10...19F, Serial number (20 ASCII characters, 0000h=not specified)
|
---|
| 25 | .wBuffType resw 1 ; 20F, Buffer type
|
---|
| 26 | .wBuffSize resw 1 ; 21F, Buffer size in 512 byte increments (0000h=not specified)
|
---|
| 27 | .wEccCnt resw 1 ; 22F, # of ECC bytes avail on read/write long cmds (0000h=not spec'd)
|
---|
| 28 | .strFirmW resb 8 ; 23...26F, Firmware revision (8 ASCII characters, 0000h=not specified)
|
---|
| 29 | .strModel resb 40 ; 27...46F, Model number (40 ASCII characters, 0000h=not specified)
|
---|
| 30 | .bBlckSize resb 1 ; 47[0-7]F, Maximum number of sectors that can be transferred
|
---|
| 31 | ; per interrupt on read and write multiple commands
|
---|
| 32 | ; (00h=Read/write multiple commands not implemented)
|
---|
| 33 | resb 1 ; 47[8-15]X
|
---|
| 34 | .wDWIO resw 1 ; 48F, Can perform doubleword I/O (boolean)
|
---|
| 35 | .wCaps resw 1 ; 49FRX, Capabilities
|
---|
| 36 | resw 1 ; 50R
|
---|
| 37 | resb 1 ; 51[0-7]X
|
---|
| 38 | .bPIOTiming resb 1 ; 51[8-15]F, PIO data transfer cycle timing mode
|
---|
| 39 | resb 1 ; 52[0-7]X
|
---|
| 40 | .bDMATiming resb 1 ; 52[8-15]F, DMA data transfer cycle timing mode
|
---|
| 41 | .wFields resw 1 ; 53FVR, Field (next words) validity bits
|
---|
| 42 |
|
---|
| 43 | ; Words 54-58 are valid only if bit0 is set in .wFields
|
---|
| 44 | .wCurCyls resw 1 ; 54V, Number of current cylinders
|
---|
| 45 | .wCurHeads resw 1 ; 55V, Number of current heads
|
---|
| 46 | .wCurSPT resw 1 ; 56V, Number of current sectors per track
|
---|
| 47 | .dwCurSCnt resd 1 ; 57...58V, Current capacity in sectors
|
---|
| 48 |
|
---|
| 49 | ; Words 59-63 are always valid
|
---|
| 50 | .bBlockSel resb 1 ; 59[0-7]V, Current setting for number of sectors that
|
---|
| 51 | ; can be transferred per interrupt on R/W multiple command
|
---|
| 52 | .bBlockFlgs resb 1 ; 59[8-15]VR, bit 0 set if Multiple sector setting is valid
|
---|
| 53 | .dwLBACnt resd 1 ; 60...61F, Total number of user addressable sectors (LBA mode only)
|
---|
| 54 | .bSDMASupp resb 1 ; 62[0-7]F, Single word DMA transfer modes supported
|
---|
| 55 | .bSDMAAct resb 1 ; 62[8-15]V, Single word DMA transfer mode active
|
---|
| 56 | .bMDMASupp resb 1 ; 63[0-7]F, Multiword DMA transfer modes supported
|
---|
| 57 | .bMDMAAct resb 1 ; 63[8-15]V, Multiword DMA transfer mode active
|
---|
| 58 | endstruc
|
---|
| 59 |
|
---|
| 60 | ; ATA-1 Word 0, General configuration
|
---|
| 61 | A1_wGenCfg_NONMAG EQU (1<<15) ; Reserved for non-magnetic drives
|
---|
| 62 | A1_wGenCfg_FGAPREQ EQU (1<<14) ; Format speed tolerance gap required
|
---|
| 63 | A1_wGenCfg_TRCKOFF EQU (1<<13) ; Track offset option available
|
---|
| 64 | A1_wGenCfg_DATAOFF EQU (1<<12) ; Data strobe offset option available
|
---|
| 65 | A1_wGenCfg_ROTTOL EQU (1<<11) ; Rotational speed tolerance is > 0,5%
|
---|
| 66 | A1_wGenCfg_XFERFAST EQU (1<<10) ; Disk transfer rate > 10 Mbs
|
---|
| 67 | A1_wGenCfg_XFERMED EQU (1<<9) ; Disk transfer rate > 5Mbs but <= 10Mbs
|
---|
| 68 | A1_wGenCfg_XFERSLOW EQU (1<<8) ; Disk transfer rate <= 5Mbs
|
---|
| 69 | A1_wGenCfg_REMOVABLE EQU (1<<7) ; Removable cartridge drive
|
---|
| 70 | A1_wGenCfg_FIXED EQU (1<<6) ; Fixed drive
|
---|
| 71 | A1_wGenCfg_MOTCTRL EQU (1<<5) ; Spindle motor control option implemented
|
---|
| 72 | A1_wGenCfg_HEADSLOW EQU (1<<4) ; Head switch time > 15 usec
|
---|
| 73 | A1_wGenCfg_NOTMFM EQU (1<<3) ; Not MFM encoded
|
---|
| 74 | A1_wGenCfg_SOFTSECT EQU (1<<2) ; Soft sectored
|
---|
| 75 | A1_wGenCfg_HARDSECT EQU (1<<1) ; Hard sectored
|
---|
| 76 |
|
---|
| 77 | ; ATA-1 Word 49, Capabilities
|
---|
| 78 | A1_wCaps_LBA EQU (1<<9) ; LBA supported
|
---|
| 79 | A1_wCaps_DMA EQU (1<<8) ; DMA supported
|
---|
| 80 |
|
---|
| 81 | ; ATA-1 Word 53, Fields
|
---|
| 82 | A1_wFields_54to58 EQU (1<<0) ; The fields reported in words 54-58 are valid
|
---|
| 83 |
|
---|
| 84 | ; ATA-1 Word 59 high byte, Block mode flags
|
---|
| 85 | A1_bBlockFlgs_VALID EQU (1<<0) ; Multiple sector setting (bBlockSel) is valid
|
---|
| 86 |
|
---|
| 87 |
|
---|
| 88 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 89 |
|
---|
| 90 | ; ATA-2 Drive Information struct
|
---|
| 91 | ; F = Fixed value
|
---|
| 92 | ; V = Variable value
|
---|
| 93 | ; R = Reserved word
|
---|
| 94 | ; X = Vendor specific word
|
---|
| 95 | struc ATA2
|
---|
| 96 | .wGenCfg resw 1 ; 0F, General configuration bit-significant information
|
---|
| 97 | .wCylCnt resw 1 ; 1F, Number of logical cylinders
|
---|
| 98 | resw 1 ; 2R
|
---|
| 99 | .wHeadCnt resw 1 ; 3F, Number of logical heads
|
---|
| 100 | resw 1 ; 4X
|
---|
| 101 | resw 1 ; 5X
|
---|
| 102 | .wSPT resw 1 ; 6F, Number of logical sectors per track
|
---|
| 103 | resw 3 ; 7...9X
|
---|
| 104 | .strSerial resb 20 ; 10...19F, Serial number (20 ASCII characters, 0000h=not specified)
|
---|
| 105 | resw 1 ; 20X
|
---|
| 106 | resw 1 ; 21X
|
---|
| 107 | .wEccCnt resw 1 ; 22F, # of ECC bytes avail on read/write long cmds (0000h=not spec'd)
|
---|
| 108 | .strFirmW resb 8 ; 23...26F, Firmware revision (8 ASCII characters, 0000h=not specified)
|
---|
| 109 | .strModel resb 40 ; 27...46F, Model number (40 ASCII characters, 0000h=not specified)
|
---|
| 110 | .bBlckSize resb 1 ; 47[0-7]F, Maximum number of sectors that can be transferred
|
---|
| 111 | ; per interrupt on read and write multiple commands
|
---|
| 112 | ; (00h=Read/write multiple commands not implemented)
|
---|
| 113 | resb 1 ; 47[8-15]X
|
---|
| 114 | resw 1 ; 48R
|
---|
| 115 | .wCaps resw 1 ; 49FRX, Capabilities
|
---|
| 116 | resw 1 ; 50R
|
---|
| 117 | resb 1 ; 51[0-7]X
|
---|
| 118 | .bPIOTiming resb 1 ; 51[8-15]F, PIO data transfer cycle timing mode
|
---|
| 119 | resb 1 ; 52[0-7]X
|
---|
| 120 | .bDMATiming resb 1 ; 52[8-15]F, DMA data transfer cycle timing mode
|
---|
| 121 | .wFields resw 1 ; 53FVR, Field (next words) validity bits
|
---|
| 122 |
|
---|
| 123 | ; Words 54-58 are valid only if bit0 is set in .wFields
|
---|
| 124 | .wCurCyls resw 1 ; 54V, Number of current logical cylinders
|
---|
| 125 | .wCurHeads resw 1 ; 55V, Number of current logical heads
|
---|
| 126 | .wCurSPT resw 1 ; 56V, Number of current logical sectors per track
|
---|
| 127 | .dwCurSCnt resd 1 ; 57...58V, Current capacity in sectors
|
---|
| 128 |
|
---|
| 129 | ; Words 59-63 are always valid
|
---|
| 130 | .bBlockSel resb 1 ; 59[0-7]V, Current setting for number of sectors that
|
---|
| 131 | ; can be transferred per interrupt on R/W multiple command
|
---|
| 132 | .bBlockFlgs resb 1 ; 59[8-15]VR, bit 0 set if Multiple sector setting is valid
|
---|
| 133 | .dwLBACnt resd 1 ; 60...61F, Total number of user addressable sectors (LBA mode only)
|
---|
| 134 | .bSDMASupp resb 1 ; 62[0-7]F, Single word DMA transfer modes supported
|
---|
| 135 | .bSDMAAct resb 1 ; 62[8-15]V, Single word DMA transfer mode active
|
---|
| 136 | .bMDMASupp resb 1 ; 63[0-7]F, Multiword DMA transfer modes supported
|
---|
| 137 | .bMDMAAct resb 1 ; 63[8-15]V, Multiword DMA transfer mode active
|
---|
| 138 |
|
---|
| 139 | ; Words 64-70 are valid only if bit1 is set in .wFields (ATA2+)
|
---|
| 140 | .bPIOSupp resb 1 ; 64[0-7]F, Advanced PIO Transfer Modes Supported
|
---|
| 141 | resb 1 ; 64[8-15]R
|
---|
| 142 | .wMDMAMinCy resw 1 ; 65F, Minimum Multiword DMA Transfer Cycle Time Per Word
|
---|
| 143 | .wMDMARecCy resw 1 ; 66F, Manufacturers Recommended Multiword DMA Transfer Cycle Time
|
---|
| 144 | .wPIOMinCy resw 1 ; 67F, Minimum PIO Transfer Cycle Time Without Flow Control
|
---|
| 145 | .wPIOMinCyF resw 1 ; 68F, Minimum PIO Transfer Cycle Time With IORDY Flow Control
|
---|
| 146 | endstruc
|
---|
| 147 |
|
---|
| 148 | ; ATA-2 Word 0, General configuration
|
---|
| 149 | A2_wGenCfg_NONMAG EQU (1<<15) ; Reserved for non-magnetic drives
|
---|
| 150 | A2_wGenCfg_REMOVABLE EQU (1<<7) ; Removable media device
|
---|
| 151 | A2_wGenCfg_FIXED EQU (1<<6) ; Not removable controller and/or device
|
---|
| 152 |
|
---|
| 153 | ; ATA-1 Word 49, Capabilities
|
---|
| 154 | A2_wCaps_TIMER EQU (1<<13) ; Standby timer values as specified in this standard are supported
|
---|
| 155 | A2_wCaps_IORDY EQU (1<<11) ; IORDY supported
|
---|
| 156 | A2_wCaps_CANDISIORDY EQU (1<<10) ; IORDY can be disabled
|
---|
| 157 | A2_wCaps_LBA EQU (1<<9) ; LBA supported
|
---|
| 158 | A2_wCaps_DMA EQU (1<<8) ; DMA supported
|
---|
| 159 |
|
---|
| 160 | ; ATA-2 Word 53, Fields
|
---|
| 161 | A2_wFields_54to58 EQU (1<<0) ; The fields reported in words 54-58 are valid
|
---|
| 162 | A2_wFields_64to70 EQU (1<<1) ; The fields reported in words 64-70 are valid
|
---|
| 163 |
|
---|
| 164 | ; ATA-2 Word 59 high byte, Block mode flags
|
---|
| 165 | A2_bBlockFlgs_VALID EQU (1<<0) ; Multiple sector setting (bBlockSel) is valid
|
---|
| 166 |
|
---|
| 167 |
|
---|
| 168 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 169 |
|
---|
| 170 | ; ATA-6 Drive Information struct
|
---|
| 171 | ; F = Fixed value
|
---|
| 172 | ; V = Variable value
|
---|
| 173 | ; R = Reserved word
|
---|
| 174 | ; X = Vendor specific word
|
---|
| 175 | struc ATA6
|
---|
| 176 | .wGenCfg resw 1 ; 0F, General configuration bit-significant information
|
---|
| 177 | resw 1 ; 1X, Obsolete (Number of logical cylinders)
|
---|
| 178 | resw 1 ; 2V, Specific configuration
|
---|
| 179 | resw 1 ; 3X, Obsolete (Number of logical heads)
|
---|
| 180 | resw 1 ; 4X
|
---|
| 181 | resw 1 ; 5X
|
---|
| 182 | resw 1 ; 6X, Obsolete (Number of logical sectors per track)
|
---|
| 183 | resw 2 ; 7...8V, Reserved for assignment by the CompactFlash Association
|
---|
| 184 | resw 1 ; 9X
|
---|
| 185 | .strSerial resb 20 ; 10...19F, Serial number (20 ASCII characters, 0000h=not specified)
|
---|
| 186 | resw 1 ; 20X
|
---|
| 187 | resw 1 ; 21X
|
---|
| 188 | resw 1 ; 22X, Obsolete (# of ECC bytes avail on read/write long cmds (0000h=not spec'd))
|
---|
| 189 | .strFirmW resb 8 ; 23...26F, Firmware revision (8 ASCII characters, 0000h=not specified)
|
---|
| 190 | .strModel resb 40 ; 27...46F, Model number (40 ASCII characters, 0000h=not specified)
|
---|
| 191 | .bBlckSize resb 1 ; 47[0-7]F, Maximum number of sectors that can be transferred
|
---|
| 192 | ; per interrupt on read and write multiple commands
|
---|
| 193 | ; (00h=Read/write multiple commands not implemented)
|
---|
| 194 | resb 1 ; 47[8-15]F, 80h
|
---|
| 195 | resw 1 ; 48R
|
---|
| 196 | .wCaps resw 1 ; 49FX, Capabilities
|
---|
| 197 | .wCapsHigh resw 1 ; 50FX, Capabilities 2
|
---|
| 198 | resw 1 ; 51X, Obsolete (PIO data transfer cycle timing mode)
|
---|
| 199 | resw 1 ; 52X, Obsolete (DMA data transfer cycle timing mode)
|
---|
| 200 | .wFields resw 1 ; 53FX, Field (next words) validity bits
|
---|
| 201 |
|
---|
| 202 | ; Words 54-58 are valid only if bit0 is set in .wFields
|
---|
| 203 | resw 1 ; 54X, Obsolete (Number of current logical cylinders)
|
---|
| 204 | resw 1 ; 55X, Obsolete (Number of current logical heads)
|
---|
| 205 | resw 1 ; 56X, Obsolete (Number of current logical sectors per track)
|
---|
| 206 | resd 1 ; 57...58X, Obsolete (Current capacity in sectors)
|
---|
| 207 |
|
---|
| 208 | ; Words 59-63 are always valid
|
---|
| 209 | .bBlockSel resb 1 ; 59[0-7]V, Current setting for number of sectors that
|
---|
| 210 | ; can be transferred per interrupt on R/W multiple command
|
---|
| 211 | .bBlockFlgs resb 1 ; 59[8-15]VR, bit 0 set if Multiple sector setting is valid
|
---|
| 212 | .dwLBACnt resd 1 ; 60...61F, Total number of user addressable sectors (LBA-28)
|
---|
| 213 | resb 1 ; 62[0-7]X, Obsolete (Single word DMA transfer modes supported)
|
---|
| 214 | resb 1 ; 62[8-15]X, Obsolete (Single word DMA transfer mode active)
|
---|
| 215 | .wMDMA resw 1 ; 63FV, Multiword DMA transfer modes supported and active
|
---|
| 216 |
|
---|
| 217 | ; Words 64-70 are valid only if bit1 is set in .wFields (ATA2+)
|
---|
| 218 | .bPIOSupp resb 1 ; 64[0-7]F, Advanced PIO Transfer Modes Supported
|
---|
| 219 | resb 1 ; 64[8-15]R
|
---|
| 220 | .wMDMAMinCy resw 1 ; 65F, Minimum Multiword DMA Transfer Cycle Time Per Word
|
---|
| 221 | .wMDMARecCy resw 1 ; 66F, Manufacturers Recommended Multiword DMA Transfer Cycle Time
|
---|
| 222 | .wPIOMinCy resw 1 ; 67F, Minimum PIO Transfer Cycle Time Without Flow Control
|
---|
| 223 | .wPIOMinCyF resw 1 ; 68F, Minimum PIO Transfer Cycle Time With IORDY Flow Control
|
---|
| 224 | resw 71-69 ; 69...70R
|
---|
| 225 |
|
---|
| 226 | ; Words 71...74 are reserved for IDENTIFY PACKET DEVICE command
|
---|
| 227 | resw 75-71 ; 71...74R
|
---|
| 228 |
|
---|
| 229 | .wQueue resw 1 ; 75[0-4]F, Maximum queue depth - 1
|
---|
| 230 | resw 80-76 ; 76...79R
|
---|
| 231 |
|
---|
| 232 | .wMajorVer resw 1 ; 80F, Major Version Number
|
---|
| 233 | .wMinorVer resw 1 ; 81F, Minor Version Number
|
---|
| 234 | .wSetSup82 resw 1 ; 82F, Command set supported
|
---|
| 235 | .wSetSup83 resw 1 ; 83F, Command sets supported
|
---|
| 236 | .wSetSup84 resw 1 ; 84F, Command set / Feature supported extension
|
---|
| 237 | .wEnFor82 resw 1 ; 85FV, Command set / feature enabled (for word 82)
|
---|
| 238 | .wEnFor83 resw 1 ; 86FV, Command set / feature enabled (for word 83)
|
---|
| 239 | .wEnFor84 resw 1 ; 87FV, Command set / feature enabled (for word 84)
|
---|
| 240 |
|
---|
| 241 | ; Word 88 is valid only if bit2 is set in .wFields (word 53)
|
---|
| 242 | .wUDMA resw 1 ; 88FV, Ultra DMA Mode support
|
---|
| 243 |
|
---|
| 244 | .wEraseTime resw 1 ; 89F, Time required for security erase unit completion
|
---|
| 245 | .wEnhErTime resw 1 ; 90F, Time required for Enhanced security erase completion
|
---|
| 246 | .wCurPower resw 1 ; 91V, Current advanced power management value
|
---|
| 247 | .wPWRev resw 1 ; 92V, Master Password Revision Code
|
---|
| 248 | .wReset resw 1 ; 93FV, Hardware reset result
|
---|
| 249 | .bCurAcous resb 1 ; 94[0-7]V, Current automatic acoustic management value
|
---|
| 250 | .bRecAcous resb 1 ; 94[8-15]V, Vendors recommended acoustic management value
|
---|
| 251 | resw 100-95 ; 95...99R
|
---|
| 252 | .qwLBACnt resb 8 ; 100...103V, Total number of user addressable sectors (LBA48)
|
---|
| 253 | resw 127-104 ; 104...126R
|
---|
| 254 | .wRMSN resw 1 ; 127F, Removable Media Status Notification feature set support
|
---|
| 255 | .wSecurity resw 1 ; 128FV, Security Status
|
---|
[277] | 256 | resw 160-129 ; 129...157X, Vendor Specific
|
---|
[3] | 257 | .wCFAPower resw 1 ; 160FV, CFA Power Mode 1
|
---|
| 258 | resw 176-161 ; 161...175R, Reserved for assignment by the CompactFlash Association
|
---|
| 259 | .strMediaSr resw 206-176 ; 176...205V, Current media serial number
|
---|
| 260 | resw 255-206 ; 206...254R
|
---|
| 261 | .bSignature resb 1 ; 255[0-7]X, Signature
|
---|
| 262 | .bChecksum resb 1 ; 255[8-15]X, Checksum
|
---|
| 263 | endstruc
|
---|
| 264 |
|
---|
| 265 | ; ATA-6 Word 0, General configuration
|
---|
| 266 | A6_wGenCfg_REMOVABLE EQU (1<<7) ; Removable media device
|
---|
| 267 | A6_wGenCfg_INCOMPLETE EQU (1<<2) ; Response incomplete
|
---|
| 268 |
|
---|
| 269 | ; ATA-6 Word 49, Capabilities
|
---|
| 270 | A6_wCaps_TIMER EQU (1<<13) ; Standby timer values as specified in this standard are supported
|
---|
| 271 | A6_wCaps_IORDY EQU (1<<11) ; IORDY supported
|
---|
| 272 | A6_wCaps_CANDISIORDY EQU (1<<10) ; IORDY can be disabled
|
---|
| 273 | A6_wCaps_LBA EQU (1<<9) ; LBA supported
|
---|
| 274 | A6_wCaps_DMA EQU (1<<8) ; DMA supported
|
---|
| 275 |
|
---|
| 276 | ; ATA-6 Word 53, Fields
|
---|
| 277 | A6_wFields_88 EQU (1<<2) ; The fields reported in word 88 are valid
|
---|
| 278 | A6_wFields_64to70 EQU (1<<1) ; The fields reported in words 64-70 are valid
|
---|
| 279 |
|
---|
| 280 | ; ATA-6 Word 59 high byte, Block mode flags
|
---|
| 281 | A6_bBlockFlgs_VALID EQU (1<<0) ; Multiple sector setting (bBlockSel) is valid
|
---|
| 282 |
|
---|
| 283 | ; ATA-6 Word 63, Multiword DMA Mode
|
---|
| 284 | A6_wMDMA_MODE2_SELECTED EQU (1<<10) ; Multiword DMA mode 2 is selected
|
---|
| 285 | A6_wMDMA_MODE1_SELECTED EQU (1<<9) ; Multiword DMA mode 1 is selected
|
---|
| 286 | A6_wMDMA_MODE0_SELECTED EQU (1<<8) ; Multiword DMA mode 0 is selected
|
---|
| 287 | A6_wMDMA_MODE2_SUPRTD EQU (1<<2) ; Multiword DMA mode 2 and below are supported
|
---|
| 288 | A6_wMDMA_MODE1_SUPRTD EQU (1<<1) ; Multiword DMA mode 1 and below are supported
|
---|
| 289 | A6_wMDMA_MODE0_SUPRTD EQU (1<<0) ; Multiword DMA mode 0 is supported
|
---|
| 290 |
|
---|
| 291 | ; ATA-6 Word 80, Major version number
|
---|
| 292 | A6_wMajorVer_ATA6 EQU (1<<6)
|
---|
| 293 | A6_wMajorVer_ATA5 EQU (1<<5)
|
---|
| 294 | A6_wMajorVer_ATA4 EQU (1<<4)
|
---|
| 295 | A6_wMajorVer_ATA3 EQU (1<<3)
|
---|
| 296 |
|
---|
| 297 | ; ATA-6 Word 82, Command set supported
|
---|
| 298 | A6_wSetSup82_NOP EQU (1<<14) ; NOP command supported
|
---|
| 299 | A6_wSetSup82_RDBUFF EQU (1<<13) ; READ BUFFER command supported
|
---|
| 300 | A6_wSetSup82_WRBUFF EQU (1<<12) ; WRITE BUFFER command supported
|
---|
| 301 | A6_wSetSup82_PROT_AREA EQU (1<<10) ; Host Protected Area feature set supported
|
---|
| 302 | A6_wSetSup82_DEV_RESET EQU (1<<9) ; DEVICE RESET command supported
|
---|
| 303 | A6_wSetSup82_SERVICE EQU (1<<8) ; SERVICE interrupt supported
|
---|
| 304 | A6_wSetSup82_RELEASE EQU (1<<7) ; Release interrupt supported
|
---|
| 305 | A6_wSetSup82_LOOKAHEAD EQU (1<<6) ; Look-ahead supported
|
---|
| 306 | A6_wSetSup82_WRCACHE EQU (1<<5) ; Write cache supported
|
---|
| 307 | A6_wSetSup82_POWERMAN EQU (1<<3) ; Power Management feature set supported
|
---|
| 308 | A6_wSetSup82_REM_MEDIA EQU (1<<2) ; Removable Media feature set supported
|
---|
| 309 | A6_wSetSup82_SECURITY EQU (1<<1) ; Security Mode feature set supported
|
---|
| 310 | A6_wSetSup82_SMART EQU (1<<0) ; SMART feature set supported
|
---|
| 311 |
|
---|
| 312 | ; ATA-6 Word 83, Command sets supported
|
---|
| 313 | A6_wSetSup83_FLUSH_EXT EQU (1<<13) ; FLUSH CACHE EXT command supported
|
---|
| 314 | A6_wSetSup83_FLUSH EQU (1<<12) ; FLUSH CACHE command supported
|
---|
| 315 | A6_wSetSup83_CFG EQU (1<<11) ; Device Configuration Overlay feature set supported
|
---|
| 316 | A6_wSetSup83_LBA48 EQU (1<<10) ; 48-bit LBA feature set supported
|
---|
| 317 | A6_wSetSup83_ACOUSTIC EQU (1<<9) ; Automatic Acoustic Management feature set supported
|
---|
| 318 | A6_wSetSup83_SET_MAX EQU (1<<8) ; SET MAX security extension supported
|
---|
| 319 | A6_wSetSup83_FEATURES EQU (1<<6) ; SET FEATURES subcommand required to spinup after power-up
|
---|
| 320 | A6_wSetSup83_POWERUP EQU (1<<5) ; Power-Up In Standby feature set supported
|
---|
| 321 | A6_wSetSup83_RMSN EQU (1<<4) ; Removable Media Status Notification feature set supported
|
---|
| 322 | A6_wSetSup83_APM EQU (1<<3) ; Advanced Power Management feature set supported
|
---|
| 323 | A6_wSetSup83_CFA EQU (1<<2) ; CFA feature set supported
|
---|
| 324 | A6_wSetSup83_DMAQUEUED EQU (1<<1) ; READ/WRITE DMA QUEUED supported
|
---|
| 325 | A6_wSetSup83_MICROCODE EQU (1<<0) ; DOWNLOAD MICROCODE command supported
|
---|
| 326 |
|
---|
| 327 | ; ATA-6 Word 84, Command set/feature supported extension
|
---|
| 328 | A6_wSetSup84_GENLOG EQU (1<<5) ; General Purpose Logging feature set supported
|
---|
| 329 | A6_wSetSup84_MEDIAPASS EQU (1<<3) ; Media Card Pass Through Command feature set supported
|
---|
| 330 | A6_wSetSup84_MEDIASER EQU (1<<2) ; Media serial number supported
|
---|
| 331 | A6_wSetSup84_SMARTTEST EQU (1<<1) ; SMART self-test supported
|
---|
| 332 | A6_wSetSup84_SMARTLOG EQU (1<<0) ; SMART error logging supported
|
---|
| 333 |
|
---|
| 334 | ; ATA-6 Word 85, Command set/feature enabled (supported by word 82)
|
---|
| 335 | A6_wEnFor82_NOP EQU (1<<14) ; NOP command enabled
|
---|
| 336 | A6_wEnFor82_RDBUFF EQU (1<<13) ; READ BUFFER command enabled
|
---|
| 337 | A6_wEnFor82_WRBUFF EQU (1<<12) ; WRITE BUFFER command enabled
|
---|
| 338 | A6_wEnFor82_PROT_AREA EQU (1<<10) ; Host Protected Area feature set enabled
|
---|
| 339 | A6_wEnFor82_DEV_RESET EQU (1<<9) ; DEVICE RESET command enabled
|
---|
| 340 | A6_wEnFor82_SERVICE EQU (1<<8) ; SERVICE interrupt enabled
|
---|
| 341 | A6_wEnFor82_RELEASE EQU (1<<7) ; Release interrupt enabled
|
---|
| 342 | A6_wEnFor82_LOOKAHEAD EQU (1<<6) ; Look-ahead enabled
|
---|
| 343 | A6_wEnFor82_WRCACHE EQU (1<<5) ; Write cache enabled
|
---|
| 344 | A6_wEnFor82_POWERMAN EQU (1<<3) ; Power Management feature set enabled
|
---|
| 345 | A6_wEnFor82_REM_MEDIA EQU (1<<2) ; Removable Media feature set enabled
|
---|
| 346 | A6_wEnFor82_SECURITY EQU (1<<1) ; Security Mode feature set enabled
|
---|
| 347 | A6_wEnFor82_SMART EQU (1<<0) ; SMART feature set enabled
|
---|
| 348 |
|
---|
| 349 | ; ATA-6 Word 86, Command set/feature enabled (supported by word 83)
|
---|
| 350 | A6_wEnFor83_FLUSH_EXT EQU (1<<13) ; FLUSH CACHE EXT command supported
|
---|
| 351 | A6_wEnFor83_FLUSH EQU (1<<12) ; FLUSH CACHE command supported
|
---|
| 352 | A6_wEnFor83_CFG EQU (1<<11) ; Device Configuration Overlay supported
|
---|
| 353 | A6_wEnFor83_LBA48 EQU (1<<10) ; 48-bit LBA feature set supported
|
---|
| 354 | A6_wEnFor83_ACOUSTIC EQU (1<<9) ; Automatic Acoustic Management feature set enabled
|
---|
| 355 | A6_wEnFor83_SET_MAX EQU (1<<8) ; SET MAX security extension enabled by SET MAX SET PASSWORD
|
---|
| 356 | A6_wEnFor83_FEATURES EQU (1<<6) ; SET FEATURES subcommand required to spinup after power-up
|
---|
| 357 | A6_wEnFor83_POWERUP EQU (1<<5) ; Power-Up In Standby feature set enabled
|
---|
| 358 | A6_wEnFor83_RMSN EQU (1<<4) ; Removable Media Status Notification feature set enabled
|
---|
| 359 | A6_wEnFor83_APM EQU (1<<3) ; Advanced Power Management feature set enabled
|
---|
| 360 | A6_wEnFor83_CFA EQU (1<<2) ; CFA feature set enabled
|
---|
| 361 | A6_wEnFor83_DMAQUEUED EQU (1<<1) ; READ/WRITE DMA QUEUED supported
|
---|
| 362 | A6_wEnFor83_MICROCODE EQU (1<<0) ; DOWNLOAD MICROCODE command supported
|
---|
| 363 |
|
---|
| 364 | ; ATA-6 Word 87, Command set/feature default
|
---|
| 365 | A6_wEnFor84_GENLOG EQU (1<<5) ; General Purpose Logging feature set supported
|
---|
| 366 | A6_wEnFor84_MEDIAPASS EQU (1<<3) ; Media Card Pass Through Command feature set enabled
|
---|
| 367 | A6_wEnFor84_MEDIASER EQU (1<<2) ; Media serial number is valid
|
---|
| 368 | A6_wEnFor84_SMARTTEST EQU (1<<1) ; SMART self-test supported
|
---|
| 369 | A6_wEnFor84_SMARTLOG EQU (1<<0) ; SMART error logging supported
|
---|
| 370 |
|
---|
| 371 | ; ATA-6 Word 88, Ultra DMA Mode
|
---|
| 372 | A6_wUDMA_MODE5_SELECTED EQU (1<<13) ; Ultra DMA mode 5 is selected
|
---|
| 373 | A6_wUDMA_MODE4_SELECTED EQU (1<<12) ; Ultra DMA mode 4 is selected
|
---|
| 374 | A6_wUDMA_MODE3_SELECTED EQU (1<<11) ; Ultra DMA mode 3 is selected
|
---|
| 375 | A6_wUDMA_MODE2_SELECTED EQU (1<<10) ; Ultra DMA mode 2 is selected
|
---|
| 376 | A6_wUDMA_MODE1_SELECTED EQU (1<<9) ; Ultra DMA mode 1 is selected
|
---|
| 377 | A6_wUDMA_MODE0_SELECTED EQU (1<<8) ; Ultra DMA mode 0 is selected
|
---|
| 378 | A6_wUDMA_MODE5_SUPRTD EQU (1<<5) ; Ultra DMA mode 5 and below are supported
|
---|
| 379 | A6_wUDMA_MODE4_SUPRTD EQU (1<<4) ; Ultra DMA mode 4 and below are supported
|
---|
| 380 | A6_wUDMA_MODE3_SUPRTD EQU (1<<3) ; Ultra DMA mode 3 and below are supported
|
---|
| 381 | A6_wUDMA_MODE2_SUPRTD EQU (1<<2) ; Ultra DMA mode 2 and below are supported
|
---|
| 382 | A6_wUDMA_MODE1_SUPRTD EQU (1<<1) ; Ultra DMA mode 1 and below are supported
|
---|
| 383 | A6_wUDMA_MODE0_SUPRTD EQU (1<<0) ; Ultra DMA mode 0 is supported
|
---|
| 384 |
|
---|
| 385 | ; ATA-6 Word 93, Hardware reset result
|
---|
| 386 | A6_wReset_CBLID_BELOW EQU (1<<13) ; Device detected CBLID- above ViH
|
---|
| 387 | A6_wReset_DEV1_PDIAG EQU (1<<11) ; Device 1 asserted PDIAG-
|
---|
| 388 | A6_wReset_DEV0_RESP_D1 EQU (1<<6) ; Device 0 responds when Device 1 is selected
|
---|
| 389 | A6_wReset_DEV0_DASP EQU (1<<5) ; Device 0 detected the assertion of DASP-
|
---|
| 390 | A6_wReset_DEV0_PDIAG EQU (1<<4) ; Device 0 detected the assertion of PDIAG
|
---|
| 391 | A6_wReset_DEV0_PASSED EQU (1<<3) ; Device 0 passed diagnostics
|
---|
| 392 | A6_wReset_MASK_DEV1_DETERMINE EQU ((1<<10)|(1<<9)) ; These bits indicate how Device 1 determined the device number
|
---|
| 393 | A6_wReset_MASK_DEV0_DETERMINE EQU ((1<<2)|(1<<1)) ; These bits indicate how Device 0 determined the device number:
|
---|
| 394 | A6_wReset_RESERVED EQU 00b
|
---|
| 395 | A6_wReset_JUMPER EQU 01b ; a jumper was used
|
---|
| 396 | A6_wReset_CSEL EQU 10b ; the CSEL signal was used
|
---|
| 397 | A6_wReset_UNKNOWN EQU 11b ; some other method was used or the method is unknown
|
---|
| 398 |
|
---|
| 399 | ; ATA-6 Word 127, Removable Media Status Notification feature set support
|
---|
| 400 | A6_wRMSN_SUPPORTED EQU (1<<0) ; Removable Media Status Notification feature supported
|
---|
| 401 |
|
---|
| 402 | ; ATA-6 Word 128, Security status
|
---|
| 403 | A6_wSecurity_MAX EQU (1<<8) ; Security level 0 = High, 1 = Maximum
|
---|
| 404 | A6_wSecurity_ENH_ERASE EQU (1<<5) ; Enhanced security erase supported
|
---|
| 405 | A6_wSecurity_EXPIRED EQU (1<<4) ; Security count expired
|
---|
| 406 | A6_wSecurity_FROZEN EQU (1<<3) ; Security frozen
|
---|
| 407 | A6_wSecurity_LOCKED EQU (1<<2) ; Security locked
|
---|
| 408 | A6_wSecurity_ENABLED EQU (1<<1) ; Security enabled
|
---|
| 409 | A6_wSecurity_SUPPORTED EQU (1<<0) ; Security supported
|
---|
| 410 |
|
---|
| 411 | ; ATA-6 Word 160, CFA Power Mode 1
|
---|
| 412 | A6_wCFAPower_WORDSUPP EQU (1<<15) ; Word 160 supported
|
---|
| 413 | A6_wCFAPower_REQUIRED EQU (1<<13) ; CFA power mode 1 is required for one or more commands implemented by the device
|
---|
| 414 | A6_wCFAPower_DISABLED EQU (1<<12) ; CFA power mode 1 disabled
|
---|
| 415 | A6_wCFAPower_MASK_mA EQU 0FFFh ; Maximum current in mA
|
---|
| 416 |
|
---|
| 417 |
|
---|
| 418 | %endif ; ATA_ID_INC
|
---|