| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * ARM dummy L210, L220, PL310 cache controller. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2010-2012 Calxeda | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  * under the terms and conditions of the GNU General Public License, | 
					
						
							|  |  |  |  * version 2 or any later version, as published by the Free Software | 
					
						
							|  |  |  |  * Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope it will be useful, but WITHOUT | 
					
						
							|  |  |  |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |  * more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |  * this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:17 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2015-12-15 13:16:16 +01:00
										 |  |  | #include "qemu/log.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | #include "qom/object.h"
 | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* L2C-310 r3p2 */ | 
					
						
							|  |  |  | #define CACHE_ID 0x410000c8
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-26 21:20:52 +02:00
										 |  |  | #define TYPE_ARM_L2X0 "l2x0"
 | 
					
						
							| 
									
										
										
										
											2020-09-16 14:25:19 -04:00
										 |  |  | OBJECT_DECLARE_SIMPLE_TYPE(L2x0State, ARM_L2X0) | 
					
						
							| 
									
										
										
										
											2013-07-26 21:20:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | struct L2x0State { | 
					
						
							| 
									
										
										
										
											2013-07-26 21:20:52 +02:00
										 |  |  |     SysBusDevice parent_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |     MemoryRegion iomem; | 
					
						
							|  |  |  |     uint32_t cache_type; | 
					
						
							|  |  |  |     uint32_t ctrl; | 
					
						
							|  |  |  |     uint32_t aux_ctrl; | 
					
						
							|  |  |  |     uint32_t data_ctrl; | 
					
						
							|  |  |  |     uint32_t tag_ctrl; | 
					
						
							|  |  |  |     uint32_t filter_start; | 
					
						
							|  |  |  |     uint32_t filter_end; | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const VMStateDescription vmstate_l2x0 = { | 
					
						
							|  |  |  |     .name = "l2x0", | 
					
						
							|  |  |  |     .version_id = 1, | 
					
						
							|  |  |  |     .minimum_version_id = 1, | 
					
						
							|  |  |  |     .fields = (VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2013-07-26 21:18:35 +02:00
										 |  |  |         VMSTATE_UINT32(ctrl, L2x0State), | 
					
						
							|  |  |  |         VMSTATE_UINT32(aux_ctrl, L2x0State), | 
					
						
							|  |  |  |         VMSTATE_UINT32(data_ctrl, L2x0State), | 
					
						
							|  |  |  |         VMSTATE_UINT32(tag_ctrl, L2x0State), | 
					
						
							|  |  |  |         VMSTATE_UINT32(filter_start, L2x0State), | 
					
						
							|  |  |  |         VMSTATE_UINT32(filter_end, L2x0State), | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t l2x0_priv_read(void *opaque, hwaddr offset, | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |                                unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t cache_data; | 
					
						
							| 
									
										
										
										
											2013-07-26 21:18:35 +02:00
										 |  |  |     L2x0State *s = (L2x0State *)opaque; | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |     offset &= 0xfff; | 
					
						
							|  |  |  |     if (offset >= 0x730 && offset < 0x800) { | 
					
						
							|  |  |  |         return 0; /* cache ops complete */ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     switch (offset) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |         return CACHE_ID; | 
					
						
							|  |  |  |     case 0x4: | 
					
						
							|  |  |  |         /* aux_ctrl values affect cache_type values */ | 
					
						
							|  |  |  |         cache_data = (s->aux_ctrl & (7 << 17)) >> 15; | 
					
						
							|  |  |  |         cache_data |= (s->aux_ctrl & (1 << 16)) >> 16; | 
					
						
							|  |  |  |         return s->cache_type |= (cache_data << 18) | (cache_data << 6); | 
					
						
							|  |  |  |     case 0x100: | 
					
						
							|  |  |  |         return s->ctrl; | 
					
						
							|  |  |  |     case 0x104: | 
					
						
							|  |  |  |         return s->aux_ctrl; | 
					
						
							|  |  |  |     case 0x108: | 
					
						
							|  |  |  |         return s->tag_ctrl; | 
					
						
							|  |  |  |     case 0x10C: | 
					
						
							|  |  |  |         return s->data_ctrl; | 
					
						
							|  |  |  |     case 0xC00: | 
					
						
							|  |  |  |         return s->filter_start; | 
					
						
							|  |  |  |     case 0xC04: | 
					
						
							|  |  |  |         return s->filter_end; | 
					
						
							|  |  |  |     case 0xF40: | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     case 0xF60: | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     case 0xF80: | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2012-10-30 07:45:10 +00:00
										 |  |  |         qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                       "l2x0_priv_read: Bad offset %x\n", (int)offset); | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void l2x0_priv_write(void *opaque, hwaddr offset, | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |                             uint64_t value, unsigned size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-26 21:18:35 +02:00
										 |  |  |     L2x0State *s = (L2x0State *)opaque; | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |     offset &= 0xfff; | 
					
						
							|  |  |  |     if (offset >= 0x730 && offset < 0x800) { | 
					
						
							|  |  |  |         /* ignore */ | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     switch (offset) { | 
					
						
							|  |  |  |     case 0x100: | 
					
						
							|  |  |  |         s->ctrl = value & 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x104: | 
					
						
							|  |  |  |         s->aux_ctrl = value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x108: | 
					
						
							|  |  |  |         s->tag_ctrl = value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0x10C: | 
					
						
							|  |  |  |         s->data_ctrl = value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0xC00: | 
					
						
							|  |  |  |         s->filter_start = value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0xC04: | 
					
						
							|  |  |  |         s->filter_end = value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0xF40: | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     case 0xF60: | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     case 0xF80: | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2012-10-30 07:45:10 +00:00
										 |  |  |         qemu_log_mask(LOG_GUEST_ERROR, | 
					
						
							|  |  |  |                       "l2x0_priv_write: Bad offset %x\n", (int)offset); | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void l2x0_priv_reset(DeviceState *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-26 21:20:52 +02:00
										 |  |  |     L2x0State *s = ARM_L2X0(dev); | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->ctrl = 0; | 
					
						
							|  |  |  |     s->aux_ctrl = 0x02020000; | 
					
						
							|  |  |  |     s->tag_ctrl = 0; | 
					
						
							|  |  |  |     s->data_ctrl = 0; | 
					
						
							|  |  |  |     s->filter_start = 0; | 
					
						
							|  |  |  |     s->filter_end = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const MemoryRegionOps l2x0_mem_ops = { | 
					
						
							|  |  |  |     .read = l2x0_priv_read, | 
					
						
							|  |  |  |     .write = l2x0_priv_write, | 
					
						
							|  |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							|  |  |  |  }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 15:59:14 +01:00
										 |  |  | static void l2x0_priv_init(Object *obj) | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-14 15:59:14 +01:00
										 |  |  |     L2x0State *s = ARM_L2X0(obj); | 
					
						
							|  |  |  |     SysBusDevice *dev = SYS_BUS_DEVICE(obj); | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 15:59:14 +01:00
										 |  |  |     memory_region_init_io(&s->iomem, obj, &l2x0_mem_ops, s, | 
					
						
							| 
									
										
										
										
											2013-06-06 21:25:08 -04:00
										 |  |  |                           "l2x0_cc", 0x1000); | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  |     sysbus_init_mmio(dev, &s->iomem); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  | static Property l2x0_properties[] = { | 
					
						
							| 
									
										
										
										
											2013-07-26 21:18:35 +02:00
										 |  |  |     DEFINE_PROP_UINT32("cache-type", L2x0State, cache_type, 0x1c100100), | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     DEFINE_PROP_END_OF_LIST(), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | static void l2x0_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     dc->vmsd = &vmstate_l2x0; | 
					
						
							| 
									
										
										
										
											2020-01-10 19:30:32 +04:00
										 |  |  |     device_class_set_props(dc, l2x0_properties); | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     dc->reset = l2x0_priv_reset; | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo l2x0_info = { | 
					
						
							| 
									
										
										
										
											2013-07-26 21:20:52 +02:00
										 |  |  |     .name = TYPE_ARM_L2X0, | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .parent = TYPE_SYS_BUS_DEVICE, | 
					
						
							| 
									
										
										
										
											2013-07-26 21:18:35 +02:00
										 |  |  |     .instance_size = sizeof(L2x0State), | 
					
						
							| 
									
										
										
										
											2016-06-14 15:59:14 +01:00
										 |  |  |     .instance_init = l2x0_priv_init, | 
					
						
							| 
									
										
										
										
											2012-01-24 13:12:29 -06:00
										 |  |  |     .class_init = l2x0_class_init, | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | static void l2x0_register_types(void) | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     type_register_static(&l2x0_info); | 
					
						
							| 
									
										
										
										
											2011-12-29 06:19:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | type_init(l2x0_register_types) |