]>
Commit | Line | Data |
---|---|---|
7d85892b BS |
1 | /* |
2 | * QEMU Sparc SBI interrupt controller emulation | |
3 | * | |
4 | * Based on slavio_intctl, copyright (c) 2003-2005 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 | */ | |
7fc06735 | 24 | |
7fc06735 | 25 | #include "sysbus.h" |
7d85892b BS |
26 | |
27 | //#define DEBUG_IRQ | |
28 | ||
29 | #ifdef DEBUG_IRQ | |
001faf32 BS |
30 | #define DPRINTF(fmt, ...) \ |
31 | do { printf("IRQ: " fmt , ## __VA_ARGS__); } while (0) | |
7d85892b | 32 | #else |
001faf32 | 33 | #define DPRINTF(fmt, ...) |
7d85892b BS |
34 | #endif |
35 | ||
36 | #define MAX_CPUS 16 | |
37 | ||
38 | #define SBI_NREGS 16 | |
39 | ||
40 | typedef struct SBIState { | |
7fc06735 | 41 | SysBusDevice busdev; |
cfee758c | 42 | MemoryRegion iomem; |
7d85892b BS |
43 | uint32_t regs[SBI_NREGS]; |
44 | uint32_t intreg_pending[MAX_CPUS]; | |
7fc06735 | 45 | qemu_irq cpu_irqs[MAX_CPUS]; |
7d85892b BS |
46 | uint32_t pil_out[MAX_CPUS]; |
47 | } SBIState; | |
48 | ||
49 | #define SBI_SIZE (SBI_NREGS * 4) | |
7d85892b | 50 | |
7d85892b BS |
51 | static void sbi_set_irq(void *opaque, int irq, int level) |
52 | { | |
53 | } | |
54 | ||
a8170e5e | 55 | static uint64_t sbi_mem_read(void *opaque, hwaddr addr, |
cfee758c | 56 | unsigned size) |
7d85892b BS |
57 | { |
58 | SBIState *s = opaque; | |
59 | uint32_t saddr, ret; | |
60 | ||
e64d7d59 | 61 | saddr = addr >> 2; |
7d85892b BS |
62 | switch (saddr) { |
63 | default: | |
64 | ret = s->regs[saddr]; | |
65 | break; | |
66 | } | |
67 | DPRINTF("read system reg 0x" TARGET_FMT_plx " = %x\n", addr, ret); | |
68 | ||
69 | return ret; | |
70 | } | |
71 | ||
a8170e5e | 72 | static void sbi_mem_write(void *opaque, hwaddr addr, |
cfee758c | 73 | uint64_t val, unsigned dize) |
7d85892b BS |
74 | { |
75 | SBIState *s = opaque; | |
76 | uint32_t saddr; | |
77 | ||
e64d7d59 | 78 | saddr = addr >> 2; |
cfee758c | 79 | DPRINTF("write system reg 0x" TARGET_FMT_plx " = %x\n", addr, (int)val); |
7d85892b BS |
80 | switch (saddr) { |
81 | default: | |
82 | s->regs[saddr] = val; | |
83 | break; | |
84 | } | |
85 | } | |
86 | ||
cfee758c AK |
87 | static const MemoryRegionOps sbi_mem_ops = { |
88 | .read = sbi_mem_read, | |
89 | .write = sbi_mem_write, | |
90 | .endianness = DEVICE_NATIVE_ENDIAN, | |
91 | .valid = { | |
92 | .min_access_size = 4, | |
93 | .max_access_size = 4, | |
94 | }, | |
7d85892b BS |
95 | }; |
96 | ||
b280fcdf BS |
97 | static const VMStateDescription vmstate_sbi = { |
98 | .name ="sbi", | |
99 | .version_id = 1, | |
100 | .minimum_version_id = 1, | |
101 | .minimum_version_id_old = 1, | |
102 | .fields = (VMStateField []) { | |
103 | VMSTATE_UINT32_ARRAY(intreg_pending, SBIState, MAX_CPUS), | |
104 | VMSTATE_END_OF_LIST() | |
7d85892b | 105 | } |
b280fcdf | 106 | }; |
7d85892b | 107 | |
b280fcdf | 108 | static void sbi_reset(DeviceState *d) |
7d85892b | 109 | { |
b280fcdf | 110 | SBIState *s = container_of(d, SBIState, busdev.qdev); |
7d85892b BS |
111 | unsigned int i; |
112 | ||
113 | for (i = 0; i < MAX_CPUS; i++) { | |
114 | s->intreg_pending[i] = 0; | |
115 | } | |
7d85892b BS |
116 | } |
117 | ||
81a322d4 | 118 | static int sbi_init1(SysBusDevice *dev) |
7fc06735 BS |
119 | { |
120 | SBIState *s = FROM_SYSBUS(SBIState, dev); | |
7fc06735 BS |
121 | unsigned int i; |
122 | ||
123 | qdev_init_gpio_in(&dev->qdev, sbi_set_irq, 32 + MAX_CPUS); | |
124 | for (i = 0; i < MAX_CPUS; i++) { | |
125 | sysbus_init_irq(dev, &s->cpu_irqs[i]); | |
7d85892b BS |
126 | } |
127 | ||
cfee758c | 128 | memory_region_init_io(&s->iomem, &sbi_mem_ops, s, "sbi", SBI_SIZE); |
750ecd44 | 129 | sysbus_init_mmio(dev, &s->iomem); |
7d85892b | 130 | |
81a322d4 | 131 | return 0; |
7fc06735 BS |
132 | } |
133 | ||
999e12bb AL |
134 | static void sbi_class_init(ObjectClass *klass, void *data) |
135 | { | |
39bffca2 | 136 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb AL |
137 | SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); |
138 | ||
139 | k->init = sbi_init1; | |
39bffca2 AL |
140 | dc->reset = sbi_reset; |
141 | dc->vmsd = &vmstate_sbi; | |
999e12bb AL |
142 | } |
143 | ||
39bffca2 AL |
144 | static TypeInfo sbi_info = { |
145 | .name = "sbi", | |
146 | .parent = TYPE_SYS_BUS_DEVICE, | |
147 | .instance_size = sizeof(SBIState), | |
148 | .class_init = sbi_class_init, | |
7fc06735 | 149 | }; |
7d85892b | 150 | |
83f7d43a | 151 | static void sbi_register_types(void) |
7fc06735 | 152 | { |
39bffca2 | 153 | type_register_static(&sbi_info); |
7d85892b | 154 | } |
7fc06735 | 155 | |
83f7d43a | 156 | type_init(sbi_register_types) |