Introduce Xen PCI Passthrough, MSI
[qemu/ar7.git] / tests / fdc-test.c
blobe730398e7ceb35980a5c0ee28113367074d917c6
1 /*
2 * Floppy test cases.
4 * Copyright (c) 2012 Kevin Wolf <kwolf@redhat.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include <stdint.h>
26 #include <string.h>
27 #include <stdio.h>
29 #include <glib.h>
31 #include "libqtest.h"
32 #include "qemu-common.h"
34 #define TEST_IMAGE_SIZE 1440 * 1024
36 #define FLOPPY_BASE 0x3f0
37 #define FLOPPY_IRQ 6
39 enum {
40 reg_sra = 0x0,
41 reg_srb = 0x1,
42 reg_dor = 0x2,
43 reg_msr = 0x4,
44 reg_dsr = 0x4,
45 reg_fifo = 0x5,
46 reg_dir = 0x7,
49 enum {
50 CMD_SENSE_INT = 0x08,
51 CMD_SEEK = 0x0f,
52 CMD_READ = 0xe6,
55 enum {
56 RQM = 0x80,
57 DIO = 0x40,
59 DSKCHG = 0x80,
62 char test_image[] = "/tmp/qtest.XXXXXX";
64 #define assert_bit_set(data, mask) g_assert_cmphex((data) & (mask), ==, (mask))
65 #define assert_bit_clear(data, mask) g_assert_cmphex((data) & (mask), ==, 0)
67 static uint8_t base = 0x70;
69 enum {
70 CMOS_FLOPPY = 0x10,
73 static void floppy_send(uint8_t byte)
75 uint8_t msr;
77 msr = inb(FLOPPY_BASE + reg_msr);
78 assert_bit_set(msr, RQM);
79 assert_bit_clear(msr, DIO);
81 outb(FLOPPY_BASE + reg_fifo, byte);
84 static uint8_t floppy_recv(void)
86 uint8_t msr;
88 msr = inb(FLOPPY_BASE + reg_msr);
89 assert_bit_set(msr, RQM | DIO);
91 return inb(FLOPPY_BASE + reg_fifo);
94 static void ack_irq(void)
96 g_assert(get_irq(FLOPPY_IRQ));
97 floppy_send(CMD_SENSE_INT);
98 floppy_recv();
99 floppy_recv();
100 g_assert(!get_irq(FLOPPY_IRQ));
103 static uint8_t send_read_command(void)
105 uint8_t drive = 0;
106 uint8_t head = 0;
107 uint8_t cyl = 0;
108 uint8_t sect_addr = 1;
109 uint8_t sect_size = 2;
110 uint8_t eot = 1;
111 uint8_t gap = 0x1b;
112 uint8_t gpl = 0xff;
114 uint8_t msr = 0;
115 uint8_t st0;
117 uint8_t ret = 0;
119 floppy_send(CMD_READ);
120 floppy_send(head << 2 | drive);
121 g_assert(!get_irq(FLOPPY_IRQ));
122 floppy_send(cyl);
123 floppy_send(head);
124 floppy_send(sect_addr);
125 floppy_send(sect_size);
126 floppy_send(eot);
127 floppy_send(gap);
128 floppy_send(gpl);
130 uint8_t i = 0;
131 uint8_t n = 2;
132 for (; i < n; i++) {
133 msr = inb(FLOPPY_BASE + reg_msr);
134 if (msr == 0xd0) {
135 break;
137 sleep(1);
140 if (i >= n) {
141 return 1;
144 st0 = floppy_recv();
145 if (st0 != 0x40) {
146 ret = 1;
149 floppy_recv();
150 floppy_recv();
151 floppy_recv();
152 floppy_recv();
153 floppy_recv();
154 floppy_recv();
156 return ret;
159 static void send_step_pulse(void)
161 int drive = 0;
162 int head = 0;
163 static int cyl = 0;
165 floppy_send(CMD_SEEK);
166 floppy_send(head << 2 | drive);
167 g_assert(!get_irq(FLOPPY_IRQ));
168 floppy_send(cyl);
169 ack_irq();
171 cyl = (cyl + 1) % 4;
174 static uint8_t cmos_read(uint8_t reg)
176 outb(base + 0, reg);
177 return inb(base + 1);
180 static void test_cmos(void)
182 uint8_t cmos;
184 cmos = cmos_read(CMOS_FLOPPY);
185 g_assert(cmos == 0x40);
188 static void test_no_media_on_start(void)
190 uint8_t dir;
192 /* Media changed bit must be set all time after start if there is
193 * no media in drive. */
194 dir = inb(FLOPPY_BASE + reg_dir);
195 assert_bit_set(dir, DSKCHG);
196 dir = inb(FLOPPY_BASE + reg_dir);
197 assert_bit_set(dir, DSKCHG);
198 send_step_pulse();
199 send_step_pulse();
200 dir = inb(FLOPPY_BASE + reg_dir);
201 assert_bit_set(dir, DSKCHG);
202 dir = inb(FLOPPY_BASE + reg_dir);
203 assert_bit_set(dir, DSKCHG);
206 static void test_read_without_media(void)
208 uint8_t ret;
210 ret = send_read_command();
211 g_assert(ret == 0);
214 static void test_media_change(void)
216 uint8_t dir;
218 /* Insert media in drive. DSKCHK should not be reset until a step pulse
219 * is sent. */
220 qmp("{'execute':'change', 'arguments':{ 'device':'floppy0', "
221 "'target': '%s' }}", test_image);
222 qmp(""); /* ignore event (FIXME open -> open transition?!) */
223 qmp(""); /* ignore event */
225 dir = inb(FLOPPY_BASE + reg_dir);
226 assert_bit_set(dir, DSKCHG);
227 dir = inb(FLOPPY_BASE + reg_dir);
228 assert_bit_set(dir, DSKCHG);
230 send_step_pulse();
231 dir = inb(FLOPPY_BASE + reg_dir);
232 assert_bit_clear(dir, DSKCHG);
233 dir = inb(FLOPPY_BASE + reg_dir);
234 assert_bit_clear(dir, DSKCHG);
236 /* Eject the floppy and check that DSKCHG is set. Reading it out doesn't
237 * reset the bit. */
238 qmp("{'execute':'eject', 'arguments':{ 'device':'floppy0' }}");
239 qmp(""); /* ignore event */
241 dir = inb(FLOPPY_BASE + reg_dir);
242 assert_bit_set(dir, DSKCHG);
243 dir = inb(FLOPPY_BASE + reg_dir);
244 assert_bit_set(dir, DSKCHG);
246 send_step_pulse();
247 dir = inb(FLOPPY_BASE + reg_dir);
248 assert_bit_set(dir, DSKCHG);
249 dir = inb(FLOPPY_BASE + reg_dir);
250 assert_bit_set(dir, DSKCHG);
253 int main(int argc, char **argv)
255 const char *arch = qtest_get_arch();
256 char *cmdline;
257 int fd;
258 int ret;
260 /* Check architecture */
261 if (strcmp(arch, "i386") && strcmp(arch, "x86_64")) {
262 g_test_message("Skipping test for non-x86\n");
263 return 0;
266 /* Create a temporary raw image */
267 fd = mkstemp(test_image);
268 g_assert(fd >= 0);
269 ret = ftruncate(fd, TEST_IMAGE_SIZE);
270 g_assert(ret == 0);
271 close(fd);
273 /* Run the tests */
274 g_test_init(&argc, &argv, NULL);
276 cmdline = g_strdup_printf("-vnc none ");
278 qtest_start(cmdline);
279 qtest_irq_intercept_in(global_qtest, "ioapic");
280 qtest_add_func("/fdc/cmos", test_cmos);
281 qtest_add_func("/fdc/no_media_on_start", test_no_media_on_start);
282 qtest_add_func("/fdc/read_without_media", test_read_without_media);
283 qtest_add_func("/fdc/media_change", test_media_change);
285 ret = g_test_run();
287 /* Cleanup */
288 qtest_quit(global_qtest);
289 unlink(test_image);
291 return ret;