2012-04-16 01:29:19 +04:00
|
|
|
/*
|
|
|
|
* QEMU MIPS 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_MIPS_CPU_QOM_H
|
|
|
|
#define QEMU_MIPS_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-16 01:29:19 +04:00
|
|
|
|
|
|
|
#ifdef TARGET_MIPS64
|
|
|
|
#define TYPE_MIPS_CPU "mips64-cpu"
|
|
|
|
#else
|
|
|
|
#define TYPE_MIPS_CPU "mips-cpu"
|
|
|
|
#endif
|
|
|
|
|
2022-02-14 19:08:40 +03:00
|
|
|
OBJECT_DECLARE_CPU_TYPE(MIPSCPU, MIPSCPUClass, MIPS_CPU)
|
2012-04-16 01:29:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MIPSCPUClass:
|
2013-01-16 06:48:37 +04:00
|
|
|
* @parent_realize: The parent class' realize handler.
|
2022-11-24 14:50:13 +03:00
|
|
|
* @parent_phases: The parent class' reset phase handlers.
|
2012-04-16 01:29:19 +04:00
|
|
|
*
|
|
|
|
* A MIPS CPU model.
|
|
|
|
*/
|
2020-09-03 23:43:22 +03:00
|
|
|
struct MIPSCPUClass {
|
2012-04-16 01:29:19 +04:00
|
|
|
/*< private >*/
|
|
|
|
CPUClass parent_class;
|
|
|
|
/*< public >*/
|
|
|
|
|
2013-01-16 06:48:37 +04:00
|
|
|
DeviceRealize parent_realize;
|
2022-11-24 14:50:13 +03:00
|
|
|
ResettablePhases parent_phases;
|
2017-09-20 22:49:33 +03:00
|
|
|
const struct mips_def_t *cpu_def;
|
2021-02-27 23:44:00 +03:00
|
|
|
|
|
|
|
/* Used for the jazz board to modify mips_cpu_do_transaction_failed. */
|
|
|
|
bool no_data_aborts;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2012-04-16 01:29:19 +04:00
|
|
|
|
2013-02-02 13:57:51 +04:00
|
|
|
|
2012-04-16 01:29:19 +04:00
|
|
|
#endif
|