Fix 32-bit overflow in parallels image support
[qemu-kvm/fedora.git] / hw / cs4231.c
blobf13815b4e717fab25e249e8fc54daf21312e55dd
1 /*
2 * QEMU Crystal CS4231 audio chip emulation
4 * Copyright (c) 2006 Fabrice Bellard
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
22 * THE SOFTWARE.
25 #include "sun4m.h"
26 #include "sysbus.h"
28 /* debug CS4231 */
29 //#define DEBUG_CS
32 * In addition to Crystal CS4231 there is a DMA controller on Sparc.
34 #define CS_SIZE 0x40
35 #define CS_REGS 16
36 #define CS_DREGS 32
37 #define CS_MAXDREG (CS_DREGS - 1)
39 typedef struct CSState {
40 SysBusDevice busdev;
41 qemu_irq irq;
42 uint32_t regs[CS_REGS];
43 uint8_t dregs[CS_DREGS];
44 } CSState;
46 #define CS_RAP(s) ((s)->regs[0] & CS_MAXDREG)
47 #define CS_VER 0xa0
48 #define CS_CDC_VER 0x8a
50 #ifdef DEBUG_CS
51 #define DPRINTF(fmt, ...) \
52 do { printf("CS: " fmt , ## __VA_ARGS__); } while (0)
53 #else
54 #define DPRINTF(fmt, ...)
55 #endif
57 static void cs_reset(void *opaque)
59 CSState *s = opaque;
61 memset(s->regs, 0, CS_REGS * 4);
62 memset(s->dregs, 0, CS_DREGS);
63 s->dregs[12] = CS_CDC_VER;
64 s->dregs[25] = CS_VER;
67 static uint32_t cs_mem_readl(void *opaque, target_phys_addr_t addr)
69 CSState *s = opaque;
70 uint32_t saddr, ret;
72 saddr = addr >> 2;
73 switch (saddr) {
74 case 1:
75 switch (CS_RAP(s)) {
76 case 3: // Write only
77 ret = 0;
78 break;
79 default:
80 ret = s->dregs[CS_RAP(s)];
81 break;
83 DPRINTF("read dreg[%d]: 0x%8.8x\n", CS_RAP(s), ret);
84 break;
85 default:
86 ret = s->regs[saddr];
87 DPRINTF("read reg[%d]: 0x%8.8x\n", saddr, ret);
88 break;
90 return ret;
93 static void cs_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
95 CSState *s = opaque;
96 uint32_t saddr;
98 saddr = addr >> 2;
99 DPRINTF("write reg[%d]: 0x%8.8x -> 0x%8.8x\n", saddr, s->regs[saddr], val);
100 switch (saddr) {
101 case 1:
102 DPRINTF("write dreg[%d]: 0x%2.2x -> 0x%2.2x\n", CS_RAP(s),
103 s->dregs[CS_RAP(s)], val);
104 switch(CS_RAP(s)) {
105 case 11:
106 case 25: // Read only
107 break;
108 case 12:
109 val &= 0x40;
110 val |= CS_CDC_VER; // Codec version
111 s->dregs[CS_RAP(s)] = val;
112 break;
113 default:
114 s->dregs[CS_RAP(s)] = val;
115 break;
117 break;
118 case 2: // Read only
119 break;
120 case 4:
121 if (val & 1)
122 cs_reset(s);
123 val &= 0x7f;
124 s->regs[saddr] = val;
125 break;
126 default:
127 s->regs[saddr] = val;
128 break;
132 static CPUReadMemoryFunc *cs_mem_read[3] = {
133 cs_mem_readl,
134 cs_mem_readl,
135 cs_mem_readl,
138 static CPUWriteMemoryFunc *cs_mem_write[3] = {
139 cs_mem_writel,
140 cs_mem_writel,
141 cs_mem_writel,
144 static void cs_save(QEMUFile *f, void *opaque)
146 CSState *s = opaque;
147 unsigned int i;
149 for (i = 0; i < CS_REGS; i++)
150 qemu_put_be32s(f, &s->regs[i]);
152 qemu_put_buffer(f, s->dregs, CS_DREGS);
155 static int cs_load(QEMUFile *f, void *opaque, int version_id)
157 CSState *s = opaque;
158 unsigned int i;
160 if (version_id > 1)
161 return -EINVAL;
163 for (i = 0; i < CS_REGS; i++)
164 qemu_get_be32s(f, &s->regs[i]);
166 qemu_get_buffer(f, s->dregs, CS_DREGS);
167 return 0;
170 static void cs4231_init1(SysBusDevice *dev)
172 int io;
173 CSState *s = FROM_SYSBUS(CSState, dev);
175 io = cpu_register_io_memory(cs_mem_read, cs_mem_write, s);
176 sysbus_init_mmio(dev, CS_SIZE, io);
177 sysbus_init_irq(dev, &s->irq);
179 register_savevm("cs4231", -1, 1, cs_save, cs_load, s);
180 qemu_register_reset(cs_reset, s);
181 cs_reset(s);
184 static SysBusDeviceInfo cs4231_info = {
185 .init = cs4231_init1,
186 .qdev.name = "SUNW,CS4231",
187 .qdev.size = sizeof(CSState),
188 .qdev.props = (Property[]) {
189 {.name = NULL}
193 static void cs4231_register_devices(void)
195 sysbus_register_withprop(&cs4231_info);
198 device_init(cs4231_register_devices)