]> git.proxmox.com Git - qemu.git/blame - hw/cs4231.c
Merge remote-tracking branch 'qemu-kvm/uq/master' into staging
[qemu.git] / hw / cs4231.c
CommitLineData
b8174937
FB
1/*
2 * QEMU Crystal CS4231 audio chip emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
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 */
fa28ec52 24
fa28ec52 25#include "sysbus.h"
97bf4851 26#include "trace.h"
b8174937
FB
27
28/*
29 * In addition to Crystal CS4231 there is a DMA controller on Sparc.
30 */
e64d7d59 31#define CS_SIZE 0x40
b8174937
FB
32#define CS_REGS 16
33#define CS_DREGS 32
34#define CS_MAXDREG (CS_DREGS - 1)
35
36typedef struct CSState {
fa28ec52 37 SysBusDevice busdev;
df182043 38 MemoryRegion iomem;
fa28ec52 39 qemu_irq irq;
b8174937
FB
40 uint32_t regs[CS_REGS];
41 uint8_t dregs[CS_DREGS];
b8174937
FB
42} CSState;
43
44#define CS_RAP(s) ((s)->regs[0] & CS_MAXDREG)
45#define CS_VER 0xa0
46#define CS_CDC_VER 0x8a
47
82d4c6e6 48static void cs_reset(DeviceState *d)
b8174937 49{
82d4c6e6 50 CSState *s = container_of(d, CSState, busdev.qdev);
b8174937
FB
51
52 memset(s->regs, 0, CS_REGS * 4);
53 memset(s->dregs, 0, CS_DREGS);
54 s->dregs[12] = CS_CDC_VER;
55 s->dregs[25] = CS_VER;
56}
57
df182043
AK
58static uint64_t cs_mem_read(void *opaque, target_phys_addr_t addr,
59 unsigned size)
b8174937
FB
60{
61 CSState *s = opaque;
62 uint32_t saddr, ret;
63
e64d7d59 64 saddr = addr >> 2;
b8174937
FB
65 switch (saddr) {
66 case 1:
67 switch (CS_RAP(s)) {
68 case 3: // Write only
69 ret = 0;
70 break;
71 default:
72 ret = s->dregs[CS_RAP(s)];
73 break;
74 }
97bf4851 75 trace_cs4231_mem_readl_dreg(CS_RAP(s), ret);
f930d07e 76 break;
b8174937
FB
77 default:
78 ret = s->regs[saddr];
97bf4851 79 trace_cs4231_mem_readl_reg(saddr, ret);
f930d07e 80 break;
b8174937
FB
81 }
82 return ret;
83}
84
df182043
AK
85static void cs_mem_write(void *opaque, target_phys_addr_t addr,
86 uint64_t val, unsigned size)
b8174937
FB
87{
88 CSState *s = opaque;
89 uint32_t saddr;
90
e64d7d59 91 saddr = addr >> 2;
97bf4851 92 trace_cs4231_mem_writel_reg(saddr, s->regs[saddr], val);
b8174937
FB
93 switch (saddr) {
94 case 1:
97bf4851 95 trace_cs4231_mem_writel_dreg(CS_RAP(s), s->dregs[CS_RAP(s)], val);
b8174937
FB
96 switch(CS_RAP(s)) {
97 case 11:
98 case 25: // Read only
99 break;
100 case 12:
101 val &= 0x40;
102 val |= CS_CDC_VER; // Codec version
103 s->dregs[CS_RAP(s)] = val;
104 break;
105 default:
106 s->dregs[CS_RAP(s)] = val;
107 break;
108 }
109 break;
110 case 2: // Read only
111 break;
112 case 4:
82d4c6e6
BS
113 if (val & 1) {
114 cs_reset(&s->busdev.qdev);
115 }
b8174937
FB
116 val &= 0x7f;
117 s->regs[saddr] = val;
118 break;
119 default:
120 s->regs[saddr] = val;
f930d07e 121 break;
b8174937
FB
122 }
123}
124
df182043
AK
125static const MemoryRegionOps cs_mem_ops = {
126 .read = cs_mem_read,
127 .write = cs_mem_write,
128 .endianness = DEVICE_NATIVE_ENDIAN,
b8174937
FB
129};
130
82d4c6e6
BS
131static const VMStateDescription vmstate_cs4231 = {
132 .name ="cs4231",
133 .version_id = 1,
134 .minimum_version_id = 1,
135 .minimum_version_id_old = 1,
136 .fields = (VMStateField []) {
137 VMSTATE_UINT32_ARRAY(regs, CSState, CS_REGS),
138 VMSTATE_UINT8_ARRAY(dregs, CSState, CS_DREGS),
139 VMSTATE_END_OF_LIST()
140 }
141};
b8174937 142
81a322d4 143static int cs4231_init1(SysBusDevice *dev)
b8174937 144{
fa28ec52 145 CSState *s = FROM_SYSBUS(CSState, dev);
b8174937 146
df182043 147 memory_region_init_io(&s->iomem, &cs_mem_ops, s, "cs4321", CS_SIZE);
750ecd44 148 sysbus_init_mmio(dev, &s->iomem);
fa28ec52 149 sysbus_init_irq(dev, &s->irq);
b8174937 150
81a322d4 151 return 0;
b8174937 152}
fa28ec52 153
999e12bb
AL
154static Property cs4231_properties[] = {
155 {.name = NULL},
156};
157
158static void cs4231_class_init(ObjectClass *klass, void *data)
159{
39bffca2 160 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
161 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
162
163 k->init = cs4231_init1;
39bffca2
AL
164 dc->reset = cs_reset;
165 dc->vmsd = &vmstate_cs4231;
166 dc->props = cs4231_properties;
999e12bb
AL
167}
168
39bffca2
AL
169static TypeInfo cs4231_info = {
170 .name = "SUNW,CS4231",
171 .parent = TYPE_SYS_BUS_DEVICE,
172 .instance_size = sizeof(CSState),
173 .class_init = cs4231_class_init,
fa28ec52
BS
174};
175
83f7d43a 176static void cs4231_register_types(void)
fa28ec52 177{
39bffca2 178 type_register_static(&cs4231_info);
fa28ec52
BS
179}
180
83f7d43a 181type_init(cs4231_register_types)