]>
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 KW |
27 | |
28 | #include "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 MA |
38 | /* TODO actually test the results and get rid of this */ |
39 | #define qmp_discard_response(...) qobject_unref(qmp(__VA_ARGS__)) | |
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 KW |
127 | |
128 | static void ide_test_start(const char *cmdline_fmt, ...) | |
129 | { | |
130 | va_list ap; | |
131 | char *cmdline; | |
132 | ||
133 | va_start(ap, cmdline_fmt); | |
134 | cmdline = g_strdup_vprintf(cmdline_fmt, ap); | |
135 | va_end(ap); | |
136 | ||
137 | qtest_start(cmdline); | |
eb5937ba | 138 | pc_alloc_init(&guest_malloc, global_qtest, 0); |
e42de189 JS |
139 | |
140 | g_free(cmdline); | |
acbe4801 KW |
141 | } |
142 | ||
143 | static void ide_test_quit(void) | |
144 | { | |
3b6b0a8a TH |
145 | if (pcibus) { |
146 | qpci_free_pc(pcibus); | |
147 | pcibus = NULL; | |
148 | } | |
eb5937ba | 149 | alloc_destroy(&guest_malloc); |
1d9358e6 | 150 | qtest_end(); |
acbe4801 KW |
151 | } |
152 | ||
b4ba67d9 | 153 | static QPCIDevice *get_pci_device(QPCIBar *bmdma_bar, QPCIBar *ide_bar) |
b95739dc KW |
154 | { |
155 | QPCIDevice *dev; | |
156 | uint16_t vendor_id, device_id; | |
157 | ||
158 | if (!pcibus) { | |
143e6db6 | 159 | pcibus = qpci_new_pc(global_qtest, 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 | ||
b95739dc | 201 | static int send_dma_request(int cmd, uint64_t sector, int nb_sectors, |
00ea63fd | 202 | 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 | |
b4ba67d9 | 214 | dev = get_pci_device(&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); |
b95739dc | 249 | memwrite(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 | ||
286 | g_assert_cmpint(get_irq(IDE_PRIMARY_IRQ), ==, !!(status & BM_STS_INTR)); | |
287 | ||
288 | /* Check IDE status code */ | |
b4ba67d9 DG |
289 | assert_bit_set(qpci_io_readb(dev, ide_bar, reg_status), DRDY); |
290 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), BSY | DRQ); | |
b95739dc KW |
291 | |
292 | /* Reading the status register clears the IRQ */ | |
293 | g_assert(!get_irq(IDE_PRIMARY_IRQ)); | |
294 | ||
295 | /* Stop DMA transfer if still active */ | |
296 | if (status & BM_STS_ACTIVE) { | |
b4ba67d9 | 297 | qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); |
b95739dc KW |
298 | } |
299 | ||
300 | free_pci_device(dev); | |
301 | ||
302 | return status; | |
303 | } | |
304 | ||
305 | static void test_bmdma_simple_rw(void) | |
306 | { | |
9c268f8a | 307 | QPCIDevice *dev; |
b4ba67d9 | 308 | QPCIBar bmdma_bar, ide_bar; |
b95739dc KW |
309 | uint8_t status; |
310 | uint8_t *buf; | |
311 | uint8_t *cmpbuf; | |
312 | size_t len = 512; | |
eb5937ba | 313 | uintptr_t guest_buf = guest_alloc(&guest_malloc, len); |
b95739dc KW |
314 | |
315 | PrdtEntry prdt[] = { | |
262f27b9 KW |
316 | { |
317 | .addr = cpu_to_le32(guest_buf), | |
318 | .size = cpu_to_le32(len | PRDT_EOT), | |
319 | }, | |
b95739dc KW |
320 | }; |
321 | ||
b4ba67d9 | 322 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 323 | |
b95739dc KW |
324 | buf = g_malloc(len); |
325 | cmpbuf = g_malloc(len); | |
326 | ||
327 | /* Write 0x55 pattern to sector 0 */ | |
328 | memset(buf, 0x55, len); | |
329 | memwrite(guest_buf, buf, len); | |
330 | ||
00ea63fd JS |
331 | status = send_dma_request(CMD_WRITE_DMA, 0, 1, prdt, |
332 | ARRAY_SIZE(prdt), NULL); | |
b95739dc | 333 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 334 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc KW |
335 | |
336 | /* Write 0xaa pattern to sector 1 */ | |
337 | memset(buf, 0xaa, len); | |
338 | memwrite(guest_buf, buf, len); | |
339 | ||
00ea63fd JS |
340 | status = send_dma_request(CMD_WRITE_DMA, 1, 1, prdt, |
341 | ARRAY_SIZE(prdt), NULL); | |
b95739dc | 342 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 343 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc KW |
344 | |
345 | /* Read and verify 0x55 pattern in sector 0 */ | |
346 | memset(cmpbuf, 0x55, len); | |
347 | ||
00ea63fd | 348 | status = send_dma_request(CMD_READ_DMA, 0, 1, prdt, ARRAY_SIZE(prdt), NULL); |
b95739dc | 349 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 350 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc KW |
351 | |
352 | memread(guest_buf, buf, len); | |
353 | g_assert(memcmp(buf, cmpbuf, len) == 0); | |
354 | ||
355 | /* Read and verify 0xaa pattern in sector 1 */ | |
356 | memset(cmpbuf, 0xaa, len); | |
357 | ||
00ea63fd | 358 | status = send_dma_request(CMD_READ_DMA, 1, 1, prdt, ARRAY_SIZE(prdt), NULL); |
b95739dc | 359 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 360 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
b95739dc KW |
361 | |
362 | memread(guest_buf, buf, len); | |
363 | g_assert(memcmp(buf, cmpbuf, len) == 0); | |
364 | ||
365 | ||
f5aa4bdc | 366 | free_pci_device(dev); |
b95739dc KW |
367 | g_free(buf); |
368 | g_free(cmpbuf); | |
369 | } | |
370 | ||
29e1d473 AN |
371 | static void test_bmdma_trim(void) |
372 | { | |
373 | QPCIDevice *dev; | |
374 | QPCIBar bmdma_bar, ide_bar; | |
375 | uint8_t status; | |
376 | const uint64_t trim_range[] = { trim_range_le(0, 2), | |
377 | trim_range_le(6, 8), | |
378 | trim_range_le(10, 1), | |
379 | }; | |
380 | const uint64_t bad_range = trim_range_le(TEST_IMAGE_SIZE / 512 - 1, 2); | |
381 | size_t len = 512; | |
382 | uint8_t *buf; | |
eb5937ba | 383 | uintptr_t guest_buf = guest_alloc(&guest_malloc, len); |
29e1d473 AN |
384 | |
385 | PrdtEntry prdt[] = { | |
386 | { | |
387 | .addr = cpu_to_le32(guest_buf), | |
388 | .size = cpu_to_le32(len | PRDT_EOT), | |
389 | }, | |
390 | }; | |
391 | ||
392 | dev = get_pci_device(&bmdma_bar, &ide_bar); | |
393 | ||
394 | buf = g_malloc(len); | |
395 | ||
396 | /* Normal request */ | |
397 | *((uint64_t *)buf) = trim_range[0]; | |
398 | *((uint64_t *)buf + 1) = trim_range[1]; | |
399 | ||
400 | memwrite(guest_buf, buf, 2 * sizeof(uint64_t)); | |
401 | ||
402 | status = send_dma_request(CMD_DSM, 0, 1, prdt, | |
403 | ARRAY_SIZE(prdt), NULL); | |
404 | g_assert_cmphex(status, ==, BM_STS_INTR); | |
405 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | |
406 | ||
407 | /* Request contains invalid range */ | |
408 | *((uint64_t *)buf) = trim_range[2]; | |
409 | *((uint64_t *)buf + 1) = bad_range; | |
410 | ||
411 | memwrite(guest_buf, buf, 2 * sizeof(uint64_t)); | |
412 | ||
413 | status = send_dma_request(CMD_DSM, 0, 1, prdt, | |
414 | ARRAY_SIZE(prdt), NULL); | |
415 | g_assert_cmphex(status, ==, BM_STS_INTR); | |
416 | assert_bit_set(qpci_io_readb(dev, ide_bar, reg_status), ERR); | |
417 | assert_bit_set(qpci_io_readb(dev, ide_bar, reg_error), ABRT); | |
418 | ||
419 | free_pci_device(dev); | |
420 | g_free(buf); | |
421 | } | |
422 | ||
948eaed1 KW |
423 | static void test_bmdma_short_prdt(void) |
424 | { | |
9c268f8a | 425 | QPCIDevice *dev; |
b4ba67d9 | 426 | QPCIBar bmdma_bar, ide_bar; |
948eaed1 KW |
427 | uint8_t status; |
428 | ||
429 | PrdtEntry prdt[] = { | |
262f27b9 KW |
430 | { |
431 | .addr = 0, | |
432 | .size = cpu_to_le32(0x10 | PRDT_EOT), | |
433 | }, | |
948eaed1 KW |
434 | }; |
435 | ||
b4ba67d9 | 436 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 437 | |
948eaed1 KW |
438 | /* Normal request */ |
439 | status = send_dma_request(CMD_READ_DMA, 0, 1, | |
00ea63fd | 440 | prdt, ARRAY_SIZE(prdt), NULL); |
948eaed1 | 441 | g_assert_cmphex(status, ==, 0); |
b4ba67d9 | 442 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
948eaed1 KW |
443 | |
444 | /* Abort the request before it completes */ | |
445 | status = send_dma_request(CMD_READ_DMA | CMDF_ABORT, 0, 1, | |
00ea63fd | 446 | prdt, ARRAY_SIZE(prdt), NULL); |
948eaed1 | 447 | g_assert_cmphex(status, ==, 0); |
b4ba67d9 | 448 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
f5aa4bdc | 449 | free_pci_device(dev); |
948eaed1 KW |
450 | } |
451 | ||
58732810 SH |
452 | static void test_bmdma_one_sector_short_prdt(void) |
453 | { | |
9c268f8a | 454 | QPCIDevice *dev; |
b4ba67d9 | 455 | QPCIBar bmdma_bar, ide_bar; |
58732810 SH |
456 | uint8_t status; |
457 | ||
458 | /* Read 2 sectors but only give 1 sector in PRDT */ | |
459 | PrdtEntry prdt[] = { | |
460 | { | |
461 | .addr = 0, | |
462 | .size = cpu_to_le32(0x200 | PRDT_EOT), | |
463 | }, | |
464 | }; | |
465 | ||
b4ba67d9 | 466 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 467 | |
58732810 SH |
468 | /* Normal request */ |
469 | status = send_dma_request(CMD_READ_DMA, 0, 2, | |
00ea63fd | 470 | prdt, ARRAY_SIZE(prdt), NULL); |
58732810 | 471 | g_assert_cmphex(status, ==, 0); |
b4ba67d9 | 472 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
58732810 SH |
473 | |
474 | /* Abort the request before it completes */ | |
475 | status = send_dma_request(CMD_READ_DMA | CMDF_ABORT, 0, 2, | |
00ea63fd | 476 | prdt, ARRAY_SIZE(prdt), NULL); |
58732810 | 477 | g_assert_cmphex(status, ==, 0); |
b4ba67d9 | 478 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
f5aa4bdc | 479 | free_pci_device(dev); |
58732810 SH |
480 | } |
481 | ||
948eaed1 KW |
482 | static void test_bmdma_long_prdt(void) |
483 | { | |
9c268f8a | 484 | QPCIDevice *dev; |
b4ba67d9 | 485 | QPCIBar bmdma_bar, ide_bar; |
948eaed1 KW |
486 | uint8_t status; |
487 | ||
488 | PrdtEntry prdt[] = { | |
262f27b9 KW |
489 | { |
490 | .addr = 0, | |
491 | .size = cpu_to_le32(0x1000 | PRDT_EOT), | |
492 | }, | |
948eaed1 KW |
493 | }; |
494 | ||
b4ba67d9 | 495 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 496 | |
948eaed1 KW |
497 | /* Normal request */ |
498 | status = send_dma_request(CMD_READ_DMA, 0, 1, | |
00ea63fd | 499 | prdt, ARRAY_SIZE(prdt), NULL); |
948eaed1 | 500 | g_assert_cmphex(status, ==, BM_STS_ACTIVE | BM_STS_INTR); |
b4ba67d9 | 501 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
948eaed1 KW |
502 | |
503 | /* Abort the request before it completes */ | |
504 | status = send_dma_request(CMD_READ_DMA | CMDF_ABORT, 0, 1, | |
00ea63fd | 505 | prdt, ARRAY_SIZE(prdt), NULL); |
948eaed1 | 506 | g_assert_cmphex(status, ==, BM_STS_INTR); |
b4ba67d9 | 507 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
f5aa4bdc | 508 | free_pci_device(dev); |
948eaed1 KW |
509 | } |
510 | ||
d7b7e580 KW |
511 | static void test_bmdma_no_busmaster(void) |
512 | { | |
9c268f8a | 513 | QPCIDevice *dev; |
b4ba67d9 | 514 | QPCIBar bmdma_bar, ide_bar; |
d7b7e580 KW |
515 | uint8_t status; |
516 | ||
b4ba67d9 | 517 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 518 | |
d7b7e580 KW |
519 | /* No PRDT_EOT, each entry addr 0/size 64k, and in theory qemu shouldn't be |
520 | * able to access it anyway because the Bus Master bit in the PCI command | |
521 | * register isn't set. This is complete nonsense, but it used to be pretty | |
522 | * good at confusing and occasionally crashing qemu. */ | |
523 | PrdtEntry prdt[4096] = { }; | |
524 | ||
525 | status = send_dma_request(CMD_READ_DMA | CMDF_NO_BM, 0, 512, | |
00ea63fd | 526 | prdt, ARRAY_SIZE(prdt), NULL); |
d7b7e580 KW |
527 | |
528 | /* Not entirely clear what the expected result is, but this is what we get | |
529 | * in practice. At least we want to be aware of any changes. */ | |
530 | g_assert_cmphex(status, ==, BM_STS_ACTIVE | BM_STS_INTR); | |
b4ba67d9 | 531 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
f5aa4bdc | 532 | free_pci_device(dev); |
d7b7e580 KW |
533 | } |
534 | ||
b95739dc KW |
535 | static void test_bmdma_setup(void) |
536 | { | |
537 | ide_test_start( | |
572023f7 KW |
538 | "-drive file=%s,if=ide,cache=writeback,format=raw " |
539 | "-global ide-hd.serial=%s -global ide-hd.ver=%s", | |
b95739dc | 540 | tmp_path, "testdisk", "version"); |
baca2b9e | 541 | qtest_irq_intercept_in(global_qtest, "ioapic"); |
b95739dc KW |
542 | } |
543 | ||
544 | static void test_bmdma_teardown(void) | |
545 | { | |
546 | ide_test_quit(); | |
547 | } | |
548 | ||
262f27b9 KW |
549 | static void string_cpu_to_be16(uint16_t *s, size_t bytes) |
550 | { | |
551 | g_assert((bytes & 1) == 0); | |
552 | bytes /= 2; | |
553 | ||
554 | while (bytes--) { | |
555 | *s = cpu_to_be16(*s); | |
556 | s++; | |
557 | } | |
558 | } | |
559 | ||
acbe4801 KW |
560 | static void test_identify(void) |
561 | { | |
9c268f8a | 562 | QPCIDevice *dev; |
b4ba67d9 | 563 | QPCIBar bmdma_bar, ide_bar; |
acbe4801 KW |
564 | uint8_t data; |
565 | uint16_t buf[256]; | |
566 | int i; | |
567 | int ret; | |
568 | ||
569 | ide_test_start( | |
572023f7 KW |
570 | "-drive file=%s,if=ide,cache=writeback,format=raw " |
571 | "-global ide-hd.serial=%s -global ide-hd.ver=%s", | |
acbe4801 KW |
572 | tmp_path, "testdisk", "version"); |
573 | ||
b4ba67d9 | 574 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 575 | |
acbe4801 | 576 | /* IDENTIFY command on device 0*/ |
b4ba67d9 DG |
577 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
578 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_IDENTIFY); | |
acbe4801 KW |
579 | |
580 | /* Read in the IDENTIFY buffer and check registers */ | |
b4ba67d9 | 581 | data = qpci_io_readb(dev, ide_bar, reg_device); |
c27d5656 | 582 | g_assert_cmpint(data & DEV, ==, 0); |
acbe4801 KW |
583 | |
584 | for (i = 0; i < 256; i++) { | |
b4ba67d9 | 585 | data = qpci_io_readb(dev, ide_bar, reg_status); |
acbe4801 KW |
586 | assert_bit_set(data, DRDY | DRQ); |
587 | assert_bit_clear(data, BSY | DF | ERR); | |
588 | ||
b4ba67d9 | 589 | buf[i] = qpci_io_readw(dev, ide_bar, reg_data); |
acbe4801 KW |
590 | } |
591 | ||
b4ba67d9 | 592 | data = qpci_io_readb(dev, ide_bar, reg_status); |
acbe4801 KW |
593 | assert_bit_set(data, DRDY); |
594 | assert_bit_clear(data, BSY | DF | ERR | DRQ); | |
595 | ||
596 | /* Check serial number/version in the buffer */ | |
262f27b9 KW |
597 | string_cpu_to_be16(&buf[10], 20); |
598 | ret = memcmp(&buf[10], "testdisk ", 20); | |
acbe4801 KW |
599 | g_assert(ret == 0); |
600 | ||
262f27b9 KW |
601 | string_cpu_to_be16(&buf[23], 8); |
602 | ret = memcmp(&buf[23], "version ", 8); | |
acbe4801 KW |
603 | g_assert(ret == 0); |
604 | ||
605 | /* Write cache enabled bit */ | |
606 | assert_bit_set(buf[85], 0x20); | |
607 | ||
608 | ide_test_quit(); | |
f5aa4bdc | 609 | free_pci_device(dev); |
acbe4801 KW |
610 | } |
611 | ||
2dd7e10d EY |
612 | /* |
613 | * Write sector 1 with random data to make IDE storage dirty | |
614 | * Needed for flush tests so that flushes actually go though the block layer | |
615 | */ | |
616 | static void make_dirty(uint8_t device) | |
617 | { | |
9c268f8a | 618 | QPCIDevice *dev; |
b4ba67d9 | 619 | QPCIBar bmdma_bar, ide_bar; |
2dd7e10d EY |
620 | uint8_t status; |
621 | size_t len = 512; | |
622 | uintptr_t guest_buf; | |
623 | void* buf; | |
624 | ||
b4ba67d9 | 625 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 626 | |
eb5937ba | 627 | guest_buf = guest_alloc(&guest_malloc, len); |
2dd7e10d | 628 | buf = g_malloc(len); |
6048018e | 629 | memset(buf, rand() % 255 + 1, len); |
2dd7e10d EY |
630 | g_assert(guest_buf); |
631 | g_assert(buf); | |
632 | ||
633 | memwrite(guest_buf, buf, len); | |
634 | ||
635 | PrdtEntry prdt[] = { | |
636 | { | |
637 | .addr = cpu_to_le32(guest_buf), | |
638 | .size = cpu_to_le32(len | PRDT_EOT), | |
639 | }, | |
640 | }; | |
641 | ||
642 | status = send_dma_request(CMD_WRITE_DMA, 1, 1, prdt, | |
643 | ARRAY_SIZE(prdt), NULL); | |
644 | g_assert_cmphex(status, ==, BM_STS_INTR); | |
b4ba67d9 | 645 | assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); |
2dd7e10d EY |
646 | |
647 | g_free(buf); | |
f5aa4bdc | 648 | free_pci_device(dev); |
2dd7e10d EY |
649 | } |
650 | ||
bd07684a KW |
651 | static void test_flush(void) |
652 | { | |
9c268f8a | 653 | QPCIDevice *dev; |
b4ba67d9 | 654 | QPCIBar bmdma_bar, ide_bar; |
bd07684a KW |
655 | uint8_t data; |
656 | ||
657 | ide_test_start( | |
b8e665e4 | 658 | "-drive file=blkdebug::%s,if=ide,cache=writeback,format=raw", |
bd07684a KW |
659 | tmp_path); |
660 | ||
b4ba67d9 | 661 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 662 | |
2dd7e10d EY |
663 | qtest_irq_intercept_in(global_qtest, "ioapic"); |
664 | ||
665 | /* Dirty media so that CMD_FLUSH_CACHE will actually go to disk */ | |
666 | make_dirty(0); | |
667 | ||
bd07684a | 668 | /* Delay the completion of the flush request until we explicitly do it */ |
5fb48d96 | 669 | g_free(hmp("qemu-io ide0-hd0 \"break flush_to_os A\"")); |
bd07684a KW |
670 | |
671 | /* FLUSH CACHE command on device 0*/ | |
b4ba67d9 DG |
672 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
673 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
bd07684a KW |
674 | |
675 | /* Check status while request is in flight*/ | |
b4ba67d9 | 676 | data = qpci_io_readb(dev, ide_bar, reg_status); |
bd07684a KW |
677 | assert_bit_set(data, BSY | DRDY); |
678 | assert_bit_clear(data, DF | ERR | DRQ); | |
679 | ||
680 | /* Complete the command */ | |
5fb48d96 | 681 | g_free(hmp("qemu-io ide0-hd0 \"resume A\"")); |
bd07684a KW |
682 | |
683 | /* Check registers */ | |
b4ba67d9 | 684 | data = qpci_io_readb(dev, ide_bar, reg_device); |
bd07684a KW |
685 | g_assert_cmpint(data & DEV, ==, 0); |
686 | ||
22bfa16e | 687 | do { |
b4ba67d9 | 688 | data = qpci_io_readb(dev, ide_bar, reg_status); |
22bfa16e MR |
689 | } while (data & BSY); |
690 | ||
bd07684a KW |
691 | assert_bit_set(data, DRDY); |
692 | assert_bit_clear(data, BSY | DF | ERR | DRQ); | |
693 | ||
694 | ide_test_quit(); | |
f5aa4bdc | 695 | free_pci_device(dev); |
bd07684a KW |
696 | } |
697 | ||
baca2b9e | 698 | static void test_retry_flush(const char *machine) |
14a92e5f | 699 | { |
9c268f8a | 700 | QPCIDevice *dev; |
b4ba67d9 | 701 | QPCIBar bmdma_bar, ide_bar; |
14a92e5f | 702 | uint8_t data; |
14a92e5f PB |
703 | |
704 | prepare_blkdebug_script(debug_path, "flush_to_disk"); | |
705 | ||
706 | ide_test_start( | |
b8e665e4 KW |
707 | "-drive file=blkdebug:%s:%s,if=ide,cache=writeback,format=raw," |
708 | "rerror=stop,werror=stop", | |
14a92e5f PB |
709 | debug_path, tmp_path); |
710 | ||
b4ba67d9 | 711 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 712 | |
2dd7e10d EY |
713 | qtest_irq_intercept_in(global_qtest, "ioapic"); |
714 | ||
715 | /* Dirty media so that CMD_FLUSH_CACHE will actually go to disk */ | |
716 | make_dirty(0); | |
717 | ||
14a92e5f | 718 | /* FLUSH CACHE command on device 0*/ |
b4ba67d9 DG |
719 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
720 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
14a92e5f PB |
721 | |
722 | /* Check status while request is in flight*/ | |
b4ba67d9 | 723 | data = qpci_io_readb(dev, ide_bar, reg_status); |
14a92e5f PB |
724 | assert_bit_set(data, BSY | DRDY); |
725 | assert_bit_clear(data, DF | ERR | DRQ); | |
726 | ||
8fe941f7 | 727 | qmp_eventwait("STOP"); |
14a92e5f PB |
728 | |
729 | /* Complete the command */ | |
62fff696 | 730 | qmp_discard_response("{'execute':'cont' }"); |
14a92e5f PB |
731 | |
732 | /* Check registers */ | |
b4ba67d9 | 733 | data = qpci_io_readb(dev, ide_bar, reg_device); |
14a92e5f PB |
734 | g_assert_cmpint(data & DEV, ==, 0); |
735 | ||
736 | do { | |
b4ba67d9 | 737 | data = qpci_io_readb(dev, ide_bar, reg_status); |
14a92e5f PB |
738 | } while (data & BSY); |
739 | ||
740 | assert_bit_set(data, DRDY); | |
741 | assert_bit_clear(data, BSY | DF | ERR | DRQ); | |
742 | ||
743 | ide_test_quit(); | |
f5aa4bdc | 744 | free_pci_device(dev); |
14a92e5f PB |
745 | } |
746 | ||
f7f3ff1d KW |
747 | static void test_flush_nodev(void) |
748 | { | |
9c268f8a | 749 | QPCIDevice *dev; |
b4ba67d9 | 750 | QPCIBar bmdma_bar, ide_bar; |
9c268f8a | 751 | |
f7f3ff1d KW |
752 | ide_test_start(""); |
753 | ||
b4ba67d9 | 754 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 755 | |
f7f3ff1d | 756 | /* FLUSH CACHE command on device 0*/ |
b4ba67d9 DG |
757 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
758 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
f7f3ff1d KW |
759 | |
760 | /* Just testing that qemu doesn't crash... */ | |
761 | ||
f5aa4bdc | 762 | free_pci_device(dev); |
f7f3ff1d KW |
763 | ide_test_quit(); |
764 | } | |
765 | ||
ce317e8d KW |
766 | static void test_flush_empty_drive(void) |
767 | { | |
768 | QPCIDevice *dev; | |
769 | QPCIBar bmdma_bar, ide_bar; | |
770 | ||
771 | ide_test_start("-device ide-cd,bus=ide.0"); | |
772 | dev = get_pci_device(&bmdma_bar, &ide_bar); | |
773 | ||
774 | /* FLUSH CACHE command on device 0 */ | |
775 | qpci_io_writeb(dev, ide_bar, reg_device, 0); | |
776 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | |
777 | ||
778 | /* Just testing that qemu doesn't crash... */ | |
779 | ||
780 | free_pci_device(dev); | |
781 | ide_test_quit(); | |
782 | } | |
783 | ||
041088c7 | 784 | static void test_pci_retry_flush(void) |
baca2b9e JS |
785 | { |
786 | test_retry_flush("pc"); | |
787 | } | |
788 | ||
041088c7 | 789 | static void test_isa_retry_flush(void) |
baca2b9e JS |
790 | { |
791 | test_retry_flush("isapc"); | |
792 | } | |
793 | ||
f7ba8d7f JS |
794 | typedef struct Read10CDB { |
795 | uint8_t opcode; | |
796 | uint8_t flags; | |
797 | uint32_t lba; | |
798 | uint8_t reserved; | |
799 | uint16_t nblocks; | |
800 | uint8_t control; | |
801 | uint16_t padding; | |
802 | } __attribute__((__packed__)) Read10CDB; | |
803 | ||
b4ba67d9 | 804 | static void send_scsi_cdb_read10(QPCIDevice *dev, QPCIBar ide_bar, |
9c268f8a | 805 | uint64_t lba, int nblocks) |
f7ba8d7f JS |
806 | { |
807 | Read10CDB pkt = { .padding = 0 }; | |
808 | int i; | |
809 | ||
00ea63fd JS |
810 | g_assert_cmpint(lba, <=, UINT32_MAX); |
811 | g_assert_cmpint(nblocks, <=, UINT16_MAX); | |
812 | g_assert_cmpint(nblocks, >=, 0); | |
813 | ||
f7ba8d7f JS |
814 | /* Construct SCSI CDB packet */ |
815 | pkt.opcode = 0x28; | |
816 | pkt.lba = cpu_to_be32(lba); | |
817 | pkt.nblocks = cpu_to_be16(nblocks); | |
818 | ||
819 | /* Send Packet */ | |
820 | for (i = 0; i < sizeof(Read10CDB)/2; i++) { | |
b4ba67d9 | 821 | qpci_io_writew(dev, ide_bar, reg_data, |
9c268f8a | 822 | le16_to_cpu(((uint16_t *)&pkt)[i])); |
f7ba8d7f JS |
823 | } |
824 | } | |
825 | ||
826 | static void nsleep(int64_t nsecs) | |
827 | { | |
828 | const struct timespec val = { .tv_nsec = nsecs }; | |
829 | nanosleep(&val, NULL); | |
830 | clock_set(nsecs); | |
831 | } | |
832 | ||
833 | static uint8_t ide_wait_clear(uint8_t flag) | |
834 | { | |
9c268f8a | 835 | QPCIDevice *dev; |
b4ba67d9 | 836 | QPCIBar bmdma_bar, ide_bar; |
f7ba8d7f | 837 | uint8_t data; |
9c73517c | 838 | time_t st; |
f7ba8d7f | 839 | |
b4ba67d9 | 840 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
9c268f8a | 841 | |
f7ba8d7f | 842 | /* Wait with a 5 second timeout */ |
9c73517c JS |
843 | time(&st); |
844 | while (true) { | |
b4ba67d9 | 845 | data = qpci_io_readb(dev, ide_bar, reg_status); |
f7ba8d7f | 846 | if (!(data & flag)) { |
f5aa4bdc | 847 | free_pci_device(dev); |
f7ba8d7f JS |
848 | return data; |
849 | } | |
9c73517c JS |
850 | if (difftime(time(NULL), st) > 5.0) { |
851 | break; | |
852 | } | |
f7ba8d7f JS |
853 | nsleep(400); |
854 | } | |
855 | g_assert_not_reached(); | |
856 | } | |
857 | ||
858 | static void ide_wait_intr(int irq) | |
859 | { | |
9c73517c | 860 | time_t st; |
f7ba8d7f JS |
861 | bool intr; |
862 | ||
9c73517c JS |
863 | time(&st); |
864 | while (true) { | |
f7ba8d7f JS |
865 | intr = get_irq(irq); |
866 | if (intr) { | |
867 | return; | |
868 | } | |
9c73517c JS |
869 | if (difftime(time(NULL), st) > 5.0) { |
870 | break; | |
871 | } | |
f7ba8d7f JS |
872 | nsleep(400); |
873 | } | |
874 | ||
875 | g_assert_not_reached(); | |
876 | } | |
877 | ||
878 | static void cdrom_pio_impl(int nblocks) | |
879 | { | |
9c268f8a | 880 | QPCIDevice *dev; |
b4ba67d9 | 881 | QPCIBar bmdma_bar, ide_bar; |
f7ba8d7f JS |
882 | FILE *fh; |
883 | int patt_blocks = MAX(16, nblocks); | |
884 | size_t patt_len = ATAPI_BLOCK_SIZE * patt_blocks; | |
885 | char *pattern = g_malloc(patt_len); | |
886 | size_t rxsize = ATAPI_BLOCK_SIZE * nblocks; | |
887 | uint16_t *rx = g_malloc0(rxsize); | |
888 | int i, j; | |
889 | uint8_t data; | |
890 | uint16_t limit; | |
543f8f13 | 891 | size_t ret; |
f7ba8d7f JS |
892 | |
893 | /* Prepopulate the CDROM with an interesting pattern */ | |
894 | generate_pattern(pattern, patt_len, ATAPI_BLOCK_SIZE); | |
895 | fh = fopen(tmp_path, "w+"); | |
543f8f13 JS |
896 | ret = fwrite(pattern, ATAPI_BLOCK_SIZE, patt_blocks, fh); |
897 | g_assert_cmpint(ret, ==, patt_blocks); | |
f7ba8d7f JS |
898 | fclose(fh); |
899 | ||
900 | ide_test_start("-drive if=none,file=%s,media=cdrom,format=raw,id=sr0,index=0 " | |
901 | "-device ide-cd,drive=sr0,bus=ide.0", tmp_path); | |
b4ba67d9 | 902 | dev = get_pci_device(&bmdma_bar, &ide_bar); |
f7ba8d7f JS |
903 | qtest_irq_intercept_in(global_qtest, "ioapic"); |
904 | ||
905 | /* PACKET command on device 0 */ | |
b4ba67d9 DG |
906 | qpci_io_writeb(dev, ide_bar, reg_device, 0); |
907 | qpci_io_writeb(dev, ide_bar, reg_lba_middle, BYTE_COUNT_LIMIT & 0xFF); | |
908 | qpci_io_writeb(dev, ide_bar, reg_lba_high, (BYTE_COUNT_LIMIT >> 8 & 0xFF)); | |
909 | qpci_io_writeb(dev, ide_bar, reg_command, CMD_PACKET); | |
f348daf3 | 910 | /* HP0: Check_Status_A State */ |
f7ba8d7f JS |
911 | nsleep(400); |
912 | data = ide_wait_clear(BSY); | |
f348daf3 | 913 | /* HP1: Send_Packet State */ |
f7ba8d7f JS |
914 | assert_bit_set(data, DRQ | DRDY); |
915 | assert_bit_clear(data, ERR | DF | BSY); | |
916 | ||
917 | /* SCSI CDB (READ10) -- read n*2048 bytes from block 0 */ | |
b4ba67d9 | 918 | send_scsi_cdb_read10(dev, ide_bar, 0, nblocks); |
f7ba8d7f | 919 | |
f7ba8d7f JS |
920 | /* Read data back: occurs in bursts of 'BYTE_COUNT_LIMIT' bytes. |
921 | * If BYTE_COUNT_LIMIT is odd, we transfer BYTE_COUNT_LIMIT - 1 bytes. | |
922 | * We allow an odd limit only when the remaining transfer size is | |
923 | * less than BYTE_COUNT_LIMIT. However, SCSI's read10 command can only | |
924 | * request n blocks, so our request size is always even. | |
925 | * For this reason, we assume there is never a hanging byte to fetch. */ | |
926 | g_assert(!(rxsize & 1)); | |
927 | limit = BYTE_COUNT_LIMIT & ~1; | |
928 | for (i = 0; i < DIV_ROUND_UP(rxsize, limit); i++) { | |
929 | size_t offset = i * (limit / 2); | |
930 | size_t rem = (rxsize / 2) - offset; | |
a421f3c3 JS |
931 | |
932 | /* HP3: INTRQ_Wait */ | |
933 | ide_wait_intr(IDE_PRIMARY_IRQ); | |
934 | ||
935 | /* HP2: Check_Status_B (and clear IRQ) */ | |
f348daf3 PL |
936 | data = ide_wait_clear(BSY); |
937 | assert_bit_set(data, DRQ | DRDY); | |
938 | assert_bit_clear(data, ERR | DF | BSY); | |
a421f3c3 | 939 | |
f348daf3 | 940 | /* HP4: Transfer_Data */ |
f7ba8d7f | 941 | for (j = 0; j < MIN((limit / 2), rem); j++) { |
b4ba67d9 DG |
942 | rx[offset + j] = cpu_to_le16(qpci_io_readw(dev, ide_bar, |
943 | reg_data)); | |
f7ba8d7f | 944 | } |
f7ba8d7f | 945 | } |
a421f3c3 JS |
946 | |
947 | /* Check for final completion IRQ */ | |
948 | ide_wait_intr(IDE_PRIMARY_IRQ); | |
949 | ||
950 | /* Sanity check final state */ | |
f7ba8d7f JS |
951 | data = ide_wait_clear(DRQ); |
952 | assert_bit_set(data, DRDY); | |
953 | assert_bit_clear(data, DRQ | ERR | DF | BSY); | |
954 | ||
955 | g_assert_cmpint(memcmp(pattern, rx, rxsize), ==, 0); | |
956 | g_free(pattern); | |
957 | g_free(rx); | |
958 | test_bmdma_teardown(); | |
f5aa4bdc | 959 | free_pci_device(dev); |
f7ba8d7f JS |
960 | } |
961 | ||
962 | static void test_cdrom_pio(void) | |
963 | { | |
964 | cdrom_pio_impl(1); | |
965 | } | |
966 | ||
967 | static void test_cdrom_pio_large(void) | |
968 | { | |
969 | /* Test a few loops of the PIO DRQ mechanism. */ | |
970 | cdrom_pio_impl(BYTE_COUNT_LIMIT * 4 / ATAPI_BLOCK_SIZE); | |
971 | } | |
972 | ||
00ea63fd JS |
973 | |
974 | static void test_cdrom_dma(void) | |
975 | { | |
976 | static const size_t len = ATAPI_BLOCK_SIZE; | |
543f8f13 | 977 | size_t ret; |
00ea63fd JS |
978 | char *pattern = g_malloc(ATAPI_BLOCK_SIZE * 16); |
979 | char *rx = g_malloc0(len); | |
980 | uintptr_t guest_buf; | |
981 | PrdtEntry prdt[1]; | |
982 | FILE *fh; | |
983 | ||
984 | ide_test_start("-drive if=none,file=%s,media=cdrom,format=raw,id=sr0,index=0 " | |
985 | "-device ide-cd,drive=sr0,bus=ide.0", tmp_path); | |
986 | qtest_irq_intercept_in(global_qtest, "ioapic"); | |
987 | ||
eb5937ba | 988 | guest_buf = guest_alloc(&guest_malloc, len); |
00ea63fd JS |
989 | prdt[0].addr = cpu_to_le32(guest_buf); |
990 | prdt[0].size = cpu_to_le32(len | PRDT_EOT); | |
991 | ||
992 | generate_pattern(pattern, ATAPI_BLOCK_SIZE * 16, ATAPI_BLOCK_SIZE); | |
993 | fh = fopen(tmp_path, "w+"); | |
543f8f13 JS |
994 | ret = fwrite(pattern, ATAPI_BLOCK_SIZE, 16, fh); |
995 | g_assert_cmpint(ret, ==, 16); | |
00ea63fd JS |
996 | fclose(fh); |
997 | ||
998 | send_dma_request(CMD_PACKET, 0, 1, prdt, 1, send_scsi_cdb_read10); | |
999 | ||
1000 | /* Read back data from guest memory into local qtest memory */ | |
1001 | memread(guest_buf, rx, len); | |
1002 | g_assert_cmpint(memcmp(pattern, rx, len), ==, 0); | |
1003 | ||
1004 | g_free(pattern); | |
1005 | g_free(rx); | |
1006 | test_bmdma_teardown(); | |
1007 | } | |
1008 | ||
acbe4801 KW |
1009 | int main(int argc, char **argv) |
1010 | { | |
acbe4801 KW |
1011 | int fd; |
1012 | int ret; | |
1013 | ||
14a92e5f PB |
1014 | /* Create temporary blkdebug instructions */ |
1015 | fd = mkstemp(debug_path); | |
1016 | g_assert(fd >= 0); | |
1017 | close(fd); | |
1018 | ||
acbe4801 KW |
1019 | /* Create a temporary raw image */ |
1020 | fd = mkstemp(tmp_path); | |
1021 | g_assert(fd >= 0); | |
1022 | ret = ftruncate(fd, TEST_IMAGE_SIZE); | |
1023 | g_assert(ret == 0); | |
1024 | close(fd); | |
1025 | ||
1026 | /* Run the tests */ | |
1027 | g_test_init(&argc, &argv, NULL); | |
1028 | ||
1029 | qtest_add_func("/ide/identify", test_identify); | |
1030 | ||
b95739dc KW |
1031 | qtest_add_func("/ide/bmdma/setup", test_bmdma_setup); |
1032 | qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw); | |
29e1d473 | 1033 | qtest_add_func("/ide/bmdma/trim", test_bmdma_trim); |
948eaed1 | 1034 | qtest_add_func("/ide/bmdma/short_prdt", test_bmdma_short_prdt); |
58732810 SH |
1035 | qtest_add_func("/ide/bmdma/one_sector_short_prdt", |
1036 | test_bmdma_one_sector_short_prdt); | |
948eaed1 | 1037 | qtest_add_func("/ide/bmdma/long_prdt", test_bmdma_long_prdt); |
d7b7e580 | 1038 | qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster); |
b95739dc KW |
1039 | qtest_add_func("/ide/bmdma/teardown", test_bmdma_teardown); |
1040 | ||
bd07684a | 1041 | qtest_add_func("/ide/flush", test_flush); |
baca2b9e | 1042 | qtest_add_func("/ide/flush/nodev", test_flush_nodev); |
ce317e8d | 1043 | qtest_add_func("/ide/flush/empty_drive", test_flush_empty_drive); |
baca2b9e JS |
1044 | qtest_add_func("/ide/flush/retry_pci", test_pci_retry_flush); |
1045 | qtest_add_func("/ide/flush/retry_isa", test_isa_retry_flush); | |
14a92e5f | 1046 | |
f7ba8d7f JS |
1047 | qtest_add_func("/ide/cdrom/pio", test_cdrom_pio); |
1048 | qtest_add_func("/ide/cdrom/pio_large", test_cdrom_pio_large); | |
00ea63fd | 1049 | qtest_add_func("/ide/cdrom/dma", test_cdrom_dma); |
f7ba8d7f | 1050 | |
acbe4801 KW |
1051 | ret = g_test_run(); |
1052 | ||
1053 | /* Cleanup */ | |
1054 | unlink(tmp_path); | |
14a92e5f | 1055 | unlink(debug_path); |
acbe4801 KW |
1056 | |
1057 | return ret; | |
1058 | } |