| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * IDE test cases | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2013 Kevin Wolf <kwolf@redhat.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:09 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 20:00:40 +02:00
										 |  |  | #include "libqos/libqtest.h"
 | 
					
						
							| 
									
										
										
										
											2015-04-28 15:27:51 -04:00
										 |  |  | #include "libqos/libqos.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | #include "libqos/pci-pc.h"
 | 
					
						
							|  |  |  | #include "libqos/malloc-pc.h"
 | 
					
						
							| 
									
										
										
										
											2018-08-06 08:53:25 +02:00
										 |  |  | #include "qapi/qmp/qdict.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | #include "qemu-common.h"
 | 
					
						
							| 
									
										
										
										
											2016-03-15 17:22:36 +01:00
										 |  |  | #include "qemu/bswap.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | #include "hw/pci/pci_ids.h"
 | 
					
						
							|  |  |  | #include "hw/pci/pci_regs.h"
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-06 08:53:25 +02:00
										 |  |  | /* TODO actually test the results and get rid of this */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | #define qmp_discard_response(q, ...) qobject_unref(qtest_qmp(q, __VA_ARGS__))
 | 
					
						
							| 
									
										
										
										
											2018-08-06 08:53:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | #define TEST_IMAGE_SIZE 64 * 1024 * 1024
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IDE_PCI_DEV     1
 | 
					
						
							|  |  |  | #define IDE_PCI_FUNC    1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IDE_BASE 0x1f0
 | 
					
						
							|  |  |  | #define IDE_PRIMARY_IRQ 14
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | #define ATAPI_BLOCK_SIZE 2048
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* How many bytes to receive via ATAPI PIO at one time.
 | 
					
						
							|  |  |  |  * Must be less than 0xFFFF. */ | 
					
						
							|  |  |  | #define BYTE_COUNT_LIMIT 5120
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | enum { | 
					
						
							|  |  |  |     reg_data        = 0x0, | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     reg_feature     = 0x1, | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |     reg_error       = 0x1, | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     reg_nsectors    = 0x2, | 
					
						
							|  |  |  |     reg_lba_low     = 0x3, | 
					
						
							|  |  |  |     reg_lba_middle  = 0x4, | 
					
						
							|  |  |  |     reg_lba_high    = 0x5, | 
					
						
							|  |  |  |     reg_device      = 0x6, | 
					
						
							|  |  |  |     reg_status      = 0x7, | 
					
						
							|  |  |  |     reg_command     = 0x7, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     BSY     = 0x80, | 
					
						
							|  |  |  |     DRDY    = 0x40, | 
					
						
							|  |  |  |     DF      = 0x20, | 
					
						
							|  |  |  |     DRQ     = 0x08, | 
					
						
							|  |  |  |     ERR     = 0x01, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | /* Error field */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     ABRT    = 0x04, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | enum { | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:56 +02:00
										 |  |  |     DEV     = 0x10, | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     LBA     = 0x40, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     bmreg_cmd       = 0x0, | 
					
						
							|  |  |  |     bmreg_status    = 0x2, | 
					
						
							|  |  |  |     bmreg_prdt      = 0x4, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |     CMD_DSM         = 0x06, | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     CMD_READ_DMA    = 0xc8, | 
					
						
							|  |  |  |     CMD_WRITE_DMA   = 0xca, | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     CMD_FLUSH_CACHE = 0xe7, | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     CMD_IDENTIFY    = 0xec, | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     CMD_PACKET      = 0xa0, | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     CMDF_ABORT      = 0x100, | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  |     CMDF_NO_BM      = 0x200, | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | enum { | 
					
						
							|  |  |  |     BM_CMD_START    =  0x1, | 
					
						
							|  |  |  |     BM_CMD_WRITE    =  0x8, /* write = from device to memory */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     BM_STS_ACTIVE   =  0x1, | 
					
						
							|  |  |  |     BM_STS_ERROR    =  0x2, | 
					
						
							|  |  |  |     BM_STS_INTR     =  0x4, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     PRDT_EOT        = 0x80000000, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | #define assert_bit_set(data, mask) g_assert_cmphex((data) & (mask), ==, (mask))
 | 
					
						
							|  |  |  | #define assert_bit_clear(data, mask) g_assert_cmphex((data) & (mask), ==, 0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | static QPCIBus *pcibus = NULL; | 
					
						
							| 
									
										
										
										
											2018-11-29 12:37:04 +01:00
										 |  |  | static QGuestAllocator guest_malloc; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | static char tmp_path[] = "/tmp/qtest.XXXXXX"; | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | static char debug_path[] = "/tmp/qtest-blkdebug.XXXXXX"; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static QTestState *ide_test_start(const char *cmdline_fmt, ...) | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     va_list ap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     va_start(ap, cmdline_fmt); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = qtest_vinitf(cmdline_fmt, ap); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     va_end(ap); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     pc_alloc_init(&guest_malloc, qts, 0); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:25 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     return qts; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static void ide_test_quit(QTestState *qts) | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 16:03:21 +01:00
										 |  |  |     if (pcibus) { | 
					
						
							|  |  |  |         qpci_free_pc(pcibus); | 
					
						
							|  |  |  |         pcibus = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-11-29 12:37:04 +01:00
										 |  |  |     alloc_destroy(&guest_malloc); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_quit(qts); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static QPCIDevice *get_pci_device(QTestState *qts, QPCIBar *bmdma_bar, | 
					
						
							|  |  |  |                                   QPCIBar *ide_bar) | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QPCIDevice *dev; | 
					
						
							|  |  |  |     uint16_t vendor_id, device_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!pcibus) { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |         pcibus = qpci_new_pc(qts, NULL); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Find PCI device and verify it's the right one */ | 
					
						
							|  |  |  |     dev = qpci_device_find(pcibus, QPCI_DEVFN(IDE_PCI_DEV, IDE_PCI_FUNC)); | 
					
						
							|  |  |  |     g_assert(dev != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     vendor_id = qpci_config_readw(dev, PCI_VENDOR_ID); | 
					
						
							|  |  |  |     device_id = qpci_config_readw(dev, PCI_DEVICE_ID); | 
					
						
							|  |  |  |     g_assert(vendor_id == PCI_VENDOR_ID_INTEL); | 
					
						
							|  |  |  |     g_assert(device_id == PCI_DEVICE_ID_INTEL_82371SB_1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Map bmdma BAR */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     *bmdma_bar = qpci_iomap(dev, 4, NULL); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     *ide_bar = qpci_legacy_iomap(dev, IDE_BASE); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qpci_device_enable(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void free_pci_device(QPCIDevice *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* libqos doesn't have a function for this, so free it manually */ | 
					
						
							|  |  |  |     g_free(dev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct PrdtEntry { | 
					
						
							|  |  |  |     uint32_t addr; | 
					
						
							|  |  |  |     uint32_t size; | 
					
						
							|  |  |  | } QEMU_PACKED PrdtEntry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define assert_bit_set(data, mask) g_assert_cmphex((data) & (mask), ==, (mask))
 | 
					
						
							|  |  |  | #define assert_bit_clear(data, mask) g_assert_cmphex((data) & (mask), ==, 0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | static uint64_t trim_range_le(uint64_t sector, uint16_t count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* 2-byte range, 6-byte LBA */ | 
					
						
							|  |  |  |     return cpu_to_le64(((uint64_t)count << 48) + sector); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static int send_dma_request(QTestState *qts, int cmd, uint64_t sector, | 
					
						
							|  |  |  |                             int nb_sectors, PrdtEntry *prdt, int prdt_entries, | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |                             void(*post_exec)(QPCIDevice *dev, QPCIBar ide_bar, | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |                                              uint64_t sector, int nb_sectors)) | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     uintptr_t guest_prdt; | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  |     bool from_dev; | 
					
						
							|  |  |  |     uint8_t status; | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  |     int flags; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  |     flags = cmd & ~0xff; | 
					
						
							|  |  |  |     cmd &= 0xff; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case CMD_READ_DMA: | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     case CMD_PACKET: | 
					
						
							|  |  |  |         /* Assuming we only test data reads w/ ATAPI, otherwise we need to know
 | 
					
						
							|  |  |  |          * the SCSI command being sent in the packet, too. */ | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |         from_dev = true; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |     case CMD_DSM: | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     case CMD_WRITE_DMA: | 
					
						
							|  |  |  |         from_dev = false; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         g_assert_not_reached(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  |     if (flags & CMDF_NO_BM) { | 
					
						
							|  |  |  |         qpci_config_writew(dev, PCI_COMMAND, | 
					
						
							|  |  |  |                            PCI_COMMAND_IO | PCI_COMMAND_MEMORY); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     /* Select device 0 */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0 | LBA); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Stop any running transfer, clear any pending interrupt */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, bmdma_bar, bmreg_status, BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Setup PRDT */ | 
					
						
							|  |  |  |     len = sizeof(*prdt) * prdt_entries; | 
					
						
							| 
									
										
										
										
											2018-11-29 12:37:04 +01:00
										 |  |  |     guest_prdt = guest_alloc(&guest_malloc, len); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memwrite(qts, guest_prdt, prdt, len); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writel(dev, bmdma_bar, bmreg_prdt, guest_prdt); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* ATA DMA command */ | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     if (cmd == CMD_PACKET) { | 
					
						
							|  |  |  |         /* Enables ATAPI DMA; otherwise PIO is attempted */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         qpci_io_writeb(dev, ide_bar, reg_feature, 0x01); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |         if (cmd == CMD_DSM) { | 
					
						
							|  |  |  |             /* trim bit */ | 
					
						
							|  |  |  |             qpci_io_writeb(dev, ide_bar, reg_feature, 0x01); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         qpci_io_writeb(dev, ide_bar, reg_nsectors, nb_sectors); | 
					
						
							|  |  |  |         qpci_io_writeb(dev, ide_bar, reg_lba_low,    sector & 0xff); | 
					
						
							|  |  |  |         qpci_io_writeb(dev, ide_bar, reg_lba_middle, (sector >> 8) & 0xff); | 
					
						
							|  |  |  |         qpci_io_writeb(dev, ide_bar, reg_lba_high,   (sector >> 16) & 0xff); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, cmd); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     if (post_exec) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         post_exec(dev, ide_bar, sector, nb_sectors); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     /* Start DMA transfer */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |                    BM_CMD_START | (from_dev ? BM_CMD_WRITE : 0)); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  |     if (flags & CMDF_ABORT) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     /* Wait for the DMA transfer to complete */ | 
					
						
							|  |  |  |     do { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         status = qpci_io_readb(dev, bmdma_bar, bmreg_status); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     } while ((status & (BM_STS_ACTIVE | BM_STS_INTR)) == BM_STS_ACTIVE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     g_assert_cmpint(qtest_get_irq(qts, IDE_PRIMARY_IRQ), ==, | 
					
						
							|  |  |  |                     !!(status & BM_STS_INTR)); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check IDE status code */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_set(qpci_io_readb(dev, ide_bar, reg_status), DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), BSY | DRQ); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Reading the status register clears the IRQ */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     g_assert(!qtest_get_irq(qts, IDE_PRIMARY_IRQ)); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Stop DMA transfer if still active */ | 
					
						
							|  |  |  |     if (status & BM_STS_ACTIVE) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         qpci_io_writeb(dev, bmdma_bar, bmreg_cmd, 0); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     free_pci_device(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static QTestState *test_bmdma_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QTestState *qts; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qts = ide_test_start( | 
					
						
							|  |  |  |         "-drive file=%s,if=ide,cache=writeback,format=raw " | 
					
						
							|  |  |  |         "-global ide-hd.serial=%s -global ide-hd.ver=%s", | 
					
						
							|  |  |  |         tmp_path, "testdisk", "version"); | 
					
						
							|  |  |  |     qtest_irq_intercept_in(qts, "ioapic"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return qts; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void test_bmdma_teardown(QTestState *qts) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ide_test_quit(qts); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | static void test_bmdma_simple_rw(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     uint8_t status; | 
					
						
							|  |  |  |     uint8_t *buf; | 
					
						
							|  |  |  |     uint8_t *cmpbuf; | 
					
						
							|  |  |  |     size_t len = 512; | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     uintptr_t guest_buf; | 
					
						
							|  |  |  |     PrdtEntry prdt[1]; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = test_bmdma_setup(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     guest_buf  = guest_alloc(&guest_malloc, len); | 
					
						
							|  |  |  |     prdt[0].addr = cpu_to_le32(guest_buf); | 
					
						
							|  |  |  |     prdt[0].size = cpu_to_le32(len | PRDT_EOT); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     buf = g_malloc(len); | 
					
						
							|  |  |  |     cmpbuf = g_malloc(len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Write 0x55 pattern to sector 0 */ | 
					
						
							|  |  |  |     memset(buf, 0x55, len); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memwrite(qts, guest_buf, buf, len); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_WRITE_DMA, 0, 1, prdt, | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |                               ARRAY_SIZE(prdt), NULL); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Write 0xaa pattern to sector 1 */ | 
					
						
							|  |  |  |     memset(buf, 0xaa, len); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memwrite(qts, guest_buf, buf, len); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_WRITE_DMA, 1, 1, prdt, | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |                               ARRAY_SIZE(prdt), NULL); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Read and verify 0x55 pattern in sector 0 */ | 
					
						
							|  |  |  |     memset(cmpbuf, 0x55, len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_READ_DMA, 0, 1, prdt, ARRAY_SIZE(prdt), | 
					
						
							|  |  |  |                               NULL); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memread(qts, guest_buf, buf, len); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_assert(memcmp(buf, cmpbuf, len) == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Read and verify 0xaa pattern in sector 1 */ | 
					
						
							|  |  |  |     memset(cmpbuf, 0xaa, len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_READ_DMA, 1, 1, prdt, ARRAY_SIZE(prdt), | 
					
						
							|  |  |  |                               NULL); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memread(qts, guest_buf, buf, len); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_assert(memcmp(buf, cmpbuf, len) == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     g_free(buf); | 
					
						
							|  |  |  |     g_free(cmpbuf); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     test_bmdma_teardown(qts); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | static void test_bmdma_trim(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							|  |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							|  |  |  |     uint8_t status; | 
					
						
							|  |  |  |     const uint64_t trim_range[] = { trim_range_le(0, 2), | 
					
						
							|  |  |  |                                     trim_range_le(6, 8), | 
					
						
							|  |  |  |                                     trim_range_le(10, 1), | 
					
						
							|  |  |  |                                   }; | 
					
						
							|  |  |  |     const uint64_t bad_range = trim_range_le(TEST_IMAGE_SIZE / 512 - 1, 2); | 
					
						
							|  |  |  |     size_t len = 512; | 
					
						
							|  |  |  |     uint8_t *buf; | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     uintptr_t guest_buf; | 
					
						
							|  |  |  |     PrdtEntry prdt[1]; | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = test_bmdma_setup(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     guest_buf = guest_alloc(&guest_malloc, len); | 
					
						
							|  |  |  |     prdt[0].addr = cpu_to_le32(guest_buf), | 
					
						
							|  |  |  |     prdt[0].size = cpu_to_le32(len | PRDT_EOT), | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     buf = g_malloc(len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Normal request */ | 
					
						
							|  |  |  |     *((uint64_t *)buf) = trim_range[0]; | 
					
						
							|  |  |  |     *((uint64_t *)buf + 1) = trim_range[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memwrite(qts, guest_buf, buf, 2 * sizeof(uint64_t)); | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_DSM, 0, 1, prdt, | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |                               ARRAY_SIZE(prdt), NULL); | 
					
						
							|  |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							|  |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Request contains invalid range */ | 
					
						
							|  |  |  |     *((uint64_t *)buf) = trim_range[2]; | 
					
						
							|  |  |  |     *((uint64_t *)buf + 1) = bad_range; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memwrite(qts, guest_buf, buf, 2 * sizeof(uint64_t)); | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_DSM, 0, 1, prdt, | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |                               ARRAY_SIZE(prdt), NULL); | 
					
						
							|  |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							|  |  |  |     assert_bit_set(qpci_io_readb(dev, ide_bar, reg_status), ERR); | 
					
						
							|  |  |  |     assert_bit_set(qpci_io_readb(dev, ide_bar, reg_error), ABRT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     free_pci_device(dev); | 
					
						
							|  |  |  |     g_free(buf); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     test_bmdma_teardown(qts); | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-23 20:51:17 +03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This test is developed according to the Programming Interface for | 
					
						
							|  |  |  |  * Bus Master IDE Controller (Revision 1.0 5/16/94) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void test_bmdma_various_prdts(void) | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-23 20:51:17 +03:00
										 |  |  |     int sectors = 0; | 
					
						
							|  |  |  |     uint32_t size = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (sectors = 1; sectors <= 256; sectors *= 2) { | 
					
						
							|  |  |  |         QTestState *qts = NULL; | 
					
						
							|  |  |  |         QPCIDevice *dev = NULL; | 
					
						
							|  |  |  |         QPCIBar bmdma_bar, ide_bar; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         qts = test_bmdma_setup(); | 
					
						
							|  |  |  |         dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (size = 0; size < 65536; size += 256) { | 
					
						
							|  |  |  |             uint32_t req_size = sectors * 512; | 
					
						
							|  |  |  |             uint32_t prd_size = size & 0xfffe; /* bit 0 is always set to 0 */ | 
					
						
							|  |  |  |             uint8_t ret = 0; | 
					
						
							|  |  |  |             uint8_t req_status = 0; | 
					
						
							|  |  |  |             uint8_t abort_req_status = 0; | 
					
						
							|  |  |  |             PrdtEntry prdt[] = { | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     .addr = 0, | 
					
						
							|  |  |  |                     .size = cpu_to_le32(size | PRDT_EOT), | 
					
						
							|  |  |  |                 }, | 
					
						
							|  |  |  |             }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* A value of zero in PRD size indicates 64K */ | 
					
						
							|  |  |  |             if (prd_size == 0) { | 
					
						
							|  |  |  |                 prd_size = 65536; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * 1. If PRDs specified a smaller size than the IDE transfer | 
					
						
							|  |  |  |              * size, then the Interrupt and Active bits in the Controller | 
					
						
							|  |  |  |              * status register are not set (Error Condition). | 
					
						
							|  |  |  |              * | 
					
						
							|  |  |  |              * 2. If the size of the physical memory regions was equal to | 
					
						
							|  |  |  |              * the IDE device transfer size, the Interrupt bit in the | 
					
						
							|  |  |  |              * Controller status register is set to 1, Active bit is set to 0. | 
					
						
							|  |  |  |              * | 
					
						
							|  |  |  |              * 3. If PRDs specified a larger size than the IDE transfer size, | 
					
						
							|  |  |  |              * the Interrupt and Active bits in the Controller status register | 
					
						
							|  |  |  |              * are both set to 1. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             if (prd_size < req_size) { | 
					
						
							|  |  |  |                 req_status = 0; | 
					
						
							|  |  |  |                 abort_req_status = 0; | 
					
						
							|  |  |  |             } else if (prd_size == req_size) { | 
					
						
							|  |  |  |                 req_status = BM_STS_INTR; | 
					
						
							|  |  |  |                 abort_req_status = BM_STS_INTR; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 req_status = BM_STS_ACTIVE | BM_STS_INTR; | 
					
						
							|  |  |  |                 abort_req_status = BM_STS_INTR; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* Test the request */ | 
					
						
							|  |  |  |             ret = send_dma_request(qts, CMD_READ_DMA, 0, sectors, | 
					
						
							|  |  |  |                                    prdt, ARRAY_SIZE(prdt), NULL); | 
					
						
							|  |  |  |             g_assert_cmphex(ret, ==, req_status); | 
					
						
							|  |  |  |             assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* Now test aborting the same request */ | 
					
						
							|  |  |  |             ret = send_dma_request(qts, CMD_READ_DMA | CMDF_ABORT, 0, | 
					
						
							|  |  |  |                                    sectors, prdt, ARRAY_SIZE(prdt), NULL); | 
					
						
							|  |  |  |             g_assert_cmphex(ret, ==, abort_req_status); | 
					
						
							|  |  |  |             assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-23 20:51:17 +03:00
										 |  |  |         free_pci_device(dev); | 
					
						
							|  |  |  |         test_bmdma_teardown(qts); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-03-13 13:30:24 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  | static void test_bmdma_no_busmaster(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  |     uint8_t status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = test_bmdma_setup(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  |     /* No PRDT_EOT, each entry addr 0/size 64k, and in theory qemu shouldn't be
 | 
					
						
							|  |  |  |      * able to access it anyway because the Bus Master bit in the PCI command | 
					
						
							|  |  |  |      * register isn't set. This is complete nonsense, but it used to be pretty | 
					
						
							|  |  |  |      * good at confusing and occasionally crashing qemu. */ | 
					
						
							|  |  |  |     PrdtEntry prdt[4096] = { }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_READ_DMA | CMDF_NO_BM, 0, 512, | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |                               prdt, ARRAY_SIZE(prdt), NULL); | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Not entirely clear what the expected result is, but this is what we get
 | 
					
						
							|  |  |  |      * in practice. At least we want to be aware of any changes. */ | 
					
						
							|  |  |  |     g_assert_cmphex(status, ==, BM_STS_ACTIVE | BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     test_bmdma_teardown(qts); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-15 15:00:39 +02:00
										 |  |  | static void string_cpu_to_be16(uint16_t *s, size_t bytes) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     g_assert((bytes & 1) == 0); | 
					
						
							|  |  |  |     bytes /= 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (bytes--) { | 
					
						
							|  |  |  |         *s = cpu_to_be16(*s); | 
					
						
							|  |  |  |         s++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | static void test_identify(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     uint8_t data; | 
					
						
							|  |  |  |     uint16_t buf[256]; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start( | 
					
						
							| 
									
										
										
										
											2018-06-13 11:01:30 +02:00
										 |  |  |         "-drive file=%s,if=ide,cache=writeback,format=raw " | 
					
						
							|  |  |  |         "-global ide-hd.serial=%s -global ide-hd.ver=%s", | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |         tmp_path, "testdisk", "version"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     /* IDENTIFY command on device 0*/ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, CMD_IDENTIFY); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Read in the IDENTIFY buffer and check registers */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     data = qpci_io_readb(dev, ide_bar, reg_device); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:56 +02:00
										 |  |  |     g_assert_cmpint(data & DEV, ==, 0); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < 256; i++) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |         assert_bit_set(data, DRDY | DRQ); | 
					
						
							|  |  |  |         assert_bit_clear(data, BSY | DF | ERR); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         buf[i] = qpci_io_readw(dev, ide_bar, reg_data); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     assert_bit_set(data, DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, BSY | DF | ERR | DRQ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check serial number/version in the buffer */ | 
					
						
							| 
									
										
										
										
											2013-05-15 15:00:39 +02:00
										 |  |  |     string_cpu_to_be16(&buf[10], 20); | 
					
						
							|  |  |  |     ret = memcmp(&buf[10], "testdisk            ", 20); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     g_assert(ret == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-15 15:00:39 +02:00
										 |  |  |     string_cpu_to_be16(&buf[23], 8); | 
					
						
							|  |  |  |     ret = memcmp(&buf[23], "version ", 8); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     g_assert(ret == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Write cache enabled bit */ | 
					
						
							|  |  |  |     assert_bit_set(buf[85], 0x20); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     ide_test_quit(qts); | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Write sector 1 with random data to make IDE storage dirty | 
					
						
							|  |  |  |  * Needed for flush tests so that flushes actually go though the block layer | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static void make_dirty(QTestState *qts, uint8_t device) | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  |     uint8_t status; | 
					
						
							|  |  |  |     size_t len = 512; | 
					
						
							|  |  |  |     uintptr_t guest_buf; | 
					
						
							|  |  |  |     void* buf; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-29 12:37:04 +01:00
										 |  |  |     guest_buf = guest_alloc(&guest_malloc, len); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  |     buf = g_malloc(len); | 
					
						
							| 
									
										
										
										
											2017-02-08 12:05:33 -05:00
										 |  |  |     memset(buf, rand() % 255 + 1, len); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  |     g_assert(guest_buf); | 
					
						
							|  |  |  |     g_assert(buf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memwrite(qts, guest_buf, buf, len); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     PrdtEntry prdt[] = { | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             .addr = cpu_to_le32(guest_buf), | 
					
						
							|  |  |  |             .size = cpu_to_le32(len | PRDT_EOT), | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     status = send_dma_request(qts, CMD_WRITE_DMA, 1, 1, prdt, | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  |                               ARRAY_SIZE(prdt), NULL); | 
					
						
							|  |  |  |     g_assert_cmphex(status, ==, BM_STS_INTR); | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     g_free(buf); | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  | static void test_flush(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     uint8_t data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start( | 
					
						
							| 
									
										
										
										
											2014-11-20 16:27:09 +01:00
										 |  |  |         "-drive file=blkdebug::%s,if=ide,cache=writeback,format=raw", | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |         tmp_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_irq_intercept_in(qts, "ioapic"); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Dirty media so that CMD_FLUSH_CACHE will actually go to disk */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     make_dirty(qts, 0); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     /* Delay the completion of the flush request until we explicitly do it */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     g_free(qtest_hmp(qts, "qemu-io ide0-hd0 \"break flush_to_os A\"")); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* FLUSH CACHE command on device 0*/ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check status while request is in flight*/ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     assert_bit_set(data, BSY | DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, DF | ERR | DRQ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Complete the command */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     g_free(qtest_hmp(qts, "qemu-io ide0-hd0 \"resume A\"")); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check registers */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     data = qpci_io_readb(dev, ide_bar, reg_device); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     g_assert_cmpint(data & DEV, ==, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-10 13:23:20 -05:00
										 |  |  |     do { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2013-06-10 13:23:20 -05:00
										 |  |  |     } while (data & BSY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     assert_bit_set(data, DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, BSY | DF | ERR | DRQ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     ide_test_quit(qts); | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-23 11:18:06 -05:00
										 |  |  | static void test_retry_flush(const char *machine) | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     uint8_t data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     prepare_blkdebug_script(debug_path, "flush_to_disk"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start( | 
					
						
							| 
									
										
										
										
											2014-11-20 16:27:09 +01:00
										 |  |  |         "-drive file=blkdebug:%s:%s,if=ide,cache=writeback,format=raw," | 
					
						
							|  |  |  |         "rerror=stop,werror=stop", | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |         debug_path, tmp_path); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_irq_intercept_in(qts, "ioapic"); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Dirty media so that CMD_FLUSH_CACHE will actually go to disk */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     make_dirty(qts, 0); | 
					
						
							| 
									
										
										
										
											2016-07-18 22:39:51 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     /* FLUSH CACHE command on device 0*/ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check status while request is in flight*/ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     assert_bit_set(data, BSY | DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, DF | ERR | DRQ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_qmp_eventwait(qts, "STOP"); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Complete the command */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qmp_discard_response(qts, "{'execute':'cont' }"); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check registers */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     data = qpci_io_readb(dev, ide_bar, reg_device); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     g_assert_cmpint(data & DEV, ==, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     do { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     } while (data & BSY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_bit_set(data, DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, BSY | DF | ERR | DRQ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     ide_test_quit(qts); | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-12 18:29:41 +02:00
										 |  |  | static void test_flush_nodev(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start(""); | 
					
						
							| 
									
										
										
										
											2014-08-12 18:29:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-12 18:29:41 +02:00
										 |  |  |     /* FLUSH CACHE command on device 0*/ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | 
					
						
							| 
									
										
										
										
											2014-08-12 18:29:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Just testing that qemu doesn't crash... */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     ide_test_quit(qts); | 
					
						
							| 
									
										
										
										
											2014-08-12 18:29:41 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 17:02:12 +01:00
										 |  |  | static void test_flush_empty_drive(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2017-08-09 17:02:12 +01:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							|  |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start("-device ide-cd,bus=ide.0"); | 
					
						
							|  |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2017-08-09 17:02:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* FLUSH CACHE command on device 0 */ | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, CMD_FLUSH_CACHE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Just testing that qemu doesn't crash... */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     ide_test_quit(qts); | 
					
						
							| 
									
										
										
										
											2017-08-09 17:02:12 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-02 21:20:33 +01:00
										 |  |  | static void test_pci_retry_flush(void) | 
					
						
							| 
									
										
										
										
											2015-02-23 11:18:06 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     test_retry_flush("pc"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-02 21:20:33 +01:00
										 |  |  | static void test_isa_retry_flush(void) | 
					
						
							| 
									
										
										
										
											2015-02-23 11:18:06 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     test_retry_flush("isapc"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | typedef struct Read10CDB { | 
					
						
							|  |  |  |     uint8_t opcode; | 
					
						
							|  |  |  |     uint8_t flags; | 
					
						
							|  |  |  |     uint32_t lba; | 
					
						
							|  |  |  |     uint8_t reserved; | 
					
						
							|  |  |  |     uint16_t nblocks; | 
					
						
							|  |  |  |     uint8_t control; | 
					
						
							|  |  |  |     uint16_t padding; | 
					
						
							|  |  |  | } __attribute__((__packed__)) Read10CDB; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  | static void send_scsi_cdb_read10(QPCIDevice *dev, QPCIBar ide_bar, | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |                                  uint64_t lba, int nblocks) | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     Read10CDB pkt = { .padding = 0 }; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     g_assert_cmpint(lba, <=, UINT32_MAX); | 
					
						
							|  |  |  |     g_assert_cmpint(nblocks, <=, UINT16_MAX); | 
					
						
							|  |  |  |     g_assert_cmpint(nblocks, >=, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     /* Construct SCSI CDB packet */ | 
					
						
							|  |  |  |     pkt.opcode = 0x28; | 
					
						
							|  |  |  |     pkt.lba = cpu_to_be32(lba); | 
					
						
							|  |  |  |     pkt.nblocks = cpu_to_be16(nblocks); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Send Packet */ | 
					
						
							|  |  |  |     for (i = 0; i < sizeof(Read10CDB)/2; i++) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         qpci_io_writew(dev, ide_bar, reg_data, | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |                        le16_to_cpu(((uint16_t *)&pkt)[i])); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static void nsleep(QTestState *qts, int64_t nsecs) | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     const struct timespec val = { .tv_nsec = nsecs }; | 
					
						
							|  |  |  |     nanosleep(&val, NULL); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_clock_set(qts, nsecs); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static uint8_t ide_wait_clear(QTestState *qts, uint8_t flag) | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     uint8_t data; | 
					
						
							| 
									
										
										
										
											2015-11-24 14:36:11 -05:00
										 |  |  |     time_t st; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     /* Wait with a 5 second timeout */ | 
					
						
							| 
									
										
										
										
											2015-11-24 14:36:11 -05:00
										 |  |  |     time(&st); | 
					
						
							|  |  |  |     while (true) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |         data = qpci_io_readb(dev, ide_bar, reg_status); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |         if (!(data & flag)) { | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |             free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |             return data; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-11-24 14:36:11 -05:00
										 |  |  |         if (difftime(time(NULL), st) > 5.0) { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |         nsleep(qts, 400); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     } | 
					
						
							|  |  |  |     g_assert_not_reached(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  | static void ide_wait_intr(QTestState *qts, int irq) | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-11-24 14:36:11 -05:00
										 |  |  |     time_t st; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     bool intr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 14:36:11 -05:00
										 |  |  |     time(&st); | 
					
						
							|  |  |  |     while (true) { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |         intr = qtest_get_irq(qts, irq); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |         if (intr) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-11-24 14:36:11 -05:00
										 |  |  |         if (difftime(time(NULL), st) > 5.0) { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |         nsleep(qts, 400); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     g_assert_not_reached(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void cdrom_pio_impl(int nblocks) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2016-10-21 10:46:37 +11:00
										 |  |  |     QPCIDevice *dev; | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     QPCIBar bmdma_bar, ide_bar; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     FILE *fh; | 
					
						
							|  |  |  |     int patt_blocks = MAX(16, nblocks); | 
					
						
							|  |  |  |     size_t patt_len = ATAPI_BLOCK_SIZE * patt_blocks; | 
					
						
							|  |  |  |     char *pattern = g_malloc(patt_len); | 
					
						
							|  |  |  |     size_t rxsize = ATAPI_BLOCK_SIZE * nblocks; | 
					
						
							|  |  |  |     uint16_t *rx = g_malloc0(rxsize); | 
					
						
							|  |  |  |     int i, j; | 
					
						
							|  |  |  |     uint8_t data; | 
					
						
							|  |  |  |     uint16_t limit; | 
					
						
							| 
									
										
										
										
											2017-05-31 15:28:36 -04:00
										 |  |  |     size_t ret; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Prepopulate the CDROM with an interesting pattern */ | 
					
						
							|  |  |  |     generate_pattern(pattern, patt_len, ATAPI_BLOCK_SIZE); | 
					
						
							|  |  |  |     fh = fopen(tmp_path, "w+"); | 
					
						
							| 
									
										
										
										
											2017-05-31 15:28:36 -04:00
										 |  |  |     ret = fwrite(pattern, ATAPI_BLOCK_SIZE, patt_blocks, fh); | 
					
						
							|  |  |  |     g_assert_cmpint(ret, ==, patt_blocks); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     fclose(fh); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start( | 
					
						
							|  |  |  |             "-drive if=none,file=%s,media=cdrom,format=raw,id=sr0,index=0 " | 
					
						
							|  |  |  |             "-device ide-cd,drive=sr0,bus=ide.0", tmp_path); | 
					
						
							|  |  |  |     dev = get_pci_device(qts, &bmdma_bar, &ide_bar); | 
					
						
							|  |  |  |     qtest_irq_intercept_in(qts, "ioapic"); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* PACKET command on device 0 */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     qpci_io_writeb(dev, ide_bar, reg_device, 0); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_lba_middle, BYTE_COUNT_LIMIT & 0xFF); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_lba_high, (BYTE_COUNT_LIMIT >> 8 & 0xFF)); | 
					
						
							|  |  |  |     qpci_io_writeb(dev, ide_bar, reg_command, CMD_PACKET); | 
					
						
							| 
									
										
										
										
											2015-11-20 15:29:02 +01:00
										 |  |  |     /* HP0: Check_Status_A State */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     nsleep(qts, 400); | 
					
						
							|  |  |  |     data = ide_wait_clear(qts, BSY); | 
					
						
							| 
									
										
										
										
											2015-11-20 15:29:02 +01:00
										 |  |  |     /* HP1: Send_Packet State */ | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     assert_bit_set(data, DRQ | DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, ERR | DF | BSY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* SCSI CDB (READ10) -- read n*2048 bytes from block 0 */ | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |     send_scsi_cdb_read10(dev, ide_bar, 0, nblocks); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Read data back: occurs in bursts of 'BYTE_COUNT_LIMIT' bytes.
 | 
					
						
							|  |  |  |      * If BYTE_COUNT_LIMIT is odd, we transfer BYTE_COUNT_LIMIT - 1 bytes. | 
					
						
							|  |  |  |      * We allow an odd limit only when the remaining transfer size is | 
					
						
							|  |  |  |      * less than BYTE_COUNT_LIMIT. However, SCSI's read10 command can only | 
					
						
							|  |  |  |      * request n blocks, so our request size is always even. | 
					
						
							|  |  |  |      * For this reason, we assume there is never a hanging byte to fetch. */ | 
					
						
							|  |  |  |     g_assert(!(rxsize & 1)); | 
					
						
							|  |  |  |     limit = BYTE_COUNT_LIMIT & ~1; | 
					
						
							|  |  |  |     for (i = 0; i < DIV_ROUND_UP(rxsize, limit); i++) { | 
					
						
							|  |  |  |         size_t offset = i * (limit / 2); | 
					
						
							|  |  |  |         size_t rem = (rxsize / 2) - offset; | 
					
						
							| 
									
										
										
										
											2015-11-20 17:53:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* HP3: INTRQ_Wait */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |         ide_wait_intr(qts, IDE_PRIMARY_IRQ); | 
					
						
							| 
									
										
										
										
											2015-11-20 17:53:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* HP2: Check_Status_B (and clear IRQ) */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |         data = ide_wait_clear(qts, BSY); | 
					
						
							| 
									
										
										
										
											2015-11-20 15:29:02 +01:00
										 |  |  |         assert_bit_set(data, DRQ | DRDY); | 
					
						
							|  |  |  |         assert_bit_clear(data, ERR | DF | BSY); | 
					
						
							| 
									
										
										
										
											2015-11-20 17:53:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-20 15:29:02 +01:00
										 |  |  |         /* HP4: Transfer_Data */ | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |         for (j = 0; j < MIN((limit / 2), rem); j++) { | 
					
						
							| 
									
										
										
										
											2016-10-24 15:52:06 +11:00
										 |  |  |             rx[offset + j] = cpu_to_le16(qpci_io_readw(dev, ide_bar, | 
					
						
							|  |  |  |                                                        reg_data)); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-11-20 17:53:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check for final completion IRQ */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     ide_wait_intr(qts, IDE_PRIMARY_IRQ); | 
					
						
							| 
									
										
										
										
											2015-11-20 17:53:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Sanity check final state */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     data = ide_wait_clear(qts, DRQ); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     assert_bit_set(data, DRDY); | 
					
						
							|  |  |  |     assert_bit_clear(data, DRQ | ERR | DF | BSY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     g_assert_cmpint(memcmp(pattern, rx, rxsize), ==, 0); | 
					
						
							|  |  |  |     g_free(pattern); | 
					
						
							|  |  |  |     g_free(rx); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     test_bmdma_teardown(qts); | 
					
						
							| 
									
										
										
										
											2017-02-03 16:10:45 +04:00
										 |  |  |     free_pci_device(dev); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void test_cdrom_pio(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     cdrom_pio_impl(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void test_cdrom_pio_large(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Test a few loops of the PIO DRQ mechanism. */ | 
					
						
							|  |  |  |     cdrom_pio_impl(BYTE_COUNT_LIMIT * 4 / ATAPI_BLOCK_SIZE); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void test_cdrom_dma(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     QTestState *qts; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     static const size_t len = ATAPI_BLOCK_SIZE; | 
					
						
							| 
									
										
										
										
											2017-05-31 15:28:36 -04:00
										 |  |  |     size_t ret; | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     char *pattern = g_malloc(ATAPI_BLOCK_SIZE * 16); | 
					
						
							|  |  |  |     char *rx = g_malloc0(len); | 
					
						
							|  |  |  |     uintptr_t guest_buf; | 
					
						
							|  |  |  |     PrdtEntry prdt[1]; | 
					
						
							|  |  |  |     FILE *fh; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qts = ide_test_start( | 
					
						
							|  |  |  |             "-drive if=none,file=%s,media=cdrom,format=raw,id=sr0,index=0 " | 
					
						
							|  |  |  |             "-device ide-cd,drive=sr0,bus=ide.0", tmp_path); | 
					
						
							|  |  |  |     qtest_irq_intercept_in(qts, "ioapic"); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-29 12:37:04 +01:00
										 |  |  |     guest_buf = guest_alloc(&guest_malloc, len); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     prdt[0].addr = cpu_to_le32(guest_buf); | 
					
						
							|  |  |  |     prdt[0].size = cpu_to_le32(len | PRDT_EOT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     generate_pattern(pattern, ATAPI_BLOCK_SIZE * 16, ATAPI_BLOCK_SIZE); | 
					
						
							|  |  |  |     fh = fopen(tmp_path, "w+"); | 
					
						
							| 
									
										
										
										
											2017-05-31 15:28:36 -04:00
										 |  |  |     ret = fwrite(pattern, ATAPI_BLOCK_SIZE, 16, fh); | 
					
						
							|  |  |  |     g_assert_cmpint(ret, ==, 16); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     fclose(fh); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     send_dma_request(qts, CMD_PACKET, 0, 1, prdt, 1, send_scsi_cdb_read10); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Read back data from guest memory into local qtest memory */ | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     qtest_memread(qts, guest_buf, rx, len); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     g_assert_cmpint(memcmp(pattern, rx, len), ==, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     g_free(pattern); | 
					
						
							|  |  |  |     g_free(rx); | 
					
						
							| 
									
										
										
										
											2019-04-09 10:52:45 +02:00
										 |  |  |     test_bmdma_teardown(qts); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | int main(int argc, char **argv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int fd; | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     /* Create temporary blkdebug instructions */ | 
					
						
							|  |  |  |     fd = mkstemp(debug_path); | 
					
						
							|  |  |  |     g_assert(fd >= 0); | 
					
						
							|  |  |  |     close(fd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     /* Create a temporary raw image */ | 
					
						
							|  |  |  |     fd = mkstemp(tmp_path); | 
					
						
							|  |  |  |     g_assert(fd >= 0); | 
					
						
							|  |  |  |     ret = ftruncate(fd, TEST_IMAGE_SIZE); | 
					
						
							|  |  |  |     g_assert(ret == 0); | 
					
						
							|  |  |  |     close(fd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Run the tests */ | 
					
						
							|  |  |  |     g_test_init(&argc, &argv, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qtest_add_func("/ide/identify", test_identify); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  |     qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw); | 
					
						
							| 
									
										
										
										
											2018-02-07 11:25:22 -05:00
										 |  |  |     qtest_add_func("/ide/bmdma/trim", test_bmdma_trim); | 
					
						
							| 
									
										
										
										
											2019-12-23 20:51:17 +03:00
										 |  |  |     qtest_add_func("/ide/bmdma/various_prdts", test_bmdma_various_prdts); | 
					
						
							| 
									
										
										
										
											2013-07-22 14:26:25 +02:00
										 |  |  |     qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:34:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-05 15:17:58 +02:00
										 |  |  |     qtest_add_func("/ide/flush", test_flush); | 
					
						
							| 
									
										
										
										
											2015-02-23 11:18:06 -05:00
										 |  |  |     qtest_add_func("/ide/flush/nodev", test_flush_nodev); | 
					
						
							| 
									
										
										
										
											2017-08-09 17:02:12 +01:00
										 |  |  |     qtest_add_func("/ide/flush/empty_drive", test_flush_empty_drive); | 
					
						
							| 
									
										
										
										
											2015-02-23 11:18:06 -05:00
										 |  |  |     qtest_add_func("/ide/flush/retry_pci", test_pci_retry_flush); | 
					
						
							|  |  |  |     qtest_add_func("/ide/flush/retry_isa", test_isa_retry_flush); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  |     qtest_add_func("/ide/cdrom/pio", test_cdrom_pio); | 
					
						
							|  |  |  |     qtest_add_func("/ide/cdrom/pio_large", test_cdrom_pio_large); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:05 -04:00
										 |  |  |     qtest_add_func("/ide/cdrom/dma", test_cdrom_dma); | 
					
						
							| 
									
										
										
										
											2015-09-17 14:17:04 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  |     ret = g_test_run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Cleanup */ | 
					
						
							|  |  |  |     unlink(tmp_path); | 
					
						
							| 
									
										
										
										
											2014-08-04 17:11:04 -04:00
										 |  |  |     unlink(debug_path); | 
					
						
							| 
									
										
										
										
											2013-05-08 11:18:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } |