2 * QEMU IDE disk and CD/DVD-ROM Emulator
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2006 Openedhand Ltd.
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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
26 #include <hw/i386/pc.h>
27 #include <hw/pci/pci.h>
28 #include <hw/isa/isa.h>
29 #include "qemu/error-report.h"
30 #include "qemu/timer.h"
31 #include "sysemu/sysemu.h"
32 #include "sysemu/dma.h"
33 #include "hw/block/block.h"
34 #include "sysemu/block-backend.h"
36 #include <hw/ide/internal.h>
38 /* These values were based on a Seagate ST3500418AS but have been modified
39 to make more sense in QEMU */
40 static 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},
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},
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},
58 static int ide_handle_rw_error(IDEState
*s
, int error
, int op
);
59 static void ide_dummy_transfer_stop(IDEState
*s
);
61 static void padstr(char *str
, const char *src
, int len
)
64 for(i
= 0; i
< len
; i
++) {
73 static void put_le16(uint16_t *p
, unsigned int v
)
78 static void ide_identify_size(IDEState
*s
)
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);
89 static void ide_identify(IDEState
*s
)
93 IDEDevice
*dev
= s
->unit
? s
->bus
->slave
: s
->bus
->master
;
95 p
= (uint16_t *)s
->identify_data
;
96 if (s
->identify_set
) {
99 memset(p
, 0, sizeof(s
->identify_data
));
101 put_le16(p
+ 0, 0x0040);
102 put_le16(p
+ 1, s
->cylinders
);
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 ? */
106 put_le16(p
+ 6, s
->sectors
);
107 padstr((char *)(p
+ 10), s
->drive_serial_str
, 20); /* serial number */
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 */
111 padstr((char *)(p
+ 23), s
->version
, 8); /* firmware version */
112 padstr((char *)(p
+ 27), s
->drive_model_str
, 40); /* model */
113 #if MAX_MULT_SECTORS > 1
114 put_le16(p
+ 47, 0x8000 | MAX_MULT_SECTORS
);
116 put_le16(p
+ 48, 1); /* dword I/O */
117 put_le16(p
+ 49, (1 << 11) | (1 << 9) | (1 << 8)); /* DMA and LBA supported */
118 put_le16(p
+ 51, 0x200); /* PIO transfer cycle */
119 put_le16(p
+ 52, 0x200); /* DMA transfer cycle */
120 put_le16(p
+ 53, 1 | (1 << 1) | (1 << 2)); /* words 54-58,64-70,88 are valid */
121 put_le16(p
+ 54, s
->cylinders
);
122 put_le16(p
+ 55, s
->heads
);
123 put_le16(p
+ 56, s
->sectors
);
124 oldsize
= s
->cylinders
* s
->heads
* s
->sectors
;
125 put_le16(p
+ 57, oldsize
);
126 put_le16(p
+ 58, oldsize
>> 16);
128 put_le16(p
+ 59, 0x100 | s
->mult_sectors
);
129 /* *(p + 60) := nb_sectors -- see ide_identify_size */
130 /* *(p + 61) := nb_sectors >> 16 -- see ide_identify_size */
131 put_le16(p
+ 62, 0x07); /* single word dma0-2 supported */
132 put_le16(p
+ 63, 0x07); /* mdma0-2 supported */
133 put_le16(p
+ 64, 0x03); /* pio3-4 supported */
134 put_le16(p
+ 65, 120);
135 put_le16(p
+ 66, 120);
136 put_le16(p
+ 67, 120);
137 put_le16(p
+ 68, 120);
138 if (dev
&& dev
->conf
.discard_granularity
) {
139 put_le16(p
+ 69, (1 << 14)); /* determinate TRIM behavior */
143 put_le16(p
+ 75, s
->ncq_queues
- 1);
145 put_le16(p
+ 76, (1 << 8));
148 put_le16(p
+ 80, 0xf0); /* ata3 -> ata6 supported */
149 put_le16(p
+ 81, 0x16); /* conforms to ata5 */
150 /* 14=NOP supported, 5=WCACHE supported, 0=SMART supported */
151 put_le16(p
+ 82, (1 << 14) | (1 << 5) | 1);
152 /* 13=flush_cache_ext,12=flush_cache,10=lba48 */
153 put_le16(p
+ 83, (1 << 14) | (1 << 13) | (1 <<12) | (1 << 10));
154 /* 14=set to 1, 8=has WWN, 1=SMART self test, 0=SMART error logging */
156 put_le16(p
+ 84, (1 << 14) | (1 << 8) | 0);
158 put_le16(p
+ 84, (1 << 14) | 0);
160 /* 14 = NOP supported, 5=WCACHE enabled, 0=SMART feature set enabled */
161 if (blk_enable_write_cache(s
->blk
)) {
162 put_le16(p
+ 85, (1 << 14) | (1 << 5) | 1);
164 put_le16(p
+ 85, (1 << 14) | 1);
166 /* 13=flush_cache_ext,12=flush_cache,10=lba48 */
167 put_le16(p
+ 86, (1 << 13) | (1 <<12) | (1 << 10));
168 /* 14=set to 1, 8=has WWN, 1=SMART self test, 0=SMART error logging */
170 put_le16(p
+ 87, (1 << 14) | (1 << 8) | 0);
172 put_le16(p
+ 87, (1 << 14) | 0);
174 put_le16(p
+ 88, 0x3f | (1 << 13)); /* udma5 set and supported */
175 put_le16(p
+ 93, 1 | (1 << 14) | 0x2000);
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 */
181 if (dev
&& dev
->conf
.physical_block_size
)
182 put_le16(p
+ 106, 0x6000 | get_physical_block_exp(&dev
->conf
));
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
);
190 if (dev
&& dev
->conf
.discard_granularity
) {
191 put_le16(p
+ 169, 1); /* TRIM support */
194 ide_identify_size(s
);
198 memcpy(s
->io_buffer
, p
, sizeof(s
->identify_data
));
201 static void ide_atapi_identify(IDEState
*s
)
205 p
= (uint16_t *)s
->identify_data
;
206 if (s
->identify_set
) {
209 memset(p
, 0, sizeof(s
->identify_data
));
211 /* Removable CDROM, 50us response, 12 byte packets */
212 put_le16(p
+ 0, (2 << 14) | (5 << 8) | (1 << 7) | (2 << 5) | (0 << 0));
213 padstr((char *)(p
+ 10), s
->drive_serial_str
, 20); /* serial number */
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 */
217 padstr((char *)(p
+ 23), s
->version
, 8); /* firmware version */
218 padstr((char *)(p
+ 27), s
->drive_model_str
, 40); /* model */
219 put_le16(p
+ 48, 1); /* dword I/O (XXX: should not be set on 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 */
223 put_le16(p
+ 62, 7); /* single word dma0-2 supported */
224 put_le16(p
+ 63, 7); /* mdma0-2 supported */
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 */
230 put_le16(p
+ 64, 3); /* pio3-4 supported */
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 */
236 put_le16(p
+ 71, 30); /* in ns */
237 put_le16(p
+ 72, 30); /* in ns */
240 put_le16(p
+ 75, s
->ncq_queues
- 1);
242 put_le16(p
+ 76, (1 << 8));
245 put_le16(p
+ 80, 0x1e); /* support up to ATA/ATAPI-4 */
247 put_le16(p
+ 84, (1 << 8)); /* supports WWN for words 108-111 */
248 put_le16(p
+ 87, (1 << 8)); /* WWN enabled */
252 put_le16(p
+ 88, 0x3f | (1 << 13)); /* udma5 set and supported */
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
);
266 memcpy(s
->io_buffer
, p
, sizeof(s
->identify_data
));
269 static void ide_cfata_identify_size(IDEState
*s
)
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 */
278 static void ide_cfata_identify(IDEState
*s
)
283 p
= (uint16_t *)s
->identify_data
;
284 if (s
->identify_set
) {
287 memset(p
, 0, sizeof(s
->identify_data
));
289 cur_sec
= s
->cylinders
* s
->heads
* s
->sectors
;
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 */
295 /* *(p + 7) := nb_sectors >> 16 -- see ide_cfata_identify_size */
296 /* *(p + 8) := nb_sectors -- see ide_cfata_identify_size */
297 padstr((char *)(p
+ 10), s
->drive_serial_str
, 20); /* serial number */
298 put_le16(p
+ 22, 0x0004); /* ECC bytes */
299 padstr((char *) (p
+ 23), s
->version
, 8); /* Firmware Revision */
300 padstr((char *) (p
+ 27), s
->drive_model_str
, 40);/* Model number */
301 #if MAX_MULT_SECTORS > 1
302 put_le16(p
+ 47, 0x8000 | MAX_MULT_SECTORS
);
304 put_le16(p
+ 47, 0x0000);
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
);
317 /* *(p + 60) := nb_sectors -- see ide_cfata_identify_size */
318 /* *(p + 61) := nb_sectors >> 16 -- see ide_cfata_identify_size */
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 */
338 ide_cfata_identify_size(s
);
342 memcpy(s
->io_buffer
, p
, sizeof(s
->identify_data
));
345 static void ide_set_signature(IDEState
*s
)
347 s
->select
&= 0xf0; /* clear head */
351 if (s
->drive_kind
== IDE_CD
) {
363 typedef struct TrimAIOCB
{
373 static void trim_aio_cancel(BlockAIOCB
*acb
)
375 TrimAIOCB
*iocb
= container_of(acb
, TrimAIOCB
, common
);
377 /* Exit the loop so ide_issue_trim_cb will not continue */
378 iocb
->j
= iocb
->qiov
->niov
- 1;
379 iocb
->i
= (iocb
->qiov
->iov
[iocb
->j
].iov_len
/ 8) - 1;
381 iocb
->ret
= -ECANCELED
;
384 blk_aio_cancel_async(iocb
->aiocb
);
389 static const AIOCBInfo trim_aiocb_info
= {
390 .aiocb_size
= sizeof(TrimAIOCB
),
391 .cancel_async
= trim_aio_cancel
,
394 static void ide_trim_bh_cb(void *opaque
)
396 TrimAIOCB
*iocb
= opaque
;
398 iocb
->common
.cb(iocb
->common
.opaque
, iocb
->ret
);
400 qemu_bh_delete(iocb
->bh
);
402 qemu_aio_unref(iocb
);
405 static void ide_issue_trim_cb(void *opaque
, int ret
)
407 TrimAIOCB
*iocb
= opaque
;
409 while (iocb
->j
< iocb
->qiov
->niov
) {
411 while (++iocb
->i
< iocb
->qiov
->iov
[j
].iov_len
/ 8) {
413 uint64_t *buffer
= iocb
->qiov
->iov
[j
].iov_base
;
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;
424 /* Got an entry! Submit and exit. */
425 iocb
->aiocb
= blk_aio_discard(iocb
->blk
, sector
, count
,
426 ide_issue_trim_cb
, opaque
);
439 qemu_bh_schedule(iocb
->bh
);
443 BlockAIOCB
*ide_issue_trim(BlockBackend
*blk
,
444 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
445 BlockCompletionFunc
*cb
, void *opaque
)
449 iocb
= blk_aio_get(&trim_aiocb_info
, blk
, cb
, opaque
);
451 iocb
->bh
= qemu_bh_new(ide_trim_bh_cb
, iocb
);
456 ide_issue_trim_cb(iocb
, 0);
457 return &iocb
->common
;
460 static inline void ide_abort_command(IDEState
*s
)
462 ide_transfer_stop(s
);
463 s
->status
= READY_STAT
| ERR_STAT
;
467 /* prepare data transfer and tell what to do after */
468 void ide_transfer_start(IDEState
*s
, uint8_t *buf
, int size
,
469 EndTransferFunc
*end_transfer_func
)
471 s
->end_transfer_func
= end_transfer_func
;
473 s
->data_end
= buf
+ size
;
474 if (!(s
->status
& ERR_STAT
)) {
475 s
->status
|= DRQ_STAT
;
477 if (s
->bus
->dma
->ops
->start_transfer
) {
478 s
->bus
->dma
->ops
->start_transfer(s
->bus
->dma
);
482 static void ide_cmd_done(IDEState
*s
)
484 if (s
->bus
->dma
->ops
->cmd_done
) {
485 s
->bus
->dma
->ops
->cmd_done(s
->bus
->dma
);
489 void ide_transfer_stop(IDEState
*s
)
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
;
498 int64_t ide_get_sector(IDEState
*s
)
501 if (s
->select
& 0x40) {
504 sector_num
= ((s
->select
& 0x0f) << 24) | (s
->hcyl
<< 16) |
505 (s
->lcyl
<< 8) | s
->sector
;
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
;
514 sector_num
= ((s
->hcyl
<< 8) | s
->lcyl
) * s
->heads
* s
->sectors
+
515 (s
->select
& 0x0f) * s
->sectors
+ (s
->sector
- 1);
520 void ide_set_sector(IDEState
*s
, int64_t sector_num
)
523 if (s
->select
& 0x40) {
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
);
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;
538 cyl
= sector_num
/ (s
->heads
* s
->sectors
);
539 r
= sector_num
% (s
->heads
* s
->sectors
);
542 s
->select
= (s
->select
& 0xf0) | ((r
/ s
->sectors
) & 0x0f);
543 s
->sector
= (r
% s
->sectors
) + 1;
547 static void ide_rw_error(IDEState
*s
) {
548 ide_abort_command(s
);
552 static bool ide_sect_range_ok(IDEState
*s
,
553 uint64_t sector
, uint64_t nb_sectors
)
555 uint64_t total_sectors
;
557 blk_get_geometry(s
->blk
, &total_sectors
);
558 if (sector
> total_sectors
|| nb_sectors
> total_sectors
- sector
) {
564 static void ide_sector_read_cb(void *opaque
, int ret
)
566 IDEState
*s
= opaque
;
570 s
->status
&= ~BUSY_STAT
;
572 if (ret
== -ECANCELED
) {
575 block_acct_done(blk_get_stats(s
->blk
), &s
->acct
);
577 if (ide_handle_rw_error(s
, -ret
, IDE_RETRY_PIO
|
584 if (n
> s
->req_nb_sectors
) {
585 n
= s
->req_nb_sectors
;
588 /* Allow the guest to read the io_buffer */
589 ide_transfer_start(s
, s
->io_buffer
, n
* BDRV_SECTOR_SIZE
, ide_sector_read
);
593 ide_set_sector(s
, ide_get_sector(s
) + n
);
595 s
->io_buffer_offset
+= 512 * n
;
598 void ide_sector_read(IDEState
*s
)
603 s
->status
= READY_STAT
| SEEK_STAT
;
604 s
->error
= 0; /* not needed by IDE spec, but needed by Windows */
605 sector_num
= ide_get_sector(s
);
609 ide_transfer_stop(s
);
613 s
->status
|= BUSY_STAT
;
615 if (n
> s
->req_nb_sectors
) {
616 n
= s
->req_nb_sectors
;
619 #if defined(DEBUG_IDE)
620 printf("sector=%" PRId64
"\n", sector_num
);
623 if (!ide_sect_range_ok(s
, sector_num
, n
)) {
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);
632 block_acct_start(blk_get_stats(s
->blk
), &s
->acct
,
633 n
* BDRV_SECTOR_SIZE
, BLOCK_ACCT_READ
);
634 s
->pio_aiocb
= blk_aio_readv(s
->blk
, sector_num
, &s
->qiov
, n
,
635 ide_sector_read_cb
, s
);
638 static void dma_buf_commit(IDEState
*s
, uint32_t tx_bytes
)
640 if (s
->bus
->dma
->ops
->commit_buf
) {
641 s
->bus
->dma
->ops
->commit_buf(s
->bus
->dma
, tx_bytes
);
643 qemu_sglist_destroy(&s
->sg
);
646 void ide_set_inactive(IDEState
*s
, bool more
)
648 s
->bus
->dma
->aiocb
= NULL
;
649 if (s
->bus
->dma
->ops
->set_inactive
) {
650 s
->bus
->dma
->ops
->set_inactive(s
->bus
->dma
, more
);
655 void ide_dma_error(IDEState
*s
)
657 dma_buf_commit(s
, 0);
658 ide_abort_command(s
);
659 ide_set_inactive(s
, false);
663 static int ide_handle_rw_error(IDEState
*s
, int error
, int op
)
665 bool is_read
= (op
& IDE_RETRY_READ
) != 0;
666 BlockErrorAction action
= blk_get_error_action(s
->blk
, is_read
, error
);
668 if (action
== BLOCK_ERROR_ACTION_STOP
) {
669 s
->bus
->dma
->ops
->set_unit(s
->bus
->dma
, s
->unit
);
670 s
->bus
->error_status
= op
;
671 } else if (action
== BLOCK_ERROR_ACTION_REPORT
) {
672 if (op
& IDE_RETRY_DMA
) {
678 blk_error_action(s
->blk
, action
, is_read
, error
);
679 return action
!= BLOCK_ERROR_ACTION_IGNORE
;
682 void ide_dma_cb(void *opaque
, int ret
)
684 IDEState
*s
= opaque
;
687 bool stay_active
= false;
689 if (ret
== -ECANCELED
) {
693 int op
= IDE_RETRY_DMA
;
695 if (s
->dma_cmd
== IDE_DMA_READ
)
696 op
|= IDE_RETRY_READ
;
697 else if (s
->dma_cmd
== IDE_DMA_TRIM
)
698 op
|= IDE_RETRY_TRIM
;
700 if (ide_handle_rw_error(s
, -ret
, op
)) {
705 n
= s
->io_buffer_size
>> 9;
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. */
714 sector_num
= ide_get_sector(s
);
716 assert(s
->io_buffer_size
== s
->sg
.size
);
717 dma_buf_commit(s
, s
->io_buffer_size
);
719 ide_set_sector(s
, sector_num
);
723 /* end of transfer ? */
724 if (s
->nsector
== 0) {
725 s
->status
= READY_STAT
| SEEK_STAT
;
730 /* launch next transfer */
732 s
->io_buffer_index
= 0;
733 s
->io_buffer_size
= n
* 512;
734 if (s
->bus
->dma
->ops
->prepare_buf(s
->bus
->dma
, ide_cmd_is_read(s
)) < 512) {
735 /* The PRDs were too short. Reset the Active bit, but don't raise an
737 s
->status
= READY_STAT
| SEEK_STAT
;
738 dma_buf_commit(s
, 0);
743 printf("ide_dma_cb: sector_num=%" PRId64
" n=%d, cmd_cmd=%d\n",
744 sector_num
, n
, s
->dma_cmd
);
747 if ((s
->dma_cmd
== IDE_DMA_READ
|| s
->dma_cmd
== IDE_DMA_WRITE
) &&
748 !ide_sect_range_ok(s
, sector_num
, n
)) {
753 switch (s
->dma_cmd
) {
755 s
->bus
->dma
->aiocb
= dma_blk_read(s
->blk
, &s
->sg
, sector_num
,
759 s
->bus
->dma
->aiocb
= dma_blk_write(s
->blk
, &s
->sg
, sector_num
,
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
);
771 if (s
->dma_cmd
== IDE_DMA_READ
|| s
->dma_cmd
== IDE_DMA_WRITE
) {
772 block_acct_done(blk_get_stats(s
->blk
), &s
->acct
);
774 ide_set_inactive(s
, stay_active
);
777 static void ide_sector_start_dma(IDEState
*s
, enum ide_dma_cmd dma_cmd
)
779 s
->status
= READY_STAT
| SEEK_STAT
| DRQ_STAT
| BUSY_STAT
;
780 s
->io_buffer_index
= 0;
781 s
->io_buffer_size
= 0;
782 s
->dma_cmd
= dma_cmd
;
786 block_acct_start(blk_get_stats(s
->blk
), &s
->acct
,
787 s
->nsector
* BDRV_SECTOR_SIZE
, BLOCK_ACCT_READ
);
790 block_acct_start(blk_get_stats(s
->blk
), &s
->acct
,
791 s
->nsector
* BDRV_SECTOR_SIZE
, BLOCK_ACCT_WRITE
);
797 ide_start_dma(s
, ide_dma_cb
);
800 void ide_start_dma(IDEState
*s
, BlockCompletionFunc
*cb
)
802 if (s
->bus
->dma
->ops
->start_dma
) {
803 s
->bus
->dma
->ops
->start_dma(s
->bus
->dma
, s
, cb
);
807 static void ide_sector_write_timer_cb(void *opaque
)
809 IDEState
*s
= opaque
;
813 static void ide_sector_write_cb(void *opaque
, int ret
)
815 IDEState
*s
= opaque
;
818 if (ret
== -ECANCELED
) {
821 block_acct_done(blk_get_stats(s
->blk
), &s
->acct
);
824 s
->status
&= ~BUSY_STAT
;
827 if (ide_handle_rw_error(s
, -ret
, IDE_RETRY_PIO
)) {
833 if (n
> s
->req_nb_sectors
) {
834 n
= s
->req_nb_sectors
;
837 s
->io_buffer_offset
+= 512 * n
;
839 if (s
->nsector
== 0) {
840 /* no more sectors to write */
841 ide_transfer_stop(s
);
844 if (n1
> s
->req_nb_sectors
) {
845 n1
= s
->req_nb_sectors
;
847 ide_transfer_start(s
, s
->io_buffer
, n1
* BDRV_SECTOR_SIZE
,
850 ide_set_sector(s
, ide_get_sector(s
) + n
);
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
859 timer_mod(s
->sector_write_timer
,
860 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + (get_ticks_per_sec() / 1000));
866 void ide_sector_write(IDEState
*s
)
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
);
877 if (n
> s
->req_nb_sectors
) {
878 n
= s
->req_nb_sectors
;
881 if (!ide_sect_range_ok(s
, sector_num
, n
)) {
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);
890 block_acct_start(blk_get_stats(s
->blk
), &s
->acct
,
891 n
* BDRV_SECTOR_SIZE
, BLOCK_ACCT_READ
);
892 s
->pio_aiocb
= blk_aio_writev(s
->blk
, sector_num
, &s
->qiov
, n
,
893 ide_sector_write_cb
, s
);
896 static void ide_flush_cb(void *opaque
, int ret
)
898 IDEState
*s
= opaque
;
902 if (ret
== -ECANCELED
) {
906 /* XXX: What sector number to set here? */
907 if (ide_handle_rw_error(s
, -ret
, IDE_RETRY_FLUSH
)) {
913 block_acct_done(blk_get_stats(s
->blk
), &s
->acct
);
915 s
->status
= READY_STAT
| SEEK_STAT
;
920 void ide_flush_cache(IDEState
*s
)
922 if (s
->blk
== NULL
) {
927 s
->status
|= BUSY_STAT
;
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
);
932 static void ide_cfata_metadata_inquiry(IDEState
*s
)
937 p
= (uint16_t *) s
->io_buffer
;
939 spd
= ((s
->mdata_size
- 1) >> 9) + 1;
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) */
950 static void ide_cfata_metadata_read(IDEState
*s
)
954 if (((s
->hcyl
<< 16) | s
->lcyl
) << 9 > s
->mdata_size
+ 2) {
955 s
->status
= ERR_STAT
;
960 p
= (uint16_t *) s
->io_buffer
;
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));
969 static void ide_cfata_metadata_write(IDEState
*s
)
971 if (((s
->hcyl
<< 16) | s
->lcyl
) << 9 > s
->mdata_size
+ 2) {
972 s
->status
= ERR_STAT
;
977 s
->media_changed
= 0;
979 memcpy(s
->mdata_storage
+ (((s
->hcyl
<< 16) | s
->lcyl
) << 9),
981 MIN(MIN(s
->mdata_size
- (((s
->hcyl
<< 16) | s
->lcyl
) << 9),
982 s
->nsector
<< 9), 0x200 - 2));
985 /* called when the inserted state of the media has changed */
986 static void ide_cd_change_cb(void *opaque
, bool load
)
988 IDEState
*s
= opaque
;
991 s
->tray_open
= !load
;
992 blk_get_geometry(s
->blk
, &nb_sectors
);
993 s
->nb_sectors
= nb_sectors
;
996 * First indicate to the guest that a CD has been removed. That's
997 * done on the next command the guest sends us.
999 * Then we set UNIT_ATTENTION, by which the guest will
1000 * detect a new CD in the drive. See ide_atapi_cmd() for details.
1002 s
->cdrom_changed
= 1;
1003 s
->events
.new_media
= true;
1004 s
->events
.eject_request
= false;
1005 ide_set_irq(s
->bus
);
1008 static void ide_cd_eject_request_cb(void *opaque
, bool force
)
1010 IDEState
*s
= opaque
;
1012 s
->events
.eject_request
= true;
1014 s
->tray_locked
= false;
1016 ide_set_irq(s
->bus
);
1019 static void ide_cmd_lba48_transform(IDEState
*s
, int lba48
)
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
1031 if (!s
->nsector
&& !s
->hob_nsector
)
1034 int lo
= s
->nsector
;
1035 int hi
= s
->hob_nsector
;
1037 s
->nsector
= (hi
<< 8) | lo
;
1042 static void ide_clear_hob(IDEBus
*bus
)
1044 /* any write clears HOB high bit of device control register */
1045 bus
->ifs
[0].select
&= ~(1 << 7);
1046 bus
->ifs
[1].select
&= ~(1 << 7);
1049 void ide_ioport_write(void *opaque
, uint32_t addr
, uint32_t val
)
1051 IDEBus
*bus
= opaque
;
1054 printf("IDE: write addr=0x%x val=0x%02x\n", addr
, val
);
1059 /* ignore writes to command block while busy with previous command */
1060 if (addr
!= 7 && (idebus_active_if(bus
)->status
& (BUSY_STAT
|DRQ_STAT
)))
1068 /* NOTE: data is written to the two drives */
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
;
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
;
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
;
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
;
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
;
1103 /* FIXME: HOB readback uses bit 7 */
1104 bus
->ifs
[0].select
= (val
& ~0x10) | 0xa0;
1105 bus
->ifs
[1].select
= (val
| 0x10) | 0xa0;
1107 bus
->unit
= (val
>> 4) & 1;
1112 ide_exec_cmd(bus
, val
);
1117 static bool cmd_nop(IDEState
*s
, uint8_t cmd
)
1122 static bool cmd_data_set_management(IDEState
*s
, uint8_t cmd
)
1124 switch (s
->feature
) {
1127 ide_sector_start_dma(s
, IDE_DMA_TRIM
);
1133 ide_abort_command(s
);
1137 static bool cmd_identify(IDEState
*s
, uint8_t cmd
)
1139 if (s
->blk
&& s
->drive_kind
!= IDE_CD
) {
1140 if (s
->drive_kind
!= IDE_CFATA
) {
1143 ide_cfata_identify(s
);
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
);
1150 if (s
->drive_kind
== IDE_CD
) {
1151 ide_set_signature(s
);
1153 ide_abort_command(s
);
1159 static bool cmd_verify(IDEState
*s
, uint8_t cmd
)
1161 bool lba48
= (cmd
== WIN_VERIFY_EXT
);
1163 /* do sector number check ? */
1164 ide_cmd_lba48_transform(s
, lba48
);
1169 static bool cmd_set_multiple_mode(IDEState
*s
, uint8_t cmd
)
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
);
1179 s
->mult_sectors
= s
->nsector
& 0xff;
1185 static bool cmd_read_multiple(IDEState
*s
, uint8_t cmd
)
1187 bool lba48
= (cmd
== WIN_MULTREAD_EXT
);
1189 if (!s
->blk
|| !s
->mult_sectors
) {
1190 ide_abort_command(s
);
1194 ide_cmd_lba48_transform(s
, lba48
);
1195 s
->req_nb_sectors
= s
->mult_sectors
;
1200 static bool cmd_write_multiple(IDEState
*s
, uint8_t cmd
)
1202 bool lba48
= (cmd
== WIN_MULTWRITE_EXT
);
1205 if (!s
->blk
|| !s
->mult_sectors
) {
1206 ide_abort_command(s
);
1210 ide_cmd_lba48_transform(s
, lba48
);
1212 s
->req_nb_sectors
= s
->mult_sectors
;
1213 n
= MIN(s
->nsector
, s
->req_nb_sectors
);
1215 s
->status
= SEEK_STAT
| READY_STAT
;
1216 ide_transfer_start(s
, s
->io_buffer
, 512 * n
, ide_sector_write
);
1218 s
->media_changed
= 1;
1223 static bool cmd_read_pio(IDEState
*s
, uint8_t cmd
)
1225 bool lba48
= (cmd
== WIN_READ_EXT
);
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
);
1234 ide_abort_command(s
);
1238 ide_cmd_lba48_transform(s
, lba48
);
1239 s
->req_nb_sectors
= 1;
1245 static bool cmd_write_pio(IDEState
*s
, uint8_t cmd
)
1247 bool lba48
= (cmd
== WIN_WRITE_EXT
);
1250 ide_abort_command(s
);
1254 ide_cmd_lba48_transform(s
, lba48
);
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
);
1260 s
->media_changed
= 1;
1265 static bool cmd_read_dma(IDEState
*s
, uint8_t cmd
)
1267 bool lba48
= (cmd
== WIN_READDMA_EXT
);
1270 ide_abort_command(s
);
1274 ide_cmd_lba48_transform(s
, lba48
);
1275 ide_sector_start_dma(s
, IDE_DMA_READ
);
1280 static bool cmd_write_dma(IDEState
*s
, uint8_t cmd
)
1282 bool lba48
= (cmd
== WIN_WRITEDMA_EXT
);
1285 ide_abort_command(s
);
1289 ide_cmd_lba48_transform(s
, lba48
);
1290 ide_sector_start_dma(s
, IDE_DMA_WRITE
);
1292 s
->media_changed
= 1;
1297 static bool cmd_flush_cache(IDEState
*s
, uint8_t cmd
)
1303 static bool cmd_seek(IDEState
*s
, uint8_t cmd
)
1305 /* XXX: Check that seek is within bounds */
1309 static bool cmd_read_native_max(IDEState
*s
, uint8_t cmd
)
1311 bool lba48
= (cmd
== WIN_READ_NATIVE_MAX_EXT
);
1313 /* Refuse if no sectors are addressable (e.g. medium not inserted) */
1314 if (s
->nb_sectors
== 0) {
1315 ide_abort_command(s
);
1319 ide_cmd_lba48_transform(s
, lba48
);
1320 ide_set_sector(s
, s
->nb_sectors
- 1);
1325 static bool cmd_check_power_mode(IDEState
*s
, uint8_t cmd
)
1327 s
->nsector
= 0xff; /* device active or idle */
1331 static bool cmd_set_features(IDEState
*s
, uint8_t cmd
)
1333 uint16_t *identify_data
;
1336 ide_abort_command(s
);
1340 /* XXX: valid for CDROM ? */
1341 switch (s
->feature
) {
1342 case 0x02: /* write cache enable */
1343 blk_set_enable_write_cache(s
->blk
, true);
1344 identify_data
= (uint16_t *)s
->identify_data
;
1345 put_le16(identify_data
+ 85, (1 << 14) | (1 << 5) | 1);
1347 case 0x82: /* write cache disable */
1348 blk_set_enable_write_cache(s
->blk
, false);
1349 identify_data
= (uint16_t *)s
->identify_data
;
1350 put_le16(identify_data
+ 85, (1 << 14) | 1);
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 */
1366 case 0x03: /* set transfer mode */
1368 uint8_t val
= s
->nsector
& 0x07;
1369 identify_data
= (uint16_t *)s
->identify_data
;
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);
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);
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);
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)));
1401 ide_abort_command(s
);
1406 /*** ATAPI commands ***/
1408 static bool cmd_identify_packet(IDEState
*s
, uint8_t cmd
)
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
);
1417 static bool cmd_exec_dev_diagnostic(IDEState
*s
, uint8_t cmd
)
1419 ide_set_signature(s
);
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. */
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. */
1432 ide_set_irq(s
->bus
);
1438 static bool cmd_device_reset(IDEState
*s
, uint8_t cmd
)
1440 ide_set_signature(s
);
1441 s
->status
= 0x00; /* NOTE: READY is _not_ set */
1447 static bool cmd_packet(IDEState
*s
, uint8_t cmd
)
1449 /* overlapping commands not supported */
1450 if (s
->feature
& 0x02) {
1451 ide_abort_command(s
);
1455 s
->status
= READY_STAT
| SEEK_STAT
;
1456 s
->atapi_dma
= s
->feature
& 1;
1458 ide_transfer_start(s
, s
->io_buffer
, ATAPI_PACKET_SIZE
,
1464 /*** CF-ATA commands ***/
1466 static bool cmd_cfa_req_ext_error_code(IDEState
*s
, uint8_t cmd
)
1468 s
->error
= 0x09; /* miscellaneous error */
1469 s
->status
= READY_STAT
| SEEK_STAT
;
1470 ide_set_irq(s
->bus
);
1475 static bool cmd_cfa_erase_sectors(IDEState
*s
, uint8_t cmd
)
1477 /* WIN_SECURITY_FREEZE_LOCK has the same ID as CFA_WEAR_LEVEL and is
1478 * required for Windows 8 to work with AHCI */
1480 if (cmd
== CFA_WEAR_LEVEL
) {
1484 if (cmd
== CFA_ERASE_SECTORS
) {
1485 s
->media_changed
= 1;
1491 static bool cmd_cfa_translate_sector(IDEState
*s
, uint8_t cmd
)
1493 s
->status
= READY_STAT
| SEEK_STAT
;
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 */
1508 ide_transfer_start(s
, s
->io_buffer
, 0x200, ide_transfer_stop
);
1509 ide_set_irq(s
->bus
);
1514 static bool cmd_cfa_access_metadata_storage(IDEState
*s
, uint8_t cmd
)
1516 switch (s
->feature
) {
1517 case 0x02: /* Inquiry Metadata Storage */
1518 ide_cfata_metadata_inquiry(s
);
1520 case 0x03: /* Read Metadata Storage */
1521 ide_cfata_metadata_read(s
);
1523 case 0x04: /* Write Metadata Storage */
1524 ide_cfata_metadata_write(s
);
1527 ide_abort_command(s
);
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
);
1538 static bool cmd_ibm_sense_condition(IDEState
*s
, uint8_t cmd
)
1540 switch (s
->feature
) {
1541 case 0x01: /* sense temperature in device */
1542 s
->nsector
= 0x50; /* +20 C */
1545 ide_abort_command(s
);
1553 /*** SMART commands ***/
1555 static bool cmd_smart(IDEState
*s
, uint8_t cmd
)
1559 if (s
->hcyl
!= 0xc2 || s
->lcyl
!= 0x4f) {
1563 if (!s
->smart_enabled
&& s
->feature
!= SMART_ENABLE
) {
1567 switch (s
->feature
) {
1569 s
->smart_enabled
= 0;
1573 s
->smart_enabled
= 1;
1576 case SMART_ATTR_AUTOSAVE
:
1577 switch (s
->sector
) {
1579 s
->smart_autosave
= 0;
1582 s
->smart_autosave
= 1;
1590 if (!s
->smart_errors
) {
1599 case SMART_READ_THRESH
:
1600 memset(s
->io_buffer
, 0, 0x200);
1601 s
->io_buffer
[0] = 0x01; /* smart struct version */
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];
1609 for (n
= 0; n
< 511; n
++) {
1610 s
->io_buffer
[511] += s
->io_buffer
[n
];
1612 s
->io_buffer
[511] = 0x100 - s
->io_buffer
[511];
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
);
1619 case SMART_READ_DATA
:
1620 memset(s
->io_buffer
, 0, 0x200);
1621 s
->io_buffer
[0] = 0x01; /* smart struct version */
1623 for (n
= 0; n
< ARRAY_SIZE(smart_attributes
); n
++) {
1625 for (i
= 0; i
< 11; i
++) {
1626 s
->io_buffer
[2 + i
+ (n
* 12)] = smart_attributes
[n
][i
];
1630 s
->io_buffer
[362] = 0x02 | (s
->smart_autosave
? 0x80 : 0x00);
1631 if (s
->smart_selftest_count
== 0) {
1632 s
->io_buffer
[363] = 0;
1635 s
->smart_selftest_data
[3 +
1636 (s
->smart_selftest_count
- 1) *
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 */
1650 for (n
= 0; n
< 511; n
++) {
1651 s
->io_buffer
[511] += s
->io_buffer
[n
];
1653 s
->io_buffer
[511] = 0x100 - s
->io_buffer
[511];
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
);
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;
1669 for (n
= 0; n
< 511; n
++) {
1670 s
->io_buffer
[511] += s
->io_buffer
[n
];
1672 s
->io_buffer
[511] = 0x100 - s
->io_buffer
[511];
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;
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
];
1686 for (n
= 0; n
< 511; n
++) {
1687 s
->io_buffer
[511] += s
->io_buffer
[n
];
1689 s
->io_buffer
[511] = 0x100 - s
->io_buffer
[511];
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
);
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) {
1706 s
->smart_selftest_count
= 1;
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 */
1721 ide_abort_command(s
);
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)
1731 /* Set the Disk Seek Completed status bit during completion */
1732 #define SET_DSC (1u << 8)
1734 /* See ACS-2 T13/2015-D Table B.2 Command codes */
1735 static const struct {
1736 /* Returns true if the completion code should be run */
1737 bool (*handler
)(IDEState
*s
, uint8_t cmd
);
1739 } ide_cmd_table
[0x100] = {
1740 /* NOP not implemented, mandatory for CD */
1741 [CFA_REQ_EXT_ERROR_CODE
] = { cmd_cfa_req_ext_error_code
, CFA_OK
},
1742 [WIN_DSM
] = { cmd_data_set_management
, ALL_OK
},
1743 [WIN_DEVICE_RESET
] = { cmd_device_reset
, CD_OK
},
1744 [WIN_RECAL
] = { cmd_nop
, HD_CFA_OK
| SET_DSC
},
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
},
1748 [WIN_READDMA_EXT
] = { cmd_read_dma
, HD_CFA_OK
},
1749 [WIN_READ_NATIVE_MAX_EXT
] = { cmd_read_native_max
, HD_CFA_OK
| SET_DSC
},
1750 [WIN_MULTREAD_EXT
] = { cmd_read_multiple
, HD_CFA_OK
},
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
},
1754 [WIN_WRITEDMA_EXT
] = { cmd_write_dma
, HD_CFA_OK
},
1755 [CFA_WRITE_SECT_WO_ERASE
] = { cmd_write_pio
, CFA_OK
},
1756 [WIN_MULTWRITE_EXT
] = { cmd_write_multiple
, HD_CFA_OK
},
1757 [WIN_WRITE_VERIFY
] = { cmd_write_pio
, HD_CFA_OK
},
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
},
1761 [WIN_SEEK
] = { cmd_seek
, HD_CFA_OK
| SET_DSC
},
1762 [CFA_TRANSLATE_SECTOR
] = { cmd_cfa_translate_sector
, CFA_OK
},
1763 [WIN_DIAGNOSE
] = { cmd_exec_dev_diagnostic
, ALL_OK
},
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
},
1769 [WIN_CHECKPOWERMODE2
] = { cmd_check_power_mode
, ALL_OK
| SET_DSC
},
1770 [WIN_SLEEPNOW2
] = { cmd_nop
, ALL_OK
},
1771 [WIN_PACKETCMD
] = { cmd_packet
, CD_OK
},
1772 [WIN_PIDENTIFY
] = { cmd_identify_packet
, CD_OK
},
1773 [WIN_SMART
] = { cmd_smart
, HD_CFA_OK
| SET_DSC
},
1774 [CFA_ACCESS_METADATA_STORAGE
] = { cmd_cfa_access_metadata_storage
, CFA_OK
},
1775 [CFA_ERASE_SECTORS
] = { cmd_cfa_erase_sectors
, CFA_OK
| SET_DSC
},
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
},
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
},
1783 [CFA_WRITE_MULTI_WO_ERASE
] = { cmd_write_multiple
, CFA_OK
},
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
},
1788 [WIN_CHECKPOWERMODE1
] = { cmd_check_power_mode
, ALL_OK
| SET_DSC
},
1789 [WIN_SLEEPNOW1
] = { cmd_nop
, ALL_OK
},
1790 [WIN_FLUSH_CACHE
] = { cmd_flush_cache
, ALL_OK
},
1791 [WIN_FLUSH_CACHE_EXT
] = { cmd_flush_cache
, HD_CFA_OK
},
1792 [WIN_IDENTIFY
] = { cmd_identify
, ALL_OK
},
1793 [WIN_SETFEATURES
] = { cmd_set_features
, ALL_OK
| SET_DSC
},
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
},
1796 [WIN_READ_NATIVE_MAX
] = { cmd_read_native_max
, ALL_OK
| SET_DSC
},
1799 static bool ide_cmd_permitted(IDEState
*s
, uint32_t cmd
)
1801 return cmd
< ARRAY_SIZE(ide_cmd_table
)
1802 && (ide_cmd_table
[cmd
].flags
& (1u << s
->drive_kind
));
1805 void ide_exec_cmd(IDEBus
*bus
, uint32_t val
)
1810 #if defined(DEBUG_IDE)
1811 printf("ide: CMD=%02x\n", val
);
1813 s
= idebus_active_if(bus
);
1814 /* ignore commands to non existent slave */
1815 if (s
!= bus
->ifs
&& !s
->blk
) {
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
)
1823 if (!ide_cmd_permitted(s
, val
)) {
1824 ide_abort_command(s
);
1825 ide_set_irq(s
->bus
);
1829 s
->status
= READY_STAT
| BUSY_STAT
;
1831 s
->io_buffer_offset
= 0;
1833 complete
= ide_cmd_table
[val
].handler(s
, val
);
1835 s
->status
&= ~BUSY_STAT
;
1836 assert(!!s
->error
== !!(s
->status
& ERR_STAT
));
1838 if ((ide_cmd_table
[val
].flags
& SET_DSC
) && !s
->error
) {
1839 s
->status
|= SEEK_STAT
;
1843 ide_set_irq(s
->bus
);
1847 uint32_t ide_ioport_read(void *opaque
, uint32_t addr1
)
1849 IDEBus
*bus
= opaque
;
1850 IDEState
*s
= idebus_active_if(bus
);
1855 /* FIXME: HOB readback uses bit 7, but it's always set right now */
1856 //hob = s->select & (1 << 7);
1863 if ((!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) ||
1864 (s
!= bus
->ifs
&& !s
->blk
)) {
1869 ret
= s
->hob_feature
;
1873 if (!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) {
1876 ret
= s
->nsector
& 0xff;
1878 ret
= s
->hob_nsector
;
1882 if (!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) {
1887 ret
= s
->hob_sector
;
1891 if (!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) {
1900 if (!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) {
1909 if (!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) {
1917 if ((!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) ||
1918 (s
!= bus
->ifs
&& !s
->blk
)) {
1923 qemu_irq_lower(bus
->irq
);
1927 printf("ide: read addr=0x%x val=%02x\n", addr1
, ret
);
1932 uint32_t ide_status_read(void *opaque
, uint32_t addr
)
1934 IDEBus
*bus
= opaque
;
1935 IDEState
*s
= idebus_active_if(bus
);
1938 if ((!bus
->ifs
[0].blk
&& !bus
->ifs
[1].blk
) ||
1939 (s
!= bus
->ifs
&& !s
->blk
)) {
1945 printf("ide: read status addr=0x%x val=%02x\n", addr
, ret
);
1950 void ide_cmd_write(void *opaque
, uint32_t addr
, uint32_t val
)
1952 IDEBus
*bus
= opaque
;
1957 printf("ide: write control addr=0x%x val=%02x\n", addr
, val
);
1959 /* common for both drives */
1960 if (!(bus
->cmd
& IDE_CMD_RESET
) &&
1961 (val
& IDE_CMD_RESET
)) {
1962 /* reset low to high */
1963 for(i
= 0;i
< 2; i
++) {
1965 s
->status
= BUSY_STAT
| SEEK_STAT
;
1968 } else if ((bus
->cmd
& IDE_CMD_RESET
) &&
1969 !(val
& IDE_CMD_RESET
)) {
1971 for(i
= 0;i
< 2; i
++) {
1973 if (s
->drive_kind
== IDE_CD
)
1974 s
->status
= 0x00; /* NOTE: READY is _not_ set */
1976 s
->status
= READY_STAT
| SEEK_STAT
;
1977 ide_set_signature(s
);
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
1988 static bool ide_is_pio_out(IDEState
*s
)
1990 if (s
->end_transfer_func
== ide_sector_write
||
1991 s
->end_transfer_func
== ide_atapi_cmd
) {
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
) {
2003 void ide_data_writew(void *opaque
, uint32_t addr
, uint32_t val
)
2005 IDEBus
*bus
= opaque
;
2006 IDEState
*s
= idebus_active_if(bus
);
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
)) {
2016 *(uint16_t *)p
= le16_to_cpu(val
);
2019 if (p
>= s
->data_end
)
2020 s
->end_transfer_func(s
);
2023 uint32_t ide_data_readw(void *opaque
, uint32_t addr
)
2025 IDEBus
*bus
= opaque
;
2026 IDEState
*s
= idebus_active_if(bus
);
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
)) {
2037 ret
= cpu_to_le16(*(uint16_t *)p
);
2040 if (p
>= s
->data_end
)
2041 s
->end_transfer_func(s
);
2045 void ide_data_writel(void *opaque
, uint32_t addr
, uint32_t val
)
2047 IDEBus
*bus
= opaque
;
2048 IDEState
*s
= idebus_active_if(bus
);
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
)) {
2058 *(uint32_t *)p
= le32_to_cpu(val
);
2061 if (p
>= s
->data_end
)
2062 s
->end_transfer_func(s
);
2065 uint32_t ide_data_readl(void *opaque
, uint32_t addr
)
2067 IDEBus
*bus
= opaque
;
2068 IDEState
*s
= idebus_active_if(bus
);
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
)) {
2079 ret
= cpu_to_le32(*(uint32_t *)p
);
2082 if (p
>= s
->data_end
)
2083 s
->end_transfer_func(s
);
2087 static void ide_dummy_transfer_stop(IDEState
*s
)
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;
2097 static void ide_reset(IDEState
*s
)
2100 printf("ide: reset\n");
2104 blk_aio_cancel(s
->pio_aiocb
);
2105 s
->pio_aiocb
= NULL
;
2108 if (s
->drive_kind
== IDE_CFATA
)
2109 s
->mult_sectors
= 0;
2111 s
->mult_sectors
= MAX_MULT_SECTORS
;
2128 s
->status
= READY_STAT
| SEEK_STAT
;
2132 /* ATAPI specific */
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;
2144 s
->io_buffer_size
= 0;
2145 s
->req_nb_sectors
= 0;
2147 ide_set_signature(s
);
2148 /* init the transfer handler so that 0xffff is returned on data
2150 s
->end_transfer_func
= ide_dummy_transfer_stop
;
2151 ide_dummy_transfer_stop(s
);
2152 s
->media_changed
= 0;
2155 void ide_bus_reset(IDEBus
*bus
)
2159 ide_reset(&bus
->ifs
[0]);
2160 ide_reset(&bus
->ifs
[1]);
2163 /* pending async DMA */
2164 if (bus
->dma
->aiocb
) {
2166 printf("aio_cancel\n");
2168 blk_aio_cancel(bus
->dma
->aiocb
);
2169 bus
->dma
->aiocb
= NULL
;
2172 /* reset dma provider too */
2173 if (bus
->dma
->ops
->reset
) {
2174 bus
->dma
->ops
->reset(bus
->dma
);
2178 static bool ide_cd_is_tray_open(void *opaque
)
2180 return ((IDEState
*)opaque
)->tray_open
;
2183 static bool ide_cd_is_medium_locked(void *opaque
)
2185 return ((IDEState
*)opaque
)->tray_locked
;
2188 static void ide_resize_cb(void *opaque
)
2190 IDEState
*s
= opaque
;
2191 uint64_t nb_sectors
;
2193 if (!s
->identify_set
) {
2197 blk_get_geometry(s
->blk
, &nb_sectors
);
2198 s
->nb_sectors
= nb_sectors
;
2200 /* Update the identify data buffer. */
2201 if (s
->drive_kind
== IDE_CFATA
) {
2202 ide_cfata_identify_size(s
);
2204 /* IDE_CD uses a different set of callbacks entirely. */
2205 assert(s
->drive_kind
!= IDE_CD
);
2206 ide_identify_size(s
);
2210 static const BlockDevOps ide_cd_block_ops
= {
2211 .change_media_cb
= ide_cd_change_cb
,
2212 .eject_request_cb
= ide_cd_eject_request_cb
,
2213 .is_tray_open
= ide_cd_is_tray_open
,
2214 .is_medium_locked
= ide_cd_is_medium_locked
,
2217 static const BlockDevOps ide_hd_block_ops
= {
2218 .resize_cb
= ide_resize_cb
,
2221 int ide_init_drive(IDEState
*s
, BlockBackend
*blk
, IDEDriveKind kind
,
2222 const char *version
, const char *serial
, const char *model
,
2224 uint32_t cylinders
, uint32_t heads
, uint32_t secs
,
2227 uint64_t nb_sectors
;
2230 s
->drive_kind
= kind
;
2232 blk_get_geometry(blk
, &nb_sectors
);
2233 s
->cylinders
= cylinders
;
2236 s
->chs_trans
= chs_trans
;
2237 s
->nb_sectors
= nb_sectors
;
2239 /* The SMART values should be preserved across power cycles
2241 s
->smart_enabled
= 1;
2242 s
->smart_autosave
= 1;
2243 s
->smart_errors
= 0;
2244 s
->smart_selftest_count
= 0;
2245 if (kind
== IDE_CD
) {
2246 blk_set_dev_ops(blk
, &ide_cd_block_ops
, s
);
2247 blk_set_guest_block_size(blk
, 2048);
2249 if (!blk_is_inserted(s
->blk
)) {
2250 error_report("Device needs media, but drive is empty");
2253 if (blk_is_read_only(blk
)) {
2254 error_report("Can't use a read-only drive");
2257 blk_set_dev_ops(blk
, &ide_hd_block_ops
, s
);
2260 pstrcpy(s
->drive_serial_str
, sizeof(s
->drive_serial_str
), serial
);
2262 snprintf(s
->drive_serial_str
, sizeof(s
->drive_serial_str
),
2263 "QM%05d", s
->drive_serial
);
2266 pstrcpy(s
->drive_model_str
, sizeof(s
->drive_model_str
), model
);
2270 strcpy(s
->drive_model_str
, "QEMU DVD-ROM");
2273 strcpy(s
->drive_model_str
, "QEMU MICRODRIVE");
2276 strcpy(s
->drive_model_str
, "QEMU HARDDISK");
2282 pstrcpy(s
->version
, sizeof(s
->version
), version
);
2284 pstrcpy(s
->version
, sizeof(s
->version
), qemu_get_version());
2288 blk_iostatus_enable(blk
);
2292 static void ide_init1(IDEBus
*bus
, int unit
)
2294 static int drive_serial
= 1;
2295 IDEState
*s
= &bus
->ifs
[unit
];
2299 s
->drive_serial
= drive_serial
++;
2300 /* we need at least 2k alignment for accessing CDROMs using O_DIRECT */
2301 s
->io_buffer_total_len
= IDE_DMA_BUF_SECTORS
*512 + 4;
2302 s
->io_buffer
= qemu_memalign(2048, s
->io_buffer_total_len
);
2303 memset(s
->io_buffer
, 0, s
->io_buffer_total_len
);
2305 s
->smart_selftest_data
= blk_blockalign(s
->blk
, 512);
2306 memset(s
->smart_selftest_data
, 0, 512);
2308 s
->sector_write_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
,
2309 ide_sector_write_timer_cb
, s
);
2312 static int ide_nop_int(IDEDMA
*dma
, int x
)
2317 static int32_t ide_nop_int32(IDEDMA
*dma
, int x
)
2322 static void ide_nop_restart(void *opaque
, int x
, RunState y
)
2326 static const IDEDMAOps ide_dma_nop_ops
= {
2327 .prepare_buf
= ide_nop_int32
,
2328 .rw_buf
= ide_nop_int
,
2329 .set_unit
= ide_nop_int
,
2330 .restart_cb
= ide_nop_restart
,
2333 static IDEDMA ide_dma_nop
= {
2334 .ops
= &ide_dma_nop_ops
,
2338 void ide_init2(IDEBus
*bus
, qemu_irq irq
)
2342 for(i
= 0; i
< 2; i
++) {
2344 ide_reset(&bus
->ifs
[i
]);
2347 bus
->dma
= &ide_dma_nop
;
2350 static const MemoryRegionPortio ide_portio_list
[] = {
2351 { 0, 8, 1, .read
= ide_ioport_read
, .write
= ide_ioport_write
},
2352 { 0, 2, 2, .read
= ide_data_readw
, .write
= ide_data_writew
},
2353 { 0, 4, 4, .read
= ide_data_readl
, .write
= ide_data_writel
},
2354 PORTIO_END_OF_LIST(),
2357 static const MemoryRegionPortio ide_portio2_list
[] = {
2358 { 0, 1, 1, .read
= ide_status_read
, .write
= ide_cmd_write
},
2359 PORTIO_END_OF_LIST(),
2362 void ide_init_ioport(IDEBus
*bus
, ISADevice
*dev
, int iobase
, int iobase2
)
2364 /* ??? Assume only ISA and PCI configurations, and that the PCI-ISA
2365 bridge has been setup properly to always register with ISA. */
2366 isa_register_portio_list(dev
, iobase
, ide_portio_list
, bus
, "ide");
2369 isa_register_portio_list(dev
, iobase2
, ide_portio2_list
, bus
, "ide");
2373 static bool is_identify_set(void *opaque
, int version_id
)
2375 IDEState
*s
= opaque
;
2377 return s
->identify_set
!= 0;
2380 static EndTransferFunc
* transfer_end_table
[] = {
2384 ide_atapi_cmd_reply_end
,
2386 ide_dummy_transfer_stop
,
2389 static int transfer_end_table_idx(EndTransferFunc
*fn
)
2393 for (i
= 0; i
< ARRAY_SIZE(transfer_end_table
); i
++)
2394 if (transfer_end_table
[i
] == fn
)
2400 static int ide_drive_post_load(void *opaque
, int version_id
)
2402 IDEState
*s
= opaque
;
2404 if (s
->blk
&& s
->identify_set
) {
2405 blk_set_enable_write_cache(s
->blk
, !!(s
->identify_data
[85] & (1 << 5)));
2410 static int ide_drive_pio_post_load(void *opaque
, int version_id
)
2412 IDEState
*s
= opaque
;
2414 if (s
->end_transfer_fn_idx
>= ARRAY_SIZE(transfer_end_table
)) {
2417 s
->end_transfer_func
= transfer_end_table
[s
->end_transfer_fn_idx
];
2418 s
->data_ptr
= s
->io_buffer
+ s
->cur_io_buffer_offset
;
2419 s
->data_end
= s
->data_ptr
+ s
->cur_io_buffer_len
;
2420 s
->atapi_dma
= s
->feature
& 1; /* as per cmd_packet */
2425 static void ide_drive_pio_pre_save(void *opaque
)
2427 IDEState
*s
= opaque
;
2430 s
->cur_io_buffer_offset
= s
->data_ptr
- s
->io_buffer
;
2431 s
->cur_io_buffer_len
= s
->data_end
- s
->data_ptr
;
2433 idx
= transfer_end_table_idx(s
->end_transfer_func
);
2435 fprintf(stderr
, "%s: invalid end_transfer_func for DRQ_STAT\n",
2437 s
->end_transfer_fn_idx
= 2;
2439 s
->end_transfer_fn_idx
= idx
;
2443 static bool ide_drive_pio_state_needed(void *opaque
)
2445 IDEState
*s
= opaque
;
2447 return ((s
->status
& DRQ_STAT
) != 0)
2448 || (s
->bus
->error_status
& IDE_RETRY_PIO
);
2451 static bool ide_tray_state_needed(void *opaque
)
2453 IDEState
*s
= opaque
;
2455 return s
->tray_open
|| s
->tray_locked
;
2458 static bool ide_atapi_gesn_needed(void *opaque
)
2460 IDEState
*s
= opaque
;
2462 return s
->events
.new_media
|| s
->events
.eject_request
;
2465 static bool ide_error_needed(void *opaque
)
2467 IDEBus
*bus
= opaque
;
2469 return (bus
->error_status
!= 0);
2472 /* Fields for GET_EVENT_STATUS_NOTIFICATION ATAPI command */
2473 static const VMStateDescription vmstate_ide_atapi_gesn_state
= {
2474 .name
="ide_drive/atapi/gesn_state",
2476 .minimum_version_id
= 1,
2477 .fields
= (VMStateField
[]) {
2478 VMSTATE_BOOL(events
.new_media
, IDEState
),
2479 VMSTATE_BOOL(events
.eject_request
, IDEState
),
2480 VMSTATE_END_OF_LIST()
2484 static const VMStateDescription vmstate_ide_tray_state
= {
2485 .name
= "ide_drive/tray_state",
2487 .minimum_version_id
= 1,
2488 .fields
= (VMStateField
[]) {
2489 VMSTATE_BOOL(tray_open
, IDEState
),
2490 VMSTATE_BOOL(tray_locked
, IDEState
),
2491 VMSTATE_END_OF_LIST()
2495 static const VMStateDescription vmstate_ide_drive_pio_state
= {
2496 .name
= "ide_drive/pio_state",
2498 .minimum_version_id
= 1,
2499 .pre_save
= ide_drive_pio_pre_save
,
2500 .post_load
= ide_drive_pio_post_load
,
2501 .fields
= (VMStateField
[]) {
2502 VMSTATE_INT32(req_nb_sectors
, IDEState
),
2503 VMSTATE_VARRAY_INT32(io_buffer
, IDEState
, io_buffer_total_len
, 1,
2504 vmstate_info_uint8
, uint8_t),
2505 VMSTATE_INT32(cur_io_buffer_offset
, IDEState
),
2506 VMSTATE_INT32(cur_io_buffer_len
, IDEState
),
2507 VMSTATE_UINT8(end_transfer_fn_idx
, IDEState
),
2508 VMSTATE_INT32(elementary_transfer_size
, IDEState
),
2509 VMSTATE_INT32(packet_transfer_size
, IDEState
),
2510 VMSTATE_END_OF_LIST()
2514 const VMStateDescription vmstate_ide_drive
= {
2515 .name
= "ide_drive",
2517 .minimum_version_id
= 0,
2518 .post_load
= ide_drive_post_load
,
2519 .fields
= (VMStateField
[]) {
2520 VMSTATE_INT32(mult_sectors
, IDEState
),
2521 VMSTATE_INT32(identify_set
, IDEState
),
2522 VMSTATE_BUFFER_TEST(identify_data
, IDEState
, is_identify_set
),
2523 VMSTATE_UINT8(feature
, IDEState
),
2524 VMSTATE_UINT8(error
, IDEState
),
2525 VMSTATE_UINT32(nsector
, IDEState
),
2526 VMSTATE_UINT8(sector
, IDEState
),
2527 VMSTATE_UINT8(lcyl
, IDEState
),
2528 VMSTATE_UINT8(hcyl
, IDEState
),
2529 VMSTATE_UINT8(hob_feature
, IDEState
),
2530 VMSTATE_UINT8(hob_sector
, IDEState
),
2531 VMSTATE_UINT8(hob_nsector
, IDEState
),
2532 VMSTATE_UINT8(hob_lcyl
, IDEState
),
2533 VMSTATE_UINT8(hob_hcyl
, IDEState
),
2534 VMSTATE_UINT8(select
, IDEState
),
2535 VMSTATE_UINT8(status
, IDEState
),
2536 VMSTATE_UINT8(lba48
, IDEState
),
2537 VMSTATE_UINT8(sense_key
, IDEState
),
2538 VMSTATE_UINT8(asc
, IDEState
),
2539 VMSTATE_UINT8_V(cdrom_changed
, IDEState
, 3),
2540 VMSTATE_END_OF_LIST()
2542 .subsections
= (VMStateSubsection
[]) {
2544 .vmsd
= &vmstate_ide_drive_pio_state
,
2545 .needed
= ide_drive_pio_state_needed
,
2547 .vmsd
= &vmstate_ide_tray_state
,
2548 .needed
= ide_tray_state_needed
,
2550 .vmsd
= &vmstate_ide_atapi_gesn_state
,
2551 .needed
= ide_atapi_gesn_needed
,
2558 static const VMStateDescription vmstate_ide_error_status
= {
2559 .name
="ide_bus/error",
2561 .minimum_version_id
= 1,
2562 .fields
= (VMStateField
[]) {
2563 VMSTATE_INT32(error_status
, IDEBus
),
2564 VMSTATE_END_OF_LIST()
2568 const VMStateDescription vmstate_ide_bus
= {
2571 .minimum_version_id
= 1,
2572 .fields
= (VMStateField
[]) {
2573 VMSTATE_UINT8(cmd
, IDEBus
),
2574 VMSTATE_UINT8(unit
, IDEBus
),
2575 VMSTATE_END_OF_LIST()
2577 .subsections
= (VMStateSubsection
[]) {
2579 .vmsd
= &vmstate_ide_error_status
,
2580 .needed
= ide_error_needed
,
2587 void ide_drive_get(DriveInfo
**hd
, int n
)
2590 int highest_bus
= drive_get_max_bus(IF_IDE
) + 1;
2591 int max_devs
= drive_get_max_devs(IF_IDE
);
2592 int n_buses
= max_devs
? (n
/ max_devs
) : n
;
2595 * Note: The number of actual buses available is not known.
2596 * We compute this based on the size of the DriveInfo* array, n.
2597 * If it is less than max_devs * <num_real_buses>,
2598 * We will stop looking for drives prematurely instead of overfilling
2602 if (highest_bus
> n_buses
) {
2603 error_report("Too many IDE buses defined (%d > %d)",
2604 highest_bus
, n_buses
);
2608 for (i
= 0; i
< n
; i
++) {
2609 hd
[i
] = drive_get_by_index(IF_IDE
, i
);