VirtualBox

source: vbox/trunk/include/VBox/ata.h@ 73768

Last change on this file since 73768 was 69181, checked in by vboxsync, 7 years ago

include/VBox/: A couple of license adjustments and other scm cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.0 KB
Line 
1/* $Id: ata.h 69181 2017-10-23 18:13:56Z vboxsync $ */
2/** @file
3 * VBox storage devices: ATA/ATAPI declarations
4 */
5
6/*
7 * Copyright (C) 2006-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_ata_h
28#define ___VBox_ata_h
29
30
31/* Bits of HD_STATUS */
32#define ATA_STAT_ERR 0x01
33#define ATA_STAT_INDEX 0x02
34#define ATA_STAT_ECC 0x04 /* Corrected error */
35#define ATA_STAT_DRQ 0x08
36#define ATA_STAT_SEEK 0x10
37#define ATA_STAT_SRV 0x10
38#define ATA_STAT_WRERR 0x20
39#define ATA_STAT_READY 0x40
40#define ATA_STAT_BUSY 0x80
41
42/* Bits for HD_ERROR */
43#define MARK_ERR 0x01 /* Bad address mark */
44#define TRK0_ERR 0x02 /* couldn't find track 0 */
45#define ABRT_ERR 0x04 /* Command aborted */
46#define MCR_ERR 0x08 /* media change request */
47#define ID_ERR 0x10 /* ID field not found */
48#define MC_ERR 0x20 /* media changed */
49#define ECC_ERR 0x40 /* Uncorrectable ECC error */
50#define BBD_ERR 0x80 /* pre-EIDE meaning: block marked bad */
51#define ICRC_ERR 0x80 /* new meaning: CRC error during transfer */
52
53/* Bits for uATARegDevCtl. */
54#define ATA_DEVCTL_DISABLE_IRQ 0x02
55#define ATA_DEVCTL_RESET 0x04
56#define ATA_DEVCTL_HOB 0x80
57
58
59/* ATA/ATAPI Commands (as of ATA/ATAPI-8 draft T13/1699D Revision 3a).
60 * Please keep this in sync with g_apszATACmdNames. */
61typedef enum ATACMD
62{
63 ATA_NOP = 0x00,
64 ATA_CFA_REQUEST_EXTENDED_ERROR_CODE = 0x03,
65 ATA_DATA_SET_MANAGEMENT = 0x06,
66 ATA_DEVICE_RESET = 0x08,
67 ATA_RECALIBRATE = 0x10,
68 ATA_READ_SECTORS = 0x20,
69 ATA_READ_SECTORS_WITHOUT_RETRIES = 0x21,
70 ATA_READ_LONG = 0x22,
71 ATA_READ_LONG_WITHOUT_RETRIES = 0x23,
72 ATA_READ_SECTORS_EXT = 0x24,
73 ATA_READ_DMA_EXT = 0x25,
74 ATA_READ_DMA_QUEUED_EXT = 0x26,
75 ATA_READ_NATIVE_MAX_ADDRESS_EXT = 0x27,
76 ATA_READ_MULTIPLE_EXT = 0x29,
77 ATA_READ_STREAM_DMA_EXT = 0x2a,
78 ATA_READ_STREAM_EXT = 0x2b,
79 ATA_READ_LOG_EXT = 0x2f,
80 ATA_WRITE_SECTORS = 0x30,
81 ATA_WRITE_SECTORS_WITHOUT_RETRIES = 0x31,
82 ATA_WRITE_LONG = 0x32,
83 ATA_WRITE_LONG_WITHOUT_RETRIES = 0x33,
84 ATA_WRITE_SECTORS_EXT = 0x34,
85 ATA_WRITE_DMA_EXT = 0x35,
86 ATA_WRITE_DMA_QUEUED_EXT = 0x36,
87 ATA_SET_MAX_ADDRESS_EXT = 0x37,
88 ATA_CFA_WRITE_SECTORS_WITHOUT_ERASE = 0x38,
89 ATA_WRITE_MULTIPLE_EXT = 0x39,
90 ATA_WRITE_STREAM_DMA_EXT = 0x3a,
91 ATA_WRITE_STREAM_EXT = 0x3b,
92 ATA_WRITE_VERIFY = 0x3c,
93 ATA_WRITE_DMA_FUA_EXT = 0x3d,
94 ATA_WRITE_DMA_QUEUED_FUA_EXT = 0x3e,
95 ATA_WRITE_LOG_EXT = 0x3f,
96 ATA_READ_VERIFY_SECTORS = 0x40,
97 ATA_READ_VERIFY_SECTORS_WITHOUT_RETRIES = 0x41,
98 ATA_READ_VERIFY_SECTORS_EXT = 0x42,
99 ATA_WRITE_UNCORRECTABLE_EXT = 0x45,
100 ATA_READ_LOG_DMA_EXT = 0x47,
101 ATA_FORMAT_TRACK = 0x50,
102 ATA_CONFIGURE_STREAM = 0x51,
103 ATA_WRITE_LOG_DMA_EXT = 0x57,
104 ATA_TRUSTED_RECEIVE = 0x5c,
105 ATA_TRUSTED_RECEIVE_DMA = 0x5d,
106 ATA_TRUSTED_SEND = 0x5e,
107 ATA_TRUSTED_SEND_DMA = 0x5f,
108 ATA_READ_FPDMA_QUEUED = 0x60,
109 ATA_WRITE_FPDMA_QUEUED = 0x61,
110 ATA_SEEK = 0x70,
111 ATA_CFA_TRANSLATE_SECTOR = 0x87,
112 ATA_EXECUTE_DEVICE_DIAGNOSTIC = 0x90,
113 ATA_INITIALIZE_DEVICE_PARAMETERS = 0x91,
114 ATA_DOWNLOAD_MICROCODE = 0x92,
115 ATA_STANDBY_IMMEDIATE__ALT = 0x94,
116 ATA_IDLE_IMMEDIATE__ALT = 0x95,
117 ATA_STANDBY__ALT = 0x96,
118 ATA_IDLE__ALT = 0x97,
119 ATA_CHECK_POWER_MODE__ALT = 0x98,
120 ATA_SLEEP__ALT = 0x99,
121 ATA_PACKET = 0xa0,
122 ATA_IDENTIFY_PACKET_DEVICE = 0xa1,
123 ATA_SERVICE = 0xa2,
124 ATA_SMART = 0xb0,
125 ATA_DEVICE_CONFIGURATION_OVERLAY = 0xb1,
126 ATA_NV_CACHE = 0xb6,
127 ATA_CFA_ERASE_SECTORS = 0xc0,
128 ATA_READ_MULTIPLE = 0xc4,
129 ATA_WRITE_MULTIPLE = 0xc5,
130 ATA_SET_MULTIPLE_MODE = 0xc6,
131 ATA_READ_DMA_QUEUED = 0xc7,
132 ATA_READ_DMA = 0xc8,
133 ATA_READ_DMA_WITHOUT_RETRIES = 0xc9,
134 ATA_WRITE_DMA = 0xca,
135 ATA_WRITE_DMA_WITHOUT_RETRIES = 0xcb,
136 ATA_WRITE_DMA_QUEUED = 0xcc,
137 ATA_CFA_WRITE_MULTIPLE_WITHOUT_ERASE = 0xcd,
138 ATA_WRITE_MULTIPLE_FUA_EXT = 0xce,
139 ATA_CHECK_MEDIA_CARD_TYPE = 0xd1,
140 ATA_GET_MEDIA_STATUS = 0xda,
141 ATA_ACKNOWLEDGE_MEDIA_CHANGE = 0xdb,
142 ATA_BOOT_POST_BOOT = 0xdc,
143 ATA_BOOT_PRE_BOOT = 0xdd,
144 ATA_MEDIA_LOCK = 0xde,
145 ATA_MEDIA_UNLOCK = 0xdf,
146 ATA_STANDBY_IMMEDIATE = 0xe0,
147 ATA_IDLE_IMMEDIATE = 0xe1,
148 ATA_STANDBY = 0xe2,
149 ATA_IDLE = 0xe3,
150 ATA_READ_BUFFER = 0xe4,
151 ATA_CHECK_POWER_MODE = 0xe5,
152 ATA_SLEEP = 0xe6,
153 ATA_FLUSH_CACHE = 0xe7,
154 ATA_WRITE_BUFFER = 0xe8,
155 ATA_WRITE_SAME = 0xe9,
156 ATA_FLUSH_CACHE_EXT = 0xea,
157 ATA_IDENTIFY_DEVICE = 0xec,
158 ATA_MEDIA_EJECT = 0xed,
159 ATA_IDENTIFY_DMA = 0xee,
160 ATA_SET_FEATURES = 0xef,
161 ATA_SECURITY_SET_PASSWORD = 0xf1,
162 ATA_SECURITY_UNLOCK = 0xf2,
163 ATA_SECURITY_ERASE_PREPARE = 0xf3,
164 ATA_SECURITY_ERASE_UNIT = 0xf4,
165 ATA_SECURITY_FREEZE_LOCK = 0xf5,
166 ATA_SECURITY_DISABLE_PASSWORD = 0xf6,
167 ATA_READ_NATIVE_MAX_ADDRESS = 0xf8,
168 ATA_SET_MAX = 0xf9
169} ATACMD;
170
171
172#define ATA_MODE_MDMA 0x20
173#define ATA_MODE_UDMA 0x40
174
175
176#define ATA_TRANSFER_ID(thismode, maxspeed, currmode) \
177 ( ((1 << (maxspeed + 1)) - 1) \
178 | ((((thismode ^ currmode) & 0xf8) == 0) ? 1 << ((currmode & 0x07) + 8) : 0))
179
180/**
181 * Length of the ATA VPD data (without termination)
182 */
183#define ATA_SERIAL_NUMBER_LENGTH 20
184#define ATA_FIRMWARE_REVISION_LENGTH 8
185#define ATA_MODEL_NUMBER_LENGTH 40
186
187/** Mask to get the LBA value from a LBA range. */
188#define ATA_RANGE_LBA_MASK UINT64_C(0xffffffffffff)
189/** Mas to get the length value from a LBA range. */
190#define ATA_RANGE_LENGTH_MASK UINT64_C(0xffff000000000000)
191/** Returns the length of the range in sectors. */
192#define ATA_RANGE_LENGTH_GET(val) (((val) & ATA_RANGE_LENGTH_MASK) >> 48)
193
194/* ATAPI defines */
195
196#define ATAPI_PACKET_SIZE 12
197
198
199#define ATAPI_INT_REASON_CD 0x01 /* 0 = data transfer */
200#define ATAPI_INT_REASON_IO 0x02 /* 1 = transfer to the host */
201#define ATAPI_INT_REASON_REL 0x04
202#define ATAPI_INT_REASON_TAG_MASK 0xf8
203
204#if defined(LOG_ENABLED) && defined(IN_RING3)
205const char * ATACmdText(uint8_t uCmd);
206#endif
207
208#endif /* !___VBox_ata_h */
209
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use