bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 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 | */ |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 24 | |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 25 | #include "sysbus.h" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 26 | #include "trace.h" |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * In addition to Crystal CS4231 there is a DMA controller on Sparc. |
| 30 | */ |
blueswir1 | e64d7d5 | 2008-12-02 17:47:02 +0000 | [diff] [blame] | 31 | #define CS_SIZE 0x40 |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 32 | #define CS_REGS 16 |
| 33 | #define CS_DREGS 32 |
| 34 | #define CS_MAXDREG (CS_DREGS - 1) |
| 35 | |
| 36 | typedef struct CSState { |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 37 | SysBusDevice busdev; |
Avi Kivity | df182043 | 2011-11-09 16:10:07 +0200 | [diff] [blame] | 38 | MemoryRegion iomem; |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 39 | qemu_irq irq; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 40 | uint32_t regs[CS_REGS]; |
| 41 | uint8_t dregs[CS_DREGS]; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 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 | |
Blue Swirl | 82d4c6e | 2009-10-24 16:20:32 +0000 | [diff] [blame] | 48 | static void cs_reset(DeviceState *d) |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 49 | { |
Blue Swirl | 82d4c6e | 2009-10-24 16:20:32 +0000 | [diff] [blame] | 50 | CSState *s = container_of(d, CSState, busdev.qdev); |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 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 | |
Avi Kivity | df182043 | 2011-11-09 16:10:07 +0200 | [diff] [blame] | 58 | static uint64_t cs_mem_read(void *opaque, target_phys_addr_t addr, |
| 59 | unsigned size) |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 60 | { |
| 61 | CSState *s = opaque; |
| 62 | uint32_t saddr, ret; |
| 63 | |
blueswir1 | e64d7d5 | 2008-12-02 17:47:02 +0000 | [diff] [blame] | 64 | saddr = addr >> 2; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 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 | } |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 75 | trace_cs4231_mem_readl_dreg(CS_RAP(s), ret); |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 76 | break; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 77 | default: |
| 78 | ret = s->regs[saddr]; |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 79 | trace_cs4231_mem_readl_reg(saddr, ret); |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 80 | break; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 81 | } |
| 82 | return ret; |
| 83 | } |
| 84 | |
Avi Kivity | df182043 | 2011-11-09 16:10:07 +0200 | [diff] [blame] | 85 | static void cs_mem_write(void *opaque, target_phys_addr_t addr, |
| 86 | uint64_t val, unsigned size) |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 87 | { |
| 88 | CSState *s = opaque; |
| 89 | uint32_t saddr; |
| 90 | |
blueswir1 | e64d7d5 | 2008-12-02 17:47:02 +0000 | [diff] [blame] | 91 | saddr = addr >> 2; |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 92 | trace_cs4231_mem_writel_reg(saddr, s->regs[saddr], val); |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 93 | switch (saddr) { |
| 94 | case 1: |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 95 | trace_cs4231_mem_writel_dreg(CS_RAP(s), s->dregs[CS_RAP(s)], val); |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 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: |
Blue Swirl | 82d4c6e | 2009-10-24 16:20:32 +0000 | [diff] [blame] | 113 | if (val & 1) { |
| 114 | cs_reset(&s->busdev.qdev); |
| 115 | } |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 116 | val &= 0x7f; |
| 117 | s->regs[saddr] = val; |
| 118 | break; |
| 119 | default: |
| 120 | s->regs[saddr] = val; |
blueswir1 | f930d07 | 2007-10-06 11:28:21 +0000 | [diff] [blame] | 121 | break; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 122 | } |
| 123 | } |
| 124 | |
Avi Kivity | df182043 | 2011-11-09 16:10:07 +0200 | [diff] [blame] | 125 | static const MemoryRegionOps cs_mem_ops = { |
| 126 | .read = cs_mem_read, |
| 127 | .write = cs_mem_write, |
| 128 | .endianness = DEVICE_NATIVE_ENDIAN, |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 129 | }; |
| 130 | |
Blue Swirl | 82d4c6e | 2009-10-24 16:20:32 +0000 | [diff] [blame] | 131 | static 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 | }; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 142 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 143 | static int cs4231_init1(SysBusDevice *dev) |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 144 | { |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 145 | CSState *s = FROM_SYSBUS(CSState, dev); |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 146 | |
Avi Kivity | df182043 | 2011-11-09 16:10:07 +0200 | [diff] [blame] | 147 | memory_region_init_io(&s->iomem, &cs_mem_ops, s, "cs4321", CS_SIZE); |
Avi Kivity | 750ecd4 | 2011-11-27 11:38:10 +0200 | [diff] [blame] | 148 | sysbus_init_mmio(dev, &s->iomem); |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 149 | sysbus_init_irq(dev, &s->irq); |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 150 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 151 | return 0; |
bellard | b817493 | 2006-09-10 19:25:12 +0000 | [diff] [blame] | 152 | } |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 153 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 154 | static Property cs4231_properties[] = { |
| 155 | {.name = NULL}, |
| 156 | }; |
| 157 | |
| 158 | static void cs4231_class_init(ObjectClass *klass, void *data) |
| 159 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 160 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 161 | SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); |
| 162 | |
| 163 | k->init = cs4231_init1; |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 164 | dc->reset = cs_reset; |
| 165 | dc->vmsd = &vmstate_cs4231; |
| 166 | dc->props = cs4231_properties; |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 167 | } |
| 168 | |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 169 | static TypeInfo cs4231_info = { |
| 170 | .name = "SUNW,CS4231", |
| 171 | .parent = TYPE_SYS_BUS_DEVICE, |
| 172 | .instance_size = sizeof(CSState), |
| 173 | .class_init = cs4231_class_init, |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 174 | }; |
| 175 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 176 | static void cs4231_register_types(void) |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 177 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 178 | type_register_static(&cs4231_info); |
Blue Swirl | fa28ec5 | 2009-07-16 13:47:45 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 181 | type_init(cs4231_register_types) |