source: mainline/uspace/srv/bd/ata_bd/ata_bd.h@ 3f29834

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3f29834 was 1e4cada, checked in by Martin Decky <martin@…>, 16 years ago

rename fibril_sync.[ch] to fibril_synch.[ch]

  • Property mode set to 100644
File size: 6.3 KB
Line 
1/*
2 * Copyright (c) 2009 Jiri Svoboda
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 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - 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 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup bd
30 * @{
31 */
32/** @file
33 */
34
35#ifndef __ATA_BD_H__
36#define __ATA_BD_H__
37
38#include <sys/types.h>
39#include <fibril_synch.h>
40#include <string.h>
41
42enum {
43 CTL_READ_START = 0,
44 CTL_WRITE_START = 1,
45};
46
47enum {
48 STATUS_FAILURE = 0
49};
50
51enum {
52 MAX_DISKS = 2
53};
54
55/** ATA Command Register Block. */
56typedef union {
57 /* Read/Write */
58 struct {
59 uint16_t data_port;
60 uint8_t sector_count;
61 uint8_t sector_number;
62 uint8_t cylinder_low;
63 uint8_t cylinder_high;
64 uint8_t drive_head;
65 uint8_t pad_rw0;
66 };
67
68 /* Read Only */
69 struct {
70 uint8_t pad_ro0;
71 uint8_t error;
72 uint8_t pad_ro1[5];
73 uint8_t status;
74 };
75
76 /* Write Only */
77 struct {
78 uint8_t pad_wo0;
79 uint8_t features;
80 uint8_t pad_wo1[5];
81 uint8_t command;
82 };
83} ata_cmd_t;
84
85typedef union {
86 /* Read */
87 struct {
88 uint8_t pad0[6];
89 uint8_t alt_status;
90 uint8_t drive_address;
91 };
92
93 /* Write */
94 struct {
95 uint8_t pad1[6];
96 uint8_t device_control;
97 uint8_t pad2;
98 };
99} ata_ctl_t;
100
101enum devctl_bits {
102 DCR_SRST = 0x04, /**< Software Reset */
103 DCR_nIEN = 0x02 /**< Interrupt Enable (negated) */
104};
105
106enum status_bits {
107 SR_BSY = 0x80, /**< Busy */
108 SR_DRDY = 0x40, /**< Drive Ready */
109 SR_DWF = 0x20, /**< Drive Write Fault */
110 SR_DSC = 0x10, /**< Drive Seek Complete */
111 SR_DRQ = 0x08, /**< Data Request */
112 SR_CORR = 0x04, /**< Corrected Data */
113 SR_IDX = 0x02, /**< Index */
114 SR_ERR = 0x01 /**< Error */
115};
116
117enum drive_head_bits {
118 DHR_LBA = 0x40, /**< Use LBA addressing mode */
119 DHR_DRV = 0x10 /**< Select device 1 */
120};
121
122enum error_bits {
123 ER_BBK = 0x80, /**< Bad Block Detected */
124 ER_UNC = 0x40, /**< Uncorrectable Data Error */
125 ER_MC = 0x20, /**< Media Changed */
126 ER_IDNF = 0x10, /**< ID Not Found */
127 ER_MCR = 0x08, /**< Media Change Request */
128 ER_ABRT = 0x04, /**< Aborted Command */
129 ER_TK0NF = 0x02, /**< Track 0 Not Found */
130 ER_AMNF = 0x01 /**< Address Mark Not Found */
131};
132
133enum ata_command {
134 CMD_READ_SECTORS = 0x20,
135 CMD_READ_SECTORS_EXT = 0x24,
136 CMD_WRITE_SECTORS = 0x30,
137 CMD_WRITE_SECTORS_EXT = 0x34,
138 CMD_IDENTIFY_DRIVE = 0xEC
139};
140
141/** Timeout definitions. Unit is 10 ms. */
142enum ata_timeout {
143 TIMEOUT_PROBE = 100, /* 1 s */
144 TIMEOUT_BSY = 100, /* 1 s */
145 TIMEOUT_DRDY = 1000 /* 10 s */
146};
147
148/** Data returned from @c identify command. */
149typedef struct {
150 uint16_t gen_conf;
151 uint16_t cylinders;
152 uint16_t _res2;
153 uint16_t heads;
154 uint16_t _vs4;
155 uint16_t _vs5;
156 uint16_t sectors;
157 uint16_t _vs7;
158 uint16_t _vs8;
159 uint16_t _vs9;
160
161 uint16_t serial_number[10];
162 uint16_t _vs20;
163 uint16_t _vs21;
164 uint16_t vs_bytes;
165 uint16_t firmware_rev[4];
166 uint16_t model_name[20];
167
168 uint16_t max_rw_multiple;
169 uint16_t _res48;
170 uint16_t caps;
171 uint16_t _res50;
172 uint16_t pio_timing;
173 uint16_t dma_timing;
174
175 uint16_t validity;
176 uint16_t cur_cyl;
177 uint16_t cur_heads;
178 uint16_t cur_sectors;
179 uint16_t cur_capacity0;
180 uint16_t cur_capacity1;
181 uint16_t mss;
182 uint16_t total_lba28_0;
183 uint16_t total_lba28_1;
184 uint16_t sw_dma;
185 uint16_t mw_dma;
186 uint16_t pio_modes;
187 uint16_t min_mw_dma_cycle;
188 uint16_t rec_mw_dma_cycle;
189 uint16_t min_raw_pio_cycle;
190 uint16_t min_iordy_pio_cycle;
191
192 uint16_t _res69;
193 uint16_t _res70;
194 uint16_t _res71;
195 uint16_t _res72;
196 uint16_t _res73;
197 uint16_t _res74;
198
199 uint16_t queue_depth;
200 uint16_t _res76[1 + 79 - 76];
201 uint16_t version_maj;
202 uint16_t version_min;
203 uint16_t cmd_set0;
204 uint16_t cmd_set1;
205 uint16_t csf_sup_ext;
206 uint16_t csf_enabled0;
207 uint16_t csf_enabled1;
208 uint16_t csf_default;
209 uint16_t udma;
210
211 uint16_t _res89[1 + 99 - 89];
212
213 /* Total number of blocks in LBA-48 addressing */
214 uint16_t total_lba48_0;
215 uint16_t total_lba48_1;
216 uint16_t total_lba48_2;
217 uint16_t total_lba48_3;
218
219 /* Note: more fields are defined in ATA/ATAPI-7 */
220 uint16_t _res104[1 + 127 - 104];
221 uint16_t _vs128[1 + 159 - 128];
222 uint16_t _res160[1 + 255 - 160];
223} identify_data_t;
224
225enum ata_caps {
226 cap_iordy = 0x0800,
227 cap_iordy_cbd = 0x0400,
228 cap_lba = 0x0200,
229 cap_dma = 0x0100
230};
231
232/** Bits of @c identify_data_t.cmd_set1 */
233enum ata_cs1 {
234 cs1_addr48 = 0x0400 /**< 48-bit address feature set */
235};
236
237/** Block addressing mode. */
238enum addr_mode {
239 am_chs, /**< CHS block addressing */
240 am_lba28, /**< LBA-28 block addressing */
241 am_lba48 /**< LBA-48 block addressing */
242};
243
244/** Block coordinates */
245typedef struct {
246 /** Addressing mode used */
247 enum addr_mode amode;
248
249 union {
250 /** CHS coordinates */
251 struct {
252 uint8_t sector;
253 uint8_t cyl_lo;
254 uint8_t cyl_hi;
255 };
256 /** LBA coordinates */
257 struct {
258 uint8_t c0;
259 uint8_t c1;
260 uint8_t c2;
261 uint8_t c3;
262 uint8_t c4;
263 uint8_t c5;
264 };
265 };
266
267 /** Lower 4 bits for device/head register */
268 uint8_t h;
269} block_coord_t;
270
271typedef struct {
272 bool present;
273 enum addr_mode amode;
274
275 /*
276 * Geometry. Only valid if operating in CHS mode.
277 */
278 struct {
279 unsigned heads;
280 unsigned cylinders;
281 unsigned sectors;
282 } geom;
283
284 uint64_t blocks;
285
286 char model[STR_BOUNDS(40) + 1];
287
288 fibril_mutex_t lock;
289 dev_handle_t dev_handle;
290} disk_t;
291
292#endif
293
294/** @}
295 */
Note: See TracBrowser for help on using the repository browser.