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
32 #include "qemu-common.h"
34 #define TEST_IMAGE_SIZE 1440 * 1024
36 #define FLOPPY_BASE 0x3f0
61 char test_image
[] = "/tmp/qtest.XXXXXX";
63 #define assert_bit_set(data, mask) g_assert_cmphex((data) & (mask), ==, (mask))
64 #define assert_bit_clear(data, mask) g_assert_cmphex((data) & (mask), ==, 0)
66 static uint8_t base
= 0x70;
72 static void floppy_send(uint8_t byte
)
76 msr
= inb(FLOPPY_BASE
+ reg_msr
);
77 assert_bit_set(msr
, RQM
);
78 assert_bit_clear(msr
, DIO
);
80 outb(FLOPPY_BASE
+ reg_fifo
, byte
);
83 static uint8_t floppy_recv(void)
87 msr
= inb(FLOPPY_BASE
+ reg_msr
);
88 assert_bit_set(msr
, RQM
| DIO
);
90 return inb(FLOPPY_BASE
+ reg_fifo
);
93 static void ack_irq(void)
95 g_assert(get_irq(FLOPPY_IRQ
));
96 floppy_send(CMD_SENSE_INT
);
99 g_assert(!get_irq(FLOPPY_IRQ
));
102 static void send_step_pulse(void)
108 floppy_send(CMD_SEEK
);
109 floppy_send(head
<< 2 | drive
);
110 g_assert(!get_irq(FLOPPY_IRQ
));
117 static uint8_t cmos_read(uint8_t reg
)
120 return inb(base
+ 1);
123 static void test_cmos(void)
127 cmos
= cmos_read(CMOS_FLOPPY
);
128 g_assert(cmos
== 0x40);
131 static void test_no_media_on_start(void)
135 /* Media changed bit must be set all time after start if there is
136 * no media in drive. */
137 dir
= inb(FLOPPY_BASE
+ reg_dir
);
138 assert_bit_set(dir
, DSKCHG
);
139 dir
= inb(FLOPPY_BASE
+ reg_dir
);
140 assert_bit_set(dir
, DSKCHG
);
143 dir
= inb(FLOPPY_BASE
+ reg_dir
);
144 assert_bit_set(dir
, DSKCHG
);
145 dir
= inb(FLOPPY_BASE
+ reg_dir
);
146 assert_bit_set(dir
, DSKCHG
);
149 static void test_media_change(void)
153 /* Insert media in drive. DSKCHK should not be reset until a step pulse
155 qmp("{'execute':'change', 'arguments':{ 'device':'floppy0', "
156 "'target': '%s' }}", test_image
);
157 qmp(""); /* ignore event (FIXME open -> open transition?!) */
158 qmp(""); /* ignore event */
160 dir
= inb(FLOPPY_BASE
+ reg_dir
);
161 assert_bit_set(dir
, DSKCHG
);
162 dir
= inb(FLOPPY_BASE
+ reg_dir
);
163 assert_bit_set(dir
, DSKCHG
);
166 dir
= inb(FLOPPY_BASE
+ reg_dir
);
167 assert_bit_clear(dir
, DSKCHG
);
168 dir
= inb(FLOPPY_BASE
+ reg_dir
);
169 assert_bit_clear(dir
, DSKCHG
);
171 /* Eject the floppy and check that DSKCHG is set. Reading it out doesn't
173 qmp("{'execute':'eject', 'arguments':{ 'device':'floppy0' }}");
174 qmp(""); /* ignore event */
176 dir
= inb(FLOPPY_BASE
+ reg_dir
);
177 assert_bit_set(dir
, DSKCHG
);
178 dir
= inb(FLOPPY_BASE
+ reg_dir
);
179 assert_bit_set(dir
, DSKCHG
);
182 dir
= inb(FLOPPY_BASE
+ reg_dir
);
183 assert_bit_set(dir
, DSKCHG
);
184 dir
= inb(FLOPPY_BASE
+ reg_dir
);
185 assert_bit_set(dir
, DSKCHG
);
188 int main(int argc
, char **argv
)
190 const char *arch
= qtest_get_arch();
195 /* Check architecture */
196 if (strcmp(arch
, "i386") && strcmp(arch
, "x86_64")) {
197 g_test_message("Skipping test for non-x86\n");
201 /* Create a temporary raw image */
202 fd
= mkstemp(test_image
);
204 ret
= ftruncate(fd
, TEST_IMAGE_SIZE
);
209 g_test_init(&argc
, &argv
, NULL
);
211 cmdline
= g_strdup_printf("-vnc none ");
213 qtest_start(cmdline
);
214 qtest_irq_intercept_in(global_qtest
, "ioapic");
215 qtest_add_func("/fdc/cmos", test_cmos
);
216 qtest_add_func("/fdc/no_media_on_start", test_no_media_on_start
);
217 qtest_add_func("/fdc/media_change", test_media_change
);
222 qtest_quit(global_qtest
);