| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU ETRAX Interrupt Controller. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2008 Edgar E. Iglesias, Axis Communications AB. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:19 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | #include "qom/object.h"
 | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define D(x)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  | #define R_RW_MASK   0
 | 
					
						
							|  |  |  | #define R_R_VECT    1
 | 
					
						
							|  |  |  | #define R_R_MASKED_VECT 2
 | 
					
						
							|  |  |  | #define R_R_NMI     3
 | 
					
						
							|  |  |  | #define R_R_GURU    4
 | 
					
						
							|  |  |  | #define R_MAX       5
 | 
					
						
							| 
									
										
										
										
											2009-05-05 12:38:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												hw: Replace anti-social QOM type names
Several QOM type names contain ',':
    ARM,bitband-memory
    etraxfs,pic
    etraxfs,serial
    etraxfs,timer
    fsl,imx25
    fsl,imx31
    fsl,imx6
    fsl,imx6ul
    fsl,imx7
    grlib,ahbpnp
    grlib,apbpnp
    grlib,apbuart
    grlib,gptimer
    grlib,irqmp
    qemu,register
    SUNW,bpp
    SUNW,CS4231
    SUNW,DBRI
    SUNW,DBRI.prom
    SUNW,fdtwo
    SUNW,sx
    SUNW,tcx
    xilinx,zynq_slcr
    xlnx,zynqmp
    xlnx,zynqmp-pmu-soc
    xlnx,zynq-xadc
These are all device types.  They can't be plugged with -device /
device_add, except for xlnx,zynqmp-pmu-soc, and I doubt that one
actually works.
They *can* be used with -device / device_add to request help.
Usability is poor, though: you have to double the comma, like this:
    $ qemu-system-x86_64 -device SUNW,,fdtwo,help
