| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-10-28 23:42:18 +00:00
										 |  |  |  * Heathrow PIC support (OldWorld PowerMac) | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-10-28 23:42:18 +00:00
										 |  |  |  * Copyright (c) 2005-2007 Fabrice Bellard | 
					
						
							|  |  |  |  * Copyright (c) 2007 Jocelyn Mayer | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:19 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/ppc/mac.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | #include "hw/intc/heathrow_pic.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:35 +00:00
										 |  |  | #include "trace.h"
 | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static inline int heathrow_check_irq(HeathrowPICState *pic) | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return (pic->events | (pic->levels & pic->level_triggered)) & pic->mask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* update the CPU irq state */ | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static void heathrow_update_irq(HeathrowState *s) | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     if (heathrow_check_irq(&s->pics[0]) || | 
					
						
							|  |  |  |             heathrow_check_irq(&s->pics[1])) { | 
					
						
							| 
									
										
										
										
											2007-10-28 23:42:18 +00:00
										 |  |  |         qemu_irq_raise(s->irqs[0]); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2007-10-28 23:42:18 +00:00
										 |  |  |         qemu_irq_lower(s->irqs[0]); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static void heathrow_write(void *opaque, hwaddr addr, | 
					
						
							|  |  |  |                            uint64_t value, unsigned size) | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     HeathrowState *s = opaque; | 
					
						
							|  |  |  |     HeathrowPICState *pic; | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     unsigned int n; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     n = ((addr & 0xfff) - 0x10) >> 4; | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:35 +00:00
										 |  |  |     trace_heathrow_write(addr, n, value); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     if (n >= 2) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     pic = &s->pics[n]; | 
					
						
							|  |  |  |     switch(addr & 0xf) { | 
					
						
							|  |  |  |     case 0x04: | 
					
						
							|  |  |  |         pic->mask = value; | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |         heathrow_update_irq(s); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 0x08: | 
					
						
							|  |  |  |         /* do not reset level triggered IRQs */ | 
					
						
							|  |  |  |         value &= ~pic->level_triggered; | 
					
						
							|  |  |  |         pic->events &= ~value; | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |         heathrow_update_irq(s); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static uint64_t heathrow_read(void *opaque, hwaddr addr, | 
					
						
							|  |  |  |                               unsigned size) | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     HeathrowState *s = opaque; | 
					
						
							|  |  |  |     HeathrowPICState *pic; | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     unsigned int n; | 
					
						
							|  |  |  |     uint32_t value; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     n = ((addr & 0xfff) - 0x10) >> 4; | 
					
						
							|  |  |  |     if (n >= 2) { | 
					
						
							|  |  |  |         value = 0; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         pic = &s->pics[n]; | 
					
						
							|  |  |  |         switch(addr & 0xf) { | 
					
						
							|  |  |  |         case 0x0: | 
					
						
							|  |  |  |             value = pic->events; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x4: | 
					
						
							|  |  |  |             value = pic->mask; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0xc: | 
					
						
							|  |  |  |             value = pic->levels; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             value = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:35 +00:00
										 |  |  |     trace_heathrow_read(addr, n, value); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     return value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static const MemoryRegionOps heathrow_ops = { | 
					
						
							|  |  |  |     .read = heathrow_read, | 
					
						
							|  |  |  |     .write = heathrow_write, | 
					
						
							| 
									
										
										
										
											2011-09-13 10:41:23 +02:00
										 |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static void heathrow_set_irq(void *opaque, int num, int level) | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     HeathrowState *s = opaque; | 
					
						
							|  |  |  |     HeathrowPICState *pic; | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     unsigned int irq_bit; | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:35 +00:00
										 |  |  |     int last_level; | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pic = &s->pics[1 - (num >> 5)]; | 
					
						
							|  |  |  |     irq_bit = 1 << (num & 0x1f); | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:35 +00:00
										 |  |  |     last_level = (pic->levels & irq_bit) ? 1 : 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  |     if (level) { | 
					
						
							|  |  |  |         pic->events |= irq_bit & ~pic->level_triggered; | 
					
						
							|  |  |  |         pic->levels |= irq_bit; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         pic->levels &= ~irq_bit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (last_level != level) { | 
					
						
							|  |  |  |         trace_heathrow_set_irq(num, level); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     heathrow_update_irq(s); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-02 13:17:23 +01:00
										 |  |  | static const VMStateDescription vmstate_heathrow_pic_one = { | 
					
						
							|  |  |  |     .name = "heathrow_pic_one", | 
					
						
							|  |  |  |     .version_id = 0, | 
					
						
							|  |  |  |     .minimum_version_id = 0, | 
					
						
							| 
									
										
										
										
											2014-04-16 15:24:04 +02:00
										 |  |  |     .fields = (VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |         VMSTATE_UINT32(events, HeathrowPICState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(mask, HeathrowPICState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(levels, HeathrowPICState), | 
					
						
							|  |  |  |         VMSTATE_UINT32(level_triggered, HeathrowPICState), | 
					
						
							| 
									
										
										
										
											2010-12-02 13:17:23 +01:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-12-30 19:01:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static const VMStateDescription vmstate_heathrow = { | 
					
						
							| 
									
										
										
										
											2010-12-02 13:17:23 +01:00
										 |  |  |     .name = "heathrow_pic", | 
					
						
							|  |  |  |     .version_id = 1, | 
					
						
							|  |  |  |     .minimum_version_id = 1, | 
					
						
							| 
									
										
										
										
											2014-04-16 15:24:04 +02:00
										 |  |  |     .fields = (VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |         VMSTATE_STRUCT_ARRAY(pics, HeathrowState, 2, 1, | 
					
						
							|  |  |  |                              vmstate_heathrow_pic_one, HeathrowPICState), | 
					
						
							| 
									
										
										
										
											2010-12-02 13:17:23 +01:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-12-30 19:01:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static void heathrow_reset(DeviceState *d) | 
					
						
							| 
									
										
										
										
											2008-12-28 18:27:10 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     HeathrowState *s = HEATHROW(d); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->pics[0].level_triggered = 0; | 
					
						
							|  |  |  |     s->pics[1].level_triggered = 0x1ff00000; | 
					
						
							| 
									
										
										
										
											2008-12-28 18:27:10 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | static void heathrow_init(Object *obj) | 
					
						
							| 
									
										
										
										
											2008-12-28 18:27:10 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  |     HeathrowState *s = HEATHROW(obj); | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:36 +00:00
										 |  |  |     SysBusDevice *sbd = SYS_BUS_DEVICE(obj); | 
					
						
							| 
									
										
										
										
											2008-12-28 18:27:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-28 23:42:18 +00:00
										 |  |  |     /* only 1 CPU */ | 
					
						
							| 
									
										
										
										
											2018-03-06 22:01:54 +00:00
										 |  |  |     qdev_init_gpio_out(DEVICE(obj), s->irqs, 1); | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-06 22:01:54 +00:00
										 |  |  |     qdev_init_gpio_in(DEVICE(obj), heathrow_set_irq, HEATHROW_NUM_IRQS); | 
					
						
							| 
									
										
										
										
											2007-10-28 23:42:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-06 22:01:54 +00:00
										 |  |  |     memory_region_init_io(&s->mem, OBJECT(s), &heathrow_ops, s, | 
					
						
							|  |  |  |                           "heathrow-pic", 0x1000); | 
					
						
							|  |  |  |     sysbus_init_mmio(sbd, &s->mem); | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void heathrow_class_init(ObjectClass *oc, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(oc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dc->reset = heathrow_reset; | 
					
						
							|  |  |  |     dc->vmsd = &vmstate_heathrow; | 
					
						
							|  |  |  |     set_bit(DEVICE_CATEGORY_MISC, dc->categories); | 
					
						
							| 
									
										
										
										
											2005-06-05 15:21:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-28 20:32:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo heathrow_type_info = { | 
					
						
							|  |  |  |     .name = TYPE_HEATHROW, | 
					
						
							|  |  |  |     .parent = TYPE_SYS_BUS_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(HeathrowState), | 
					
						
							|  |  |  |     .instance_init = heathrow_init, | 
					
						
							|  |  |  |     .class_init = heathrow_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void heathrow_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&heathrow_type_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(heathrow_register_types) |