]> git.proxmox.com Git - mirror_qemu.git/blob - hw/ppc/ppc_booke.c
Replaced get_tick_per_sec() by NANOSECONDS_PER_SECOND
[mirror_qemu.git] / hw / ppc / ppc_booke.c
1 /*
2 * QEMU PowerPC Booke hardware System Emulator
3 *
4 * Copyright (c) 2011 AdaCore
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 */
24 #include "qemu/osdep.h"
25 #include "qemu-common.h"
26 #include "cpu.h"
27 #include "hw/hw.h"
28 #include "hw/ppc/ppc.h"
29 #include "qemu/timer.h"
30 #include "sysemu/sysemu.h"
31 #include "hw/timer/m48t59.h"
32 #include "qemu/log.h"
33 #include "hw/loader.h"
34 #include "kvm_ppc.h"
35
36
37 /* Timer Control Register */
38
39 #define TCR_WP_SHIFT 30 /* Watchdog Timer Period */
40 #define TCR_WP_MASK (0x3U << TCR_WP_SHIFT)
41 #define TCR_WRC_SHIFT 28 /* Watchdog Timer Reset Control */
42 #define TCR_WRC_MASK (0x3U << TCR_WRC_SHIFT)
43 #define TCR_WIE (1U << 27) /* Watchdog Timer Interrupt Enable */
44 #define TCR_DIE (1U << 26) /* Decrementer Interrupt Enable */
45 #define TCR_FP_SHIFT 24 /* Fixed-Interval Timer Period */
46 #define TCR_FP_MASK (0x3U << TCR_FP_SHIFT)
47 #define TCR_FIE (1U << 23) /* Fixed-Interval Timer Interrupt Enable */
48 #define TCR_ARE (1U << 22) /* Auto-Reload Enable */
49
50 /* Timer Control Register (e500 specific fields) */
51
52 #define TCR_E500_FPEXT_SHIFT 13 /* Fixed-Interval Timer Period Extension */
53 #define TCR_E500_FPEXT_MASK (0xf << TCR_E500_FPEXT_SHIFT)
54 #define TCR_E500_WPEXT_SHIFT 17 /* Watchdog Timer Period Extension */
55 #define TCR_E500_WPEXT_MASK (0xf << TCR_E500_WPEXT_SHIFT)
56
57 /* Timer Status Register */
58
59 #define TSR_FIS (1U << 26) /* Fixed-Interval Timer Interrupt Status */
60 #define TSR_DIS (1U << 27) /* Decrementer Interrupt Status */
61 #define TSR_WRS_SHIFT 28 /* Watchdog Timer Reset Status */
62 #define TSR_WRS_MASK (0x3U << TSR_WRS_SHIFT)
63 #define TSR_WIS (1U << 30) /* Watchdog Timer Interrupt Status */
64 #define TSR_ENW (1U << 31) /* Enable Next Watchdog Timer */
65
66 typedef struct booke_timer_t booke_timer_t;
67 struct booke_timer_t {
68
69 uint64_t fit_next;
70 QEMUTimer *fit_timer;
71
72 uint64_t wdt_next;
73 QEMUTimer *wdt_timer;
74
75 uint32_t flags;
76 };
77
78 static void booke_update_irq(PowerPCCPU *cpu)
79 {
80 CPUPPCState *env = &cpu->env;
81
82 ppc_set_irq(cpu, PPC_INTERRUPT_DECR,
83 (env->spr[SPR_BOOKE_TSR] & TSR_DIS
84 && env->spr[SPR_BOOKE_TCR] & TCR_DIE));
85
86 ppc_set_irq(cpu, PPC_INTERRUPT_WDT,
87 (env->spr[SPR_BOOKE_TSR] & TSR_WIS
88 && env->spr[SPR_BOOKE_TCR] & TCR_WIE));
89
90 ppc_set_irq(cpu, PPC_INTERRUPT_FIT,
91 (env->spr[SPR_BOOKE_TSR] & TSR_FIS
92 && env->spr[SPR_BOOKE_TCR] & TCR_FIE));
93 }
94
95 /* Return the location of the bit of time base at which the FIT will raise an
96 interrupt */
97 static uint8_t booke_get_fit_target(CPUPPCState *env, ppc_tb_t *tb_env)
98 {
99 uint8_t fp = (env->spr[SPR_BOOKE_TCR] & TCR_FP_MASK) >> TCR_FP_SHIFT;
100
101 if (tb_env->flags & PPC_TIMER_E500) {
102 /* e500 Fixed-interval timer period extension */
103 uint32_t fpext = (env->spr[SPR_BOOKE_TCR] & TCR_E500_FPEXT_MASK)
104 >> TCR_E500_FPEXT_SHIFT;
105 fp = 63 - (fp | fpext << 2);
106 } else {
107 fp = env->fit_period[fp];
108 }
109
110 return fp;
111 }
112
113 /* Return the location of the bit of time base at which the WDT will raise an
114 interrupt */
115 static uint8_t booke_get_wdt_target(CPUPPCState *env, ppc_tb_t *tb_env)
116 {
117 uint8_t wp = (env->spr[SPR_BOOKE_TCR] & TCR_WP_MASK) >> TCR_WP_SHIFT;
118
119 if (tb_env->flags & PPC_TIMER_E500) {
120 /* e500 Watchdog timer period extension */
121 uint32_t wpext = (env->spr[SPR_BOOKE_TCR] & TCR_E500_WPEXT_MASK)
122 >> TCR_E500_WPEXT_SHIFT;
123 wp = 63 - (wp | wpext << 2);
124 } else {
125 wp = env->wdt_period[wp];
126 }
127
128 return wp;
129 }
130
131 static void booke_update_fixed_timer(CPUPPCState *env,
132 uint8_t target_bit,
133 uint64_t *next,
134 QEMUTimer *timer,
135 int tsr_bit)
136 {
137 ppc_tb_t *tb_env = env->tb_env;
138 uint64_t delta_tick, ticks = 0;
139 uint64_t tb;
140 uint64_t period;
141 uint64_t now;
142
143 if (!(env->spr[SPR_BOOKE_TSR] & tsr_bit)) {
144 /*
145 * Don't arm the timer again when the guest has the current
146 * interrupt still pending. Wait for it to ack it.
147 */
148 return;
149 }
150
151 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
152 tb = cpu_ppc_get_tb(tb_env, now, tb_env->tb_offset);
153 period = 1ULL << target_bit;
154 delta_tick = period - (tb & (period - 1));
155
156 /* the timer triggers only when the selected bit toggles from 0 to 1 */
157 if (tb & period) {
158 ticks = period;
159 }
160
161 if (ticks + delta_tick < ticks) {
162 /* Overflow, so assume the biggest number we can express. */
163 ticks = UINT64_MAX;
164 } else {
165 ticks += delta_tick;
166 }
167
168 *next = now + muldiv64(ticks, NANOSECONDS_PER_SECOND, tb_env->tb_freq);
169 if ((*next < now) || (*next > INT64_MAX)) {
170 /* Overflow, so assume the biggest number the qemu timer supports. */
171 *next = INT64_MAX;
172 }
173
174 /* XXX: If expire time is now. We can't run the callback because we don't
175 * have access to it. So we just set the timer one nanosecond later.
176 */
177
178 if (*next == now) {
179 (*next)++;
180 } else {
181 /*
182 * There's no point to fake any granularity that's more fine grained
183 * than milliseconds. Anything beyond that just overloads the system.
184 */
185 *next = MAX(*next, now + SCALE_MS);
186 }
187
188 /* Fire the next timer */
189 timer_mod(timer, *next);
190 }
191
192 static void booke_decr_cb(void *opaque)
193 {
194 PowerPCCPU *cpu = opaque;
195 CPUPPCState *env = &cpu->env;
196
197 env->spr[SPR_BOOKE_TSR] |= TSR_DIS;
198 booke_update_irq(cpu);
199
200 if (env->spr[SPR_BOOKE_TCR] & TCR_ARE) {
201 /* Auto Reload */
202 cpu_ppc_store_decr(env, env->spr[SPR_BOOKE_DECAR]);
203 }
204 }
205
206 static void booke_fit_cb(void *opaque)
207 {
208 PowerPCCPU *cpu = opaque;
209 CPUPPCState *env = &cpu->env;
210 ppc_tb_t *tb_env;
211 booke_timer_t *booke_timer;
212
213 tb_env = env->tb_env;
214 booke_timer = tb_env->opaque;
215 env->spr[SPR_BOOKE_TSR] |= TSR_FIS;
216
217 booke_update_irq(cpu);
218
219 booke_update_fixed_timer(env,
220 booke_get_fit_target(env, tb_env),
221 &booke_timer->fit_next,
222 booke_timer->fit_timer,
223 TSR_FIS);
224 }
225
226 static void booke_wdt_cb(void *opaque)
227 {
228 PowerPCCPU *cpu = opaque;
229 CPUPPCState *env = &cpu->env;
230 ppc_tb_t *tb_env;
231 booke_timer_t *booke_timer;
232
233 tb_env = env->tb_env;
234 booke_timer = tb_env->opaque;
235
236 /* TODO: There's lots of complicated stuff to do here */
237
238 booke_update_irq(cpu);
239
240 booke_update_fixed_timer(env,
241 booke_get_wdt_target(env, tb_env),
242 &booke_timer->wdt_next,
243 booke_timer->wdt_timer,
244 TSR_WIS);
245 }
246
247 void store_booke_tsr(CPUPPCState *env, target_ulong val)
248 {
249 PowerPCCPU *cpu = ppc_env_get_cpu(env);
250 ppc_tb_t *tb_env = env->tb_env;
251 booke_timer_t *booke_timer = tb_env->opaque;
252
253 env->spr[SPR_BOOKE_TSR] &= ~val;
254 kvmppc_clear_tsr_bits(cpu, val);
255
256 if (val & TSR_FIS) {
257 booke_update_fixed_timer(env,
258 booke_get_fit_target(env, tb_env),
259 &booke_timer->fit_next,
260 booke_timer->fit_timer,
261 TSR_FIS);
262 }
263
264 if (val & TSR_WIS) {
265 booke_update_fixed_timer(env,
266 booke_get_wdt_target(env, tb_env),
267 &booke_timer->wdt_next,
268 booke_timer->wdt_timer,
269 TSR_WIS);
270 }
271
272 booke_update_irq(cpu);
273 }
274
275 void store_booke_tcr(CPUPPCState *env, target_ulong val)
276 {
277 PowerPCCPU *cpu = ppc_env_get_cpu(env);
278 ppc_tb_t *tb_env = env->tb_env;
279 booke_timer_t *booke_timer = tb_env->opaque;
280
281 tb_env = env->tb_env;
282 env->spr[SPR_BOOKE_TCR] = val;
283 kvmppc_set_tcr(cpu);
284
285 booke_update_irq(cpu);
286
287 booke_update_fixed_timer(env,
288 booke_get_fit_target(env, tb_env),
289 &booke_timer->fit_next,
290 booke_timer->fit_timer,
291 TSR_FIS);
292
293 booke_update_fixed_timer(env,
294 booke_get_wdt_target(env, tb_env),
295 &booke_timer->wdt_next,
296 booke_timer->wdt_timer,
297 TSR_WIS);
298 }
299
300 static void ppc_booke_timer_reset_handle(void *opaque)
301 {
302 PowerPCCPU *cpu = opaque;
303 CPUPPCState *env = &cpu->env;
304
305 store_booke_tcr(env, 0);
306 store_booke_tsr(env, -1);
307 }
308
309 /*
310 * This function will be called whenever the CPU state changes.
311 * CPU states are defined "typedef enum RunState".
312 * Regarding timer, When CPU state changes to running after debug halt
313 * or similar cases which takes time then in between final watchdog
314 * expiry happenes. This will cause exit to QEMU and configured watchdog
315 * action will be taken. To avoid this we always clear the watchdog state when
316 * state changes to running.
317 */
318 static void cpu_state_change_handler(void *opaque, int running, RunState state)
319 {
320 PowerPCCPU *cpu = opaque;
321 CPUPPCState *env = &cpu->env;
322
323 if (!running) {
324 return;
325 }
326
327 /*
328 * Clear watchdog interrupt condition by clearing TSR.
329 */
330 store_booke_tsr(env, TSR_ENW | TSR_WIS | TSR_WRS_MASK);
331 }
332
333 void ppc_booke_timers_init(PowerPCCPU *cpu, uint32_t freq, uint32_t flags)
334 {
335 ppc_tb_t *tb_env;
336 booke_timer_t *booke_timer;
337 int ret = 0;
338
339 tb_env = g_malloc0(sizeof(ppc_tb_t));
340 booke_timer = g_malloc0(sizeof(booke_timer_t));
341
342 cpu->env.tb_env = tb_env;
343 tb_env->flags = flags | PPC_TIMER_BOOKE | PPC_DECR_ZERO_TRIGGERED;
344
345 tb_env->tb_freq = freq;
346 tb_env->decr_freq = freq;
347 tb_env->opaque = booke_timer;
348 tb_env->decr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_decr_cb, cpu);
349
350 booke_timer->fit_timer =
351 timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_fit_cb, cpu);
352 booke_timer->wdt_timer =
353 timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_wdt_cb, cpu);
354
355 ret = kvmppc_booke_watchdog_enable(cpu);
356
357 if (ret) {
358 /* TODO: Start the QEMU emulated watchdog if not running on KVM.
359 * Also start the QEMU emulated watchdog if KVM does not support
360 * emulated watchdog or somehow it is not enabled (supported but
361 * not enabled is though some bug and requires debugging :)).
362 */
363 }
364
365 qemu_add_vm_change_state_handler(cpu_state_change_handler, cpu);
366
367 qemu_register_reset(ppc_booke_timer_reset_handle, cpu);
368 }