Trap for the unwary.  The fact that this was broken in
device-introspect-test for more than six years until commit e27bd49876
fixed it demonstrates that "the unwary" includes seasoned developers.
One QOM type name contains ' ': "ICH9 SMB".  Because having to
remember just one way to quote would be too easy.
Rename the "SUNW,FOO types to "sun-FOO".  Summarily replace ',' and '
' by '-' in the other type names.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210304140229.575481-2-armbru@redhat.com>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
											
										 
											2021-03-04 15:02:28 +01:00
										 |  |  | #define TYPE_ETRAX_FS_PIC "etraxfs-pic"
 | 
					
						
							| 
									
										
										
										
											2020-08-31 17:07:33 -04:00
										 |  |  | DECLARE_INSTANCE_CHECKER(struct etrax_pic, ETRAX_FS_PIC, | 
					
						
							|  |  |  |                          TYPE_ETRAX_FS_PIC) | 
					
						
							| 
									
										
										
										
											2013-07-26 19:05:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  | struct etrax_pic | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-26 19:05:58 +02:00
										 |  |  |     SysBusDevice parent_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-11 13:47:44 +02:00
										 |  |  |     MemoryRegion mmio; | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  |     qemu_irq parent_irq; | 
					
						
							|  |  |  |     qemu_irq parent_nmi; | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     uint32_t regs[R_MAX]; | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  | static void pic_update(struct etrax_pic *fs) | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  | {    | 
					
						
							|  |  |  |     uint32_t vector = 0; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fs->regs[R_R_MASKED_VECT] = fs->regs[R_R_VECT] & fs->regs[R_RW_MASK]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-29 16:52:39 +08:00
										 |  |  |     /* The ETRAX interrupt controller signals interrupts to the core
 | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |        through an interrupt request wire and an irq vector bus. If  | 
					
						
							|  |  |  |        multiple interrupts are simultaneously active it chooses vector  | 
					
						
							|  |  |  |        0x30 and lets the sw choose the priorities.  */ | 
					
						
							|  |  |  |     if (fs->regs[R_R_MASKED_VECT]) { | 
					
						
							|  |  |  |         uint32_t mv = fs->regs[R_R_MASKED_VECT]; | 
					
						
							|  |  |  |         for (i = 0; i < 31; i++) { | 
					
						
							|  |  |  |             if (mv & 1) { | 
					
						
							|  |  |  |                 vector = 0x31 + i; | 
					
						
							|  |  |  |                 /* Check for multiple interrupts.  */ | 
					
						
							|  |  |  |                 if (mv > 1) | 
					
						
							|  |  |  |                     vector = 0x30; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             mv >>= 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-17 19:16:53 +02:00
										 |  |  |     qemu_set_irq(fs->parent_irq, vector); | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-11 13:47:44 +02:00
										 |  |  | static uint64_t | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | pic_read(void *opaque, hwaddr addr, unsigned int size) | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  |     struct etrax_pic *fs = opaque; | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     uint32_t rval; | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     rval = fs->regs[addr >> 2]; | 
					
						
							|  |  |  |     D(printf("%s %x=%x\n", __func__, addr, rval)); | 
					
						
							|  |  |  |     return rval; | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void pic_write(void *opaque, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2011-08-11 13:47:44 +02:00
										 |  |  |                       uint64_t value, unsigned int size) | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  |     struct etrax_pic *fs = opaque; | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     D(printf("%s addr=%x val=%x\n", __func__, addr, value)); | 
					
						
							| 
									
										
										
										
											2009-05-05 12:38:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     if (addr == R_RW_MASK) { | 
					
						
							|  |  |  |         fs->regs[R_RW_MASK] = value; | 
					
						
							|  |  |  |         pic_update(fs); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-11 13:47:44 +02:00
										 |  |  | static const MemoryRegionOps pic_ops = { | 
					
						
							|  |  |  |     .read = pic_read, | 
					
						
							|  |  |  |     .write = pic_write, | 
					
						
							|  |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							|  |  |  |     .valid = { | 
					
						
							|  |  |  |         .min_access_size = 4, | 
					
						
							|  |  |  |         .max_access_size = 4 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-09 23:33:30 +00:00
										 |  |  | static void nmi_handler(void *opaque, int irq, int level) | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  | {    | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  |     struct etrax_pic *fs = (void *)opaque; | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     uint32_t mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mask = 1 << irq; | 
					
						
							|  |  |  |     if (level) | 
					
						
							|  |  |  |         fs->regs[R_R_NMI] |= mask; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         fs->regs[R_R_NMI] &= ~mask; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  |     qemu_set_irq(fs->parent_nmi, !!fs->regs[R_R_NMI]); | 
					
						
							| 
									
										
										
										
											2008-06-09 23:33:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 00:23:15 +02:00
										 |  |  | static void irq_handler(void *opaque, int irq, int level) | 
					
						
							| 
									
										
										
										
											2015-03-08 19:30:01 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  |     struct etrax_pic *fs = (void *)opaque; | 
					
						
							| 
									
										
										
										
											2009-05-16 00:23:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-08 19:30:01 +01:00
										 |  |  |     if (irq >= 30) { | 
					
						
							|  |  |  |         nmi_handler(opaque, irq, level); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-05-16 00:23:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 12:28:33 +02:00
										 |  |  |     irq -= 1; | 
					
						
							|  |  |  |     fs->regs[R_R_VECT] &= ~(1 << irq); | 
					
						
							|  |  |  |     fs->regs[R_R_VECT] |= (!!level << irq); | 
					
						
							|  |  |  |     pic_update(fs); | 
					
						
							| 
									
										
										
										
											2008-06-09 23:33:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  | static void etraxfs_pic_init(Object *obj) | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |     DeviceState *dev = DEVICE(obj); | 
					
						
							|  |  |  |     struct etrax_pic *s = ETRAX_FS_PIC(obj); | 
					
						
							|  |  |  |     SysBusDevice *sbd = SYS_BUS_DEVICE(obj); | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-26 19:05:58 +02:00
										 |  |  |     qdev_init_gpio_in(dev, irq_handler, 32); | 
					
						
							|  |  |  |     sysbus_init_irq(sbd, &s->parent_irq); | 
					
						
							|  |  |  |     sysbus_init_irq(sbd, &s->parent_nmi); | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |     memory_region_init_io(&s->mmio, obj, &pic_ops, s, | 
					
						
							| 
									
										
										
										
											2013-06-06 21:25:08 -04:00
										 |  |  |                           "etraxfs-pic", R_MAX * 4); | 
					
						
							| 
									
										
										
										
											2013-07-26 19:05:58 +02:00
										 |  |  |     sysbus_init_mmio(sbd, &s->mmio); | 
					
						
							| 
									
										
										
										
											2008-03-14 01:04:24 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo etraxfs_pic_info = { | 
					
						
							| 
									
										
										
										
											2013-07-26 19:05:58 +02:00
										 |  |  |     .name          = TYPE_ETRAX_FS_PIC, | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .parent        = TYPE_SYS_BUS_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(struct etrax_pic), | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |     .instance_init = etraxfs_pic_init, | 
					
						
							| 
									
										
										
										
											2009-07-15 13:43:31 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | static void etraxfs_pic_register_types(void) | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     type_register_static(&etraxfs_pic_info); | 
					
						
							| 
									
										
										
										
											2009-05-18 22:24:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | type_init(etraxfs_pic_register_types) |