blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 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 | */ |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 24 | |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 25 | #include "sysbus.h" |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 26 | |
| 27 | //#define DEBUG_IRQ |
| 28 | |
| 29 | #ifdef DEBUG_IRQ |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 30 | #define DPRINTF(fmt, ...) \ |
| 31 | do { printf("IRQ: " fmt , ## __VA_ARGS__); } while (0) |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 32 | #else |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 33 | #define DPRINTF(fmt, ...) |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 34 | #endif |
| 35 | |
| 36 | #define MAX_CPUS 16 |
| 37 | |
| 38 | #define SBI_NREGS 16 |
| 39 | |
| 40 | typedef struct SBIState { |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 41 | SysBusDevice busdev; |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 42 | uint32_t regs[SBI_NREGS]; |
| 43 | uint32_t intreg_pending[MAX_CPUS]; |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 44 | qemu_irq cpu_irqs[MAX_CPUS]; |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 45 | uint32_t pil_out[MAX_CPUS]; |
| 46 | } SBIState; |
| 47 | |
| 48 | #define SBI_SIZE (SBI_NREGS * 4) |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 49 | |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 50 | static void sbi_set_irq(void *opaque, int irq, int level) |
| 51 | { |
| 52 | } |
| 53 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 54 | static uint32_t sbi_mem_readl(void *opaque, target_phys_addr_t addr) |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 55 | { |
| 56 | SBIState *s = opaque; |
| 57 | uint32_t saddr, ret; |
| 58 | |
blueswir1 | e64d7d5 | 2008-12-02 17:47:02 +0000 | [diff] [blame] | 59 | saddr = addr >> 2; |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 60 | switch (saddr) { |
| 61 | default: |
| 62 | ret = s->regs[saddr]; |
| 63 | break; |
| 64 | } |
| 65 | DPRINTF("read system reg 0x" TARGET_FMT_plx " = %x\n", addr, ret); |
| 66 | |
| 67 | return ret; |
| 68 | } |
| 69 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 70 | static void sbi_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val) |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 71 | { |
| 72 | SBIState *s = opaque; |
| 73 | uint32_t saddr; |
| 74 | |
blueswir1 | e64d7d5 | 2008-12-02 17:47:02 +0000 | [diff] [blame] | 75 | saddr = addr >> 2; |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 76 | DPRINTF("write system reg 0x" TARGET_FMT_plx " = %x\n", addr, val); |
| 77 | switch (saddr) { |
| 78 | default: |
| 79 | s->regs[saddr] = val; |
| 80 | break; |
| 81 | } |
| 82 | } |
| 83 | |
Blue Swirl | d60efc6 | 2009-08-25 18:29:31 +0000 | [diff] [blame] | 84 | static CPUReadMemoryFunc * const sbi_mem_read[3] = { |
blueswir1 | 7c56045 | 2008-01-01 17:06:38 +0000 | [diff] [blame] | 85 | NULL, |
| 86 | NULL, |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 87 | sbi_mem_readl, |
| 88 | }; |
| 89 | |
Blue Swirl | d60efc6 | 2009-08-25 18:29:31 +0000 | [diff] [blame] | 90 | static CPUWriteMemoryFunc * const sbi_mem_write[3] = { |
blueswir1 | 7c56045 | 2008-01-01 17:06:38 +0000 | [diff] [blame] | 91 | NULL, |
| 92 | NULL, |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 93 | sbi_mem_writel, |
| 94 | }; |
| 95 | |
Blue Swirl | b280fcd | 2009-10-24 20:08:43 +0000 | [diff] [blame] | 96 | static const VMStateDescription vmstate_sbi = { |
| 97 | .name ="sbi", |
| 98 | .version_id = 1, |
| 99 | .minimum_version_id = 1, |
| 100 | .minimum_version_id_old = 1, |
| 101 | .fields = (VMStateField []) { |
| 102 | VMSTATE_UINT32_ARRAY(intreg_pending, SBIState, MAX_CPUS), |
| 103 | VMSTATE_END_OF_LIST() |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 104 | } |
Blue Swirl | b280fcd | 2009-10-24 20:08:43 +0000 | [diff] [blame] | 105 | }; |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 106 | |
Blue Swirl | b280fcd | 2009-10-24 20:08:43 +0000 | [diff] [blame] | 107 | static void sbi_reset(DeviceState *d) |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 108 | { |
Blue Swirl | b280fcd | 2009-10-24 20:08:43 +0000 | [diff] [blame] | 109 | SBIState *s = container_of(d, SBIState, busdev.qdev); |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 110 | unsigned int i; |
| 111 | |
| 112 | for (i = 0; i < MAX_CPUS; i++) { |
| 113 | s->intreg_pending[i] = 0; |
| 114 | } |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 117 | static int sbi_init1(SysBusDevice *dev) |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 118 | { |
| 119 | SBIState *s = FROM_SYSBUS(SBIState, dev); |
| 120 | int sbi_io_memory; |
| 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]); |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Avi Kivity | 1eed09c | 2009-06-14 11:38:51 +0300 | [diff] [blame] | 128 | sbi_io_memory = cpu_register_io_memory(sbi_mem_read, sbi_mem_write, s); |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 129 | sysbus_init_mmio(dev, SBI_SIZE, sbi_io_memory); |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 130 | |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 131 | return 0; |
blueswir1 | 7d85892 | 2007-12-28 20:57:43 +0000 | [diff] [blame] | 132 | } |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 133 | |
| 134 | static SysBusDeviceInfo sbi_info = { |
| 135 | .init = sbi_init1, |
| 136 | .qdev.name = "sbi", |
| 137 | .qdev.size = sizeof(SBIState), |
Blue Swirl | b280fcd | 2009-10-24 20:08:43 +0000 | [diff] [blame] | 138 | .qdev.vmsd = &vmstate_sbi, |
| 139 | .qdev.reset = sbi_reset, |
Blue Swirl | 7fc0673 | 2009-07-21 19:25:59 +0000 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | static void sbi_register_devices(void) |
| 143 | { |
| 144 | sysbus_register_withprop(&sbi_info); |
| 145 | } |
| 146 | |
| 147 | device_init(sbi_register_devices) |