2012-04-05 03:29:40 +04:00
|
|
|
/*
|
|
|
|
* QEMU SPARC CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see
|
|
|
|
* <http://www.gnu.org/licenses/lgpl-2.1.html>
|
|
|
|
*/
|
|
|
|
#ifndef QEMU_SPARC_CPU_QOM_H
|
|
|
|
#define QEMU_SPARC_CPU_QOM_H
|
|
|
|
|
2019-07-09 18:20:52 +03:00
|
|
|
#include "hw/core/cpu.h"
|
2020-09-03 23:43:22 +03:00
|
|
|
#include "qom/object.h"
|
2012-04-05 03:29:40 +04:00
|
|
|
|
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
#define TYPE_SPARC_CPU "sparc64-cpu"
|
|
|
|
#else
|
|
|
|
#define TYPE_SPARC_CPU "sparc-cpu"
|
|
|
|
#endif
|
|
|
|
|
2022-02-14 19:08:40 +03:00
|
|
|
OBJECT_DECLARE_CPU_TYPE(SPARCCPU, SPARCCPUClass, SPARC_CPU)
|
2012-04-05 03:29:40 +04:00
|
|
|
|
2017-08-24 19:31:25 +03:00
|
|
|
typedef struct sparc_def_t sparc_def_t;
|
2012-04-05 03:29:40 +04:00
|
|
|
/**
|
|
|
|
* SPARCCPUClass:
|
2013-01-16 07:13:19 +04:00
|
|
|
* @parent_realize: The parent class' realize handler.
|
2022-11-24 14:50:20 +03:00
|
|
|
* @parent_phases: The parent class' reset phase handlers.
|
2012-04-05 03:29:40 +04:00
|
|
|
*
|
|
|
|
* A SPARC CPU model.
|
|
|
|
*/
|
2020-09-03 23:43:22 +03:00
|
|
|
struct SPARCCPUClass {
|
2012-04-05 03:29:40 +04:00
|
|
|
CPUClass parent_class;
|
|
|
|
|
2013-01-16 07:13:19 +04:00
|
|
|
DeviceRealize parent_realize;
|
2022-11-24 14:50:20 +03:00
|
|
|
ResettablePhases parent_phases;
|
2017-08-24 19:31:25 +03:00
|
|
|
sparc_def_t *cpu_def;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2012-04-05 03:29:40 +04:00
|
|
|
|
2013-02-02 13:57:51 +04:00
|
|
|
|
2012-04-05 03:29:40 +04:00
|
|
|
#endif
|