1fcf5ef2aSThomas Huth /* 2fcf5ef2aSThomas Huth * QEMU CRIS CPU 3fcf5ef2aSThomas Huth * 4fcf5ef2aSThomas Huth * Copyright (c) 2012 SUSE LINUX Products GmbH 5fcf5ef2aSThomas Huth * 6fcf5ef2aSThomas Huth * This library is free software; you can redistribute it and/or 7fcf5ef2aSThomas Huth * modify it under the terms of the GNU Lesser General Public 8fcf5ef2aSThomas Huth * License as published by the Free Software Foundation; either 9fcf5ef2aSThomas Huth * version 2.1 of the License, or (at your option) any later version. 10fcf5ef2aSThomas Huth * 11fcf5ef2aSThomas Huth * This library is distributed in the hope that it will be useful, 12fcf5ef2aSThomas Huth * but WITHOUT ANY WARRANTY; without even the implied warranty of 13fcf5ef2aSThomas Huth * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14fcf5ef2aSThomas Huth * Lesser General Public License for more details. 15fcf5ef2aSThomas Huth * 16fcf5ef2aSThomas Huth * You should have received a copy of the GNU Lesser General Public 17fcf5ef2aSThomas Huth * License along with this library; if not, see 18fcf5ef2aSThomas Huth * <http://www.gnu.org/licenses/lgpl-2.1.html> 19fcf5ef2aSThomas Huth */ 20fcf5ef2aSThomas Huth #ifndef QEMU_CRIS_CPU_QOM_H 21fcf5ef2aSThomas Huth #define QEMU_CRIS_CPU_QOM_H 22fcf5ef2aSThomas Huth 232e5b09fdSMarkus Armbruster #include "hw/core/cpu.h" 24*db1015e9SEduardo Habkost #include "qom/object.h" 25fcf5ef2aSThomas Huth 26fcf5ef2aSThomas Huth #define TYPE_CRIS_CPU "cris-cpu" 27fcf5ef2aSThomas Huth 28*db1015e9SEduardo Habkost typedef struct CRISCPU CRISCPU; 29*db1015e9SEduardo Habkost typedef struct CRISCPUClass CRISCPUClass; 30fcf5ef2aSThomas Huth #define CRIS_CPU_CLASS(klass) \ 31fcf5ef2aSThomas Huth OBJECT_CLASS_CHECK(CRISCPUClass, (klass), TYPE_CRIS_CPU) 32fcf5ef2aSThomas Huth #define CRIS_CPU(obj) \ 33fcf5ef2aSThomas Huth OBJECT_CHECK(CRISCPU, (obj), TYPE_CRIS_CPU) 34fcf5ef2aSThomas Huth #define CRIS_CPU_GET_CLASS(obj) \ 35fcf5ef2aSThomas Huth OBJECT_GET_CLASS(CRISCPUClass, (obj), TYPE_CRIS_CPU) 36fcf5ef2aSThomas Huth 37fcf5ef2aSThomas Huth /** 38fcf5ef2aSThomas Huth * CRISCPUClass: 39fcf5ef2aSThomas Huth * @parent_realize: The parent class' realize handler. 40fcf5ef2aSThomas Huth * @parent_reset: The parent class' reset handler. 41fcf5ef2aSThomas Huth * @vr: Version Register value. 42fcf5ef2aSThomas Huth * 43fcf5ef2aSThomas Huth * A CRIS CPU model. 44fcf5ef2aSThomas Huth */ 45*db1015e9SEduardo Habkost struct CRISCPUClass { 46fcf5ef2aSThomas Huth /*< private >*/ 47fcf5ef2aSThomas Huth CPUClass parent_class; 48fcf5ef2aSThomas Huth /*< public >*/ 49fcf5ef2aSThomas Huth 50fcf5ef2aSThomas Huth DeviceRealize parent_realize; 51781c67caSPeter Maydell DeviceReset parent_reset; 52fcf5ef2aSThomas Huth 53fcf5ef2aSThomas Huth uint32_t vr; 54*db1015e9SEduardo Habkost }; 55fcf5ef2aSThomas Huth 56fcf5ef2aSThomas Huth 57fcf5ef2aSThomas Huth #endif 58