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
31 * In addition to Crystal CS4231 there is a DMA controller on Sparc.
36 #define CS_MAXDREG (CS_DREGS - 1)
38 typedef struct CSState
{
39 uint32_t regs
[CS_REGS
];
40 uint8_t dregs
[CS_DREGS
];
44 #define CS_RAP(s) ((s)->regs[0] & CS_MAXDREG)
46 #define CS_CDC_VER 0x8a
49 #define DPRINTF(fmt, ...) \
50 do { printf("CS: " fmt , ## __VA_ARGS__); } while (0)
52 #define DPRINTF(fmt, ...)
55 static void cs_reset(void *opaque
)
59 memset(s
->regs
, 0, CS_REGS
* 4);
60 memset(s
->dregs
, 0, CS_DREGS
);
61 s
->dregs
[12] = CS_CDC_VER
;
62 s
->dregs
[25] = CS_VER
;
65 static uint32_t cs_mem_readl(void *opaque
, target_phys_addr_t addr
)
78 ret
= s
->dregs
[CS_RAP(s
)];
81 DPRINTF("read dreg[%d]: 0x%8.8x\n", CS_RAP(s
), ret
);
85 DPRINTF("read reg[%d]: 0x%8.8x\n", saddr
, ret
);
91 static void cs_mem_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
97 DPRINTF("write reg[%d]: 0x%8.8x -> 0x%8.8x\n", saddr
, s
->regs
[saddr
], val
);
100 DPRINTF("write dreg[%d]: 0x%2.2x -> 0x%2.2x\n", CS_RAP(s
),
101 s
->dregs
[CS_RAP(s
)], val
);
104 case 25: // Read only
108 val
|= CS_CDC_VER
; // Codec version
109 s
->dregs
[CS_RAP(s
)] = val
;
112 s
->dregs
[CS_RAP(s
)] = val
;
122 s
->regs
[saddr
] = val
;
125 s
->regs
[saddr
] = val
;
130 static CPUReadMemoryFunc
*cs_mem_read
[3] = {
136 static CPUWriteMemoryFunc
*cs_mem_write
[3] = {
142 static void cs_save(QEMUFile
*f
, void *opaque
)
147 for (i
= 0; i
< CS_REGS
; i
++)
148 qemu_put_be32s(f
, &s
->regs
[i
]);
150 qemu_put_buffer(f
, s
->dregs
, CS_DREGS
);
153 static int cs_load(QEMUFile
*f
, void *opaque
, int version_id
)
161 for (i
= 0; i
< CS_REGS
; i
++)
162 qemu_get_be32s(f
, &s
->regs
[i
]);
164 qemu_get_buffer(f
, s
->dregs
, CS_DREGS
);
168 void cs_init(target_phys_addr_t base
, int irq
, void *intctl
)
173 s
= qemu_mallocz(sizeof(CSState
));
175 cs_io_memory
= cpu_register_io_memory(cs_mem_read
, cs_mem_write
, s
);
176 cpu_register_physical_memory(base
, CS_SIZE
, cs_io_memory
);
177 register_savevm("cs4231", base
, 1, cs_save
, cs_load
, s
);
178 qemu_register_reset(cs_reset
, s
);