]> Git Repo - qemu.git/blame - hw/slavio_misc.c
Rearrange slavio_misc code to prepare for different addresses
[qemu.git] / hw / slavio_misc.c
CommitLineData
3475187d
FB
1/*
2 * QEMU Sparc SLAVIO aux io port emulation
5fafdf24 3 *
3475187d 4 * Copyright (c) 2005 Fabrice Bellard
5fafdf24 5 *
3475187d
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 */
87ecb68b
PB
24#include "hw.h"
25#include "sun4m.h"
26#include "sysemu.h"
27
3475187d
FB
28/* debug misc */
29//#define DEBUG_MISC
30
31/*
32 * This is the auxio port, chip control and system control part of
33 * chip STP2001 (Slave I/O), also produced as NCR89C105. See
34 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C105.txt
35 *
36 * This also includes the PMC CPU idle controller.
37 */
38
39#ifdef DEBUG_MISC
40#define MISC_DPRINTF(fmt, args...) \
41do { printf("MISC: " fmt , ##args); } while (0)
42#else
43#define MISC_DPRINTF(fmt, args...)
44#endif
45
46typedef struct MiscState {
d537cf6c 47 qemu_irq irq;
3475187d
FB
48 uint8_t config;
49 uint8_t aux1, aux2;
bfa30a38
BS
50 uint8_t diag, mctrl;
51 uint32_t sysctrl;
6a3b9cc9 52 uint16_t leds;
0019ad53 53 CPUState *env;
3475187d
FB
54} MiscState;
55
5aca8c3b 56#define MISC_SIZE 1
bfa30a38
BS
57#define SYSCTRL_MAXADDR 3
58#define SYSCTRL_SIZE (SYSCTRL_MAXADDR + 1)
d5296cb5 59#define LED_MAXADDR 1
6a3b9cc9 60#define LED_SIZE (LED_MAXADDR + 1)
3475187d 61
7debeb82
BS
62#define MISC_MASK 0x0fff0000
63#define MISC_LEDS 0x01600000
64#define MISC_CFG 0x01800000
7debeb82
BS
65#define MISC_DIAG 0x01a00000
66#define MISC_MDM 0x01b00000
67#define MISC_SYS 0x01f00000
7debeb82
BS
68
69#define AUX2_PWROFF 0x01
70#define AUX2_PWRINTCLR 0x02
71#define AUX2_PWRFAIL 0x20
72
73#define CFG_PWRINTEN 0x08
74
75#define SYS_RESET 0x01
76#define SYS_RESETSTAT 0x02
77
3475187d
FB
78static void slavio_misc_update_irq(void *opaque)
79{
80 MiscState *s = opaque;
81
7debeb82 82 if ((s->aux2 & AUX2_PWRFAIL) && (s->config & CFG_PWRINTEN)) {
d537cf6c
PB
83 MISC_DPRINTF("Raise IRQ\n");
84 qemu_irq_raise(s->irq);
3475187d 85 } else {
d537cf6c
PB
86 MISC_DPRINTF("Lower IRQ\n");
87 qemu_irq_lower(s->irq);
3475187d
FB
88 }
89}
90
91static void slavio_misc_reset(void *opaque)
92{
93 MiscState *s = opaque;
94
4e3b1ea1 95 // Diagnostic and system control registers not cleared in reset
3475187d
FB
96 s->config = s->aux1 = s->aux2 = s->mctrl = 0;
97}
98
99void slavio_set_power_fail(void *opaque, int power_failing)
100{
101 MiscState *s = opaque;
102
103 MISC_DPRINTF("Power fail: %d, config: %d\n", power_failing, s->config);
7debeb82
BS
104 if (power_failing && (s->config & CFG_PWRINTEN)) {
105 s->aux2 |= AUX2_PWRFAIL;
3475187d 106 } else {
7debeb82 107 s->aux2 &= ~AUX2_PWRFAIL;
3475187d
FB
108 }
109 slavio_misc_update_irq(s);
110}
111
bfa30a38
BS
112static void slavio_misc_mem_writeb(void *opaque, target_phys_addr_t addr,
113 uint32_t val)
3475187d
FB
114{
115 MiscState *s = opaque;
116
7debeb82
BS
117 switch (addr & MISC_MASK) {
118 case MISC_CFG:
f930d07e
BS
119 MISC_DPRINTF("Write config %2.2x\n", val & 0xff);
120 s->config = val & 0xff;
121 slavio_misc_update_irq(s);
122 break;
7debeb82 123 case MISC_DIAG:
f930d07e
BS
124 MISC_DPRINTF("Write diag %2.2x\n", val & 0xff);
125 s->diag = val & 0xff;
126 break;
7debeb82 127 case MISC_MDM:
f930d07e
BS
128 MISC_DPRINTF("Write modem control %2.2x\n", val & 0xff);
129 s->mctrl = val & 0xff;
130 break;
df33e639 131 default:
f930d07e 132 break;
3475187d
FB
133 }
134}
135
136static uint32_t slavio_misc_mem_readb(void *opaque, target_phys_addr_t addr)
137{
138 MiscState *s = opaque;
139 uint32_t ret = 0;
140
7debeb82
BS
141 switch (addr & MISC_MASK) {
142 case MISC_CFG:
f930d07e
BS
143 ret = s->config;
144 MISC_DPRINTF("Read config %2.2x\n", ret);
145 break;
7debeb82 146 case MISC_DIAG:
f930d07e
BS
147 ret = s->diag;
148 MISC_DPRINTF("Read diag %2.2x\n", ret);
149 break;
7debeb82 150 case MISC_MDM:
f930d07e
BS
151 ret = s->mctrl;
152 MISC_DPRINTF("Read modem control %2.2x\n", ret);
153 break;
df33e639 154 default:
f930d07e 155 break;
3475187d
FB
156 }
157 return ret;
158}
159
160static CPUReadMemoryFunc *slavio_misc_mem_read[3] = {
161 slavio_misc_mem_readb,
7c560456
BS
162 NULL,
163 NULL,
3475187d
FB
164};
165
166static CPUWriteMemoryFunc *slavio_misc_mem_write[3] = {
167 slavio_misc_mem_writeb,
7c560456
BS
168 NULL,
169 NULL,
3475187d
FB
170};
171
0019ad53
BS
172static void slavio_aux1_mem_writeb(void *opaque, target_phys_addr_t addr,
173 uint32_t val)
174{
175 MiscState *s = opaque;
176
177 MISC_DPRINTF("Write aux1 %2.2x\n", val & 0xff);
178 s->aux1 = val & 0xff;
179}
180
181static uint32_t slavio_aux1_mem_readb(void *opaque, target_phys_addr_t addr)
182{
183 MiscState *s = opaque;
184 uint32_t ret = 0;
185
186 ret = s->aux1;
187 MISC_DPRINTF("Read aux1 %2.2x\n", ret);
188
189 return ret;
190}
191
192static CPUReadMemoryFunc *slavio_aux1_mem_read[3] = {
193 slavio_aux1_mem_readb,
194 NULL,
195 NULL,
196};
197
198static CPUWriteMemoryFunc *slavio_aux1_mem_write[3] = {
199 slavio_aux1_mem_writeb,
200 NULL,
201 NULL,
202};
203
204static void slavio_aux2_mem_writeb(void *opaque, target_phys_addr_t addr,
205 uint32_t val)
206{
207 MiscState *s = opaque;
208
209 val &= AUX2_PWRINTCLR | AUX2_PWROFF;
210 MISC_DPRINTF("Write aux2 %2.2x\n", val);
211 val |= s->aux2 & AUX2_PWRFAIL;
212 if (val & AUX2_PWRINTCLR) // Clear Power Fail int
213 val &= AUX2_PWROFF;
214 s->aux2 = val;
215 if (val & AUX2_PWROFF)
216 qemu_system_shutdown_request();
217 slavio_misc_update_irq(s);
218}
219
220static uint32_t slavio_aux2_mem_readb(void *opaque, target_phys_addr_t addr)
221{
222 MiscState *s = opaque;
223 uint32_t ret = 0;
224
225 ret = s->aux2;
226 MISC_DPRINTF("Read aux2 %2.2x\n", ret);
227
228 return ret;
229}
230
231static CPUReadMemoryFunc *slavio_aux2_mem_read[3] = {
232 slavio_aux2_mem_readb,
233 NULL,
234 NULL,
235};
236
237static CPUWriteMemoryFunc *slavio_aux2_mem_write[3] = {
238 slavio_aux2_mem_writeb,
239 NULL,
240 NULL,
241};
242
243static void apc_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
244{
245 MiscState *s = opaque;
246
247 MISC_DPRINTF("Write power management %2.2x\n", val & 0xff);
248 cpu_interrupt(s->env, CPU_INTERRUPT_HALT);
249}
250
251static uint32_t apc_mem_readb(void *opaque, target_phys_addr_t addr)
252{
253 uint32_t ret = 0;
254
255 MISC_DPRINTF("Read power management %2.2x\n", ret);
256 return ret;
257}
258
259static CPUReadMemoryFunc *apc_mem_read[3] = {
260 apc_mem_readb,
261 NULL,
262 NULL,
263};
264
265static CPUWriteMemoryFunc *apc_mem_write[3] = {
266 apc_mem_writeb,
267 NULL,
268 NULL,
269};
270
bfa30a38
BS
271static uint32_t slavio_sysctrl_mem_readl(void *opaque, target_phys_addr_t addr)
272{
273 MiscState *s = opaque;
274 uint32_t ret = 0, saddr;
275
276 saddr = addr & SYSCTRL_MAXADDR;
277 switch (saddr) {
278 case 0:
279 ret = s->sysctrl;
280 break;
281 default:
282 break;
283 }
284 MISC_DPRINTF("Read system control reg 0x" TARGET_FMT_plx " = %x\n", addr,
285 ret);
286 return ret;
287}
288
289static void slavio_sysctrl_mem_writel(void *opaque, target_phys_addr_t addr,
290 uint32_t val)
291{
292 MiscState *s = opaque;
293 uint32_t saddr;
294
295 saddr = addr & SYSCTRL_MAXADDR;
296 MISC_DPRINTF("Write system control reg 0x" TARGET_FMT_plx " = %x\n", addr,
297 val);
298 switch (saddr) {
299 case 0:
7debeb82
BS
300 if (val & SYS_RESET) {
301 s->sysctrl = SYS_RESETSTAT;
bfa30a38
BS
302 qemu_system_reset_request();
303 }
304 break;
305 default:
306 break;
307 }
308}
309
310static CPUReadMemoryFunc *slavio_sysctrl_mem_read[3] = {
7c560456
BS
311 NULL,
312 NULL,
bfa30a38
BS
313 slavio_sysctrl_mem_readl,
314};
315
316static CPUWriteMemoryFunc *slavio_sysctrl_mem_write[3] = {
7c560456
BS
317 NULL,
318 NULL,
bfa30a38
BS
319 slavio_sysctrl_mem_writel,
320};
321
7c560456 322static uint32_t slavio_led_mem_readw(void *opaque, target_phys_addr_t addr)
6a3b9cc9
BS
323{
324 MiscState *s = opaque;
325 uint32_t ret = 0, saddr;
326
327 saddr = addr & LED_MAXADDR;
328 switch (saddr) {
329 case 0:
330 ret = s->leds;
331 break;
332 default:
333 break;
334 }
335 MISC_DPRINTF("Read diagnostic LED reg 0x" TARGET_FMT_plx " = %x\n", addr,
336 ret);
337 return ret;
338}
339
7c560456 340static void slavio_led_mem_writew(void *opaque, target_phys_addr_t addr,
6a3b9cc9
BS
341 uint32_t val)
342{
343 MiscState *s = opaque;
344 uint32_t saddr;
345
346 saddr = addr & LED_MAXADDR;
347 MISC_DPRINTF("Write diagnostic LED reg 0x" TARGET_FMT_plx " = %x\n", addr,
348 val);
349 switch (saddr) {
350 case 0:
d5296cb5 351 s->leds = val;
6a3b9cc9
BS
352 break;
353 default:
354 break;
355 }
356}
357
358static CPUReadMemoryFunc *slavio_led_mem_read[3] = {
7c560456
BS
359 NULL,
360 slavio_led_mem_readw,
361 NULL,
6a3b9cc9
BS
362};
363
364static CPUWriteMemoryFunc *slavio_led_mem_write[3] = {
7c560456
BS
365 NULL,
366 slavio_led_mem_writew,
367 NULL,
6a3b9cc9
BS
368};
369
3475187d
FB
370static void slavio_misc_save(QEMUFile *f, void *opaque)
371{
372 MiscState *s = opaque;
d537cf6c 373 int tmp;
bfa30a38 374 uint8_t tmp8;
3475187d 375
d537cf6c
PB
376 tmp = 0;
377 qemu_put_be32s(f, &tmp); /* ignored, was IRQ. */
3475187d
FB
378 qemu_put_8s(f, &s->config);
379 qemu_put_8s(f, &s->aux1);
380 qemu_put_8s(f, &s->aux2);
381 qemu_put_8s(f, &s->diag);
382 qemu_put_8s(f, &s->mctrl);
bfa30a38
BS
383 tmp8 = s->sysctrl & 0xff;
384 qemu_put_8s(f, &tmp8);
3475187d
FB
385}
386
387static int slavio_misc_load(QEMUFile *f, void *opaque, int version_id)
388{
389 MiscState *s = opaque;
d537cf6c 390 int tmp;
bfa30a38 391 uint8_t tmp8;
3475187d
FB
392
393 if (version_id != 1)
394 return -EINVAL;
395
d537cf6c 396 qemu_get_be32s(f, &tmp);
3475187d
FB
397 qemu_get_8s(f, &s->config);
398 qemu_get_8s(f, &s->aux1);
399 qemu_get_8s(f, &s->aux2);
400 qemu_get_8s(f, &s->diag);
401 qemu_get_8s(f, &s->mctrl);
bfa30a38
BS
402 qemu_get_8s(f, &tmp8);
403 s->sysctrl = (uint32_t)tmp8;
3475187d
FB
404 return 0;
405}
406
5dcb6b91 407void *slavio_misc_init(target_phys_addr_t base, target_phys_addr_t power_base,
0019ad53
BS
408 target_phys_addr_t aux1_base,
409 target_phys_addr_t aux2_base, qemu_irq irq,
410 CPUState *env)
3475187d 411{
0019ad53 412 int io;
3475187d
FB
413 MiscState *s;
414
415 s = qemu_mallocz(sizeof(MiscState));
416 if (!s)
417 return NULL;
418
0019ad53
BS
419 if (base) {
420 /* 8 bit registers */
421 io = cpu_register_io_memory(0, slavio_misc_mem_read,
422 slavio_misc_mem_write, s);
423 // Slavio control
424 cpu_register_physical_memory(base + MISC_CFG, MISC_SIZE, io);
425 // Diagnostics
426 cpu_register_physical_memory(base + MISC_DIAG, MISC_SIZE, io);
427 // Modem control
428 cpu_register_physical_memory(base + MISC_MDM, MISC_SIZE, io);
429
430 /* 16 bit registers */
431 io = cpu_register_io_memory(0, slavio_led_mem_read,
432 slavio_led_mem_write, s);
433 /* ss600mp diag LEDs */
434 cpu_register_physical_memory(base + MISC_LEDS, MISC_SIZE, io);
435
436 /* 32 bit registers */
437 io = cpu_register_io_memory(0, slavio_sysctrl_mem_read,
438 slavio_sysctrl_mem_write, s);
439 // System control
440 cpu_register_physical_memory(base + MISC_SYS, SYSCTRL_SIZE, io);
441 }
442
443 // AUX 1 (Misc System Functions)
444 if (aux1_base) {
445 io = cpu_register_io_memory(0, slavio_aux1_mem_read,
446 slavio_aux1_mem_write, s);
447 cpu_register_physical_memory(aux1_base, MISC_SIZE, io);
448 }
449
450 // AUX 2 (Software Powerdown Control)
451 if (aux2_base) {
452 io = cpu_register_io_memory(0, slavio_aux2_mem_read,
453 slavio_aux2_mem_write, s);
454 cpu_register_physical_memory(aux2_base, MISC_SIZE, io);
455 }
456
457 // Power management (APC) XXX: not a Slavio device
458 if (power_base) {
459 io = cpu_register_io_memory(0, apc_mem_read, apc_mem_write, s);
460 cpu_register_physical_memory(power_base, MISC_SIZE, io);
461 }
bfa30a38 462
3475187d 463 s->irq = irq;
0019ad53 464 s->env = env;
3475187d 465
bfa30a38
BS
466 register_savevm("slavio_misc", base, 1, slavio_misc_save, slavio_misc_load,
467 s);
3475187d
FB
468 qemu_register_reset(slavio_misc_reset, s);
469 slavio_misc_reset(s);
0019ad53 470
3475187d
FB
471 return s;
472}
This page took 0.182763 seconds and 4 git commands to generate.