2 * QEMU generic PowerPC hardware System Emulator
4 * Copyright (c) 2003-2007 Jocelyn Mayer
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
27 //#define PPC_DEBUG_IRQ
28 //#define PPC_DEBUG_TB
33 void ppc_set_irq (CPUState
*env
, int n_IRQ
, int level
)
36 env
->pending_interrupts
|= 1 << n_IRQ
;
37 cpu_interrupt(env
, CPU_INTERRUPT_HARD
);
39 env
->pending_interrupts
&= ~(1 << n_IRQ
);
40 if (env
->pending_interrupts
== 0)
41 cpu_reset_interrupt(env
, CPU_INTERRUPT_HARD
);
43 #if defined(PPC_DEBUG_IRQ)
44 if (loglevel
& CPU_LOG_INT
) {
45 fprintf(logfile
, "%s: %p n_IRQ %d level %d => pending %08x req %08x\n",
46 __func__
, env
, n_IRQ
, level
,
47 env
->pending_interrupts
, env
->interrupt_request
);
52 /* PowerPC 6xx / 7xx internal IRQ controller */
53 static void ppc6xx_set_irq (void *opaque
, int pin
, int level
)
55 CPUState
*env
= opaque
;
58 #if defined(PPC_DEBUG_IRQ)
59 if (loglevel
& CPU_LOG_INT
) {
60 fprintf(logfile
, "%s: env %p pin %d level %d\n", __func__
,
64 cur_level
= (env
->irq_input_state
>> pin
) & 1;
65 /* Don't generate spurious events */
66 if ((cur_level
== 1 && level
== 0) || (cur_level
== 0 && level
!= 0)) {
68 case PPC6xx_INPUT_INT
:
69 /* Level sensitive - active high */
70 #if defined(PPC_DEBUG_IRQ)
71 if (loglevel
& CPU_LOG_INT
) {
72 fprintf(logfile
, "%s: set the external IRQ state to %d\n",
76 ppc_set_irq(env
, PPC_INTERRUPT_EXT
, level
);
78 case PPC6xx_INPUT_SMI
:
79 /* Level sensitive - active high */
80 #if defined(PPC_DEBUG_IRQ)
81 if (loglevel
& CPU_LOG_INT
) {
82 fprintf(logfile
, "%s: set the SMI IRQ state to %d\n",
86 ppc_set_irq(env
, PPC_INTERRUPT_SMI
, level
);
88 case PPC6xx_INPUT_MCP
:
89 /* Negative edge sensitive */
90 /* XXX: TODO: actual reaction may depends on HID0 status
91 * 603/604/740/750: check HID0[EMCP]
93 if (cur_level
== 1 && level
== 0) {
94 #if defined(PPC_DEBUG_IRQ)
95 if (loglevel
& CPU_LOG_INT
) {
96 fprintf(logfile
, "%s: raise machine check state\n",
100 ppc_set_irq(env
, PPC_INTERRUPT_MCK
, 1);
103 case PPC6xx_INPUT_CKSTP_IN
:
104 /* Level sensitive - active low */
105 /* XXX: TODO: relay the signal to CKSTP_OUT pin */
107 #if defined(PPC_DEBUG_IRQ)
108 if (loglevel
& CPU_LOG_INT
) {
109 fprintf(logfile
, "%s: stop the CPU\n", __func__
);
114 #if defined(PPC_DEBUG_IRQ)
115 if (loglevel
& CPU_LOG_INT
) {
116 fprintf(logfile
, "%s: restart the CPU\n", __func__
);
122 case PPC6xx_INPUT_HRESET
:
123 /* Level sensitive - active low */
126 #if defined(PPC_DEBUG_IRQ)
127 if (loglevel
& CPU_LOG_INT
) {
128 fprintf(logfile
, "%s: reset the CPU\n", __func__
);
135 case PPC6xx_INPUT_SRESET
:
136 #if defined(PPC_DEBUG_IRQ)
137 if (loglevel
& CPU_LOG_INT
) {
138 fprintf(logfile
, "%s: set the RESET IRQ state to %d\n",
142 ppc_set_irq(env
, PPC_INTERRUPT_RESET
, level
);
145 /* Unknown pin - do nothing */
146 #if defined(PPC_DEBUG_IRQ)
147 if (loglevel
& CPU_LOG_INT
) {
148 fprintf(logfile
, "%s: unknown IRQ pin %d\n", __func__
, pin
);
154 env
->irq_input_state
|= 1 << pin
;
156 env
->irq_input_state
&= ~(1 << pin
);
160 void ppc6xx_irq_init (CPUState
*env
)
162 env
->irq_inputs
= (void **)qemu_allocate_irqs(&ppc6xx_set_irq
, env
, 6);
165 /* PowerPC 970 internal IRQ controller */
166 static void ppc970_set_irq (void *opaque
, int pin
, int level
)
168 CPUState
*env
= opaque
;
171 #if defined(PPC_DEBUG_IRQ)
172 if (loglevel
& CPU_LOG_INT
) {
173 fprintf(logfile
, "%s: env %p pin %d level %d\n", __func__
,
177 cur_level
= (env
->irq_input_state
>> pin
) & 1;
178 /* Don't generate spurious events */
179 if ((cur_level
== 1 && level
== 0) || (cur_level
== 0 && level
!= 0)) {
181 case PPC970_INPUT_INT
:
182 /* Level sensitive - active high */
183 #if defined(PPC_DEBUG_IRQ)
184 if (loglevel
& CPU_LOG_INT
) {
185 fprintf(logfile
, "%s: set the external IRQ state to %d\n",
189 ppc_set_irq(env
, PPC_INTERRUPT_EXT
, level
);
191 case PPC970_INPUT_THINT
:
192 /* Level sensitive - active high */
193 #if defined(PPC_DEBUG_IRQ)
194 if (loglevel
& CPU_LOG_INT
) {
195 fprintf(logfile
, "%s: set the SMI IRQ state to %d\n", __func__
,
199 ppc_set_irq(env
, PPC_INTERRUPT_THERM
, level
);
201 case PPC970_INPUT_MCP
:
202 /* Negative edge sensitive */
203 /* XXX: TODO: actual reaction may depends on HID0 status
204 * 603/604/740/750: check HID0[EMCP]
206 if (cur_level
== 1 && level
== 0) {
207 #if defined(PPC_DEBUG_IRQ)
208 if (loglevel
& CPU_LOG_INT
) {
209 fprintf(logfile
, "%s: raise machine check state\n",
213 ppc_set_irq(env
, PPC_INTERRUPT_MCK
, 1);
216 case PPC970_INPUT_CKSTP
:
217 /* Level sensitive - active low */
218 /* XXX: TODO: relay the signal to CKSTP_OUT pin */
220 #if defined(PPC_DEBUG_IRQ)
221 if (loglevel
& CPU_LOG_INT
) {
222 fprintf(logfile
, "%s: stop the CPU\n", __func__
);
227 #if defined(PPC_DEBUG_IRQ)
228 if (loglevel
& CPU_LOG_INT
) {
229 fprintf(logfile
, "%s: restart the CPU\n", __func__
);
235 case PPC970_INPUT_HRESET
:
236 /* Level sensitive - active low */
239 #if defined(PPC_DEBUG_IRQ)
240 if (loglevel
& CPU_LOG_INT
) {
241 fprintf(logfile
, "%s: reset the CPU\n", __func__
);
248 case PPC970_INPUT_SRESET
:
249 #if defined(PPC_DEBUG_IRQ)
250 if (loglevel
& CPU_LOG_INT
) {
251 fprintf(logfile
, "%s: set the RESET IRQ state to %d\n",
255 ppc_set_irq(env
, PPC_INTERRUPT_RESET
, level
);
257 case PPC970_INPUT_TBEN
:
258 #if defined(PPC_DEBUG_IRQ)
259 if (loglevel
& CPU_LOG_INT
) {
260 fprintf(logfile
, "%s: set the TBEN state to %d\n", __func__
,
267 /* Unknown pin - do nothing */
268 #if defined(PPC_DEBUG_IRQ)
269 if (loglevel
& CPU_LOG_INT
) {
270 fprintf(logfile
, "%s: unknown IRQ pin %d\n", __func__
, pin
);
276 env
->irq_input_state
|= 1 << pin
;
278 env
->irq_input_state
&= ~(1 << pin
);
282 void ppc970_irq_init (CPUState
*env
)
284 env
->irq_inputs
= (void **)qemu_allocate_irqs(&ppc970_set_irq
, env
, 7);
287 /* PowerPC 40x internal IRQ controller */
288 static void ppc40x_set_irq (void *opaque
, int pin
, int level
)
290 CPUState
*env
= opaque
;
293 #if defined(PPC_DEBUG_IRQ)
294 if (loglevel
& CPU_LOG_INT
) {
295 fprintf(logfile
, "%s: env %p pin %d level %d\n", __func__
,
299 cur_level
= (env
->irq_input_state
>> pin
) & 1;
300 /* Don't generate spurious events */
301 if ((cur_level
== 1 && level
== 0) || (cur_level
== 0 && level
!= 0)) {
303 case PPC40x_INPUT_RESET_SYS
:
305 #if defined(PPC_DEBUG_IRQ)
306 if (loglevel
& CPU_LOG_INT
) {
307 fprintf(logfile
, "%s: reset the PowerPC system\n",
311 ppc40x_system_reset(env
);
314 case PPC40x_INPUT_RESET_CHIP
:
316 #if defined(PPC_DEBUG_IRQ)
317 if (loglevel
& CPU_LOG_INT
) {
318 fprintf(logfile
, "%s: reset the PowerPC chip\n", __func__
);
321 ppc40x_chip_reset(env
);
324 case PPC40x_INPUT_RESET_CORE
:
325 /* XXX: TODO: update DBSR[MRR] */
327 #if defined(PPC_DEBUG_IRQ)
328 if (loglevel
& CPU_LOG_INT
) {
329 fprintf(logfile
, "%s: reset the PowerPC core\n", __func__
);
332 ppc40x_core_reset(env
);
335 case PPC40x_INPUT_CINT
:
336 /* Level sensitive - active high */
337 #if defined(PPC_DEBUG_IRQ)
338 if (loglevel
& CPU_LOG_INT
) {
339 fprintf(logfile
, "%s: set the critical IRQ state to %d\n",
343 ppc_set_irq(env
, PPC_INTERRUPT_CEXT
, level
);
345 case PPC40x_INPUT_INT
:
346 /* Level sensitive - active high */
347 #if defined(PPC_DEBUG_IRQ)
348 if (loglevel
& CPU_LOG_INT
) {
349 fprintf(logfile
, "%s: set the external IRQ state to %d\n",
353 ppc_set_irq(env
, PPC_INTERRUPT_EXT
, level
);
355 case PPC40x_INPUT_HALT
:
356 /* Level sensitive - active low */
358 #if defined(PPC_DEBUG_IRQ)
359 if (loglevel
& CPU_LOG_INT
) {
360 fprintf(logfile
, "%s: stop the CPU\n", __func__
);
365 #if defined(PPC_DEBUG_IRQ)
366 if (loglevel
& CPU_LOG_INT
) {
367 fprintf(logfile
, "%s: restart the CPU\n", __func__
);
373 case PPC40x_INPUT_DEBUG
:
374 /* Level sensitive - active high */
375 #if defined(PPC_DEBUG_IRQ)
376 if (loglevel
& CPU_LOG_INT
) {
377 fprintf(logfile
, "%s: set the debug pin state to %d\n",
381 ppc_set_irq(env
, PPC_INTERRUPT_DEBUG
, level
);
384 /* Unknown pin - do nothing */
385 #if defined(PPC_DEBUG_IRQ)
386 if (loglevel
& CPU_LOG_INT
) {
387 fprintf(logfile
, "%s: unknown IRQ pin %d\n", __func__
, pin
);
393 env
->irq_input_state
|= 1 << pin
;
395 env
->irq_input_state
&= ~(1 << pin
);
399 void ppc40x_irq_init (CPUState
*env
)
401 env
->irq_inputs
= (void **)qemu_allocate_irqs(&ppc40x_set_irq
,
402 env
, PPC40x_INPUT_NB
);
405 /*****************************************************************************/
406 /* PowerPC time base and decrementer emulation */
408 /* Time base management */
409 int64_t tb_offset
; /* Compensation */
410 int64_t atb_offset
; /* Compensation */
411 uint32_t tb_freq
; /* TB frequency */
412 /* Decrementer management */
413 uint64_t decr_next
; /* Tick for next decr interrupt */
414 struct QEMUTimer
*decr_timer
;
415 #if defined(TARGET_PPC64H)
416 /* Hypervisor decrementer management */
417 uint64_t hdecr_next
; /* Tick for next hdecr interrupt */
418 struct QEMUTimer
*hdecr_timer
;
425 static inline uint64_t cpu_ppc_get_tb (ppc_tb_t
*tb_env
, int64_t tb_offset
)
427 /* TB time in tb periods */
428 return muldiv64(qemu_get_clock(vm_clock
) + tb_env
->tb_offset
,
429 tb_env
->tb_freq
, ticks_per_sec
);
432 uint32_t cpu_ppc_load_tbl (CPUState
*env
)
434 ppc_tb_t
*tb_env
= env
->tb_env
;
437 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->tb_offset
);
438 #if defined(PPC_DEBUG_TB)
440 fprintf(logfile
, "%s: tb=0x%016lx\n", __func__
, tb
);
444 return tb
& 0xFFFFFFFF;
447 static inline uint32_t _cpu_ppc_load_tbu (CPUState
*env
)
449 ppc_tb_t
*tb_env
= env
->tb_env
;
452 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->tb_offset
);
453 #if defined(PPC_DEBUG_TB)
455 fprintf(logfile
, "%s: tb=0x%016lx\n", __func__
, tb
);
462 uint32_t cpu_ppc_load_tbu (CPUState
*env
)
464 return _cpu_ppc_load_tbu(env
);
467 static inline void cpu_ppc_store_tb (ppc_tb_t
*tb_env
, int64_t *tb_offsetp
,
470 *tb_offsetp
= muldiv64(value
, ticks_per_sec
, tb_env
->tb_freq
)
471 - qemu_get_clock(vm_clock
);
474 fprintf(logfile
, "%s: tb=0x%016lx offset=%08lx\n", __func__
, value
,
480 void cpu_ppc_store_tbl (CPUState
*env
, uint32_t value
)
482 ppc_tb_t
*tb_env
= env
->tb_env
;
485 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->tb_offset
);
486 tb
&= 0xFFFFFFFF00000000ULL
;
487 cpu_ppc_store_tb(tb_env
, &tb_env
->tb_offset
, tb
| (uint64_t)value
);
490 static inline void _cpu_ppc_store_tbu (CPUState
*env
, uint32_t value
)
492 ppc_tb_t
*tb_env
= env
->tb_env
;
495 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->tb_offset
);
496 tb
&= 0x00000000FFFFFFFFULL
;
497 cpu_ppc_store_tb(tb_env
, &tb_env
->tb_offset
,
498 ((uint64_t)value
<< 32) | tb
);
501 void cpu_ppc_store_tbu (CPUState
*env
, uint32_t value
)
503 _cpu_ppc_store_tbu(env
, value
);
506 uint32_t cpu_ppc_load_atbl (CPUState
*env
)
508 ppc_tb_t
*tb_env
= env
->tb_env
;
511 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->atb_offset
);
512 #if defined(PPC_DEBUG_TB)
514 fprintf(logfile
, "%s: tb=0x%016lx\n", __func__
, tb
);
518 return tb
& 0xFFFFFFFF;
521 uint32_t cpu_ppc_load_atbu (CPUState
*env
)
523 ppc_tb_t
*tb_env
= env
->tb_env
;
526 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->atb_offset
);
527 #if defined(PPC_DEBUG_TB)
529 fprintf(logfile
, "%s: tb=0x%016lx\n", __func__
, tb
);
536 void cpu_ppc_store_atbl (CPUState
*env
, uint32_t value
)
538 ppc_tb_t
*tb_env
= env
->tb_env
;
541 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->atb_offset
);
542 tb
&= 0xFFFFFFFF00000000ULL
;
543 cpu_ppc_store_tb(tb_env
, &tb_env
->atb_offset
, tb
| (uint64_t)value
);
546 void cpu_ppc_store_atbu (CPUState
*env
, uint32_t value
)
548 ppc_tb_t
*tb_env
= env
->tb_env
;
551 tb
= cpu_ppc_get_tb(tb_env
, tb_env
->atb_offset
);
552 tb
&= 0x00000000FFFFFFFFULL
;
553 cpu_ppc_store_tb(tb_env
, &tb_env
->atb_offset
,
554 ((uint64_t)value
<< 32) | tb
);
557 static inline uint32_t _cpu_ppc_load_decr (CPUState
*env
, uint64_t *next
)
559 ppc_tb_t
*tb_env
= env
->tb_env
;
563 diff
= tb_env
->decr_next
- qemu_get_clock(vm_clock
);
565 decr
= muldiv64(diff
, tb_env
->tb_freq
, ticks_per_sec
);
567 decr
= -muldiv64(-diff
, tb_env
->tb_freq
, ticks_per_sec
);
568 #if defined(PPC_DEBUG_TB)
570 fprintf(logfile
, "%s: 0x%08x\n", __func__
, decr
);
577 uint32_t cpu_ppc_load_decr (CPUState
*env
)
579 ppc_tb_t
*tb_env
= env
->tb_env
;
581 return _cpu_ppc_load_decr(env
, &tb_env
->decr_next
);
584 #if defined(TARGET_PPC64H)
585 uint32_t cpu_ppc_load_hdecr (CPUState
*env
)
587 ppc_tb_t
*tb_env
= env
->tb_env
;
589 return _cpu_ppc_load_decr(env
, &tb_env
->hdecr_next
);
592 uint64_t cpu_ppc_load_purr (CPUState
*env
)
594 ppc_tb_t
*tb_env
= env
->tb_env
;
597 diff
= qemu_get_clock(vm_clock
) - tb_env
->purr_start
;
599 return tb_env
->purr_load
+ muldiv64(diff
, tb_env
->tb_freq
, ticks_per_sec
);
601 #endif /* defined(TARGET_PPC64H) */
603 /* When decrementer expires,
604 * all we need to do is generate or queue a CPU exception
606 static inline void cpu_ppc_decr_excp (CPUState
*env
)
611 fprintf(logfile
, "raise decrementer exception\n");
614 ppc_set_irq(env
, PPC_INTERRUPT_DECR
, 1);
617 static inline void cpu_ppc_hdecr_excp (CPUState
*env
)
622 fprintf(logfile
, "raise decrementer exception\n");
625 ppc_set_irq(env
, PPC_INTERRUPT_HDECR
, 1);
628 static void __cpu_ppc_store_decr (CPUState
*env
, uint64_t *nextp
,
629 struct QEMUTimer
*timer
,
630 void (*raise_excp
)(CPUState
*),
631 uint32_t decr
, uint32_t value
,
634 ppc_tb_t
*tb_env
= env
->tb_env
;
639 fprintf(logfile
, "%s: 0x%08x => 0x%08x\n", __func__
, decr
, value
);
642 now
= qemu_get_clock(vm_clock
);
643 next
= now
+ muldiv64(value
, ticks_per_sec
, tb_env
->tb_freq
);
645 next
+= *nextp
- now
;
650 qemu_mod_timer(timer
, next
);
651 /* If we set a negative value and the decrementer was positive,
652 * raise an exception.
654 if ((value
& 0x80000000) && !(decr
& 0x80000000))
659 static inline void _cpu_ppc_store_decr (CPUState
*env
, uint32_t decr
,
660 uint32_t value
, int is_excp
)
662 ppc_tb_t
*tb_env
= env
->tb_env
;
664 __cpu_ppc_store_decr(env
, &tb_env
->decr_next
, tb_env
->decr_timer
,
665 &cpu_ppc_decr_excp
, decr
, value
, is_excp
);
668 void cpu_ppc_store_decr (CPUState
*env
, uint32_t value
)
670 _cpu_ppc_store_decr(env
, cpu_ppc_load_decr(env
), value
, 0);
673 static void cpu_ppc_decr_cb (void *opaque
)
675 _cpu_ppc_store_decr(opaque
, 0x00000000, 0xFFFFFFFF, 1);
678 #if defined(TARGET_PPC64H)
679 static inline void _cpu_ppc_store_hdecr (CPUState
*env
, uint32_t hdecr
,
680 uint32_t value
, int is_excp
)
682 ppc_tb_t
*tb_env
= env
->tb_env
;
684 __cpu_ppc_store_decr(env
, &tb_env
->hdecr_next
, tb_env
->hdecr_timer
,
685 &cpu_ppc_hdecr_excp
, hdecr
, value
, is_excp
);
688 void cpu_ppc_store_hdecr (CPUState
*env
, uint32_t value
)
690 _cpu_ppc_store_hdecr(env
, cpu_ppc_load_hdecr(env
), value
, 0);
693 static void cpu_ppc_hdecr_cb (void *opaque
)
695 _cpu_ppc_store_hdecr(opaque
, 0x00000000, 0xFFFFFFFF, 1);
698 void cpu_ppc_store_purr (CPUState
*env
, uint64_t value
)
700 ppc_tb_t
*tb_env
= env
->tb_env
;
702 tb_env
->purr_load
= value
;
703 tb_env
->purr_start
= qemu_get_clock(vm_clock
);
705 #endif /* defined(TARGET_PPC64H) */
707 static void cpu_ppc_set_tb_clk (void *opaque
, uint32_t freq
)
709 CPUState
*env
= opaque
;
710 ppc_tb_t
*tb_env
= env
->tb_env
;
712 tb_env
->tb_freq
= freq
;
713 /* There is a bug in Linux 2.4 kernels:
714 * if a decrementer exception is pending when it enables msr_ee at startup,
715 * it's not ready to handle it...
717 _cpu_ppc_store_decr(env
, 0xFFFFFFFF, 0xFFFFFFFF, 0);
718 #if defined(TARGET_PPC64H)
719 _cpu_ppc_store_hdecr(env
, 0xFFFFFFFF, 0xFFFFFFFF, 0);
720 cpu_ppc_store_purr(env
, 0x0000000000000000ULL
);
721 #endif /* defined(TARGET_PPC64H) */
724 /* Set up (once) timebase frequency (in Hz) */
725 clk_setup_cb
cpu_ppc_tb_init (CPUState
*env
, uint32_t freq
)
729 tb_env
= qemu_mallocz(sizeof(ppc_tb_t
));
732 env
->tb_env
= tb_env
;
733 /* Create new timer */
734 tb_env
->decr_timer
= qemu_new_timer(vm_clock
, &cpu_ppc_decr_cb
, env
);
735 #if defined(TARGET_PPC64H)
736 tb_env
->hdecr_timer
= qemu_new_timer(vm_clock
, &cpu_ppc_hdecr_cb
, env
);
737 #endif /* defined(TARGET_PPC64H) */
738 cpu_ppc_set_tb_clk(env
, freq
);
740 return &cpu_ppc_set_tb_clk
;
743 /* Specific helpers for POWER & PowerPC 601 RTC */
744 clk_setup_cb
cpu_ppc601_rtc_init (CPUState
*env
)
746 return cpu_ppc_tb_init(env
, 7812500);
749 void cpu_ppc601_store_rtcu (CPUState
*env
, uint32_t value
)
751 _cpu_ppc_store_tbu(env
, value
);
754 uint32_t cpu_ppc601_load_rtcu (CPUState
*env
)
756 return _cpu_ppc_load_tbu(env
);
759 void cpu_ppc601_store_rtcl (CPUState
*env
, uint32_t value
)
761 cpu_ppc_store_tbl(env
, value
& 0x3FFFFF80);
764 uint32_t cpu_ppc601_load_rtcl (CPUState
*env
)
766 return cpu_ppc_load_tbl(env
) & 0x3FFFFF80;
769 /*****************************************************************************/
770 /* Embedded PowerPC timers */
773 typedef struct ppcemb_timer_t ppcemb_timer_t
;
774 struct ppcemb_timer_t
{
775 uint64_t pit_reload
; /* PIT auto-reload value */
776 uint64_t fit_next
; /* Tick for next FIT interrupt */
777 struct QEMUTimer
*fit_timer
;
778 uint64_t wdt_next
; /* Tick for next WDT interrupt */
779 struct QEMUTimer
*wdt_timer
;
782 /* Fixed interval timer */
783 static void cpu_4xx_fit_cb (void *opaque
)
787 ppcemb_timer_t
*ppcemb_timer
;
791 tb_env
= env
->tb_env
;
792 ppcemb_timer
= tb_env
->opaque
;
793 now
= qemu_get_clock(vm_clock
);
794 switch ((env
->spr
[SPR_40x_TCR
] >> 24) & 0x3) {
808 /* Cannot occur, but makes gcc happy */
811 next
= now
+ muldiv64(next
, ticks_per_sec
, tb_env
->tb_freq
);
814 qemu_mod_timer(ppcemb_timer
->fit_timer
, next
);
815 env
->spr
[SPR_40x_TSR
] |= 1 << 26;
816 if ((env
->spr
[SPR_40x_TCR
] >> 23) & 0x1)
817 ppc_set_irq(env
, PPC_INTERRUPT_FIT
, 1);
820 fprintf(logfile
, "%s: ir %d TCR " ADDRX
" TSR " ADDRX
"\n", __func__
,
821 (int)((env
->spr
[SPR_40x_TCR
] >> 23) & 0x1),
822 env
->spr
[SPR_40x_TCR
], env
->spr
[SPR_40x_TSR
]);
827 /* Programmable interval timer */
828 static void start_stop_pit (CPUState
*env
, ppc_tb_t
*tb_env
, int is_excp
)
830 ppcemb_timer_t
*ppcemb_timer
;
833 ppcemb_timer
= tb_env
->opaque
;
834 if (ppcemb_timer
->pit_reload
<= 1 ||
835 !((env
->spr
[SPR_40x_TCR
] >> 26) & 0x1) ||
836 (is_excp
&& !((env
->spr
[SPR_40x_TCR
] >> 22) & 0x1))) {
840 fprintf(logfile
, "%s: stop PIT\n", __func__
);
843 qemu_del_timer(tb_env
->decr_timer
);
847 fprintf(logfile
, "%s: start PIT 0x" REGX
"\n",
848 __func__
, ppcemb_timer
->pit_reload
);
851 now
= qemu_get_clock(vm_clock
);
852 next
= now
+ muldiv64(ppcemb_timer
->pit_reload
,
853 ticks_per_sec
, tb_env
->tb_freq
);
855 next
+= tb_env
->decr_next
- now
;
858 qemu_mod_timer(tb_env
->decr_timer
, next
);
859 tb_env
->decr_next
= next
;
863 static void cpu_4xx_pit_cb (void *opaque
)
867 ppcemb_timer_t
*ppcemb_timer
;
870 tb_env
= env
->tb_env
;
871 ppcemb_timer
= tb_env
->opaque
;
872 env
->spr
[SPR_40x_TSR
] |= 1 << 27;
873 if ((env
->spr
[SPR_40x_TCR
] >> 26) & 0x1)
874 ppc_set_irq(env
, PPC_INTERRUPT_PIT
, 1);
875 start_stop_pit(env
, tb_env
, 1);
878 fprintf(logfile
, "%s: ar %d ir %d TCR " ADDRX
" TSR " ADDRX
" "
879 "%016" PRIx64
"\n", __func__
,
880 (int)((env
->spr
[SPR_40x_TCR
] >> 22) & 0x1),
881 (int)((env
->spr
[SPR_40x_TCR
] >> 26) & 0x1),
882 env
->spr
[SPR_40x_TCR
], env
->spr
[SPR_40x_TSR
],
883 ppcemb_timer
->pit_reload
);
889 static void cpu_4xx_wdt_cb (void *opaque
)
893 ppcemb_timer_t
*ppcemb_timer
;
897 tb_env
= env
->tb_env
;
898 ppcemb_timer
= tb_env
->opaque
;
899 now
= qemu_get_clock(vm_clock
);
900 switch ((env
->spr
[SPR_40x_TCR
] >> 30) & 0x3) {
914 /* Cannot occur, but makes gcc happy */
917 next
= now
+ muldiv64(next
, ticks_per_sec
, tb_env
->tb_freq
);
922 fprintf(logfile
, "%s: TCR " ADDRX
" TSR " ADDRX
"\n", __func__
,
923 env
->spr
[SPR_40x_TCR
], env
->spr
[SPR_40x_TSR
]);
926 switch ((env
->spr
[SPR_40x_TSR
] >> 30) & 0x3) {
929 qemu_mod_timer(ppcemb_timer
->wdt_timer
, next
);
930 ppcemb_timer
->wdt_next
= next
;
931 env
->spr
[SPR_40x_TSR
] |= 1 << 31;
934 qemu_mod_timer(ppcemb_timer
->wdt_timer
, next
);
935 ppcemb_timer
->wdt_next
= next
;
936 env
->spr
[SPR_40x_TSR
] |= 1 << 30;
937 if ((env
->spr
[SPR_40x_TCR
] >> 27) & 0x1)
938 ppc_set_irq(env
, PPC_INTERRUPT_WDT
, 1);
941 env
->spr
[SPR_40x_TSR
] &= ~0x30000000;
942 env
->spr
[SPR_40x_TSR
] |= env
->spr
[SPR_40x_TCR
] & 0x30000000;
943 switch ((env
->spr
[SPR_40x_TCR
] >> 28) & 0x3) {
947 case 0x1: /* Core reset */
948 ppc40x_core_reset(env
);
950 case 0x2: /* Chip reset */
951 ppc40x_chip_reset(env
);
953 case 0x3: /* System reset */
954 ppc40x_system_reset(env
);
960 void store_40x_pit (CPUState
*env
, target_ulong val
)
963 ppcemb_timer_t
*ppcemb_timer
;
965 tb_env
= env
->tb_env
;
966 ppcemb_timer
= tb_env
->opaque
;
969 fprintf(logfile
, "%s %p %p\n", __func__
, tb_env
, ppcemb_timer
);
972 ppcemb_timer
->pit_reload
= val
;
973 start_stop_pit(env
, tb_env
, 0);
976 target_ulong
load_40x_pit (CPUState
*env
)
978 return cpu_ppc_load_decr(env
);
981 void store_booke_tsr (CPUState
*env
, target_ulong val
)
985 fprintf(logfile
, "%s: val=" ADDRX
"\n", __func__
, val
);
988 env
->spr
[SPR_40x_TSR
] &= ~(val
& 0xFC000000);
989 if (val
& 0x80000000)
990 ppc_set_irq(env
, PPC_INTERRUPT_PIT
, 0);
993 void store_booke_tcr (CPUState
*env
, target_ulong val
)
997 tb_env
= env
->tb_env
;
1000 fprintf(logfile
, "%s: val=" ADDRX
"\n", __func__
, val
);
1003 env
->spr
[SPR_40x_TCR
] = val
& 0xFFC00000;
1004 start_stop_pit(env
, tb_env
, 1);
1005 cpu_4xx_wdt_cb(env
);
1008 static void ppc_emb_set_tb_clk (void *opaque
, uint32_t freq
)
1010 CPUState
*env
= opaque
;
1011 ppc_tb_t
*tb_env
= env
->tb_env
;
1014 if (loglevel
!= 0) {
1015 fprintf(logfile
, "%s set new frequency to %u\n", __func__
, freq
);
1018 tb_env
->tb_freq
= freq
;
1019 /* XXX: we should also update all timers */
1022 clk_setup_cb
ppc_emb_timers_init (CPUState
*env
, uint32_t freq
)
1025 ppcemb_timer_t
*ppcemb_timer
;
1027 tb_env
= qemu_mallocz(sizeof(ppc_tb_t
));
1028 if (tb_env
== NULL
) {
1031 env
->tb_env
= tb_env
;
1032 ppcemb_timer
= qemu_mallocz(sizeof(ppcemb_timer_t
));
1033 tb_env
->tb_freq
= freq
;
1034 tb_env
->opaque
= ppcemb_timer
;
1036 if (loglevel
!= 0) {
1037 fprintf(logfile
, "%s %p %p %p\n", __func__
, tb_env
, ppcemb_timer
,
1038 &ppc_emb_set_tb_clk
);
1041 if (ppcemb_timer
!= NULL
) {
1042 /* We use decr timer for PIT */
1043 tb_env
->decr_timer
= qemu_new_timer(vm_clock
, &cpu_4xx_pit_cb
, env
);
1044 ppcemb_timer
->fit_timer
=
1045 qemu_new_timer(vm_clock
, &cpu_4xx_fit_cb
, env
);
1046 ppcemb_timer
->wdt_timer
=
1047 qemu_new_timer(vm_clock
, &cpu_4xx_wdt_cb
, env
);
1050 return &ppc_emb_set_tb_clk
;
1053 /*****************************************************************************/
1054 /* Embedded PowerPC Device Control Registers */
1055 typedef struct ppc_dcrn_t ppc_dcrn_t
;
1057 dcr_read_cb dcr_read
;
1058 dcr_write_cb dcr_write
;
1062 /* XXX: on 460, DCR addresses are 32 bits wide,
1063 * using DCRIPR to get the 22 upper bits of the DCR address
1065 #define DCRN_NB 1024
1067 ppc_dcrn_t dcrn
[DCRN_NB
];
1068 int (*read_error
)(int dcrn
);
1069 int (*write_error
)(int dcrn
);
1072 int ppc_dcr_read (ppc_dcr_t
*dcr_env
, int dcrn
, target_ulong
*valp
)
1076 if (dcrn
< 0 || dcrn
>= DCRN_NB
)
1078 dcr
= &dcr_env
->dcrn
[dcrn
];
1079 if (dcr
->dcr_read
== NULL
)
1081 *valp
= (*dcr
->dcr_read
)(dcr
->opaque
, dcrn
);
1086 if (dcr_env
->read_error
!= NULL
)
1087 return (*dcr_env
->read_error
)(dcrn
);
1092 int ppc_dcr_write (ppc_dcr_t
*dcr_env
, int dcrn
, target_ulong val
)
1096 if (dcrn
< 0 || dcrn
>= DCRN_NB
)
1098 dcr
= &dcr_env
->dcrn
[dcrn
];
1099 if (dcr
->dcr_write
== NULL
)
1101 (*dcr
->dcr_write
)(dcr
->opaque
, dcrn
, val
);
1106 if (dcr_env
->write_error
!= NULL
)
1107 return (*dcr_env
->write_error
)(dcrn
);
1112 int ppc_dcr_register (CPUState
*env
, int dcrn
, void *opaque
,
1113 dcr_read_cb dcr_read
, dcr_write_cb dcr_write
)
1118 dcr_env
= env
->dcr_env
;
1119 if (dcr_env
== NULL
)
1121 if (dcrn
< 0 || dcrn
>= DCRN_NB
)
1123 dcr
= &dcr_env
->dcrn
[dcrn
];
1124 if (dcr
->opaque
!= NULL
||
1125 dcr
->dcr_read
!= NULL
||
1126 dcr
->dcr_write
!= NULL
)
1128 dcr
->opaque
= opaque
;
1129 dcr
->dcr_read
= dcr_read
;
1130 dcr
->dcr_write
= dcr_write
;
1135 int ppc_dcr_init (CPUState
*env
, int (*read_error
)(int dcrn
),
1136 int (*write_error
)(int dcrn
))
1140 dcr_env
= qemu_mallocz(sizeof(ppc_dcr_t
));
1141 if (dcr_env
== NULL
)
1143 dcr_env
->read_error
= read_error
;
1144 dcr_env
->write_error
= write_error
;
1145 env
->dcr_env
= dcr_env
;
1152 /*****************************************************************************/
1153 /* Handle system reset (for now, just stop emulation) */
1154 void cpu_ppc_reset (CPUState
*env
)
1156 printf("Reset asked... Stop emulation\n");
1161 /*****************************************************************************/
1163 void PPC_debug_write (void *opaque
, uint32_t addr
, uint32_t val
)
1175 printf("Set loglevel to %04x\n", val
);
1176 cpu_set_log(val
| 0x100);
1181 /*****************************************************************************/
1183 void NVRAM_set_byte (m48t59_t
*nvram
, uint32_t addr
, uint8_t value
)
1185 m48t59_write(nvram
, addr
, value
);
1188 uint8_t NVRAM_get_byte (m48t59_t
*nvram
, uint32_t addr
)
1190 return m48t59_read(nvram
, addr
);
1193 void NVRAM_set_word (m48t59_t
*nvram
, uint32_t addr
, uint16_t value
)
1195 m48t59_write(nvram
, addr
, value
>> 8);
1196 m48t59_write(nvram
, addr
+ 1, value
& 0xFF);
1199 uint16_t NVRAM_get_word (m48t59_t
*nvram
, uint32_t addr
)
1203 tmp
= m48t59_read(nvram
, addr
) << 8;
1204 tmp
|= m48t59_read(nvram
, addr
+ 1);
1208 void NVRAM_set_lword (m48t59_t
*nvram
, uint32_t addr
, uint32_t value
)
1210 m48t59_write(nvram
, addr
, value
>> 24);
1211 m48t59_write(nvram
, addr
+ 1, (value
>> 16) & 0xFF);
1212 m48t59_write(nvram
, addr
+ 2, (value
>> 8) & 0xFF);
1213 m48t59_write(nvram
, addr
+ 3, value
& 0xFF);
1216 uint32_t NVRAM_get_lword (m48t59_t
*nvram
, uint32_t addr
)
1220 tmp
= m48t59_read(nvram
, addr
) << 24;
1221 tmp
|= m48t59_read(nvram
, addr
+ 1) << 16;
1222 tmp
|= m48t59_read(nvram
, addr
+ 2) << 8;
1223 tmp
|= m48t59_read(nvram
, addr
+ 3);
1228 void NVRAM_set_string (m48t59_t
*nvram
, uint32_t addr
,
1229 const unsigned char *str
, uint32_t max
)
1233 for (i
= 0; i
< max
&& str
[i
] != '\0'; i
++) {
1234 m48t59_write(nvram
, addr
+ i
, str
[i
]);
1236 m48t59_write(nvram
, addr
+ max
- 1, '\0');
1239 int NVRAM_get_string (m48t59_t
*nvram
, uint8_t *dst
, uint16_t addr
, int max
)
1243 memset(dst
, 0, max
);
1244 for (i
= 0; i
< max
; i
++) {
1245 dst
[i
] = NVRAM_get_byte(nvram
, addr
+ i
);
1253 static uint16_t NVRAM_crc_update (uint16_t prev
, uint16_t value
)
1256 uint16_t pd
, pd1
, pd2
;
1261 pd2
= ((pd
>> 4) & 0x000F) ^ pd1
;
1262 tmp
^= (pd1
<< 3) | (pd1
<< 8);
1263 tmp
^= pd2
| (pd2
<< 7) | (pd2
<< 12);
1268 uint16_t NVRAM_compute_crc (m48t59_t
*nvram
, uint32_t start
, uint32_t count
)
1271 uint16_t crc
= 0xFFFF;
1276 for (i
= 0; i
!= count
; i
++) {
1277 crc
= NVRAM_crc_update(crc
, NVRAM_get_word(nvram
, start
+ i
));
1280 crc
= NVRAM_crc_update(crc
, NVRAM_get_byte(nvram
, start
+ i
) << 8);
1286 #define CMDLINE_ADDR 0x017ff000
1288 int PPC_NVRAM_set_params (m48t59_t
*nvram
, uint16_t NVRAM_size
,
1289 const unsigned char *arch
,
1290 uint32_t RAM_size
, int boot_device
,
1291 uint32_t kernel_image
, uint32_t kernel_size
,
1292 const char *cmdline
,
1293 uint32_t initrd_image
, uint32_t initrd_size
,
1294 uint32_t NVRAM_image
,
1295 int width
, int height
, int depth
)
1299 /* Set parameters for Open Hack'Ware BIOS */
1300 NVRAM_set_string(nvram
, 0x00, "QEMU_BIOS", 16);
1301 NVRAM_set_lword(nvram
, 0x10, 0x00000002); /* structure v2 */
1302 NVRAM_set_word(nvram
, 0x14, NVRAM_size
);
1303 NVRAM_set_string(nvram
, 0x20, arch
, 16);
1304 NVRAM_set_lword(nvram
, 0x30, RAM_size
);
1305 NVRAM_set_byte(nvram
, 0x34, boot_device
);
1306 NVRAM_set_lword(nvram
, 0x38, kernel_image
);
1307 NVRAM_set_lword(nvram
, 0x3C, kernel_size
);
1309 /* XXX: put the cmdline in NVRAM too ? */
1310 strcpy(phys_ram_base
+ CMDLINE_ADDR
, cmdline
);
1311 NVRAM_set_lword(nvram
, 0x40, CMDLINE_ADDR
);
1312 NVRAM_set_lword(nvram
, 0x44, strlen(cmdline
));
1314 NVRAM_set_lword(nvram
, 0x40, 0);
1315 NVRAM_set_lword(nvram
, 0x44, 0);
1317 NVRAM_set_lword(nvram
, 0x48, initrd_image
);
1318 NVRAM_set_lword(nvram
, 0x4C, initrd_size
);
1319 NVRAM_set_lword(nvram
, 0x50, NVRAM_image
);
1321 NVRAM_set_word(nvram
, 0x54, width
);
1322 NVRAM_set_word(nvram
, 0x56, height
);
1323 NVRAM_set_word(nvram
, 0x58, depth
);
1324 crc
= NVRAM_compute_crc(nvram
, 0x00, 0xF8);
1325 NVRAM_set_word(nvram
, 0xFC, crc
);