ide: move restart callback to common code
[qemu.git] / hw / ide / core.c
CommitLineData
5391d806 1/*
38cdea7c 2 * QEMU IDE disk and CD/DVD-ROM Emulator
5fafdf24 3 *
5391d806 4 * Copyright (c) 2003 Fabrice Bellard
201a51fc 5 * Copyright (c) 2006 Openedhand Ltd.
5fafdf24 6 *
5391d806
FB
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
59f2a787 25#include <hw/hw.h>
0d09e41a 26#include <hw/i386/pc.h>
a2cb15b0 27#include <hw/pci/pci.h>
0d09e41a 28#include <hw/isa/isa.h>
1de7afc9
PB
29#include "qemu/error-report.h"
30#include "qemu/timer.h"
9c17d615
PB
31#include "sysemu/sysemu.h"
32#include "sysemu/dma.h"
0d09e41a 33#include "hw/block/block.h"
4be74634 34#include "sysemu/block-backend.h"
59f2a787
GH
35
36#include <hw/ide/internal.h>
e8b54394 37
b93af93d
BW
38/* These values were based on a Seagate ST3500418AS but have been modified
39 to make more sense in QEMU */
40static const int smart_attributes[][12] = {
41 /* id, flags, hflags, val, wrst, raw (6 bytes), threshold */
42 /* raw read error rate*/
43 { 0x01, 0x03, 0x00, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06},
44 /* spin up */
45 { 0x03, 0x03, 0x00, 0x64, 0x64, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
46 /* start stop count */
47 { 0x04, 0x02, 0x00, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14},
48 /* remapped sectors */
49 { 0x05, 0x03, 0x00, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24},
50 /* power on hours */
51 { 0x09, 0x03, 0x00, 0x64, 0x64, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
52 /* power cycle count */
53 { 0x0c, 0x03, 0x00, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
54 /* airflow-temperature-celsius */
55 { 190, 0x03, 0x00, 0x45, 0x45, 0x1f, 0x00, 0x1f, 0x1f, 0x00, 0x00, 0x32},
e8b54394
BW
56};
57
ce4b6522 58static int ide_handle_rw_error(IDEState *s, int error, int op);
40c4ed3f 59static void ide_dummy_transfer_stop(IDEState *s);
98087450 60
5391d806
FB
61static void padstr(char *str, const char *src, int len)
62{
63 int i, v;
64 for(i = 0; i < len; i++) {
65 if (*src)
66 v = *src++;
67 else
68 v = ' ';
69b34976 69 str[i^1] = v;
5391d806
FB
70 }
71}
72
67b915a5
FB
73static void put_le16(uint16_t *p, unsigned int v)
74{
0c4ad8dc 75 *p = cpu_to_le16(v);
67b915a5
FB
76}
77
01ce352e
JS
78static void ide_identify_size(IDEState *s)
79{
80 uint16_t *p = (uint16_t *)s->identify_data;
81 put_le16(p + 60, s->nb_sectors);
82 put_le16(p + 61, s->nb_sectors >> 16);
83 put_le16(p + 100, s->nb_sectors);
84 put_le16(p + 101, s->nb_sectors >> 16);
85 put_le16(p + 102, s->nb_sectors >> 32);
86 put_le16(p + 103, s->nb_sectors >> 48);
87}
88
5391d806
FB
89static void ide_identify(IDEState *s)
90{
91 uint16_t *p;
92 unsigned int oldsize;
d353fb72 93 IDEDevice *dev = s->unit ? s->bus->slave : s->bus->master;
5391d806 94
4bf6637d 95 p = (uint16_t *)s->identify_data;
94458802 96 if (s->identify_set) {
4bf6637d 97 goto fill_buffer;
94458802 98 }
4bf6637d 99 memset(p, 0, sizeof(s->identify_data));
94458802 100
67b915a5 101 put_le16(p + 0, 0x0040);
5fafdf24 102 put_le16(p + 1, s->cylinders);
67b915a5
FB
103 put_le16(p + 3, s->heads);
104 put_le16(p + 4, 512 * s->sectors); /* XXX: retired, remove ? */
105 put_le16(p + 5, 512); /* XXX: retired, remove ? */
5fafdf24 106 put_le16(p + 6, s->sectors);
fa879c64 107 padstr((char *)(p + 10), s->drive_serial_str, 20); /* serial number */
67b915a5
FB
108 put_le16(p + 20, 3); /* XXX: retired, remove ? */
109 put_le16(p + 21, 512); /* cache size in sectors */
110 put_le16(p + 22, 4); /* ecc bytes */
47c06340 111 padstr((char *)(p + 23), s->version, 8); /* firmware version */
27e0c9a1 112 padstr((char *)(p + 27), s->drive_model_str, 40); /* model */
3b46e624 113#if MAX_MULT_SECTORS > 1
67b915a5 114 put_le16(p + 47, 0x8000 | MAX_MULT_SECTORS);
5391d806 115#endif
67b915a5 116 put_le16(p + 48, 1); /* dword I/O */
94458802 117 put_le16(p + 49, (1 << 11) | (1 << 9) | (1 << 8)); /* DMA and LBA supported */
67b915a5
FB
118 put_le16(p + 51, 0x200); /* PIO transfer cycle */
119 put_le16(p + 52, 0x200); /* DMA transfer cycle */
94458802 120 put_le16(p + 53, 1 | (1 << 1) | (1 << 2)); /* words 54-58,64-70,88 are valid */
67b915a5
FB
121 put_le16(p + 54, s->cylinders);
122 put_le16(p + 55, s->heads);
123 put_le16(p + 56, s->sectors);
5391d806 124 oldsize = s->cylinders * s->heads * s->sectors;
67b915a5
FB
125 put_le16(p + 57, oldsize);
126 put_le16(p + 58, oldsize >> 16);
5391d806 127 if (s->mult_sectors)
67b915a5 128 put_le16(p + 59, 0x100 | s->mult_sectors);
01ce352e
JS
129 /* *(p + 60) := nb_sectors -- see ide_identify_size */
130 /* *(p + 61) := nb_sectors >> 16 -- see ide_identify_size */
d1b5c20d 131 put_le16(p + 62, 0x07); /* single word dma0-2 supported */
94458802 132 put_le16(p + 63, 0x07); /* mdma0-2 supported */
79d1d331 133 put_le16(p + 64, 0x03); /* pio3-4 supported */
94458802
FB
134 put_le16(p + 65, 120);
135 put_le16(p + 66, 120);
136 put_le16(p + 67, 120);
137 put_le16(p + 68, 120);
d353fb72
CH
138 if (dev && dev->conf.discard_granularity) {
139 put_le16(p + 69, (1 << 14)); /* determinate TRIM behavior */
140 }
ccf0fd8b
RE
141
142 if (s->ncq_queues) {
143 put_le16(p + 75, s->ncq_queues - 1);
144 /* NCQ supported */
145 put_le16(p + 76, (1 << 8));
146 }
147
94458802
FB
148 put_le16(p + 80, 0xf0); /* ata3 -> ata6 supported */
149 put_le16(p + 81, 0x16); /* conforms to ata5 */
a58b8d54
CH
150 /* 14=NOP supported, 5=WCACHE supported, 0=SMART supported */
151 put_le16(p + 82, (1 << 14) | (1 << 5) | 1);
c2ff060f
FB
152 /* 13=flush_cache_ext,12=flush_cache,10=lba48 */
153 put_le16(p + 83, (1 << 14) | (1 << 13) | (1 <<12) | (1 << 10));
95ebda85
FB
154 /* 14=set to 1, 8=has WWN, 1=SMART self test, 0=SMART error logging */
155 if (s->wwn) {
156 put_le16(p + 84, (1 << 14) | (1 << 8) | 0);
157 } else {
158 put_le16(p + 84, (1 << 14) | 0);
159 }
e900a7b7 160 /* 14 = NOP supported, 5=WCACHE enabled, 0=SMART feature set enabled */
4be74634
MA
161 if (blk_enable_write_cache(s->blk)) {
162 put_le16(p + 85, (1 << 14) | (1 << 5) | 1);
163 } else {
164 put_le16(p + 85, (1 << 14) | 1);
165 }
c2ff060f 166 /* 13=flush_cache_ext,12=flush_cache,10=lba48 */
2844bdd9 167 put_le16(p + 86, (1 << 13) | (1 <<12) | (1 << 10));
95ebda85
FB
168 /* 14=set to 1, 8=has WWN, 1=SMART self test, 0=SMART error logging */
169 if (s->wwn) {
170 put_le16(p + 87, (1 << 14) | (1 << 8) | 0);
171 } else {
172 put_le16(p + 87, (1 << 14) | 0);
173 }
94458802
FB
174 put_le16(p + 88, 0x3f | (1 << 13)); /* udma5 set and supported */
175 put_le16(p + 93, 1 | (1 << 14) | 0x2000);
01ce352e
JS
176 /* *(p + 100) := nb_sectors -- see ide_identify_size */
177 /* *(p + 101) := nb_sectors >> 16 -- see ide_identify_size */
178 /* *(p + 102) := nb_sectors >> 32 -- see ide_identify_size */
179 /* *(p + 103) := nb_sectors >> 48 -- see ide_identify_size */
d353fb72 180
57dac7ef
MA
181 if (dev && dev->conf.physical_block_size)
182 put_le16(p + 106, 0x6000 | get_physical_block_exp(&dev->conf));
95ebda85
FB
183 if (s->wwn) {
184 /* LE 16-bit words 111-108 contain 64-bit World Wide Name */
185 put_le16(p + 108, s->wwn >> 48);
186 put_le16(p + 109, s->wwn >> 32);
187 put_le16(p + 110, s->wwn >> 16);
188 put_le16(p + 111, s->wwn);
189 }
d353fb72
CH
190 if (dev && dev->conf.discard_granularity) {
191 put_le16(p + 169, 1); /* TRIM support */
192 }
94458802 193
01ce352e 194 ide_identify_size(s);
94458802 195 s->identify_set = 1;
4bf6637d
JS
196
197fill_buffer:
198 memcpy(s->io_buffer, p, sizeof(s->identify_data));
5391d806
FB
199}
200
201static void ide_atapi_identify(IDEState *s)
202{
203 uint16_t *p;
204
4bf6637d 205 p = (uint16_t *)s->identify_data;
94458802 206 if (s->identify_set) {
4bf6637d 207 goto fill_buffer;
94458802 208 }
4bf6637d 209 memset(p, 0, sizeof(s->identify_data));
94458802 210
5391d806 211 /* Removable CDROM, 50us response, 12 byte packets */
67b915a5 212 put_le16(p + 0, (2 << 14) | (5 << 8) | (1 << 7) | (2 << 5) | (0 << 0));
fa879c64 213 padstr((char *)(p + 10), s->drive_serial_str, 20); /* serial number */
67b915a5
FB
214 put_le16(p + 20, 3); /* buffer type */
215 put_le16(p + 21, 512); /* cache size in sectors */
216 put_le16(p + 22, 4); /* ecc bytes */
47c06340 217 padstr((char *)(p + 23), s->version, 8); /* firmware version */
27e0c9a1 218 padstr((char *)(p + 27), s->drive_model_str, 40); /* model */
67b915a5 219 put_le16(p + 48, 1); /* dword I/O (XXX: should not be set on CDROM) */
8ccad811
FB
220#ifdef USE_DMA_CDROM
221 put_le16(p + 49, 1 << 9 | 1 << 8); /* DMA and LBA supported */
222 put_le16(p + 53, 7); /* words 64-70, 54-58, 88 valid */
d1b5c20d 223 put_le16(p + 62, 7); /* single word dma0-2 supported */
8ccad811 224 put_le16(p + 63, 7); /* mdma0-2 supported */
8ccad811 225#else
67b915a5
FB
226 put_le16(p + 49, 1 << 9); /* LBA supported, no DMA */
227 put_le16(p + 53, 3); /* words 64-70, 54-58 valid */
228 put_le16(p + 63, 0x103); /* DMA modes XXX: may be incorrect */
8ccad811 229#endif
79d1d331 230 put_le16(p + 64, 3); /* pio3-4 supported */
67b915a5
FB
231 put_le16(p + 65, 0xb4); /* minimum DMA multiword tx cycle time */
232 put_le16(p + 66, 0xb4); /* recommended DMA multiword tx cycle time */
233 put_le16(p + 67, 0x12c); /* minimum PIO cycle time without flow control */
234 put_le16(p + 68, 0xb4); /* minimum PIO cycle time with IORDY flow control */
94458802 235
67b915a5
FB
236 put_le16(p + 71, 30); /* in ns */
237 put_le16(p + 72, 30); /* in ns */
5391d806 238
1bdaa28d
AG
239 if (s->ncq_queues) {
240 put_le16(p + 75, s->ncq_queues - 1);
241 /* NCQ supported */
242 put_le16(p + 76, (1 << 8));
243 }
244
67b915a5 245 put_le16(p + 80, 0x1e); /* support up to ATA/ATAPI-4 */
c5fe97e3
JS
246 if (s->wwn) {
247 put_le16(p + 84, (1 << 8)); /* supports WWN for words 108-111 */
248 put_le16(p + 87, (1 << 8)); /* WWN enabled */
249 }
250
8ccad811
FB
251#ifdef USE_DMA_CDROM
252 put_le16(p + 88, 0x3f | (1 << 13)); /* udma5 set and supported */
253#endif
c5fe97e3
JS
254
255 if (s->wwn) {
256 /* LE 16-bit words 111-108 contain 64-bit World Wide Name */
257 put_le16(p + 108, s->wwn >> 48);
258 put_le16(p + 109, s->wwn >> 32);
259 put_le16(p + 110, s->wwn >> 16);
260 put_le16(p + 111, s->wwn);
261 }
262
94458802 263 s->identify_set = 1;
4bf6637d
JS
264
265fill_buffer:
266 memcpy(s->io_buffer, p, sizeof(s->identify_data));
5391d806
FB
267}
268
01ce352e
JS
269static void ide_cfata_identify_size(IDEState *s)
270{
271 uint16_t *p = (uint16_t *)s->identify_data;
272 put_le16(p + 7, s->nb_sectors >> 16); /* Sectors per card */
273 put_le16(p + 8, s->nb_sectors); /* Sectors per card */
274 put_le16(p + 60, s->nb_sectors); /* Total LBA sectors */
275 put_le16(p + 61, s->nb_sectors >> 16); /* Total LBA sectors */
276}
277
201a51fc
AZ
278static void ide_cfata_identify(IDEState *s)
279{
280 uint16_t *p;
281 uint32_t cur_sec;
201a51fc 282
4bf6637d
JS
283 p = (uint16_t *)s->identify_data;
284 if (s->identify_set) {
201a51fc 285 goto fill_buffer;
4bf6637d 286 }
201a51fc
AZ
287 memset(p, 0, sizeof(s->identify_data));
288
289 cur_sec = s->cylinders * s->heads * s->sectors;
290
291 put_le16(p + 0, 0x848a); /* CF Storage Card signature */
292 put_le16(p + 1, s->cylinders); /* Default cylinders */
293 put_le16(p + 3, s->heads); /* Default heads */
294 put_le16(p + 6, s->sectors); /* Default sectors per track */
01ce352e
JS
295 /* *(p + 7) := nb_sectors >> 16 -- see ide_cfata_identify_size */
296 /* *(p + 8) := nb_sectors -- see ide_cfata_identify_size */
fa879c64 297 padstr((char *)(p + 10), s->drive_serial_str, 20); /* serial number */
201a51fc 298 put_le16(p + 22, 0x0004); /* ECC bytes */
47c06340 299 padstr((char *) (p + 23), s->version, 8); /* Firmware Revision */
27e0c9a1 300 padstr((char *) (p + 27), s->drive_model_str, 40);/* Model number */
201a51fc
AZ
301#if MAX_MULT_SECTORS > 1
302 put_le16(p + 47, 0x8000 | MAX_MULT_SECTORS);
303#else
304 put_le16(p + 47, 0x0000);
305#endif
306 put_le16(p + 49, 0x0f00); /* Capabilities */
307 put_le16(p + 51, 0x0002); /* PIO cycle timing mode */
308 put_le16(p + 52, 0x0001); /* DMA cycle timing mode */
309 put_le16(p + 53, 0x0003); /* Translation params valid */
310 put_le16(p + 54, s->cylinders); /* Current cylinders */
311 put_le16(p + 55, s->heads); /* Current heads */
312 put_le16(p + 56, s->sectors); /* Current sectors */
313 put_le16(p + 57, cur_sec); /* Current capacity */
314 put_le16(p + 58, cur_sec >> 16); /* Current capacity */
315 if (s->mult_sectors) /* Multiple sector setting */
316 put_le16(p + 59, 0x100 | s->mult_sectors);
01ce352e
JS
317 /* *(p + 60) := nb_sectors -- see ide_cfata_identify_size */
318 /* *(p + 61) := nb_sectors >> 16 -- see ide_cfata_identify_size */
201a51fc
AZ
319 put_le16(p + 63, 0x0203); /* Multiword DMA capability */
320 put_le16(p + 64, 0x0001); /* Flow Control PIO support */
321 put_le16(p + 65, 0x0096); /* Min. Multiword DMA cycle */
322 put_le16(p + 66, 0x0096); /* Rec. Multiword DMA cycle */
323 put_le16(p + 68, 0x00b4); /* Min. PIO cycle time */
324 put_le16(p + 82, 0x400c); /* Command Set supported */
325 put_le16(p + 83, 0x7068); /* Command Set supported */
326 put_le16(p + 84, 0x4000); /* Features supported */
327 put_le16(p + 85, 0x000c); /* Command Set enabled */
328 put_le16(p + 86, 0x7044); /* Command Set enabled */
329 put_le16(p + 87, 0x4000); /* Features enabled */
330 put_le16(p + 91, 0x4060); /* Current APM level */
331 put_le16(p + 129, 0x0002); /* Current features option */
332 put_le16(p + 130, 0x0005); /* Reassigned sectors */
333 put_le16(p + 131, 0x0001); /* Initial power mode */
334 put_le16(p + 132, 0x0000); /* User signature */
335 put_le16(p + 160, 0x8100); /* Power requirement */
336 put_le16(p + 161, 0x8001); /* CF command set */
337
01ce352e 338 ide_cfata_identify_size(s);
201a51fc
AZ
339 s->identify_set = 1;
340
341fill_buffer:
342 memcpy(s->io_buffer, p, sizeof(s->identify_data));
343}
344
5391d806
FB
345static void ide_set_signature(IDEState *s)
346{
347 s->select &= 0xf0; /* clear head */
348 /* put signature */
349 s->nsector = 1;
350 s->sector = 1;
cd8722bb 351 if (s->drive_kind == IDE_CD) {
5391d806
FB
352 s->lcyl = 0x14;
353 s->hcyl = 0xeb;
4be74634 354 } else if (s->blk) {
5391d806
FB
355 s->lcyl = 0;
356 s->hcyl = 0;
357 } else {
358 s->lcyl = 0xff;
359 s->hcyl = 0xff;
360 }
361}
362
d353fb72 363typedef struct TrimAIOCB {
7c84b1b8 364 BlockAIOCB common;
a987ee1f 365 BlockBackend *blk;
d353fb72
CH
366 QEMUBH *bh;
367 int ret;
501378c3 368 QEMUIOVector *qiov;
7c84b1b8 369 BlockAIOCB *aiocb;
501378c3 370 int i, j;
d353fb72
CH
371} TrimAIOCB;
372
7c84b1b8 373static void trim_aio_cancel(BlockAIOCB *acb)
d353fb72
CH
374{
375 TrimAIOCB *iocb = container_of(acb, TrimAIOCB, common);
376
e551c999 377 /* Exit the loop so ide_issue_trim_cb will not continue */
501378c3
PB
378 iocb->j = iocb->qiov->niov - 1;
379 iocb->i = (iocb->qiov->iov[iocb->j].iov_len / 8) - 1;
380
e551c999 381 iocb->ret = -ECANCELED;
501378c3
PB
382
383 if (iocb->aiocb) {
4be74634 384 blk_aio_cancel_async(iocb->aiocb);
e551c999 385 iocb->aiocb = NULL;
501378c3 386 }
d353fb72
CH
387}
388
d7331bed 389static const AIOCBInfo trim_aiocb_info = {
d353fb72 390 .aiocb_size = sizeof(TrimAIOCB),
e551c999 391 .cancel_async = trim_aio_cancel,
d353fb72
CH
392};
393
394static void ide_trim_bh_cb(void *opaque)
395{
396 TrimAIOCB *iocb = opaque;
397
398 iocb->common.cb(iocb->common.opaque, iocb->ret);
399
400 qemu_bh_delete(iocb->bh);
401 iocb->bh = NULL;
8007429a 402 qemu_aio_unref(iocb);
d353fb72
CH
403}
404
501378c3
PB
405static void ide_issue_trim_cb(void *opaque, int ret)
406{
407 TrimAIOCB *iocb = opaque;
408 if (ret >= 0) {
409 while (iocb->j < iocb->qiov->niov) {
410 int j = iocb->j;
411 while (++iocb->i < iocb->qiov->iov[j].iov_len / 8) {
412 int i = iocb->i;
413 uint64_t *buffer = iocb->qiov->iov[j].iov_base;
414
415 /* 6-byte LBA + 2-byte range per entry */
416 uint64_t entry = le64_to_cpu(buffer[i]);
417 uint64_t sector = entry & 0x0000ffffffffffffULL;
418 uint16_t count = entry >> 48;
419
420 if (count == 0) {
421 continue;
422 }
423
424 /* Got an entry! Submit and exit. */
a987ee1f
MA
425 iocb->aiocb = blk_aio_discard(iocb->blk, sector, count,
426 ide_issue_trim_cb, opaque);
501378c3
PB
427 return;
428 }
429
430 iocb->j++;
431 iocb->i = -1;
432 }
433 } else {
434 iocb->ret = ret;
435 }
436
437 iocb->aiocb = NULL;
438 if (iocb->bh) {
439 qemu_bh_schedule(iocb->bh);
440 }
441}
442
4be74634 443BlockAIOCB *ide_issue_trim(BlockBackend *blk,
d353fb72 444 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
097310b5 445 BlockCompletionFunc *cb, void *opaque)
d353fb72
CH
446{
447 TrimAIOCB *iocb;
d353fb72 448
4be74634 449 iocb = blk_aio_get(&trim_aiocb_info, blk, cb, opaque);
a987ee1f 450 iocb->blk = blk;
d353fb72
CH
451 iocb->bh = qemu_bh_new(ide_trim_bh_cb, iocb);
452 iocb->ret = 0;
501378c3
PB
453 iocb->qiov = qiov;
454 iocb->i = -1;
455 iocb->j = 0;
456 ide_issue_trim_cb(iocb, 0);
d353fb72
CH
457 return &iocb->common;
458}
459
5391d806
FB
460static inline void ide_abort_command(IDEState *s)
461{
08ee9e33 462 ide_transfer_stop(s);
5391d806
FB
463 s->status = READY_STAT | ERR_STAT;
464 s->error = ABRT_ERR;
465}
466
5391d806 467/* prepare data transfer and tell what to do after */
33231e0e
KW
468void ide_transfer_start(IDEState *s, uint8_t *buf, int size,
469 EndTransferFunc *end_transfer_func)
5391d806
FB
470{
471 s->end_transfer_func = end_transfer_func;
472 s->data_ptr = buf;
473 s->data_end = buf + size;
40a6238a 474 if (!(s->status & ERR_STAT)) {
7603d156 475 s->status |= DRQ_STAT;
40a6238a 476 }
44635123
PB
477 if (s->bus->dma->ops->start_transfer) {
478 s->bus->dma->ops->start_transfer(s->bus->dma);
479 }
5391d806
FB
480}
481
c7e73adb
PB
482static void ide_cmd_done(IDEState *s)
483{
484 if (s->bus->dma->ops->cmd_done) {
485 s->bus->dma->ops->cmd_done(s->bus->dma);
486 }
487}
488
33231e0e 489void ide_transfer_stop(IDEState *s)
5391d806
FB
490{
491 s->end_transfer_func = ide_transfer_stop;
492 s->data_ptr = s->io_buffer;
493 s->data_end = s->io_buffer;
494 s->status &= ~DRQ_STAT;
c7e73adb 495 ide_cmd_done(s);
5391d806
FB
496}
497
356721ae 498int64_t ide_get_sector(IDEState *s)
5391d806
FB
499{
500 int64_t sector_num;
501 if (s->select & 0x40) {
502 /* lba */
c2ff060f
FB
503 if (!s->lba48) {
504 sector_num = ((s->select & 0x0f) << 24) | (s->hcyl << 16) |
505 (s->lcyl << 8) | s->sector;
506 } else {
507 sector_num = ((int64_t)s->hob_hcyl << 40) |
508 ((int64_t) s->hob_lcyl << 32) |
509 ((int64_t) s->hob_sector << 24) |
510 ((int64_t) s->hcyl << 16) |
511 ((int64_t) s->lcyl << 8) | s->sector;
512 }
5391d806
FB
513 } else {
514 sector_num = ((s->hcyl << 8) | s->lcyl) * s->heads * s->sectors +
c2ff060f 515 (s->select & 0x0f) * s->sectors + (s->sector - 1);
5391d806
FB
516 }
517 return sector_num;
518}
519
356721ae 520void ide_set_sector(IDEState *s, int64_t sector_num)
5391d806
FB
521{
522 unsigned int cyl, r;
523 if (s->select & 0x40) {
c2ff060f
FB
524 if (!s->lba48) {
525 s->select = (s->select & 0xf0) | (sector_num >> 24);
526 s->hcyl = (sector_num >> 16);
527 s->lcyl = (sector_num >> 8);
528 s->sector = (sector_num);
529 } else {
530 s->sector = sector_num;
531 s->lcyl = sector_num >> 8;
532 s->hcyl = sector_num >> 16;
533 s->hob_sector = sector_num >> 24;
534 s->hob_lcyl = sector_num >> 32;
535 s->hob_hcyl = sector_num >> 40;
536 }
5391d806
FB
537 } else {
538 cyl = sector_num / (s->heads * s->sectors);
539 r = sector_num % (s->heads * s->sectors);
540 s->hcyl = cyl >> 8;
541 s->lcyl = cyl;
1b8eb456 542 s->select = (s->select & 0xf0) | ((r / s->sectors) & 0x0f);
5391d806
FB
543 s->sector = (r % s->sectors) + 1;
544 }
545}
546
e162cfb0
AZ
547static void ide_rw_error(IDEState *s) {
548 ide_abort_command(s);
9cdd03a7 549 ide_set_irq(s->bus);
e162cfb0
AZ
550}
551
58ac3211
MA
552static bool ide_sect_range_ok(IDEState *s,
553 uint64_t sector, uint64_t nb_sectors)
554{
555 uint64_t total_sectors;
556
4be74634 557 blk_get_geometry(s->blk, &total_sectors);
58ac3211
MA
558 if (sector > total_sectors || nb_sectors > total_sectors - sector) {
559 return false;
560 }
561 return true;
562}
563
bef0fd59
SH
564static void ide_sector_read_cb(void *opaque, int ret)
565{
566 IDEState *s = opaque;
567 int n;
568
569 s->pio_aiocb = NULL;
570 s->status &= ~BUSY_STAT;
571
0d910cfe
FZ
572 if (ret == -ECANCELED) {
573 return;
574 }
4be74634 575 block_acct_done(blk_get_stats(s->blk), &s->acct);
bef0fd59 576 if (ret != 0) {
fd648f10
PB
577 if (ide_handle_rw_error(s, -ret, IDE_RETRY_PIO |
578 IDE_RETRY_READ)) {
bef0fd59
SH
579 return;
580 }
581 }
582
583 n = s->nsector;
584 if (n > s->req_nb_sectors) {
585 n = s->req_nb_sectors;
586 }
587
588 /* Allow the guest to read the io_buffer */
589 ide_transfer_start(s, s->io_buffer, n * BDRV_SECTOR_SIZE, ide_sector_read);
590
591 ide_set_irq(s->bus);
592
593 ide_set_sector(s, ide_get_sector(s) + n);
594 s->nsector -= n;
36334faf 595 s->io_buffer_offset += 512 * n;
bef0fd59
SH
596}
597
40a6238a 598void ide_sector_read(IDEState *s)
5391d806
FB
599{
600 int64_t sector_num;
bef0fd59 601 int n;
5391d806
FB
602
603 s->status = READY_STAT | SEEK_STAT;
a136e5a8 604 s->error = 0; /* not needed by IDE spec, but needed by Windows */
5391d806
FB
605 sector_num = ide_get_sector(s);
606 n = s->nsector;
bef0fd59 607
5391d806 608 if (n == 0) {
5391d806 609 ide_transfer_stop(s);
bef0fd59
SH
610 return;
611 }
612
613 s->status |= BUSY_STAT;
614
615 if (n > s->req_nb_sectors) {
616 n = s->req_nb_sectors;
617 }
618
5391d806 619#if defined(DEBUG_IDE)
bef0fd59 620 printf("sector=%" PRId64 "\n", sector_num);
5391d806 621#endif
a597e79c 622
58ac3211
MA
623 if (!ide_sect_range_ok(s, sector_num, n)) {
624 ide_rw_error(s);
625 return;
626 }
627
bef0fd59
SH
628 s->iov.iov_base = s->io_buffer;
629 s->iov.iov_len = n * BDRV_SECTOR_SIZE;
630 qemu_iovec_init_external(&s->qiov, &s->iov, 1);
631
4be74634 632 block_acct_start(blk_get_stats(s->blk), &s->acct,
5366d0c8 633 n * BDRV_SECTOR_SIZE, BLOCK_ACCT_READ);
4be74634
MA
634 s->pio_aiocb = blk_aio_readv(s->blk, sector_num, &s->qiov, n,
635 ide_sector_read_cb, s);
5391d806
FB
636}
637
659142ec 638static void dma_buf_commit(IDEState *s, uint32_t tx_bytes)
7aea4412 639{
659142ec
JS
640 if (s->bus->dma->ops->commit_buf) {
641 s->bus->dma->ops->commit_buf(s->bus->dma, tx_bytes);
642 }
1fb8648d 643 qemu_sglist_destroy(&s->sg);
7aea4412
AL
644}
645
0e7ce54c 646void ide_set_inactive(IDEState *s, bool more)
8337606d 647{
40a6238a 648 s->bus->dma->aiocb = NULL;
829b933b 649 if (s->bus->dma->ops->set_inactive) {
0e7ce54c 650 s->bus->dma->ops->set_inactive(s->bus->dma, more);
829b933b 651 }
c7e73adb 652 ide_cmd_done(s);
8337606d
KW
653}
654
356721ae 655void ide_dma_error(IDEState *s)
e162cfb0 656{
659142ec 657 dma_buf_commit(s, 0);
08ee9e33 658 ide_abort_command(s);
0e7ce54c 659 ide_set_inactive(s, false);
9cdd03a7 660 ide_set_irq(s->bus);
e162cfb0
AZ
661}
662
ce4b6522 663static int ide_handle_rw_error(IDEState *s, int error, int op)
428c5705 664{
fd648f10 665 bool is_read = (op & IDE_RETRY_READ) != 0;
4be74634 666 BlockErrorAction action = blk_get_error_action(s->blk, is_read, error);
428c5705 667
a589569f 668 if (action == BLOCK_ERROR_ACTION_STOP) {
40a6238a 669 s->bus->dma->ops->set_unit(s->bus->dma, s->unit);
def93791 670 s->bus->error_status = op;
a589569f 671 } else if (action == BLOCK_ERROR_ACTION_REPORT) {
fd648f10 672 if (op & IDE_RETRY_DMA) {
428c5705 673 ide_dma_error(s);
7aea4412 674 } else {
428c5705 675 ide_rw_error(s);
7aea4412 676 }
428c5705 677 }
4be74634 678 blk_error_action(s->blk, action, is_read, error);
a589569f 679 return action != BLOCK_ERROR_ACTION_IGNORE;
428c5705
AL
680}
681
cd369c46 682void ide_dma_cb(void *opaque, int ret)
98087450 683{
40a6238a 684 IDEState *s = opaque;
8ccad811
FB
685 int n;
686 int64_t sector_num;
038268e2 687 bool stay_active = false;
8ccad811 688
0d910cfe
FZ
689 if (ret == -ECANCELED) {
690 return;
691 }
e162cfb0 692 if (ret < 0) {
fd648f10 693 int op = IDE_RETRY_DMA;
cd369c46 694
4e1e0051 695 if (s->dma_cmd == IDE_DMA_READ)
fd648f10 696 op |= IDE_RETRY_READ;
d353fb72 697 else if (s->dma_cmd == IDE_DMA_TRIM)
fd648f10 698 op |= IDE_RETRY_TRIM;
d353fb72 699
cd369c46 700 if (ide_handle_rw_error(s, -ret, op)) {
ce4b6522
KW
701 return;
702 }
e162cfb0
AZ
703 }
704
8ccad811 705 n = s->io_buffer_size >> 9;
038268e2
KW
706 if (n > s->nsector) {
707 /* The PRDs were longer than needed for this request. Shorten them so
708 * we don't get a negative remainder. The Active bit must remain set
709 * after the request completes. */
710 n = s->nsector;
711 stay_active = true;
712 }
713
8ccad811
FB
714 sector_num = ide_get_sector(s);
715 if (n > 0) {
659142ec
JS
716 assert(s->io_buffer_size == s->sg.size);
717 dma_buf_commit(s, s->io_buffer_size);
8ccad811
FB
718 sector_num += n;
719 ide_set_sector(s, sector_num);
720 s->nsector -= n;
8ccad811
FB
721 }
722
723 /* end of transfer ? */
724 if (s->nsector == 0) {
98087450 725 s->status = READY_STAT | SEEK_STAT;
9cdd03a7 726 ide_set_irq(s->bus);
cd369c46 727 goto eot;
98087450 728 }
8ccad811
FB
729
730 /* launch next transfer */
731 n = s->nsector;
596bb44d 732 s->io_buffer_index = 0;
8ccad811 733 s->io_buffer_size = n * 512;
3251bdcf 734 if (s->bus->dma->ops->prepare_buf(s->bus->dma, ide_cmd_is_read(s)) < 512) {
69c38b8f
KW
735 /* The PRDs were too short. Reset the Active bit, but don't raise an
736 * interrupt. */
72bcca73 737 s->status = READY_STAT | SEEK_STAT;
3251bdcf 738 dma_buf_commit(s, 0);
7aea4412 739 goto eot;
69c38b8f 740 }
cd369c46 741
8ccad811 742#ifdef DEBUG_AIO
4e1e0051
CH
743 printf("ide_dma_cb: sector_num=%" PRId64 " n=%d, cmd_cmd=%d\n",
744 sector_num, n, s->dma_cmd);
8ccad811 745#endif
cd369c46 746
d66168ed
MT
747 if ((s->dma_cmd == IDE_DMA_READ || s->dma_cmd == IDE_DMA_WRITE) &&
748 !ide_sect_range_ok(s, sector_num, n)) {
58ac3211
MA
749 ide_dma_error(s);
750 return;
751 }
752
4e1e0051
CH
753 switch (s->dma_cmd) {
754 case IDE_DMA_READ:
4be74634
MA
755 s->bus->dma->aiocb = dma_blk_read(s->blk, &s->sg, sector_num,
756 ide_dma_cb, s);
4e1e0051
CH
757 break;
758 case IDE_DMA_WRITE:
4be74634
MA
759 s->bus->dma->aiocb = dma_blk_write(s->blk, &s->sg, sector_num,
760 ide_dma_cb, s);
4e1e0051 761 break;
d353fb72 762 case IDE_DMA_TRIM:
4be74634
MA
763 s->bus->dma->aiocb = dma_blk_io(s->blk, &s->sg, sector_num,
764 ide_issue_trim, ide_dma_cb, s,
765 DMA_DIRECTION_TO_DEVICE);
d353fb72 766 break;
cd369c46 767 }
cd369c46
CH
768 return;
769
770eot:
a597e79c 771 if (s->dma_cmd == IDE_DMA_READ || s->dma_cmd == IDE_DMA_WRITE) {
4be74634 772 block_acct_done(blk_get_stats(s->blk), &s->acct);
a597e79c 773 }
0e7ce54c 774 ide_set_inactive(s, stay_active);
98087450
FB
775}
776
4e1e0051 777static void ide_sector_start_dma(IDEState *s, enum ide_dma_cmd dma_cmd)
98087450 778{
8ccad811 779 s->status = READY_STAT | SEEK_STAT | DRQ_STAT | BUSY_STAT;
98087450
FB
780 s->io_buffer_index = 0;
781 s->io_buffer_size = 0;
4e1e0051 782 s->dma_cmd = dma_cmd;
a597e79c
CH
783
784 switch (dma_cmd) {
785 case IDE_DMA_READ:
4be74634 786 block_acct_start(blk_get_stats(s->blk), &s->acct,
5366d0c8 787 s->nsector * BDRV_SECTOR_SIZE, BLOCK_ACCT_READ);
a597e79c
CH
788 break;
789 case IDE_DMA_WRITE:
4be74634 790 block_acct_start(blk_get_stats(s->blk), &s->acct,
5366d0c8 791 s->nsector * BDRV_SECTOR_SIZE, BLOCK_ACCT_WRITE);
a597e79c
CH
792 break;
793 default:
794 break;
795 }
796
4855b576
PB
797 ide_start_dma(s, ide_dma_cb);
798}
799
097310b5 800void ide_start_dma(IDEState *s, BlockCompletionFunc *cb)
4855b576
PB
801{
802 if (s->bus->dma->ops->start_dma) {
803 s->bus->dma->ops->start_dma(s->bus->dma, s, cb);
804 }
98087450
FB
805}
806
a09db21f
FB
807static void ide_sector_write_timer_cb(void *opaque)
808{
809 IDEState *s = opaque;
9cdd03a7 810 ide_set_irq(s->bus);
a09db21f
FB
811}
812
e82dabd8 813static void ide_sector_write_cb(void *opaque, int ret)
5391d806 814{
e82dabd8
SH
815 IDEState *s = opaque;
816 int n;
a597e79c 817
0d910cfe
FZ
818 if (ret == -ECANCELED) {
819 return;
820 }
4be74634 821 block_acct_done(blk_get_stats(s->blk), &s->acct);
428c5705 822
e82dabd8
SH
823 s->pio_aiocb = NULL;
824 s->status &= ~BUSY_STAT;
825
e162cfb0 826 if (ret != 0) {
fd648f10 827 if (ide_handle_rw_error(s, -ret, IDE_RETRY_PIO)) {
428c5705 828 return;
e82dabd8 829 }
e162cfb0
AZ
830 }
831
e82dabd8
SH
832 n = s->nsector;
833 if (n > s->req_nb_sectors) {
834 n = s->req_nb_sectors;
835 }
5391d806 836 s->nsector -= n;
36334faf
JS
837 s->io_buffer_offset += 512 * n;
838
5391d806 839 if (s->nsector == 0) {
292eef5a 840 /* no more sectors to write */
5391d806
FB
841 ide_transfer_stop(s);
842 } else {
e82dabd8
SH
843 int n1 = s->nsector;
844 if (n1 > s->req_nb_sectors) {
5391d806 845 n1 = s->req_nb_sectors;
e82dabd8
SH
846 }
847 ide_transfer_start(s, s->io_buffer, n1 * BDRV_SECTOR_SIZE,
848 ide_sector_write);
5391d806 849 }
e82dabd8 850 ide_set_sector(s, ide_get_sector(s) + n);
3b46e624 851
31c2a146
TS
852 if (win2k_install_hack && ((++s->irq_count % 16) == 0)) {
853 /* It seems there is a bug in the Windows 2000 installer HDD
854 IDE driver which fills the disk with empty logs when the
855 IDE write IRQ comes too early. This hack tries to correct
856 that at the expense of slower write performances. Use this
857 option _only_ to install Windows 2000. You must disable it
858 for normal use. */
bc72ad67
AB
859 timer_mod(s->sector_write_timer,
860 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + (get_ticks_per_sec() / 1000));
f7736b91 861 } else {
9cdd03a7 862 ide_set_irq(s->bus);
31c2a146 863 }
5391d806
FB
864}
865
e82dabd8
SH
866void ide_sector_write(IDEState *s)
867{
868 int64_t sector_num;
869 int n;
870
871 s->status = READY_STAT | SEEK_STAT | BUSY_STAT;
872 sector_num = ide_get_sector(s);
873#if defined(DEBUG_IDE)
874 printf("sector=%" PRId64 "\n", sector_num);
875#endif
876 n = s->nsector;
877 if (n > s->req_nb_sectors) {
878 n = s->req_nb_sectors;
879 }
880
58ac3211
MA
881 if (!ide_sect_range_ok(s, sector_num, n)) {
882 ide_rw_error(s);
883 return;
884 }
885
e82dabd8
SH
886 s->iov.iov_base = s->io_buffer;
887 s->iov.iov_len = n * BDRV_SECTOR_SIZE;
888 qemu_iovec_init_external(&s->qiov, &s->iov, 1);
889
4be74634 890 block_acct_start(blk_get_stats(s->blk), &s->acct,
5366d0c8 891 n * BDRV_SECTOR_SIZE, BLOCK_ACCT_READ);
4be74634
MA
892 s->pio_aiocb = blk_aio_writev(s->blk, sector_num, &s->qiov, n,
893 ide_sector_write_cb, s);
e82dabd8
SH
894}
895
b0484ae4
CH
896static void ide_flush_cb(void *opaque, int ret)
897{
898 IDEState *s = opaque;
899
69f72a22
PB
900 s->pio_aiocb = NULL;
901
0d910cfe
FZ
902 if (ret == -ECANCELED) {
903 return;
904 }
e2bcadad
KW
905 if (ret < 0) {
906 /* XXX: What sector number to set here? */
fd648f10 907 if (ide_handle_rw_error(s, -ret, IDE_RETRY_FLUSH)) {
e2bcadad
KW
908 return;
909 }
910 }
b0484ae4 911
4be74634
MA
912 if (s->blk) {
913 block_acct_done(blk_get_stats(s->blk), &s->acct);
f7f3ff1d 914 }
b0484ae4 915 s->status = READY_STAT | SEEK_STAT;
c7e73adb 916 ide_cmd_done(s);
b0484ae4
CH
917 ide_set_irq(s->bus);
918}
919
40a6238a 920void ide_flush_cache(IDEState *s)
6bcb1a79 921{
4be74634 922 if (s->blk == NULL) {
6bcb1a79 923 ide_flush_cb(s, 0);
b2df7531
KW
924 return;
925 }
926
f68ec837 927 s->status |= BUSY_STAT;
4be74634
MA
928 block_acct_start(blk_get_stats(s->blk), &s->acct, 0, BLOCK_ACCT_FLUSH);
929 s->pio_aiocb = blk_aio_flush(s->blk, ide_flush_cb, s);
6bcb1a79
KW
930}
931
201a51fc
AZ
932static void ide_cfata_metadata_inquiry(IDEState *s)
933{
934 uint16_t *p;
935 uint32_t spd;
936
937 p = (uint16_t *) s->io_buffer;
938 memset(p, 0, 0x200);
939 spd = ((s->mdata_size - 1) >> 9) + 1;
940
941 put_le16(p + 0, 0x0001); /* Data format revision */
942 put_le16(p + 1, 0x0000); /* Media property: silicon */
943 put_le16(p + 2, s->media_changed); /* Media status */
944 put_le16(p + 3, s->mdata_size & 0xffff); /* Capacity in bytes (low) */
945 put_le16(p + 4, s->mdata_size >> 16); /* Capacity in bytes (high) */
946 put_le16(p + 5, spd & 0xffff); /* Sectors per device (low) */
947 put_le16(p + 6, spd >> 16); /* Sectors per device (high) */
948}
949
950static void ide_cfata_metadata_read(IDEState *s)
951{
952 uint16_t *p;
953
954 if (((s->hcyl << 16) | s->lcyl) << 9 > s->mdata_size + 2) {
955 s->status = ERR_STAT;
956 s->error = ABRT_ERR;
957 return;
958 }
959
960 p = (uint16_t *) s->io_buffer;
961 memset(p, 0, 0x200);
962
963 put_le16(p + 0, s->media_changed); /* Media status */
964 memcpy(p + 1, s->mdata_storage + (((s->hcyl << 16) | s->lcyl) << 9),
965 MIN(MIN(s->mdata_size - (((s->hcyl << 16) | s->lcyl) << 9),
966 s->nsector << 9), 0x200 - 2));
967}
968
969static void ide_cfata_metadata_write(IDEState *s)
970{
971 if (((s->hcyl << 16) | s->lcyl) << 9 > s->mdata_size + 2) {
972 s->status = ERR_STAT;
973 s->error = ABRT_ERR;
974 return;
975 }
976
977 s->media_changed = 0;
978
979 memcpy(s->mdata_storage + (((s->hcyl << 16) | s->lcyl) << 9),
980 s->io_buffer + 2,
981 MIN(MIN(s->mdata_size - (((s->hcyl << 16) | s->lcyl) << 9),
982 s->nsector << 9), 0x200 - 2));
983}
984
bd491d6a 985/* called when the inserted state of the media has changed */
7d4b4ba5 986static void ide_cd_change_cb(void *opaque, bool load)
bd491d6a
TS
987{
988 IDEState *s = opaque;
96b8f136 989 uint64_t nb_sectors;
bd491d6a 990
25ad22bc 991 s->tray_open = !load;
4be74634 992 blk_get_geometry(s->blk, &nb_sectors);
bd491d6a 993 s->nb_sectors = nb_sectors;
9118e7f0 994
4b9b7092
AS
995 /*
996 * First indicate to the guest that a CD has been removed. That's
997 * done on the next command the guest sends us.
998 *
67cc61e4 999 * Then we set UNIT_ATTENTION, by which the guest will
4b9b7092
AS
1000 * detect a new CD in the drive. See ide_atapi_cmd() for details.
1001 */
93c8cfd9 1002 s->cdrom_changed = 1;
996faf1a 1003 s->events.new_media = true;
2df0a3a3
PB
1004 s->events.eject_request = false;
1005 ide_set_irq(s->bus);
1006}
1007
1008static void ide_cd_eject_request_cb(void *opaque, bool force)
1009{
1010 IDEState *s = opaque;
1011
1012 s->events.eject_request = true;
1013 if (force) {
1014 s->tray_locked = false;
1015 }
9cdd03a7 1016 ide_set_irq(s->bus);
bd491d6a
TS
1017}
1018
c2ff060f
FB
1019static void ide_cmd_lba48_transform(IDEState *s, int lba48)
1020{
1021 s->lba48 = lba48;
1022
1023 /* handle the 'magic' 0 nsector count conversion here. to avoid
1024 * fiddling with the rest of the read logic, we just store the
1025 * full sector count in ->nsector and ignore ->hob_nsector from now
1026 */
1027 if (!s->lba48) {
1028 if (!s->nsector)
1029 s->nsector = 256;
1030 } else {
1031 if (!s->nsector && !s->hob_nsector)
1032 s->nsector = 65536;
1033 else {
1034 int lo = s->nsector;
1035 int hi = s->hob_nsector;
1036
1037 s->nsector = (hi << 8) | lo;
1038 }
1039 }
1040}
1041
bcbdc4d3 1042static void ide_clear_hob(IDEBus *bus)
c2ff060f
FB
1043{
1044 /* any write clears HOB high bit of device control register */
bcbdc4d3
GH
1045 bus->ifs[0].select &= ~(1 << 7);
1046 bus->ifs[1].select &= ~(1 << 7);
c2ff060f
FB
1047}
1048
356721ae 1049void ide_ioport_write(void *opaque, uint32_t addr, uint32_t val)
caed8802 1050{
bcbdc4d3 1051 IDEBus *bus = opaque;
5391d806
FB
1052
1053#ifdef DEBUG_IDE
1054 printf("IDE: write addr=0x%x val=0x%02x\n", addr, val);
1055#endif
c2ff060f 1056
5391d806 1057 addr &= 7;
fcdd25ab
AL
1058
1059 /* ignore writes to command block while busy with previous command */
bcbdc4d3 1060 if (addr != 7 && (idebus_active_if(bus)->status & (BUSY_STAT|DRQ_STAT)))
fcdd25ab
AL
1061 return;
1062
5391d806
FB
1063 switch(addr) {
1064 case 0:
1065 break;
1066 case 1:
bcbdc4d3 1067 ide_clear_hob(bus);
c45c3d00 1068 /* NOTE: data is written to the two drives */
bcbdc4d3
GH
1069 bus->ifs[0].hob_feature = bus->ifs[0].feature;
1070 bus->ifs[1].hob_feature = bus->ifs[1].feature;
1071 bus->ifs[0].feature = val;
1072 bus->ifs[1].feature = val;
5391d806
FB
1073 break;
1074 case 2:
bcbdc4d3
GH
1075 ide_clear_hob(bus);
1076 bus->ifs[0].hob_nsector = bus->ifs[0].nsector;
1077 bus->ifs[1].hob_nsector = bus->ifs[1].nsector;
1078 bus->ifs[0].nsector = val;
1079 bus->ifs[1].nsector = val;
5391d806
FB
1080 break;
1081 case 3:
bcbdc4d3
GH
1082 ide_clear_hob(bus);
1083 bus->ifs[0].hob_sector = bus->ifs[0].sector;
1084 bus->ifs[1].hob_sector = bus->ifs[1].sector;
1085 bus->ifs[0].sector = val;
1086 bus->ifs[1].sector = val;
5391d806
FB
1087 break;
1088 case 4:
bcbdc4d3
GH
1089 ide_clear_hob(bus);
1090 bus->ifs[0].hob_lcyl = bus->ifs[0].lcyl;
1091 bus->ifs[1].hob_lcyl = bus->ifs[1].lcyl;
1092 bus->ifs[0].lcyl = val;
1093 bus->ifs[1].lcyl = val;
5391d806
FB
1094 break;
1095 case 5:
bcbdc4d3
GH
1096 ide_clear_hob(bus);
1097 bus->ifs[0].hob_hcyl = bus->ifs[0].hcyl;
1098 bus->ifs[1].hob_hcyl = bus->ifs[1].hcyl;
1099 bus->ifs[0].hcyl = val;
1100 bus->ifs[1].hcyl = val;
5391d806
FB
1101 break;
1102 case 6:
c2ff060f 1103 /* FIXME: HOB readback uses bit 7 */
bcbdc4d3
GH
1104 bus->ifs[0].select = (val & ~0x10) | 0xa0;
1105 bus->ifs[1].select = (val | 0x10) | 0xa0;
5391d806 1106 /* select drive */
bcbdc4d3 1107 bus->unit = (val >> 4) & 1;
5391d806
FB
1108 break;
1109 default:
1110 case 7:
1111 /* command */
7cff87ff
AG
1112 ide_exec_cmd(bus, val);
1113 break;
1114 }
1115}
1116
b300337e
KW
1117static bool cmd_nop(IDEState *s, uint8_t cmd)
1118{
1119 return true;
1120}
1121
4286434c
KW
1122static bool cmd_data_set_management(IDEState *s, uint8_t cmd)
1123{
1124 switch (s->feature) {
1125 case DSM_TRIM:
4be74634 1126 if (s->blk) {
4286434c
KW
1127 ide_sector_start_dma(s, IDE_DMA_TRIM);
1128 return false;
1129 }
1130 break;
1131 }
1132
1133 ide_abort_command(s);
1134 return true;
1135}
1136
1c66869a
KW
1137static bool cmd_identify(IDEState *s, uint8_t cmd)
1138{
4be74634 1139 if (s->blk && s->drive_kind != IDE_CD) {
1c66869a
KW
1140 if (s->drive_kind != IDE_CFATA) {
1141 ide_identify(s);
1142 } else {
1143 ide_cfata_identify(s);
1144 }
1145 s->status = READY_STAT | SEEK_STAT;
1146 ide_transfer_start(s, s->io_buffer, 512, ide_transfer_stop);
1147 ide_set_irq(s->bus);
1148 return false;
1149 } else {
1150 if (s->drive_kind == IDE_CD) {
1151 ide_set_signature(s);
1152 }
1153 ide_abort_command(s);
1154 }
1155
1156 return true;
1157}
1158
413860cf
KW
1159static bool cmd_verify(IDEState *s, uint8_t cmd)
1160{
1161 bool lba48 = (cmd == WIN_VERIFY_EXT);
1162
1163 /* do sector number check ? */
1164 ide_cmd_lba48_transform(s, lba48);
1165
1166 return true;
1167}
1168
adf3a2c4
KW
1169static bool cmd_set_multiple_mode(IDEState *s, uint8_t cmd)
1170{
1171 if (s->drive_kind == IDE_CFATA && s->nsector == 0) {
1172 /* Disable Read and Write Multiple */
1173 s->mult_sectors = 0;
1174 } else if ((s->nsector & 0xff) != 0 &&
1175 ((s->nsector & 0xff) > MAX_MULT_SECTORS ||
1176 (s->nsector & (s->nsector - 1)) != 0)) {
1177 ide_abort_command(s);
1178 } else {
1179 s->mult_sectors = s->nsector & 0xff;
1180 }
1181
1182 return true;
1183}
1184
1185static bool cmd_read_multiple(IDEState *s, uint8_t cmd)
1186{
1187 bool lba48 = (cmd == WIN_MULTREAD_EXT);
1188
4be74634 1189 if (!s->blk || !s->mult_sectors) {
adf3a2c4
KW
1190 ide_abort_command(s);
1191 return true;
1192 }
1193
1194 ide_cmd_lba48_transform(s, lba48);
1195 s->req_nb_sectors = s->mult_sectors;
1196 ide_sector_read(s);
1197 return false;
1198}
1199
1200static bool cmd_write_multiple(IDEState *s, uint8_t cmd)
1201{
1202 bool lba48 = (cmd == WIN_MULTWRITE_EXT);
1203 int n;
1204
4be74634 1205 if (!s->blk || !s->mult_sectors) {
adf3a2c4
KW
1206 ide_abort_command(s);
1207 return true;
1208 }
1209
1210 ide_cmd_lba48_transform(s, lba48);
1211
1212 s->req_nb_sectors = s->mult_sectors;
1213 n = MIN(s->nsector, s->req_nb_sectors);
1214
1215 s->status = SEEK_STAT | READY_STAT;
1216 ide_transfer_start(s, s->io_buffer, 512 * n, ide_sector_write);
1217
1218 s->media_changed = 1;
1219
1220 return false;
1221}
1222
0e6498ed
KW
1223static bool cmd_read_pio(IDEState *s, uint8_t cmd)
1224{
1225 bool lba48 = (cmd == WIN_READ_EXT);
1226
1227 if (s->drive_kind == IDE_CD) {
1228 ide_set_signature(s); /* odd, but ATA4 8.27.5.2 requires it */
1229 ide_abort_command(s);
1230 return true;
1231 }
1232
4be74634 1233 if (!s->blk) {
0e6498ed
KW
1234 ide_abort_command(s);
1235 return true;
1236 }
1237
1238 ide_cmd_lba48_transform(s, lba48);
1239 s->req_nb_sectors = 1;
1240 ide_sector_read(s);
1241
1242 return false;
1243}
1244
1245static bool cmd_write_pio(IDEState *s, uint8_t cmd)
1246{
1247 bool lba48 = (cmd == WIN_WRITE_EXT);
1248
4be74634 1249 if (!s->blk) {
0e6498ed
KW
1250 ide_abort_command(s);
1251 return true;
1252 }
1253
1254 ide_cmd_lba48_transform(s, lba48);
1255
1256 s->req_nb_sectors = 1;
1257 s->status = SEEK_STAT | READY_STAT;
1258 ide_transfer_start(s, s->io_buffer, 512, ide_sector_write);
1259
1260 s->media_changed = 1;
1261
1262 return false;
1263}
1264
92a6a6f6
KW
1265static bool cmd_read_dma(IDEState *s, uint8_t cmd)
1266{
1267 bool lba48 = (cmd == WIN_READDMA_EXT);
1268
4be74634 1269 if (!s->blk) {
92a6a6f6
KW
1270 ide_abort_command(s);
1271 return true;
1272 }
1273
1274 ide_cmd_lba48_transform(s, lba48);
1275 ide_sector_start_dma(s, IDE_DMA_READ);
1276
1277 return false;
1278}
1279
1280static bool cmd_write_dma(IDEState *s, uint8_t cmd)
1281{
1282 bool lba48 = (cmd == WIN_WRITEDMA_EXT);
1283
4be74634 1284 if (!s->blk) {
92a6a6f6
KW
1285 ide_abort_command(s);
1286 return true;
1287 }
1288
1289 ide_cmd_lba48_transform(s, lba48);
1290 ide_sector_start_dma(s, IDE_DMA_WRITE);
1291
1292 s->media_changed = 1;
1293
1294 return false;
1295}
1296
9afce429
KW
1297static bool cmd_flush_cache(IDEState *s, uint8_t cmd)
1298{
1299 ide_flush_cache(s);
1300 return false;
1301}
1302
61fdda37
KW
1303static bool cmd_seek(IDEState *s, uint8_t cmd)
1304{
1305 /* XXX: Check that seek is within bounds */
1306 return true;
1307}
1308
63a82e6a
KW
1309static bool cmd_read_native_max(IDEState *s, uint8_t cmd)
1310{
1311 bool lba48 = (cmd == WIN_READ_NATIVE_MAX_EXT);
1312
1313 /* Refuse if no sectors are addressable (e.g. medium not inserted) */
1314 if (s->nb_sectors == 0) {
1315 ide_abort_command(s);
1316 return true;
1317 }
1318
1319 ide_cmd_lba48_transform(s, lba48);
1320 ide_set_sector(s, s->nb_sectors - 1);
1321
1322 return true;
1323}
1324
785f6320
KW
1325static bool cmd_check_power_mode(IDEState *s, uint8_t cmd)
1326{
1327 s->nsector = 0xff; /* device active or idle */
1328 return true;
1329}
1330
ee03398c
KW
1331static bool cmd_set_features(IDEState *s, uint8_t cmd)
1332{
1333 uint16_t *identify_data;
1334
4be74634 1335 if (!s->blk) {
ee03398c
KW
1336 ide_abort_command(s);
1337 return true;
1338 }
1339
1340 /* XXX: valid for CDROM ? */
1341 switch (s->feature) {
1342 case 0x02: /* write cache enable */
4be74634 1343 blk_set_enable_write_cache(s->blk, true);
ee03398c
KW
1344 identify_data = (uint16_t *)s->identify_data;
1345 put_le16(identify_data + 85, (1 << 14) | (1 << 5) | 1);
1346 return true;
1347 case 0x82: /* write cache disable */
4be74634 1348 blk_set_enable_write_cache(s->blk, false);
ee03398c
KW
1349 identify_data = (uint16_t *)s->identify_data;
1350 put_le16(identify_data + 85, (1 << 14) | 1);
1351 ide_flush_cache(s);
1352 return false;
1353 case 0xcc: /* reverting to power-on defaults enable */
1354 case 0x66: /* reverting to power-on defaults disable */
1355 case 0xaa: /* read look-ahead enable */
1356 case 0x55: /* read look-ahead disable */
1357 case 0x05: /* set advanced power management mode */
1358 case 0x85: /* disable advanced power management mode */
1359 case 0x69: /* NOP */
1360 case 0x67: /* NOP */
1361 case 0x96: /* NOP */
1362 case 0x9a: /* NOP */
1363 case 0x42: /* enable Automatic Acoustic Mode */
1364 case 0xc2: /* disable Automatic Acoustic Mode */
1365 return true;
1366 case 0x03: /* set transfer mode */
1367 {
1368 uint8_t val = s->nsector & 0x07;
1369 identify_data = (uint16_t *)s->identify_data;
1370
1371 switch (s->nsector >> 3) {
1372 case 0x00: /* pio default */
1373 case 0x01: /* pio mode */
1374 put_le16(identify_data + 62, 0x07);
1375 put_le16(identify_data + 63, 0x07);
1376 put_le16(identify_data + 88, 0x3f);
1377 break;
1378 case 0x02: /* sigle word dma mode*/
1379 put_le16(identify_data + 62, 0x07 | (1 << (val + 8)));
1380 put_le16(identify_data + 63, 0x07);
1381 put_le16(identify_data + 88, 0x3f);
1382 break;
1383 case 0x04: /* mdma mode */
1384 put_le16(identify_data + 62, 0x07);
1385 put_le16(identify_data + 63, 0x07 | (1 << (val + 8)));
1386 put_le16(identify_data + 88, 0x3f);
1387 break;
1388 case 0x08: /* udma mode */
1389 put_le16(identify_data + 62, 0x07);
1390 put_le16(identify_data + 63, 0x07);
1391 put_le16(identify_data + 88, 0x3f | (1 << (val + 8)));
1392 break;
1393 default:
1394 goto abort_cmd;
1395 }
1396 return true;
1397 }
1398 }
1399
1400abort_cmd:
1401 ide_abort_command(s);
1402 return true;
1403}
1404
ee425c78
KW
1405
1406/*** ATAPI commands ***/
1407
1408static bool cmd_identify_packet(IDEState *s, uint8_t cmd)
1409{
1410 ide_atapi_identify(s);
1411 s->status = READY_STAT | SEEK_STAT;
1412 ide_transfer_start(s, s->io_buffer, 512, ide_transfer_stop);
1413 ide_set_irq(s->bus);
1414 return false;
1415}
1416
1417static bool cmd_exec_dev_diagnostic(IDEState *s, uint8_t cmd)
1418{
1419 ide_set_signature(s);
1420
1421 if (s->drive_kind == IDE_CD) {
1422 s->status = 0; /* ATAPI spec (v6) section 9.10 defines packet
1423 * devices to return a clear status register
1424 * with READY_STAT *not* set. */
850484a2 1425 s->error = 0x01;
ee425c78
KW
1426 } else {
1427 s->status = READY_STAT | SEEK_STAT;
1428 /* The bits of the error register are not as usual for this command!
1429 * They are part of the regular output (this is why ERR_STAT isn't set)
1430 * Device 0 passed, Device 1 passed or not present. */
1431 s->error = 0x01;
1432 ide_set_irq(s->bus);
1433 }
1434
1435 return false;
1436}
1437
1438static bool cmd_device_reset(IDEState *s, uint8_t cmd)
1439{
1440 ide_set_signature(s);
1441 s->status = 0x00; /* NOTE: READY is _not_ set */
1442 s->error = 0x01;
1443
1444 return false;
1445}
1446
1447static bool cmd_packet(IDEState *s, uint8_t cmd)
1448{
1449 /* overlapping commands not supported */
1450 if (s->feature & 0x02) {
1451 ide_abort_command(s);
1452 return true;
1453 }
1454
1455 s->status = READY_STAT | SEEK_STAT;
1456 s->atapi_dma = s->feature & 1;
1457 s->nsector = 1;
1458 ide_transfer_start(s, s->io_buffer, ATAPI_PACKET_SIZE,
1459 ide_atapi_cmd);
1460 return false;
1461}
1462
6b1dd744
KW
1463
1464/*** CF-ATA commands ***/
1465
1466static bool cmd_cfa_req_ext_error_code(IDEState *s, uint8_t cmd)
1467{
1468 s->error = 0x09; /* miscellaneous error */
1469 s->status = READY_STAT | SEEK_STAT;
1470 ide_set_irq(s->bus);
1471
1472 return false;
1473}
1474
1475static bool cmd_cfa_erase_sectors(IDEState *s, uint8_t cmd)
1476{
1477 /* WIN_SECURITY_FREEZE_LOCK has the same ID as CFA_WEAR_LEVEL and is
1478 * required for Windows 8 to work with AHCI */
1479
1480 if (cmd == CFA_WEAR_LEVEL) {
1481 s->nsector = 0;
1482 }
1483
1484 if (cmd == CFA_ERASE_SECTORS) {
1485 s->media_changed = 1;
1486 }
1487
1488 return true;
1489}
1490
1491static bool cmd_cfa_translate_sector(IDEState *s, uint8_t cmd)
1492{
1493 s->status = READY_STAT | SEEK_STAT;
1494
1495 memset(s->io_buffer, 0, 0x200);
1496 s->io_buffer[0x00] = s->hcyl; /* Cyl MSB */
1497 s->io_buffer[0x01] = s->lcyl; /* Cyl LSB */
1498 s->io_buffer[0x02] = s->select; /* Head */
1499 s->io_buffer[0x03] = s->sector; /* Sector */
1500 s->io_buffer[0x04] = ide_get_sector(s) >> 16; /* LBA MSB */
1501 s->io_buffer[0x05] = ide_get_sector(s) >> 8; /* LBA */
1502 s->io_buffer[0x06] = ide_get_sector(s) >> 0; /* LBA LSB */
1503 s->io_buffer[0x13] = 0x00; /* Erase flag */
1504 s->io_buffer[0x18] = 0x00; /* Hot count */
1505 s->io_buffer[0x19] = 0x00; /* Hot count */
1506 s->io_buffer[0x1a] = 0x01; /* Hot count */
1507
1508 ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
1509 ide_set_irq(s->bus);
1510
1511 return false;
1512}
1513
1514static bool cmd_cfa_access_metadata_storage(IDEState *s, uint8_t cmd)
1515{
1516 switch (s->feature) {
1517 case 0x02: /* Inquiry Metadata Storage */
1518 ide_cfata_metadata_inquiry(s);
1519 break;
1520 case 0x03: /* Read Metadata Storage */
1521 ide_cfata_metadata_read(s);
1522 break;
1523 case 0x04: /* Write Metadata Storage */
1524 ide_cfata_metadata_write(s);
1525 break;
1526 default:
1527 ide_abort_command(s);
1528 return true;
1529 }
1530
1531 ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
1532 s->status = 0x00; /* NOTE: READY is _not_ set */
1533 ide_set_irq(s->bus);
1534
1535 return false;
1536}
1537
1538static bool cmd_ibm_sense_condition(IDEState *s, uint8_t cmd)
1539{
1540 switch (s->feature) {
1541 case 0x01: /* sense temperature in device */
1542 s->nsector = 0x50; /* +20 C */
1543 break;
1544 default:
1545 ide_abort_command(s);
1546 return true;
1547 }
1548
1549 return true;
1550}
1551
ff352677
KW
1552
1553/*** SMART commands ***/
1554
1555static bool cmd_smart(IDEState *s, uint8_t cmd)
1556{
1557 int n;
1558
1559 if (s->hcyl != 0xc2 || s->lcyl != 0x4f) {
1560 goto abort_cmd;
1561 }
1562
1563 if (!s->smart_enabled && s->feature != SMART_ENABLE) {
1564 goto abort_cmd;
1565 }
1566
1567 switch (s->feature) {
1568 case SMART_DISABLE:
1569 s->smart_enabled = 0;
1570 return true;
1571
1572 case SMART_ENABLE:
1573 s->smart_enabled = 1;
1574 return true;
1575
1576 case SMART_ATTR_AUTOSAVE:
1577 switch (s->sector) {
1578 case 0x00:
1579 s->smart_autosave = 0;
1580 break;
1581 case 0xf1:
1582 s->smart_autosave = 1;
1583 break;
1584 default:
1585 goto abort_cmd;
1586 }
1587 return true;
1588
1589 case SMART_STATUS:
1590 if (!s->smart_errors) {
1591 s->hcyl = 0xc2;
1592 s->lcyl = 0x4f;
1593 } else {
1594 s->hcyl = 0x2c;
1595 s->lcyl = 0xf4;
1596 }
1597 return true;
1598
1599 case SMART_READ_THRESH:
1600 memset(s->io_buffer, 0, 0x200);
1601 s->io_buffer[0] = 0x01; /* smart struct version */
1602
1603 for (n = 0; n < ARRAY_SIZE(smart_attributes); n++) {
1604 s->io_buffer[2 + 0 + (n * 12)] = smart_attributes[n][0];
1605 s->io_buffer[2 + 1 + (n * 12)] = smart_attributes[n][11];
1606 }
1607
1608 /* checksum */
1609 for (n = 0; n < 511; n++) {
1610 s->io_buffer[511] += s->io_buffer[n];
1611 }
1612 s->io_buffer[511] = 0x100 - s->io_buffer[511];
1613
1614 s->status = READY_STAT | SEEK_STAT;
1615 ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
1616 ide_set_irq(s->bus);
1617 return false;
1618
1619 case SMART_READ_DATA:
1620 memset(s->io_buffer, 0, 0x200);
1621 s->io_buffer[0] = 0x01; /* smart struct version */
1622
1623 for (n = 0; n < ARRAY_SIZE(smart_attributes); n++) {
1624 int i;
1625 for (i = 0; i < 11; i++) {
1626 s->io_buffer[2 + i + (n * 12)] = smart_attributes[n][i];
1627 }
1628 }
1629
1630 s->io_buffer[362] = 0x02 | (s->smart_autosave ? 0x80 : 0x00);
1631 if (s->smart_selftest_count == 0) {
1632 s->io_buffer[363] = 0;
1633 } else {
1634 s->io_buffer[363] =
1635 s->smart_selftest_data[3 +
1636 (s->smart_selftest_count - 1) *
1637 24];
1638 }
1639 s->io_buffer[364] = 0x20;
1640 s->io_buffer[365] = 0x01;
1641 /* offline data collection capacity: execute + self-test*/
1642 s->io_buffer[367] = (1 << 4 | 1 << 3 | 1);
1643 s->io_buffer[368] = 0x03; /* smart capability (1) */
1644 s->io_buffer[369] = 0x00; /* smart capability (2) */
1645 s->io_buffer[370] = 0x01; /* error logging supported */
1646 s->io_buffer[372] = 0x02; /* minutes for poll short test */
1647 s->io_buffer[373] = 0x36; /* minutes for poll ext test */
1648 s->io_buffer[374] = 0x01; /* minutes for poll conveyance */
1649
1650 for (n = 0; n < 511; n++) {
1651 s->io_buffer[511] += s->io_buffer[n];
1652 }
1653 s->io_buffer[511] = 0x100 - s->io_buffer[511];
1654
1655 s->status = READY_STAT | SEEK_STAT;
1656 ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
1657 ide_set_irq(s->bus);
1658 return false;
1659
1660 case SMART_READ_LOG:
1661 switch (s->sector) {
1662 case 0x01: /* summary smart error log */
1663 memset(s->io_buffer, 0, 0x200);
1664 s->io_buffer[0] = 0x01;
1665 s->io_buffer[1] = 0x00; /* no error entries */
1666 s->io_buffer[452] = s->smart_errors & 0xff;
1667 s->io_buffer[453] = (s->smart_errors & 0xff00) >> 8;
1668
1669 for (n = 0; n < 511; n++) {
1670 s->io_buffer[511] += s->io_buffer[n];
1671 }
1672 s->io_buffer[511] = 0x100 - s->io_buffer[511];
1673 break;
1674 case 0x06: /* smart self test log */
1675 memset(s->io_buffer, 0, 0x200);
1676 s->io_buffer[0] = 0x01;
1677 if (s->smart_selftest_count == 0) {
1678 s->io_buffer[508] = 0;
1679 } else {
1680 s->io_buffer[508] = s->smart_selftest_count;
1681 for (n = 2; n < 506; n++) {
1682 s->io_buffer[n] = s->smart_selftest_data[n];
1683 }
1684 }
1685
1686 for (n = 0; n < 511; n++) {
1687 s->io_buffer[511] += s->io_buffer[n];
1688 }
1689 s->io_buffer[511] = 0x100 - s->io_buffer[511];
1690 break;
1691 default:
1692 goto abort_cmd;
1693 }
1694 s->status = READY_STAT | SEEK_STAT;
1695 ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
1696 ide_set_irq(s->bus);
1697 return false;
1698
1699 case SMART_EXECUTE_OFFLINE:
1700 switch (s->sector) {
1701 case 0: /* off-line routine */
1702 case 1: /* short self test */
1703 case 2: /* extended self test */
1704 s->smart_selftest_count++;
1705 if (s->smart_selftest_count > 21) {
940973ae 1706 s->smart_selftest_count = 1;
ff352677
KW
1707 }
1708 n = 2 + (s->smart_selftest_count - 1) * 24;
1709 s->smart_selftest_data[n] = s->sector;
1710 s->smart_selftest_data[n + 1] = 0x00; /* OK and finished */
1711 s->smart_selftest_data[n + 2] = 0x34; /* hour count lsb */
1712 s->smart_selftest_data[n + 3] = 0x12; /* hour count msb */
1713 break;
1714 default:
1715 goto abort_cmd;
1716 }
1717 return true;
1718 }
1719
1720abort_cmd:
1721 ide_abort_command(s);
1722 return true;
1723}
1724
844505b1
MA
1725#define HD_OK (1u << IDE_HD)
1726#define CD_OK (1u << IDE_CD)
1727#define CFA_OK (1u << IDE_CFATA)
1728#define HD_CFA_OK (HD_OK | CFA_OK)
1729#define ALL_OK (HD_OK | CD_OK | CFA_OK)
1730
a0436e92
KW
1731/* Set the Disk Seek Completed status bit during completion */
1732#define SET_DSC (1u << 8)
1733
844505b1 1734/* See ACS-2 T13/2015-D Table B.2 Command codes */
a0436e92
KW
1735static const struct {
1736 /* Returns true if the completion code should be run */
1737 bool (*handler)(IDEState *s, uint8_t cmd);
1738 int flags;
1739} ide_cmd_table[0x100] = {
844505b1 1740 /* NOP not implemented, mandatory for CD */
6b1dd744 1741 [CFA_REQ_EXT_ERROR_CODE] = { cmd_cfa_req_ext_error_code, CFA_OK },
4286434c 1742 [WIN_DSM] = { cmd_data_set_management, ALL_OK },
ee425c78 1743 [WIN_DEVICE_RESET] = { cmd_device_reset, CD_OK },
b300337e 1744 [WIN_RECAL] = { cmd_nop, HD_CFA_OK | SET_DSC},
0e6498ed
KW
1745 [WIN_READ] = { cmd_read_pio, ALL_OK },
1746 [WIN_READ_ONCE] = { cmd_read_pio, ALL_OK },
1747 [WIN_READ_EXT] = { cmd_read_pio, HD_CFA_OK },
92a6a6f6 1748 [WIN_READDMA_EXT] = { cmd_read_dma, HD_CFA_OK },
63a82e6a 1749 [WIN_READ_NATIVE_MAX_EXT] = { cmd_read_native_max, HD_CFA_OK | SET_DSC },
adf3a2c4 1750 [WIN_MULTREAD_EXT] = { cmd_read_multiple, HD_CFA_OK },
0e6498ed
KW
1751 [WIN_WRITE] = { cmd_write_pio, HD_CFA_OK },
1752 [WIN_WRITE_ONCE] = { cmd_write_pio, HD_CFA_OK },
1753 [WIN_WRITE_EXT] = { cmd_write_pio, HD_CFA_OK },
92a6a6f6 1754 [WIN_WRITEDMA_EXT] = { cmd_write_dma, HD_CFA_OK },
0e6498ed 1755 [CFA_WRITE_SECT_WO_ERASE] = { cmd_write_pio, CFA_OK },
adf3a2c4 1756 [WIN_MULTWRITE_EXT] = { cmd_write_multiple, HD_CFA_OK },
0e6498ed 1757 [WIN_WRITE_VERIFY] = { cmd_write_pio, HD_CFA_OK },
413860cf
KW
1758 [WIN_VERIFY] = { cmd_verify, HD_CFA_OK | SET_DSC },
1759 [WIN_VERIFY_ONCE] = { cmd_verify, HD_CFA_OK | SET_DSC },
1760 [WIN_VERIFY_EXT] = { cmd_verify, HD_CFA_OK | SET_DSC },
61fdda37 1761 [WIN_SEEK] = { cmd_seek, HD_CFA_OK | SET_DSC },
6b1dd744 1762 [CFA_TRANSLATE_SECTOR] = { cmd_cfa_translate_sector, CFA_OK },
ee425c78 1763 [WIN_DIAGNOSE] = { cmd_exec_dev_diagnostic, ALL_OK },
b300337e
KW
1764 [WIN_SPECIFY] = { cmd_nop, HD_CFA_OK | SET_DSC },
1765 [WIN_STANDBYNOW2] = { cmd_nop, ALL_OK },
1766 [WIN_IDLEIMMEDIATE2] = { cmd_nop, ALL_OK },
1767 [WIN_STANDBY2] = { cmd_nop, ALL_OK },
1768 [WIN_SETIDLE2] = { cmd_nop, ALL_OK },
785f6320 1769 [WIN_CHECKPOWERMODE2] = { cmd_check_power_mode, ALL_OK | SET_DSC },
b300337e 1770 [WIN_SLEEPNOW2] = { cmd_nop, ALL_OK },
ee425c78
KW
1771 [WIN_PACKETCMD] = { cmd_packet, CD_OK },
1772 [WIN_PIDENTIFY] = { cmd_identify_packet, CD_OK },
ff352677 1773 [WIN_SMART] = { cmd_smart, HD_CFA_OK | SET_DSC },
6b1dd744
KW
1774 [CFA_ACCESS_METADATA_STORAGE] = { cmd_cfa_access_metadata_storage, CFA_OK },
1775 [CFA_ERASE_SECTORS] = { cmd_cfa_erase_sectors, CFA_OK | SET_DSC },
adf3a2c4
KW
1776 [WIN_MULTREAD] = { cmd_read_multiple, HD_CFA_OK },
1777 [WIN_MULTWRITE] = { cmd_write_multiple, HD_CFA_OK },
1778 [WIN_SETMULT] = { cmd_set_multiple_mode, HD_CFA_OK | SET_DSC },
92a6a6f6
KW
1779 [WIN_READDMA] = { cmd_read_dma, HD_CFA_OK },
1780 [WIN_READDMA_ONCE] = { cmd_read_dma, HD_CFA_OK },
1781 [WIN_WRITEDMA] = { cmd_write_dma, HD_CFA_OK },
1782 [WIN_WRITEDMA_ONCE] = { cmd_write_dma, HD_CFA_OK },
adf3a2c4 1783 [CFA_WRITE_MULTI_WO_ERASE] = { cmd_write_multiple, CFA_OK },
b300337e
KW
1784 [WIN_STANDBYNOW1] = { cmd_nop, ALL_OK },
1785 [WIN_IDLEIMMEDIATE] = { cmd_nop, ALL_OK },
1786 [WIN_STANDBY] = { cmd_nop, ALL_OK },
1787 [WIN_SETIDLE1] = { cmd_nop, ALL_OK },
785f6320 1788 [WIN_CHECKPOWERMODE1] = { cmd_check_power_mode, ALL_OK | SET_DSC },
b300337e 1789 [WIN_SLEEPNOW1] = { cmd_nop, ALL_OK },
9afce429
KW
1790 [WIN_FLUSH_CACHE] = { cmd_flush_cache, ALL_OK },
1791 [WIN_FLUSH_CACHE_EXT] = { cmd_flush_cache, HD_CFA_OK },
1c66869a 1792 [WIN_IDENTIFY] = { cmd_identify, ALL_OK },
ee03398c 1793 [WIN_SETFEATURES] = { cmd_set_features, ALL_OK | SET_DSC },
6b1dd744
KW
1794 [IBM_SENSE_CONDITION] = { cmd_ibm_sense_condition, CFA_OK | SET_DSC },
1795 [CFA_WEAR_LEVEL] = { cmd_cfa_erase_sectors, HD_CFA_OK | SET_DSC },
63a82e6a 1796 [WIN_READ_NATIVE_MAX] = { cmd_read_native_max, ALL_OK | SET_DSC },
844505b1
MA
1797};
1798
1799static bool ide_cmd_permitted(IDEState *s, uint32_t cmd)
1800{
1801 return cmd < ARRAY_SIZE(ide_cmd_table)
a0436e92 1802 && (ide_cmd_table[cmd].flags & (1u << s->drive_kind));
844505b1 1803}
7cff87ff
AG
1804
1805void ide_exec_cmd(IDEBus *bus, uint32_t val)
1806{
1807 IDEState *s;
dfe1ea8f 1808 bool complete;
7cff87ff 1809
5391d806 1810#if defined(DEBUG_IDE)
6ef2ba5e 1811 printf("ide: CMD=%02x\n", val);
5391d806 1812#endif
6ef2ba5e 1813 s = idebus_active_if(bus);
66a0a2cb 1814 /* ignore commands to non existent slave */
4be74634 1815 if (s != bus->ifs && !s->blk) {
6ef2ba5e 1816 return;
4be74634 1817 }
c2ff060f 1818
6ef2ba5e
AG
1819 /* Only DEVICE RESET is allowed while BSY or/and DRQ are set */
1820 if ((s->status & (BUSY_STAT|DRQ_STAT)) && val != WIN_DEVICE_RESET)
1821 return;
fcdd25ab 1822
844505b1 1823 if (!ide_cmd_permitted(s, val)) {
dfe1ea8f
KW
1824 ide_abort_command(s);
1825 ide_set_irq(s->bus);
1826 return;
844505b1
MA
1827 }
1828
dfe1ea8f
KW
1829 s->status = READY_STAT | BUSY_STAT;
1830 s->error = 0;
36334faf 1831 s->io_buffer_offset = 0;
a0436e92 1832
dfe1ea8f
KW
1833 complete = ide_cmd_table[val].handler(s, val);
1834 if (complete) {
1835 s->status &= ~BUSY_STAT;
1836 assert(!!s->error == !!(s->status & ERR_STAT));
a0436e92 1837
dfe1ea8f
KW
1838 if ((ide_cmd_table[val].flags & SET_DSC) && !s->error) {
1839 s->status |= SEEK_STAT;
a0436e92
KW
1840 }
1841
c7e73adb 1842 ide_cmd_done(s);
6ef2ba5e 1843 ide_set_irq(s->bus);
6ef2ba5e 1844 }
5391d806
FB
1845}
1846
356721ae 1847uint32_t ide_ioport_read(void *opaque, uint32_t addr1)
5391d806 1848{
bcbdc4d3
GH
1849 IDEBus *bus = opaque;
1850 IDEState *s = idebus_active_if(bus);
5391d806 1851 uint32_t addr;
c2ff060f 1852 int ret, hob;
5391d806
FB
1853
1854 addr = addr1 & 7;
c2ff060f
FB
1855 /* FIXME: HOB readback uses bit 7, but it's always set right now */
1856 //hob = s->select & (1 << 7);
1857 hob = 0;
5391d806
FB
1858 switch(addr) {
1859 case 0:
1860 ret = 0xff;
1861 break;
1862 case 1:
4be74634
MA
1863 if ((!bus->ifs[0].blk && !bus->ifs[1].blk) ||
1864 (s != bus->ifs && !s->blk)) {
c45c3d00 1865 ret = 0;
4be74634 1866 } else if (!hob) {
c45c3d00 1867 ret = s->error;
4be74634 1868 } else {
c2ff060f 1869 ret = s->hob_feature;
4be74634 1870 }
5391d806
FB
1871 break;
1872 case 2:
4be74634 1873 if (!bus->ifs[0].blk && !bus->ifs[1].blk) {
c45c3d00 1874 ret = 0;
4be74634 1875 } else if (!hob) {
c45c3d00 1876 ret = s->nsector & 0xff;
4be74634 1877 } else {
c2ff060f 1878 ret = s->hob_nsector;
4be74634 1879 }
5391d806
FB
1880 break;
1881 case 3:
4be74634 1882 if (!bus->ifs[0].blk && !bus->ifs[1].blk) {
c45c3d00 1883 ret = 0;
4be74634 1884 } else if (!hob) {
c45c3d00 1885 ret = s->sector;
4be74634 1886 } else {
c2ff060f 1887 ret = s->hob_sector;
4be74634 1888 }
5391d806
FB
1889 break;
1890 case 4:
4be74634 1891 if (!bus->ifs[0].blk && !bus->ifs[1].blk) {
c45c3d00 1892 ret = 0;
4be74634 1893 } else if (!hob) {
c45c3d00 1894 ret = s->lcyl;
4be74634 1895 } else {
c2ff060f 1896 ret = s->hob_lcyl;
4be74634 1897 }
5391d806
FB
1898 break;
1899 case 5:
4be74634 1900 if (!bus->ifs[0].blk && !bus->ifs[1].blk) {
c45c3d00 1901 ret = 0;
4be74634 1902 } else if (!hob) {
c45c3d00 1903 ret = s->hcyl;
4be74634 1904 } else {
c2ff060f 1905 ret = s->hob_hcyl;
4be74634 1906 }
5391d806
FB
1907 break;
1908 case 6:
4be74634 1909 if (!bus->ifs[0].blk && !bus->ifs[1].blk) {
c45c3d00 1910 ret = 0;
4be74634 1911 } else {
7ae98627 1912 ret = s->select;
4be74634 1913 }
5391d806
FB
1914 break;
1915 default:
1916 case 7:
4be74634
MA
1917 if ((!bus->ifs[0].blk && !bus->ifs[1].blk) ||
1918 (s != bus->ifs && !s->blk)) {
c45c3d00 1919 ret = 0;
4be74634 1920 } else {
c45c3d00 1921 ret = s->status;
4be74634 1922 }
9cdd03a7 1923 qemu_irq_lower(bus->irq);
5391d806
FB
1924 break;
1925 }
1926#ifdef DEBUG_IDE
1927 printf("ide: read addr=0x%x val=%02x\n", addr1, ret);
1928#endif
1929 return ret;
1930}
1931
356721ae 1932uint32_t ide_status_read(void *opaque, uint32_t addr)
5391d806 1933{
bcbdc4d3
GH
1934 IDEBus *bus = opaque;
1935 IDEState *s = idebus_active_if(bus);
5391d806 1936 int ret;
7ae98627 1937
4be74634
MA
1938 if ((!bus->ifs[0].blk && !bus->ifs[1].blk) ||
1939 (s != bus->ifs && !s->blk)) {
7ae98627 1940 ret = 0;
4be74634 1941 } else {
7ae98627 1942 ret = s->status;
4be74634 1943 }
5391d806
FB
1944#ifdef DEBUG_IDE
1945 printf("ide: read status addr=0x%x val=%02x\n", addr, ret);
1946#endif
1947 return ret;
1948}
1949
356721ae 1950void ide_cmd_write(void *opaque, uint32_t addr, uint32_t val)
5391d806 1951{
bcbdc4d3 1952 IDEBus *bus = opaque;
5391d806
FB
1953 IDEState *s;
1954 int i;
1955
1956#ifdef DEBUG_IDE
1957 printf("ide: write control addr=0x%x val=%02x\n", addr, val);
1958#endif
1959 /* common for both drives */
9cdd03a7 1960 if (!(bus->cmd & IDE_CMD_RESET) &&
5391d806
FB
1961 (val & IDE_CMD_RESET)) {
1962 /* reset low to high */
1963 for(i = 0;i < 2; i++) {
bcbdc4d3 1964 s = &bus->ifs[i];
5391d806
FB
1965 s->status = BUSY_STAT | SEEK_STAT;
1966 s->error = 0x01;
1967 }
9cdd03a7 1968 } else if ((bus->cmd & IDE_CMD_RESET) &&
5391d806
FB
1969 !(val & IDE_CMD_RESET)) {
1970 /* high to low */
1971 for(i = 0;i < 2; i++) {
bcbdc4d3 1972 s = &bus->ifs[i];
cd8722bb 1973 if (s->drive_kind == IDE_CD)
6b136f9e
FB
1974 s->status = 0x00; /* NOTE: READY is _not_ set */
1975 else
56bf1d37 1976 s->status = READY_STAT | SEEK_STAT;
5391d806
FB
1977 ide_set_signature(s);
1978 }
1979 }
1980
9cdd03a7 1981 bus->cmd = val;
5391d806
FB
1982}
1983
40c4ed3f
KW
1984/*
1985 * Returns true if the running PIO transfer is a PIO out (i.e. data is
1986 * transferred from the device to the guest), false if it's a PIO in
1987 */
1988static bool ide_is_pio_out(IDEState *s)
1989{
1990 if (s->end_transfer_func == ide_sector_write ||
1991 s->end_transfer_func == ide_atapi_cmd) {
1992 return false;
1993 } else if (s->end_transfer_func == ide_sector_read ||
1994 s->end_transfer_func == ide_transfer_stop ||
1995 s->end_transfer_func == ide_atapi_cmd_reply_end ||
1996 s->end_transfer_func == ide_dummy_transfer_stop) {
1997 return true;
1998 }
1999
2000 abort();
2001}
2002
356721ae 2003void ide_data_writew(void *opaque, uint32_t addr, uint32_t val)
5391d806 2004{
bcbdc4d3
GH
2005 IDEBus *bus = opaque;
2006 IDEState *s = idebus_active_if(bus);
5391d806
FB
2007 uint8_t *p;
2008
40c4ed3f
KW
2009 /* PIO data access allowed only when DRQ bit is set. The result of a write
2010 * during PIO out is indeterminate, just ignore it. */
2011 if (!(s->status & DRQ_STAT) || ide_is_pio_out(s)) {
fcdd25ab 2012 return;
40c4ed3f 2013 }
fcdd25ab 2014
5391d806 2015 p = s->data_ptr;
0c4ad8dc 2016 *(uint16_t *)p = le16_to_cpu(val);
5391d806
FB
2017 p += 2;
2018 s->data_ptr = p;
2019 if (p >= s->data_end)
2020 s->end_transfer_func(s);
2021}
2022
356721ae 2023uint32_t ide_data_readw(void *opaque, uint32_t addr)
5391d806 2024{
bcbdc4d3
GH
2025 IDEBus *bus = opaque;
2026 IDEState *s = idebus_active_if(bus);
5391d806
FB
2027 uint8_t *p;
2028 int ret;
fcdd25ab 2029
40c4ed3f
KW
2030 /* PIO data access allowed only when DRQ bit is set. The result of a read
2031 * during PIO in is indeterminate, return 0 and don't move forward. */
2032 if (!(s->status & DRQ_STAT) || !ide_is_pio_out(s)) {
fcdd25ab 2033 return 0;
40c4ed3f 2034 }
fcdd25ab 2035
5391d806 2036 p = s->data_ptr;
0c4ad8dc 2037 ret = cpu_to_le16(*(uint16_t *)p);
5391d806
FB
2038 p += 2;
2039 s->data_ptr = p;
2040 if (p >= s->data_end)
2041 s->end_transfer_func(s);
2042 return ret;
2043}
2044
356721ae 2045void ide_data_writel(void *opaque, uint32_t addr, uint32_t val)
5391d806 2046{
bcbdc4d3
GH
2047 IDEBus *bus = opaque;
2048 IDEState *s = idebus_active_if(bus);
5391d806
FB
2049 uint8_t *p;
2050
40c4ed3f
KW
2051 /* PIO data access allowed only when DRQ bit is set. The result of a write
2052 * during PIO out is indeterminate, just ignore it. */
2053 if (!(s->status & DRQ_STAT) || ide_is_pio_out(s)) {
fcdd25ab 2054 return;
40c4ed3f 2055 }
fcdd25ab 2056
5391d806 2057 p = s->data_ptr;
0c4ad8dc 2058 *(uint32_t *)p = le32_to_cpu(val);
5391d806
FB
2059 p += 4;
2060 s->data_ptr = p;
2061 if (p >= s->data_end)
2062 s->end_transfer_func(s);
2063}
2064
356721ae 2065uint32_t ide_data_readl(void *opaque, uint32_t addr)
5391d806 2066{
bcbdc4d3
GH
2067 IDEBus *bus = opaque;
2068 IDEState *s = idebus_active_if(bus);
5391d806
FB
2069 uint8_t *p;
2070 int ret;
3b46e624 2071
40c4ed3f
KW
2072 /* PIO data access allowed only when DRQ bit is set. The result of a read
2073 * during PIO in is indeterminate, return 0 and don't move forward. */
2074 if (!(s->status & DRQ_STAT) || !ide_is_pio_out(s)) {
fcdd25ab 2075 return 0;
40c4ed3f 2076 }
fcdd25ab 2077
5391d806 2078 p = s->data_ptr;
0c4ad8dc 2079 ret = cpu_to_le32(*(uint32_t *)p);
5391d806
FB
2080 p += 4;
2081 s->data_ptr = p;
2082 if (p >= s->data_end)
2083 s->end_transfer_func(s);
2084 return ret;
2085}
2086
a7dfe172
FB
2087static void ide_dummy_transfer_stop(IDEState *s)
2088{
2089 s->data_ptr = s->io_buffer;
2090 s->data_end = s->io_buffer;
2091 s->io_buffer[0] = 0xff;
2092 s->io_buffer[1] = 0xff;
2093 s->io_buffer[2] = 0xff;
2094 s->io_buffer[3] = 0xff;
2095}
2096
4a643563 2097static void ide_reset(IDEState *s)
5391d806 2098{
4a643563
BS
2099#ifdef DEBUG_IDE
2100 printf("ide: reset\n");
2101#endif
bef0fd59
SH
2102
2103 if (s->pio_aiocb) {
4be74634 2104 blk_aio_cancel(s->pio_aiocb);
bef0fd59
SH
2105 s->pio_aiocb = NULL;
2106 }
2107
cd8722bb 2108 if (s->drive_kind == IDE_CFATA)
201a51fc
AZ
2109 s->mult_sectors = 0;
2110 else
2111 s->mult_sectors = MAX_MULT_SECTORS;
4a643563
BS
2112 /* ide regs */
2113 s->feature = 0;
2114 s->error = 0;
2115 s->nsector = 0;
2116 s->sector = 0;
2117 s->lcyl = 0;
2118 s->hcyl = 0;
2119
2120 /* lba48 */
2121 s->hob_feature = 0;
2122 s->hob_sector = 0;
2123 s->hob_nsector = 0;
2124 s->hob_lcyl = 0;
2125 s->hob_hcyl = 0;
2126
5391d806 2127 s->select = 0xa0;
41a2b959 2128 s->status = READY_STAT | SEEK_STAT;
4a643563
BS
2129
2130 s->lba48 = 0;
2131
2132 /* ATAPI specific */
2133 s->sense_key = 0;
2134 s->asc = 0;
2135 s->cdrom_changed = 0;
2136 s->packet_transfer_size = 0;
2137 s->elementary_transfer_size = 0;
2138 s->io_buffer_index = 0;
2139 s->cd_sector_size = 0;
2140 s->atapi_dma = 0;
a7f3d65b
PH
2141 s->tray_locked = 0;
2142 s->tray_open = 0;
4a643563
BS
2143 /* ATA DMA state */
2144 s->io_buffer_size = 0;
2145 s->req_nb_sectors = 0;
2146
5391d806 2147 ide_set_signature(s);
a7dfe172
FB
2148 /* init the transfer handler so that 0xffff is returned on data
2149 accesses */
2150 s->end_transfer_func = ide_dummy_transfer_stop;
2151 ide_dummy_transfer_stop(s);
201a51fc 2152 s->media_changed = 0;
5391d806
FB
2153}
2154
4a643563
BS
2155void ide_bus_reset(IDEBus *bus)
2156{
2157 bus->unit = 0;
2158 bus->cmd = 0;
2159 ide_reset(&bus->ifs[0]);
2160 ide_reset(&bus->ifs[1]);
2161 ide_clear_hob(bus);
40a6238a
AG
2162
2163 /* pending async DMA */
2164 if (bus->dma->aiocb) {
2165#ifdef DEBUG_AIO
2166 printf("aio_cancel\n");
2167#endif
4be74634 2168 blk_aio_cancel(bus->dma->aiocb);
40a6238a
AG
2169 bus->dma->aiocb = NULL;
2170 }
2171
2172 /* reset dma provider too */
1374bec0
PB
2173 if (bus->dma->ops->reset) {
2174 bus->dma->ops->reset(bus->dma);
2175 }
4a643563
BS
2176}
2177
e4def80b
MA
2178static bool ide_cd_is_tray_open(void *opaque)
2179{
2180 return ((IDEState *)opaque)->tray_open;
2181}
2182
f107639a
MA
2183static bool ide_cd_is_medium_locked(void *opaque)
2184{
2185 return ((IDEState *)opaque)->tray_locked;
2186}
2187
01ce352e
JS
2188static void ide_resize_cb(void *opaque)
2189{
2190 IDEState *s = opaque;
2191 uint64_t nb_sectors;
2192
2193 if (!s->identify_set) {
2194 return;
2195 }
2196
4be74634 2197 blk_get_geometry(s->blk, &nb_sectors);
01ce352e
JS
2198 s->nb_sectors = nb_sectors;
2199
2200 /* Update the identify data buffer. */
2201 if (s->drive_kind == IDE_CFATA) {
2202 ide_cfata_identify_size(s);
2203 } else {
2204 /* IDE_CD uses a different set of callbacks entirely. */
2205 assert(s->drive_kind != IDE_CD);
2206 ide_identify_size(s);
2207 }
2208}
2209
0e49de52 2210static const BlockDevOps ide_cd_block_ops = {
145feb17 2211 .change_media_cb = ide_cd_change_cb,
2df0a3a3 2212 .eject_request_cb = ide_cd_eject_request_cb,
e4def80b 2213 .is_tray_open = ide_cd_is_tray_open,
f107639a 2214 .is_medium_locked = ide_cd_is_medium_locked,
0e49de52
MA
2215};
2216
01ce352e
JS
2217static const BlockDevOps ide_hd_block_ops = {
2218 .resize_cb = ide_resize_cb,
2219};
2220
4be74634 2221int ide_init_drive(IDEState *s, BlockBackend *blk, IDEDriveKind kind,
95ebda85 2222 const char *version, const char *serial, const char *model,
ba801960
MA
2223 uint64_t wwn,
2224 uint32_t cylinders, uint32_t heads, uint32_t secs,
2225 int chs_trans)
88804180 2226{
88804180
GH
2227 uint64_t nb_sectors;
2228
4be74634 2229 s->blk = blk;
1f56e32a
MA
2230 s->drive_kind = kind;
2231
4be74634 2232 blk_get_geometry(blk, &nb_sectors);
870111c8
MA
2233 s->cylinders = cylinders;
2234 s->heads = heads;
2235 s->sectors = secs;
ba801960 2236 s->chs_trans = chs_trans;
870111c8 2237 s->nb_sectors = nb_sectors;
95ebda85 2238 s->wwn = wwn;
870111c8
MA
2239 /* The SMART values should be preserved across power cycles
2240 but they aren't. */
2241 s->smart_enabled = 1;
2242 s->smart_autosave = 1;
2243 s->smart_errors = 0;
2244 s->smart_selftest_count = 0;
1f56e32a 2245 if (kind == IDE_CD) {
4be74634
MA
2246 blk_set_dev_ops(blk, &ide_cd_block_ops, s);
2247 blk_set_guest_block_size(blk, 2048);
7aa9c811 2248 } else {
4be74634 2249 if (!blk_is_inserted(s->blk)) {
98f28ad7
MA
2250 error_report("Device needs media, but drive is empty");
2251 return -1;
2252 }
4be74634 2253 if (blk_is_read_only(blk)) {
7aa9c811
MA
2254 error_report("Can't use a read-only drive");
2255 return -1;
2256 }
4be74634 2257 blk_set_dev_ops(blk, &ide_hd_block_ops, s);
88804180 2258 }
f8b6cc00 2259 if (serial) {
aa2c91bd 2260 pstrcpy(s->drive_serial_str, sizeof(s->drive_serial_str), serial);
6ced55a5 2261 } else {
88804180
GH
2262 snprintf(s->drive_serial_str, sizeof(s->drive_serial_str),
2263 "QM%05d", s->drive_serial);
870111c8 2264 }
27e0c9a1
FB
2265 if (model) {
2266 pstrcpy(s->drive_model_str, sizeof(s->drive_model_str), model);
2267 } else {
2268 switch (kind) {
2269 case IDE_CD:
2270 strcpy(s->drive_model_str, "QEMU DVD-ROM");
2271 break;
2272 case IDE_CFATA:
2273 strcpy(s->drive_model_str, "QEMU MICRODRIVE");
2274 break;
2275 default:
2276 strcpy(s->drive_model_str, "QEMU HARDDISK");
2277 break;
2278 }
2279 }
2280
47c06340
GH
2281 if (version) {
2282 pstrcpy(s->version, sizeof(s->version), version);
2283 } else {
93bfef4c 2284 pstrcpy(s->version, sizeof(s->version), qemu_get_version());
47c06340 2285 }
40a6238a 2286
88804180 2287 ide_reset(s);
4be74634 2288 blk_iostatus_enable(blk);
c4d74df7 2289 return 0;
88804180
GH
2290}
2291
57234ee4 2292static void ide_init1(IDEBus *bus, int unit)
d459da0e
MA
2293{
2294 static int drive_serial = 1;
2295 IDEState *s = &bus->ifs[unit];
2296
2297 s->bus = bus;
2298 s->unit = unit;
2299 s->drive_serial = drive_serial++;
1b2adf28 2300 /* we need at least 2k alignment for accessing CDROMs using O_DIRECT */
50641c5c 2301 s->io_buffer_total_len = IDE_DMA_BUF_SECTORS*512 + 4;
c925400b
KW
2302 s->io_buffer = qemu_memalign(2048, s->io_buffer_total_len);
2303 memset(s->io_buffer, 0, s->io_buffer_total_len);
2304
4be74634 2305 s->smart_selftest_data = blk_blockalign(s->blk, 512);
c925400b
KW
2306 memset(s->smart_selftest_data, 0, 512);
2307
bc72ad67 2308 s->sector_write_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
d459da0e 2309 ide_sector_write_timer_cb, s);
57234ee4
MA
2310}
2311
40a6238a
AG
2312static int ide_nop_int(IDEDMA *dma, int x)
2313{
2314 return 0;
2315}
2316
9898586d
PB
2317static void ide_nop(IDEDMA *dma)
2318{
2319}
2320
3251bdcf
JS
2321static int32_t ide_nop_int32(IDEDMA *dma, int x)
2322{
2323 return 0;
2324}
2325
1dfb4dd9 2326static void ide_nop_restart(void *opaque, int x, RunState y)
40a6238a
AG
2327{
2328}
2329
2330static const IDEDMAOps ide_dma_nop_ops = {
3251bdcf 2331 .prepare_buf = ide_nop_int32,
9898586d 2332 .restart_dma = ide_nop,
40a6238a
AG
2333 .rw_buf = ide_nop_int,
2334 .set_unit = ide_nop_int,
40a6238a 2335 .restart_cb = ide_nop_restart,
40a6238a
AG
2336};
2337
9898586d
PB
2338static void ide_restart_dma(IDEState *s, enum ide_dma_cmd dma_cmd)
2339{
2340 s->bus->dma->ops->restart_dma(s->bus->dma);
2341 s->io_buffer_index = 0;
2342 s->io_buffer_size = 0;
2343 s->dma_cmd = dma_cmd;
2344 ide_start_dma(s, ide_dma_cb);
2345}
2346
2347static void ide_restart_bh(void *opaque)
2348{
2349 IDEBus *bus = opaque;
2350 IDEState *s;
2351 bool is_read;
2352 int error_status;
2353
2354 qemu_bh_delete(bus->bh);
2355 bus->bh = NULL;
2356
2357 error_status = bus->error_status;
2358 if (bus->error_status == 0) {
2359 return;
2360 }
2361
2362 s = idebus_active_if(bus);
2363 is_read = (bus->error_status & IDE_RETRY_READ) != 0;
2364
2365 /* The error status must be cleared before resubmitting the request: The
2366 * request may fail again, and this case can only be distinguished if the
2367 * called function can set a new error status. */
2368 bus->error_status = 0;
2369
2370 if (error_status & IDE_RETRY_DMA) {
2371 if (error_status & IDE_RETRY_TRIM) {
2372 ide_restart_dma(s, IDE_DMA_TRIM);
2373 } else {
2374 ide_restart_dma(s, is_read ? IDE_DMA_READ : IDE_DMA_WRITE);
2375 }
2376 } else if (error_status & IDE_RETRY_PIO) {
2377 if (is_read) {
2378 ide_sector_read(s);
2379 } else {
2380 ide_sector_write(s);
2381 }
2382 } else if (error_status & IDE_RETRY_FLUSH) {
2383 ide_flush_cache(s);
2384 } else {
2385 /*
2386 * We've not got any bits to tell us about ATAPI - but
2387 * we do have the end_transfer_func that tells us what
2388 * we're trying to do.
2389 */
2390 if (s->end_transfer_func == ide_atapi_cmd) {
2391 ide_atapi_dma_restart(s);
2392 }
2393 }
2394}
2395
2396static void ide_restart_cb(void *opaque, int running, RunState state)
2397{
2398 IDEBus *bus = opaque;
2399
2400 if (!running)
2401 return;
2402
2403 if (!bus->bh) {
2404 bus->bh = qemu_bh_new(ide_restart_bh, bus);
2405 qemu_bh_schedule(bus->bh);
2406 }
2407}
2408
f878c916
PB
2409void ide_register_restart_cb(IDEBus *bus)
2410{
9898586d
PB
2411 if (bus->dma->ops->restart_dma) {
2412 qemu_add_vm_change_state_handler(ide_restart_cb, bus);
2413 }
f878c916
PB
2414}
2415
40a6238a
AG
2416static IDEDMA ide_dma_nop = {
2417 .ops = &ide_dma_nop_ops,
2418 .aiocb = NULL,
2419};
2420
57234ee4
MA
2421void ide_init2(IDEBus *bus, qemu_irq irq)
2422{
2423 int i;
2424
2425 for(i = 0; i < 2; i++) {
2426 ide_init1(bus, i);
2427 ide_reset(&bus->ifs[i]);
870111c8 2428 }
57234ee4 2429 bus->irq = irq;
40a6238a 2430 bus->dma = &ide_dma_nop;
d459da0e
MA
2431}
2432
4a91d3b3
RH
2433static const MemoryRegionPortio ide_portio_list[] = {
2434 { 0, 8, 1, .read = ide_ioport_read, .write = ide_ioport_write },
2435 { 0, 2, 2, .read = ide_data_readw, .write = ide_data_writew },
2436 { 0, 4, 4, .read = ide_data_readl, .write = ide_data_writel },
2437 PORTIO_END_OF_LIST(),
2438};
2439
2440static const MemoryRegionPortio ide_portio2_list[] = {
2441 { 0, 1, 1, .read = ide_status_read, .write = ide_cmd_write },
2442 PORTIO_END_OF_LIST(),
2443};
2444
2445void ide_init_ioport(IDEBus *bus, ISADevice *dev, int iobase, int iobase2)
69b91039 2446{
4a91d3b3
RH
2447 /* ??? Assume only ISA and PCI configurations, and that the PCI-ISA
2448 bridge has been setup properly to always register with ISA. */
2449 isa_register_portio_list(dev, iobase, ide_portio_list, bus, "ide");
2450
caed8802 2451 if (iobase2) {
4a91d3b3 2452 isa_register_portio_list(dev, iobase2, ide_portio2_list, bus, "ide");
5391d806 2453 }
5391d806 2454}
69b91039 2455
37159f13 2456static bool is_identify_set(void *opaque, int version_id)
aa941b94 2457{
37159f13
JQ
2458 IDEState *s = opaque;
2459
2460 return s->identify_set != 0;
2461}
2462
50641c5c
JQ
2463static EndTransferFunc* transfer_end_table[] = {
2464 ide_sector_read,
2465 ide_sector_write,
2466 ide_transfer_stop,
2467 ide_atapi_cmd_reply_end,
2468 ide_atapi_cmd,
2469 ide_dummy_transfer_stop,
2470};
2471
2472static int transfer_end_table_idx(EndTransferFunc *fn)
2473{
2474 int i;
2475
2476 for (i = 0; i < ARRAY_SIZE(transfer_end_table); i++)
2477 if (transfer_end_table[i] == fn)
2478 return i;
2479
2480 return -1;
2481}
2482
37159f13 2483static int ide_drive_post_load(void *opaque, int version_id)
aa941b94 2484{
37159f13
JQ
2485 IDEState *s = opaque;
2486
6b896ab2 2487 if (s->blk && s->identify_set) {
4be74634 2488 blk_set_enable_write_cache(s->blk, !!(s->identify_data[85] & (1 << 5)));
7cdd481c 2489 }
37159f13 2490 return 0;
aa941b94
AZ
2491}
2492
50641c5c
JQ
2493static int ide_drive_pio_post_load(void *opaque, int version_id)
2494{
2495 IDEState *s = opaque;
2496
fb60105d 2497 if (s->end_transfer_fn_idx >= ARRAY_SIZE(transfer_end_table)) {
50641c5c
JQ
2498 return -EINVAL;
2499 }
2500 s->end_transfer_func = transfer_end_table[s->end_transfer_fn_idx];
2501 s->data_ptr = s->io_buffer + s->cur_io_buffer_offset;
2502 s->data_end = s->data_ptr + s->cur_io_buffer_len;
819fa276 2503 s->atapi_dma = s->feature & 1; /* as per cmd_packet */
50641c5c
JQ
2504
2505 return 0;
2506}
2507
2508static void ide_drive_pio_pre_save(void *opaque)
2509{
2510 IDEState *s = opaque;
2511 int idx;
2512
2513 s->cur_io_buffer_offset = s->data_ptr - s->io_buffer;
2514 s->cur_io_buffer_len = s->data_end - s->data_ptr;
2515
2516 idx = transfer_end_table_idx(s->end_transfer_func);
2517 if (idx == -1) {
2518 fprintf(stderr, "%s: invalid end_transfer_func for DRQ_STAT\n",
2519 __func__);
2520 s->end_transfer_fn_idx = 2;
2521 } else {
2522 s->end_transfer_fn_idx = idx;
2523 }
2524}
2525
2526static bool ide_drive_pio_state_needed(void *opaque)
2527{
2528 IDEState *s = opaque;
2529
fdc650d7 2530 return ((s->status & DRQ_STAT) != 0)
fd648f10 2531 || (s->bus->error_status & IDE_RETRY_PIO);
50641c5c
JQ
2532}
2533
db118fe7
MA
2534static bool ide_tray_state_needed(void *opaque)
2535{
2536 IDEState *s = opaque;
2537
2538 return s->tray_open || s->tray_locked;
2539}
2540
996faf1a
AS
2541static bool ide_atapi_gesn_needed(void *opaque)
2542{
2543 IDEState *s = opaque;
2544
2545 return s->events.new_media || s->events.eject_request;
2546}
2547
def93791
KW
2548static bool ide_error_needed(void *opaque)
2549{
2550 IDEBus *bus = opaque;
2551
2552 return (bus->error_status != 0);
2553}
2554
996faf1a 2555/* Fields for GET_EVENT_STATUS_NOTIFICATION ATAPI command */
656fbeff 2556static const VMStateDescription vmstate_ide_atapi_gesn_state = {
996faf1a
AS
2557 .name ="ide_drive/atapi/gesn_state",
2558 .version_id = 1,
2559 .minimum_version_id = 1,
35d08458 2560 .fields = (VMStateField[]) {
996faf1a
AS
2561 VMSTATE_BOOL(events.new_media, IDEState),
2562 VMSTATE_BOOL(events.eject_request, IDEState),
0754f9ec 2563 VMSTATE_END_OF_LIST()
996faf1a
AS
2564 }
2565};
2566
db118fe7
MA
2567static const VMStateDescription vmstate_ide_tray_state = {
2568 .name = "ide_drive/tray_state",
2569 .version_id = 1,
2570 .minimum_version_id = 1,
db118fe7
MA
2571 .fields = (VMStateField[]) {
2572 VMSTATE_BOOL(tray_open, IDEState),
2573 VMSTATE_BOOL(tray_locked, IDEState),
2574 VMSTATE_END_OF_LIST()
2575 }
2576};
2577
656fbeff 2578static const VMStateDescription vmstate_ide_drive_pio_state = {
50641c5c
JQ
2579 .name = "ide_drive/pio_state",
2580 .version_id = 1,
2581 .minimum_version_id = 1,
50641c5c
JQ
2582 .pre_save = ide_drive_pio_pre_save,
2583 .post_load = ide_drive_pio_post_load,
35d08458 2584 .fields = (VMStateField[]) {
50641c5c
JQ
2585 VMSTATE_INT32(req_nb_sectors, IDEState),
2586 VMSTATE_VARRAY_INT32(io_buffer, IDEState, io_buffer_total_len, 1,
2587 vmstate_info_uint8, uint8_t),
2588 VMSTATE_INT32(cur_io_buffer_offset, IDEState),
2589 VMSTATE_INT32(cur_io_buffer_len, IDEState),
2590 VMSTATE_UINT8(end_transfer_fn_idx, IDEState),
2591 VMSTATE_INT32(elementary_transfer_size, IDEState),
2592 VMSTATE_INT32(packet_transfer_size, IDEState),
2593 VMSTATE_END_OF_LIST()
2594 }
2595};
2596
37159f13
JQ
2597const VMStateDescription vmstate_ide_drive = {
2598 .name = "ide_drive",
3abb6260 2599 .version_id = 3,
37159f13 2600 .minimum_version_id = 0,
37159f13 2601 .post_load = ide_drive_post_load,
35d08458 2602 .fields = (VMStateField[]) {
37159f13
JQ
2603 VMSTATE_INT32(mult_sectors, IDEState),
2604 VMSTATE_INT32(identify_set, IDEState),
2605 VMSTATE_BUFFER_TEST(identify_data, IDEState, is_identify_set),
2606 VMSTATE_UINT8(feature, IDEState),
2607 VMSTATE_UINT8(error, IDEState),
2608 VMSTATE_UINT32(nsector, IDEState),
2609 VMSTATE_UINT8(sector, IDEState),
2610 VMSTATE_UINT8(lcyl, IDEState),
2611 VMSTATE_UINT8(hcyl, IDEState),
2612 VMSTATE_UINT8(hob_feature, IDEState),
2613 VMSTATE_UINT8(hob_sector, IDEState),
2614 VMSTATE_UINT8(hob_nsector, IDEState),
2615 VMSTATE_UINT8(hob_lcyl, IDEState),
2616 VMSTATE_UINT8(hob_hcyl, IDEState),
2617 VMSTATE_UINT8(select, IDEState),
2618 VMSTATE_UINT8(status, IDEState),
2619 VMSTATE_UINT8(lba48, IDEState),
2620 VMSTATE_UINT8(sense_key, IDEState),
2621 VMSTATE_UINT8(asc, IDEState),
2622 VMSTATE_UINT8_V(cdrom_changed, IDEState, 3),
37159f13 2623 VMSTATE_END_OF_LIST()
50641c5c
JQ
2624 },
2625 .subsections = (VMStateSubsection []) {
2626 {
2627 .vmsd = &vmstate_ide_drive_pio_state,
2628 .needed = ide_drive_pio_state_needed,
db118fe7
MA
2629 }, {
2630 .vmsd = &vmstate_ide_tray_state,
2631 .needed = ide_tray_state_needed,
996faf1a
AS
2632 }, {
2633 .vmsd = &vmstate_ide_atapi_gesn_state,
2634 .needed = ide_atapi_gesn_needed,
50641c5c
JQ
2635 }, {
2636 /* empty */
2637 }
37159f13
JQ
2638 }
2639};
2640
656fbeff 2641static const VMStateDescription vmstate_ide_error_status = {
def93791
KW
2642 .name ="ide_bus/error",
2643 .version_id = 1,
2644 .minimum_version_id = 1,
35d08458 2645 .fields = (VMStateField[]) {
def93791
KW
2646 VMSTATE_INT32(error_status, IDEBus),
2647 VMSTATE_END_OF_LIST()
2648 }
2649};
2650
6521dc62
JQ
2651const VMStateDescription vmstate_ide_bus = {
2652 .name = "ide_bus",
2653 .version_id = 1,
2654 .minimum_version_id = 1,
35d08458 2655 .fields = (VMStateField[]) {
6521dc62
JQ
2656 VMSTATE_UINT8(cmd, IDEBus),
2657 VMSTATE_UINT8(unit, IDEBus),
2658 VMSTATE_END_OF_LIST()
def93791
KW
2659 },
2660 .subsections = (VMStateSubsection []) {
2661 {
2662 .vmsd = &vmstate_ide_error_status,
2663 .needed = ide_error_needed,
2664 }, {
2665 /* empty */
2666 }
6521dc62
JQ
2667 }
2668};
75717903 2669
d8f94e1b 2670void ide_drive_get(DriveInfo **hd, int n)
75717903
IY
2671{
2672 int i;
d8f94e1b
JS
2673 int highest_bus = drive_get_max_bus(IF_IDE) + 1;
2674 int max_devs = drive_get_max_devs(IF_IDE);
2675 int n_buses = max_devs ? (n / max_devs) : n;
75717903 2676
d8f94e1b
JS
2677 /*
2678 * Note: The number of actual buses available is not known.
2679 * We compute this based on the size of the DriveInfo* array, n.
2680 * If it is less than max_devs * <num_real_buses>,
2681 * We will stop looking for drives prematurely instead of overfilling
2682 * the array.
2683 */
2684
2685 if (highest_bus > n_buses) {
2686 error_report("Too many IDE buses defined (%d > %d)",
2687 highest_bus, n_buses);
75717903
IY
2688 exit(1);
2689 }
2690
d8f94e1b
JS
2691 for (i = 0; i < n; i++) {
2692 hd[i] = drive_get_by_index(IF_IDE, i);
75717903
IY
2693 }
2694}
This page took 1.269062 seconds and 4 git commands to generate.