1 /* 2 * Xilinx Zynq MPSoC emulation 3 * 4 * Copyright (C) 2015 Xilinx Inc 5 * Written by Peter Crosthwaite <peter.crosthwaite@xilinx.com> 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the 9 * Free Software Foundation; either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, but WITHOUT 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 15 * for more details. 16 */ 17 18 #ifndef XLNX_ZYNQMP_H 19 20 #include "qemu-common.h" 21 #include "hw/arm/arm.h" 22 #include "hw/intc/arm_gic.h" 23 24 #define TYPE_XLNX_ZYNQMP "xlnx,zynqmp" 25 #define XLNX_ZYNQMP(obj) OBJECT_CHECK(XlnxZynqMPState, (obj), \ 26 TYPE_XLNX_ZYNQMP) 27 28 #define XLNX_ZYNQMP_NUM_CPUS 4 29 30 #define XLNX_ZYNQMP_GIC_REGIONS 2 31 32 /* ZynqMP maps the ARM GIC regions (GICC, GICD ...) at consecutive 64k offsets 33 * and under-decodes the 64k region. This mirrors the 4k regions to every 4k 34 * aligned address in the 64k region. To implement each GIC region needs a 35 * number of memory region aliases. 36 */ 37 38 #define XLNX_ZYNQMP_GIC_REGION_SIZE 0x4000 39 #define XLNX_ZYNQMP_GIC_ALIASES (0x10000 / XLNX_ZYNQMP_GIC_REGION_SIZE - 1) 40 41 typedef struct XlnxZynqMPState { 42 /*< private >*/ 43 DeviceState parent_obj; 44 45 /*< public >*/ 46 ARMCPU cpu[XLNX_ZYNQMP_NUM_CPUS]; 47 GICState gic; 48 MemoryRegion gic_mr[XLNX_ZYNQMP_GIC_REGIONS][XLNX_ZYNQMP_GIC_ALIASES]; 49 } XlnxZynqMPState; 50 51 #define XLNX_ZYNQMP_H 52 #endif 53