]>
Commit | Line | Data |
---|---|---|
acbe4801 KW |
1 | /* |
2 | * IDE test cases | |
3 | * | |
4 | * Copyright (c) 2013 Kevin Wolf <[email protected]> | |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
24 | ||
53239262 | 25 | #include "qemu/osdep.h" |
acbe4801 | 26 | |
acbe4801 | 27 | |
a2ce7dbd | 28 | #include "libqos/libqtest.h" |
72c85e94 | 29 | #include "libqos/libqos.h" |
b95739dc KW |
30 | #include "libqos/pci-pc.h" |
31 | #include "libqos/malloc-pc.h" | |
055a1efc | 32 | #include "qapi/qmp/qdict.h" |
acbe4801 | 33 | #include "qemu-common.h" |
58369e22 | 34 | #include "qemu/bswap.h" |
b95739dc KW |
35 | #include "hw/pci/pci_ids.h" |
36 | #include "hw/pci/pci_regs.h" | |
acbe4801 | 37 | |
055a1efc | 38 | /* TODO actually test the results and get rid of this */ |
4a61c3ab | 39 | #define qmp_discard_response(q, ...) qobject_unref(qtest_qmp(q, __VA_ARGS__)) |
055a1efc | 40 | |
acbe4801 KW |
41 | #define TEST_IMAGE_SIZE 64 * 1024 * 1024 |
42 | ||
43 | #define IDE_PCI_DEV 1 | |
44 | #define IDE_PCI_FUNC 1 | |
45 | ||
46 | #define IDE_BASE 0x1f0 | |
47 | #define IDE_PRIMARY_IRQ 14 | |
48 | ||
f7ba8d7f JS |
49 | #define ATAPI_BLOCK_SIZE 2048 |
50 | ||
51 | /* How many bytes to receive via ATAPI PIO at one time. | |
52 | * Must be less than 0xFFFF. */ | |
53 | #define BYTE_COUNT_LIMIT 5120 | |
54 | ||
acbe4801 KW |
55 | enum { |
56 | reg_data = 0x0, | |
00ea63fd | 57 | reg_feature = 0x1, |
29e1d473 | 58 | reg_error = 0x1, |
acbe4801 KW |
59 | reg_nsectors = 0x2, |
60 | reg_lba_low = 0x3, | |
61 | reg_lba_middle = 0x4, | |
62 | reg_lba_high = 0x5, | |
63 | reg_device = 0x6, | |
64 | reg_status = 0x7, | |
65 | reg_command = 0x7, | |
66 | }; | |
67 | ||
68 | enum { | |
69 | BSY = 0x80, | |
70 | DRDY = 0x40, | |
71 | DF = 0x20, | |
72 | DRQ = 0x08, | |
73 | ERR = 0x01, | |
74 | }; | |
75 | ||
29e1d473 AN |
76 | /* Error field */ |
77 | enum { | |
78 | ABRT = 0x04, | |
79 | }; | |
80 | ||
acbe4801 | 81 | enum { |
c27d5656 | 82 | DEV = 0x10, |
b95739dc KW |
83 | LBA = 0x40, |
84 | }; | |
85 | ||
86 | enum { | |
87 | bmreg_cmd = 0x0, | |
88 | bmreg_status = 0x2, | |
89 | bmreg_prdt = 0x4, | |
90 | }; | |
91 | ||
92 | enum { | |
29e1d473 | 93 | CMD_DSM = 0x06, |
b95739dc KW |
94 | CMD_READ_DMA = 0xc8, |
95 | CMD_WRITE_DMA = 0xca, | |
bd07684a | 96 | CMD_FLUSH_CACHE = 0xe7, |
acbe4801 | 97 | CMD_IDENTIFY = 0xec, |
f7ba8d7f | 98 | CMD_PACKET = 0xa0, |
948eaed1 KW |
99 | |
100 | CMDF_ABORT = 0x100, | |
d7b7e580 | 101 | CMDF_NO_BM = 0x200, |
acbe4801 KW |
102 | }; |
103 | ||
b95739dc KW |
104 | enum { |
105 | BM_CMD_START = 0x1, | |
106 | BM_CMD_WRITE = 0x8, /* write = from device to memory */ | |
107 | }; | |
108 | ||
109 | enum { | |
110 | BM_STS_ACTIVE = 0x1, | |
111 | BM_STS_ERROR = 0x2, | |
112 | BM_STS_INTR = 0x4, | |
113 | }; | |
114 | ||
115 | enum { | |
116 | PRDT_EOT = 0x80000000, | |
117 | }; | |
118 | ||
acbe4801 KW |
119 | #define assert_bit_set(data, mask) g_assert_cmphex((data) & (mask), ==, (mask)) |
120 | #define assert_bit_clear(data, mask) g_assert_cmphex((data) & (mask), ==, 0) | |
121 | ||
b95739dc | 122 | static QPCIBus *pcibus = NULL; |
eb5937ba | 123 | static QGuestAllocator guest_malloc; |
b95739dc | 124 | |
acbe4801 | 125 | static char tmp_path[] = "/tmp/qtest.XXXXXX"; |
14a92e5f | 126 | static char debug_path[] = "/tmp/qtest-blkdebug.XXXXXX"; |
acbe4801 | 127 | |
4a61c3ab | 128 | static QTestState *ide_test_start(const char *cmdline_fmt, ...) |
acbe4801 | 129 | { |
4a61c3ab | 130 | QTestState *qts; |
acbe4801 | 131 | va_list ap; |
acbe4801 KW |
132 | |
133 | va_start(ap, cmdline_fmt); | |
4a61c3ab | 134 | qts = qtest_vinitf(cmdline_fmt, ap); |
acbe4801 KW |
135 | va_end(ap); |
136 | ||
4a61c3ab | 137 | pc_alloc_init(&guest_malloc, qts, 0); |
e42de189 | 138 | |
4a61c3ab | 139 | return qts; |
acbe4801 KW |
140 | } |
141 | ||
4a61c3ab | 142 | static void ide_test_quit(QTestState *qts) |
acbe4801 | 143 | { |
3b6b0a8a TH |
144 | if (pcibus) { |
145 | qpci_free_pc(pcibus); | |
146 | pcibus = NULL; | |
147 | } | |
eb5937ba | 148 | alloc_destroy(&guest_malloc); |
4a61c3ab | 149 | qtest_quit(qts); |
acbe4801 KW |
150 | } |
151 | ||
4a61c3ab TH |
152 | static QPCIDevice *get_pci_device(QTestState *qts, QPCIBar *bmdma_bar, |
153 | QPCIBar *ide_bar) | |
b95739dc KW |
154 | { |
155 | QPCIDevice *dev; | |
156 | uint16_t vendor_id, device_id; | |
157 | ||
158 | if (!pcibus) { | |
4a61c3ab | 159 | pcibus = qpci_new_pc(qts, NULL); |
b95739dc KW |
160 | } |
161 | ||
162 | /* Find PCI device and verify it's the right one */ | |
163 | dev = qpci_device_find(pcibus, QPCI_DEVFN(IDE_PCI_DEV, IDE_PCI_FUNC)); | |
164 | g_assert(dev != NULL); | |
165 | ||
166 | vendor_id = qpci_config_readw(dev, PCI_VENDOR_ID); | |
167 | device_id = qpci_config_readw(dev, PCI_DEVICE_ID); | |
168 | g_assert(vendor_id == PCI_VENDOR_ID_INTEL); | |
169 | g_assert(device_id == PCI_DEVICE_ID_INTEL_82371SB_1); | |
170 | ||
171 | /* Map bmdma BAR */ | |
b4ba67d9 | 172 | *bmdma_bar = qpci_iomap(dev, 4, NULL); |
9c268f8a | 173 | |
b4ba67d9 | 174 | *ide_bar = qpci_legacy_iomap(dev, IDE_BASE); |
b95739dc KW |
175 | |
176 | qpci_device_enable(dev); | |
177 | ||
178 | return dev; | |
179 | } | |
180 | ||
181 | static void free_pci_device(QPCIDevice *dev) | |
182 | { | |
183 | /* libqos doesn't have a function for this, so free it manually */ | |
184 | g_free(dev); | |
185 | } | |
186 | ||
187 | typedef struct PrdtEntry { | |
188 | uint32_t addr; | |
189 | uint32_t size; | |
190 | } QEMU_PACKED PrdtEntry; | |
191 | ||
192 | #define assert_bit_set(data, mask) g_assert_cmphex((data) & (mask), ==, (mask)) | |
193 | #define assert_bit_clear(data, mask) g_assert_cmphex((data) & (mask), ==, 0) | |
194 | ||
29e1d473 AN |
195 | static uint64_t trim_range_le(uint64_t sector, uint16_t count) |
196 | { | |
197 | /* 2-byte range, 6-byte LBA */ | |
198 | return cpu_to_le64(((uint64_t)count << 48) + sector); | |
199 | } | |
200 | ||
4a61c3ab TH |
201 | static int send_dma_request(QTestState *qts, int cmd, uint64_t sector, |
202 | int nb_sectors, PrdtEntry *prdt, int prdt_entries, | |
b4ba67d9 | 203 | void(*post_exec)(QPCIDevice *dev, QPCIBar ide_bar, |
9c268f8a | 204 | uint64_t sector, int nb_sectors)) |
b95739dc KW |
205 | { |
206 | QPCIDevice *dev; | |
b4ba67d9 | 207 | QPCIBar bmdma_bar, ide_bar; |
b95739dc KW |
208 | uintptr_t guest_prdt; |
209 | size_t len; | |
210 | bool from_dev; | |
211 | uint8_t status; | |
948eaed1 | 212 | int flags; |
b95739dc | 213 | |
4a61c3ab | 214 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
b95739dc | 215 | |
948eaed1 KW |
216 | flags = cmd & ~0xff; |
217 | cmd &= 0xff; | |
218 | ||
b95739dc KW |
219 | switch (cmd) { |
220 | case CMD_READ_DMA: | |
00ea63fd JS |
221 | case CMD_PACKET: |
222 | /* Assuming we only test data reads w/ ATAPI, otherwise we need to know | |
223 | * the SCSI command being sent in the packet, too. */ | |
b95739dc KW |
224 | from_dev = true; |
225 | break; | |
29e1d473 | 226 | case CMD_DSM: |
b95739dc KW |
227 | case CMD_WRITE_DMA: |
228 | from_dev = false; | |
229 | break; | |
230 | default: | |
231 | g_assert_not_reached(); | |
232 | } | |
233 | ||
d7b7e580 KW |
234 | if (flags & CMDF_NO_BM) { |
235 | qpci_config_writew(dev, PCI_COMMAND, | |
236 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY); | |
237 | } | |
238 | ||
b95739dc | 239 | /* Select device 0 */ |
b4ba67d9 | 240 | qpci_io_writeb(dev, ide_bar, reg_device, 0 | LBA); |
b95739dc KW |
241 | |
242 | /* Stop any running transfer, clear any pending interrupt */ | |
b4ba67d9 DG |
243 | qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); |
244 | qpci_io_writeb(dev, bmdma_bar, bmreg_status, BM_STS_INTR); | |
b95739dc KW |
245 | |
246 | /* Setup PRDT */ | |
247 | len = sizeof(*prdt) * prdt_entries; | |
eb5937ba | 248 | guest_prdt = guest_alloc(&guest_malloc, len); |
4a61c3ab | 249 | qtest_memwrite(qts, guest_prdt, prdt, len); |
b4ba67d9 | 250 | qpci_io_writel(dev, bmdma_bar, bmreg_prdt, guest_prdt); |
b95739dc KW |
251 | |
252 | /* ATA DMA command */ | |
00ea63fd JS |
253 | if (cmd == CMD_PACKET) { |
254 | /* Enables ATAPI DMA; otherwise PIO is attempted */ | |
b4ba67d9 | 255 | qpci_io_writeb(dev, ide_bar, reg_feature, 0x01); |
00ea63fd | 256 | } else { |
29e1d473 AN |
257 | if (cmd == CMD_DSM) { |
258 | /* trim bit */ | |
259 | qpci_io_writeb(dev, ide_bar, reg_feature, 0x01); | |
260 | } | |
b4ba67d9 DG |
261 | qpci_io_writeb(dev, ide_bar, reg_nsectors, nb_sectors); |
262 | qpci_io_writeb(dev, ide_bar, reg_lba_low, sector & 0xff); | |
263 | qpci_io_writeb(dev, ide_bar, reg_lba_middle, (sector >> 8) & 0xff); | |
264 | qpci_io_writeb(dev, ide_bar, reg_lba_high, (sector >> 16) & 0xff); | |
00ea63fd | 265 | } |
b95739dc | 266 | |
b4ba67d9 | 267 | qpci_io_writeb(dev, ide_bar, reg_command, cmd); |
b95739dc | 268 | |
00ea63fd | 269 | if (post_exec) { |
b4ba67d9 | 270 | post_exec(dev, ide_bar, sector, nb_sectors); |
00ea63fd JS |
271 | } |
272 | ||
b95739dc | 273 | /* Start DMA transfer */ |
b4ba67d9 | 274 | qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, |
9c268f8a | 275 | BM_CMD_START | (from_dev ? BM_CMD_WRITE : 0)); |
b95739dc | 276 | |
948eaed1 | 277 | if (flags & CMDF_ABORT) { |
b4ba67d9 | 278 | qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); |
948eaed1 KW |
279 | } |
280 | ||
b95739dc KW |
281 | /* Wait for the DMA transfer to complete */ |
282 | do { | |
b4ba67d9 | 283 | status = qpci_io_readb(dev, bmdma_bar, bmreg_status); |
b95739dc KW |
284 | } while ((status & (BM_STS_ACTIVE | BM_STS_INTR)) == BM_STS_ACTIVE); |
285 | ||
4a61c3ab TH |
286 | g_assert_cmpint(qtest_get_irq(qts, IDE_PRIMARY_IRQ), ==, |
287 | !!(status & BM_STS_INTR)); | |
b95739dc KW |
288 | |
289 | /* Check IDE status code */ | |
b4ba67d9 DG |
290 | assert_bit_set(qpci_io_readb(dev, ide_bar, reg_status), DRDY); |
291 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), BSY | DRQ); | |
b95739dc KW |
292 | |
293 | /* Reading the status register clears the IRQ */ | |
4a61c3ab | 294 | g_assert(!qtest_get_irq(qts, IDE_PRIMARY_IRQ)); |
b95739dc KW |
295 | |
296 | /* Stop DMA transfer if still active */ | |
297 | if (status & BM_STS_ACTIVE) { | |
b4ba67d9 | 298 | qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); |
b95739dc KW |
299 | } |
300 | ||
301 | free_pci_device(dev); | |
302 | ||
303 | return status; | |
304 | } | |
305 | ||
4a61c3ab TH |
306 | static QTestState *test_bmdma_setup(void) |
307 | { | |
308 | QTestState *qts; | |
309 | ||
310 | qts = ide_test_start( | |
311 | "-drive file=%s,if=ide,cache=writeback,format=raw " | |
312 | "-global ide-hd.serial=%s -global ide-hd.ver=%s", | |
313 | tmp_path, "testdisk", "version"); | |
314 | qtest_irq_intercept_in(qts, "ioapic"); | |
315 | ||
316 | return qts; | |
317 | } | |
318 | ||
319 | static void test_bmdma_teardown(QTestState *qts) | |
320 | { | |
321 | ide_test_quit(qts); | |
322 | } | |
323 | ||
b95739dc KW |
324 | static void test_bmdma_simple_rw(void) |
325 | { | |
4a61c3ab | 326 | QTestState *qts; |
9c268f8a | 327 | QPCIDevice *dev; |
b4ba67d9 | 328 | QPCIBar bmdma_bar, ide_bar; |
b95739dc KW |
329 | uint8_t status; |
330 | uint8_t *buf; | |
331 | uint8_t *cmpbuf; | |
332 | size_t len = 512; | |
4a61c3ab TH |
333 | uintptr_t guest_buf; |
334 | PrdtEntry prdt[1]; | |
b95739dc | 335 | |
4a61c3ab TH |
336 | qts = test_bmdma_setup(); |
337 | ||
338 | guest_buf = guest_alloc(&guest_malloc, len); | |
339 | prdt[0].addr = cpu_to_le32(guest_buf); | |
340 | prdt[0].size = cpu_to_le32(len | PRDT_EOT); | |
b95739dc | 341 | |
4a61c3ab | 342 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 343 | |
b95739dc KW |
344 | buf = g_malloc(len); |
345 | cmpbuf = g_malloc(len); | |
346 | ||
347 | /* Write 0x55 pattern to sector 0 */ | |
348 | memset(buf, 0x55, len); | |
4a61c3ab | 349 | qtest_memwrite(qts, guest_buf, buf, len); |
b95739dc | 350 | |
4a61c3ab | 351 | status = send_dma_request(qts, CMD_WRITE_DMA, 0, 1, prdt, |
00ea63fd | 352 | ARRAY_SIZE(prdt), NULL); |
b95739dc | 353 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 354 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc KW |
355 | |
356 | /* Write 0xaa pattern to sector 1 */ | |
357 | memset(buf, 0xaa, len); | |
4a61c3ab | 358 | qtest_memwrite(qts, guest_buf, buf, len); |
b95739dc | 359 | |
4a61c3ab | 360 | status = send_dma_request(qts, CMD_WRITE_DMA, 1, 1, prdt, |
00ea63fd | 361 | ARRAY_SIZE(prdt), NULL); |
b95739dc | 362 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 363 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc KW |
364 | |
365 | /* Read and verify 0x55 pattern in sector 0 */ | |
366 | memset(cmpbuf, 0x55, len); | |
367 | ||
4a61c3ab TH |
368 | status = send_dma_request(qts, CMD_READ_DMA, 0, 1, prdt, ARRAY_SIZE(prdt), |
369 | NULL); | |
b95739dc | 370 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 371 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc | 372 | |
4a61c3ab | 373 | qtest_memread(qts, guest_buf, buf, len); |
b95739dc KW |
374 | g_assert(memcmp(buf, cmpbuf, len) == 0); |
375 | ||
376 | /* Read and verify 0xaa pattern in sector 1 */ | |
377 | memset(cmpbuf, 0xaa, len); | |
378 | ||
4a61c3ab TH |
379 | status = send_dma_request(qts, CMD_READ_DMA, 1, 1, prdt, ARRAY_SIZE(prdt), |
380 | NULL); | |
b95739dc | 381 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 382 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc | 383 | |
4a61c3ab | 384 | qtest_memread(qts, guest_buf, buf, len); |
b95739dc KW |
385 | g_assert(memcmp(buf, cmpbuf, len) == 0); |
386 | ||
f5aa4bdc | 387 | free_pci_device(dev); |
b95739dc KW |
388 | g_free(buf); |
389 | g_free(cmpbuf); | |
4a61c3ab TH |
390 | |
391 | test_bmdma_teardown(qts); | |
b95739dc KW |
392 | } |
393 | ||
29e1d473 AN |
394 | static void test_bmdma_trim(void) |
395 | { | |
4a61c3ab | 396 | QTestState *qts; |
29e1d473 AN |
397 | QPCIDevice *dev; |
398 | QPCIBar bmdma_bar, ide_bar; | |
399 | uint8_t status; | |
400 | const uint64_t trim_range[] = { trim_range_le(0, 2), | |
401 | trim_range_le(6, 8), | |
402 | trim_range_le(10, 1), | |
403 | }; | |
404 | const uint64_t bad_range = trim_range_le(TEST_IMAGE_SIZE / 512 - 1, 2); | |
405 | size_t len = 512; | |
406 | uint8_t *buf; | |
4a61c3ab TH |
407 | uintptr_t guest_buf; |
408 | PrdtEntry prdt[1]; | |
29e1d473 | 409 | |
4a61c3ab TH |
410 | qts = test_bmdma_setup(); |
411 | ||
412 | guest_buf = guest_alloc(&guest_malloc, len); | |
413 | prdt[0].addr = cpu_to_le32(guest_buf), | |
414 | prdt[0].size = cpu_to_le32(len | PRDT_EOT), | |
29e1d473 | 415 | |
4a61c3ab | 416 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
29e1d473 AN |
417 | |
418 | buf = g_malloc(len); | |
419 | ||
420 | /* Normal request */ | |
421 | *((uint64_t *)buf) = trim_range[0]; | |
422 | *((uint64_t *)buf + 1) = trim_range[1]; | |
423 | ||
4a61c3ab | 424 | qtest_memwrite(qts, guest_buf, buf, 2 * sizeof(uint64_t)); |
29e1d473 | 425 | |
4a61c3ab | 426 | status = send_dma_request(qts, CMD_DSM, 0, 1, prdt, |
29e1d473 AN |
427 | ARRAY_SIZE(prdt), NULL); |
428 | g_assert_cmphex(status, ==, BM_STS_INTR); | |
429 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | |
430 | ||
431 | /* Request contains invalid range */ | |
432 | *((uint64_t *)buf) = trim_range[2]; | |
433 | *((uint64_t *)buf + 1) = bad_range; | |
434 | ||
4a61c3ab | 435 | qtest_memwrite(qts, guest_buf, buf, 2 * sizeof(uint64_t)); |
29e1d473 | 436 | |
4a61c3ab | 437 | status = send_dma_request(qts, CMD_DSM, 0, 1, prdt, |
29e1d473 AN |
438 | ARRAY_SIZE(prdt), NULL); |
439 | g_assert_cmphex(status, ==, BM_STS_INTR); | |
440 | assert_bit_set(qpci_io_readb(dev, ide_bar, reg_status), ERR); | |
441 | assert_bit_set(qpci_io_readb(dev, ide_bar, reg_error), ABRT); | |
442 | ||
443 | free_pci_device(dev); | |
444 | g_free(buf); | |
4a61c3ab | 445 | test_bmdma_teardown(qts); |
29e1d473 AN |
446 | } |
447 | ||
59805ae9 AP |
448 | /* |
449 | * This test is developed according to the Programming Interface for | |
450 | * Bus Master IDE Controller (Revision 1.0 5/16/94) | |
451 | */ | |
452 | static void test_bmdma_various_prdts(void) | |
948eaed1 | 453 | { |
59805ae9 AP |
454 | int sectors = 0; |
455 | uint32_t size = 0; | |
456 | ||
457 | for (sectors = 1; sectors <= 256; sectors *= 2) { | |
458 | QTestState *qts = NULL; | |
459 | QPCIDevice *dev = NULL; | |
460 | QPCIBar bmdma_bar, ide_bar; | |
461 | ||
462 | qts = test_bmdma_setup(); | |
463 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | |
464 | ||
465 | for (size = 0; size < 65536; size += 256) { | |
466 | uint32_t req_size = sectors * 512; | |
467 | uint32_t prd_size = size & 0xfffe; /* bit 0 is always set to 0 */ | |
468 | uint8_t ret = 0; | |
469 | uint8_t req_status = 0; | |
470 | uint8_t abort_req_status = 0; | |
471 | PrdtEntry prdt[] = { | |
472 | { | |
473 | .addr = 0, | |
474 | .size = cpu_to_le32(size | PRDT_EOT), | |
475 | }, | |
476 | }; | |
477 | ||
478 | /* A value of zero in PRD size indicates 64K */ | |
479 | if (prd_size == 0) { | |
480 | prd_size = 65536; | |
481 | } | |
482 | ||
483 | /* | |
484 | * 1. If PRDs specified a smaller size than the IDE transfer | |
485 | * size, then the Interrupt and Active bits in the Controller | |
486 | * status register are not set (Error Condition). | |
487 | * | |
488 | * 2. If the size of the physical memory regions was equal to | |
489 | * the IDE device transfer size, the Interrupt bit in the | |
490 | * Controller status register is set to 1, Active bit is set to 0. | |
491 | * | |
492 | * 3. If PRDs specified a larger size than the IDE transfer size, | |
493 | * the Interrupt and Active bits in the Controller status register | |
494 | * are both set to 1. | |
495 | */ | |
496 | if (prd_size < req_size) { | |
497 | req_status = 0; | |
498 | abort_req_status = 0; | |
499 | } else if (prd_size == req_size) { | |
500 | req_status = BM_STS_INTR; | |
501 | abort_req_status = BM_STS_INTR; | |
502 | } else { | |
503 | req_status = BM_STS_ACTIVE | BM_STS_INTR; | |
504 | abort_req_status = BM_STS_INTR; | |
505 | } | |
506 | ||
507 | /* Test the request */ | |
508 | ret = send_dma_request(qts, CMD_READ_DMA, 0, sectors, | |
509 | prdt, ARRAY_SIZE(prdt), NULL); | |
510 | g_assert_cmphex(ret, ==, req_status); | |
511 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | |
512 | ||
513 | /* Now test aborting the same request */ | |
514 | ret = send_dma_request(qts, CMD_READ_DMA | CMDF_ABORT, 0, | |
515 | sectors, prdt, ARRAY_SIZE(prdt), NULL); | |
516 | g_assert_cmphex(ret, ==, abort_req_status); | |
517 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | |
518 | } | |
948eaed1 | 519 | |
59805ae9 AP |
520 | free_pci_device(dev); |
521 | test_bmdma_teardown(qts); | |
522 | } | |
948eaed1 KW |
523 | } |
524 | ||
d7b7e580 KW |
525 | static void test_bmdma_no_busmaster(void) |
526 | { | |
4a61c3ab | 527 | QTestState *qts; |
9c268f8a | 528 | QPCIDevice *dev; |
b4ba67d9 | 529 | QPCIBar bmdma_bar, ide_bar; |
d7b7e580 KW |
530 | uint8_t status; |
531 | ||
4a61c3ab TH |
532 | qts = test_bmdma_setup(); |
533 | ||
534 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | |
9c268f8a | 535 | |
d7b7e580 KW |
536 | /* No PRDT_EOT, each entry addr 0/size 64k, and in theory qemu shouldn't be |
537 | * able to access it anyway because the Bus Master bit in the PCI command | |
538 | * register isn't set. This is complete nonsense, but it used to be pretty | |
539 | * good at confusing and occasionally crashing qemu. */ | |
540 | PrdtEntry prdt[4096] = { }; | |
541 | ||
4a61c3ab | 542 | status = send_dma_request(qts, CMD_READ_DMA | CMDF_NO_BM, 0, 512, |
00ea63fd | 543 | prdt, ARRAY_SIZE(prdt), NULL); |
d7b7e580 KW |
544 | |
545 | /* Not entirely clear what the expected result is, but this is what we get | |
546 | * in practice. At least we want to be aware of any changes. */ | |
547 | g_assert_cmphex(status, ==, BM_STS_ACTIVE | BM_STS_INTR); | |
b4ba67d9 | 548 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
f5aa4bdc | 549 | free_pci_device(dev); |
4a61c3ab | 550 | test_bmdma_teardown(qts); |
b95739dc KW |
551 | } |
552 | ||
262f27b9 KW |
553 | static void string_cpu_to_be16(uint16_t *s, size_t bytes) |
554 | { | |
555 | g_assert((bytes & 1) == 0); | |
556 | bytes /= 2; | |
557 | ||
558 | while (bytes--) { | |
559 | *s = cpu_to_be16(*s); | |
560 | s++; | |
561 | } | |
562 | } | |
563 | ||
acbe4801 KW |
564 | static void test_identify(void) |
565 | { | |
4a61c3ab | 566 | QTestState *qts; |
9c268f8a | 567 | QPCIDevice *dev; |
b4ba67d9 | 568 | QPCIBar bmdma_bar, ide_bar; |
acbe4801 KW |
569 | uint8_t data; |
570 | uint16_t buf[256]; | |
571 | int i; | |
572 | int ret; | |
573 | ||
4a61c3ab | 574 | qts = ide_test_start( |
572023f7 KW |
575 | "-drive file=%s,if=ide,cache=writeback,format=raw " |
576 | "-global ide-hd.serial=%s -global ide-hd.ver=%s", | |
acbe4801 KW |
577 | tmp_path, "testdisk", "version"); |
578 | ||
4a61c3ab | 579 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 580 | |
acbe4801 | 581 | /* IDENTIFY command on device 0*/ |
b4ba67d9 DG |
582 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
583 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_IDENTIFY); | |
acbe4801 KW |
584 | |
585 | /* Read in the IDENTIFY buffer and check registers */ | |
b4ba67d9 | 586 | data = qpci_io_readb(dev, ide_bar, reg_device); |
c27d5656 | 587 | g_assert_cmpint(data & DEV, ==, 0); |
acbe4801 KW |
588 | |
589 | for (i = 0; i < 256; i++) { | |
b4ba67d9 | 590 | data = qpci_io_readb(dev, ide_bar, reg_status); |
acbe4801 KW |
591 | assert_bit_set(data, DRDY | DRQ); |
592 | assert_bit_clear(data, BSY | DF | ERR); | |
593 | ||
b4ba67d9 | 594 | buf[i] = qpci_io_readw(dev, ide_bar, reg_data); |
acbe4801 KW |
595 | } |
596 | ||
b4ba67d9 | 597 | data = qpci_io_readb(dev, ide_bar, reg_status); |
acbe4801 KW |
598 | assert_bit_set(data, DRDY); |
599 | assert_bit_clear(data, BSY | DF | ERR | DRQ); | |
600 | ||
601 | /* Check serial number/version in the buffer */ | |
262f27b9 KW |
602 | string_cpu_to_be16(&buf[10], 20); |
603 | ret = memcmp(&buf[10], "testdisk ", 20); | |
acbe4801 KW |
604 | g_assert(ret == 0); |
605 | ||
262f27b9 KW |
606 | string_cpu_to_be16(&buf[23], 8); |
607 | ret = memcmp(&buf[23], "version ", 8); | |
acbe4801 KW |
608 | g_assert(ret == 0); |
609 | ||
610 | /* Write cache enabled bit */ | |
611 | assert_bit_set(buf[85], 0x20); | |
612 | ||
4a61c3ab | 613 | ide_test_quit(qts); |
f5aa4bdc | 614 | free_pci_device(dev); |
acbe4801 KW |
615 | } |
616 | ||
2dd7e10d EY |
617 | /* |
618 | * Write sector 1 with random data to make IDE storage dirty | |
619 | * Needed for flush tests so that flushes actually go though the block layer | |
620 | */ | |
4a61c3ab | 621 | static void make_dirty(QTestState *qts, uint8_t device) |
2dd7e10d | 622 | { |
9c268f8a | 623 | QPCIDevice *dev; |
b4ba67d9 | 624 | QPCIBar bmdma_bar, ide_bar; |
2dd7e10d EY |
625 | uint8_t status; |
626 | size_t len = 512; | |
627 | uintptr_t guest_buf; | |
628 | void* buf; | |
629 | ||
4a61c3ab | 630 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 631 | |
eb5937ba | 632 | guest_buf = guest_alloc(&guest_malloc, len); |
2dd7e10d | 633 | buf = g_malloc(len); |
6048018e | 634 | memset(buf, rand() % 255 + 1, len); |
2dd7e10d EY |
635 | g_assert(guest_buf); |
636 | g_assert(buf); | |
637 | ||
4a61c3ab | 638 | qtest_memwrite(qts, guest_buf, buf, len); |
2dd7e10d EY |
639 | |
640 | PrdtEntry prdt[] = { | |
641 | { | |
642 | .addr = cpu_to_le32(guest_buf), | |
643 | .size = cpu_to_le32(len | PRDT_EOT), | |
644 | }, | |
645 | }; | |
646 | ||
4a61c3ab | 647 | status = send_dma_request(qts, CMD_WRITE_DMA, 1, 1, prdt, |
2dd7e10d EY |
648 | ARRAY_SIZE(prdt), NULL); |
649 | g_assert_cmphex(status, ==, BM_STS_INTR); | |
b4ba67d9 | 650 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
2dd7e10d EY |
651 | |
652 | g_free(buf); | |
f5aa4bdc | 653 | free_pci_device(dev); |
2dd7e10d EY |
654 | } |
655 | ||
bd07684a KW |
656 | static void test_flush(void) |
657 | { | |
4a61c3ab | 658 | QTestState *qts; |
9c268f8a | 659 | QPCIDevice *dev; |
b4ba67d9 | 660 | QPCIBar bmdma_bar, ide_bar; |
bd07684a KW |
661 | uint8_t data; |
662 | ||
4a61c3ab | 663 | qts = ide_test_start( |
b8e665e4 | 664 | "-drive file=blkdebug::%s,if=ide,cache=writeback,format=raw", |
bd07684a KW |
665 | tmp_path); |
666 | ||
4a61c3ab | 667 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 668 | |
4a61c3ab | 669 | qtest_irq_intercept_in(qts, "ioapic"); |
2dd7e10d EY |
670 | |
671 | /* Dirty media so that CMD_FLUSH_CACHE will actually go to disk */ | |
4a61c3ab | 672 | make_dirty(qts, 0); |
2dd7e10d | 673 | |
bd07684a | 674 | /* Delay the completion of the flush request until we explicitly do it */ |
4a61c3ab | 675 | g_free(qtest_hmp(qts, "qemu-io ide0-hd0 \"break flush_to_os A\"")); |
bd07684a KW |
676 | |
677 | /* FLUSH CACHE command on device 0*/ | |
b4ba67d9 DG |
678 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
679 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
bd07684a KW |
680 | |
681 | /* Check status while request is in flight*/ | |
b4ba67d9 | 682 | data = qpci_io_readb(dev, ide_bar, reg_status); |
bd07684a KW |
683 | assert_bit_set(data, BSY | DRDY); |
684 | assert_bit_clear(data, DF | ERR | DRQ); | |
685 | ||
686 | /* Complete the command */ | |
4a61c3ab | 687 | g_free(qtest_hmp(qts, "qemu-io ide0-hd0 \"resume A\"")); |
bd07684a KW |
688 | |
689 | /* Check registers */ | |
b4ba67d9 | 690 | data = qpci_io_readb(dev, ide_bar, reg_device); |
bd07684a KW |
691 | g_assert_cmpint(data & DEV, ==, 0); |
692 | ||
22bfa16e | 693 | do { |
b4ba67d9 | 694 | data = qpci_io_readb(dev, ide_bar, reg_status); |
22bfa16e MR |
695 | } while (data & BSY); |
696 | ||
bd07684a KW |
697 | assert_bit_set(data, DRDY); |
698 | assert_bit_clear(data, BSY | DF | ERR | DRQ); | |
699 | ||
4a61c3ab | 700 | ide_test_quit(qts); |
f5aa4bdc | 701 | free_pci_device(dev); |
bd07684a KW |
702 | } |
703 | ||
baca2b9e | 704 | static void test_retry_flush(const char *machine) |
14a92e5f | 705 | { |
4a61c3ab | 706 | QTestState *qts; |
9c268f8a | 707 | QPCIDevice *dev; |
b4ba67d9 | 708 | QPCIBar bmdma_bar, ide_bar; |
14a92e5f | 709 | uint8_t data; |
14a92e5f PB |
710 | |
711 | prepare_blkdebug_script(debug_path, "flush_to_disk"); | |
712 | ||
4a61c3ab | 713 | qts = ide_test_start( |
b8e665e4 KW |
714 | "-drive file=blkdebug:%s:%s,if=ide,cache=writeback,format=raw," |
715 | "rerror=stop,werror=stop", | |
14a92e5f PB |
716 | debug_path, tmp_path); |
717 | ||
4a61c3ab | 718 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 719 | |
4a61c3ab | 720 | qtest_irq_intercept_in(qts, "ioapic"); |
2dd7e10d EY |
721 | |
722 | /* Dirty media so that CMD_FLUSH_CACHE will actually go to disk */ | |
4a61c3ab | 723 | make_dirty(qts, 0); |
2dd7e10d | 724 | |
14a92e5f | 725 | /* FLUSH CACHE command on device 0*/ |
b4ba67d9 DG |
726 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
727 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
14a92e5f PB |
728 | |
729 | /* Check status while request is in flight*/ | |
b4ba67d9 | 730 | data = qpci_io_readb(dev, ide_bar, reg_status); |
14a92e5f PB |
731 | assert_bit_set(data, BSY | DRDY); |
732 | assert_bit_clear(data, DF | ERR | DRQ); | |
733 | ||
4a61c3ab | 734 | qtest_qmp_eventwait(qts, "STOP"); |
14a92e5f PB |
735 | |
736 | /* Complete the command */ | |
4a61c3ab | 737 | qmp_discard_response(qts, "{'execute':'cont' }"); |
14a92e5f PB |
738 | |
739 | /* Check registers */ | |
b4ba67d9 | 740 | data = qpci_io_readb(dev, ide_bar, reg_device); |
14a92e5f PB |
741 | g_assert_cmpint(data & DEV, ==, 0); |
742 | ||
743 | do { | |
b4ba67d9 | 744 | data = qpci_io_readb(dev, ide_bar, reg_status); |
14a92e5f PB |
745 | } while (data & BSY); |
746 | ||
747 | assert_bit_set(data, DRDY); | |
748 | assert_bit_clear(data, BSY | DF | ERR | DRQ); | |
749 | ||
4a61c3ab | 750 | ide_test_quit(qts); |
f5aa4bdc | 751 | free_pci_device(dev); |
14a92e5f PB |
752 | } |
753 | ||
f7f3ff1d KW |
754 | static void test_flush_nodev(void) |
755 | { | |
4a61c3ab | 756 | QTestState *qts; |
9c268f8a | 757 | QPCIDevice *dev; |
b4ba67d9 | 758 | QPCIBar bmdma_bar, ide_bar; |
9c268f8a | 759 | |
4a61c3ab | 760 | qts = ide_test_start(""); |
f7f3ff1d | 761 | |
4a61c3ab | 762 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 763 | |
f7f3ff1d | 764 | /* FLUSH CACHE command on device 0*/ |
b4ba67d9 DG |
765 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
766 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
f7f3ff1d KW |
767 | |
768 | /* Just testing that qemu doesn't crash... */ | |
769 | ||
f5aa4bdc | 770 | free_pci_device(dev); |
4a61c3ab | 771 | ide_test_quit(qts); |
f7f3ff1d KW |
772 | } |
773 | ||
ce317e8d KW |
774 | static void test_flush_empty_drive(void) |
775 | { | |
4a61c3ab | 776 | QTestState *qts; |
ce317e8d KW |
777 | QPCIDevice *dev; |
778 | QPCIBar bmdma_bar, ide_bar; | |
779 | ||
4a61c3ab TH |
780 | qts = ide_test_start("-device ide-cd,bus=ide.0"); |
781 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | |
ce317e8d KW |
782 | |
783 | /* FLUSH CACHE command on device 0 */ | |
784 | qpci_io_writeb(dev, ide_bar, reg_device, 0); | |
785 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
786 | ||
787 | /* Just testing that qemu doesn't crash... */ | |
788 | ||
789 | free_pci_device(dev); | |
4a61c3ab | 790 | ide_test_quit(qts); |
ce317e8d KW |
791 | } |
792 | ||
041088c7 | 793 | static void test_pci_retry_flush(void) |
baca2b9e JS |
794 | { |
795 | test_retry_flush("pc"); | |
796 | } | |
797 | ||
041088c7 | 798 | static void test_isa_retry_flush(void) |
baca2b9e JS |
799 | { |
800 | test_retry_flush("isapc"); | |
801 | } | |
802 | ||
f7ba8d7f JS |
803 | typedef struct Read10CDB { |
804 | uint8_t opcode; | |
805 | uint8_t flags; | |
806 | uint32_t lba; | |
807 | uint8_t reserved; | |
808 | uint16_t nblocks; | |
809 | uint8_t control; | |
810 | uint16_t padding; | |
811 | } __attribute__((__packed__)) Read10CDB; | |
812 | ||
b4ba67d9 | 813 | static void send_scsi_cdb_read10(QPCIDevice *dev, QPCIBar ide_bar, |
9c268f8a | 814 | uint64_t lba, int nblocks) |
f7ba8d7f JS |
815 | { |
816 | Read10CDB pkt = { .padding = 0 }; | |
817 | int i; | |
818 | ||
00ea63fd JS |
819 | g_assert_cmpint(lba, <=, UINT32_MAX); |
820 | g_assert_cmpint(nblocks, <=, UINT16_MAX); | |
821 | g_assert_cmpint(nblocks, >=, 0); | |
822 | ||
f7ba8d7f JS |
823 | /* Construct SCSI CDB packet */ |
824 | pkt.opcode = 0x28; | |
825 | pkt.lba = cpu_to_be32(lba); | |
826 | pkt.nblocks = cpu_to_be16(nblocks); | |
827 | ||
828 | /* Send Packet */ | |
829 | for (i = 0; i < sizeof(Read10CDB)/2; i++) { | |
b4ba67d9 | 830 | qpci_io_writew(dev, ide_bar, reg_data, |
9c268f8a | 831 | le16_to_cpu(((uint16_t *)&pkt)[i])); |
f7ba8d7f JS |
832 | } |
833 | } | |
834 | ||
4a61c3ab | 835 | static void nsleep(QTestState *qts, int64_t nsecs) |
f7ba8d7f JS |
836 | { |
837 | const struct timespec val = { .tv_nsec = nsecs }; | |
838 | nanosleep(&val, NULL); | |
4a61c3ab | 839 | qtest_clock_set(qts, nsecs); |
f7ba8d7f JS |
840 | } |
841 | ||
4a61c3ab | 842 | static uint8_t ide_wait_clear(QTestState *qts, uint8_t flag) |
f7ba8d7f | 843 | { |
9c268f8a | 844 | QPCIDevice *dev; |
b4ba67d9 | 845 | QPCIBar bmdma_bar, ide_bar; |
f7ba8d7f | 846 | uint8_t data; |
9c73517c | 847 | time_t st; |
f7ba8d7f | 848 | |
4a61c3ab | 849 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); |
9c268f8a | 850 | |
f7ba8d7f | 851 | /* Wait with a 5 second timeout */ |
9c73517c JS |
852 | time(&st); |
853 | while (true) { | |
b4ba67d9 | 854 | data = qpci_io_readb(dev, ide_bar, reg_status); |
f7ba8d7f | 855 | if (!(data & flag)) { |
f5aa4bdc | 856 | free_pci_device(dev); |
f7ba8d7f JS |
857 | return data; |
858 | } | |
9c73517c JS |
859 | if (difftime(time(NULL), st) > 5.0) { |
860 | break; | |
861 | } | |
4a61c3ab | 862 | nsleep(qts, 400); |
f7ba8d7f JS |
863 | } |
864 | g_assert_not_reached(); | |
865 | } | |
866 | ||
4a61c3ab | 867 | static void ide_wait_intr(QTestState *qts, int irq) |
f7ba8d7f | 868 | { |
9c73517c | 869 | time_t st; |
f7ba8d7f JS |
870 | bool intr; |
871 | ||
9c73517c JS |
872 | time(&st); |
873 | while (true) { | |
4a61c3ab | 874 | intr = qtest_get_irq(qts, irq); |
f7ba8d7f JS |
875 | if (intr) { |
876 | return; | |
877 | } | |
9c73517c JS |
878 | if (difftime(time(NULL), st) > 5.0) { |
879 | break; | |
880 | } | |
4a61c3ab | 881 | nsleep(qts, 400); |
f7ba8d7f JS |
882 | } |
883 | ||
884 | g_assert_not_reached(); | |
885 | } | |
886 | ||
887 | static void cdrom_pio_impl(int nblocks) | |
888 | { | |
4a61c3ab | 889 | QTestState *qts; |
9c268f8a | 890 | QPCIDevice *dev; |
b4ba67d9 | 891 | QPCIBar bmdma_bar, ide_bar; |
f7ba8d7f JS |
892 | FILE *fh; |
893 | int patt_blocks = MAX(16, nblocks); | |
894 | size_t patt_len = ATAPI_BLOCK_SIZE * patt_blocks; | |
895 | char *pattern = g_malloc(patt_len); | |
896 | size_t rxsize = ATAPI_BLOCK_SIZE * nblocks; | |
897 | uint16_t *rx = g_malloc0(rxsize); | |
898 | int i, j; | |
899 | uint8_t data; | |
900 | uint16_t limit; | |
543f8f13 | 901 | size_t ret; |
f7ba8d7f JS |
902 | |
903 | /* Prepopulate the CDROM with an interesting pattern */ | |
904 | generate_pattern(pattern, patt_len, ATAPI_BLOCK_SIZE); | |
905 | fh = fopen(tmp_path, "w+"); | |
543f8f13 JS |
906 | ret = fwrite(pattern, ATAPI_BLOCK_SIZE, patt_blocks, fh); |
907 | g_assert_cmpint(ret, ==, patt_blocks); | |
f7ba8d7f JS |
908 | fclose(fh); |
909 | ||
4a61c3ab TH |
910 | qts = ide_test_start( |
911 | "-drive if=none,file=%s,media=cdrom,format=raw,id=sr0,index=0 " | |
912 | "-device ide-cd,drive=sr0,bus=ide.0", tmp_path); | |
913 | dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | |
914 | qtest_irq_intercept_in(qts, "ioapic"); | |
f7ba8d7f JS |
915 | |
916 | /* PACKET command on device 0 */ | |
b4ba67d9 DG |
917 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
918 | qpci_io_writeb(dev, ide_bar, reg_lba_middle, BYTE_COUNT_LIMIT & 0xFF); | |
919 | qpci_io_writeb(dev, ide_bar, reg_lba_high, (BYTE_COUNT_LIMIT >> 8 & 0xFF)); | |
920 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_PACKET); | |
f348daf3 | 921 | /* HP0: Check_Status_A State */ |
4a61c3ab TH |
922 | nsleep(qts, 400); |
923 | data = ide_wait_clear(qts, BSY); | |
f348daf3 | 924 | /* HP1: Send_Packet State */ |
f7ba8d7f JS |
925 | assert_bit_set(data, DRQ | DRDY); |
926 | assert_bit_clear(data, ERR | DF | BSY); | |
927 | ||
928 | /* SCSI CDB (READ10) -- read n*2048 bytes from block 0 */ | |
b4ba67d9 | 929 | send_scsi_cdb_read10(dev, ide_bar, 0, nblocks); |
f7ba8d7f | 930 | |
f7ba8d7f JS |
931 | /* Read data back: occurs in bursts of 'BYTE_COUNT_LIMIT' bytes. |
932 | * If BYTE_COUNT_LIMIT is odd, we transfer BYTE_COUNT_LIMIT - 1 bytes. | |
933 | * We allow an odd limit only when the remaining transfer size is | |
934 | * less than BYTE_COUNT_LIMIT. However, SCSI's read10 command can only | |
935 | * request n blocks, so our request size is always even. | |
936 | * For this reason, we assume there is never a hanging byte to fetch. */ | |
937 | g_assert(!(rxsize & 1)); | |
938 | limit = BYTE_COUNT_LIMIT & ~1; | |
939 | for (i = 0; i < DIV_ROUND_UP(rxsize, limit); i++) { | |
940 | size_t offset = i * (limit / 2); | |
941 | size_t rem = (rxsize / 2) - offset; | |
a421f3c3 JS |
942 | |
943 | /* HP3: INTRQ_Wait */ | |
4a61c3ab | 944 | ide_wait_intr(qts, IDE_PRIMARY_IRQ); |
a421f3c3 JS |
945 | |
946 | /* HP2: Check_Status_B (and clear IRQ) */ | |
4a61c3ab | 947 | data = ide_wait_clear(qts, BSY); |
f348daf3 PL |
948 | assert_bit_set(data, DRQ | DRDY); |
949 | assert_bit_clear(data, ERR | DF | BSY); | |
a421f3c3 | 950 | |
f348daf3 | 951 | /* HP4: Transfer_Data */ |
f7ba8d7f | 952 | for (j = 0; j < MIN((limit / 2), rem); j++) { |
b4ba67d9 DG |
953 | rx[offset + j] = cpu_to_le16(qpci_io_readw(dev, ide_bar, |
954 | reg_data)); | |
f7ba8d7f | 955 | } |
f7ba8d7f | 956 | } |
a421f3c3 JS |
957 | |
958 | /* Check for final completion IRQ */ | |
4a61c3ab | 959 | ide_wait_intr(qts, IDE_PRIMARY_IRQ); |
a421f3c3 JS |
960 | |
961 | /* Sanity check final state */ | |
4a61c3ab | 962 | data = ide_wait_clear(qts, DRQ); |
f7ba8d7f JS |
963 | assert_bit_set(data, DRDY); |
964 | assert_bit_clear(data, DRQ | ERR | DF | BSY); | |
965 | ||
966 | g_assert_cmpint(memcmp(pattern, rx, rxsize), ==, 0); | |
967 | g_free(pattern); | |
968 | g_free(rx); | |
4a61c3ab | 969 | test_bmdma_teardown(qts); |
f5aa4bdc | 970 | free_pci_device(dev); |
f7ba8d7f JS |
971 | } |
972 | ||
973 | static void test_cdrom_pio(void) | |
974 | { | |
975 | cdrom_pio_impl(1); | |
976 | } | |
977 | ||
978 | static void test_cdrom_pio_large(void) | |
979 | { | |
980 | /* Test a few loops of the PIO DRQ mechanism. */ | |
981 | cdrom_pio_impl(BYTE_COUNT_LIMIT * 4 / ATAPI_BLOCK_SIZE); | |
982 | } | |
983 | ||
00ea63fd JS |
984 | |
985 | static void test_cdrom_dma(void) | |
986 | { | |
4a61c3ab | 987 | QTestState *qts; |
00ea63fd | 988 | static const size_t len = ATAPI_BLOCK_SIZE; |
543f8f13 | 989 | size_t ret; |
00ea63fd JS |
990 | char *pattern = g_malloc(ATAPI_BLOCK_SIZE * 16); |
991 | char *rx = g_malloc0(len); | |
992 | uintptr_t guest_buf; | |
993 | PrdtEntry prdt[1]; | |
994 | FILE *fh; | |
995 | ||
4a61c3ab TH |
996 | qts = ide_test_start( |
997 | "-drive if=none,file=%s,media=cdrom,format=raw,id=sr0,index=0 " | |
998 | "-device ide-cd,drive=sr0,bus=ide.0", tmp_path); | |
999 | qtest_irq_intercept_in(qts, "ioapic"); | |
00ea63fd | 1000 | |
eb5937ba | 1001 | guest_buf = guest_alloc(&guest_malloc, len); |
00ea63fd JS |
1002 | prdt[0].addr = cpu_to_le32(guest_buf); |
1003 | prdt[0].size = cpu_to_le32(len | PRDT_EOT); | |
1004 | ||
1005 | generate_pattern(pattern, ATAPI_BLOCK_SIZE * 16, ATAPI_BLOCK_SIZE); | |
1006 | fh = fopen(tmp_path, "w+"); | |
543f8f13 JS |
1007 | ret = fwrite(pattern, ATAPI_BLOCK_SIZE, 16, fh); |
1008 | g_assert_cmpint(ret, ==, 16); | |
00ea63fd JS |
1009 | fclose(fh); |
1010 | ||
4a61c3ab | 1011 | send_dma_request(qts, CMD_PACKET, 0, 1, prdt, 1, send_scsi_cdb_read10); |
00ea63fd JS |
1012 | |
1013 | /* Read back data from guest memory into local qtest memory */ | |
4a61c3ab | 1014 | qtest_memread(qts, guest_buf, rx, len); |
00ea63fd JS |
1015 | g_assert_cmpint(memcmp(pattern, rx, len), ==, 0); |
1016 | ||
1017 | g_free(pattern); | |
1018 | g_free(rx); | |
4a61c3ab | 1019 | test_bmdma_teardown(qts); |
00ea63fd JS |
1020 | } |
1021 | ||
acbe4801 KW |
1022 | int main(int argc, char **argv) |
1023 | { | |
acbe4801 KW |
1024 | int fd; |
1025 | int ret; | |
1026 | ||
14a92e5f PB |
1027 | /* Create temporary blkdebug instructions */ |
1028 | fd = mkstemp(debug_path); | |
1029 | g_assert(fd >= 0); | |
1030 | close(fd); | |
1031 | ||
acbe4801 KW |
1032 | /* Create a temporary raw image */ |
1033 | fd = mkstemp(tmp_path); | |
1034 | g_assert(fd >= 0); | |
1035 | ret = ftruncate(fd, TEST_IMAGE_SIZE); | |
1036 | g_assert(ret == 0); | |
1037 | close(fd); | |
1038 | ||
1039 | /* Run the tests */ | |
1040 | g_test_init(&argc, &argv, NULL); | |
1041 | ||
1042 | qtest_add_func("/ide/identify", test_identify); | |
1043 | ||
b95739dc | 1044 | qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw); |
29e1d473 | 1045 | qtest_add_func("/ide/bmdma/trim", test_bmdma_trim); |
59805ae9 | 1046 | qtest_add_func("/ide/bmdma/various_prdts", test_bmdma_various_prdts); |
d7b7e580 | 1047 | qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster); |
b95739dc | 1048 | |
bd07684a | 1049 | qtest_add_func("/ide/flush", test_flush); |
baca2b9e | 1050 | qtest_add_func("/ide/flush/nodev", test_flush_nodev); |
ce317e8d | 1051 | qtest_add_func("/ide/flush/empty_drive", test_flush_empty_drive); |
baca2b9e JS |
1052 | qtest_add_func("/ide/flush/retry_pci", test_pci_retry_flush); |
1053 | qtest_add_func("/ide/flush/retry_isa", test_isa_retry_flush); | |
14a92e5f | 1054 | |
f7ba8d7f JS |
1055 | qtest_add_func("/ide/cdrom/pio", test_cdrom_pio); |
1056 | qtest_add_func("/ide/cdrom/pio_large", test_cdrom_pio_large); | |
00ea63fd | 1057 | qtest_add_func("/ide/cdrom/dma", test_cdrom_dma); |
f7ba8d7f | 1058 | |
acbe4801 KW |
1059 | ret = g_test_run(); |
1060 | ||
1061 | /* Cleanup */ | |
1062 | unlink(tmp_path); | |
14a92e5f | 1063 | unlink(debug_path); |
acbe4801 KW |
1064 | |
1065 | return ret; | |
1066 | } |