4 * Copyright (c) 2012 Linaro Limited
5 * Written by Peter Maydell
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "arm_gic_common.h"
26 /* Number of SGI target-list bits */
27 #define GIC_TARGETLIST_BITS 8
29 #define TYPE_ARM_GIC "arm_gic"
30 #define ARM_GIC(obj) \
31 OBJECT_CHECK(GICState, (obj), TYPE_ARM_GIC)
32 #define ARM_GIC_CLASS(klass) \
33 OBJECT_CLASS_CHECK(ARMGICClass, (klass), TYPE_ARM_GIC)
34 #define ARM_GIC_GET_CLASS(obj) \
35 OBJECT_GET_CLASS(ARMGICClass, (obj), TYPE_ARM_GIC)
37 typedef struct ARMGICClass
{
39 ARMGICCommonClass parent_class
;
42 DeviceRealize parent_realize
;