2 * QEMU 8253/8254 interval timer emulation
4 * Copyright (c) 2003-2004 Fabrice Bellard
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
25 #include "qemu/osdep.h"
27 #include "qemu/module.h"
28 #include "qemu/timer.h"
29 #include "hw/timer/i8254.h"
30 #include "hw/timer/i8254_internal.h"
34 #define RW_STATE_LSB 1
35 #define RW_STATE_MSB 2
36 #define RW_STATE_WORD0 3
37 #define RW_STATE_WORD1 4
39 #define PIT_CLASS(class) OBJECT_CLASS_CHECK(PITClass, (class), TYPE_I8254)
40 #define PIT_GET_CLASS(obj) OBJECT_GET_CLASS(PITClass, (obj), TYPE_I8254)
42 typedef struct PITClass
{
43 PITCommonClass parent_class
;
45 DeviceRealize parent_realize
;
48 static void pit_irq_timer_update(PITChannelState
*s
, int64_t current_time
);
50 static int pit_get_count(PITChannelState
*s
)
55 d
= muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) - s
->count_load_time
, PIT_FREQ
,
56 NANOSECONDS_PER_SECOND
);
62 counter
= (s
->count
- d
) & 0xffff;
65 /* XXX: may be incorrect for odd counts */
66 counter
= s
->count
- ((2 * d
) % s
->count
);
69 counter
= s
->count
- (d
% s
->count
);
75 /* val must be 0 or 1 */
76 static void pit_set_channel_gate(PITCommonState
*s
, PITChannelState
*sc
,
83 /* XXX: just disable/enable counting */
88 /* restart counting on rising edge */
89 sc
->count_load_time
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
90 pit_irq_timer_update(sc
, sc
->count_load_time
);
96 /* restart counting on rising edge */
97 sc
->count_load_time
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
98 pit_irq_timer_update(sc
, sc
->count_load_time
);
100 /* XXX: disable/enable counting */
106 static inline void pit_load_count(PITChannelState
*s
, int val
)
110 s
->count_load_time
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
112 pit_irq_timer_update(s
, s
->count_load_time
);
115 /* if already latched, do not latch again */
116 static void pit_latch_count(PITChannelState
*s
)
118 if (!s
->count_latched
) {
119 s
->latched_count
= pit_get_count(s
);
120 s
->count_latched
= s
->rw_mode
;
124 static void pit_ioport_write(void *opaque
, hwaddr addr
,
125 uint64_t val
, unsigned size
)
127 PITCommonState
*pit
= opaque
;
135 /* read back command */
136 for(channel
= 0; channel
< 3; channel
++) {
137 s
= &pit
->channels
[channel
];
138 if (val
& (2 << channel
)) {
142 if (!(val
& 0x10) && !s
->status_latched
) {
144 /* XXX: add BCD and null count */
147 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
)) << 7) |
151 s
->status_latched
= 1;
156 s
= &pit
->channels
[channel
];
157 access
= (val
>> 4) & 3;
162 s
->read_state
= access
;
163 s
->write_state
= access
;
165 s
->mode
= (val
>> 1) & 7;
167 /* XXX: update irq timer ? */
171 s
= &pit
->channels
[addr
];
172 switch(s
->write_state
) {
175 pit_load_count(s
, val
);
178 pit_load_count(s
, val
<< 8);
181 s
->write_latch
= val
;
182 s
->write_state
= RW_STATE_WORD1
;
185 pit_load_count(s
, s
->write_latch
| (val
<< 8));
186 s
->write_state
= RW_STATE_WORD0
;
192 static uint64_t pit_ioport_read(void *opaque
, hwaddr addr
,
195 PITCommonState
*pit
= opaque
;
202 /* Mode/Command register is write only, read is ignored */
206 s
= &pit
->channels
[addr
];
207 if (s
->status_latched
) {
208 s
->status_latched
= 0;
210 } else if (s
->count_latched
) {
211 switch(s
->count_latched
) {
214 ret
= s
->latched_count
& 0xff;
215 s
->count_latched
= 0;
218 ret
= s
->latched_count
>> 8;
219 s
->count_latched
= 0;
222 ret
= s
->latched_count
& 0xff;
223 s
->count_latched
= RW_STATE_MSB
;
227 switch(s
->read_state
) {
230 count
= pit_get_count(s
);
234 count
= pit_get_count(s
);
235 ret
= (count
>> 8) & 0xff;
238 count
= pit_get_count(s
);
240 s
->read_state
= RW_STATE_WORD1
;
243 count
= pit_get_count(s
);
244 ret
= (count
>> 8) & 0xff;
245 s
->read_state
= RW_STATE_WORD0
;
252 static void pit_irq_timer_update(PITChannelState
*s
, int64_t current_time
)
257 if (!s
->irq_timer
|| s
->irq_disabled
) {
260 expire_time
= pit_get_next_transition_time(s
, current_time
);
261 irq_level
= pit_get_out(s
, current_time
);
262 qemu_set_irq(s
->irq
, irq_level
);
264 printf("irq_level=%d next_delay=%f\n",
266 (double)(expire_time
- current_time
) / NANOSECONDS_PER_SECOND
);
268 s
->next_transition_time
= expire_time
;
269 if (expire_time
!= -1)
270 timer_mod(s
->irq_timer
, expire_time
);
272 timer_del(s
->irq_timer
);
275 static void pit_irq_timer(void *opaque
)
277 PITChannelState
*s
= opaque
;
279 pit_irq_timer_update(s
, s
->next_transition_time
);
282 static void pit_reset(DeviceState
*dev
)
284 PITCommonState
*pit
= PIT_COMMON(dev
);
287 pit_reset_common(pit
);
289 s
= &pit
->channels
[0];
290 if (!s
->irq_disabled
) {
291 timer_mod(s
->irq_timer
, s
->next_transition_time
);
295 /* When HPET is operating in legacy mode, suppress the ignored timer IRQ,
296 * reenable it when legacy mode is left again. */
297 static void pit_irq_control(void *opaque
, int n
, int enable
)
299 PITCommonState
*pit
= opaque
;
300 PITChannelState
*s
= &pit
->channels
[0];
304 pit_irq_timer_update(s
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
));
307 timer_del(s
->irq_timer
);
311 static const MemoryRegionOps pit_ioport_ops
= {
312 .read
= pit_ioport_read
,
313 .write
= pit_ioport_write
,
315 .min_access_size
= 1,
316 .max_access_size
= 1,
318 .endianness
= DEVICE_LITTLE_ENDIAN
,
321 static void pit_post_load(PITCommonState
*s
)
323 PITChannelState
*sc
= &s
->channels
[0];
325 if (sc
->next_transition_time
!= -1) {
326 timer_mod(sc
->irq_timer
, sc
->next_transition_time
);
328 timer_del(sc
->irq_timer
);
332 static void pit_realizefn(DeviceState
*dev
, Error
**errp
)
334 PITCommonState
*pit
= PIT_COMMON(dev
);
335 PITClass
*pc
= PIT_GET_CLASS(dev
);
338 s
= &pit
->channels
[0];
339 /* the timer 0 is connected to an IRQ */
340 s
->irq_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, pit_irq_timer
, s
);
341 qdev_init_gpio_out(dev
, &s
->irq
, 1);
343 memory_region_init_io(&pit
->ioports
, OBJECT(pit
), &pit_ioport_ops
,
346 qdev_init_gpio_in(dev
, pit_irq_control
, 1);
348 pc
->parent_realize(dev
, errp
);
351 static Property pit_properties
[] = {
352 DEFINE_PROP_UINT32("iobase", PITCommonState
, iobase
, -1),
353 DEFINE_PROP_END_OF_LIST(),
356 static void pit_class_initfn(ObjectClass
*klass
, void *data
)
358 PITClass
*pc
= PIT_CLASS(klass
);
359 PITCommonClass
*k
= PIT_COMMON_CLASS(klass
);
360 DeviceClass
*dc
= DEVICE_CLASS(klass
);
362 device_class_set_parent_realize(dc
, pit_realizefn
, &pc
->parent_realize
);
363 k
->set_channel_gate
= pit_set_channel_gate
;
364 k
->get_channel_info
= pit_get_channel_info_common
;
365 k
->post_load
= pit_post_load
;
366 dc
->reset
= pit_reset
;
367 dc
->props
= pit_properties
;
370 static const TypeInfo pit_info
= {
372 .parent
= TYPE_PIT_COMMON
,
373 .instance_size
= sizeof(PITCommonState
),
374 .class_init
= pit_class_initfn
,
375 .class_size
= sizeof(PITClass
),
378 static void pit_register_types(void)
380 type_register_static(&pit_info
);
383 type_init(pit_register_types
)