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
25 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
27 #include "migration/vmstate.h"
28 #include "qemu/module.h"
30 #include "qom/object.h"
33 * In addition to Crystal CS4231 there is a DMA controller on Sparc.
38 #define CS_MAXDREG (CS_DREGS - 1)
40 #define TYPE_CS4231 "SUNW,CS4231"
41 typedef struct CSState CSState
;
42 DECLARE_INSTANCE_CHECKER(CSState
, CS4231
,
46 SysBusDevice parent_obj
;
50 uint32_t regs
[CS_REGS
];
51 uint8_t dregs
[CS_DREGS
];
54 #define CS_RAP(s) ((s)->regs[0] & CS_MAXDREG)
56 #define CS_CDC_VER 0x8a
58 static void cs_reset(DeviceState
*d
)
60 CSState
*s
= CS4231(d
);
62 memset(s
->regs
, 0, CS_REGS
* 4);
63 memset(s
->dregs
, 0, CS_DREGS
);
64 s
->dregs
[12] = CS_CDC_VER
;
65 s
->dregs
[25] = CS_VER
;
68 static uint64_t cs_mem_read(void *opaque
, hwaddr addr
,
82 ret
= s
->dregs
[CS_RAP(s
)];
85 trace_cs4231_mem_readl_dreg(CS_RAP(s
), ret
);
89 trace_cs4231_mem_readl_reg(saddr
, ret
);
95 static void cs_mem_write(void *opaque
, hwaddr addr
,
96 uint64_t val
, unsigned size
)
102 trace_cs4231_mem_writel_reg(saddr
, s
->regs
[saddr
], val
);
105 trace_cs4231_mem_writel_dreg(CS_RAP(s
), s
->dregs
[CS_RAP(s
)], val
);
108 case 25: // Read only
112 val
|= CS_CDC_VER
; // Codec version
113 s
->dregs
[CS_RAP(s
)] = val
;
116 s
->dregs
[CS_RAP(s
)] = val
;
127 s
->regs
[saddr
] = val
;
130 s
->regs
[saddr
] = val
;
135 static const MemoryRegionOps cs_mem_ops
= {
137 .write
= cs_mem_write
,
138 .endianness
= DEVICE_NATIVE_ENDIAN
,
141 static const VMStateDescription vmstate_cs4231
= {
144 .minimum_version_id
= 1,
145 .fields
= (VMStateField
[]) {
146 VMSTATE_UINT32_ARRAY(regs
, CSState
, CS_REGS
),
147 VMSTATE_UINT8_ARRAY(dregs
, CSState
, CS_DREGS
),
148 VMSTATE_END_OF_LIST()
152 static void cs4231_init(Object
*obj
)
154 CSState
*s
= CS4231(obj
);
155 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
157 memory_region_init_io(&s
->iomem
, obj
, &cs_mem_ops
, s
, "cs4321",
159 sysbus_init_mmio(dev
, &s
->iomem
);
160 sysbus_init_irq(dev
, &s
->irq
);
163 static void cs4231_class_init(ObjectClass
*klass
, void *data
)
165 DeviceClass
*dc
= DEVICE_CLASS(klass
);
167 dc
->reset
= cs_reset
;
168 dc
->vmsd
= &vmstate_cs4231
;
171 static const TypeInfo cs4231_info
= {
173 .parent
= TYPE_SYS_BUS_DEVICE
,
174 .instance_size
= sizeof(CSState
),
175 .instance_init
= cs4231_init
,
176 .class_init
= cs4231_class_init
,
179 static void cs4231_register_types(void)
181 type_register_static(&cs4231_info
);
184 type_init(cs4231_register_types
)