]>
Commit | Line | Data |
---|---|---|
a541f297 | 1 | /* |
e9df014c | 2 | * QEMU generic PowerPC hardware System Emulator |
5fafdf24 | 3 | * |
76a66253 | 4 | * Copyright (c) 2003-2007 Jocelyn Mayer |
5fafdf24 | 5 | * |
a541f297 FB |
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 | */ | |
a541f297 | 24 | #include "vl.h" |
fd0bbb12 | 25 | #include "m48t59.h" |
a541f297 | 26 | |
e9df014c | 27 | //#define PPC_DEBUG_IRQ |
4b6d0a4c | 28 | //#define PPC_DEBUG_TB |
e9df014c | 29 | |
47103572 JM |
30 | extern FILE *logfile; |
31 | extern int loglevel; | |
32 | ||
e9df014c | 33 | void ppc_set_irq (CPUState *env, int n_IRQ, int level) |
47103572 | 34 | { |
47103572 JM |
35 | if (level) { |
36 | env->pending_interrupts |= 1 << n_IRQ; | |
37 | cpu_interrupt(env, CPU_INTERRUPT_HARD); | |
38 | } else { | |
39 | env->pending_interrupts &= ~(1 << n_IRQ); | |
40 | if (env->pending_interrupts == 0) | |
41 | cpu_reset_interrupt(env, CPU_INTERRUPT_HARD); | |
42 | } | |
e9df014c | 43 | #if defined(PPC_DEBUG_IRQ) |
a496775f JM |
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); | |
48 | } | |
47103572 JM |
49 | #endif |
50 | } | |
51 | ||
e9df014c JM |
52 | /* PowerPC 6xx / 7xx internal IRQ controller */ |
53 | static void ppc6xx_set_irq (void *opaque, int pin, int level) | |
d537cf6c | 54 | { |
e9df014c JM |
55 | CPUState *env = opaque; |
56 | int cur_level; | |
d537cf6c | 57 | |
e9df014c | 58 | #if defined(PPC_DEBUG_IRQ) |
a496775f JM |
59 | if (loglevel & CPU_LOG_INT) { |
60 | fprintf(logfile, "%s: env %p pin %d level %d\n", __func__, | |
61 | env, pin, level); | |
62 | } | |
e9df014c JM |
63 | #endif |
64 | cur_level = (env->irq_input_state >> pin) & 1; | |
65 | /* Don't generate spurious events */ | |
24be5ae3 | 66 | if ((cur_level == 1 && level == 0) || (cur_level == 0 && level != 0)) { |
e9df014c | 67 | switch (pin) { |
24be5ae3 JM |
68 | case PPC6xx_INPUT_INT: |
69 | /* Level sensitive - active high */ | |
e9df014c | 70 | #if defined(PPC_DEBUG_IRQ) |
a496775f JM |
71 | if (loglevel & CPU_LOG_INT) { |
72 | fprintf(logfile, "%s: set the external IRQ state to %d\n", | |
73 | __func__, level); | |
74 | } | |
e9df014c JM |
75 | #endif |
76 | ppc_set_irq(env, PPC_INTERRUPT_EXT, level); | |
77 | break; | |
24be5ae3 | 78 | case PPC6xx_INPUT_SMI: |
e9df014c JM |
79 | /* Level sensitive - active high */ |
80 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
81 | if (loglevel & CPU_LOG_INT) { |
82 | fprintf(logfile, "%s: set the SMI IRQ state to %d\n", | |
83 | __func__, level); | |
84 | } | |
e9df014c JM |
85 | #endif |
86 | ppc_set_irq(env, PPC_INTERRUPT_SMI, level); | |
87 | break; | |
24be5ae3 | 88 | case PPC6xx_INPUT_MCP: |
e9df014c JM |
89 | /* Negative edge sensitive */ |
90 | /* XXX: TODO: actual reaction may depends on HID0 status | |
91 | * 603/604/740/750: check HID0[EMCP] | |
92 | */ | |
93 | if (cur_level == 1 && level == 0) { | |
94 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
95 | if (loglevel & CPU_LOG_INT) { |
96 | fprintf(logfile, "%s: raise machine check state\n", | |
97 | __func__); | |
98 | } | |
e9df014c JM |
99 | #endif |
100 | ppc_set_irq(env, PPC_INTERRUPT_MCK, 1); | |
101 | } | |
102 | break; | |
24be5ae3 | 103 | case PPC6xx_INPUT_CKSTP_IN: |
e9df014c JM |
104 | /* Level sensitive - active low */ |
105 | /* XXX: TODO: relay the signal to CKSTP_OUT pin */ | |
106 | if (level) { | |
107 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
108 | if (loglevel & CPU_LOG_INT) { |
109 | fprintf(logfile, "%s: stop the CPU\n", __func__); | |
110 | } | |
e9df014c JM |
111 | #endif |
112 | env->halted = 1; | |
113 | } else { | |
114 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
115 | if (loglevel & CPU_LOG_INT) { |
116 | fprintf(logfile, "%s: restart the CPU\n", __func__); | |
117 | } | |
e9df014c JM |
118 | #endif |
119 | env->halted = 0; | |
120 | } | |
121 | break; | |
24be5ae3 | 122 | case PPC6xx_INPUT_HRESET: |
e9df014c JM |
123 | /* Level sensitive - active low */ |
124 | if (level) { | |
125 | #if 0 // XXX: TOFIX | |
126 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
127 | if (loglevel & CPU_LOG_INT) { |
128 | fprintf(logfile, "%s: reset the CPU\n", __func__); | |
129 | } | |
e9df014c JM |
130 | #endif |
131 | cpu_reset(env); | |
132 | #endif | |
133 | } | |
134 | break; | |
24be5ae3 | 135 | case PPC6xx_INPUT_SRESET: |
e9df014c | 136 | #if defined(PPC_DEBUG_IRQ) |
a496775f JM |
137 | if (loglevel & CPU_LOG_INT) { |
138 | fprintf(logfile, "%s: set the RESET IRQ state to %d\n", | |
139 | __func__, level); | |
140 | } | |
e9df014c JM |
141 | #endif |
142 | ppc_set_irq(env, PPC_INTERRUPT_RESET, level); | |
143 | break; | |
144 | default: | |
145 | /* Unknown pin - do nothing */ | |
146 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
147 | if (loglevel & CPU_LOG_INT) { |
148 | fprintf(logfile, "%s: unknown IRQ pin %d\n", __func__, pin); | |
149 | } | |
e9df014c JM |
150 | #endif |
151 | return; | |
152 | } | |
153 | if (level) | |
154 | env->irq_input_state |= 1 << pin; | |
155 | else | |
156 | env->irq_input_state &= ~(1 << pin); | |
d537cf6c PB |
157 | } |
158 | } | |
159 | ||
e9df014c | 160 | void ppc6xx_irq_init (CPUState *env) |
47103572 | 161 | { |
e9df014c | 162 | env->irq_inputs = (void **)qemu_allocate_irqs(&ppc6xx_set_irq, env, 6); |
47103572 JM |
163 | } |
164 | ||
d0dfae6e JM |
165 | /* PowerPC 970 internal IRQ controller */ |
166 | static void ppc970_set_irq (void *opaque, int pin, int level) | |
167 | { | |
168 | CPUState *env = opaque; | |
169 | int cur_level; | |
170 | ||
171 | #if defined(PPC_DEBUG_IRQ) | |
172 | if (loglevel & CPU_LOG_INT) { | |
173 | fprintf(logfile, "%s: env %p pin %d level %d\n", __func__, | |
174 | env, pin, level); | |
175 | } | |
176 | #endif | |
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)) { | |
180 | switch (pin) { | |
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", | |
186 | __func__, level); | |
187 | } | |
188 | #endif | |
189 | ppc_set_irq(env, PPC_INTERRUPT_EXT, level); | |
190 | break; | |
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__, | |
196 | level); | |
197 | } | |
198 | #endif | |
199 | ppc_set_irq(env, PPC_INTERRUPT_THERM, level); | |
200 | break; | |
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] | |
205 | */ | |
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", | |
210 | __func__); | |
211 | } | |
212 | #endif | |
213 | ppc_set_irq(env, PPC_INTERRUPT_MCK, 1); | |
214 | } | |
215 | break; | |
216 | case PPC970_INPUT_CKSTP: | |
217 | /* Level sensitive - active low */ | |
218 | /* XXX: TODO: relay the signal to CKSTP_OUT pin */ | |
219 | if (level) { | |
220 | #if defined(PPC_DEBUG_IRQ) | |
221 | if (loglevel & CPU_LOG_INT) { | |
222 | fprintf(logfile, "%s: stop the CPU\n", __func__); | |
223 | } | |
224 | #endif | |
225 | env->halted = 1; | |
226 | } else { | |
227 | #if defined(PPC_DEBUG_IRQ) | |
228 | if (loglevel & CPU_LOG_INT) { | |
229 | fprintf(logfile, "%s: restart the CPU\n", __func__); | |
230 | } | |
231 | #endif | |
232 | env->halted = 0; | |
233 | } | |
234 | break; | |
235 | case PPC970_INPUT_HRESET: | |
236 | /* Level sensitive - active low */ | |
237 | if (level) { | |
238 | #if 0 // XXX: TOFIX | |
239 | #if defined(PPC_DEBUG_IRQ) | |
240 | if (loglevel & CPU_LOG_INT) { | |
241 | fprintf(logfile, "%s: reset the CPU\n", __func__); | |
242 | } | |
243 | #endif | |
244 | cpu_reset(env); | |
245 | #endif | |
246 | } | |
247 | break; | |
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", | |
252 | __func__, level); | |
253 | } | |
254 | #endif | |
255 | ppc_set_irq(env, PPC_INTERRUPT_RESET, level); | |
256 | break; | |
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__, | |
261 | level); | |
262 | } | |
263 | #endif | |
264 | /* XXX: TODO */ | |
265 | break; | |
266 | default: | |
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); | |
271 | } | |
272 | #endif | |
273 | return; | |
274 | } | |
275 | if (level) | |
276 | env->irq_input_state |= 1 << pin; | |
277 | else | |
278 | env->irq_input_state &= ~(1 << pin); | |
279 | } | |
280 | } | |
281 | ||
282 | void ppc970_irq_init (CPUState *env) | |
283 | { | |
284 | env->irq_inputs = (void **)qemu_allocate_irqs(&ppc970_set_irq, env, 7); | |
285 | } | |
286 | ||
24be5ae3 JM |
287 | /* PowerPC 405 internal IRQ controller */ |
288 | static void ppc405_set_irq (void *opaque, int pin, int level) | |
289 | { | |
290 | CPUState *env = opaque; | |
291 | int cur_level; | |
292 | ||
293 | #if defined(PPC_DEBUG_IRQ) | |
8ecc7913 JM |
294 | if (loglevel & CPU_LOG_INT) { |
295 | fprintf(logfile, "%s: env %p pin %d level %d\n", __func__, | |
296 | env, pin, level); | |
297 | } | |
24be5ae3 JM |
298 | #endif |
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)) { | |
302 | switch (pin) { | |
303 | case PPC405_INPUT_RESET_SYS: | |
8ecc7913 JM |
304 | if (level) { |
305 | #if defined(PPC_DEBUG_IRQ) | |
306 | if (loglevel & CPU_LOG_INT) { | |
307 | fprintf(logfile, "%s: reset the PowerPC system\n", | |
308 | __func__); | |
309 | } | |
310 | #endif | |
311 | ppc40x_system_reset(env); | |
312 | } | |
313 | break; | |
24be5ae3 | 314 | case PPC405_INPUT_RESET_CHIP: |
8ecc7913 JM |
315 | if (level) { |
316 | #if defined(PPC_DEBUG_IRQ) | |
317 | if (loglevel & CPU_LOG_INT) { | |
318 | fprintf(logfile, "%s: reset the PowerPC chip\n", __func__); | |
319 | } | |
320 | #endif | |
321 | ppc40x_chip_reset(env); | |
322 | } | |
323 | break; | |
24be5ae3 JM |
324 | /* No break here */ |
325 | case PPC405_INPUT_RESET_CORE: | |
326 | /* XXX: TODO: update DBSR[MRR] */ | |
327 | if (level) { | |
24be5ae3 | 328 | #if defined(PPC_DEBUG_IRQ) |
8ecc7913 JM |
329 | if (loglevel & CPU_LOG_INT) { |
330 | fprintf(logfile, "%s: reset the PowerPC core\n", __func__); | |
331 | } | |
24be5ae3 | 332 | #endif |
8ecc7913 | 333 | ppc40x_core_reset(env); |
24be5ae3 JM |
334 | } |
335 | break; | |
336 | case PPC405_INPUT_CINT: | |
337 | /* Level sensitive - active high */ | |
338 | #if defined(PPC_DEBUG_IRQ) | |
8ecc7913 JM |
339 | if (loglevel & CPU_LOG_INT) { |
340 | fprintf(logfile, "%s: set the critical IRQ state to %d\n", | |
341 | __func__, level); | |
342 | } | |
24be5ae3 JM |
343 | #endif |
344 | /* XXX: TOFIX */ | |
345 | ppc_set_irq(env, PPC_INTERRUPT_RESET, level); | |
346 | break; | |
347 | case PPC405_INPUT_INT: | |
348 | /* Level sensitive - active high */ | |
349 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
350 | if (loglevel & CPU_LOG_INT) { |
351 | fprintf(logfile, "%s: set the external IRQ state to %d\n", | |
352 | __func__, level); | |
353 | } | |
24be5ae3 JM |
354 | #endif |
355 | ppc_set_irq(env, PPC_INTERRUPT_EXT, level); | |
356 | break; | |
357 | case PPC405_INPUT_HALT: | |
358 | /* Level sensitive - active low */ | |
359 | if (level) { | |
360 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
361 | if (loglevel & CPU_LOG_INT) { |
362 | fprintf(logfile, "%s: stop the CPU\n", __func__); | |
363 | } | |
24be5ae3 JM |
364 | #endif |
365 | env->halted = 1; | |
366 | } else { | |
367 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
368 | if (loglevel & CPU_LOG_INT) { |
369 | fprintf(logfile, "%s: restart the CPU\n", __func__); | |
370 | } | |
24be5ae3 JM |
371 | #endif |
372 | env->halted = 0; | |
373 | } | |
374 | break; | |
375 | case PPC405_INPUT_DEBUG: | |
376 | /* Level sensitive - active high */ | |
377 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
378 | if (loglevel & CPU_LOG_INT) { |
379 | fprintf(logfile, "%s: set the external IRQ state to %d\n", | |
380 | __func__, level); | |
381 | } | |
24be5ae3 JM |
382 | #endif |
383 | ppc_set_irq(env, EXCP_40x_DEBUG, level); | |
384 | break; | |
385 | default: | |
386 | /* Unknown pin - do nothing */ | |
387 | #if defined(PPC_DEBUG_IRQ) | |
a496775f JM |
388 | if (loglevel & CPU_LOG_INT) { |
389 | fprintf(logfile, "%s: unknown IRQ pin %d\n", __func__, pin); | |
390 | } | |
24be5ae3 JM |
391 | #endif |
392 | return; | |
393 | } | |
394 | if (level) | |
395 | env->irq_input_state |= 1 << pin; | |
396 | else | |
397 | env->irq_input_state &= ~(1 << pin); | |
398 | } | |
399 | } | |
400 | ||
401 | void ppc405_irq_init (CPUState *env) | |
402 | { | |
24be5ae3 JM |
403 | env->irq_inputs = (void **)qemu_allocate_irqs(&ppc405_set_irq, env, 7); |
404 | } | |
405 | ||
9fddaa0c | 406 | /*****************************************************************************/ |
e9df014c | 407 | /* PowerPC time base and decrementer emulation */ |
9fddaa0c FB |
408 | struct ppc_tb_t { |
409 | /* Time base management */ | |
410 | int64_t tb_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; | |
47103572 | 415 | void *opaque; |
9fddaa0c FB |
416 | }; |
417 | ||
418 | static inline uint64_t cpu_ppc_get_tb (ppc_tb_t *tb_env) | |
419 | { | |
420 | /* TB time in tb periods */ | |
421 | return muldiv64(qemu_get_clock(vm_clock) + tb_env->tb_offset, | |
76a66253 | 422 | tb_env->tb_freq, ticks_per_sec); |
9fddaa0c FB |
423 | } |
424 | ||
425 | uint32_t cpu_ppc_load_tbl (CPUState *env) | |
426 | { | |
427 | ppc_tb_t *tb_env = env->tb_env; | |
428 | uint64_t tb; | |
429 | ||
430 | tb = cpu_ppc_get_tb(tb_env); | |
4b6d0a4c | 431 | #ifdef PPC_DEBUG_TB |
9fddaa0c | 432 | { |
76a66253 JM |
433 | static int last_time; |
434 | int now; | |
435 | now = time(NULL); | |
436 | if (last_time != now) { | |
437 | last_time = now; | |
4b6d0a4c | 438 | if (loglevel != 0) { |
a496775f JM |
439 | fprintf(logfile, "%s: tb=0x%016lx %d %08lx\n", |
440 | __func__, tb, now, tb_env->tb_offset); | |
441 | } | |
76a66253 | 442 | } |
9fddaa0c FB |
443 | } |
444 | #endif | |
445 | ||
446 | return tb & 0xFFFFFFFF; | |
447 | } | |
448 | ||
449 | uint32_t cpu_ppc_load_tbu (CPUState *env) | |
450 | { | |
451 | ppc_tb_t *tb_env = env->tb_env; | |
452 | uint64_t tb; | |
453 | ||
454 | tb = cpu_ppc_get_tb(tb_env); | |
4b6d0a4c JM |
455 | #if defined(PPC_DEBUG_TB) |
456 | if (loglevel != 0) { | |
a496775f JM |
457 | fprintf(logfile, "%s: tb=0x%016lx\n", __func__, tb); |
458 | } | |
9fddaa0c | 459 | #endif |
76a66253 | 460 | |
9fddaa0c FB |
461 | return tb >> 32; |
462 | } | |
463 | ||
464 | static void cpu_ppc_store_tb (ppc_tb_t *tb_env, uint64_t value) | |
465 | { | |
466 | tb_env->tb_offset = muldiv64(value, ticks_per_sec, tb_env->tb_freq) | |
467 | - qemu_get_clock(vm_clock); | |
4b6d0a4c JM |
468 | #ifdef PPC_DEBUG_TB |
469 | if (loglevel != 0) { | |
470 | fprintf(logfile, "%s: tb=0x%016lx offset=%08lx\n", __func__, value, | |
471 | tb_env->tb_offset); | |
a496775f | 472 | } |
9fddaa0c FB |
473 | #endif |
474 | } | |
475 | ||
476 | void cpu_ppc_store_tbu (CPUState *env, uint32_t value) | |
477 | { | |
478 | ppc_tb_t *tb_env = env->tb_env; | |
479 | ||
480 | cpu_ppc_store_tb(tb_env, | |
481 | ((uint64_t)value << 32) | cpu_ppc_load_tbl(env)); | |
482 | } | |
483 | ||
484 | void cpu_ppc_store_tbl (CPUState *env, uint32_t value) | |
485 | { | |
486 | ppc_tb_t *tb_env = env->tb_env; | |
487 | ||
488 | cpu_ppc_store_tb(tb_env, | |
489 | ((uint64_t)cpu_ppc_load_tbu(env) << 32) | value); | |
490 | } | |
491 | ||
492 | uint32_t cpu_ppc_load_decr (CPUState *env) | |
493 | { | |
494 | ppc_tb_t *tb_env = env->tb_env; | |
495 | uint32_t decr; | |
4e588a4d | 496 | int64_t diff; |
9fddaa0c | 497 | |
4e588a4d FB |
498 | diff = tb_env->decr_next - qemu_get_clock(vm_clock); |
499 | if (diff >= 0) | |
500 | decr = muldiv64(diff, tb_env->tb_freq, ticks_per_sec); | |
501 | else | |
502 | decr = -muldiv64(-diff, tb_env->tb_freq, ticks_per_sec); | |
4b6d0a4c JM |
503 | #if defined(PPC_DEBUG_TB) |
504 | if (loglevel != 0) { | |
a496775f JM |
505 | fprintf(logfile, "%s: 0x%08x\n", __func__, decr); |
506 | } | |
9fddaa0c | 507 | #endif |
76a66253 | 508 | |
9fddaa0c FB |
509 | return decr; |
510 | } | |
511 | ||
512 | /* When decrementer expires, | |
513 | * all we need to do is generate or queue a CPU exception | |
514 | */ | |
515 | static inline void cpu_ppc_decr_excp (CPUState *env) | |
516 | { | |
517 | /* Raise it */ | |
4b6d0a4c JM |
518 | #ifdef PPC_DEBUG_TB |
519 | if (loglevel != 0) { | |
a496775f JM |
520 | fprintf(logfile, "raise decrementer exception\n"); |
521 | } | |
9fddaa0c | 522 | #endif |
47103572 | 523 | ppc_set_irq(env, PPC_INTERRUPT_DECR, 1); |
9fddaa0c FB |
524 | } |
525 | ||
526 | static void _cpu_ppc_store_decr (CPUState *env, uint32_t decr, | |
527 | uint32_t value, int is_excp) | |
528 | { | |
529 | ppc_tb_t *tb_env = env->tb_env; | |
530 | uint64_t now, next; | |
531 | ||
4b6d0a4c JM |
532 | #ifdef PPC_DEBUG_TB |
533 | if (loglevel != 0) { | |
a496775f JM |
534 | fprintf(logfile, "%s: 0x%08x => 0x%08x\n", __func__, decr, value); |
535 | } | |
9fddaa0c FB |
536 | #endif |
537 | now = qemu_get_clock(vm_clock); | |
538 | next = now + muldiv64(value, ticks_per_sec, tb_env->tb_freq); | |
539 | if (is_excp) | |
540 | next += tb_env->decr_next - now; | |
541 | if (next == now) | |
76a66253 | 542 | next++; |
9fddaa0c FB |
543 | tb_env->decr_next = next; |
544 | /* Adjust timer */ | |
545 | qemu_mod_timer(tb_env->decr_timer, next); | |
546 | /* If we set a negative value and the decrementer was positive, | |
547 | * raise an exception. | |
548 | */ | |
549 | if ((value & 0x80000000) && !(decr & 0x80000000)) | |
76a66253 | 550 | cpu_ppc_decr_excp(env); |
9fddaa0c FB |
551 | } |
552 | ||
553 | void cpu_ppc_store_decr (CPUState *env, uint32_t value) | |
554 | { | |
555 | _cpu_ppc_store_decr(env, cpu_ppc_load_decr(env), value, 0); | |
556 | } | |
557 | ||
558 | static void cpu_ppc_decr_cb (void *opaque) | |
559 | { | |
560 | _cpu_ppc_store_decr(opaque, 0x00000000, 0xFFFFFFFF, 1); | |
561 | } | |
562 | ||
8ecc7913 JM |
563 | static void cpu_ppc_set_tb_clk (void *opaque, uint32_t freq) |
564 | { | |
565 | CPUState *env = opaque; | |
566 | ppc_tb_t *tb_env = env->tb_env; | |
567 | ||
568 | tb_env->tb_freq = freq; | |
569 | /* There is a bug in Linux 2.4 kernels: | |
570 | * if a decrementer exception is pending when it enables msr_ee at startup, | |
571 | * it's not ready to handle it... | |
572 | */ | |
573 | _cpu_ppc_store_decr(env, 0xFFFFFFFF, 0xFFFFFFFF, 0); | |
574 | } | |
575 | ||
9fddaa0c | 576 | /* Set up (once) timebase frequency (in Hz) */ |
8ecc7913 | 577 | clk_setup_cb cpu_ppc_tb_init (CPUState *env, uint32_t freq) |
9fddaa0c FB |
578 | { |
579 | ppc_tb_t *tb_env; | |
580 | ||
581 | tb_env = qemu_mallocz(sizeof(ppc_tb_t)); | |
582 | if (tb_env == NULL) | |
583 | return NULL; | |
584 | env->tb_env = tb_env; | |
8ecc7913 JM |
585 | /* Create new timer */ |
586 | tb_env->decr_timer = qemu_new_timer(vm_clock, &cpu_ppc_decr_cb, env); | |
587 | cpu_ppc_set_tb_clk(env, freq); | |
9fddaa0c | 588 | |
8ecc7913 | 589 | return &cpu_ppc_set_tb_clk; |
9fddaa0c FB |
590 | } |
591 | ||
76a66253 | 592 | /* Specific helpers for POWER & PowerPC 601 RTC */ |
8ecc7913 | 593 | clk_setup_cb cpu_ppc601_rtc_init (CPUState *env) |
76a66253 JM |
594 | { |
595 | return cpu_ppc_tb_init(env, 7812500); | |
596 | } | |
597 | ||
598 | void cpu_ppc601_store_rtcu (CPUState *env, uint32_t value) | |
599 | __attribute__ (( alias ("cpu_ppc_store_tbu") )); | |
600 | ||
601 | uint32_t cpu_ppc601_load_rtcu (CPUState *env) | |
602 | __attribute__ (( alias ("cpu_ppc_load_tbu") )); | |
603 | ||
604 | void cpu_ppc601_store_rtcl (CPUState *env, uint32_t value) | |
605 | { | |
606 | cpu_ppc_store_tbl(env, value & 0x3FFFFF80); | |
607 | } | |
608 | ||
609 | uint32_t cpu_ppc601_load_rtcl (CPUState *env) | |
610 | { | |
611 | return cpu_ppc_load_tbl(env) & 0x3FFFFF80; | |
612 | } | |
613 | ||
636aaad7 | 614 | /*****************************************************************************/ |
76a66253 | 615 | /* Embedded PowerPC timers */ |
636aaad7 JM |
616 | |
617 | /* PIT, FIT & WDT */ | |
618 | typedef struct ppcemb_timer_t ppcemb_timer_t; | |
619 | struct ppcemb_timer_t { | |
620 | uint64_t pit_reload; /* PIT auto-reload value */ | |
621 | uint64_t fit_next; /* Tick for next FIT interrupt */ | |
622 | struct QEMUTimer *fit_timer; | |
623 | uint64_t wdt_next; /* Tick for next WDT interrupt */ | |
624 | struct QEMUTimer *wdt_timer; | |
625 | }; | |
3b46e624 | 626 | |
636aaad7 JM |
627 | /* Fixed interval timer */ |
628 | static void cpu_4xx_fit_cb (void *opaque) | |
629 | { | |
630 | CPUState *env; | |
631 | ppc_tb_t *tb_env; | |
632 | ppcemb_timer_t *ppcemb_timer; | |
633 | uint64_t now, next; | |
634 | ||
635 | env = opaque; | |
636 | tb_env = env->tb_env; | |
637 | ppcemb_timer = tb_env->opaque; | |
638 | now = qemu_get_clock(vm_clock); | |
639 | switch ((env->spr[SPR_40x_TCR] >> 24) & 0x3) { | |
640 | case 0: | |
641 | next = 1 << 9; | |
642 | break; | |
643 | case 1: | |
644 | next = 1 << 13; | |
645 | break; | |
646 | case 2: | |
647 | next = 1 << 17; | |
648 | break; | |
649 | case 3: | |
650 | next = 1 << 21; | |
651 | break; | |
652 | default: | |
653 | /* Cannot occur, but makes gcc happy */ | |
654 | return; | |
655 | } | |
656 | next = now + muldiv64(next, ticks_per_sec, tb_env->tb_freq); | |
657 | if (next == now) | |
658 | next++; | |
659 | qemu_mod_timer(ppcemb_timer->fit_timer, next); | |
636aaad7 JM |
660 | env->spr[SPR_40x_TSR] |= 1 << 26; |
661 | if ((env->spr[SPR_40x_TCR] >> 23) & 0x1) | |
662 | ppc_set_irq(env, PPC_INTERRUPT_FIT, 1); | |
4b6d0a4c JM |
663 | #ifdef PPC_DEBUG_TB |
664 | if (loglevel != 0) { | |
e96efcfc JM |
665 | fprintf(logfile, "%s: ir %d TCR " ADDRX " TSR " ADDRX "\n", __func__, |
666 | (int)((env->spr[SPR_40x_TCR] >> 23) & 0x1), | |
636aaad7 JM |
667 | env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR]); |
668 | } | |
4b6d0a4c | 669 | #endif |
636aaad7 JM |
670 | } |
671 | ||
672 | /* Programmable interval timer */ | |
4b6d0a4c | 673 | static void start_stop_pit (CPUState *env, ppc_tb_t *tb_env, int is_excp) |
76a66253 | 674 | { |
636aaad7 JM |
675 | ppcemb_timer_t *ppcemb_timer; |
676 | uint64_t now, next; | |
677 | ||
636aaad7 | 678 | ppcemb_timer = tb_env->opaque; |
4b6d0a4c JM |
679 | if (ppcemb_timer->pit_reload <= 1 || |
680 | !((env->spr[SPR_40x_TCR] >> 26) & 0x1) || | |
681 | (is_excp && !((env->spr[SPR_40x_TCR] >> 22) & 0x1))) { | |
682 | /* Stop PIT */ | |
683 | #ifdef PPC_DEBUG_TB | |
684 | if (loglevel != 0) { | |
685 | fprintf(logfile, "%s: stop PIT\n", __func__); | |
686 | } | |
687 | #endif | |
688 | qemu_del_timer(tb_env->decr_timer); | |
689 | } else { | |
690 | #ifdef PPC_DEBUG_TB | |
691 | if (loglevel != 0) { | |
692 | fprintf(logfile, "%s: start PIT 0x" REGX "\n", | |
693 | __func__, ppcemb_timer->pit_reload); | |
694 | } | |
695 | #endif | |
696 | now = qemu_get_clock(vm_clock); | |
636aaad7 JM |
697 | next = now + muldiv64(ppcemb_timer->pit_reload, |
698 | ticks_per_sec, tb_env->tb_freq); | |
4b6d0a4c JM |
699 | if (is_excp) |
700 | next += tb_env->decr_next - now; | |
636aaad7 JM |
701 | if (next == now) |
702 | next++; | |
703 | qemu_mod_timer(tb_env->decr_timer, next); | |
704 | tb_env->decr_next = next; | |
705 | } | |
4b6d0a4c JM |
706 | } |
707 | ||
708 | static void cpu_4xx_pit_cb (void *opaque) | |
709 | { | |
710 | CPUState *env; | |
711 | ppc_tb_t *tb_env; | |
712 | ppcemb_timer_t *ppcemb_timer; | |
713 | ||
714 | env = opaque; | |
715 | tb_env = env->tb_env; | |
716 | ppcemb_timer = tb_env->opaque; | |
636aaad7 JM |
717 | env->spr[SPR_40x_TSR] |= 1 << 27; |
718 | if ((env->spr[SPR_40x_TCR] >> 26) & 0x1) | |
719 | ppc_set_irq(env, PPC_INTERRUPT_PIT, 1); | |
4b6d0a4c JM |
720 | start_stop_pit(env, tb_env, 1); |
721 | #ifdef PPC_DEBUG_TB | |
722 | if (loglevel != 0) { | |
e96efcfc JM |
723 | fprintf(logfile, "%s: ar %d ir %d TCR " ADDRX " TSR " ADDRX " " |
724 | "%016" PRIx64 "\n", __func__, | |
725 | (int)((env->spr[SPR_40x_TCR] >> 22) & 0x1), | |
726 | (int)((env->spr[SPR_40x_TCR] >> 26) & 0x1), | |
636aaad7 JM |
727 | env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR], |
728 | ppcemb_timer->pit_reload); | |
729 | } | |
4b6d0a4c | 730 | #endif |
636aaad7 JM |
731 | } |
732 | ||
733 | /* Watchdog timer */ | |
734 | static void cpu_4xx_wdt_cb (void *opaque) | |
735 | { | |
736 | CPUState *env; | |
737 | ppc_tb_t *tb_env; | |
738 | ppcemb_timer_t *ppcemb_timer; | |
739 | uint64_t now, next; | |
740 | ||
741 | env = opaque; | |
742 | tb_env = env->tb_env; | |
743 | ppcemb_timer = tb_env->opaque; | |
744 | now = qemu_get_clock(vm_clock); | |
745 | switch ((env->spr[SPR_40x_TCR] >> 30) & 0x3) { | |
746 | case 0: | |
747 | next = 1 << 17; | |
748 | break; | |
749 | case 1: | |
750 | next = 1 << 21; | |
751 | break; | |
752 | case 2: | |
753 | next = 1 << 25; | |
754 | break; | |
755 | case 3: | |
756 | next = 1 << 29; | |
757 | break; | |
758 | default: | |
759 | /* Cannot occur, but makes gcc happy */ | |
760 | return; | |
761 | } | |
762 | next = now + muldiv64(next, ticks_per_sec, tb_env->tb_freq); | |
763 | if (next == now) | |
764 | next++; | |
4b6d0a4c JM |
765 | #ifdef PPC_DEBUG_TB |
766 | if (loglevel != 0) { | |
e96efcfc | 767 | fprintf(logfile, "%s: TCR " ADDRX " TSR " ADDRX "\n", __func__, |
636aaad7 JM |
768 | env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR]); |
769 | } | |
4b6d0a4c | 770 | #endif |
636aaad7 JM |
771 | switch ((env->spr[SPR_40x_TSR] >> 30) & 0x3) { |
772 | case 0x0: | |
773 | case 0x1: | |
774 | qemu_mod_timer(ppcemb_timer->wdt_timer, next); | |
775 | ppcemb_timer->wdt_next = next; | |
776 | env->spr[SPR_40x_TSR] |= 1 << 31; | |
777 | break; | |
778 | case 0x2: | |
779 | qemu_mod_timer(ppcemb_timer->wdt_timer, next); | |
780 | ppcemb_timer->wdt_next = next; | |
781 | env->spr[SPR_40x_TSR] |= 1 << 30; | |
782 | if ((env->spr[SPR_40x_TCR] >> 27) & 0x1) | |
783 | ppc_set_irq(env, PPC_INTERRUPT_WDT, 1); | |
784 | break; | |
785 | case 0x3: | |
786 | env->spr[SPR_40x_TSR] &= ~0x30000000; | |
787 | env->spr[SPR_40x_TSR] |= env->spr[SPR_40x_TCR] & 0x30000000; | |
788 | switch ((env->spr[SPR_40x_TCR] >> 28) & 0x3) { | |
789 | case 0x0: | |
790 | /* No reset */ | |
791 | break; | |
792 | case 0x1: /* Core reset */ | |
8ecc7913 JM |
793 | ppc40x_core_reset(env); |
794 | break; | |
636aaad7 | 795 | case 0x2: /* Chip reset */ |
8ecc7913 JM |
796 | ppc40x_chip_reset(env); |
797 | break; | |
636aaad7 | 798 | case 0x3: /* System reset */ |
8ecc7913 JM |
799 | ppc40x_system_reset(env); |
800 | break; | |
636aaad7 JM |
801 | } |
802 | } | |
76a66253 JM |
803 | } |
804 | ||
805 | void store_40x_pit (CPUState *env, target_ulong val) | |
806 | { | |
636aaad7 JM |
807 | ppc_tb_t *tb_env; |
808 | ppcemb_timer_t *ppcemb_timer; | |
636aaad7 JM |
809 | |
810 | tb_env = env->tb_env; | |
811 | ppcemb_timer = tb_env->opaque; | |
4b6d0a4c JM |
812 | #ifdef PPC_DEBUG_TB |
813 | if (loglevel != 0) { | |
636aaad7 | 814 | fprintf(logfile, "%s %p %p\n", __func__, tb_env, ppcemb_timer); |
a496775f | 815 | } |
4b6d0a4c | 816 | #endif |
636aaad7 | 817 | ppcemb_timer->pit_reload = val; |
4b6d0a4c | 818 | start_stop_pit(env, tb_env, 0); |
76a66253 JM |
819 | } |
820 | ||
636aaad7 | 821 | target_ulong load_40x_pit (CPUState *env) |
76a66253 | 822 | { |
636aaad7 | 823 | return cpu_ppc_load_decr(env); |
76a66253 JM |
824 | } |
825 | ||
826 | void store_booke_tsr (CPUState *env, target_ulong val) | |
827 | { | |
4b6d0a4c JM |
828 | #ifdef PPC_DEBUG_TB |
829 | if (loglevel != 0) { | |
830 | fprintf(logfile, "%s: val=" ADDRX "\n", __func__, val); | |
831 | } | |
832 | #endif | |
833 | env->spr[SPR_40x_TSR] &= ~(val & 0xFC000000); | |
834 | if (val & 0x80000000) | |
835 | ppc_set_irq(env, PPC_INTERRUPT_PIT, 0); | |
636aaad7 JM |
836 | } |
837 | ||
838 | void store_booke_tcr (CPUState *env, target_ulong val) | |
839 | { | |
4b6d0a4c JM |
840 | ppc_tb_t *tb_env; |
841 | ||
842 | tb_env = env->tb_env; | |
843 | #ifdef PPC_DEBUG_TB | |
844 | if (loglevel != 0) { | |
845 | fprintf(logfile, "%s: val=" ADDRX "\n", __func__, val); | |
846 | } | |
847 | #endif | |
848 | env->spr[SPR_40x_TCR] = val & 0xFFC00000; | |
849 | start_stop_pit(env, tb_env, 1); | |
8ecc7913 | 850 | cpu_4xx_wdt_cb(env); |
636aaad7 JM |
851 | } |
852 | ||
4b6d0a4c JM |
853 | static void ppc_emb_set_tb_clk (void *opaque, uint32_t freq) |
854 | { | |
855 | CPUState *env = opaque; | |
856 | ppc_tb_t *tb_env = env->tb_env; | |
857 | ||
858 | #ifdef PPC_DEBUG_TB | |
859 | if (loglevel != 0) { | |
860 | fprintf(logfile, "%s set new frequency to %u\n", __func__, freq); | |
861 | } | |
862 | #endif | |
863 | tb_env->tb_freq = freq; | |
864 | /* XXX: we should also update all timers */ | |
865 | } | |
866 | ||
8ecc7913 | 867 | clk_setup_cb ppc_emb_timers_init (CPUState *env, uint32_t freq) |
636aaad7 JM |
868 | { |
869 | ppc_tb_t *tb_env; | |
870 | ppcemb_timer_t *ppcemb_timer; | |
871 | ||
8ecc7913 | 872 | tb_env = qemu_mallocz(sizeof(ppc_tb_t)); |
4b6d0a4c | 873 | if (tb_env == NULL) { |
8ecc7913 | 874 | return NULL; |
4b6d0a4c | 875 | } |
8ecc7913 | 876 | env->tb_env = tb_env; |
636aaad7 | 877 | ppcemb_timer = qemu_mallocz(sizeof(ppcemb_timer_t)); |
8ecc7913 | 878 | tb_env->tb_freq = freq; |
636aaad7 | 879 | tb_env->opaque = ppcemb_timer; |
4b6d0a4c JM |
880 | #ifdef PPC_DEBUG_TB |
881 | if (loglevel != 0) { | |
882 | fprintf(logfile, "%s %p %p %p\n", __func__, tb_env, ppcemb_timer, | |
883 | &ppc_emb_set_tb_clk); | |
8ecc7913 | 884 | } |
4b6d0a4c | 885 | #endif |
636aaad7 JM |
886 | if (ppcemb_timer != NULL) { |
887 | /* We use decr timer for PIT */ | |
888 | tb_env->decr_timer = qemu_new_timer(vm_clock, &cpu_4xx_pit_cb, env); | |
889 | ppcemb_timer->fit_timer = | |
890 | qemu_new_timer(vm_clock, &cpu_4xx_fit_cb, env); | |
891 | ppcemb_timer->wdt_timer = | |
892 | qemu_new_timer(vm_clock, &cpu_4xx_wdt_cb, env); | |
893 | } | |
8ecc7913 | 894 | |
4b6d0a4c | 895 | return &ppc_emb_set_tb_clk; |
76a66253 JM |
896 | } |
897 | ||
2e719ba3 JM |
898 | /*****************************************************************************/ |
899 | /* Embedded PowerPC Device Control Registers */ | |
900 | typedef struct ppc_dcrn_t ppc_dcrn_t; | |
901 | struct ppc_dcrn_t { | |
902 | dcr_read_cb dcr_read; | |
903 | dcr_write_cb dcr_write; | |
904 | void *opaque; | |
905 | }; | |
906 | ||
907 | #define DCRN_NB 1024 | |
908 | struct ppc_dcr_t { | |
909 | ppc_dcrn_t dcrn[DCRN_NB]; | |
910 | int (*read_error)(int dcrn); | |
911 | int (*write_error)(int dcrn); | |
912 | }; | |
913 | ||
914 | int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, target_ulong *valp) | |
915 | { | |
916 | ppc_dcrn_t *dcr; | |
917 | ||
918 | if (dcrn < 0 || dcrn >= DCRN_NB) | |
919 | goto error; | |
920 | dcr = &dcr_env->dcrn[dcrn]; | |
921 | if (dcr->dcr_read == NULL) | |
922 | goto error; | |
923 | *valp = (*dcr->dcr_read)(dcr->opaque, dcrn); | |
924 | ||
925 | return 0; | |
926 | ||
927 | error: | |
928 | if (dcr_env->read_error != NULL) | |
929 | return (*dcr_env->read_error)(dcrn); | |
930 | ||
931 | return -1; | |
932 | } | |
933 | ||
934 | int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, target_ulong val) | |
935 | { | |
936 | ppc_dcrn_t *dcr; | |
937 | ||
938 | if (dcrn < 0 || dcrn >= DCRN_NB) | |
939 | goto error; | |
940 | dcr = &dcr_env->dcrn[dcrn]; | |
941 | if (dcr->dcr_write == NULL) | |
942 | goto error; | |
943 | (*dcr->dcr_write)(dcr->opaque, dcrn, val); | |
944 | ||
945 | return 0; | |
946 | ||
947 | error: | |
948 | if (dcr_env->write_error != NULL) | |
949 | return (*dcr_env->write_error)(dcrn); | |
950 | ||
951 | return -1; | |
952 | } | |
953 | ||
954 | int ppc_dcr_register (CPUState *env, int dcrn, void *opaque, | |
955 | dcr_read_cb dcr_read, dcr_write_cb dcr_write) | |
956 | { | |
957 | ppc_dcr_t *dcr_env; | |
958 | ppc_dcrn_t *dcr; | |
959 | ||
960 | dcr_env = env->dcr_env; | |
961 | if (dcr_env == NULL) | |
962 | return -1; | |
963 | if (dcrn < 0 || dcrn >= DCRN_NB) | |
964 | return -1; | |
965 | dcr = &dcr_env->dcrn[dcrn]; | |
966 | if (dcr->opaque != NULL || | |
967 | dcr->dcr_read != NULL || | |
968 | dcr->dcr_write != NULL) | |
969 | return -1; | |
970 | dcr->opaque = opaque; | |
971 | dcr->dcr_read = dcr_read; | |
972 | dcr->dcr_write = dcr_write; | |
973 | ||
974 | return 0; | |
975 | } | |
976 | ||
977 | int ppc_dcr_init (CPUState *env, int (*read_error)(int dcrn), | |
978 | int (*write_error)(int dcrn)) | |
979 | { | |
980 | ppc_dcr_t *dcr_env; | |
981 | ||
982 | dcr_env = qemu_mallocz(sizeof(ppc_dcr_t)); | |
983 | if (dcr_env == NULL) | |
984 | return -1; | |
985 | dcr_env->read_error = read_error; | |
986 | dcr_env->write_error = write_error; | |
987 | env->dcr_env = dcr_env; | |
988 | ||
989 | return 0; | |
990 | } | |
991 | ||
992 | ||
9fddaa0c FB |
993 | #if 0 |
994 | /*****************************************************************************/ | |
995 | /* Handle system reset (for now, just stop emulation) */ | |
996 | void cpu_ppc_reset (CPUState *env) | |
997 | { | |
998 | printf("Reset asked... Stop emulation\n"); | |
999 | abort(); | |
1000 | } | |
1001 | #endif | |
1002 | ||
64201201 FB |
1003 | /*****************************************************************************/ |
1004 | /* Debug port */ | |
fd0bbb12 | 1005 | void PPC_debug_write (void *opaque, uint32_t addr, uint32_t val) |
64201201 FB |
1006 | { |
1007 | addr &= 0xF; | |
1008 | switch (addr) { | |
1009 | case 0: | |
1010 | printf("%c", val); | |
1011 | break; | |
1012 | case 1: | |
1013 | printf("\n"); | |
1014 | fflush(stdout); | |
1015 | break; | |
1016 | case 2: | |
1017 | printf("Set loglevel to %04x\n", val); | |
fd0bbb12 | 1018 | cpu_set_log(val | 0x100); |
64201201 FB |
1019 | break; |
1020 | } | |
1021 | } | |
1022 | ||
1023 | /*****************************************************************************/ | |
1024 | /* NVRAM helpers */ | |
1025 | void NVRAM_set_byte (m48t59_t *nvram, uint32_t addr, uint8_t value) | |
1026 | { | |
819385c5 | 1027 | m48t59_write(nvram, addr, value); |
64201201 FB |
1028 | } |
1029 | ||
1030 | uint8_t NVRAM_get_byte (m48t59_t *nvram, uint32_t addr) | |
1031 | { | |
819385c5 | 1032 | return m48t59_read(nvram, addr); |
64201201 FB |
1033 | } |
1034 | ||
1035 | void NVRAM_set_word (m48t59_t *nvram, uint32_t addr, uint16_t value) | |
1036 | { | |
819385c5 FB |
1037 | m48t59_write(nvram, addr, value >> 8); |
1038 | m48t59_write(nvram, addr + 1, value & 0xFF); | |
64201201 FB |
1039 | } |
1040 | ||
1041 | uint16_t NVRAM_get_word (m48t59_t *nvram, uint32_t addr) | |
1042 | { | |
1043 | uint16_t tmp; | |
1044 | ||
819385c5 FB |
1045 | tmp = m48t59_read(nvram, addr) << 8; |
1046 | tmp |= m48t59_read(nvram, addr + 1); | |
64201201 FB |
1047 | return tmp; |
1048 | } | |
1049 | ||
1050 | void NVRAM_set_lword (m48t59_t *nvram, uint32_t addr, uint32_t value) | |
1051 | { | |
819385c5 FB |
1052 | m48t59_write(nvram, addr, value >> 24); |
1053 | m48t59_write(nvram, addr + 1, (value >> 16) & 0xFF); | |
1054 | m48t59_write(nvram, addr + 2, (value >> 8) & 0xFF); | |
1055 | m48t59_write(nvram, addr + 3, value & 0xFF); | |
64201201 FB |
1056 | } |
1057 | ||
1058 | uint32_t NVRAM_get_lword (m48t59_t *nvram, uint32_t addr) | |
1059 | { | |
1060 | uint32_t tmp; | |
1061 | ||
819385c5 FB |
1062 | tmp = m48t59_read(nvram, addr) << 24; |
1063 | tmp |= m48t59_read(nvram, addr + 1) << 16; | |
1064 | tmp |= m48t59_read(nvram, addr + 2) << 8; | |
1065 | tmp |= m48t59_read(nvram, addr + 3); | |
76a66253 | 1066 | |
64201201 FB |
1067 | return tmp; |
1068 | } | |
1069 | ||
1070 | void NVRAM_set_string (m48t59_t *nvram, uint32_t addr, | |
1071 | const unsigned char *str, uint32_t max) | |
1072 | { | |
1073 | int i; | |
1074 | ||
1075 | for (i = 0; i < max && str[i] != '\0'; i++) { | |
819385c5 | 1076 | m48t59_write(nvram, addr + i, str[i]); |
64201201 | 1077 | } |
819385c5 | 1078 | m48t59_write(nvram, addr + max - 1, '\0'); |
64201201 FB |
1079 | } |
1080 | ||
1081 | int NVRAM_get_string (m48t59_t *nvram, uint8_t *dst, uint16_t addr, int max) | |
1082 | { | |
1083 | int i; | |
1084 | ||
1085 | memset(dst, 0, max); | |
1086 | for (i = 0; i < max; i++) { | |
1087 | dst[i] = NVRAM_get_byte(nvram, addr + i); | |
1088 | if (dst[i] == '\0') | |
1089 | break; | |
1090 | } | |
1091 | ||
1092 | return i; | |
1093 | } | |
1094 | ||
1095 | static uint16_t NVRAM_crc_update (uint16_t prev, uint16_t value) | |
1096 | { | |
1097 | uint16_t tmp; | |
1098 | uint16_t pd, pd1, pd2; | |
1099 | ||
1100 | tmp = prev >> 8; | |
1101 | pd = prev ^ value; | |
1102 | pd1 = pd & 0x000F; | |
1103 | pd2 = ((pd >> 4) & 0x000F) ^ pd1; | |
1104 | tmp ^= (pd1 << 3) | (pd1 << 8); | |
1105 | tmp ^= pd2 | (pd2 << 7) | (pd2 << 12); | |
1106 | ||
1107 | return tmp; | |
1108 | } | |
1109 | ||
1110 | uint16_t NVRAM_compute_crc (m48t59_t *nvram, uint32_t start, uint32_t count) | |
1111 | { | |
1112 | uint32_t i; | |
1113 | uint16_t crc = 0xFFFF; | |
1114 | int odd; | |
1115 | ||
1116 | odd = count & 1; | |
1117 | count &= ~1; | |
1118 | for (i = 0; i != count; i++) { | |
76a66253 | 1119 | crc = NVRAM_crc_update(crc, NVRAM_get_word(nvram, start + i)); |
64201201 FB |
1120 | } |
1121 | if (odd) { | |
76a66253 | 1122 | crc = NVRAM_crc_update(crc, NVRAM_get_byte(nvram, start + i) << 8); |
64201201 FB |
1123 | } |
1124 | ||
1125 | return crc; | |
1126 | } | |
1127 | ||
fd0bbb12 FB |
1128 | #define CMDLINE_ADDR 0x017ff000 |
1129 | ||
64201201 FB |
1130 | int PPC_NVRAM_set_params (m48t59_t *nvram, uint16_t NVRAM_size, |
1131 | const unsigned char *arch, | |
1132 | uint32_t RAM_size, int boot_device, | |
1133 | uint32_t kernel_image, uint32_t kernel_size, | |
fd0bbb12 | 1134 | const char *cmdline, |
64201201 | 1135 | uint32_t initrd_image, uint32_t initrd_size, |
fd0bbb12 FB |
1136 | uint32_t NVRAM_image, |
1137 | int width, int height, int depth) | |
64201201 FB |
1138 | { |
1139 | uint16_t crc; | |
1140 | ||
1141 | /* Set parameters for Open Hack'Ware BIOS */ | |
1142 | NVRAM_set_string(nvram, 0x00, "QEMU_BIOS", 16); | |
1143 | NVRAM_set_lword(nvram, 0x10, 0x00000002); /* structure v2 */ | |
1144 | NVRAM_set_word(nvram, 0x14, NVRAM_size); | |
1145 | NVRAM_set_string(nvram, 0x20, arch, 16); | |
1146 | NVRAM_set_lword(nvram, 0x30, RAM_size); | |
1147 | NVRAM_set_byte(nvram, 0x34, boot_device); | |
1148 | NVRAM_set_lword(nvram, 0x38, kernel_image); | |
1149 | NVRAM_set_lword(nvram, 0x3C, kernel_size); | |
fd0bbb12 FB |
1150 | if (cmdline) { |
1151 | /* XXX: put the cmdline in NVRAM too ? */ | |
1152 | strcpy(phys_ram_base + CMDLINE_ADDR, cmdline); | |
1153 | NVRAM_set_lword(nvram, 0x40, CMDLINE_ADDR); | |
1154 | NVRAM_set_lword(nvram, 0x44, strlen(cmdline)); | |
1155 | } else { | |
1156 | NVRAM_set_lword(nvram, 0x40, 0); | |
1157 | NVRAM_set_lword(nvram, 0x44, 0); | |
1158 | } | |
64201201 FB |
1159 | NVRAM_set_lword(nvram, 0x48, initrd_image); |
1160 | NVRAM_set_lword(nvram, 0x4C, initrd_size); | |
1161 | NVRAM_set_lword(nvram, 0x50, NVRAM_image); | |
fd0bbb12 FB |
1162 | |
1163 | NVRAM_set_word(nvram, 0x54, width); | |
1164 | NVRAM_set_word(nvram, 0x56, height); | |
1165 | NVRAM_set_word(nvram, 0x58, depth); | |
1166 | crc = NVRAM_compute_crc(nvram, 0x00, 0xF8); | |
1167 | NVRAM_set_word(nvram, 0xFC, crc); | |
64201201 FB |
1168 | |
1169 | return 0; | |
a541f297 | 1170 | } |