]>
Commit | Line | Data |
---|---|---|
16b29ae1 | 1 | /* |
97c61fb7 | 2 | * High Precision Event Timer emulation |
16b29ae1 AL |
3 | * |
4 | * Copyright (c) 2007 Alexander Graf | |
5 | * Copyright (c) 2008 IBM Corporation | |
6 | * | |
7 | * Authors: Beth Kon <[email protected]> | |
8 | * | |
9 | * This library is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU Lesser General Public | |
11 | * License as published by the Free Software Foundation; either | |
12 | * version 2 of the License, or (at your option) any later version. | |
13 | * | |
14 | * This library is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | * Lesser General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU Lesser General Public | |
8167ee88 | 20 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
16b29ae1 AL |
21 | * |
22 | * ***************************************************************** | |
23 | * | |
24 | * This driver attempts to emulate an HPET device in software. | |
25 | */ | |
26 | ||
b6a0aa05 | 27 | #include "qemu/osdep.h" |
83c9f4ca | 28 | #include "hw/hw.h" |
0d09e41a | 29 | #include "hw/i386/pc.h" |
28ecbaee | 30 | #include "ui/console.h" |
da34e65c | 31 | #include "qapi/error.h" |
d49b6836 | 32 | #include "qemu/error-report.h" |
1de7afc9 | 33 | #include "qemu/timer.h" |
0d09e41a | 34 | #include "hw/timer/hpet.h" |
83c9f4ca | 35 | #include "hw/sysbus.h" |
0d09e41a PB |
36 | #include "hw/timer/mc146818rtc.h" |
37 | #include "hw/timer/i8254.h" | |
16b29ae1 | 38 | |
16b29ae1 AL |
39 | //#define HPET_DEBUG |
40 | #ifdef HPET_DEBUG | |
d0f2c4c6 | 41 | #define DPRINTF printf |
16b29ae1 | 42 | #else |
d0f2c4c6 | 43 | #define DPRINTF(...) |
16b29ae1 AL |
44 | #endif |
45 | ||
8caa0065 JK |
46 | #define HPET_MSI_SUPPORT 0 |
47 | ||
02f9a6f5 HT |
48 | #define HPET(obj) OBJECT_CHECK(HPETState, (obj), TYPE_HPET) |
49 | ||
27bb0b2d JK |
50 | struct HPETState; |
51 | typedef struct HPETTimer { /* timers */ | |
52 | uint8_t tn; /*timer number*/ | |
53 | QEMUTimer *qemu_timer; | |
54 | struct HPETState *state; | |
55 | /* Memory-mapped, software visible timer registers */ | |
56 | uint64_t config; /* configuration/cap */ | |
57 | uint64_t cmp; /* comparator */ | |
8caa0065 | 58 | uint64_t fsb; /* FSB route */ |
27bb0b2d JK |
59 | /* Hidden register state */ |
60 | uint64_t period; /* Last value written to comparator */ | |
61 | uint8_t wrap_flag; /* timer pop will indicate wrap for one-shot 32-bit | |
62 | * mode. Next pop will be actual timer expiration. | |
63 | */ | |
64 | } HPETTimer; | |
65 | ||
66 | typedef struct HPETState { | |
02f9a6f5 HT |
67 | /*< private >*/ |
68 | SysBusDevice parent_obj; | |
69 | /*< public >*/ | |
70 | ||
e977aa37 | 71 | MemoryRegion iomem; |
27bb0b2d | 72 | uint64_t hpet_offset; |
822557eb | 73 | qemu_irq irqs[HPET_NUM_IRQ_ROUTES]; |
8caa0065 | 74 | uint32_t flags; |
7d932dfd | 75 | uint8_t rtc_irq_level; |
ce967e2f | 76 | qemu_irq pit_enabled; |
be4b44c5 | 77 | uint8_t num_timers; |
7a10ef51 | 78 | uint32_t intcap; |
be4b44c5 | 79 | HPETTimer timer[HPET_MAX_TIMERS]; |
27bb0b2d JK |
80 | |
81 | /* Memory-mapped, software visible registers */ | |
82 | uint64_t capability; /* capabilities */ | |
83 | uint64_t config; /* configuration */ | |
84 | uint64_t isr; /* interrupt status reg */ | |
85 | uint64_t hpet_counter; /* main counter */ | |
40ac17cd | 86 | uint8_t hpet_id; /* instance id */ |
27bb0b2d JK |
87 | } HPETState; |
88 | ||
7d932dfd | 89 | static uint32_t hpet_in_legacy_mode(HPETState *s) |
16b29ae1 | 90 | { |
7d932dfd | 91 | return s->config & HPET_CFG_LEGACY; |
16b29ae1 AL |
92 | } |
93 | ||
c50c2d68 | 94 | static uint32_t timer_int_route(struct HPETTimer *timer) |
16b29ae1 | 95 | { |
27bb0b2d | 96 | return (timer->config & HPET_TN_INT_ROUTE_MASK) >> HPET_TN_INT_ROUTE_SHIFT; |
16b29ae1 AL |
97 | } |
98 | ||
8caa0065 JK |
99 | static uint32_t timer_fsb_route(HPETTimer *t) |
100 | { | |
101 | return t->config & HPET_TN_FSB_ENABLE; | |
102 | } | |
103 | ||
b7eaa6c7 | 104 | static uint32_t hpet_enabled(HPETState *s) |
16b29ae1 | 105 | { |
b7eaa6c7 | 106 | return s->config & HPET_CFG_ENABLE; |
16b29ae1 AL |
107 | } |
108 | ||
109 | static uint32_t timer_is_periodic(HPETTimer *t) | |
110 | { | |
111 | return t->config & HPET_TN_PERIODIC; | |
112 | } | |
113 | ||
114 | static uint32_t timer_enabled(HPETTimer *t) | |
115 | { | |
116 | return t->config & HPET_TN_ENABLE; | |
117 | } | |
118 | ||
119 | static uint32_t hpet_time_after(uint64_t a, uint64_t b) | |
120 | { | |
d17008bc | 121 | return ((int32_t)(b - a) < 0); |
16b29ae1 AL |
122 | } |
123 | ||
124 | static uint32_t hpet_time_after64(uint64_t a, uint64_t b) | |
125 | { | |
d17008bc | 126 | return ((int64_t)(b - a) < 0); |
16b29ae1 AL |
127 | } |
128 | ||
c50c2d68 | 129 | static uint64_t ticks_to_ns(uint64_t value) |
16b29ae1 | 130 | { |
0a4f9240 | 131 | return value * HPET_CLK_PERIOD; |
16b29ae1 AL |
132 | } |
133 | ||
c50c2d68 | 134 | static uint64_t ns_to_ticks(uint64_t value) |
16b29ae1 | 135 | { |
0a4f9240 | 136 | return value / HPET_CLK_PERIOD; |
16b29ae1 AL |
137 | } |
138 | ||
139 | static uint64_t hpet_fixup_reg(uint64_t new, uint64_t old, uint64_t mask) | |
140 | { | |
141 | new &= mask; | |
142 | new |= old & ~mask; | |
143 | return new; | |
144 | } | |
145 | ||
146 | static int activating_bit(uint64_t old, uint64_t new, uint64_t mask) | |
147 | { | |
c50c2d68 | 148 | return (!(old & mask) && (new & mask)); |
16b29ae1 AL |
149 | } |
150 | ||
151 | static int deactivating_bit(uint64_t old, uint64_t new, uint64_t mask) | |
152 | { | |
c50c2d68 | 153 | return ((old & mask) && !(new & mask)); |
16b29ae1 AL |
154 | } |
155 | ||
b7eaa6c7 | 156 | static uint64_t hpet_get_ticks(HPETState *s) |
16b29ae1 | 157 | { |
bc72ad67 | 158 | return ns_to_ticks(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + s->hpet_offset); |
16b29ae1 AL |
159 | } |
160 | ||
c50c2d68 AJ |
161 | /* |
162 | * calculate diff between comparator value and current ticks | |
16b29ae1 AL |
163 | */ |
164 | static inline uint64_t hpet_calculate_diff(HPETTimer *t, uint64_t current) | |
165 | { | |
c50c2d68 | 166 | |
16b29ae1 AL |
167 | if (t->config & HPET_TN_32BIT) { |
168 | uint32_t diff, cmp; | |
27bb0b2d | 169 | |
16b29ae1 AL |
170 | cmp = (uint32_t)t->cmp; |
171 | diff = cmp - (uint32_t)current; | |
4f61927a | 172 | diff = (int32_t)diff > 0 ? diff : (uint32_t)1; |
16b29ae1 AL |
173 | return (uint64_t)diff; |
174 | } else { | |
175 | uint64_t diff, cmp; | |
27bb0b2d | 176 | |
16b29ae1 AL |
177 | cmp = t->cmp; |
178 | diff = cmp - current; | |
4f61927a | 179 | diff = (int64_t)diff > 0 ? diff : (uint64_t)1; |
16b29ae1 AL |
180 | return diff; |
181 | } | |
182 | } | |
183 | ||
22a9fe38 | 184 | static void update_irq(struct HPETTimer *timer, int set) |
16b29ae1 | 185 | { |
22a9fe38 JK |
186 | uint64_t mask; |
187 | HPETState *s; | |
16b29ae1 AL |
188 | int route; |
189 | ||
7d932dfd | 190 | if (timer->tn <= 1 && hpet_in_legacy_mode(timer->state)) { |
16b29ae1 AL |
191 | /* if LegacyReplacementRoute bit is set, HPET specification requires |
192 | * timer0 be routed to IRQ0 in NON-APIC or IRQ2 in the I/O APIC, | |
c50c2d68 | 193 | * timer1 be routed to IRQ8 in NON-APIC or IRQ8 in the I/O APIC. |
16b29ae1 | 194 | */ |
7d932dfd | 195 | route = (timer->tn == 0) ? 0 : RTC_ISA_IRQ; |
16b29ae1 | 196 | } else { |
27bb0b2d | 197 | route = timer_int_route(timer); |
16b29ae1 | 198 | } |
22a9fe38 JK |
199 | s = timer->state; |
200 | mask = 1 << timer->tn; | |
201 | if (!set || !timer_enabled(timer) || !hpet_enabled(timer->state)) { | |
202 | s->isr &= ~mask; | |
8caa0065 | 203 | if (!timer_fsb_route(timer)) { |
ecba1993 | 204 | qemu_irq_lower(s->irqs[route]); |
8caa0065 JK |
205 | } |
206 | } else if (timer_fsb_route(timer)) { | |
42874d3a PM |
207 | address_space_stl_le(&address_space_memory, timer->fsb >> 32, |
208 | timer->fsb & 0xffffffff, MEMTXATTRS_UNSPECIFIED, | |
209 | NULL); | |
22a9fe38 JK |
210 | } else if (timer->config & HPET_TN_TYPE_LEVEL) { |
211 | s->isr |= mask; | |
ecba1993 | 212 | qemu_irq_raise(s->irqs[route]); |
22a9fe38 JK |
213 | } else { |
214 | s->isr &= ~mask; | |
215 | qemu_irq_pulse(s->irqs[route]); | |
16b29ae1 AL |
216 | } |
217 | } | |
218 | ||
d4bfa4d7 | 219 | static void hpet_pre_save(void *opaque) |
16b29ae1 | 220 | { |
d4bfa4d7 | 221 | HPETState *s = opaque; |
27bb0b2d | 222 | |
16b29ae1 | 223 | /* save current counter value */ |
b7eaa6c7 | 224 | s->hpet_counter = hpet_get_ticks(s); |
16b29ae1 AL |
225 | } |
226 | ||
be4b44c5 JK |
227 | static int hpet_pre_load(void *opaque) |
228 | { | |
229 | HPETState *s = opaque; | |
230 | ||
231 | /* version 1 only supports 3, later versions will load the actual value */ | |
232 | s->num_timers = HPET_MIN_TIMERS; | |
233 | return 0; | |
234 | } | |
235 | ||
3f1c49e2 MT |
236 | static bool hpet_validate_num_timers(void *opaque, int version_id) |
237 | { | |
238 | HPETState *s = opaque; | |
239 | ||
240 | if (s->num_timers < HPET_MIN_TIMERS) { | |
241 | return false; | |
242 | } else if (s->num_timers > HPET_MAX_TIMERS) { | |
243 | return false; | |
244 | } | |
245 | return true; | |
246 | } | |
247 | ||
e59fb374 | 248 | static int hpet_post_load(void *opaque, int version_id) |
16b29ae1 AL |
249 | { |
250 | HPETState *s = opaque; | |
c50c2d68 | 251 | |
16b29ae1 | 252 | /* Recalculate the offset between the main counter and guest time */ |
bc72ad67 | 253 | s->hpet_offset = ticks_to_ns(s->hpet_counter) - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
be4b44c5 JK |
254 | |
255 | /* Push number of timers into capability returned via HPET_ID */ | |
256 | s->capability &= ~HPET_ID_NUM_TIM_MASK; | |
257 | s->capability |= (s->num_timers - 1) << HPET_ID_NUM_TIM_SHIFT; | |
40ac17cd | 258 | hpet_cfg.hpet[s->hpet_id].event_timer_block_id = (uint32_t)s->capability; |
8caa0065 JK |
259 | |
260 | /* Derive HPET_MSI_SUPPORT from the capability of the first timer. */ | |
261 | s->flags &= ~(1 << HPET_MSI_SUPPORT); | |
262 | if (s->timer[0].config & HPET_TN_FSB_CAP) { | |
263 | s->flags |= 1 << HPET_MSI_SUPPORT; | |
264 | } | |
16b29ae1 AL |
265 | return 0; |
266 | } | |
267 | ||
5904ae4e JK |
268 | static bool hpet_rtc_irq_level_needed(void *opaque) |
269 | { | |
270 | HPETState *s = opaque; | |
271 | ||
272 | return s->rtc_irq_level != 0; | |
273 | } | |
274 | ||
275 | static const VMStateDescription vmstate_hpet_rtc_irq_level = { | |
276 | .name = "hpet/rtc_irq_level", | |
277 | .version_id = 1, | |
278 | .minimum_version_id = 1, | |
5cd8cada | 279 | .needed = hpet_rtc_irq_level_needed, |
d49805ae | 280 | .fields = (VMStateField[]) { |
5904ae4e JK |
281 | VMSTATE_UINT8(rtc_irq_level, HPETState), |
282 | VMSTATE_END_OF_LIST() | |
283 | } | |
284 | }; | |
285 | ||
e6cb4d45 JQ |
286 | static const VMStateDescription vmstate_hpet_timer = { |
287 | .name = "hpet_timer", | |
288 | .version_id = 1, | |
289 | .minimum_version_id = 1, | |
d49805ae | 290 | .fields = (VMStateField[]) { |
e6cb4d45 JQ |
291 | VMSTATE_UINT8(tn, HPETTimer), |
292 | VMSTATE_UINT64(config, HPETTimer), | |
293 | VMSTATE_UINT64(cmp, HPETTimer), | |
294 | VMSTATE_UINT64(fsb, HPETTimer), | |
295 | VMSTATE_UINT64(period, HPETTimer), | |
296 | VMSTATE_UINT8(wrap_flag, HPETTimer), | |
e720677e | 297 | VMSTATE_TIMER_PTR(qemu_timer, HPETTimer), |
e6cb4d45 JQ |
298 | VMSTATE_END_OF_LIST() |
299 | } | |
300 | }; | |
301 | ||
302 | static const VMStateDescription vmstate_hpet = { | |
303 | .name = "hpet", | |
be4b44c5 | 304 | .version_id = 2, |
e6cb4d45 | 305 | .minimum_version_id = 1, |
e6cb4d45 | 306 | .pre_save = hpet_pre_save, |
be4b44c5 | 307 | .pre_load = hpet_pre_load, |
e6cb4d45 | 308 | .post_load = hpet_post_load, |
d49805ae | 309 | .fields = (VMStateField[]) { |
e6cb4d45 JQ |
310 | VMSTATE_UINT64(config, HPETState), |
311 | VMSTATE_UINT64(isr, HPETState), | |
312 | VMSTATE_UINT64(hpet_counter, HPETState), | |
be4b44c5 | 313 | VMSTATE_UINT8_V(num_timers, HPETState, 2), |
3f1c49e2 | 314 | VMSTATE_VALIDATE("num_timers in range", hpet_validate_num_timers), |
be4b44c5 JK |
315 | VMSTATE_STRUCT_VARRAY_UINT8(timer, HPETState, num_timers, 0, |
316 | vmstate_hpet_timer, HPETTimer), | |
e6cb4d45 | 317 | VMSTATE_END_OF_LIST() |
5904ae4e | 318 | }, |
5cd8cada JQ |
319 | .subsections = (const VMStateDescription*[]) { |
320 | &vmstate_hpet_rtc_irq_level, | |
321 | NULL | |
e6cb4d45 JQ |
322 | } |
323 | }; | |
324 | ||
c50c2d68 | 325 | /* |
16b29ae1 AL |
326 | * timer expiration callback |
327 | */ | |
328 | static void hpet_timer(void *opaque) | |
329 | { | |
27bb0b2d | 330 | HPETTimer *t = opaque; |
16b29ae1 AL |
331 | uint64_t diff; |
332 | ||
333 | uint64_t period = t->period; | |
b7eaa6c7 | 334 | uint64_t cur_tick = hpet_get_ticks(t->state); |
16b29ae1 AL |
335 | |
336 | if (timer_is_periodic(t) && period != 0) { | |
337 | if (t->config & HPET_TN_32BIT) { | |
27bb0b2d | 338 | while (hpet_time_after(cur_tick, t->cmp)) { |
16b29ae1 | 339 | t->cmp = (uint32_t)(t->cmp + t->period); |
27bb0b2d JK |
340 | } |
341 | } else { | |
342 | while (hpet_time_after64(cur_tick, t->cmp)) { | |
16b29ae1 | 343 | t->cmp += period; |
27bb0b2d JK |
344 | } |
345 | } | |
16b29ae1 | 346 | diff = hpet_calculate_diff(t, cur_tick); |
bc72ad67 AB |
347 | timer_mod(t->qemu_timer, |
348 | qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + (int64_t)ticks_to_ns(diff)); | |
16b29ae1 AL |
349 | } else if (t->config & HPET_TN_32BIT && !timer_is_periodic(t)) { |
350 | if (t->wrap_flag) { | |
351 | diff = hpet_calculate_diff(t, cur_tick); | |
bc72ad67 | 352 | timer_mod(t->qemu_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + |
27bb0b2d | 353 | (int64_t)ticks_to_ns(diff)); |
16b29ae1 AL |
354 | t->wrap_flag = 0; |
355 | } | |
356 | } | |
22a9fe38 | 357 | update_irq(t, 1); |
16b29ae1 AL |
358 | } |
359 | ||
360 | static void hpet_set_timer(HPETTimer *t) | |
361 | { | |
362 | uint64_t diff; | |
363 | uint32_t wrap_diff; /* how many ticks until we wrap? */ | |
b7eaa6c7 | 364 | uint64_t cur_tick = hpet_get_ticks(t->state); |
c50c2d68 | 365 | |
16b29ae1 AL |
366 | /* whenever new timer is being set up, make sure wrap_flag is 0 */ |
367 | t->wrap_flag = 0; | |
368 | diff = hpet_calculate_diff(t, cur_tick); | |
369 | ||
c50c2d68 | 370 | /* hpet spec says in one-shot 32-bit mode, generate an interrupt when |
16b29ae1 | 371 | * counter wraps in addition to an interrupt with comparator match. |
c50c2d68 | 372 | */ |
16b29ae1 AL |
373 | if (t->config & HPET_TN_32BIT && !timer_is_periodic(t)) { |
374 | wrap_diff = 0xffffffff - (uint32_t)cur_tick; | |
375 | if (wrap_diff < (uint32_t)diff) { | |
376 | diff = wrap_diff; | |
c50c2d68 | 377 | t->wrap_flag = 1; |
16b29ae1 AL |
378 | } |
379 | } | |
bc72ad67 AB |
380 | timer_mod(t->qemu_timer, |
381 | qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + (int64_t)ticks_to_ns(diff)); | |
16b29ae1 AL |
382 | } |
383 | ||
384 | static void hpet_del_timer(HPETTimer *t) | |
385 | { | |
bc72ad67 | 386 | timer_del(t->qemu_timer); |
22a9fe38 | 387 | update_irq(t, 0); |
16b29ae1 AL |
388 | } |
389 | ||
390 | #ifdef HPET_DEBUG | |
a8170e5e | 391 | static uint32_t hpet_ram_readb(void *opaque, hwaddr addr) |
16b29ae1 AL |
392 | { |
393 | printf("qemu: hpet_read b at %" PRIx64 "\n", addr); | |
394 | return 0; | |
395 | } | |
396 | ||
a8170e5e | 397 | static uint32_t hpet_ram_readw(void *opaque, hwaddr addr) |
16b29ae1 AL |
398 | { |
399 | printf("qemu: hpet_read w at %" PRIx64 "\n", addr); | |
400 | return 0; | |
401 | } | |
402 | #endif | |
403 | ||
a8170e5e | 404 | static uint64_t hpet_ram_read(void *opaque, hwaddr addr, |
e977aa37 | 405 | unsigned size) |
16b29ae1 | 406 | { |
27bb0b2d | 407 | HPETState *s = opaque; |
16b29ae1 AL |
408 | uint64_t cur_tick, index; |
409 | ||
d0f2c4c6 | 410 | DPRINTF("qemu: Enter hpet_ram_readl at %" PRIx64 "\n", addr); |
16b29ae1 AL |
411 | index = addr; |
412 | /*address range of all TN regs*/ | |
413 | if (index >= 0x100 && index <= 0x3ff) { | |
414 | uint8_t timer_id = (addr - 0x100) / 0x20; | |
27bb0b2d JK |
415 | HPETTimer *timer = &s->timer[timer_id]; |
416 | ||
be4b44c5 | 417 | if (timer_id > s->num_timers) { |
6982d664 | 418 | DPRINTF("qemu: timer id out of range\n"); |
16b29ae1 AL |
419 | return 0; |
420 | } | |
16b29ae1 AL |
421 | |
422 | switch ((addr - 0x100) % 0x20) { | |
27bb0b2d JK |
423 | case HPET_TN_CFG: |
424 | return timer->config; | |
425 | case HPET_TN_CFG + 4: // Interrupt capabilities | |
426 | return timer->config >> 32; | |
427 | case HPET_TN_CMP: // comparator register | |
428 | return timer->cmp; | |
429 | case HPET_TN_CMP + 4: | |
430 | return timer->cmp >> 32; | |
431 | case HPET_TN_ROUTE: | |
8caa0065 JK |
432 | return timer->fsb; |
433 | case HPET_TN_ROUTE + 4: | |
27bb0b2d JK |
434 | return timer->fsb >> 32; |
435 | default: | |
436 | DPRINTF("qemu: invalid hpet_ram_readl\n"); | |
437 | break; | |
16b29ae1 AL |
438 | } |
439 | } else { | |
440 | switch (index) { | |
27bb0b2d JK |
441 | case HPET_ID: |
442 | return s->capability; | |
443 | case HPET_PERIOD: | |
444 | return s->capability >> 32; | |
445 | case HPET_CFG: | |
446 | return s->config; | |
447 | case HPET_CFG + 4: | |
b2bedb21 | 448 | DPRINTF("qemu: invalid HPET_CFG + 4 hpet_ram_readl\n"); |
27bb0b2d JK |
449 | return 0; |
450 | case HPET_COUNTER: | |
b7eaa6c7 JK |
451 | if (hpet_enabled(s)) { |
452 | cur_tick = hpet_get_ticks(s); | |
27bb0b2d JK |
453 | } else { |
454 | cur_tick = s->hpet_counter; | |
455 | } | |
456 | DPRINTF("qemu: reading counter = %" PRIx64 "\n", cur_tick); | |
457 | return cur_tick; | |
458 | case HPET_COUNTER + 4: | |
b7eaa6c7 JK |
459 | if (hpet_enabled(s)) { |
460 | cur_tick = hpet_get_ticks(s); | |
27bb0b2d JK |
461 | } else { |
462 | cur_tick = s->hpet_counter; | |
463 | } | |
464 | DPRINTF("qemu: reading counter + 4 = %" PRIx64 "\n", cur_tick); | |
465 | return cur_tick >> 32; | |
466 | case HPET_STATUS: | |
467 | return s->isr; | |
468 | default: | |
469 | DPRINTF("qemu: invalid hpet_ram_readl\n"); | |
470 | break; | |
16b29ae1 AL |
471 | } |
472 | } | |
473 | return 0; | |
474 | } | |
475 | ||
a8170e5e | 476 | static void hpet_ram_write(void *opaque, hwaddr addr, |
e977aa37 | 477 | uint64_t value, unsigned size) |
16b29ae1 AL |
478 | { |
479 | int i; | |
27bb0b2d | 480 | HPETState *s = opaque; |
ce536cfd | 481 | uint64_t old_val, new_val, val, index; |
16b29ae1 | 482 | |
d0f2c4c6 | 483 | DPRINTF("qemu: Enter hpet_ram_writel at %" PRIx64 " = %#x\n", addr, value); |
16b29ae1 | 484 | index = addr; |
e977aa37 | 485 | old_val = hpet_ram_read(opaque, addr, 4); |
16b29ae1 AL |
486 | new_val = value; |
487 | ||
488 | /*address range of all TN regs*/ | |
489 | if (index >= 0x100 && index <= 0x3ff) { | |
490 | uint8_t timer_id = (addr - 0x100) / 0x20; | |
16b29ae1 | 491 | HPETTimer *timer = &s->timer[timer_id]; |
c50c2d68 | 492 | |
b2bedb21 | 493 | DPRINTF("qemu: hpet_ram_writel timer_id = %#x\n", timer_id); |
be4b44c5 | 494 | if (timer_id > s->num_timers) { |
6982d664 JK |
495 | DPRINTF("qemu: timer id out of range\n"); |
496 | return; | |
497 | } | |
16b29ae1 | 498 | switch ((addr - 0x100) % 0x20) { |
27bb0b2d JK |
499 | case HPET_TN_CFG: |
500 | DPRINTF("qemu: hpet_ram_writel HPET_TN_CFG\n"); | |
8caa0065 JK |
501 | if (activating_bit(old_val, new_val, HPET_TN_FSB_ENABLE)) { |
502 | update_irq(timer, 0); | |
503 | } | |
27bb0b2d JK |
504 | val = hpet_fixup_reg(new_val, old_val, HPET_TN_CFG_WRITE_MASK); |
505 | timer->config = (timer->config & 0xffffffff00000000ULL) | val; | |
506 | if (new_val & HPET_TN_32BIT) { | |
507 | timer->cmp = (uint32_t)timer->cmp; | |
508 | timer->period = (uint32_t)timer->period; | |
509 | } | |
c36ad13f ML |
510 | if (activating_bit(old_val, new_val, HPET_TN_ENABLE) && |
511 | hpet_enabled(s)) { | |
9cec89e8 JK |
512 | hpet_set_timer(timer); |
513 | } else if (deactivating_bit(old_val, new_val, HPET_TN_ENABLE)) { | |
514 | hpet_del_timer(timer); | |
515 | } | |
27bb0b2d JK |
516 | break; |
517 | case HPET_TN_CFG + 4: // Interrupt capabilities | |
518 | DPRINTF("qemu: invalid HPET_TN_CFG+4 write\n"); | |
519 | break; | |
520 | case HPET_TN_CMP: // comparator register | |
b2bedb21 | 521 | DPRINTF("qemu: hpet_ram_writel HPET_TN_CMP\n"); |
27bb0b2d JK |
522 | if (timer->config & HPET_TN_32BIT) { |
523 | new_val = (uint32_t)new_val; | |
524 | } | |
525 | if (!timer_is_periodic(timer) | |
526 | || (timer->config & HPET_TN_SETVAL)) { | |
527 | timer->cmp = (timer->cmp & 0xffffffff00000000ULL) | new_val; | |
528 | } | |
529 | if (timer_is_periodic(timer)) { | |
530 | /* | |
531 | * FIXME: Clamp period to reasonable min value? | |
532 | * Clamp period to reasonable max value | |
533 | */ | |
534 | new_val &= (timer->config & HPET_TN_32BIT ? ~0u : ~0ull) >> 1; | |
535 | timer->period = | |
536 | (timer->period & 0xffffffff00000000ULL) | new_val; | |
537 | } | |
538 | timer->config &= ~HPET_TN_SETVAL; | |
b7eaa6c7 | 539 | if (hpet_enabled(s)) { |
27bb0b2d JK |
540 | hpet_set_timer(timer); |
541 | } | |
542 | break; | |
543 | case HPET_TN_CMP + 4: // comparator register high order | |
544 | DPRINTF("qemu: hpet_ram_writel HPET_TN_CMP + 4\n"); | |
545 | if (!timer_is_periodic(timer) | |
546 | || (timer->config & HPET_TN_SETVAL)) { | |
547 | timer->cmp = (timer->cmp & 0xffffffffULL) | new_val << 32; | |
548 | } else { | |
549 | /* | |
550 | * FIXME: Clamp period to reasonable min value? | |
551 | * Clamp period to reasonable max value | |
552 | */ | |
553 | new_val &= (timer->config & HPET_TN_32BIT ? ~0u : ~0ull) >> 1; | |
554 | timer->period = | |
555 | (timer->period & 0xffffffffULL) | new_val << 32; | |
16b29ae1 AL |
556 | } |
557 | timer->config &= ~HPET_TN_SETVAL; | |
b7eaa6c7 | 558 | if (hpet_enabled(s)) { |
16b29ae1 | 559 | hpet_set_timer(timer); |
16b29ae1 | 560 | } |
16b29ae1 | 561 | break; |
8caa0065 JK |
562 | case HPET_TN_ROUTE: |
563 | timer->fsb = (timer->fsb & 0xffffffff00000000ULL) | new_val; | |
564 | break; | |
27bb0b2d | 565 | case HPET_TN_ROUTE + 4: |
8caa0065 | 566 | timer->fsb = (new_val << 32) | (timer->fsb & 0xffffffff); |
27bb0b2d JK |
567 | break; |
568 | default: | |
569 | DPRINTF("qemu: invalid hpet_ram_writel\n"); | |
570 | break; | |
16b29ae1 AL |
571 | } |
572 | return; | |
573 | } else { | |
574 | switch (index) { | |
27bb0b2d JK |
575 | case HPET_ID: |
576 | return; | |
577 | case HPET_CFG: | |
578 | val = hpet_fixup_reg(new_val, old_val, HPET_CFG_WRITE_MASK); | |
579 | s->config = (s->config & 0xffffffff00000000ULL) | val; | |
580 | if (activating_bit(old_val, new_val, HPET_CFG_ENABLE)) { | |
581 | /* Enable main counter and interrupt generation. */ | |
582 | s->hpet_offset = | |
bc72ad67 | 583 | ticks_to_ns(s->hpet_counter) - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
be4b44c5 | 584 | for (i = 0; i < s->num_timers; i++) { |
27bb0b2d JK |
585 | if ((&s->timer[i])->cmp != ~0ULL) { |
586 | hpet_set_timer(&s->timer[i]); | |
587 | } | |
16b29ae1 | 588 | } |
27bb0b2d JK |
589 | } else if (deactivating_bit(old_val, new_val, HPET_CFG_ENABLE)) { |
590 | /* Halt main counter and disable interrupt generation. */ | |
b7eaa6c7 | 591 | s->hpet_counter = hpet_get_ticks(s); |
be4b44c5 | 592 | for (i = 0; i < s->num_timers; i++) { |
27bb0b2d | 593 | hpet_del_timer(&s->timer[i]); |
16b29ae1 | 594 | } |
27bb0b2d | 595 | } |
ce967e2f JK |
596 | /* i8254 and RTC output pins are disabled |
597 | * when HPET is in legacy mode */ | |
27bb0b2d | 598 | if (activating_bit(old_val, new_val, HPET_CFG_LEGACY)) { |
ce967e2f JK |
599 | qemu_set_irq(s->pit_enabled, 0); |
600 | qemu_irq_lower(s->irqs[0]); | |
7d932dfd | 601 | qemu_irq_lower(s->irqs[RTC_ISA_IRQ]); |
27bb0b2d | 602 | } else if (deactivating_bit(old_val, new_val, HPET_CFG_LEGACY)) { |
ce967e2f JK |
603 | qemu_irq_lower(s->irqs[0]); |
604 | qemu_set_irq(s->pit_enabled, 1); | |
7d932dfd | 605 | qemu_set_irq(s->irqs[RTC_ISA_IRQ], s->rtc_irq_level); |
27bb0b2d JK |
606 | } |
607 | break; | |
608 | case HPET_CFG + 4: | |
b2bedb21 | 609 | DPRINTF("qemu: invalid HPET_CFG+4 write\n"); |
27bb0b2d JK |
610 | break; |
611 | case HPET_STATUS: | |
22a9fe38 | 612 | val = new_val & s->isr; |
be4b44c5 | 613 | for (i = 0; i < s->num_timers; i++) { |
22a9fe38 JK |
614 | if (val & (1 << i)) { |
615 | update_irq(&s->timer[i], 0); | |
616 | } | |
617 | } | |
27bb0b2d JK |
618 | break; |
619 | case HPET_COUNTER: | |
b7eaa6c7 | 620 | if (hpet_enabled(s)) { |
ad0a6551 | 621 | DPRINTF("qemu: Writing counter while HPET enabled!\n"); |
27bb0b2d JK |
622 | } |
623 | s->hpet_counter = | |
624 | (s->hpet_counter & 0xffffffff00000000ULL) | value; | |
625 | DPRINTF("qemu: HPET counter written. ctr = %#x -> %" PRIx64 "\n", | |
626 | value, s->hpet_counter); | |
627 | break; | |
628 | case HPET_COUNTER + 4: | |
b7eaa6c7 | 629 | if (hpet_enabled(s)) { |
ad0a6551 | 630 | DPRINTF("qemu: Writing counter while HPET enabled!\n"); |
27bb0b2d JK |
631 | } |
632 | s->hpet_counter = | |
633 | (s->hpet_counter & 0xffffffffULL) | (((uint64_t)value) << 32); | |
634 | DPRINTF("qemu: HPET counter + 4 written. ctr = %#x -> %" PRIx64 "\n", | |
635 | value, s->hpet_counter); | |
636 | break; | |
637 | default: | |
638 | DPRINTF("qemu: invalid hpet_ram_writel\n"); | |
639 | break; | |
16b29ae1 AL |
640 | } |
641 | } | |
642 | } | |
643 | ||
e977aa37 AK |
644 | static const MemoryRegionOps hpet_ram_ops = { |
645 | .read = hpet_ram_read, | |
646 | .write = hpet_ram_write, | |
647 | .valid = { | |
648 | .min_access_size = 4, | |
649 | .max_access_size = 4, | |
650 | }, | |
651 | .endianness = DEVICE_NATIVE_ENDIAN, | |
16b29ae1 AL |
652 | }; |
653 | ||
822557eb | 654 | static void hpet_reset(DeviceState *d) |
27bb0b2d | 655 | { |
02f9a6f5 HT |
656 | HPETState *s = HPET(d); |
657 | SysBusDevice *sbd = SYS_BUS_DEVICE(d); | |
16b29ae1 | 658 | int i; |
16b29ae1 | 659 | |
be4b44c5 | 660 | for (i = 0; i < s->num_timers; i++) { |
16b29ae1 | 661 | HPETTimer *timer = &s->timer[i]; |
27bb0b2d | 662 | |
16b29ae1 | 663 | hpet_del_timer(timer); |
16b29ae1 | 664 | timer->cmp = ~0ULL; |
8caa0065 JK |
665 | timer->config = HPET_TN_PERIODIC_CAP | HPET_TN_SIZE_CAP; |
666 | if (s->flags & (1 << HPET_MSI_SUPPORT)) { | |
667 | timer->config |= HPET_TN_FSB_CAP; | |
668 | } | |
7a10ef51 LPF |
669 | /* advertise availability of ioapic int */ |
670 | timer->config |= (uint64_t)s->intcap << 32; | |
16b29ae1 AL |
671 | timer->period = 0ULL; |
672 | timer->wrap_flag = 0; | |
673 | } | |
674 | ||
ce967e2f | 675 | qemu_set_irq(s->pit_enabled, 1); |
16b29ae1 AL |
676 | s->hpet_counter = 0ULL; |
677 | s->hpet_offset = 0ULL; | |
7d93b1fa | 678 | s->config = 0ULL; |
40ac17cd | 679 | hpet_cfg.hpet[s->hpet_id].event_timer_block_id = (uint32_t)s->capability; |
02f9a6f5 | 680 | hpet_cfg.hpet[s->hpet_id].address = sbd->mmio[0].addr; |
5904ae4e JK |
681 | |
682 | /* to document that the RTC lowers its output on reset as well */ | |
683 | s->rtc_irq_level = 0; | |
16b29ae1 AL |
684 | } |
685 | ||
ce967e2f | 686 | static void hpet_handle_legacy_irq(void *opaque, int n, int level) |
7d932dfd | 687 | { |
02f9a6f5 | 688 | HPETState *s = HPET(opaque); |
7d932dfd | 689 | |
ce967e2f JK |
690 | if (n == HPET_LEGACY_PIT_INT) { |
691 | if (!hpet_in_legacy_mode(s)) { | |
692 | qemu_set_irq(s->irqs[0], level); | |
693 | } | |
694 | } else { | |
695 | s->rtc_irq_level = level; | |
696 | if (!hpet_in_legacy_mode(s)) { | |
697 | qemu_set_irq(s->irqs[RTC_ISA_IRQ], level); | |
698 | } | |
7d932dfd JK |
699 | } |
700 | } | |
701 | ||
726887ef | 702 | static void hpet_init(Object *obj) |
27bb0b2d | 703 | { |
726887ef HT |
704 | SysBusDevice *sbd = SYS_BUS_DEVICE(obj); |
705 | HPETState *s = HPET(obj); | |
706 | ||
707 | /* HPET Area */ | |
a57d708d | 708 | memory_region_init_io(&s->iomem, obj, &hpet_ram_ops, s, "hpet", HPET_LEN); |
726887ef HT |
709 | sysbus_init_mmio(sbd, &s->iomem); |
710 | } | |
711 | ||
712 | static void hpet_realize(DeviceState *dev, Error **errp) | |
713 | { | |
714 | SysBusDevice *sbd = SYS_BUS_DEVICE(dev); | |
02f9a6f5 | 715 | HPETState *s = HPET(dev); |
e977aa37 | 716 | int i; |
27bb0b2d | 717 | HPETTimer *timer; |
16b29ae1 | 718 | |
7a10ef51 LPF |
719 | if (!s->intcap) { |
720 | error_printf("Hpet's intcap not initialized.\n"); | |
721 | } | |
d2c5efd8 SW |
722 | if (hpet_cfg.count == UINT8_MAX) { |
723 | /* first instance */ | |
40ac17cd | 724 | hpet_cfg.count = 0; |
d2c5efd8 | 725 | } |
40ac17cd GN |
726 | |
727 | if (hpet_cfg.count == 8) { | |
726887ef HT |
728 | error_setg(errp, "Only 8 instances of HPET is allowed"); |
729 | return; | |
40ac17cd GN |
730 | } |
731 | ||
732 | s->hpet_id = hpet_cfg.count++; | |
733 | ||
822557eb | 734 | for (i = 0; i < HPET_NUM_IRQ_ROUTES; i++) { |
726887ef | 735 | sysbus_init_irq(sbd, &s->irqs[i]); |
822557eb | 736 | } |
be4b44c5 JK |
737 | |
738 | if (s->num_timers < HPET_MIN_TIMERS) { | |
739 | s->num_timers = HPET_MIN_TIMERS; | |
740 | } else if (s->num_timers > HPET_MAX_TIMERS) { | |
741 | s->num_timers = HPET_MAX_TIMERS; | |
742 | } | |
743 | for (i = 0; i < HPET_MAX_TIMERS; i++) { | |
27bb0b2d | 744 | timer = &s->timer[i]; |
bc72ad67 | 745 | timer->qemu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, hpet_timer, timer); |
7afbecc9 JK |
746 | timer->tn = i; |
747 | timer->state = s; | |
16b29ae1 | 748 | } |
822557eb | 749 | |
072c2c31 JK |
750 | /* 64-bit main counter; LegacyReplacementRoute. */ |
751 | s->capability = 0x8086a001ULL; | |
752 | s->capability |= (s->num_timers - 1) << HPET_ID_NUM_TIM_SHIFT; | |
0a4f9240 | 753 | s->capability |= ((uint64_t)(HPET_CLK_PERIOD * FS_PER_NS) << 32); |
072c2c31 | 754 | |
726887ef HT |
755 | qdev_init_gpio_in(dev, hpet_handle_legacy_irq, 2); |
756 | qdev_init_gpio_out(dev, &s->pit_enabled, 1); | |
16b29ae1 | 757 | } |
822557eb | 758 | |
999e12bb AL |
759 | static Property hpet_device_properties[] = { |
760 | DEFINE_PROP_UINT8("timers", HPETState, num_timers, HPET_MIN_TIMERS), | |
761 | DEFINE_PROP_BIT("msi", HPETState, flags, HPET_MSI_SUPPORT, false), | |
7a10ef51 | 762 | DEFINE_PROP_UINT32(HPET_INTCAP, HPETState, intcap, 0), |
999e12bb AL |
763 | DEFINE_PROP_END_OF_LIST(), |
764 | }; | |
765 | ||
766 | static void hpet_device_class_init(ObjectClass *klass, void *data) | |
767 | { | |
39bffca2 | 768 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb | 769 | |
726887ef | 770 | dc->realize = hpet_realize; |
39bffca2 AL |
771 | dc->reset = hpet_reset; |
772 | dc->vmsd = &vmstate_hpet; | |
773 | dc->props = hpet_device_properties; | |
999e12bb AL |
774 | } |
775 | ||
8c43a6f0 | 776 | static const TypeInfo hpet_device_info = { |
02f9a6f5 | 777 | .name = TYPE_HPET, |
39bffca2 AL |
778 | .parent = TYPE_SYS_BUS_DEVICE, |
779 | .instance_size = sizeof(HPETState), | |
726887ef | 780 | .instance_init = hpet_init, |
39bffca2 | 781 | .class_init = hpet_device_class_init, |
822557eb JK |
782 | }; |
783 | ||
83f7d43a | 784 | static void hpet_register_types(void) |
822557eb | 785 | { |
39bffca2 | 786 | type_register_static(&hpet_device_info); |
822557eb JK |
787 | } |
788 | ||
83f7d43a | 789 | type_init(hpet_register_types) |