2005-07-02 20:59:34 +00:00
|
|
|
/*
|
|
|
|
* PowerPC CPU initialization for qemu.
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2007-03-07 08:32:30 +00:00
|
|
|
* Copyright (c) 2003-2007 Jocelyn Mayer
|
2011-12-22 12:26:17 +00:00
|
|
|
* Copyright 2011 Freescale Semiconductor, Inc.
|
2005-07-02 20:59:34 +00:00
|
|
|
*
|
|
|
|
* 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 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
|
2009-07-16 20:47:01 +00:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2005-07-02 20:59:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* A lot of PowerPC definition have been included here.
|
|
|
|
* Most of them are not usable for now but have been kept
|
|
|
|
* inside "#if defined(TODO) ... #endif" statements to make tests easier.
|
|
|
|
*/
|
|
|
|
|
2012-10-24 09:12:21 +00:00
|
|
|
#include "disas/bfd.h"
|
2012-12-17 17:19:49 +00:00
|
|
|
#include "exec/gdbstub.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include <sysemu/kvm.h>
|
2011-10-12 22:40:32 +00:00
|
|
|
#include "kvm_ppc.h"
|
2012-12-17 17:20:04 +00:00
|
|
|
#include "sysemu/arch_init.h"
|
2013-01-23 17:20:38 +00:00
|
|
|
#include "sysemu/cpus.h"
|
2007-09-29 12:01:46 +00:00
|
|
|
|
2005-07-02 20:59:34 +00:00
|
|
|
//#define PPC_DUMP_CPU
|
|
|
|
//#define PPC_DEBUG_SPR
|
2007-11-17 23:02:20 +00:00
|
|
|
//#define PPC_DUMP_SPR_ACCESSES
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
#define TODO_USER_ONLY 1
|
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2007-04-09 22:45:36 +00:00
|
|
|
/* For user-mode emulation, we don't emulate any IRQ controller */
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#define PPC_IRQ_INIT_FN(name) \
|
|
|
|
static inline void glue(glue(ppc, name),_irq_init) (CPUPPCState *env) \
|
|
|
|
{ \
|
2007-04-09 22:45:36 +00:00
|
|
|
}
|
|
|
|
#else
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#define PPC_IRQ_INIT_FN(name) \
|
2007-04-09 22:45:36 +00:00
|
|
|
void glue(glue(ppc, name),_irq_init) (CPUPPCState *env);
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2007-10-01 01:27:10 +00:00
|
|
|
PPC_IRQ_INIT_FN(40x);
|
2007-04-09 22:45:36 +00:00
|
|
|
PPC_IRQ_INIT_FN(6xx);
|
2007-04-16 07:34:39 +00:00
|
|
|
PPC_IRQ_INIT_FN(970);
|
2011-04-01 04:15:19 +00:00
|
|
|
PPC_IRQ_INIT_FN(POWER7);
|
2009-03-02 16:42:32 +00:00
|
|
|
PPC_IRQ_INIT_FN(e500);
|
2007-04-09 22:45:36 +00:00
|
|
|
|
2005-07-02 20:59:34 +00:00
|
|
|
/* Generic callbacks:
|
|
|
|
* do nothing but store/retrieve spr value
|
|
|
|
*/
|
2012-06-21 11:39:48 +00:00
|
|
|
static void spr_load_dump_spr(int sprn)
|
|
|
|
{
|
|
|
|
#ifdef PPC_DUMP_SPR_ACCESSES
|
|
|
|
TCGv_i32 t0 = tcg_const_i32(sprn);
|
|
|
|
gen_helper_load_dump_spr(t0);
|
|
|
|
tcg_temp_free_i32(t0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_generic (void *opaque, int gprn, int sprn)
|
2007-04-16 07:10:48 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
gen_load_spr(cpu_gpr[gprn], sprn);
|
2012-06-21 11:39:48 +00:00
|
|
|
spr_load_dump_spr(sprn);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_store_dump_spr(int sprn)
|
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
#ifdef PPC_DUMP_SPR_ACCESSES
|
2012-06-21 11:39:48 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(sprn);
|
|
|
|
gen_helper_store_dump_spr(t0);
|
|
|
|
tcg_temp_free_i32(t0);
|
2008-12-07 13:40:29 +00:00
|
|
|
#endif
|
2007-04-16 07:10:48 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_generic (void *opaque, int sprn, int gprn)
|
2007-04-16 07:10:48 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
gen_store_spr(sprn, cpu_gpr[gprn]);
|
2012-06-21 11:39:48 +00:00
|
|
|
spr_store_dump_spr(sprn);
|
2008-12-07 13:40:29 +00:00
|
|
|
}
|
2007-04-16 07:10:48 +00:00
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2012-06-21 12:01:06 +00:00
|
|
|
static void spr_write_generic32(void *opaque, int sprn, int gprn)
|
|
|
|
{
|
|
|
|
#ifdef TARGET_PPC64
|
|
|
|
TCGv t0 = tcg_temp_new();
|
|
|
|
tcg_gen_ext32u_tl(t0, cpu_gpr[gprn]);
|
|
|
|
gen_store_spr(sprn, t0);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
spr_store_dump_spr(sprn);
|
|
|
|
#else
|
|
|
|
spr_write_generic(opaque, sprn, gprn);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_clear (void *opaque, int sprn, int gprn)
|
2007-04-16 07:10:48 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv t0 = tcg_temp_new();
|
|
|
|
TCGv t1 = tcg_temp_new();
|
|
|
|
gen_load_spr(t0, sprn);
|
|
|
|
tcg_gen_neg_tl(t1, cpu_gpr[gprn]);
|
|
|
|
tcg_gen_and_tl(t0, t0, t1);
|
|
|
|
gen_store_spr(sprn, t0);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
tcg_temp_free(t1);
|
2007-04-16 07:10:48 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR common to all PowerPC */
|
2005-07-02 20:59:34 +00:00
|
|
|
/* XER */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_xer (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2013-02-20 07:52:13 +00:00
|
|
|
gen_read_xer(cpu_gpr[gprn]);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_xer (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2013-02-20 07:52:13 +00:00
|
|
|
gen_write_xer(cpu_gpr[gprn]);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* LR */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_lr (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_gen_mov_tl(cpu_gpr[gprn], cpu_lr);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_lr (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_gen_mov_tl(cpu_lr, cpu_gpr[gprn]);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 15:45:10 +00:00
|
|
|
/* CFAR */
|
|
|
|
#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
|
|
|
|
static void spr_read_cfar (void *opaque, int gprn, int sprn)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_gpr[gprn], cpu_cfar);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_write_cfar (void *opaque, int sprn, int gprn)
|
|
|
|
{
|
|
|
|
tcg_gen_mov_tl(cpu_cfar, cpu_gpr[gprn]);
|
|
|
|
}
|
|
|
|
#endif /* defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY) */
|
|
|
|
|
2005-07-02 20:59:34 +00:00
|
|
|
/* CTR */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_ctr (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_gen_mov_tl(cpu_gpr[gprn], cpu_ctr);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_ctr (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_gen_mov_tl(cpu_ctr, cpu_gpr[gprn]);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* User read access to SPR */
|
|
|
|
/* USPRx */
|
|
|
|
/* UMMCRx */
|
|
|
|
/* UPMCx */
|
|
|
|
/* USIA */
|
|
|
|
/* UDECR */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_ureg (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
gen_load_spr(cpu_gpr[gprn], sprn + 0x10);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR common to all non-embedded PowerPC */
|
2005-07-02 20:59:34 +00:00
|
|
|
/* DECR */
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_decr (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_start();
|
|
|
|
}
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_decr(cpu_gpr[gprn], cpu_env);
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_end();
|
|
|
|
gen_stop_exception(opaque);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_decr (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_start();
|
|
|
|
}
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_decr(cpu_env, cpu_gpr[gprn]);
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_end();
|
|
|
|
gen_stop_exception(opaque);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR common to all non-embedded PowerPC, except 601 */
|
2005-07-02 20:59:34 +00:00
|
|
|
/* Time base */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_tbl (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_start();
|
|
|
|
}
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_tbl(cpu_gpr[gprn], cpu_env);
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_end();
|
|
|
|
gen_stop_exception(opaque);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_tbu (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_start();
|
|
|
|
}
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_tbu(cpu_gpr[gprn], cpu_env);
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_end();
|
|
|
|
gen_stop_exception(opaque);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2007-09-30 00:38:38 +00:00
|
|
|
__attribute__ (( unused ))
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_atbl (void *opaque, int gprn, int sprn)
|
2007-09-30 00:38:38 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_atbl(cpu_gpr[gprn], cpu_env);
|
2007-09-30 00:38:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__ (( unused ))
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_atbu (void *opaque, int gprn, int sprn)
|
2007-09-30 00:38:38 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_atbu(cpu_gpr[gprn], cpu_env);
|
2007-09-30 00:38:38 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_tbl (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_start();
|
|
|
|
}
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_tbl(cpu_env, cpu_gpr[gprn]);
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_end();
|
|
|
|
gen_stop_exception(opaque);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_tbu (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_start();
|
|
|
|
}
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_tbu(cpu_env, cpu_gpr[gprn]);
|
2011-02-15 08:39:54 +00:00
|
|
|
if (use_icount) {
|
|
|
|
gen_io_end();
|
|
|
|
gen_stop_exception(opaque);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
2007-09-30 00:38:38 +00:00
|
|
|
|
|
|
|
__attribute__ (( unused ))
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_atbl (void *opaque, int sprn, int gprn)
|
2007-09-30 00:38:38 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_atbl(cpu_env, cpu_gpr[gprn]);
|
2007-09-30 00:38:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__ (( unused ))
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_atbu (void *opaque, int sprn, int gprn)
|
2007-09-30 00:38:38 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_atbu(cpu_env, cpu_gpr[gprn]);
|
2007-09-30 00:38:38 +00:00
|
|
|
}
|
2011-04-01 04:15:12 +00:00
|
|
|
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
__attribute__ (( unused ))
|
|
|
|
static void spr_read_purr (void *opaque, int gprn, int sprn)
|
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_purr(cpu_gpr[gprn], cpu_env);
|
2011-04-01 04:15:12 +00:00
|
|
|
}
|
|
|
|
#endif
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-07-02 20:59:34 +00:00
|
|
|
/* IBAT0U...IBAT0U */
|
|
|
|
/* IBAT0L...IBAT7L */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_ibat (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, IBAT[sprn & 1][(sprn - SPR_IBAT0U) / 2]));
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_ibat_h (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, IBAT[sprn & 1][(sprn - SPR_IBAT4U) / 2]));
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_ibatu (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32((sprn - SPR_IBAT0U) / 2);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_ibatu(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_ibatu_h (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2009-10-15 17:01:19 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(((sprn - SPR_IBAT4U) / 2) + 4);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_ibatu(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_ibatl (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32((sprn - SPR_IBAT0L) / 2);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_ibatl(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_ibatl_h (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2009-10-15 17:01:19 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(((sprn - SPR_IBAT4L) / 2) + 4);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_ibatl(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DBAT0U...DBAT7U */
|
|
|
|
/* DBAT0L...DBAT7L */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_dbat (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, DBAT[sprn & 1][(sprn - SPR_DBAT0U) / 2]));
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_dbat_h (void *opaque, int gprn, int sprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, DBAT[sprn & 1][((sprn - SPR_DBAT4U) / 2) + 4]));
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_dbatu (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32((sprn - SPR_DBAT0U) / 2);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_dbatu(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_dbatu_h (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(((sprn - SPR_DBAT4U) / 2) + 4);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_dbatu(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_dbatl (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32((sprn - SPR_DBAT0L) / 2);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_dbatl(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_dbatl_h (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(((sprn - SPR_DBAT4L) / 2) + 4);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_dbatl(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SDR1 */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_sdr1 (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2012-05-30 04:23:38 +00:00
|
|
|
gen_helper_store_sdr1(cpu_env, cpu_gpr[gprn]);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* 64 bits PowerPC specific SPRs */
|
|
|
|
/* ASR */
|
2007-10-01 04:48:45 +00:00
|
|
|
#if defined(TARGET_PPC64)
|
2009-02-28 18:39:42 +00:00
|
|
|
static void spr_read_hior (void *opaque, int gprn, int sprn)
|
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, excp_prefix));
|
2009-02-28 18:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_write_hior (void *opaque, int sprn, int gprn)
|
|
|
|
{
|
|
|
|
TCGv t0 = tcg_temp_new();
|
|
|
|
tcg_gen_andi_tl(t0, cpu_gpr[gprn], 0x3FFFFF00000ULL);
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, excp_prefix));
|
2009-02-28 18:39:42 +00:00
|
|
|
tcg_temp_free(t0);
|
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_asr (void *opaque, int gprn, int sprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, asr));
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_asr (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:38 +00:00
|
|
|
gen_helper_store_asr(cpu_env, cpu_gpr[gprn]);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-03-07 08:32:30 +00:00
|
|
|
|
|
|
|
/* PowerPC 601 specific registers */
|
|
|
|
/* RTC */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_601_rtcl (void *opaque, int gprn, int sprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_601_rtcl(cpu_gpr[gprn], cpu_env);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_601_rtcu (void *opaque, int gprn, int sprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_601_rtcu(cpu_gpr[gprn], cpu_env);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_601_rtcu (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_601_rtcu(cpu_env, cpu_gpr[gprn]);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_601_rtcl (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_601_rtcl(cpu_env, cpu_gpr[gprn]);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
2007-11-04 02:55:33 +00:00
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_hid0_601 (void *opaque, int sprn, int gprn)
|
2007-11-04 02:55:33 +00:00
|
|
|
{
|
|
|
|
DisasContext *ctx = opaque;
|
|
|
|
|
2012-05-30 04:23:38 +00:00
|
|
|
gen_helper_store_hid0_601(cpu_env, cpu_gpr[gprn]);
|
2007-11-04 02:55:33 +00:00
|
|
|
/* Must stop the translation as endianness may have changed */
|
2008-12-11 22:42:14 +00:00
|
|
|
gen_stop_exception(ctx);
|
2007-11-04 02:55:33 +00:00
|
|
|
}
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Unified bats */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_601_ubat (void *opaque, int gprn, int sprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, IBAT[sprn & 1][(sprn - SPR_IBAT0U) / 2]));
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_601_ubatu (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32((sprn - SPR_IBAT0U) / 2);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_601_batl(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_601_ubatl (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32((sprn - SPR_IBAT0U) / 2);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_store_601_batu(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* PowerPC 40x specific registers */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_40x_pit (void *opaque, int gprn, int sprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_load_40x_pit(cpu_gpr[gprn], cpu_env);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_40x_pit (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_40x_pit(cpu_env, cpu_gpr[gprn]);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_40x_dbcr0 (void *opaque, int sprn, int gprn)
|
2007-04-16 20:09:45 +00:00
|
|
|
{
|
|
|
|
DisasContext *ctx = opaque;
|
|
|
|
|
2012-05-30 04:23:38 +00:00
|
|
|
gen_helper_store_40x_dbcr0(cpu_env, cpu_gpr[gprn]);
|
2007-04-16 20:09:45 +00:00
|
|
|
/* We must stop translation as we may have rebooted */
|
2008-12-11 22:42:14 +00:00
|
|
|
gen_stop_exception(ctx);
|
2007-04-16 20:09:45 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_40x_sler (void *opaque, int sprn, int gprn)
|
2007-04-24 06:44:14 +00:00
|
|
|
{
|
2012-05-30 04:23:38 +00:00
|
|
|
gen_helper_store_40x_sler(cpu_env, cpu_gpr[gprn]);
|
2007-04-24 06:44:14 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_booke_tcr (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_booke_tcr(cpu_env, cpu_gpr[gprn]);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_booke_tsr (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-05-30 04:23:36 +00:00
|
|
|
gen_helper_store_booke_tsr(cpu_env, cpu_gpr[gprn]);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* PowerPC 403 specific registers */
|
|
|
|
/* PBL1 / PBU1 / PBL2 / PBU2 */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_read_403_pbr (void *opaque, int gprn, int sprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(cpu_gpr[gprn], cpu_env, offsetof(CPUPPCState, pb[sprn - SPR_403_PBL1]));
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_403_pbr (void *opaque, int sprn, int gprn)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(sprn - SPR_403_PBL1);
|
2012-05-30 04:23:38 +00:00
|
|
|
gen_helper_store_403_pbr(cpu_env, t0, cpu_gpr[gprn]);
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_pir (void *opaque, int sprn, int gprn)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv t0 = tcg_temp_new();
|
|
|
|
tcg_gen_andi_tl(t0, cpu_gpr[gprn], 0xF);
|
|
|
|
gen_store_spr(SPR_PIR, t0);
|
|
|
|
tcg_temp_free(t0);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2009-03-09 06:27:14 +00:00
|
|
|
/* SPE specific registers */
|
|
|
|
static void spr_read_spefscr (void *opaque, int gprn, int sprn)
|
|
|
|
{
|
|
|
|
TCGv_i32 t0 = tcg_temp_new_i32();
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_i32(t0, cpu_env, offsetof(CPUPPCState, spe_fscr));
|
2009-03-09 06:27:14 +00:00
|
|
|
tcg_gen_extu_i32_tl(cpu_gpr[gprn], t0);
|
|
|
|
tcg_temp_free_i32(t0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_write_spefscr (void *opaque, int sprn, int gprn)
|
|
|
|
{
|
|
|
|
TCGv_i32 t0 = tcg_temp_new_i32();
|
|
|
|
tcg_gen_trunc_tl_i32(t0, cpu_gpr[gprn]);
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_st_i32(t0, cpu_env, offsetof(CPUPPCState, spe_fscr));
|
2009-03-09 06:27:14 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
|
|
|
}
|
|
|
|
|
2007-10-01 01:32:49 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
/* Callback used to write the exception vector base */
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_excp_prefix (void *opaque, int sprn, int gprn)
|
2007-10-01 01:32:49 +00:00
|
|
|
{
|
2008-12-07 13:40:29 +00:00
|
|
|
TCGv t0 = tcg_temp_new();
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(t0, cpu_env, offsetof(CPUPPCState, ivpr_mask));
|
2008-12-07 13:40:29 +00:00
|
|
|
tcg_gen_and_tl(t0, t0, cpu_gpr[gprn]);
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, excp_prefix));
|
2008-12-07 13:40:29 +00:00
|
|
|
gen_store_spr(sprn, t0);
|
2009-03-09 06:27:24 +00:00
|
|
|
tcg_temp_free(t0);
|
2007-10-01 01:32:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-07 13:40:29 +00:00
|
|
|
static void spr_write_excp_vector (void *opaque, int sprn, int gprn)
|
2007-10-01 01:32:49 +00:00
|
|
|
{
|
|
|
|
DisasContext *ctx = opaque;
|
2012-01-19 18:31:51 +00:00
|
|
|
int sprn_offs;
|
2007-10-01 01:32:49 +00:00
|
|
|
|
|
|
|
if (sprn >= SPR_BOOKE_IVOR0 && sprn <= SPR_BOOKE_IVOR15) {
|
2012-01-19 18:31:51 +00:00
|
|
|
sprn_offs = sprn - SPR_BOOKE_IVOR0;
|
2007-10-01 01:32:49 +00:00
|
|
|
} else if (sprn >= SPR_BOOKE_IVOR32 && sprn <= SPR_BOOKE_IVOR37) {
|
2012-01-19 18:31:51 +00:00
|
|
|
sprn_offs = sprn - SPR_BOOKE_IVOR32 + 32;
|
|
|
|
} else if (sprn >= SPR_BOOKE_IVOR38 && sprn <= SPR_BOOKE_IVOR42) {
|
|
|
|
sprn_offs = sprn - SPR_BOOKE_IVOR38 + 38;
|
2007-10-01 01:32:49 +00:00
|
|
|
} else {
|
|
|
|
printf("Trying to write an unknown exception vector %d %03x\n",
|
|
|
|
sprn, sprn);
|
2008-12-11 22:42:14 +00:00
|
|
|
gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
|
2012-01-19 18:31:51 +00:00
|
|
|
return;
|
2007-10-01 01:32:49 +00:00
|
|
|
}
|
2012-01-19 18:31:51 +00:00
|
|
|
|
|
|
|
TCGv t0 = tcg_temp_new();
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_ld_tl(t0, cpu_env, offsetof(CPUPPCState, ivor_mask));
|
2012-01-19 18:31:51 +00:00
|
|
|
tcg_gen_and_tl(t0, t0, cpu_gpr[gprn]);
|
2012-03-14 00:38:22 +00:00
|
|
|
tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, excp_vectors[sprn_offs]));
|
2012-01-19 18:31:51 +00:00
|
|
|
gen_store_spr(sprn, t0);
|
|
|
|
tcg_temp_free(t0);
|
2007-10-01 01:32:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-02-03 19:55:59 +00:00
|
|
|
static inline void vscr_init (CPUPPCState *env, uint32_t val)
|
|
|
|
{
|
|
|
|
env->vscr = val;
|
|
|
|
/* Altivec always uses round-to-nearest */
|
|
|
|
set_float_rounding_mode(float_round_nearest_even, &env->vec_status);
|
|
|
|
set_flush_to_zero(vscr_nj, &env->vec_status);
|
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
#define spr_register(env, num, name, uea_read, uea_write, \
|
|
|
|
oea_read, oea_write, initial_value) \
|
|
|
|
do { \
|
|
|
|
_spr_register(env, num, name, uea_read, uea_write, initial_value); \
|
|
|
|
} while (0)
|
|
|
|
static inline void _spr_register (CPUPPCState *env, int num,
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *name,
|
2008-12-07 13:40:29 +00:00
|
|
|
void (*uea_read)(void *opaque, int gprn, int sprn),
|
|
|
|
void (*uea_write)(void *opaque, int sprn, int gprn),
|
2007-03-07 08:32:30 +00:00
|
|
|
target_ulong initial_value)
|
|
|
|
#else
|
2005-07-02 20:59:34 +00:00
|
|
|
static inline void spr_register (CPUPPCState *env, int num,
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *name,
|
2008-12-07 13:40:29 +00:00
|
|
|
void (*uea_read)(void *opaque, int gprn, int sprn),
|
|
|
|
void (*uea_write)(void *opaque, int sprn, int gprn),
|
|
|
|
void (*oea_read)(void *opaque, int gprn, int sprn),
|
|
|
|
void (*oea_write)(void *opaque, int sprn, int gprn),
|
2005-07-02 20:59:34 +00:00
|
|
|
target_ulong initial_value)
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2009-10-01 21:12:16 +00:00
|
|
|
ppc_spr_t *spr;
|
2005-07-02 20:59:34 +00:00
|
|
|
|
|
|
|
spr = &env->spr_cb[num];
|
|
|
|
if (spr->name != NULL ||env-> spr[num] != 0x00000000 ||
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
spr->oea_read != NULL || spr->oea_write != NULL ||
|
|
|
|
#endif
|
|
|
|
spr->uea_read != NULL || spr->uea_write != NULL) {
|
2005-07-02 20:59:34 +00:00
|
|
|
printf("Error: Trying to register SPR %d (%03x) twice !\n", num, num);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
#if defined(PPC_DEBUG_SPR)
|
2009-08-16 11:13:18 +00:00
|
|
|
printf("*** register spr %d (%03x) %s val " TARGET_FMT_lx "\n", num, num,
|
|
|
|
name, initial_value);
|
2005-07-02 20:59:34 +00:00
|
|
|
#endif
|
|
|
|
spr->name = name;
|
|
|
|
spr->uea_read = uea_read;
|
|
|
|
spr->uea_write = uea_write;
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-07-02 20:59:34 +00:00
|
|
|
spr->oea_read = oea_read;
|
|
|
|
spr->oea_write = oea_write;
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
env->spr[num] = initial_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generic PowerPC SPRs */
|
|
|
|
static void gen_spr_generic (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Integer processing */
|
|
|
|
spr_register(env, SPR_XER, "XER",
|
|
|
|
&spr_read_xer, &spr_write_xer,
|
|
|
|
&spr_read_xer, &spr_write_xer,
|
|
|
|
0x00000000);
|
|
|
|
/* Branch contol */
|
|
|
|
spr_register(env, SPR_LR, "LR",
|
|
|
|
&spr_read_lr, &spr_write_lr,
|
|
|
|
&spr_read_lr, &spr_write_lr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_CTR, "CTR",
|
|
|
|
&spr_read_ctr, &spr_write_ctr,
|
|
|
|
&spr_read_ctr, &spr_write_ctr,
|
|
|
|
0x00000000);
|
|
|
|
/* Interrupt processing */
|
|
|
|
spr_register(env, SPR_SRR0, "SRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SRR1, "SRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Processor control */
|
|
|
|
spr_register(env, SPR_SPRG0, "SPRG0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG1, "SPRG1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG2, "SPRG2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG3, "SPRG3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR common to all non-embedded PowerPC, including 601 */
|
|
|
|
static void gen_spr_ne_601 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Exception processing */
|
|
|
|
spr_register(env, SPR_DSISR, "DSISR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DAR, "DAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Timer */
|
|
|
|
spr_register(env, SPR_DECR, "DECR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_decr, &spr_write_decr,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
spr_register(env, SPR_SDR1, "SDR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2011-04-01 04:15:15 +00:00
|
|
|
&spr_read_generic, &spr_write_sdr1,
|
2005-07-02 20:59:34 +00:00
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* BATs 0-3 */
|
|
|
|
static void gen_low_BATs (CPUPPCState *env)
|
|
|
|
{
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_IBAT0U, "IBAT0U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT0L, "IBAT0L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT1U, "IBAT1U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT1L, "IBAT1L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT2U, "IBAT2U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT2L, "IBAT2L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT3U, "IBAT3U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT3L, "IBAT3L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat, &spr_write_ibatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT0U, "DBAT0U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT0L, "DBAT0L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT1U, "DBAT1U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT1L, "DBAT1L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT2U, "DBAT2U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT2L, "DBAT2L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT3U, "DBAT3U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT3L, "DBAT3L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat, &spr_write_dbatl,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_BATs += 4;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* BATs 4-7 */
|
|
|
|
static void gen_high_BATs (CPUPPCState *env)
|
|
|
|
{
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_IBAT4U, "IBAT4U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT4L, "IBAT4L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT5U, "IBAT5U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT5L, "IBAT5L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT6U, "IBAT6U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT6L, "IBAT6L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT7U, "IBAT7U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT7L, "IBAT7L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_ibat_h, &spr_write_ibatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT4U, "DBAT4U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT4L, "DBAT4L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT5U, "DBAT5U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT5L, "DBAT5L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT6U, "DBAT6U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT6L, "DBAT6L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatl_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT7U, "DBAT7U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatu_h,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DBAT7L, "DBAT7L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_dbat_h, &spr_write_dbatl_h,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_BATs += 4;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Generic PowerPC time base */
|
|
|
|
static void gen_tbl (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
spr_register(env, SPR_VTBL, "TBL",
|
|
|
|
&spr_read_tbl, SPR_NOACCESS,
|
|
|
|
&spr_read_tbl, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_TBL, "TBL",
|
2010-03-26 00:25:36 +00:00
|
|
|
&spr_read_tbl, SPR_NOACCESS,
|
|
|
|
&spr_read_tbl, &spr_write_tbl,
|
2005-07-02 20:59:34 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_VTBU, "TBU",
|
|
|
|
&spr_read_tbu, SPR_NOACCESS,
|
|
|
|
&spr_read_tbu, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_TBU, "TBU",
|
2010-03-26 00:25:36 +00:00
|
|
|
&spr_read_tbu, SPR_NOACCESS,
|
|
|
|
&spr_read_tbu, &spr_write_tbu,
|
2005-07-02 20:59:34 +00:00
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* Softare table search registers */
|
|
|
|
static void gen_6xx_7xx_soft_tlb (CPUPPCState *env, int nb_tlbs, int nb_ways)
|
|
|
|
{
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-03-07 08:32:30 +00:00
|
|
|
env->nb_tlb = nb_tlbs;
|
|
|
|
env->nb_ways = nb_ways;
|
|
|
|
env->id_tlbs = 1;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_6XX;
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_DMISS, "DMISS",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DCMP, "DCMP",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_HASH1, "HASH1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_HASH2, "HASH2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IMISS, "IMISS",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_ICMP, "ICMP",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_RPA, "RPA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR common to MPC755 and G2 */
|
|
|
|
static void gen_spr_G2_755 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* SGPRs */
|
|
|
|
spr_register(env, SPR_SPRG4, "SPRG4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG5, "SPRG5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG6, "SPRG6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG7, "SPRG7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2005-07-02 20:59:34 +00:00
|
|
|
/* SPR common to all 7xx PowerPC implementations */
|
|
|
|
static void gen_spr_7xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Breakpoints */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DABR, "DABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR, "IABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Cache management */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_ICTC, "ICTC",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Performance monitors */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMCR0, "MMCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMCR1, "MMCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC1, "PMC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC2, "PMC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC3, "PMC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC4, "PMC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_SIAR, "SIAR",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_UMMCR0, "UMMCR0",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_UMMCR1, "UMMCR1",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_UPMC1, "UPMC1",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_UPMC2, "UPMC2",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_UPMC3, "UPMC3",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2005-07-02 20:59:34 +00:00
|
|
|
spr_register(env, SPR_UPMC4, "UPMC4",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_USIAR, "USIAR",
|
2005-07-02 20:59:34 +00:00
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* External access control */
|
2005-07-02 20:59:34 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_spr_thrm (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Thermal management */
|
2005-07-02 20:59:34 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_THRM1, "THRM1",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_THRM2, "THRM2",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_THRM3, "THRM3",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR specific to PowerPC 604 implementation */
|
|
|
|
static void gen_spr_604 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* Breakpoints */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR, "IABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DABR, "DABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Performance counters */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMCR0, "MMCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC1, "PMC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC2, "PMC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_SIAR, "SIAR",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_SDA, "SDA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* External access control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR specific to PowerPC 603 implementation */
|
|
|
|
static void gen_spr_603 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2007-03-07 08:32:30 +00:00
|
|
|
/* External access control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
2005-07-02 20:59:34 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-03-07 08:32:30 +00:00
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR specific to PowerPC G2 implementation */
|
|
|
|
static void gen_spr_G2 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2007-03-07 08:32:30 +00:00
|
|
|
/* Memory base address */
|
|
|
|
/* MBAR */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_MBAR, "MBAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Exception processing */
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_CSRR0, "CSRR0",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_CSRR1, "CSRR1",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Breakpoints */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DABR, "DABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DABR2, "DABR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR, "IABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR2, "IABR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IBCR, "IBCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DBCR, "DBCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR specific to PowerPC 602 implementation */
|
|
|
|
static void gen_spr_602 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* ESA registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_SER, "SER",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_SEBR, "SEBR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_ESASRR, "ESASRR",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Floating point status */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_SP, "SP",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LT, "LT",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Watchdog timer */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_TCR, "TCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Interrupt base */
|
|
|
|
spr_register(env, SPR_IBR, "IBR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR, "IABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR specific to PowerPC 601 implementation */
|
|
|
|
static void gen_spr_601 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Multiplication/division register */
|
|
|
|
/* MQ */
|
|
|
|
spr_register(env, SPR_MQ, "MQ",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* RTC registers */
|
|
|
|
spr_register(env, SPR_601_RTCU, "RTCU",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_601_rtcu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_601_VRTCU, "RTCU",
|
|
|
|
&spr_read_601_rtcu, SPR_NOACCESS,
|
|
|
|
&spr_read_601_rtcu, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_601_RTCL, "RTCL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_601_rtcl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_601_VRTCL, "RTCL",
|
|
|
|
&spr_read_601_rtcl, SPR_NOACCESS,
|
|
|
|
&spr_read_601_rtcl, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Timer */
|
|
|
|
#if 0 /* ? */
|
|
|
|
spr_register(env, SPR_601_UDECR, "UDECR",
|
|
|
|
&spr_read_decr, SPR_NOACCESS,
|
|
|
|
&spr_read_decr, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
#endif
|
|
|
|
/* External access control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_IBAT0U, "IBAT0U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT0L, "IBAT0L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT1U, "IBAT1U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT1L, "IBAT1L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT2U, "IBAT2U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT2L, "IBAT2L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT3U, "IBAT3U",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatu,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_IBAT3L, "IBAT3L",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_601_ubat, &spr_write_601_ubatl,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_BATs = 4;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_spr_74xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMCR2, "MMCR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UMMCR2, "UMMCR2",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX: not implemented */
|
|
|
|
spr_register(env, SPR_BAMR, "BAMR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_MSSCR0, "MSSCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Altivec */
|
|
|
|
spr_register(env, SPR_VRSAVE, "VRSAVE",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2009-02-03 19:55:59 +00:00
|
|
|
/* Not strictly an SPR */
|
|
|
|
vscr_init(env, 0x00010000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_l3_ctrl (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* L3CR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3CR, "L3CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3ITCR0 */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_L3ITCR0, "L3ITCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3PM */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_L3PM, "L3PM",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2007-10-01 04:48:45 +00:00
|
|
|
static void gen_74xx_soft_tlb (CPUPPCState *env, int nb_tlbs, int nb_ways)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-10-01 04:48:45 +00:00
|
|
|
env->nb_tlb = nb_tlbs;
|
|
|
|
env->nb_ways = nb_ways;
|
|
|
|
env->id_tlbs = 1;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_6XX;
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_PTEHI, "PTEHI",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_PTELO, "PTELO",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_TLBMISS, "TLBMISS",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2011-04-30 21:34:58 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
static void spr_write_e500_l1csr0 (void *opaque, int sprn, int gprn)
|
|
|
|
{
|
|
|
|
TCGv t0 = tcg_temp_new();
|
|
|
|
|
|
|
|
tcg_gen_andi_tl(t0, cpu_gpr[gprn], ~256);
|
|
|
|
gen_store_spr(sprn, t0);
|
|
|
|
tcg_temp_free(t0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_write_booke206_mmucsr0 (void *opaque, int sprn, int gprn)
|
|
|
|
{
|
2011-05-20 20:30:19 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(sprn);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_booke206_tlbflush(cpu_env, t0);
|
2011-05-20 20:30:19 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2011-04-30 21:34:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_write_booke_pid (void *opaque, int sprn, int gprn)
|
|
|
|
{
|
2011-05-20 20:30:19 +00:00
|
|
|
TCGv_i32 t0 = tcg_const_i32(sprn);
|
2012-05-30 04:23:31 +00:00
|
|
|
gen_helper_booke_setpid(cpu_env, t0, cpu_gpr[gprn]);
|
2011-05-20 20:30:19 +00:00
|
|
|
tcg_temp_free_i32(t0);
|
2011-04-30 21:34:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void gen_spr_usprgh (CPUPPCState *env)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_USPRG4, "USPRG4",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG5, "USPRG5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG6, "USPRG6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG7, "USPRG7",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* PowerPC BookE SPR */
|
|
|
|
static void gen_spr_BookE (CPUPPCState *env, uint64_t ivor_mask)
|
|
|
|
{
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *ivor_names[64] = {
|
2007-11-17 23:02:20 +00:00
|
|
|
"IVOR0", "IVOR1", "IVOR2", "IVOR3",
|
|
|
|
"IVOR4", "IVOR5", "IVOR6", "IVOR7",
|
|
|
|
"IVOR8", "IVOR9", "IVOR10", "IVOR11",
|
|
|
|
"IVOR12", "IVOR13", "IVOR14", "IVOR15",
|
|
|
|
"IVOR16", "IVOR17", "IVOR18", "IVOR19",
|
|
|
|
"IVOR20", "IVOR21", "IVOR22", "IVOR23",
|
|
|
|
"IVOR24", "IVOR25", "IVOR26", "IVOR27",
|
|
|
|
"IVOR28", "IVOR29", "IVOR30", "IVOR31",
|
|
|
|
"IVOR32", "IVOR33", "IVOR34", "IVOR35",
|
|
|
|
"IVOR36", "IVOR37", "IVOR38", "IVOR39",
|
|
|
|
"IVOR40", "IVOR41", "IVOR42", "IVOR43",
|
|
|
|
"IVOR44", "IVOR45", "IVOR46", "IVOR47",
|
|
|
|
"IVOR48", "IVOR49", "IVOR50", "IVOR51",
|
|
|
|
"IVOR52", "IVOR53", "IVOR54", "IVOR55",
|
|
|
|
"IVOR56", "IVOR57", "IVOR58", "IVOR59",
|
|
|
|
"IVOR60", "IVOR61", "IVOR62", "IVOR63",
|
|
|
|
};
|
|
|
|
#define SPR_BOOKE_IVORxx (-1)
|
|
|
|
int ivor_sprn[64] = {
|
|
|
|
SPR_BOOKE_IVOR0, SPR_BOOKE_IVOR1, SPR_BOOKE_IVOR2, SPR_BOOKE_IVOR3,
|
|
|
|
SPR_BOOKE_IVOR4, SPR_BOOKE_IVOR5, SPR_BOOKE_IVOR6, SPR_BOOKE_IVOR7,
|
|
|
|
SPR_BOOKE_IVOR8, SPR_BOOKE_IVOR9, SPR_BOOKE_IVOR10, SPR_BOOKE_IVOR11,
|
|
|
|
SPR_BOOKE_IVOR12, SPR_BOOKE_IVOR13, SPR_BOOKE_IVOR14, SPR_BOOKE_IVOR15,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVOR32, SPR_BOOKE_IVOR33, SPR_BOOKE_IVOR34, SPR_BOOKE_IVOR35,
|
2012-01-19 18:31:51 +00:00
|
|
|
SPR_BOOKE_IVOR36, SPR_BOOKE_IVOR37, SPR_BOOKE_IVOR38, SPR_BOOKE_IVOR39,
|
|
|
|
SPR_BOOKE_IVOR40, SPR_BOOKE_IVOR41, SPR_BOOKE_IVOR42, SPR_BOOKE_IVORxx,
|
2007-11-17 23:02:20 +00:00
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx, SPR_BOOKE_IVORxx,
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* Interrupt processing */
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_CSRR0, "CSRR0",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_CSRR1, "CSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-03-07 08:32:30 +00:00
|
|
|
/* Debug */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC1, "IAC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC2, "IAC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DAC1, "DAC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DAC2, "DAC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DBCR0, "DBCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2012-10-06 20:54:25 +00:00
|
|
|
&spr_read_generic, &spr_write_40x_dbcr0,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DBCR1, "DBCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DBCR2, "DBCR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DBSR, "DBSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-16 20:09:45 +00:00
|
|
|
&spr_read_generic, &spr_write_clear,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_DEAR, "DEAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_ESR, "ESR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_IVPR, "IVPR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-10-01 01:32:49 +00:00
|
|
|
&spr_read_generic, &spr_write_excp_prefix,
|
2007-03-30 10:07:33 +00:00
|
|
|
0x00000000);
|
|
|
|
/* Exception vectors */
|
2007-11-17 23:02:20 +00:00
|
|
|
for (i = 0; i < 64; i++) {
|
|
|
|
if (ivor_mask & (1ULL << i)) {
|
|
|
|
if (ivor_sprn[i] == SPR_BOOKE_IVORxx) {
|
|
|
|
fprintf(stderr, "ERROR: IVOR %d SPR is not defined\n", i);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
spr_register(env, ivor_sprn[i], ivor_names[i],
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_excp_vector,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
}
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_BOOKE_PID, "PID",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
&spr_read_generic, &spr_write_booke_pid,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_TCR, "TCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_booke_tcr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_TSR, "TSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_booke_tsr,
|
|
|
|
0x00000000);
|
|
|
|
/* Timer */
|
|
|
|
spr_register(env, SPR_DECR, "DECR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_decr, &spr_write_decr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_DECAR, "DECAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* SPRGs */
|
|
|
|
spr_register(env, SPR_USPRG0, "USPRG0",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG4, "SPRG4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG5, "SPRG5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG6, "SPRG6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG7, "SPRG7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2011-04-30 21:34:58 +00:00
|
|
|
static inline uint32_t gen_tlbncfg(uint32_t assoc, uint32_t minsize,
|
|
|
|
uint32_t maxsize, uint32_t flags,
|
|
|
|
uint32_t nentries)
|
|
|
|
{
|
|
|
|
return (assoc << TLBnCFG_ASSOC_SHIFT) |
|
|
|
|
(minsize << TLBnCFG_MINSIZE_SHIFT) |
|
|
|
|
(maxsize << TLBnCFG_MAXSIZE_SHIFT) |
|
|
|
|
flags | nentries;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* BookE 2.06 storage control registers */
|
|
|
|
static void gen_spr_BookE206(CPUPPCState *env, uint32_t mas_mask,
|
|
|
|
uint32_t *tlbncfg)
|
2007-03-30 10:07:33 +00:00
|
|
|
{
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *mas_names[8] = {
|
2007-11-17 23:02:20 +00:00
|
|
|
"MAS0", "MAS1", "MAS2", "MAS3", "MAS4", "MAS5", "MAS6", "MAS7",
|
|
|
|
};
|
|
|
|
int mas_sprn[8] = {
|
|
|
|
SPR_BOOKE_MAS0, SPR_BOOKE_MAS1, SPR_BOOKE_MAS2, SPR_BOOKE_MAS3,
|
|
|
|
SPR_BOOKE_MAS4, SPR_BOOKE_MAS5, SPR_BOOKE_MAS6, SPR_BOOKE_MAS7,
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
2007-03-30 10:07:33 +00:00
|
|
|
/* TLB assist registers */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
for (i = 0; i < 8; i++) {
|
2012-06-21 12:01:06 +00:00
|
|
|
void (*uea_write)(void *o, int sprn, int gprn) = &spr_write_generic32;
|
|
|
|
if (i == 2 && (mas_mask & (1 << i)) && (env->insns_flags & PPC_64B)) {
|
|
|
|
uea_write = &spr_write_generic;
|
|
|
|
}
|
2007-11-17 23:02:20 +00:00
|
|
|
if (mas_mask & (1 << i)) {
|
|
|
|
spr_register(env, mas_sprn[i], mas_names[i],
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2012-06-21 12:01:06 +00:00
|
|
|
&spr_read_generic, uea_write,
|
2007-11-17 23:02:20 +00:00
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
}
|
2007-03-30 10:07:33 +00:00
|
|
|
if (env->nb_pids > 1) {
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_PID1, "PID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
&spr_read_generic, &spr_write_booke_pid,
|
2007-03-30 10:07:33 +00:00
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
if (env->nb_pids > 2) {
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-03-30 10:07:33 +00:00
|
|
|
spr_register(env, SPR_BOOKE_PID2, "PID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
&spr_read_generic, &spr_write_booke_pid,
|
2007-03-30 10:07:33 +00:00
|
|
|
0x00000000);
|
|
|
|
}
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-10-05 13:11:25 +00:00
|
|
|
spr_register(env, SPR_MMUCFG, "MMUCFG",
|
2007-03-30 10:07:33 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
switch (env->nb_ways) {
|
|
|
|
case 4:
|
|
|
|
spr_register(env, SPR_BOOKE_TLB3CFG, "TLB3CFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
tlbncfg[3]);
|
2007-03-30 10:07:33 +00:00
|
|
|
/* Fallthru */
|
|
|
|
case 3:
|
|
|
|
spr_register(env, SPR_BOOKE_TLB2CFG, "TLB2CFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
tlbncfg[2]);
|
2007-03-30 10:07:33 +00:00
|
|
|
/* Fallthru */
|
|
|
|
case 2:
|
|
|
|
spr_register(env, SPR_BOOKE_TLB1CFG, "TLB1CFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
tlbncfg[1]);
|
2007-03-30 10:07:33 +00:00
|
|
|
/* Fallthru */
|
|
|
|
case 1:
|
|
|
|
spr_register(env, SPR_BOOKE_TLB0CFG, "TLB0CFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
tlbncfg[0]);
|
2007-03-30 10:07:33 +00:00
|
|
|
/* Fallthru */
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2011-04-30 21:34:58 +00:00
|
|
|
|
|
|
|
gen_spr_usprgh(env);
|
2007-03-30 10:07:33 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR specific to PowerPC 440 implementation */
|
|
|
|
static void gen_spr_440 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Cache control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_DNV0, "DNV0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_DNV1, "DNV1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_DNV2, "DNV2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_DNV3, "DNV3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_DTV0, "DTV0",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_DTV1, "DTV1",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_DTV2, "DTV2",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_DTV3, "DTV3",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_DVLIM, "DVLIM",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_INV0, "INV0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_INV1, "INV1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_INV2, "INV2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_INV3, "INV3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_ITV0, "ITV0",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_ITV1, "ITV1",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_ITV2, "ITV2",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_440_ITV3, "ITV3",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_IVLIM, "IVLIM",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Cache debug */
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_BOOKE_DCDBTRH, "DCDBTRH",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_BOOKE_DCDBTRL, "DCDBTRL",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_BOOKE_ICDBDR, "ICDBDR",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_BOOKE_ICDBTRH, "ICDBTRH",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_BOOKE_ICDBTRL, "ICDBTRL",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_DBDR, "DBDR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Processor control */
|
|
|
|
spr_register(env, SPR_4xx_CCR0, "CCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_440_RSTCFG, "RSTCFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Storage control */
|
|
|
|
spr_register(env, SPR_440_MMUCR, "MMUCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR shared between PowerPC 40x implementations */
|
|
|
|
static void gen_spr_40x (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Cache */
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_40x_DCCR, "DCCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_40x_ICCR, "ICCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_BOOKE_ICDBDR, "ICDBDR",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Exception */
|
|
|
|
spr_register(env, SPR_40x_DEAR, "DEAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_ESR, "ESR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_EVPR, "EVPR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-10-01 01:32:49 +00:00
|
|
|
&spr_read_generic, &spr_write_excp_prefix,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_SRR2, "SRR2",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_SRR3, "SRR3",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Timers */
|
|
|
|
spr_register(env, SPR_40x_PIT, "PIT",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_40x_pit, &spr_write_40x_pit,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_TCR, "TCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_booke_tcr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_TSR, "TSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_booke_tsr,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR specific to PowerPC 405 implementation */
|
|
|
|
static void gen_spr_405 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* MMU */
|
|
|
|
spr_register(env, SPR_40x_PID, "PID",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_4xx_CCR0, "CCR0",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-09-21 05:50:37 +00:00
|
|
|
0x00700000);
|
|
|
|
/* Debug interface */
|
2007-03-07 08:32:30 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DBCR0, "DBCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-16 20:09:45 +00:00
|
|
|
&spr_read_generic, &spr_write_40x_dbcr0,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_405_DBCR1, "DBCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_40x_DBSR, "DBSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-16 20:09:45 +00:00
|
|
|
&spr_read_generic, &spr_write_clear,
|
|
|
|
/* Last reset was system reset */
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000300);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_DAC1, "DAC1",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_DAC2, "DAC2",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_405_DVC1, "DVC1",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-09-21 05:50:37 +00:00
|
|
|
0x00000000);
|
2007-03-07 08:32:30 +00:00
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_405_DVC2, "DVC2",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_IAC1, "IAC1",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_IAC2, "IAC2",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_405_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_405_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Storage control */
|
2007-10-01 01:38:03 +00:00
|
|
|
/* XXX: TODO: not implemented */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_405_SLER, "SLER",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-24 06:44:14 +00:00
|
|
|
&spr_read_generic, &spr_write_40x_sler,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_ZPR, "ZPR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-03-07 08:32:30 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_405_SU0R, "SU0R",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* SPRG */
|
|
|
|
spr_register(env, SPR_USPRG0, "USPRG0",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG4, "SPRG4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-17 02:50:56 +00:00
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG5, "SPRG5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-17 02:50:56 +00:00
|
|
|
spr_read_generic, &spr_write_generic,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG6, "SPRG6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-17 02:50:56 +00:00
|
|
|
spr_read_generic, &spr_write_generic,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG7, "SPRG7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-04-17 02:50:56 +00:00
|
|
|
spr_read_generic, &spr_write_generic,
|
2007-03-07 08:32:30 +00:00
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_usprgh(env);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR shared between PowerPC 401 & 403 implementations */
|
|
|
|
static void gen_spr_401_403 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
spr_register(env, SPR_403_VTBL, "TBL",
|
|
|
|
&spr_read_tbl, SPR_NOACCESS,
|
|
|
|
&spr_read_tbl, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_403_TBL, "TBL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_tbl,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_403_VTBU, "TBU",
|
|
|
|
&spr_read_tbu, SPR_NOACCESS,
|
|
|
|
&spr_read_tbu, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_403_TBU, "TBU",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_tbu,
|
|
|
|
0x00000000);
|
|
|
|
/* Debug */
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_403_CDBCR, "CDBCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2007-09-21 05:50:37 +00:00
|
|
|
/* SPR specific to PowerPC 401 implementation */
|
|
|
|
static void gen_spr_401 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Debug interface */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DBCR0, "DBCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_40x_dbcr0,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DBSR, "DBSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_clear,
|
|
|
|
/* Last reset was system reset */
|
|
|
|
0x00000300);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DAC1, "DAC",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_IAC1, "IAC",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Storage control */
|
2007-10-01 01:38:03 +00:00
|
|
|
/* XXX: TODO: not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_405_SLER, "SLER",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_40x_sler,
|
|
|
|
0x00000000);
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU never does speculative access */
|
2007-10-01 01:38:03 +00:00
|
|
|
spr_register(env, SPR_40x_SGR, "SGR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0xFFFFFFFF);
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
2007-10-01 01:38:03 +00:00
|
|
|
spr_register(env, SPR_40x_DCWR, "DCWR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void gen_spr_401x2 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_401(env);
|
|
|
|
spr_register(env, SPR_40x_PID, "PID",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_40x_ZPR, "ZPR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* SPR specific to PowerPC 403 implementation */
|
|
|
|
static void gen_spr_403 (CPUPPCState *env)
|
|
|
|
{
|
2007-09-21 05:50:37 +00:00
|
|
|
/* Debug interface */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DBCR0, "DBCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_40x_dbcr0,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DBSR, "DBSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_clear,
|
|
|
|
/* Last reset was system reset */
|
|
|
|
0x00000300);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_DAC1, "DAC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_DAC2, "DAC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_40x_IAC1, "IAC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_IAC2, "IAC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_spr_403_real (CPUPPCState *env)
|
|
|
|
{
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_403_PBL1, "PBL1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_403_pbr, &spr_write_403_pbr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_403_PBU1, "PBU1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_403_pbr, &spr_write_403_pbr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_403_PBL2, "PBL2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_403_pbr, &spr_write_403_pbr,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_403_PBU2, "PBU2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_403_pbr, &spr_write_403_pbr,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_spr_403_mmu (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* MMU */
|
|
|
|
spr_register(env, SPR_40x_PID, "PID",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-09-21 05:50:37 +00:00
|
|
|
spr_register(env, SPR_40x_ZPR, "ZPR",
|
2007-03-07 08:32:30 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SPR specific to PowerPC compression coprocessor extension */
|
|
|
|
static void gen_spr_compress (CPUPPCState *env)
|
|
|
|
{
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-03-07 08:32:30 +00:00
|
|
|
spr_register(env, SPR_401_SKR, "SKR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
|
|
|
#if defined (TARGET_PPC64)
|
|
|
|
/* SPR specific to PowerPC 620 */
|
|
|
|
static void gen_spr_620 (CPUPPCState *env)
|
|
|
|
{
|
2007-11-19 13:22:47 +00:00
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_ASR, "ASR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_asr, &spr_write_asr,
|
|
|
|
0x00000000);
|
|
|
|
/* Breakpoints */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR, "IABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DABR, "DABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_SIAR, "SIAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_SDA, "SDA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_620_PMC1R, "PMC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_620_PMC1W, "PMC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_620_PMC2R, "PMC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_620_PMC2W, "PMC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_620_MMCR0R, "MMCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_620_MMCR0W, "MMCR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
SPR_NOACCESS, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* External access control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
#if 0 // XXX: check this
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR0, "PMR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR1, "PMR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR2, "PMR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR3, "PMR3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR4, "PMR4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR5, "PMR5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR6, "PMR6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR7, "PMR7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR8, "PMR8",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMR9, "PMR9",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMRA, "PMR10",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMRB, "PMR11",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMRC, "PMR12",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMRD, "PMR13",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMRE, "PMR14",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_620_PMRF, "PMR15",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-19 13:22:47 +00:00
|
|
|
#endif
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-19 13:22:47 +00:00
|
|
|
spr_register(env, SPR_620_BUSCSR, "BUSCSR",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-19 13:22:47 +00:00
|
|
|
spr_register(env, SPR_620_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_620_L2SR, "L2SR",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
#endif /* defined (TARGET_PPC64) */
|
2007-03-07 08:32:30 +00:00
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void gen_spr_5xx_8xx (CPUPPCState *env)
|
2007-09-29 13:06:16 +00:00
|
|
|
{
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Exception processing */
|
|
|
|
spr_register(env, SPR_DSISR, "DSISR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DAR, "DAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Timer */
|
|
|
|
spr_register(env, SPR_DECR, "DECR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_decr, &spr_write_decr,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_EIE, "EIE",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_EID, "EID",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_NRI, "NRI",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPA, "CMPA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPB, "CMPB",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPC, "CMPC",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPD, "CMPD",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_ECR, "ECR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_DER, "DER",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_COUNTA, "COUNTA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_COUNTB, "COUNTB",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPE, "CMPE",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPF, "CMPF",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPG, "CMPG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_CMPH, "CMPH",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_LCTRL1, "LCTRL1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_LCTRL2, "LCTRL2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_BAR, "BAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_DPDR, "DPDR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_IMMR, "IMMR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_spr_5xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_GRA, "MI_GRA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_GRA, "L2U_GRA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RPCU_BBCMCR, "L2U_BBCMCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_MCR, "L2U_MCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RBA0, "MI_RBA0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RBA1, "MI_RBA1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RBA2, "MI_RBA2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RBA3, "MI_RBA3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RBA0, "L2U_RBA0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RBA1, "L2U_RBA1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RBA2, "L2U_RBA2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RBA3, "L2U_RBA3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RA0, "MI_RA0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RA1, "MI_RA1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RA2, "MI_RA2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_MI_RA3, "MI_RA3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RA0, "L2U_RA0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RA1, "L2U_RA1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RA2, "L2U_RA2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_L2U_RA3, "L2U_RA3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_RCPU_FPECR, "FPECR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gen_spr_8xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_IC_CST, "IC_CST",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_IC_ADR, "IC_ADR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_IC_DAT, "IC_DAT",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_DC_CST, "DC_CST",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_DC_ADR, "DC_ADR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_DC_DAT, "DC_DAT",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_CTR, "MI_CTR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_AP, "MI_AP",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_EPN, "MI_EPN",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_TWC, "MI_TWC",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_RPN, "MI_RPN",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_DBCAM, "MI_DBCAM",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_DBRAM0, "MI_DBRAM0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MI_DBRAM1, "MI_DBRAM1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_CTR, "MD_CTR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_CASID, "MD_CASID",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_AP, "MD_AP",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_EPN, "MD_EPN",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_TWB, "MD_TWB",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_TWC, "MD_TWC",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_RPN, "MD_RPN",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_TW, "MD_TW",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_DBCAM, "MD_DBCAM",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_DBRAM0, "MD_DBRAM0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MPC_MD_DBRAM1, "MD_DBRAM1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: TODO
|
|
|
|
/*
|
|
|
|
* AMR => SPR 29 (Power 2.04)
|
|
|
|
* CTRL => SPR 136 (Power 2.04)
|
|
|
|
* CTRL => SPR 152 (Power 2.04)
|
|
|
|
* SCOMC => SPR 276 (64 bits ?)
|
|
|
|
* SCOMD => SPR 277 (64 bits ?)
|
|
|
|
* TBU40 => SPR 286 (Power 2.04 hypv)
|
|
|
|
* HSPRG0 => SPR 304 (Power 2.04 hypv)
|
|
|
|
* HSPRG1 => SPR 305 (Power 2.04 hypv)
|
|
|
|
* HDSISR => SPR 306 (Power 2.04 hypv)
|
|
|
|
* HDAR => SPR 307 (Power 2.04 hypv)
|
|
|
|
* PURR => SPR 309 (Power 2.04 hypv)
|
|
|
|
* HDEC => SPR 310 (Power 2.04 hypv)
|
|
|
|
* HIOR => SPR 311 (hypv)
|
|
|
|
* RMOR => SPR 312 (970)
|
|
|
|
* HRMOR => SPR 313 (Power 2.04 hypv)
|
|
|
|
* HSRR0 => SPR 314 (Power 2.04 hypv)
|
|
|
|
* HSRR1 => SPR 315 (Power 2.04 hypv)
|
|
|
|
* LPCR => SPR 316 (970)
|
|
|
|
* LPIDR => SPR 317 (970)
|
|
|
|
* EPR => SPR 702 (Power 2.04 emb)
|
|
|
|
* perf => 768-783 (Power 2.04)
|
|
|
|
* perf => 784-799 (Power 2.04)
|
|
|
|
* PPR => SPR 896 (Power 2.04)
|
|
|
|
* EPLC => SPR 947 (Power 2.04 emb)
|
|
|
|
* EPSC => SPR 948 (Power 2.04 emb)
|
|
|
|
* DABRX => 1015 (Power 2.04 hypv)
|
|
|
|
* FPECR => SPR 1022 (?)
|
|
|
|
* ... and more (thermal management, performance counters, ...)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Exception vectors models */
|
|
|
|
static void init_excp_4xx_real (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_CRITICAL] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PIT] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FIT] = 0x00001010;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_WDT] = 0x00001020;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DEBUG] = 0x00002000;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->ivor_mask = 0x0000FFF0UL;
|
2007-11-03 13:37:12 +00:00
|
|
|
env->ivpr_mask = 0xFFFF0000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_excp_4xx_softmmu (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_CRITICAL] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PIT] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FIT] = 0x00001010;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_WDT] = 0x00001020;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DTLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ITLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DEBUG] = 0x00002000;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->ivor_mask = 0x0000FFF0UL;
|
|
|
|
env->ivpr_mask = 0xFFFF0000UL;
|
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_MPC5xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPA] = 0x00000E00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EMUL] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DABR] = 0x00001C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MEXTBR] = 0x00001E00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_NMEXTBR] = 0x00001F00;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->ivor_mask = 0x0000FFF0UL;
|
|
|
|
env->ivpr_mask = 0xFFFF0000UL;
|
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_MPC8xx (CPUPPCState *env)
|
2007-09-29 13:06:16 +00:00
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000900;
|
2007-09-29 13:06:16 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPA] = 0x00000E00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EMUL] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ITLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DTLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ITLBE] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DTLBE] = 0x00001400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DABR] = 0x00001C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MEXTBR] = 0x00001E00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_NMEXTBR] = 0x00001F00;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->ivor_mask = 0x0000FFF0UL;
|
|
|
|
env->ivpr_mask = 0xFFFF0000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
2007-11-17 23:02:20 +00:00
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_excp_G2 (CPUPPCState *env)
|
2007-09-29 13:06:16 +00:00
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_CRITICAL] = 0x00000A00;
|
2007-09-29 13:06:16 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IFTLB] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DLTLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSTLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-06-21 13:17:59 +00:00
|
|
|
static void init_excp_e200(CPUPPCState *env, target_ulong ivpr_mask)
|
2007-11-17 23:02:20 +00:00
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000FFC;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_CRITICAL] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_APU] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FIT] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_WDT] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DTLB] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ITLB] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DEBUG] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SPEU] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EFPDI] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EFPRI] = 0x00000000;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->ivor_mask = 0x0000FFF7UL;
|
2012-06-21 13:17:59 +00:00
|
|
|
env->ivpr_mask = ivpr_mask;
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_BookE (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_CRITICAL] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_APU] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FIT] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_WDT] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DTLB] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ITLB] = 0x00000000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DEBUG] = 0x00000000;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->ivor_mask = 0x0000FFE0UL;
|
|
|
|
env->ivpr_mask = 0xFFFF0000UL;
|
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_601 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IO] = 0x00000A00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RUNM] = 0x00002000;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0xFFF00000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
2007-11-17 23:02:20 +00:00
|
|
|
env->hreset_vector = 0x00000100UL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_excp_602 (CPUPPCState *env)
|
2007-09-29 13:06:16 +00:00
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-11-19 13:22:47 +00:00
|
|
|
/* XXX: exception prefix has a special behavior on 602 */
|
2007-09-29 13:06:16 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IFTLB] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DLTLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSTLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2007-11-17 23:02:20 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_WDT] = 0x00001500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EMUL] = 0x00001600;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0xFFF00000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_excp_603 (CPUPPCState *env)
|
2007-09-29 13:06:16 +00:00
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IFTLB] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DLTLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSTLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_604 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2009-04-28 18:07:01 +00:00
|
|
|
env->hreset_excp_prefix = 0xFFF00000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
2009-04-28 18:07:01 +00:00
|
|
|
env->hreset_vector = 0x00000100UL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-10-01 04:48:45 +00:00
|
|
|
#if defined(TARGET_PPC64)
|
2007-09-29 13:06:16 +00:00
|
|
|
static void init_excp_620 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0xFFF00000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
2007-11-03 13:37:12 +00:00
|
|
|
env->hreset_vector = 0x0000000000000100ULL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
2007-10-01 04:48:45 +00:00
|
|
|
#endif /* defined(TARGET_PPC64) */
|
2007-09-29 13:06:16 +00:00
|
|
|
|
|
|
|
static void init_excp_7x0 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
2007-11-21 13:08:23 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2007-09-29 13:06:16 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_THERM] = 0x00001700;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_excp_750cl (CPUPPCState *env)
|
2007-09-29 13:06:16 +00:00
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-11-21 13:08:23 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_750cx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
2007-09-29 13:06:16 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_THERM] = 0x00001700;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-10-08 02:23:00 +00:00
|
|
|
/* XXX: Check if this is correct */
|
|
|
|
static void init_excp_7x5 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
2007-11-21 13:08:23 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
2007-10-08 02:23:00 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_IFTLB] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DLTLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSTLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
2007-11-21 13:08:23 +00:00
|
|
|
env->excp_vectors[POWERPC_EXCP_THERM] = 0x00001700;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-10-08 02:23:00 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-09-29 13:06:16 +00:00
|
|
|
static void init_excp_7400 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPU] = 0x00000F20;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPUA] = 0x00001600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_THERM] = 0x00001700;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_excp_7450 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPU] = 0x00000F20;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IFTLB] = 0x00001000;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DLTLB] = 0x00001100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSTLB] = 0x00001200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SMI] = 0x00001400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPUA] = 0x00001600;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000UL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0xFFFFFFFCUL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined (TARGET_PPC64)
|
|
|
|
static void init_excp_970 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSEG] = 0x00000380;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISEG] = 0x00000480;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_HDECR] = 0x00000980;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPU] = 0x00000F20;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MAINT] = 0x00001600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPUA] = 0x00001700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_THERM] = 0x00001800;
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000FFF00000ULL;
|
2007-10-05 13:09:54 +00:00
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0x0000000000000100ULL;
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
2011-04-01 04:15:19 +00:00
|
|
|
|
|
|
|
static void init_excp_POWER7 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_vectors[POWERPC_EXCP_RESET] = 0x00000100;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MCHECK] = 0x00000200;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSI] = 0x00000300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DSEG] = 0x00000380;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISI] = 0x00000400;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ISEG] = 0x00000480;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_EXTERNAL] = 0x00000500;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_ALIGN] = 0x00000600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PROGRAM] = 0x00000700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_FPU] = 0x00000800;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_DECR] = 0x00000900;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_HDECR] = 0x00000980;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_SYSCALL] = 0x00000C00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_TRACE] = 0x00000D00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_PERFM] = 0x00000F00;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPU] = 0x00000F20;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_IABR] = 0x00001300;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_MAINT] = 0x00001600;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_VPUA] = 0x00001700;
|
|
|
|
env->excp_vectors[POWERPC_EXCP_THERM] = 0x00001800;
|
|
|
|
env->hreset_excp_prefix = 0;
|
|
|
|
/* Hardware reset vector */
|
|
|
|
env->hreset_vector = 0x0000000000000100ULL;
|
|
|
|
#endif
|
|
|
|
}
|
2007-09-29 13:06:16 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-25 23:14:50 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Power management enable checks */
|
|
|
|
static int check_pow_none (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int check_pow_nocheck (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int check_pow_hid0 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
if (env->spr[SPR_HID0] & 0x00E00000)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-10 07:40:16 +00:00
|
|
|
static int check_pow_hid0_74xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
if (env->spr[SPR_HID0] & 0x00600000)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* PowerPC implementations definitions */
|
2007-03-07 08:32:30 +00:00
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
#define POWERPC_FAMILY(_name) \
|
|
|
|
static void \
|
|
|
|
glue(glue(ppc_, _name), _cpu_family_class_init)(ObjectClass *, void *); \
|
|
|
|
\
|
|
|
|
static const TypeInfo \
|
|
|
|
glue(glue(ppc_, _name), _cpu_family_type_info) = { \
|
|
|
|
.name = stringify(_name) "-family-" TYPE_POWERPC_CPU, \
|
|
|
|
.parent = TYPE_POWERPC_CPU, \
|
|
|
|
.abstract = true, \
|
|
|
|
.class_init = glue(glue(ppc_, _name), _cpu_family_class_init), \
|
|
|
|
}; \
|
|
|
|
\
|
|
|
|
static void glue(glue(ppc_, _name), _cpu_family_register_types)(void) \
|
|
|
|
{ \
|
|
|
|
type_register_static( \
|
|
|
|
&glue(glue(ppc_, _name), _cpu_family_type_info)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
type_init(glue(glue(ppc_, _name), _cpu_family_register_types)) \
|
|
|
|
\
|
|
|
|
static void glue(glue(ppc_, _name), _cpu_family_class_init)
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_401 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_401_403(env);
|
|
|
|
gen_spr_401(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_4xx_real(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-10-01 01:27:10 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
2007-03-07 08:32:30 +00:00
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(401)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 401";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_401;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_WRTEE | PPC_DCR |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_4xx_COMMON | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x00000000000FD201ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_REAL;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_401;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_401x2 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_401_403(env);
|
|
|
|
gen_spr_401x2(env);
|
|
|
|
gen_spr_compress(env);
|
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_4xx_softmmu(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-10-01 01:27:10 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
2007-03-07 08:32:30 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(401x2)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 401x2";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_401x2;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_40x_TLB | PPC_MEM_TLBIA | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_4xx_COMMON | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x00000000001FD231ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_4xx_Z;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_401;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-09-29 13:06:16 +00:00
|
|
|
static void init_proc_401x3 (CPUPPCState *env)
|
2007-03-07 08:32:30 +00:00
|
|
|
{
|
2007-10-01 01:27:10 +00:00
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_401_403(env);
|
|
|
|
gen_spr_401(env);
|
|
|
|
gen_spr_401x2(env);
|
|
|
|
gen_spr_compress(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_4xx_softmmu(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-10-01 01:27:10 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(401x3)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 401x3";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_401x3;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_40x_TLB | PPC_MEM_TLBIA | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_4xx_COMMON | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x00000000001FD631ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_4xx_Z;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_401;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_IOP480 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_401_403(env);
|
|
|
|
gen_spr_401x2(env);
|
|
|
|
gen_spr_compress(env);
|
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_4xx_softmmu(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-10-01 01:27:10 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(8, 12, 16, 20);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(IOP480)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "IOP480";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_IOP480;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_40x_TLB | PPC_MEM_TLBIA | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_4xx_COMMON | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x00000000001FD231ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_4xx_Z;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_401;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_403 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_401_403(env);
|
|
|
|
gen_spr_403(env);
|
|
|
|
gen_spr_403_real(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_4xx_real(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-10-01 01:27:10 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(8, 12, 16, 20);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(403)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 403";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_403;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_4xx_COMMON | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000007D00DULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_REAL;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_401;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_PX |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_403GCX (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_401_403(env);
|
|
|
|
gen_spr_403(env);
|
|
|
|
gen_spr_403_real(env);
|
|
|
|
gen_spr_403_mmu(env);
|
|
|
|
/* Bus access control */
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU never does speculative access */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_40x_SGR, "SGR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0xFFFFFFFF);
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_40x_DCWR, "DCWR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
init_excp_4xx_softmmu(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(8, 12, 16, 20);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
2007-11-17 23:02:20 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(403GCX)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 403 GCX";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_403GCX;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_40x_TLB | PPC_MEM_TLBIA | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_4xx_COMMON | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000007D00DULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_4xx_Z;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_401;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_PX |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_405 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
gen_spr_40x(env);
|
|
|
|
gen_spr_405(env);
|
|
|
|
/* Bus access control */
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU never does speculative access */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_40x_SGR, "SGR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0xFFFFFFFF);
|
2012-04-07 07:23:39 +00:00
|
|
|
/* not emulated, as QEMU do not emulate caches */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_40x_DCWR, "DCWR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
init_excp_4xx_softmmu(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(8, 12, 16, 20);
|
|
|
|
SET_WDT_PERIOD(16, 20, 24, 28);
|
2007-11-17 23:02:20 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(405)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 405";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_405;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_40x_ICBT |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_40x_TLB | PPC_MEM_TLBIA | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_4xx_COMMON | PPC_405_MAC | PPC_40x_EXCP;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006E630ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_4xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_40x;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_405;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_440EP (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
gen_spr_BookE(env, 0x000000000000FFFFULL);
|
|
|
|
gen_spr_440(env);
|
|
|
|
gen_spr_usprgh(env);
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC1, "DVC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC2, "DVC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_MCSR, "MCSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR0, "MCSRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR1, "MCSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_CCR1, "CCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
init_excp_BookE(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2012-01-03 21:01:40 +00:00
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(20, 24, 28, 32);
|
2007-11-17 23:02:20 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(440EP)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 440 EP";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_440EP;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FRES | PPC_FLOAT_FSEL |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_DCR | PPC_WRTEE | PPC_RFMCI |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_MFTB |
|
|
|
|
PPC_BOOKE | PPC_4xx_COMMON | PPC_405_MAC |
|
|
|
|
PPC_440_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_440GP (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
gen_spr_BookE(env, 0x000000000000FFFFULL);
|
|
|
|
gen_spr_440(env);
|
|
|
|
gen_spr_usprgh(env);
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC1, "DVC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC2, "DVC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
init_excp_BookE(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(20, 24, 28, 32);
|
2007-11-17 23:02:20 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(440GP)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 440 GP";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_440GP;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_DCRX | PPC_WRTEE | PPC_MFAPIDI |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVA | PPC_MFTB |
|
|
|
|
PPC_BOOKE | PPC_4xx_COMMON | PPC_405_MAC |
|
|
|
|
PPC_440_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_440x4 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
gen_spr_BookE(env, 0x000000000000FFFFULL);
|
|
|
|
gen_spr_440(env);
|
|
|
|
gen_spr_usprgh(env);
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC1, "DVC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC2, "DVC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
init_excp_BookE(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(20, 24, 28, 32);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(440x4)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 440x4";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_440x4;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_WRTEE |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_MFTB |
|
|
|
|
PPC_BOOKE | PPC_4xx_COMMON | PPC_405_MAC |
|
|
|
|
PPC_440_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_440x5 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_BookE(env, 0x000000000000FFFFULL);
|
|
|
|
gen_spr_440(env);
|
|
|
|
gen_spr_usprgh(env);
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-11-17 23:02:20 +00:00
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC1, "DVC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC2, "DVC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_MCSR, "MCSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR0, "MCSRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR1, "MCSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_CCR1, "CCR1",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
init_excp_BookE(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2010-09-11 13:29:01 +00:00
|
|
|
ppc40x_irq_init(env);
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(20, 24, 28, 32);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(440x5)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 440x5";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_440x5;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_WRTEE | PPC_RFMCI |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_MFTB |
|
|
|
|
PPC_BOOKE | PPC_4xx_COMMON | PPC_405_MAC |
|
|
|
|
PPC_440_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_460 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_BookE(env, 0x000000000000FFFFULL);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_440(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_usprgh(env);
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC1, "DVC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC2, "DVC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_BOOKE_MCSR, "MCSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR0, "MCSRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR1, "MCSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_440_CCR1, "CCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DCRIPR, "SPR_DCRIPR",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_BookE(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(20, 24, 28, 32);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(460)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 460 (guessed)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_460;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_DCR | PPC_DCRX | PPC_DCRUX |
|
|
|
|
PPC_WRTEE | PPC_MFAPIDI | PPC_MFTB |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVA |
|
|
|
|
PPC_BOOKE | PPC_4xx_COMMON | PPC_405_MAC |
|
|
|
|
PPC_440_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_460F (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_BookE(env, 0x000000000000FFFFULL);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_440(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_usprgh(env);
|
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC1, "DVC1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_DVC2, "DVC2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_MCSR, "MCSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR0, "MCSRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR1, "MCSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_440_CCR1, "CCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_DCRIPR, "SPR_DCRIPR",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Memory management */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_BookE(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
2011-09-13 04:00:32 +00:00
|
|
|
|
|
|
|
SET_FIT_PERIOD(12, 16, 20, 24);
|
|
|
|
SET_WDT_PERIOD(20, 24, 28, 32);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(460F)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 460F (guessed)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_460F;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FRES | PPC_FLOAT_FSEL |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX | PPC_MFTB |
|
|
|
|
PPC_DCR | PPC_DCRX | PPC_DCRUX |
|
|
|
|
PPC_WRTEE | PPC_MFAPIDI |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVA |
|
|
|
|
PPC_BOOKE | PPC_4xx_COMMON | PPC_405_MAC |
|
|
|
|
PPC_440_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_403;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_DE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_MPC5xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
gen_spr_5xx_8xx(env);
|
|
|
|
gen_spr_5xx(env);
|
|
|
|
init_excp_MPC5xx(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(MPC5xx)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "Freescale 5xx cores (aka RCPU)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_MPC5xx;
|
|
|
|
pcc->check_pow = check_pow_none;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_MEM_EIEIO | PPC_MEM_SYNC |
|
|
|
|
PPC_CACHE_ICBI | PPC_FLOAT | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_MFTB;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000001FF43ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_REAL;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_603;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_RCPU;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_505;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_MPC8xx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
gen_spr_5xx_8xx(env);
|
|
|
|
gen_spr_8xx(env);
|
|
|
|
init_excp_MPC8xx(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(MPC8xx)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "Freescale 8xx cores (aka PowerQUICC)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_MPC8xx;
|
|
|
|
pcc->check_pow = check_pow_none;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING |
|
|
|
|
PPC_MEM_EIEIO | PPC_MEM_SYNC |
|
|
|
|
PPC_CACHE_ICBI | PPC_MFTB;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000001F673ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_MPC8xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_603;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_RCPU;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_860;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Freescale 82xx cores (aka PowerQUICC-II) */
|
2013-02-17 23:16:46 +00:00
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_G2 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_G2_755(env);
|
|
|
|
gen_spr_G2(env);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* External access control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Hardware implementation register */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Memory management */
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
|
|
|
init_excp_G2(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(G2)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC G2";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_G2;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000006FFF2ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_G2;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_ec603e;
|
|
|
|
pcc->flags = POWERPC_FLAG_TGPR | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_G2LE (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_G2_755(env);
|
|
|
|
gen_spr_G2(env);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* External access control */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_EAR, "EAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Hardware implementation register */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_HID2, "HID2",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
|
|
|
init_excp_G2(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(G2LE)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC G2LE";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_G2LE;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000007FFF3ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_G2;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_ec603e;
|
|
|
|
pcc->flags = POWERPC_FLAG_TGPR | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_e200 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2007-09-29 13:06:16 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_BookE(env, 0x000000070000FFFFULL);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_BOOKE_SPEFSCR, "SPEFSCR",
|
2009-03-09 06:27:14 +00:00
|
|
|
&spr_read_spefscr, &spr_write_spefscr,
|
|
|
|
&spr_read_spefscr, &spr_write_spefscr,
|
2007-09-29 13:06:16 +00:00
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Memory management */
|
2011-04-30 21:34:58 +00:00
|
|
|
gen_spr_BookE206(env, 0x0000005D, NULL);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
2007-09-29 13:06:16 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
2007-09-29 13:06:16 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_Exxx_ALTCTXCR, "ALTCTXCR",
|
2007-09-29 13:06:16 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_Exxx_BUCSR, "BUCSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-09-29 13:06:16 +00:00
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-11-17 23:02:20 +00:00
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_CTXCR, "CTXCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_DBCNT, "DBCNT",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_DBCR3, "DBCR3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_L1CFG0, "L1CFG0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_L1CSR0, "L1CSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_L1FINV0, "L1FINV0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_TLB0CFG, "TLB0CFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_TLB1CFG, "TLB1CFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC3, "IAC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_IAC4, "IAC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2011-04-30 21:34:58 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCSR0, "MMUCSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000); /* TOFIX */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_BOOKE_DSRR0, "DSRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_DSRR1, "DSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-09-29 13:06:16 +00:00
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-29 13:06:16 +00:00
|
|
|
env->nb_tlb = 64;
|
|
|
|
env->nb_ways = 1;
|
|
|
|
env->id_tlbs = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_EMB;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2012-06-21 13:17:59 +00:00
|
|
|
init_excp_e200(env, 0xFFFF0000UL);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
2007-09-29 13:06:16 +00:00
|
|
|
/* XXX: TODO: allocate internal IRQ controller */
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(e200)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "e200 core";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_e200;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
/* XXX: unimplemented instructions:
|
|
|
|
* dcblc
|
|
|
|
* dcbtlst
|
|
|
|
* dcbtstls
|
|
|
|
* icblc
|
|
|
|
* icbtls
|
|
|
|
* tlbivax
|
|
|
|
* all SPE multiply-accumulate instructions
|
|
|
|
*/
|
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_ISEL |
|
|
|
|
PPC_SPE | PPC_SPE_SINGLE |
|
|
|
|
PPC_WRTEE | PPC_RFDI |
|
|
|
|
PPC_CACHE | PPC_CACHE_LOCK | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVAX |
|
|
|
|
PPC_BOOKE;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000606FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE206;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_860;
|
|
|
|
pcc->flags = POWERPC_FLAG_SPE | POWERPC_FLAG_CE |
|
|
|
|
POWERPC_FLAG_UBLE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
static void init_proc_e300 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_603(env);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2009-10-15 17:01:19 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2009-10-15 17:01:19 +00:00
|
|
|
gen_high_BATs(env);
|
2007-11-17 23:02:20 +00:00
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
|
|
|
init_excp_603(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(e300)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "e300 core";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_e300;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000007FFF3ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_603;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_603;
|
|
|
|
pcc->flags = POWERPC_FLAG_TGPR | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2012-06-20 19:55:55 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
static void spr_write_mas73(void *opaque, int sprn, int gprn)
|
|
|
|
{
|
|
|
|
TCGv val = tcg_temp_new();
|
|
|
|
tcg_gen_ext32u_tl(val, cpu_gpr[gprn]);
|
|
|
|
gen_store_spr(SPR_BOOKE_MAS3, val);
|
2012-06-24 04:18:41 +00:00
|
|
|
tcg_gen_shri_tl(val, cpu_gpr[gprn], 32);
|
2012-06-20 19:55:55 +00:00
|
|
|
gen_store_spr(SPR_BOOKE_MAS7, val);
|
|
|
|
tcg_temp_free(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spr_read_mas73(void *opaque, int gprn, int sprn)
|
|
|
|
{
|
|
|
|
TCGv mas7 = tcg_temp_new();
|
|
|
|
TCGv mas3 = tcg_temp_new();
|
|
|
|
gen_load_spr(mas7, SPR_BOOKE_MAS7);
|
|
|
|
tcg_gen_shli_tl(mas7, mas7, 32);
|
|
|
|
gen_load_spr(mas3, SPR_BOOKE_MAS3);
|
|
|
|
tcg_gen_or_tl(cpu_gpr[gprn], mas3, mas7);
|
|
|
|
tcg_temp_free(mas3);
|
|
|
|
tcg_temp_free(mas7);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-12-22 12:26:17 +00:00
|
|
|
enum fsl_e500_version {
|
|
|
|
fsl_e500v1,
|
|
|
|
fsl_e500v2,
|
|
|
|
fsl_e500mc,
|
2012-06-20 19:55:55 +00:00
|
|
|
fsl_e5500,
|
2011-12-22 12:26:17 +00:00
|
|
|
};
|
|
|
|
|
2011-04-30 21:34:58 +00:00
|
|
|
static void init_proc_e500 (CPUPPCState *env, int version)
|
2007-11-17 23:02:20 +00:00
|
|
|
{
|
2011-04-30 21:34:58 +00:00
|
|
|
uint32_t tlbncfg[2];
|
2012-06-20 19:55:55 +00:00
|
|
|
uint64_t ivor_mask;
|
2012-06-21 13:17:59 +00:00
|
|
|
uint64_t ivpr_mask = 0xFFFF0000ULL;
|
2012-01-31 02:46:55 +00:00
|
|
|
uint32_t l1cfg0 = 0x3800 /* 8 ways */
|
|
|
|
| 0x0020; /* 32 kb */
|
2011-04-30 21:34:58 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
int i;
|
|
|
|
#endif
|
|
|
|
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2011-04-30 21:34:58 +00:00
|
|
|
/*
|
|
|
|
* XXX The e500 doesn't implement IVOR7 and IVOR9, but doesn't
|
|
|
|
* complain when accessing them.
|
|
|
|
* gen_spr_BookE(env, 0x0000000F0000FD7FULL);
|
|
|
|
*/
|
2012-06-20 19:55:55 +00:00
|
|
|
switch (version) {
|
|
|
|
case fsl_e500v1:
|
|
|
|
case fsl_e500v2:
|
|
|
|
default:
|
|
|
|
ivor_mask = 0x0000000F0000FFFFULL;
|
|
|
|
break;
|
|
|
|
case fsl_e500mc:
|
|
|
|
case fsl_e5500:
|
|
|
|
ivor_mask = 0x000003FE0000FFFFULL;
|
|
|
|
break;
|
2012-01-19 17:57:26 +00:00
|
|
|
}
|
|
|
|
gen_spr_BookE(env, ivor_mask);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_BOOKE_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_BOOKE_SPEFSCR, "SPEFSCR",
|
2009-03-09 06:27:14 +00:00
|
|
|
&spr_read_spefscr, &spr_write_spefscr,
|
|
|
|
&spr_read_spefscr, &spr_write_spefscr,
|
2007-11-17 23:02:20 +00:00
|
|
|
0x00000000);
|
2012-04-19 13:34:06 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Memory management */
|
|
|
|
env->nb_pids = 3;
|
2011-04-30 21:34:58 +00:00
|
|
|
env->nb_ways = 2;
|
|
|
|
env->id_tlbs = 0;
|
|
|
|
switch (version) {
|
2011-12-22 12:26:17 +00:00
|
|
|
case fsl_e500v1:
|
2011-04-30 21:34:58 +00:00
|
|
|
tlbncfg[0] = gen_tlbncfg(2, 1, 1, 0, 256);
|
|
|
|
tlbncfg[1] = gen_tlbncfg(16, 1, 9, TLBnCFG_AVAIL | TLBnCFG_IPROT, 16);
|
|
|
|
break;
|
2011-12-22 12:26:17 +00:00
|
|
|
case fsl_e500v2:
|
2011-04-30 21:34:58 +00:00
|
|
|
tlbncfg[0] = gen_tlbncfg(4, 1, 1, 0, 512);
|
|
|
|
tlbncfg[1] = gen_tlbncfg(16, 1, 12, TLBnCFG_AVAIL | TLBnCFG_IPROT, 16);
|
2011-12-22 12:26:17 +00:00
|
|
|
break;
|
|
|
|
case fsl_e500mc:
|
2012-06-20 19:55:55 +00:00
|
|
|
case fsl_e5500:
|
2011-12-22 12:26:17 +00:00
|
|
|
tlbncfg[0] = gen_tlbncfg(4, 1, 1, 0, 512);
|
|
|
|
tlbncfg[1] = gen_tlbncfg(64, 1, 12, TLBnCFG_AVAIL | TLBnCFG_IPROT, 64);
|
2012-04-19 13:34:06 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cpu_abort(env, "Unknown CPU: " TARGET_FMT_lx "\n", env->spr[SPR_PVR]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* Cache sizes */
|
|
|
|
switch (version) {
|
|
|
|
case fsl_e500v1:
|
|
|
|
case fsl_e500v2:
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
break;
|
|
|
|
case fsl_e500mc:
|
2012-06-20 19:55:55 +00:00
|
|
|
case fsl_e5500:
|
2011-12-22 12:26:17 +00:00
|
|
|
env->dcache_line_size = 64;
|
|
|
|
env->icache_line_size = 64;
|
2012-01-31 02:46:55 +00:00
|
|
|
l1cfg0 |= 0x1000000; /* 64 byte cache block size */
|
2011-04-30 21:34:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cpu_abort(env, "Unknown CPU: " TARGET_FMT_lx "\n", env->spr[SPR_PVR]);
|
|
|
|
}
|
|
|
|
gen_spr_BookE206(env, 0x000000DF, tlbncfg);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_BBEAR, "BBEAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_BBTAR, "BBTAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_MCAR, "MCAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_BOOKE_MCSR, "MCSR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_NPIDR, "NPIDR",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_BUCSR, "BUCSR",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_Exxx_L1CFG0, "L1CFG0",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2012-01-31 02:46:55 +00:00
|
|
|
l1cfg0);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_Exxx_L1CSR0, "L1CSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2011-04-30 21:34:58 +00:00
|
|
|
&spr_read_generic, &spr_write_e500_l1csr0,
|
2007-11-17 23:02:20 +00:00
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_Exxx_L1CSR1, "L1CSR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR0, "MCSRR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MCSRR1, "MCSRR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2011-04-30 21:34:58 +00:00
|
|
|
spr_register(env, SPR_MMUCSR0, "MMUCSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_booke206_mmucsr0,
|
|
|
|
0x00000000);
|
2012-06-20 19:55:55 +00:00
|
|
|
spr_register(env, SPR_BOOKE_EPR, "EPR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2013-01-04 10:21:04 +00:00
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2012-06-20 19:55:55 +00:00
|
|
|
0x00000000);
|
|
|
|
/* XXX better abstract into Emb.xxx features */
|
|
|
|
if (version == fsl_e5500) {
|
|
|
|
spr_register(env, SPR_BOOKE_EPCR, "EPCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_BOOKE_MAS7_MAS3, "MAS7_MAS3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_mas73, &spr_write_mas73,
|
|
|
|
0x00000000);
|
|
|
|
ivpr_mask = (target_ulong)~0xFFFFULL;
|
|
|
|
}
|
2011-04-30 21:34:58 +00:00
|
|
|
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2011-04-30 21:34:58 +00:00
|
|
|
env->nb_tlb = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_MAS;
|
2011-04-30 21:34:58 +00:00
|
|
|
for (i = 0; i < BOOKE206_MAX_TLBN; i++) {
|
|
|
|
env->nb_tlb += booke206_tlb_size(env, i);
|
|
|
|
}
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2011-04-30 21:34:58 +00:00
|
|
|
|
2012-06-21 13:17:59 +00:00
|
|
|
init_excp_e200(env, ivpr_mask);
|
2009-03-02 16:42:32 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppce500_irq_init(env);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2011-04-30 21:34:58 +00:00
|
|
|
static void init_proc_e500v1(CPUPPCState *env)
|
|
|
|
{
|
2011-12-22 12:26:17 +00:00
|
|
|
init_proc_e500(env, fsl_e500v1);
|
2011-04-30 21:34:58 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(e500v1)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "e500v1 core";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_e500v1;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_ISEL |
|
|
|
|
PPC_SPE | PPC_SPE_SINGLE |
|
|
|
|
PPC_WRTEE | PPC_RFDI |
|
|
|
|
PPC_CACHE | PPC_CACHE_LOCK | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVAX | PPC_MEM_SYNC;
|
|
|
|
pcc->insns_flags2 = PPC2_BOOKE206;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000606FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE206;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_860;
|
|
|
|
pcc->flags = POWERPC_FLAG_SPE | POWERPC_FLAG_CE |
|
|
|
|
POWERPC_FLAG_UBLE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2011-04-30 21:34:58 +00:00
|
|
|
static void init_proc_e500v2(CPUPPCState *env)
|
|
|
|
{
|
2011-12-22 12:26:17 +00:00
|
|
|
init_proc_e500(env, fsl_e500v2);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(e500v2)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "e500v2 core";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_e500v2;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_ISEL |
|
|
|
|
PPC_SPE | PPC_SPE_SINGLE | PPC_SPE_DOUBLE |
|
|
|
|
PPC_WRTEE | PPC_RFDI |
|
|
|
|
PPC_CACHE | PPC_CACHE_LOCK | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVAX | PPC_MEM_SYNC;
|
|
|
|
pcc->insns_flags2 = PPC2_BOOKE206;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000606FF30ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE206;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_860;
|
|
|
|
pcc->flags = POWERPC_FLAG_SPE | POWERPC_FLAG_CE |
|
|
|
|
POWERPC_FLAG_UBLE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2011-12-22 12:26:17 +00:00
|
|
|
static void init_proc_e500mc(CPUPPCState *env)
|
|
|
|
{
|
|
|
|
init_proc_e500(env, fsl_e500mc);
|
2011-04-30 21:34:58 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(e500mc)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "e500mc core";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_e500mc;
|
|
|
|
pcc->check_pow = check_pow_none;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_ISEL |
|
|
|
|
PPC_WRTEE | PPC_RFDI | PPC_RFMCI |
|
|
|
|
PPC_CACHE | PPC_CACHE_LOCK | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_FSEL |
|
|
|
|
PPC_FLOAT_STFIWX | PPC_WAIT |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVAX | PPC_MEM_SYNC;
|
|
|
|
pcc->insns_flags2 = PPC2_BOOKE206 | PPC2_PRCNTL;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000001402FB36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE206;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
/* FIXME: figure out the correct flag for e500mc */
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_e500;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2012-06-20 19:55:55 +00:00
|
|
|
#ifdef TARGET_PPC64
|
|
|
|
static void init_proc_e5500(CPUPPCState *env)
|
|
|
|
{
|
|
|
|
init_proc_e500(env, fsl_e5500);
|
|
|
|
}
|
2013-02-17 23:16:42 +00:00
|
|
|
|
|
|
|
POWERPC_FAMILY(e5500)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "e5500 core";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_e5500;
|
|
|
|
pcc->check_pow = check_pow_none;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_ISEL |
|
|
|
|
PPC_WRTEE | PPC_RFDI | PPC_RFMCI |
|
|
|
|
PPC_CACHE | PPC_CACHE_LOCK | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBZ | PPC_CACHE_DCBA |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_FSEL |
|
|
|
|
PPC_FLOAT_STFIWX | PPC_WAIT |
|
|
|
|
PPC_MEM_TLBSYNC | PPC_TLBIVAX | PPC_MEM_SYNC |
|
|
|
|
PPC_64B | PPC_POPCNTB | PPC_POPCNTWD;
|
|
|
|
pcc->insns_flags2 = PPC2_BOOKE206 | PPC2_PRCNTL;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000009402FB36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_BOOKE206;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_BOOKE;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_BookE;
|
|
|
|
/* FIXME: figure out the correct flag for e5500 */
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_e500;
|
|
|
|
pcc->flags = POWERPC_FLAG_CE | POWERPC_FLAG_DE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
2012-06-20 19:55:55 +00:00
|
|
|
#endif
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Non-embedded PowerPC */
|
|
|
|
|
|
|
|
/* POWER : same as 601, without mfmsr, mfsr */
|
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:43 +00:00
|
|
|
POWERPC_FAMILY(POWER)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:43 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "POWER";
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = XXX_TODO;
|
2013-02-17 23:16:45 +00:00
|
|
|
/* POWER RSC (from RAD6000) */
|
|
|
|
pcc->msr_mask = 0x00000000FEF0ULL;
|
2013-02-17 23:16:43 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif /* TODO */
|
|
|
|
|
2007-11-19 13:22:47 +00:00
|
|
|
#define POWERPC_MSRR_601 (0x0000000000001040ULL)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
|
|
|
static void init_proc_601 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_601(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-11-04 02:55:33 +00:00
|
|
|
&spr_read_generic, &spr_write_hid0_601,
|
2007-11-03 13:37:12 +00:00
|
|
|
0x80010080);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_601_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_601_HID5, "HID5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_601(env);
|
2007-11-19 13:22:47 +00:00
|
|
|
/* XXX: beware that dcache line size is 64
|
|
|
|
* but dcbz uses 32 bytes "sectors"
|
|
|
|
* XXX: this breaks clcs instruction !
|
|
|
|
*/
|
|
|
|
env->dcache_line_size = 32;
|
2007-10-04 00:51:58 +00:00
|
|
|
env->icache_line_size = 64;
|
2007-11-03 13:37:12 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(601)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 601";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_601;
|
|
|
|
pcc->check_pow = check_pow_none;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_POWER_BR |
|
|
|
|
PPC_FLOAT |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO | PPC_MEM_TLBIE |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000000FD70ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_601;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_601;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_601;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_RTC_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-19 13:22:47 +00:00
|
|
|
#define POWERPC_MSRR_601v (0x0000000000001040ULL)
|
|
|
|
|
|
|
|
static void init_proc_601v (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
init_proc_601(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_601_HID15, "HID15",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(601v)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 601v";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_601v;
|
|
|
|
pcc->check_pow = check_pow_none;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_POWER_BR |
|
|
|
|
PPC_FLOAT |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO | PPC_MEM_TLBIE |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000000FD70ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_601;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_601;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_601;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_RTC_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_602 (CPUPPCState *env)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_602(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_602(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(602)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 602";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_602;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_6xx_TLB | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_602_SPEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x0000000000C7FF73ULL;
|
|
|
|
/* XXX: 602 MMU is quite specific. Should add a special case */
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_602;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_602;
|
|
|
|
pcc->flags = POWERPC_FLAG_TGPR | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_603 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_603(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_603(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(603)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 603";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_603;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000007FF73ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_603;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_603;
|
|
|
|
pcc->flags = POWERPC_FLAG_TGPR | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_603E (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_603(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_IABR, "IABR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_603(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(603E)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 603e";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_603E;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000007FF73ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_603E;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_ec603e;
|
|
|
|
pcc->flags = POWERPC_FLAG_TGPR | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_604 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_604(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
2007-11-19 13:22:47 +00:00
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
init_excp_604(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(604)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 604";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_604;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_604;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_604;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-19 13:22:47 +00:00
|
|
|
static void init_proc_604E (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_604(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMCR1, "MMCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC3, "PMC3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC4, "PMC4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_604(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(604E)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 604E";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_604E;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_604;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_604;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_740 (CPUPPCState *env)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_7x0(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(740)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 740";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_740;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x0;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_750 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
/* XXX: high BATs are also present but are known to be bugged on
|
|
|
|
* die version 1.x
|
|
|
|
*/
|
|
|
|
init_excp_7x0(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(750)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 750";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_750;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x0;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_750cl (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
/* Those registers are fake on 750CL */
|
|
|
|
spr_register(env, SPR_THRM1, "THRM1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_THRM2, "THRM2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_THRM3, "THRM3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX: not implemented */
|
|
|
|
spr_register(env, SPR_750_TDCL, "TDCL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_750_TDCH, "TDCH",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* DMA */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_WPAR, "WPAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_750_DMAL, "DMAL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_750_DMAU, "DMAU",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750CL_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750CL_HID4, "HID4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Quantization registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR0, "GQR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR1, "GQR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR2, "GQR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR3, "GQR3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR4, "GQR4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR5, "GQR5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR6, "GQR6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_GQR7, "GQR7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
/* PowerPC 750cl has 8 DBATs and 8 IBATs */
|
|
|
|
gen_high_BATs(env);
|
|
|
|
init_excp_750cl(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(750cl)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 750 CL";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_750cl;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
/* XXX: not implemented:
|
|
|
|
* cache lock instructions:
|
|
|
|
* dcbz_l
|
|
|
|
* floating point paired instructions
|
|
|
|
* psq_lux
|
|
|
|
* psq_lx
|
|
|
|
* psq_stux
|
|
|
|
* psq_stx
|
|
|
|
* ps_abs
|
|
|
|
* ps_add
|
|
|
|
* ps_cmpo0
|
|
|
|
* ps_cmpo1
|
|
|
|
* ps_cmpu0
|
|
|
|
* ps_cmpu1
|
|
|
|
* ps_div
|
|
|
|
* ps_madd
|
|
|
|
* ps_madds0
|
|
|
|
* ps_madds1
|
|
|
|
* ps_merge00
|
|
|
|
* ps_merge01
|
|
|
|
* ps_merge10
|
|
|
|
* ps_merge11
|
|
|
|
* ps_mr
|
|
|
|
* ps_msub
|
|
|
|
* ps_mul
|
|
|
|
* ps_muls0
|
|
|
|
* ps_muls1
|
|
|
|
* ps_nabs
|
|
|
|
* ps_neg
|
|
|
|
* ps_nmadd
|
|
|
|
* ps_nmsub
|
|
|
|
* ps_res
|
|
|
|
* ps_rsqrte
|
|
|
|
* ps_sel
|
|
|
|
* ps_sub
|
|
|
|
* ps_sum0
|
|
|
|
* ps_sum1
|
|
|
|
*/
|
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x0;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_750cx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* This register is not implemented but is present for compatibility */
|
|
|
|
spr_register(env, SPR_SDA, "SDA",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-12-10 07:40:16 +00:00
|
|
|
/* PowerPC 750cx has 8 DBATs and 8 IBATs */
|
|
|
|
gen_high_BATs(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
init_excp_750cx(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(750cx)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 750CX";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_750cx;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x0;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_750fx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_THRM4, "THRM4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-11-21 13:08:23 +00:00
|
|
|
spr_register(env, SPR_750FX_HID2, "HID2",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
/* PowerPC 750fx & 750gx has 8 DBATs and 8 IBATs */
|
|
|
|
gen_high_BATs(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
init_excp_7x0(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(750fx)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 750FX";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_750fx;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x0;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_750gx (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* XXX : not implemented (XXX: different from 750fx) */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_750_THRM4, "THRM4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented (XXX: different from 750fx) */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented (XXX: different from 750fx) */
|
|
|
|
spr_register(env, SPR_750FX_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
/* PowerPC 750fx & 750gx has 8 DBATs and 8 IBATs */
|
|
|
|
gen_high_BATs(env);
|
|
|
|
init_excp_7x0(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(750gx)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 750GX";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_750gx;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x0;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_745 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
gen_spr_G2_755(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
|
|
|
init_excp_7x5(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(745)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 745";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_745;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x5;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-21 13:08:23 +00:00
|
|
|
static void init_proc_755 (CPUPPCState *env)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
2007-11-21 13:08:23 +00:00
|
|
|
gen_spr_7xx(env);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
gen_spr_G2_755(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* L2 cache control */
|
|
|
|
/* XXX : not implemented */
|
2007-11-21 13:08:23 +00:00
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2PMCR, "L2PMCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID2, "HID2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
|
|
|
gen_6xx_7xx_soft_tlb(env, 64, 2);
|
2007-10-08 02:23:00 +00:00
|
|
|
init_excp_7x5(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(755)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 755";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_755;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FRSQRTE | PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC | PPC_6xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_6xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_7x5;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_750;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_7400 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
2007-12-10 07:40:16 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_UBAMR, "UBAMR",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX: this seems not implemented on all revisions. */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MSSCR1, "MSSCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_7400(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7400)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7400 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7400;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_7410 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
2007-12-10 07:40:16 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_UBAMR, "UBAMR",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Thermal management */
|
|
|
|
gen_spr_thrm(env);
|
|
|
|
/* L2PMCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2PMCR, "L2PMCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* LDSTDB */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LDSTDB, "LDSTDB",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_7400(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7410)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7410 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7410;
|
|
|
|
pcc->check_pow = check_pow_hid0;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_32B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_7440 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
2007-12-10 07:40:16 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_UBAMR, "UBAMR",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* LDSTCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LDSTCR, "LDSTCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* ICTRL */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_ICTRL, "ICTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* MSSSR0 */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_MSSSR0, "MSSSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* PMC */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC5, "PMC5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC5, "UPMC5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_PMC6, "PMC6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC6, "UPMC6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-10-01 04:48:45 +00:00
|
|
|
gen_74xx_soft_tlb(env, 128, 2);
|
2007-10-05 13:09:54 +00:00
|
|
|
init_excp_7450(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7440)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7440 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7440;
|
|
|
|
pcc->check_pow = check_pow_hid0_74xx;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA | PPC_74xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_74xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_7450 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
|
|
|
/* Level 3 cache control */
|
|
|
|
gen_l3_ctrl(env);
|
2007-12-10 07:40:16 +00:00
|
|
|
/* L3ITCR1 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3ITCR1, "L3ITCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3ITCR2 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3ITCR2, "L3ITCR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3ITCR3 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3ITCR3, "L3ITCR3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3OHCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3OHCR, "L3OHCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_UBAMR, "UBAMR",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* LDSTCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LDSTCR, "LDSTCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* ICTRL */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_ICTRL, "ICTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* MSSSR0 */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_MSSSR0, "MSSSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* PMC */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC5, "PMC5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC5, "UPMC5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_PMC6, "PMC6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC6, "UPMC6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-10-01 04:48:45 +00:00
|
|
|
gen_74xx_soft_tlb(env, 128, 2);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_7450(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7450)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7450 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7450;
|
|
|
|
pcc->check_pow = check_pow_hid0_74xx;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA | PPC_74xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_74xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_7445 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
|
|
|
/* LDSTCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LDSTCR, "LDSTCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* ICTRL */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_ICTRL, "ICTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* MSSSR0 */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_MSSSR0, "MSSSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* PMC */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC5, "PMC5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC5, "UPMC5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_PMC6, "PMC6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC6, "UPMC6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* SPRGs */
|
|
|
|
spr_register(env, SPR_SPRG4, "SPRG4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG4, "USPRG4",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG5, "SPRG5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG5, "USPRG5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG6, "SPRG6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG6, "USPRG6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG7, "SPRG7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG7, "USPRG7",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
2007-10-01 04:48:45 +00:00
|
|
|
gen_74xx_soft_tlb(env, 128, 2);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_7450(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7445)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7445 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7445;
|
|
|
|
pcc->check_pow = check_pow_hid0_74xx;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA | PPC_74xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_74xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_7455 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
|
|
|
/* Level 3 cache control */
|
|
|
|
gen_l3_ctrl(env);
|
|
|
|
/* LDSTCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LDSTCR, "LDSTCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* ICTRL */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_ICTRL, "ICTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* MSSSR0 */
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_MSSSR0, "MSSSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* PMC */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC5, "PMC5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC5, "UPMC5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_PMC6, "PMC6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-01 04:48:45 +00:00
|
|
|
/* XXX : not implemented */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
spr_register(env, SPR_UPMC6, "UPMC6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* SPRGs */
|
|
|
|
spr_register(env, SPR_SPRG4, "SPRG4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG4, "USPRG4",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG5, "SPRG5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG5, "USPRG5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG6, "SPRG6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG6, "USPRG6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG7, "SPRG7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG7, "USPRG7",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
2007-10-01 04:48:45 +00:00
|
|
|
gen_74xx_soft_tlb(env, 128, 2);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_7450(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7455)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7455 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7455;
|
|
|
|
pcc->check_pow = check_pow_hid0_74xx;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA | PPC_74xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_74xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-12-10 07:40:16 +00:00
|
|
|
static void init_proc_7457 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* 74xx specific SPR */
|
|
|
|
gen_spr_74xx(env);
|
|
|
|
/* Level 3 cache control */
|
|
|
|
gen_l3_ctrl(env);
|
|
|
|
/* L3ITCR1 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3ITCR1, "L3ITCR1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3ITCR2 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3ITCR2, "L3ITCR2",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3ITCR3 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3ITCR3, "L3ITCR3",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* L3OHCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L3OHCR, "L3OHCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* LDSTCR */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_LDSTCR, "LDSTCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* ICTRL */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_ICTRL, "ICTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* MSSSR0 */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MSSSR0, "MSSSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* PMC */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC5, "PMC5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_UPMC5, "UPMC5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_PMC6, "PMC6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_UPMC6, "UPMC6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* SPRGs */
|
|
|
|
spr_register(env, SPR_SPRG4, "SPRG4",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG4, "USPRG4",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG5, "SPRG5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG5, "USPRG5",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG6, "SPRG6",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG6, "USPRG6",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPRG7, "SPRG7",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_USPRG7, "USPRG7",
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
&spr_read_ureg, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
gen_high_BATs(env);
|
|
|
|
gen_74xx_soft_tlb(env, 128, 2);
|
|
|
|
init_excp_7450(env);
|
|
|
|
env->dcache_line_size = 32;
|
|
|
|
env->icache_line_size = 32;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(7457)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 7457 (aka G4)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_7457;
|
|
|
|
pcc->check_pow = check_pow_hid0_74xx;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI |
|
|
|
|
PPC_CACHE_DCBA | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_MEM_TLBIA | PPC_74xx_TLB |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_ALTIVEC;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x000000000205FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_SOFT_74xx;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_74xx;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc_7400;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined (TARGET_PPC64)
|
2007-10-07 23:10:08 +00:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
#define POWERPC970_HID5_INIT 0x00000080
|
|
|
|
#else
|
|
|
|
#define POWERPC970_HID5_INIT 0x00000000
|
|
|
|
#endif
|
|
|
|
|
2007-10-25 23:14:50 +00:00
|
|
|
static int check_pow_970 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
if (env->spr[SPR_HID0] & 0x00600000)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_970 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-10-03 20:27:44 +00:00
|
|
|
&spr_read_generic, &spr_write_clear,
|
2007-10-04 00:51:58 +00:00
|
|
|
0x60000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-11-21 13:08:23 +00:00
|
|
|
spr_register(env, SPR_750FX_HID2, "HID2",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-04 01:50:03 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_970_HID5, "HID5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-10-07 23:10:08 +00:00
|
|
|
POWERPC970_HID5_INIT);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Memory management */
|
|
|
|
/* XXX: not correct */
|
|
|
|
gen_low_BATs(env);
|
2007-10-05 22:06:02 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCFG, "MMUCFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCSR0, "MMUCSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
spr_register(env, SPR_HIOR, "SPR_HIOR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2009-02-28 18:39:42 +00:00
|
|
|
&spr_read_hior, &spr_write_hior,
|
|
|
|
0x00000000);
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-10-05 22:06:02 +00:00
|
|
|
env->slb_nr = 32;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_970(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 128;
|
|
|
|
env->icache_line_size = 128;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc970_irq_init(env);
|
2009-02-03 19:55:59 +00:00
|
|
|
/* Can't find information on what this should be on reset. This
|
|
|
|
* value is the one used by 74xx processors. */
|
|
|
|
vscr_init(env, 0x00010000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(970)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 970";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_970;
|
|
|
|
pcc->check_pow = check_pow_970;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_64B | PPC_ALTIVEC |
|
|
|
|
PPC_SEGMENT_64B | PPC_SLBI;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x900000000204FF36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_64B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_970;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_970;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc64;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-10-25 23:14:50 +00:00
|
|
|
static int check_pow_970FX (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
if (env->spr[SPR_HID0] & 0x00600000)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_970FX (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-10-03 20:27:44 +00:00
|
|
|
&spr_read_generic, &spr_write_clear,
|
2007-10-04 00:51:58 +00:00
|
|
|
0x60000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-11-21 13:08:23 +00:00
|
|
|
spr_register(env, SPR_750FX_HID2, "HID2",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-04 00:51:58 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_970_HID5, "HID5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-10-07 23:10:08 +00:00
|
|
|
POWERPC970_HID5_INIT);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Memory management */
|
|
|
|
/* XXX: not correct */
|
|
|
|
gen_low_BATs(env);
|
2007-10-05 22:06:02 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCFG, "MMUCFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCSR0, "MMUCSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
spr_register(env, SPR_HIOR, "SPR_HIOR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2009-02-28 18:39:42 +00:00
|
|
|
&spr_read_hior, &spr_write_hior,
|
|
|
|
0x00000000);
|
2009-03-07 20:54:03 +00:00
|
|
|
spr_register(env, SPR_CTRL, "SPR_CTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_UCTRL, "SPR_UCTRL",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_VRSAVE, "SPR_VRSAVE",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2009-03-07 20:57:42 +00:00
|
|
|
env->slb_nr = 64;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_970(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 128;
|
|
|
|
env->icache_line_size = 128;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc970_irq_init(env);
|
2009-02-03 19:55:59 +00:00
|
|
|
/* Can't find information on what this should be on reset. This
|
|
|
|
* value is the one used by 74xx processors. */
|
|
|
|
vscr_init(env, 0x00010000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(970FX)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 970FX (aka G5)";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_970FX;
|
|
|
|
pcc->check_pow = check_pow_970FX;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_64B | PPC_ALTIVEC |
|
|
|
|
PPC_SEGMENT_64B | PPC_SLBI;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x800000000204FF36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_64B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_970;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_970;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc64;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-10-25 23:14:50 +00:00
|
|
|
static int check_pow_970GX (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
if (env->spr[SPR_HID0] & 0x00600000)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_970GX (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2007-10-03 20:27:44 +00:00
|
|
|
&spr_read_generic, &spr_write_clear,
|
2007-10-04 00:51:58 +00:00
|
|
|
0x60000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-11-21 13:08:23 +00:00
|
|
|
spr_register(env, SPR_750FX_HID2, "HID2",
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-04 00:51:58 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_970_HID5, "HID5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
2007-10-07 23:10:08 +00:00
|
|
|
POWERPC970_HID5_INIT);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Memory management */
|
|
|
|
/* XXX: not correct */
|
|
|
|
gen_low_BATs(env);
|
2007-10-05 22:06:02 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCFG, "MMUCFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCSR0, "MMUCSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
spr_register(env, SPR_HIOR, "SPR_HIOR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2009-02-28 18:39:42 +00:00
|
|
|
&spr_read_hior, &spr_write_hior,
|
|
|
|
0x00000000);
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-10-05 22:06:02 +00:00
|
|
|
env->slb_nr = 32;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_970(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 128;
|
|
|
|
env->icache_line_size = 128;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc970_irq_init(env);
|
2009-02-03 19:55:59 +00:00
|
|
|
/* Can't find information on what this should be on reset. This
|
|
|
|
* value is the one used by 74xx processors. */
|
|
|
|
vscr_init(env, 0x00010000);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(970GX)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 970 GX";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_970GX;
|
|
|
|
pcc->check_pow = check_pow_970GX;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_64B | PPC_ALTIVEC |
|
|
|
|
PPC_SEGMENT_64B | PPC_SLBI;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x800000000204FF36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_64B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_970;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_970;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc64;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2007-10-25 23:14:50 +00:00
|
|
|
static int check_pow_970MP (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
if (env->spr[SPR_HID0] & 0x01C00000)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_proc_970MP (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_clear,
|
|
|
|
0x60000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID1, "HID1",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
2007-11-21 13:08:23 +00:00
|
|
|
spr_register(env, SPR_750FX_HID2, "HID2",
|
2007-10-25 23:14:50 +00:00
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_970_HID5, "HID5",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
POWERPC970_HID5_INIT);
|
2007-11-21 13:08:23 +00:00
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_L2CR, "L2CR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2007-10-25 23:14:50 +00:00
|
|
|
/* Memory management */
|
|
|
|
/* XXX: not correct */
|
|
|
|
gen_low_BATs(env);
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCFG, "MMUCFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCSR0, "MMUCSR0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
spr_register(env, SPR_HIOR, "SPR_HIOR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
2009-02-28 18:39:42 +00:00
|
|
|
&spr_read_hior, &spr_write_hior,
|
|
|
|
0x00000000);
|
2007-10-25 23:14:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->slb_nr = 32;
|
|
|
|
#endif
|
|
|
|
init_excp_970(env);
|
|
|
|
env->dcache_line_size = 128;
|
|
|
|
env->icache_line_size = 128;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc970_irq_init(env);
|
2009-02-03 19:55:59 +00:00
|
|
|
/* Can't find information on what this should be on reset. This
|
|
|
|
* value is the one used by 74xx processors. */
|
|
|
|
vscr_init(env, 0x00010000);
|
2007-10-25 23:14:50 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(970MP)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 970 MP";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_970MP;
|
|
|
|
pcc->check_pow = check_pow_970MP;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_64B | PPC_ALTIVEC |
|
|
|
|
PPC_SEGMENT_64B | PPC_SLBI;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x900000000204FF36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_64B;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_970;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_970;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc64;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
2011-04-01 04:15:19 +00:00
|
|
|
static void init_proc_POWER7 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_7xx(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
2012-03-03 06:36:36 +00:00
|
|
|
/* Processor identification */
|
|
|
|
spr_register(env, SPR_PIR, "PIR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_pir,
|
|
|
|
0x00000000);
|
2011-04-01 04:15:19 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
/* PURR & SPURR: Hack - treat these as aliases for the TB for now */
|
|
|
|
spr_register(env, SPR_PURR, "PURR",
|
|
|
|
&spr_read_purr, SPR_NOACCESS,
|
|
|
|
&spr_read_purr, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_SPURR, "SPURR",
|
|
|
|
&spr_read_purr, SPR_NOACCESS,
|
|
|
|
&spr_read_purr, SPR_NOACCESS,
|
|
|
|
0x00000000);
|
2011-08-31 15:45:10 +00:00
|
|
|
spr_register(env, SPR_CFAR, "SPR_CFAR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_cfar, &spr_write_cfar,
|
|
|
|
0x00000000);
|
|
|
|
spr_register(env, SPR_DSCR, "SPR_DSCR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
2011-04-01 04:15:19 +00:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
|
|
|
/* Memory management */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_MMUCFG, "MMUCFG",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
|
|
|
0x00000000); /* TOFIX */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_CTRL, "SPR_CTRLT",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x80800000);
|
|
|
|
spr_register(env, SPR_UCTRL, "SPR_CTRLF",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x80800000);
|
|
|
|
spr_register(env, SPR_VRSAVE, "SPR_VRSAVE",
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->slb_nr = 32;
|
|
|
|
#endif
|
|
|
|
init_excp_POWER7(env);
|
|
|
|
env->dcache_line_size = 128;
|
|
|
|
env->icache_line_size = 128;
|
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppcPOWER7_irq_init(env);
|
|
|
|
/* Can't find information on what this should be on reset. This
|
|
|
|
* value is the one used by 74xx processors. */
|
|
|
|
vscr_init(env, 0x00010000);
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:42 +00:00
|
|
|
POWERPC_FAMILY(POWER7)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "POWER7";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_POWER7;
|
|
|
|
pcc->check_pow = check_pow_nocheck;
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_64B | PPC_ALTIVEC |
|
|
|
|
PPC_SEGMENT_64B | PPC_SLBI |
|
|
|
|
PPC_POPCNTB | PPC_POPCNTWD;
|
|
|
|
pcc->insns_flags2 = PPC2_VSX | PPC2_DFP | PPC2_DBRX;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x800000000204FF36ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_2_06;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_POWER7;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_POWER7;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc64;
|
|
|
|
pcc->flags = POWERPC_FLAG_VRE | POWERPC_FLAG_SE |
|
|
|
|
POWERPC_FLAG_BE | POWERPC_FLAG_PMM |
|
|
|
|
POWERPC_FLAG_BUS_CLK | POWERPC_FLAG_CFAR;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
static void init_proc_620 (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
gen_spr_ne_601(env);
|
|
|
|
gen_spr_620(env);
|
|
|
|
/* Time base */
|
|
|
|
gen_tbl(env);
|
|
|
|
/* Hardware implementation registers */
|
|
|
|
/* XXX : not implemented */
|
|
|
|
spr_register(env, SPR_HID0, "HID0",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, &spr_write_generic,
|
|
|
|
0x00000000);
|
|
|
|
/* Memory management */
|
|
|
|
gen_low_BATs(env);
|
2007-09-29 13:06:16 +00:00
|
|
|
init_excp_620(env);
|
2007-10-04 00:51:58 +00:00
|
|
|
env->dcache_line_size = 64;
|
|
|
|
env->icache_line_size = 64;
|
2007-11-03 13:37:12 +00:00
|
|
|
/* Allocate hardware IRQ controller */
|
|
|
|
ppc6xx_irq_init(env);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
2013-02-17 23:16:42 +00:00
|
|
|
|
|
|
|
POWERPC_FAMILY(620)(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-02-17 23:16:42 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
2013-02-17 23:16:46 +00:00
|
|
|
dc->desc = "PowerPC 620";
|
2013-02-17 23:16:42 +00:00
|
|
|
pcc->init_proc = init_proc_620;
|
|
|
|
pcc->check_pow = check_pow_nocheck; /* Check this */
|
2013-02-17 23:16:43 +00:00
|
|
|
pcc->insns_flags = PPC_INSNS_BASE | PPC_STRING | PPC_MFTB |
|
|
|
|
PPC_FLOAT | PPC_FLOAT_FSEL | PPC_FLOAT_FRES |
|
|
|
|
PPC_FLOAT_FSQRT | PPC_FLOAT_FRSQRTE |
|
|
|
|
PPC_FLOAT_STFIWX |
|
|
|
|
PPC_CACHE | PPC_CACHE_ICBI | PPC_CACHE_DCBZ |
|
|
|
|
PPC_MEM_SYNC | PPC_MEM_EIEIO |
|
|
|
|
PPC_MEM_TLBIE | PPC_MEM_TLBSYNC |
|
|
|
|
PPC_SEGMENT | PPC_EXTERN |
|
|
|
|
PPC_64B | PPC_SLBI;
|
|
|
|
pcc->insns_flags2 = PPC_NONE;
|
2013-02-17 23:16:45 +00:00
|
|
|
pcc->msr_mask = 0x800000000005FF77ULL;
|
|
|
|
pcc->mmu_model = POWERPC_MMU_620;
|
|
|
|
pcc->excp_model = POWERPC_EXCP_970;
|
|
|
|
pcc->bus_model = PPC_FLAGS_INPUT_6xx;
|
|
|
|
pcc->bfd_mach = bfd_mach_ppc64;
|
|
|
|
pcc->flags = POWERPC_FLAG_SE | POWERPC_FLAG_BE |
|
|
|
|
POWERPC_FLAG_PMM | POWERPC_FLAG_BUS_CLK;
|
2013-02-17 23:16:42 +00:00
|
|
|
}
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif /* defined (TARGET_PPC64) */
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* PVR definitions for most known PowerPC */
|
|
|
|
enum {
|
|
|
|
/* PowerPC 401 family */
|
|
|
|
/* Generic PowerPC 401 */
|
2007-11-17 23:02:20 +00:00
|
|
|
#define CPU_POWERPC_401 CPU_POWERPC_401G2
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 401 cores */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_401A1 = 0x00210000,
|
|
|
|
CPU_POWERPC_401B2 = 0x00220000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_401B3 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_401C2 = 0x00230000,
|
|
|
|
CPU_POWERPC_401D2 = 0x00240000,
|
|
|
|
CPU_POWERPC_401E2 = 0x00250000,
|
|
|
|
CPU_POWERPC_401F2 = 0x00260000,
|
|
|
|
CPU_POWERPC_401G2 = 0x00270000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 401 microcontrolers */
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_401GF = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
#define CPU_POWERPC_IOP480 CPU_POWERPC_401B2
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* IBM Processor for Network Resources */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_COBRA = 0x10100000, /* XXX: 405 ? */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_XIPCHIP = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 403 family */
|
|
|
|
/* PowerPC 403 microcontrollers */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_403GA = 0x00200011,
|
|
|
|
CPU_POWERPC_403GB = 0x00200100,
|
|
|
|
CPU_POWERPC_403GC = 0x00200200,
|
|
|
|
CPU_POWERPC_403GCX = 0x00201400,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_403GP = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 405 family */
|
|
|
|
/* PowerPC 405 cores */
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405A3 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405A4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405B3 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405B4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405C3 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405C4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405D2 = 0x20010000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405D3 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405D4 = 0x41810000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405D5 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405E4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405F4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405F5 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405F6 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 405 microcontrolers */
|
|
|
|
/* XXX: missing 0x200108a0 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405CRa = 0x40110041,
|
|
|
|
CPU_POWERPC_405CRb = 0x401100C5,
|
|
|
|
CPU_POWERPC_405CRc = 0x40110145,
|
|
|
|
CPU_POWERPC_405EP = 0x51210950,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405EXr = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405EZ = 0x41511460, /* 0x51210950 ? */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405FX = xxx,
|
|
|
|
#endif
|
|
|
|
CPU_POWERPC_405GPa = 0x40110000,
|
|
|
|
CPU_POWERPC_405GPb = 0x40110040,
|
|
|
|
CPU_POWERPC_405GPc = 0x40110082,
|
|
|
|
CPU_POWERPC_405GPd = 0x401100C4,
|
|
|
|
CPU_POWERPC_405GPR = 0x50910951,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405H = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405L = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405LP = 0x41F10000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405PM = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405PS = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_405S = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* IBM network processors */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_NPE405H = 0x414100C0,
|
|
|
|
CPU_POWERPC_NPE405H2 = 0x41410140,
|
|
|
|
CPU_POWERPC_NPE405L = 0x416100C0,
|
|
|
|
CPU_POWERPC_NPE4GS3 = 0x40B10000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_NPCxx1 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_NPR161 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_LC77700 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* IBM STBxxx (PowerPC 401/403/405 core based microcontrollers) */
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB01000 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB01010 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB0210 = xxx, /* 401B3 */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB03 = 0x40310000, /* 0x40130000 ? */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB043 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB045 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB04 = 0x41810000,
|
|
|
|
CPU_POWERPC_STB25 = 0x51510950,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_STB130 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* Xilinx cores */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_X2VP4 = 0x20010820,
|
|
|
|
CPU_POWERPC_X2VP20 = 0x20010860,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_ZL10310 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_ZL10311 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_ZL10320 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_ZL10321 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 440 family */
|
|
|
|
/* Generic PowerPC 440 */
|
2007-11-17 23:02:20 +00:00
|
|
|
#define CPU_POWERPC_440 CPU_POWERPC_440GXf
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 440 cores */
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440A4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2010-09-11 13:29:01 +00:00
|
|
|
CPU_POWERPC_440_XILINX = 0x7ff21910,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440A5 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440B4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440F5 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440G5 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440H4 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440H6 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 440 microcontrolers */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440EPa = 0x42221850,
|
|
|
|
CPU_POWERPC_440EPb = 0x422218D3,
|
|
|
|
CPU_POWERPC_440GPb = 0x40120440,
|
|
|
|
CPU_POWERPC_440GPc = 0x40120481,
|
|
|
|
#define CPU_POWERPC_440GRa CPU_POWERPC_440EPb
|
|
|
|
CPU_POWERPC_440GRX = 0x200008D0,
|
|
|
|
#define CPU_POWERPC_440EPX CPU_POWERPC_440GRX
|
|
|
|
CPU_POWERPC_440GXa = 0x51B21850,
|
|
|
|
CPU_POWERPC_440GXb = 0x51B21851,
|
|
|
|
CPU_POWERPC_440GXc = 0x51B21892,
|
|
|
|
CPU_POWERPC_440GXf = 0x51B21894,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440S = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_440SP = 0x53221850,
|
|
|
|
CPU_POWERPC_440SP2 = 0x53221891,
|
|
|
|
CPU_POWERPC_440SPE = 0x53421890,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 460 family */
|
|
|
|
#if 0
|
|
|
|
/* Generic PowerPC 464 */
|
2007-11-17 23:02:20 +00:00
|
|
|
#define CPU_POWERPC_464 CPU_POWERPC_464H90
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 464 microcontrolers */
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_464H90 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_464H90FP = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* Freescale embedded PowerPC cores */
|
2007-11-12 23:40:49 +00:00
|
|
|
/* PowerPC MPC 5xx cores (aka RCPU) */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_MPC5xx = 0x00020020,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* PowerPC MPC 8xx cores (aka PowerQUICC) */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_MPC8xx = 0x00500000,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* G2 cores (aka PowerQUICC-II) */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_G2 = 0x00810011,
|
|
|
|
CPU_POWERPC_G2H4 = 0x80811010,
|
|
|
|
CPU_POWERPC_G2gp = 0x80821010,
|
|
|
|
CPU_POWERPC_G2ls = 0x90810010,
|
|
|
|
CPU_POWERPC_MPC603 = 0x00810100,
|
|
|
|
CPU_POWERPC_G2_HIP3 = 0x00810101,
|
|
|
|
CPU_POWERPC_G2_HIP4 = 0x80811014,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* G2_LE core (aka PowerQUICC-II) */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_G2LE = 0x80820010,
|
|
|
|
CPU_POWERPC_G2LEgp = 0x80822010,
|
|
|
|
CPU_POWERPC_G2LEls = 0xA0822010,
|
|
|
|
CPU_POWERPC_G2LEgp1 = 0x80822011,
|
|
|
|
CPU_POWERPC_G2LEgp3 = 0x80822013,
|
|
|
|
/* MPC52xx microcontrollers */
|
2007-11-12 23:40:49 +00:00
|
|
|
/* XXX: MPC 5121 ? */
|
2007-11-17 23:02:20 +00:00
|
|
|
#define CPU_POWERPC_MPC5200_v10 CPU_POWERPC_G2LEgp1
|
|
|
|
#define CPU_POWERPC_MPC5200_v11 CPU_POWERPC_G2LEgp1
|
|
|
|
#define CPU_POWERPC_MPC5200_v12 CPU_POWERPC_G2LEgp1
|
|
|
|
#define CPU_POWERPC_MPC5200B_v20 CPU_POWERPC_G2LEgp1
|
|
|
|
#define CPU_POWERPC_MPC5200B_v21 CPU_POWERPC_G2LEgp1
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* e200 family */
|
2007-11-17 23:02:20 +00:00
|
|
|
/* e200 cores */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_e200z0 = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_e200z1 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0 /* ? */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_e200z3 = 0x81120000,
|
|
|
|
#endif
|
|
|
|
CPU_POWERPC_e200z5 = 0x81000000,
|
|
|
|
CPU_POWERPC_e200z6 = 0x81120000,
|
|
|
|
/* MPC55xx microcontrollers */
|
|
|
|
#define CPU_POWERPC_MPC55xx CPU_POWERPC_MPC5567
|
|
|
|
#if 0
|
|
|
|
#define CPU_POWERPC_MPC5514E CPU_POWERPC_MPC5514E_v1
|
|
|
|
#define CPU_POWERPC_MPC5514E_v0 CPU_POWERPC_e200z0
|
|
|
|
#define CPU_POWERPC_MPC5514E_v1 CPU_POWERPC_e200z1
|
|
|
|
#define CPU_POWERPC_MPC5514G CPU_POWERPC_MPC5514G_v1
|
|
|
|
#define CPU_POWERPC_MPC5514G_v0 CPU_POWERPC_e200z0
|
|
|
|
#define CPU_POWERPC_MPC5514G_v1 CPU_POWERPC_e200z1
|
|
|
|
#define CPU_POWERPC_MPC5515S CPU_POWERPC_e200z1
|
|
|
|
#define CPU_POWERPC_MPC5516E CPU_POWERPC_MPC5516E_v1
|
|
|
|
#define CPU_POWERPC_MPC5516E_v0 CPU_POWERPC_e200z0
|
|
|
|
#define CPU_POWERPC_MPC5516E_v1 CPU_POWERPC_e200z1
|
|
|
|
#define CPU_POWERPC_MPC5516G CPU_POWERPC_MPC5516G_v1
|
|
|
|
#define CPU_POWERPC_MPC5516G_v0 CPU_POWERPC_e200z0
|
|
|
|
#define CPU_POWERPC_MPC5516G_v1 CPU_POWERPC_e200z1
|
|
|
|
#define CPU_POWERPC_MPC5516S CPU_POWERPC_e200z1
|
|
|
|
#endif
|
|
|
|
#if 0
|
|
|
|
#define CPU_POWERPC_MPC5533 CPU_POWERPC_e200z3
|
|
|
|
#define CPU_POWERPC_MPC5534 CPU_POWERPC_e200z3
|
|
|
|
#endif
|
|
|
|
#define CPU_POWERPC_MPC5553 CPU_POWERPC_e200z6
|
|
|
|
#define CPU_POWERPC_MPC5554 CPU_POWERPC_e200z6
|
|
|
|
#define CPU_POWERPC_MPC5561 CPU_POWERPC_e200z6
|
|
|
|
#define CPU_POWERPC_MPC5565 CPU_POWERPC_e200z6
|
|
|
|
#define CPU_POWERPC_MPC5566 CPU_POWERPC_e200z6
|
|
|
|
#define CPU_POWERPC_MPC5567 CPU_POWERPC_e200z6
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* e300 family */
|
2007-11-17 23:02:20 +00:00
|
|
|
/* e300 cores */
|
|
|
|
CPU_POWERPC_e300c1 = 0x00830010,
|
|
|
|
CPU_POWERPC_e300c2 = 0x00840010,
|
|
|
|
CPU_POWERPC_e300c3 = 0x00850010,
|
|
|
|
CPU_POWERPC_e300c4 = 0x00860010,
|
|
|
|
/* MPC83xx microcontrollers */
|
2009-10-15 17:01:21 +00:00
|
|
|
#define CPU_POWERPC_MPC831x CPU_POWERPC_e300c3
|
|
|
|
#define CPU_POWERPC_MPC832x CPU_POWERPC_e300c2
|
|
|
|
#define CPU_POWERPC_MPC834x CPU_POWERPC_e300c1
|
|
|
|
#define CPU_POWERPC_MPC835x CPU_POWERPC_e300c1
|
|
|
|
#define CPU_POWERPC_MPC836x CPU_POWERPC_e300c1
|
|
|
|
#define CPU_POWERPC_MPC837x CPU_POWERPC_e300c4
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* e500 family */
|
2007-11-17 23:02:20 +00:00
|
|
|
/* e500 cores */
|
|
|
|
#define CPU_POWERPC_e500 CPU_POWERPC_e500v2_v22
|
2009-02-09 16:50:00 +00:00
|
|
|
CPU_POWERPC_e500v1_v10 = 0x80200010,
|
|
|
|
CPU_POWERPC_e500v1_v20 = 0x80200020,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_e500v2_v10 = 0x80210010,
|
|
|
|
CPU_POWERPC_e500v2_v11 = 0x80210011,
|
|
|
|
CPU_POWERPC_e500v2_v20 = 0x80210020,
|
|
|
|
CPU_POWERPC_e500v2_v21 = 0x80210021,
|
|
|
|
CPU_POWERPC_e500v2_v22 = 0x80210022,
|
|
|
|
CPU_POWERPC_e500v2_v30 = 0x80210030,
|
2011-12-22 12:26:17 +00:00
|
|
|
CPU_POWERPC_e500mc = 0x80230020,
|
2012-06-20 19:55:55 +00:00
|
|
|
CPU_POWERPC_e5500 = 0x80240020,
|
2007-11-17 23:02:20 +00:00
|
|
|
/* MPC85xx microcontrollers */
|
|
|
|
#define CPU_POWERPC_MPC8533_v10 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8533_v11 CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8533E_v10 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8533E_v11 CPU_POWERPC_e500v2_v22
|
2009-02-09 16:50:00 +00:00
|
|
|
#define CPU_POWERPC_MPC8540_v10 CPU_POWERPC_e500v1_v10
|
|
|
|
#define CPU_POWERPC_MPC8540_v20 CPU_POWERPC_e500v1_v20
|
|
|
|
#define CPU_POWERPC_MPC8540_v21 CPU_POWERPC_e500v1_v20
|
|
|
|
#define CPU_POWERPC_MPC8541_v10 CPU_POWERPC_e500v1_v20
|
|
|
|
#define CPU_POWERPC_MPC8541_v11 CPU_POWERPC_e500v1_v20
|
|
|
|
#define CPU_POWERPC_MPC8541E_v10 CPU_POWERPC_e500v1_v20
|
|
|
|
#define CPU_POWERPC_MPC8541E_v11 CPU_POWERPC_e500v1_v20
|
2007-11-17 23:02:20 +00:00
|
|
|
#define CPU_POWERPC_MPC8543_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8543_v11 CPU_POWERPC_e500v2_v11
|
|
|
|
#define CPU_POWERPC_MPC8543_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8543_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8543E_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8543E_v11 CPU_POWERPC_e500v2_v11
|
|
|
|
#define CPU_POWERPC_MPC8543E_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8543E_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8544_v10 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8544_v11 CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8544E_v11 CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8544E_v10 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8545_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8545_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8545_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8545E_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8545E_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8545E_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8547E_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8547E_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8547E_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8548_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8548_v11 CPU_POWERPC_e500v2_v11
|
|
|
|
#define CPU_POWERPC_MPC8548_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8548_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8548E_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8548E_v11 CPU_POWERPC_e500v2_v11
|
|
|
|
#define CPU_POWERPC_MPC8548E_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8548E_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8555_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8555_v11 CPU_POWERPC_e500v2_v11
|
|
|
|
#define CPU_POWERPC_MPC8555E_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8555E_v11 CPU_POWERPC_e500v2_v11
|
|
|
|
#define CPU_POWERPC_MPC8560_v10 CPU_POWERPC_e500v2_v10
|
|
|
|
#define CPU_POWERPC_MPC8560_v20 CPU_POWERPC_e500v2_v20
|
|
|
|
#define CPU_POWERPC_MPC8560_v21 CPU_POWERPC_e500v2_v21
|
|
|
|
#define CPU_POWERPC_MPC8567 CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8567E CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8568 CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8568E CPU_POWERPC_e500v2_v22
|
|
|
|
#define CPU_POWERPC_MPC8572 CPU_POWERPC_e500v2_v30
|
|
|
|
#define CPU_POWERPC_MPC8572E CPU_POWERPC_e500v2_v30
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* e600 family */
|
2007-11-17 23:02:20 +00:00
|
|
|
/* e600 cores */
|
|
|
|
CPU_POWERPC_e600 = 0x80040010,
|
|
|
|
/* MPC86xx microcontrollers */
|
|
|
|
#define CPU_POWERPC_MPC8610 CPU_POWERPC_e600
|
|
|
|
#define CPU_POWERPC_MPC8641 CPU_POWERPC_e600
|
|
|
|
#define CPU_POWERPC_MPC8641D CPU_POWERPC_e600
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 6xx cores */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_601_v0 = 0x00010001,
|
|
|
|
CPU_POWERPC_601_v1 = 0x00010001,
|
|
|
|
CPU_POWERPC_601_v2 = 0x00010002,
|
|
|
|
CPU_POWERPC_602 = 0x00050100,
|
|
|
|
CPU_POWERPC_603 = 0x00030100,
|
|
|
|
CPU_POWERPC_603E_v11 = 0x00060101,
|
|
|
|
CPU_POWERPC_603E_v12 = 0x00060102,
|
|
|
|
CPU_POWERPC_603E_v13 = 0x00060103,
|
|
|
|
CPU_POWERPC_603E_v14 = 0x00060104,
|
|
|
|
CPU_POWERPC_603E_v22 = 0x00060202,
|
|
|
|
CPU_POWERPC_603E_v3 = 0x00060300,
|
|
|
|
CPU_POWERPC_603E_v4 = 0x00060400,
|
|
|
|
CPU_POWERPC_603E_v41 = 0x00060401,
|
|
|
|
CPU_POWERPC_603E7t = 0x00071201,
|
|
|
|
CPU_POWERPC_603E7v = 0x00070100,
|
|
|
|
CPU_POWERPC_603E7v1 = 0x00070101,
|
|
|
|
CPU_POWERPC_603E7v2 = 0x00070201,
|
|
|
|
CPU_POWERPC_603E7 = 0x00070200,
|
|
|
|
CPU_POWERPC_603P = 0x00070000,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* XXX: missing 0x00040303 (604) */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_604 = 0x00040103,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* XXX: missing 0x00091203 */
|
|
|
|
/* XXX: missing 0x00092110 */
|
|
|
|
/* XXX: missing 0x00092120 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_604E_v10 = 0x00090100,
|
|
|
|
CPU_POWERPC_604E_v22 = 0x00090202,
|
|
|
|
CPU_POWERPC_604E_v24 = 0x00090204,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* XXX: missing 0x000a0100 */
|
|
|
|
/* XXX: missing 0x00093102 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_604R = 0x000a0101,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_604EV = xxx, /* XXX: same as 604R ? */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 740/750 cores (aka G3) */
|
|
|
|
/* XXX: missing 0x00084202 */
|
2007-11-21 13:08:23 +00:00
|
|
|
CPU_POWERPC_7x0_v10 = 0x00080100,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7x0_v20 = 0x00080200,
|
|
|
|
CPU_POWERPC_7x0_v21 = 0x00080201,
|
|
|
|
CPU_POWERPC_7x0_v22 = 0x00080202,
|
|
|
|
CPU_POWERPC_7x0_v30 = 0x00080300,
|
|
|
|
CPU_POWERPC_7x0_v31 = 0x00080301,
|
|
|
|
CPU_POWERPC_740E = 0x00080100,
|
2007-11-21 13:08:23 +00:00
|
|
|
CPU_POWERPC_750E = 0x00080200,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7x0P = 0x10080000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX: missing 0x00087010 (CL ?) */
|
2007-11-21 13:08:23 +00:00
|
|
|
CPU_POWERPC_750CL_v10 = 0x00087200,
|
|
|
|
CPU_POWERPC_750CL_v20 = 0x00087210, /* aka rev E */
|
|
|
|
CPU_POWERPC_750CX_v10 = 0x00082100,
|
|
|
|
CPU_POWERPC_750CX_v20 = 0x00082200,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_750CX_v21 = 0x00082201,
|
|
|
|
CPU_POWERPC_750CX_v22 = 0x00082202,
|
|
|
|
CPU_POWERPC_750CXE_v21 = 0x00082211,
|
|
|
|
CPU_POWERPC_750CXE_v22 = 0x00082212,
|
|
|
|
CPU_POWERPC_750CXE_v23 = 0x00082213,
|
|
|
|
CPU_POWERPC_750CXE_v24 = 0x00082214,
|
|
|
|
CPU_POWERPC_750CXE_v24b = 0x00083214,
|
2007-11-21 13:08:23 +00:00
|
|
|
CPU_POWERPC_750CXE_v30 = 0x00082310,
|
|
|
|
CPU_POWERPC_750CXE_v31 = 0x00082311,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_750CXE_v31b = 0x00083311,
|
|
|
|
CPU_POWERPC_750CXR = 0x00083410,
|
2007-11-21 13:08:23 +00:00
|
|
|
CPU_POWERPC_750FL = 0x70000203,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_750FX_v10 = 0x70000100,
|
|
|
|
CPU_POWERPC_750FX_v20 = 0x70000200,
|
|
|
|
CPU_POWERPC_750FX_v21 = 0x70000201,
|
|
|
|
CPU_POWERPC_750FX_v22 = 0x70000202,
|
|
|
|
CPU_POWERPC_750FX_v23 = 0x70000203,
|
|
|
|
CPU_POWERPC_750GL = 0x70020102,
|
|
|
|
CPU_POWERPC_750GX_v10 = 0x70020100,
|
|
|
|
CPU_POWERPC_750GX_v11 = 0x70020101,
|
|
|
|
CPU_POWERPC_750GX_v12 = 0x70020102,
|
2007-11-21 13:08:23 +00:00
|
|
|
CPU_POWERPC_750L_v20 = 0x00088200,
|
|
|
|
CPU_POWERPC_750L_v21 = 0x00088201,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_750L_v22 = 0x00088202,
|
|
|
|
CPU_POWERPC_750L_v30 = 0x00088300,
|
|
|
|
CPU_POWERPC_750L_v32 = 0x00088302,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 745/755 cores */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7x5_v10 = 0x00083100,
|
|
|
|
CPU_POWERPC_7x5_v11 = 0x00083101,
|
|
|
|
CPU_POWERPC_7x5_v20 = 0x00083200,
|
|
|
|
CPU_POWERPC_7x5_v21 = 0x00083201,
|
|
|
|
CPU_POWERPC_7x5_v22 = 0x00083202, /* aka D */
|
|
|
|
CPU_POWERPC_7x5_v23 = 0x00083203, /* aka E */
|
|
|
|
CPU_POWERPC_7x5_v24 = 0x00083204,
|
|
|
|
CPU_POWERPC_7x5_v25 = 0x00083205,
|
|
|
|
CPU_POWERPC_7x5_v26 = 0x00083206,
|
|
|
|
CPU_POWERPC_7x5_v27 = 0x00083207,
|
|
|
|
CPU_POWERPC_7x5_v28 = 0x00083208,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7x5P = xxx,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 74xx cores (aka G4) */
|
|
|
|
/* XXX: missing 0x000C1101 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7400_v10 = 0x000C0100,
|
|
|
|
CPU_POWERPC_7400_v11 = 0x000C0101,
|
|
|
|
CPU_POWERPC_7400_v20 = 0x000C0200,
|
2007-12-10 07:40:16 +00:00
|
|
|
CPU_POWERPC_7400_v21 = 0x000C0201,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7400_v22 = 0x000C0202,
|
|
|
|
CPU_POWERPC_7400_v26 = 0x000C0206,
|
|
|
|
CPU_POWERPC_7400_v27 = 0x000C0207,
|
|
|
|
CPU_POWERPC_7400_v28 = 0x000C0208,
|
|
|
|
CPU_POWERPC_7400_v29 = 0x000C0209,
|
|
|
|
CPU_POWERPC_7410_v10 = 0x800C1100,
|
|
|
|
CPU_POWERPC_7410_v11 = 0x800C1101,
|
|
|
|
CPU_POWERPC_7410_v12 = 0x800C1102, /* aka C */
|
|
|
|
CPU_POWERPC_7410_v13 = 0x800C1103, /* aka D */
|
|
|
|
CPU_POWERPC_7410_v14 = 0x800C1104, /* aka E */
|
|
|
|
CPU_POWERPC_7448_v10 = 0x80040100,
|
|
|
|
CPU_POWERPC_7448_v11 = 0x80040101,
|
|
|
|
CPU_POWERPC_7448_v20 = 0x80040200,
|
|
|
|
CPU_POWERPC_7448_v21 = 0x80040201,
|
|
|
|
CPU_POWERPC_7450_v10 = 0x80000100,
|
|
|
|
CPU_POWERPC_7450_v11 = 0x80000101,
|
|
|
|
CPU_POWERPC_7450_v12 = 0x80000102,
|
2007-12-10 07:40:16 +00:00
|
|
|
CPU_POWERPC_7450_v20 = 0x80000200, /* aka A, B, C, D: 2.04 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_7450_v21 = 0x80000201, /* aka E */
|
2007-12-10 07:40:16 +00:00
|
|
|
CPU_POWERPC_74x1_v23 = 0x80000203, /* aka G: 2.3 */
|
|
|
|
/* XXX: this entry might be a bug in some documentation */
|
|
|
|
CPU_POWERPC_74x1_v210 = 0x80000210, /* aka G: 2.3 ? */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_74x5_v10 = 0x80010100,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* XXX: missing 0x80010200 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_74x5_v21 = 0x80010201, /* aka C: 2.1 */
|
|
|
|
CPU_POWERPC_74x5_v32 = 0x80010302,
|
|
|
|
CPU_POWERPC_74x5_v33 = 0x80010303, /* aka F: 3.3 */
|
|
|
|
CPU_POWERPC_74x5_v34 = 0x80010304, /* aka G: 3.4 */
|
|
|
|
CPU_POWERPC_74x7_v10 = 0x80020100, /* aka A: 1.0 */
|
2007-11-19 13:22:47 +00:00
|
|
|
CPU_POWERPC_74x7_v11 = 0x80020101, /* aka B: 1.1 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_74x7_v12 = 0x80020102, /* aka C: 1.2 */
|
2007-11-19 13:22:47 +00:00
|
|
|
CPU_POWERPC_74x7A_v10 = 0x80030100, /* aka A: 1.0 */
|
|
|
|
CPU_POWERPC_74x7A_v11 = 0x80030101, /* aka B: 1.1 */
|
|
|
|
CPU_POWERPC_74x7A_v12 = 0x80030102, /* aka C: 1.2 */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* 64 bits PowerPC */
|
2007-10-03 01:05:39 +00:00
|
|
|
#if defined(TARGET_PPC64)
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_620 = 0x00140000,
|
|
|
|
CPU_POWERPC_630 = 0x00400000,
|
|
|
|
CPU_POWERPC_631 = 0x00410104,
|
|
|
|
CPU_POWERPC_POWER4 = 0x00350000,
|
|
|
|
CPU_POWERPC_POWER4P = 0x00380000,
|
2007-11-12 23:40:49 +00:00
|
|
|
/* XXX: missing 0x003A0201 */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_POWER5 = 0x003A0203,
|
|
|
|
#define CPU_POWERPC_POWER5GR CPU_POWERPC_POWER5
|
|
|
|
CPU_POWERPC_POWER5P = 0x003B0000,
|
|
|
|
#define CPU_POWERPC_POWER5GS CPU_POWERPC_POWER5P
|
|
|
|
CPU_POWERPC_POWER6 = 0x003E0000,
|
|
|
|
CPU_POWERPC_POWER6_5 = 0x0F000001, /* POWER6 in POWER5 mode */
|
|
|
|
CPU_POWERPC_POWER6A = 0x0F000002,
|
2011-04-01 04:15:19 +00:00
|
|
|
CPU_POWERPC_POWER7_v20 = 0x003F0200,
|
2011-10-12 22:40:33 +00:00
|
|
|
CPU_POWERPC_POWER7_v21 = 0x003F0201,
|
|
|
|
CPU_POWERPC_POWER7_v23 = 0x003F0203,
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_970 = 0x00390202,
|
|
|
|
CPU_POWERPC_970FX_v10 = 0x00391100,
|
|
|
|
CPU_POWERPC_970FX_v20 = 0x003C0200,
|
|
|
|
CPU_POWERPC_970FX_v21 = 0x003C0201,
|
|
|
|
CPU_POWERPC_970FX_v30 = 0x003C0300,
|
|
|
|
CPU_POWERPC_970FX_v31 = 0x003C0301,
|
|
|
|
CPU_POWERPC_970GX = 0x00450000,
|
|
|
|
CPU_POWERPC_970MP_v10 = 0x00440100,
|
|
|
|
CPU_POWERPC_970MP_v11 = 0x00440101,
|
|
|
|
#define CPU_POWERPC_CELL CPU_POWERPC_CELL_v32
|
|
|
|
CPU_POWERPC_CELL_v10 = 0x00700100,
|
|
|
|
CPU_POWERPC_CELL_v20 = 0x00700400,
|
|
|
|
CPU_POWERPC_CELL_v30 = 0x00700500,
|
|
|
|
CPU_POWERPC_CELL_v31 = 0x00700501,
|
|
|
|
#define CPU_POWERPC_CELL_v32 CPU_POWERPC_CELL_v31
|
|
|
|
CPU_POWERPC_RS64 = 0x00330000,
|
|
|
|
CPU_POWERPC_RS64II = 0x00340000,
|
|
|
|
CPU_POWERPC_RS64III = 0x00360000,
|
|
|
|
CPU_POWERPC_RS64IV = 0x00370000,
|
2007-10-03 01:05:39 +00:00
|
|
|
#endif /* defined(TARGET_PPC64) */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Original POWER */
|
|
|
|
/* XXX: should be POWER (RIOS), RSC3308, RSC4608,
|
|
|
|
* POWER2 (RIOS2) & RSC2 (P2SC) here
|
|
|
|
*/
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWER = xxx, /* 0x20000 ? 0x30000 for RSC ? */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWER2 = xxx, /* 0x40000 ? */
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PA Semi core */
|
2007-11-17 23:02:20 +00:00
|
|
|
CPU_POWERPC_PA6T = 0x00900000,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* System version register (used on MPC 8xxx) */
|
|
|
|
enum {
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_NONE = 0x00000000,
|
|
|
|
POWERPC_SVR_5200_v10 = 0x80110010,
|
|
|
|
POWERPC_SVR_5200_v11 = 0x80110011,
|
|
|
|
POWERPC_SVR_5200_v12 = 0x80110012,
|
|
|
|
POWERPC_SVR_5200B_v20 = 0x80110020,
|
|
|
|
POWERPC_SVR_5200B_v21 = 0x80110021,
|
|
|
|
#define POWERPC_SVR_55xx POWERPC_SVR_5567
|
2007-11-12 23:40:49 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5533 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5534 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5553 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5554 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5561 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5565 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5566 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_5567 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8313 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8313E = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8314 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8314E = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8315 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8315E = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8321 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8321E = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8323 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8323E = xxx,
|
|
|
|
#endif
|
2009-10-15 17:01:20 +00:00
|
|
|
POWERPC_SVR_8343 = 0x80570010,
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8343A = 0x80570030,
|
2009-10-15 17:01:20 +00:00
|
|
|
POWERPC_SVR_8343E = 0x80560010,
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8343EA = 0x80560030,
|
2009-10-15 17:01:20 +00:00
|
|
|
POWERPC_SVR_8347P = 0x80550010, /* PBGA package */
|
|
|
|
POWERPC_SVR_8347T = 0x80530010, /* TBGA package */
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8347AP = 0x80550030, /* PBGA package */
|
|
|
|
POWERPC_SVR_8347AT = 0x80530030, /* TBGA package */
|
2009-10-15 17:01:20 +00:00
|
|
|
POWERPC_SVR_8347EP = 0x80540010, /* PBGA package */
|
|
|
|
POWERPC_SVR_8347ET = 0x80520010, /* TBGA package */
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8347EAP = 0x80540030, /* PBGA package */
|
|
|
|
POWERPC_SVR_8347EAT = 0x80520030, /* TBGA package */
|
|
|
|
POWERPC_SVR_8349 = 0x80510010,
|
|
|
|
POWERPC_SVR_8349A = 0x80510030,
|
|
|
|
POWERPC_SVR_8349E = 0x80500010,
|
|
|
|
POWERPC_SVR_8349EA = 0x80500030,
|
2007-11-12 23:40:49 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8358E = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8360E = xxx,
|
|
|
|
#endif
|
|
|
|
#define POWERPC_SVR_E500 0x40000000
|
|
|
|
POWERPC_SVR_8377 = 0x80C70010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8377E = 0x80C60010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8378 = 0x80C50010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8378E = 0x80C40010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8379 = 0x80C30010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8379E = 0x80C00010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8533_v10 = 0x80340010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8533_v11 = 0x80340011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8533E_v10 = 0x803C0010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8533E_v11 = 0x803C0011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8540_v10 = 0x80300010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8540_v20 = 0x80300020 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8540_v21 = 0x80300021 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8541_v10 = 0x80720010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8541_v11 = 0x80720011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8541E_v10 = 0x807A0010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8541E_v11 = 0x807A0011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543_v10 = 0x80320010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543_v11 = 0x80320011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543_v20 = 0x80320020 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543_v21 = 0x80320021 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543E_v10 = 0x803A0010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543E_v11 = 0x803A0011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543E_v20 = 0x803A0020 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8543E_v21 = 0x803A0021 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8544_v10 = 0x80340110 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8544_v11 = 0x80340111 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8544E_v10 = 0x803C0110 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8544E_v11 = 0x803C0111 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8545_v20 = 0x80310220 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8545_v21 = 0x80310221 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8545E_v20 = 0x80390220 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8545E_v21 = 0x80390221 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8547E_v20 = 0x80390120 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8547E_v21 = 0x80390121 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548_v10 = 0x80310010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548_v11 = 0x80310011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548_v20 = 0x80310020 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548_v21 = 0x80310021 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548E_v10 = 0x80390010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548E_v11 = 0x80390011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548E_v20 = 0x80390020 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8548E_v21 = 0x80390021 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8555_v10 = 0x80710010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8555_v11 = 0x80710011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8555E_v10 = 0x80790010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8555E_v11 = 0x80790011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8560_v10 = 0x80700010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8560_v20 = 0x80700020 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8560_v21 = 0x80700021 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8567 = 0x80750111 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8567E = 0x807D0111 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8568 = 0x80750011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8568E = 0x807D0011 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8572 = 0x80E00010 | POWERPC_SVR_E500,
|
|
|
|
POWERPC_SVR_8572E = 0x80E80010 | POWERPC_SVR_E500,
|
2007-11-12 23:40:49 +00:00
|
|
|
#if 0
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8610 = xxx,
|
2007-11-12 23:40:49 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
POWERPC_SVR_8641 = 0x80900021,
|
|
|
|
POWERPC_SVR_8641D = 0x80900121,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
};
|
|
|
|
|
2013-02-17 23:16:47 +00:00
|
|
|
/***************************************************************************/
|
|
|
|
/* PowerPC CPU definitions */
|
2013-02-17 23:16:41 +00:00
|
|
|
#define POWERPC_DEF_PREFIX(pvr, svr, type) \
|
|
|
|
glue(glue(glue(glue(pvr, _), svr), _), type)
|
2013-02-17 23:16:47 +00:00
|
|
|
#define POWERPC_DEF_SVR(_name, _desc, _pvr, _svr, _type) \
|
2013-02-17 23:16:41 +00:00
|
|
|
static void \
|
|
|
|
glue(POWERPC_DEF_PREFIX(_pvr, _svr, _type), _cpu_class_init) \
|
|
|
|
(ObjectClass *oc, void *data) \
|
|
|
|
{ \
|
2013-02-17 23:16:46 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc); \
|
2013-02-17 23:16:41 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc); \
|
|
|
|
\
|
|
|
|
pcc->pvr = _pvr; \
|
|
|
|
pcc->svr = _svr; \
|
2013-02-17 23:16:47 +00:00
|
|
|
dc->desc = _desc; \
|
2013-02-17 23:16:41 +00:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
static const TypeInfo \
|
|
|
|
glue(POWERPC_DEF_PREFIX(_pvr, _svr, _type), _cpu_type_info) = { \
|
|
|
|
.name = _name "-" TYPE_POWERPC_CPU, \
|
2013-02-17 23:16:42 +00:00
|
|
|
.parent = stringify(_type) "-family-" TYPE_POWERPC_CPU, \
|
2013-02-17 23:16:41 +00:00
|
|
|
.class_init = \
|
|
|
|
glue(POWERPC_DEF_PREFIX(_pvr, _svr, _type), _cpu_class_init), \
|
|
|
|
}; \
|
|
|
|
\
|
|
|
|
static void \
|
|
|
|
glue(POWERPC_DEF_PREFIX(_pvr, _svr, _type), _cpu_register_types)(void) \
|
|
|
|
{ \
|
|
|
|
type_register_static( \
|
|
|
|
&glue(POWERPC_DEF_PREFIX(_pvr, _svr, _type), _cpu_type_info)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
type_init( \
|
|
|
|
glue(POWERPC_DEF_PREFIX(_pvr, _svr, _type), _cpu_register_types))
|
|
|
|
|
2013-02-17 23:16:47 +00:00
|
|
|
#define POWERPC_DEF(_name, _pvr, _type, _desc) \
|
|
|
|
POWERPC_DEF_SVR(_name, _desc, _pvr, POWERPC_SVR_NONE, _type)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
|
|
|
/* Embedded PowerPC */
|
|
|
|
/* PowerPC 401 family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("401", CPU_POWERPC_401, 401,
|
|
|
|
"Generic PowerPC 401")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 401 cores */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("401A1", CPU_POWERPC_401A1, 401,
|
|
|
|
"PowerPC 401A1")
|
|
|
|
POWERPC_DEF("401B2", CPU_POWERPC_401B2, 401x2,
|
|
|
|
"PowerPC 401B2")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("401B3", CPU_POWERPC_401B3, 401x3,
|
|
|
|
"PowerPC 401B3")
|
|
|
|
#endif
|
|
|
|
POWERPC_DEF("401C2", CPU_POWERPC_401C2, 401x2,
|
|
|
|
"PowerPC 401C2")
|
|
|
|
POWERPC_DEF("401D2", CPU_POWERPC_401D2, 401x2,
|
|
|
|
"PowerPC 401D2")
|
|
|
|
POWERPC_DEF("401E2", CPU_POWERPC_401E2, 401x2,
|
|
|
|
"PowerPC 401E2")
|
|
|
|
POWERPC_DEF("401F2", CPU_POWERPC_401F2, 401x2,
|
|
|
|
"PowerPC 401F2")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* XXX: to be checked */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("401G2", CPU_POWERPC_401G2, 401x2,
|
|
|
|
"PowerPC 401G2")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 401 microcontrolers */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("401GF", CPU_POWERPC_401GF, 401,
|
|
|
|
"PowerPC 401GF")
|
2005-07-02 20:59:34 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("IOP480", CPU_POWERPC_IOP480, IOP480,
|
|
|
|
"IOP480 (401 microcontroller)")
|
|
|
|
POWERPC_DEF("Cobra", CPU_POWERPC_COBRA, 401,
|
|
|
|
"IBM Processor for Network Resources")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Xipchip", CPU_POWERPC_XIPCHIP, 401,
|
|
|
|
NULL)
|
2005-07-02 20:59:34 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 403 family */
|
|
|
|
/* PowerPC 403 microcontrolers */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("403GA", CPU_POWERPC_403GA, 403,
|
|
|
|
"PowerPC 403 GA")
|
|
|
|
POWERPC_DEF("403GB", CPU_POWERPC_403GB, 403,
|
|
|
|
"PowerPC 403 GB")
|
|
|
|
POWERPC_DEF("403GC", CPU_POWERPC_403GC, 403,
|
|
|
|
"PowerPC 403 GC")
|
|
|
|
POWERPC_DEF("403GCX", CPU_POWERPC_403GCX, 403GCX,
|
|
|
|
"PowerPC 403 GCX")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("403GP", CPU_POWERPC_403GP, 403,
|
|
|
|
"PowerPC 403 GP")
|
2005-07-02 20:59:34 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 405 family */
|
|
|
|
/* PowerPC 405 cores */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405A3", CPU_POWERPC_405A3, 405,
|
|
|
|
"PowerPC 405 A3")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405A4", CPU_POWERPC_405A4, 405,
|
|
|
|
"PowerPC 405 A4")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405B3", CPU_POWERPC_405B3, 405,
|
|
|
|
"PowerPC 405 B3")
|
2005-07-02 20:59:34 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405B4", CPU_POWERPC_405B4, 405,
|
|
|
|
"PowerPC 405 B4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405C3", CPU_POWERPC_405C3, 405,
|
|
|
|
"PowerPC 405 C3")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405C4", CPU_POWERPC_405C4, 405,
|
|
|
|
"PowerPC 405 C4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405D2", CPU_POWERPC_405D2, 405,
|
|
|
|
"PowerPC 405 D2")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405D3", CPU_POWERPC_405D3, 405,
|
|
|
|
"PowerPC 405 D3")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405D4", CPU_POWERPC_405D4, 405,
|
|
|
|
"PowerPC 405 D4")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405D5", CPU_POWERPC_405D5, 405,
|
|
|
|
"PowerPC 405 D5")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405E4", CPU_POWERPC_405E4, 405,
|
|
|
|
"PowerPC 405 E4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405F4", CPU_POWERPC_405F4, 405,
|
|
|
|
"PowerPC 405 F4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405F5", CPU_POWERPC_405F5, 405,
|
|
|
|
"PowerPC 405 F5")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405F6", CPU_POWERPC_405F6, 405,
|
|
|
|
"PowerPC 405 F6")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 405 microcontrolers */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405CRa", CPU_POWERPC_405CRa, 405,
|
|
|
|
"PowerPC 405 CRa")
|
|
|
|
POWERPC_DEF("405CRb", CPU_POWERPC_405CRb, 405,
|
|
|
|
"PowerPC 405 CRb")
|
|
|
|
POWERPC_DEF("405CRc", CPU_POWERPC_405CRc, 405,
|
|
|
|
"PowerPC 405 CRc")
|
|
|
|
POWERPC_DEF("405EP", CPU_POWERPC_405EP, 405,
|
|
|
|
"PowerPC 405 EP")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405EXr", CPU_POWERPC_405EXr, 405,
|
|
|
|
"PowerPC 405 EXr")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405EZ", CPU_POWERPC_405EZ, 405,
|
|
|
|
"PowerPC 405 EZ")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405FX", CPU_POWERPC_405FX, 405,
|
|
|
|
"PowerPC 405 FX")
|
|
|
|
#endif
|
|
|
|
POWERPC_DEF("405GPa", CPU_POWERPC_405GPa, 405,
|
|
|
|
"PowerPC 405 GPa")
|
|
|
|
POWERPC_DEF("405GPb", CPU_POWERPC_405GPb, 405,
|
|
|
|
"PowerPC 405 GPb")
|
|
|
|
POWERPC_DEF("405GPc", CPU_POWERPC_405GPc, 405,
|
|
|
|
"PowerPC 405 GPc")
|
|
|
|
POWERPC_DEF("405GPd", CPU_POWERPC_405GPd, 405,
|
|
|
|
"PowerPC 405 GPd")
|
|
|
|
POWERPC_DEF("405GPR", CPU_POWERPC_405GPR, 405,
|
|
|
|
"PowerPC 405 GPR")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405H", CPU_POWERPC_405H, 405,
|
|
|
|
"PowerPC 405 H")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405L", CPU_POWERPC_405L, 405,
|
|
|
|
"PowerPC 405 L")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405LP", CPU_POWERPC_405LP, 405,
|
|
|
|
"PowerPC 405 LP")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405PM", CPU_POWERPC_405PM, 405,
|
|
|
|
"PowerPC 405 PM")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405PS", CPU_POWERPC_405PS, 405,
|
|
|
|
"PowerPC 405 PS")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("405S", CPU_POWERPC_405S, 405,
|
|
|
|
"PowerPC 405 S")
|
|
|
|
#endif
|
|
|
|
POWERPC_DEF("Npe405H", CPU_POWERPC_NPE405H, 405,
|
|
|
|
"Npe405 H")
|
|
|
|
POWERPC_DEF("Npe405H2", CPU_POWERPC_NPE405H2, 405,
|
|
|
|
"Npe405 H2")
|
|
|
|
POWERPC_DEF("Npe405L", CPU_POWERPC_NPE405L, 405,
|
|
|
|
"Npe405 L")
|
|
|
|
POWERPC_DEF("Npe4GS3", CPU_POWERPC_NPE4GS3, 405,
|
|
|
|
"Npe4GS3")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Npcxx1", CPU_POWERPC_NPCxx1, 405,
|
|
|
|
NULL)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Npr161", CPU_POWERPC_NPR161, 405,
|
|
|
|
NULL)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("LC77700", CPU_POWERPC_LC77700, 405,
|
|
|
|
"PowerPC LC77700 (Sanyo)")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 401/403/405 based set-top-box microcontrolers */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB01000", CPU_POWERPC_STB01000, 401x2,
|
|
|
|
"STB010000")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB01010", CPU_POWERPC_STB01010, 401x2,
|
|
|
|
"STB01010")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB0210", CPU_POWERPC_STB0210, 401x3,
|
|
|
|
"STB0210")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB03", CPU_POWERPC_STB03, 405,
|
|
|
|
"STB03xx")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB043", CPU_POWERPC_STB043, 405,
|
|
|
|
"STB043x")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB045", CPU_POWERPC_STB045, 405,
|
|
|
|
"STB045x")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB04", CPU_POWERPC_STB04, 405,
|
|
|
|
"STB04xx")
|
|
|
|
POWERPC_DEF("STB25", CPU_POWERPC_STB25, 405,
|
|
|
|
"STB25xx")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("STB130", CPU_POWERPC_STB130, 405,
|
|
|
|
"STB130")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* Xilinx PowerPC 405 cores */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("x2vp4", CPU_POWERPC_X2VP4, 405,
|
|
|
|
NULL)
|
|
|
|
POWERPC_DEF("x2vp20", CPU_POWERPC_X2VP20, 405,
|
|
|
|
NULL)
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("zl10310", CPU_POWERPC_ZL10310, 405,
|
|
|
|
"Zarlink ZL10310")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("zl10311", CPU_POWERPC_ZL10311, 405,
|
|
|
|
"Zarlink ZL10311")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("zl10320", CPU_POWERPC_ZL10320, 405,
|
|
|
|
"Zarlink ZL10320")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("zl10321", CPU_POWERPC_ZL10321, 405,
|
|
|
|
"Zarlink ZL10321")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 440 family */
|
2007-11-17 23:02:20 +00:00
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440", CPU_POWERPC_440, 440GP,
|
|
|
|
"Generic PowerPC 440")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 440 cores */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440A4", CPU_POWERPC_440A4, 440x4,
|
|
|
|
"PowerPC 440 A4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440-Xilinx", CPU_POWERPC_440_XILINX, 440x5,
|
|
|
|
"PowerPC 440 Xilinx 5")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440A5", CPU_POWERPC_440A5, 440x5,
|
|
|
|
"PowerPC 440 A5")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440B4", CPU_POWERPC_440B4, 440x4,
|
|
|
|
"PowerPC 440 B4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440G4", CPU_POWERPC_440G4, 440x4,
|
|
|
|
"PowerPC 440 G4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440F5", CPU_POWERPC_440F5, 440x5,
|
|
|
|
"PowerPC 440 F5")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440G5", CPU_POWERPC_440G5, 440x5,
|
|
|
|
"PowerPC 440 G5")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440H4", CPU_POWERPC_440H4, 440x4,
|
|
|
|
"PowerPC 440H4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440H6", CPU_POWERPC_440H6, 440Gx5,
|
|
|
|
"PowerPC 440H6")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 440 microcontrolers */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440EPa", CPU_POWERPC_440EPa, 440EP,
|
|
|
|
"PowerPC 440 EPa")
|
|
|
|
POWERPC_DEF("440EPb", CPU_POWERPC_440EPb, 440EP,
|
|
|
|
"PowerPC 440 EPb")
|
|
|
|
POWERPC_DEF("440EPX", CPU_POWERPC_440EPX, 440EP,
|
|
|
|
"PowerPC 440 EPX")
|
2007-11-17 23:02:20 +00:00
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GPb", CPU_POWERPC_440GPb, 440GP,
|
|
|
|
"PowerPC 440 GPb")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GPc", CPU_POWERPC_440GPc, 440GP,
|
|
|
|
"PowerPC 440 GPc")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GRa", CPU_POWERPC_440GRa, 440x5,
|
|
|
|
"PowerPC 440 GRa")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GRX", CPU_POWERPC_440GRX, 440x5,
|
|
|
|
"PowerPC 440 GRX")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GXa", CPU_POWERPC_440GXa, 440EP,
|
|
|
|
"PowerPC 440 GXa")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GXb", CPU_POWERPC_440GXb, 440EP,
|
|
|
|
"PowerPC 440 GXb")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GXc", CPU_POWERPC_440GXc, 440EP,
|
|
|
|
"PowerPC 440 GXc")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440GXf", CPU_POWERPC_440GXf, 440EP,
|
|
|
|
"PowerPC 440 GXf")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440S", CPU_POWERPC_440S, 440,
|
|
|
|
"PowerPC 440 S")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440SP", CPU_POWERPC_440SP, 440EP,
|
|
|
|
"PowerPC 440 SP")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440SP2", CPU_POWERPC_440SP2, 440EP,
|
|
|
|
"PowerPC 440 SP2")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("440SPE", CPU_POWERPC_440SPE, 440EP,
|
|
|
|
"PowerPC 440 SPE")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC 460 family */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("464", CPU_POWERPC_464, 460,
|
|
|
|
"Generic PowerPC 464")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 464 microcontrolers */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("464H90", CPU_POWERPC_464H90, 460,
|
|
|
|
"PowerPC 464H90")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("464H90F", CPU_POWERPC_464H90F, 460F,
|
|
|
|
"PowerPC 464H90F")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* Freescale embedded PowerPC cores */
|
2007-11-17 23:02:20 +00:00
|
|
|
/* MPC5xx family (aka RCPU) */
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("MPC5xx", CPU_POWERPC_MPC5xx, MPC5xx,
|
|
|
|
"Generic MPC5xx core")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
/* MPC8xx family (aka PowerQUICC) */
|
|
|
|
#if defined(TODO_USER_ONLY)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("MPC8xx", CPU_POWERPC_MPC8xx, MPC8xx,
|
|
|
|
"Generic MPC8xx core")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
/* MPC82xx family (aka PowerQUICC-II) */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("G2", CPU_POWERPC_G2, G2,
|
|
|
|
"PowerPC G2 core")
|
|
|
|
POWERPC_DEF("G2H4", CPU_POWERPC_G2H4, G2,
|
|
|
|
"PowerPC G2 H4 core")
|
|
|
|
POWERPC_DEF("G2GP", CPU_POWERPC_G2gp, G2,
|
|
|
|
"PowerPC G2 GP core")
|
|
|
|
POWERPC_DEF("G2LS", CPU_POWERPC_G2ls, G2,
|
|
|
|
"PowerPC G2 LS core")
|
|
|
|
POWERPC_DEF("G2HiP3", CPU_POWERPC_G2_HIP3, G2,
|
|
|
|
"PowerPC G2 HiP3 core")
|
|
|
|
POWERPC_DEF("G2HiP4", CPU_POWERPC_G2_HIP4, G2,
|
|
|
|
"PowerPC G2 HiP4 core")
|
|
|
|
POWERPC_DEF("MPC603", CPU_POWERPC_MPC603, 603E,
|
|
|
|
"PowerPC MPC603 core")
|
|
|
|
POWERPC_DEF("G2le", CPU_POWERPC_G2LE, G2LE,
|
|
|
|
"PowerPC G2le core (same as G2 plus little-endian mode support)")
|
|
|
|
POWERPC_DEF("G2leGP", CPU_POWERPC_G2LEgp, G2LE,
|
|
|
|
"PowerPC G2LE GP core")
|
|
|
|
POWERPC_DEF("G2leLS", CPU_POWERPC_G2LEls, G2LE,
|
|
|
|
"PowerPC G2LE LS core")
|
|
|
|
POWERPC_DEF("G2leGP1", CPU_POWERPC_G2LEgp1, G2LE,
|
|
|
|
"PowerPC G2LE GP1 core")
|
|
|
|
POWERPC_DEF("G2leGP3", CPU_POWERPC_G2LEgp3, G2LE,
|
|
|
|
"PowerPC G2LE GP3 core")
|
2007-11-17 23:02:20 +00:00
|
|
|
/* PowerPC G2 microcontrollers */
|
2007-11-19 13:22:47 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5121", "MPC5121",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5121, POWERPC_SVR_5121, G2LE)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5200_v10", "MPC5200 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5200_v10, POWERPC_SVR_5200_v10, G2LE)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5200_v11", "MPC5200 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5200_v11, POWERPC_SVR_5200_v11, G2LE)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5200_v12", "MPC5200 v1.2",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5200_v12, POWERPC_SVR_5200_v12, G2LE)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5200B_v20", "MPC5200B v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5200B_v20, POWERPC_SVR_5200B_v20, G2LE)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5200B_v21", "MPC5200B v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5200B_v21, POWERPC_SVR_5200B_v21, G2LE)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* e200 family */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC55xx", "Generic MPC55xx core",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC55xx, POWERPC_SVR_55xx, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e200z0", CPU_POWERPC_e200z0, e200,
|
|
|
|
"PowerPC e200z0 core")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e200z1", CPU_POWERPC_e200z1, e200,
|
|
|
|
"PowerPC e200z1 core")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e200z3", CPU_POWERPC_e200z3, e200,
|
|
|
|
"PowerPC e200z3 core")
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e200z5", CPU_POWERPC_e200z5, e200,
|
|
|
|
"PowerPC e200z5 core")
|
|
|
|
POWERPC_DEF("e200z6", CPU_POWERPC_e200z6, e200,
|
|
|
|
"PowerPC e200z6 core")
|
2007-11-17 23:02:20 +00:00
|
|
|
/* PowerPC e200 microcontrollers */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5514E", "MPC5514E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5514E, POWERPC_SVR_5514E, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5514E_v0", "MPC5514E v0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5514E_v0, POWERPC_SVR_5514E_v0, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5514E_v1", "MPC5514E v1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5514E_v1, POWERPC_SVR_5514E_v1, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5514G", "MPC5514G",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5514G, POWERPC_SVR_5514G, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5514G_v0", "MPC5514G v0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5514G_v0, POWERPC_SVR_5514G_v0, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5514G_v1", "MPC5514G v1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5514G_v1, POWERPC_SVR_5514G_v1, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5515S", "MPC5515S",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5515S, POWERPC_SVR_5515S, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516E", "MPC5516E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516E, POWERPC_SVR_5516E, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516E_v0", "MPC5516E v0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516E_v0, POWERPC_SVR_5516E_v0, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516E_v1", "MPC5516E v1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516E_v1, POWERPC_SVR_5516E_v1, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516G", "MPC5516G",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516G, POWERPC_SVR_5516G, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516G_v0", "MPC5516G v0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516G_v0, POWERPC_SVR_5516G_v0, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516G_v1", "MPC5516G v1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516G_v1, POWERPC_SVR_5516G_v1, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5516S", "MPC5516S",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5516S, POWERPC_SVR_5516S, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5533", "MPC5533",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5533, POWERPC_SVR_5533, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5534", "MPC5534",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5534, POWERPC_SVR_5534, e200)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5553", "MPC5553",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5553, POWERPC_SVR_5553, e200)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5554", "MPC5554",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5554, POWERPC_SVR_5554, e200)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5561", "MPC5561",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5561, POWERPC_SVR_5561, e200)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5565", "MPC5565",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5565, POWERPC_SVR_5565, e200)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5566", "MPC5566",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5566, POWERPC_SVR_5566, e200)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC5567", "MPC5567",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC5567, POWERPC_SVR_5567, e200)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
|
|
|
/* e300 family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e300c1", CPU_POWERPC_e300c1, e300,
|
|
|
|
"PowerPC e300c1 core")
|
|
|
|
POWERPC_DEF("e300c2", CPU_POWERPC_e300c2, e300,
|
|
|
|
"PowerPC e300c2 core")
|
|
|
|
POWERPC_DEF("e300c3", CPU_POWERPC_e300c3, e300,
|
|
|
|
"PowerPC e300c3 core")
|
|
|
|
POWERPC_DEF("e300c4", CPU_POWERPC_e300c4, e300,
|
|
|
|
"PowerPC e300c4 core")
|
2007-11-17 23:02:20 +00:00
|
|
|
/* PowerPC e300 microcontrollers */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8313", "MPC8313",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC831x, POWERPC_SVR_8313, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8313E", "MPC8313E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC831x, POWERPC_SVR_8313E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8314", "MPC8314",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC831x, POWERPC_SVR_8314, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8314E", "MPC8314E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC831x, POWERPC_SVR_8314E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8315", "MPC8315",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC831x, POWERPC_SVR_8315, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8315E", "MPC8315E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC831x, POWERPC_SVR_8315E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8321", "MPC8321",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC832x, POWERPC_SVR_8321, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8321E", "MPC8321E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC832x, POWERPC_SVR_8321E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8323", "MPC8323",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC832x, POWERPC_SVR_8323, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8323E", "MPC8323E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC832x, POWERPC_SVR_8323E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8343", "MPC8343",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8343, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8343A", "MPC8343A",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8343A, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8343E", "MPC8343E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8343E, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8343EA", "MPC8343EA",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8343EA, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347T", "MPC8347T",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347T, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347P", "MPC8347P",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347P, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347AT", "MPC8347AT",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347AT, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347AP", "MPC8347AP",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347AP, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347ET", "MPC8347ET",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347ET, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347EP", "MPC8343EP",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347EP, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347EAT", "MPC8347EAT",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347EAT, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8347EAP", "MPC8343EAP",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8347EAP, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8349", "MPC8349",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8349, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8349A", "MPC8349A",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8349A, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8349E", "MPC8349E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8349E, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8349EA", "MPC8349EA",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC834x, POWERPC_SVR_8349EA, e300)
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8358E", "MPC8358E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC835x, POWERPC_SVR_8358E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8360E", "MPC8360E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC836x, POWERPC_SVR_8360E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8377", "MPC8377",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC837x, POWERPC_SVR_8377, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8377E", "MPC8377E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC837x, POWERPC_SVR_8377E, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8378", "MPC8378",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC837x, POWERPC_SVR_8378, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8378E", "MPC8378E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC837x, POWERPC_SVR_8378E, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8379", "MPC8379",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC837x, POWERPC_SVR_8379, e300)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8379E", "MPC8379E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC837x, POWERPC_SVR_8379E, e300)
|
2007-11-17 23:02:20 +00:00
|
|
|
/* e500 family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e500_v10", CPU_POWERPC_e500v1_v10, e500v1,
|
|
|
|
"PowerPC e500 v1.0 core")
|
|
|
|
POWERPC_DEF("e500_v20", CPU_POWERPC_e500v1_v20, e500v1,
|
|
|
|
"PowerPC e500 v2.0 core")
|
|
|
|
POWERPC_DEF("e500v2_v10", CPU_POWERPC_e500v2_v10, e500v2,
|
|
|
|
"PowerPC e500v2 v1.0 core")
|
|
|
|
POWERPC_DEF("e500v2_v20", CPU_POWERPC_e500v2_v20, e500v2,
|
|
|
|
"PowerPC e500v2 v2.0 core")
|
|
|
|
POWERPC_DEF("e500v2_v21", CPU_POWERPC_e500v2_v21, e500v2,
|
|
|
|
"PowerPC e500v2 v2.1 core")
|
|
|
|
POWERPC_DEF("e500v2_v22", CPU_POWERPC_e500v2_v22, e500v2,
|
|
|
|
"PowerPC e500v2 v2.2 core")
|
|
|
|
POWERPC_DEF("e500v2_v30", CPU_POWERPC_e500v2_v30, e500v2,
|
|
|
|
"PowerPC e500v2 v3.0 core")
|
|
|
|
POWERPC_DEF_SVR("e500mc", "e500mc",
|
|
|
|
CPU_POWERPC_e500mc, POWERPC_SVR_E500, e500mc)
|
2012-06-20 19:55:55 +00:00
|
|
|
#ifdef TARGET_PPC64
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("e5500", "e5500",
|
|
|
|
CPU_POWERPC_e5500, POWERPC_SVR_E500, e5500)
|
2012-06-20 19:55:55 +00:00
|
|
|
#endif
|
2007-11-17 23:02:20 +00:00
|
|
|
/* PowerPC e500 microcontrollers */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8533_v10", "MPC8533 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8533_v10, POWERPC_SVR_8533_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8533_v11", "MPC8533 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8533_v11, POWERPC_SVR_8533_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8533E_v10", "MPC8533E v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8533E_v10, POWERPC_SVR_8533E_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8533E_v11", "MPC8533E v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8533E_v11, POWERPC_SVR_8533E_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8540_v10", "MPC8540 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8540_v10, POWERPC_SVR_8540_v10, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8540_v20", "MPC8540 v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8540_v20, POWERPC_SVR_8540_v20, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8540_v21", "MPC8540 v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8540_v21, POWERPC_SVR_8540_v21, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8541_v10", "MPC8541 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8541_v10, POWERPC_SVR_8541_v10, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8541_v11", "MPC8541 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8541_v11, POWERPC_SVR_8541_v11, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8541E_v10", "MPC8541E v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8541E_v10, POWERPC_SVR_8541E_v10, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8541E_v11", "MPC8541E v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8541E_v11, POWERPC_SVR_8541E_v11, e500v1)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543_v10", "MPC8543 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543_v10, POWERPC_SVR_8543_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543_v11", "MPC8543 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543_v11, POWERPC_SVR_8543_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543_v20", "MPC8543 v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543_v20, POWERPC_SVR_8543_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543_v21", "MPC8543 v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543_v21, POWERPC_SVR_8543_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543E_v10", "MPC8543E v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543E_v10, POWERPC_SVR_8543E_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543E_v11", "MPC8543E v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543E_v11, POWERPC_SVR_8543E_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543E_v20", "MPC8543E v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543E_v20, POWERPC_SVR_8543E_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8543E_v21", "MPC8543E v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8543E_v21, POWERPC_SVR_8543E_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8544_v10", "MPC8544 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8544_v10, POWERPC_SVR_8544_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8544_v11", "MPC8544 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8544_v11, POWERPC_SVR_8544_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8544E_v10", "MPC8544E v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8544E_v10, POWERPC_SVR_8544E_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8544E_v11", "MPC8544E v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8544E_v11, POWERPC_SVR_8544E_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8545_v20", "MPC8545 v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8545_v20, POWERPC_SVR_8545_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8545_v21", "MPC8545 v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8545_v21, POWERPC_SVR_8545_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8545E_v20", "MPC8545E v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8545E_v20, POWERPC_SVR_8545E_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8545E_v21", "MPC8545E v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8545E_v21, POWERPC_SVR_8545E_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8547E_v20", "MPC8547E v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8547E_v20, POWERPC_SVR_8547E_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8547E_v21", "MPC8547E v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8547E_v21, POWERPC_SVR_8547E_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548_v10", "MPC8548 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548_v10, POWERPC_SVR_8548_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548_v11", "MPC8548 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548_v11, POWERPC_SVR_8548_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548_v20", "MPC8548 v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548_v20, POWERPC_SVR_8548_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548_v21", "MPC8548 v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548_v21, POWERPC_SVR_8548_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548E_v10", "MPC8548E v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548E_v10, POWERPC_SVR_8548E_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548E_v11", "MPC8548E v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548E_v11, POWERPC_SVR_8548E_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548E_v20", "MPC8548E v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548E_v20, POWERPC_SVR_8548E_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8548E_v21", "MPC8548E v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8548E_v21, POWERPC_SVR_8548E_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8555_v10", "MPC8555 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8555_v10, POWERPC_SVR_8555_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8555_v11", "MPC8555 v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8555_v11, POWERPC_SVR_8555_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8555E_v10", "MPC8555E v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8555E_v10, POWERPC_SVR_8555E_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8555E_v11", "MPC8555E v1.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8555E_v11, POWERPC_SVR_8555E_v11, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8560_v10", "MPC8560 v1.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8560_v10, POWERPC_SVR_8560_v10, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8560_v20", "MPC8560 v2.0",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8560_v20, POWERPC_SVR_8560_v20, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8560_v21", "MPC8560 v2.1",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8560_v21, POWERPC_SVR_8560_v21, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8567", "MPC8567",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8567, POWERPC_SVR_8567, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8567E", "MPC8567E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8567E, POWERPC_SVR_8567E, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8568", "MPC8568",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8568, POWERPC_SVR_8568, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8568E", "MPC8568E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8568E, POWERPC_SVR_8568E, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8572", "MPC8572",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8572, POWERPC_SVR_8572, e500v2)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8572E", "MPC8572E",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8572E, POWERPC_SVR_8572E, e500v2)
|
2007-11-17 23:02:20 +00:00
|
|
|
/* e600 family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("e600", CPU_POWERPC_e600, 7400,
|
|
|
|
"PowerPC e600 core")
|
2007-11-17 23:02:20 +00:00
|
|
|
/* PowerPC e600 microcontrollers */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8610", "MPC8610",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8610, POWERPC_SVR_8610, 7400)
|
2007-11-17 23:02:20 +00:00
|
|
|
#endif
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8641", "MPC8641",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8641, POWERPC_SVR_8641, 7400)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF_SVR("MPC8641D", "MPC8641D",
|
2013-02-17 23:16:03 +00:00
|
|
|
CPU_POWERPC_MPC8641D, POWERPC_SVR_8641D, 7400)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* 32 bits "classic" PowerPC */
|
|
|
|
/* PowerPC 6xx family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("601_v0", CPU_POWERPC_601_v0, 601,
|
|
|
|
"PowerPC 601v0")
|
|
|
|
POWERPC_DEF("601_v1", CPU_POWERPC_601_v1, 601,
|
|
|
|
"PowerPC 601v1")
|
|
|
|
POWERPC_DEF("601_v2", CPU_POWERPC_601_v2, 601v,
|
|
|
|
"PowerPC 601v2")
|
|
|
|
POWERPC_DEF("602", CPU_POWERPC_602, 602,
|
|
|
|
"PowerPC 602")
|
|
|
|
POWERPC_DEF("603", CPU_POWERPC_603, 603,
|
|
|
|
"PowerPC 603")
|
|
|
|
POWERPC_DEF("603e_v1.1", CPU_POWERPC_603E_v11, 603E,
|
|
|
|
"PowerPC 603e v1.1")
|
|
|
|
POWERPC_DEF("603e_v1.2", CPU_POWERPC_603E_v12, 603E,
|
|
|
|
"PowerPC 603e v1.2")
|
|
|
|
POWERPC_DEF("603e_v1.3", CPU_POWERPC_603E_v13, 603E,
|
|
|
|
"PowerPC 603e v1.3")
|
|
|
|
POWERPC_DEF("603e_v1.4", CPU_POWERPC_603E_v14, 603E,
|
|
|
|
"PowerPC 603e v1.4")
|
|
|
|
POWERPC_DEF("603e_v2.2", CPU_POWERPC_603E_v22, 603E,
|
|
|
|
"PowerPC 603e v2.2")
|
|
|
|
POWERPC_DEF("603e_v3", CPU_POWERPC_603E_v3, 603E,
|
|
|
|
"PowerPC 603e v3")
|
|
|
|
POWERPC_DEF("603e_v4", CPU_POWERPC_603E_v4, 603E,
|
|
|
|
"PowerPC 603e v4")
|
|
|
|
POWERPC_DEF("603e_v4.1", CPU_POWERPC_603E_v41, 603E,
|
|
|
|
"PowerPC 603e v4.1")
|
|
|
|
POWERPC_DEF("603e7", CPU_POWERPC_603E7, 603E,
|
|
|
|
"PowerPC 603e (aka PID7)")
|
|
|
|
POWERPC_DEF("603e7t", CPU_POWERPC_603E7t, 603E,
|
|
|
|
"PowerPC 603e7t")
|
|
|
|
POWERPC_DEF("603e7v", CPU_POWERPC_603E7v, 603E,
|
|
|
|
"PowerPC 603e7v")
|
|
|
|
POWERPC_DEF("603e7v1", CPU_POWERPC_603E7v1, 603E,
|
|
|
|
"PowerPC 603e7v1")
|
|
|
|
POWERPC_DEF("603e7v2", CPU_POWERPC_603E7v2, 603E,
|
|
|
|
"PowerPC 603e7v2")
|
|
|
|
POWERPC_DEF("603p", CPU_POWERPC_603P, 603E,
|
|
|
|
"PowerPC 603p (aka PID7v)")
|
|
|
|
POWERPC_DEF("604", CPU_POWERPC_604, 604,
|
|
|
|
"PowerPC 604")
|
|
|
|
POWERPC_DEF("604e_v1.0", CPU_POWERPC_604E_v10, 604E,
|
|
|
|
"PowerPC 604e v1.0")
|
|
|
|
POWERPC_DEF("604e_v2.2", CPU_POWERPC_604E_v22, 604E,
|
|
|
|
"PowerPC 604e v2.2")
|
|
|
|
POWERPC_DEF("604e_v2.4", CPU_POWERPC_604E_v24, 604E,
|
|
|
|
"PowerPC 604e v2.4")
|
|
|
|
POWERPC_DEF("604r", CPU_POWERPC_604R, 604E,
|
|
|
|
"PowerPC 604r (aka PIDA)")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("604ev", CPU_POWERPC_604EV, 604E,
|
|
|
|
"PowerPC 604ev")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 7xx family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("740_v1.0", CPU_POWERPC_7x0_v10, 740,
|
|
|
|
"PowerPC 740 v1.0 (G3)")
|
|
|
|
POWERPC_DEF("750_v1.0", CPU_POWERPC_7x0_v10, 750,
|
|
|
|
"PowerPC 750 v1.0 (G3)")
|
|
|
|
POWERPC_DEF("740_v2.0", CPU_POWERPC_7x0_v20, 740,
|
|
|
|
"PowerPC 740 v2.0 (G3)")
|
|
|
|
POWERPC_DEF("750_v2.0", CPU_POWERPC_7x0_v20, 750,
|
|
|
|
"PowerPC 750 v2.0 (G3)")
|
|
|
|
POWERPC_DEF("740_v2.1", CPU_POWERPC_7x0_v21, 740,
|
|
|
|
"PowerPC 740 v2.1 (G3)")
|
|
|
|
POWERPC_DEF("750_v2.1", CPU_POWERPC_7x0_v21, 750,
|
|
|
|
"PowerPC 750 v2.1 (G3)")
|
|
|
|
POWERPC_DEF("740_v2.2", CPU_POWERPC_7x0_v22, 740,
|
|
|
|
"PowerPC 740 v2.2 (G3)")
|
|
|
|
POWERPC_DEF("750_v2.2", CPU_POWERPC_7x0_v22, 750,
|
|
|
|
"PowerPC 750 v2.2 (G3)")
|
|
|
|
POWERPC_DEF("740_v3.0", CPU_POWERPC_7x0_v30, 740,
|
|
|
|
"PowerPC 740 v3.0 (G3)")
|
|
|
|
POWERPC_DEF("750_v3.0", CPU_POWERPC_7x0_v30, 750,
|
|
|
|
"PowerPC 750 v3.0 (G3)")
|
|
|
|
POWERPC_DEF("740_v3.1", CPU_POWERPC_7x0_v31, 740,
|
|
|
|
"PowerPC 740 v3.1 (G3)")
|
|
|
|
POWERPC_DEF("750_v3.1", CPU_POWERPC_7x0_v31, 750,
|
|
|
|
"PowerPC 750 v3.1 (G3)")
|
|
|
|
POWERPC_DEF("740e", CPU_POWERPC_740E, 740,
|
|
|
|
"PowerPC 740E (G3)")
|
|
|
|
POWERPC_DEF("750e", CPU_POWERPC_750E, 750,
|
|
|
|
"PowerPC 750E (G3)")
|
|
|
|
POWERPC_DEF("740p", CPU_POWERPC_7x0P, 740,
|
|
|
|
"PowerPC 740P (G3)")
|
|
|
|
POWERPC_DEF("750p", CPU_POWERPC_7x0P, 750,
|
|
|
|
"PowerPC 750P (G3)")
|
|
|
|
POWERPC_DEF("750cl_v1.0", CPU_POWERPC_750CL_v10, 750cl,
|
|
|
|
"PowerPC 750CL v1.0")
|
|
|
|
POWERPC_DEF("750cl_v2.0", CPU_POWERPC_750CL_v20, 750cl,
|
|
|
|
"PowerPC 750CL v2.0")
|
|
|
|
POWERPC_DEF("750cx_v1.0", CPU_POWERPC_750CX_v10, 750cx,
|
|
|
|
"PowerPC 750CX v1.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cx_v2.0", CPU_POWERPC_750CX_v20, 750cx,
|
|
|
|
"PowerPC 750CX v2.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cx_v2.1", CPU_POWERPC_750CX_v21, 750cx,
|
|
|
|
"PowerPC 750CX v2.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cx_v2.2", CPU_POWERPC_750CX_v22, 750cx,
|
|
|
|
"PowerPC 750CX v2.2 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v2.1", CPU_POWERPC_750CXE_v21, 750cx,
|
|
|
|
"PowerPC 750CXe v2.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v2.2", CPU_POWERPC_750CXE_v22, 750cx,
|
|
|
|
"PowerPC 750CXe v2.2 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v2.3", CPU_POWERPC_750CXE_v23, 750cx,
|
|
|
|
"PowerPC 750CXe v2.3 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v2.4", CPU_POWERPC_750CXE_v24, 750cx,
|
|
|
|
"PowerPC 750CXe v2.4 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v2.4b", CPU_POWERPC_750CXE_v24b, 750cx,
|
|
|
|
"PowerPC 750CXe v2.4b (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v3.0", CPU_POWERPC_750CXE_v30, 750cx,
|
|
|
|
"PowerPC 750CXe v3.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v3.1", CPU_POWERPC_750CXE_v31, 750cx,
|
|
|
|
"PowerPC 750CXe v3.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxe_v3.1b", CPU_POWERPC_750CXE_v31b, 750cx,
|
|
|
|
"PowerPC 750CXe v3.1b (G3 embedded)")
|
|
|
|
POWERPC_DEF("750cxr", CPU_POWERPC_750CXR, 750cx,
|
|
|
|
"PowerPC 750CXr (G3 embedded)")
|
|
|
|
POWERPC_DEF("750fl", CPU_POWERPC_750FL, 750fx,
|
|
|
|
"PowerPC 750FL (G3 embedded)")
|
|
|
|
POWERPC_DEF("750fx_v1.0", CPU_POWERPC_750FX_v10, 750fx,
|
|
|
|
"PowerPC 750FX v1.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750fx_v2.0", CPU_POWERPC_750FX_v20, 750fx,
|
|
|
|
"PowerPC 750FX v2.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750fx_v2.1", CPU_POWERPC_750FX_v21, 750fx,
|
|
|
|
"PowerPC 750FX v2.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750fx_v2.2", CPU_POWERPC_750FX_v22, 750fx,
|
|
|
|
"PowerPC 750FX v2.2 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750fx_v2.3", CPU_POWERPC_750FX_v23, 750fx,
|
|
|
|
"PowerPC 750FX v2.3 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750gl", CPU_POWERPC_750GL, 750gx,
|
|
|
|
"PowerPC 750GL (G3 embedded)")
|
|
|
|
POWERPC_DEF("750gx_v1.0", CPU_POWERPC_750GX_v10, 750gx,
|
|
|
|
"PowerPC 750GX v1.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750gx_v1.1", CPU_POWERPC_750GX_v11, 750gx,
|
|
|
|
"PowerPC 750GX v1.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750gx_v1.2", CPU_POWERPC_750GX_v12, 750gx,
|
|
|
|
"PowerPC 750GX v1.2 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750l_v2.0", CPU_POWERPC_750L_v20, 750,
|
|
|
|
"PowerPC 750L v2.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750l_v2.1", CPU_POWERPC_750L_v21, 750,
|
|
|
|
"PowerPC 750L v2.1 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750l_v2.2", CPU_POWERPC_750L_v22, 750,
|
|
|
|
"PowerPC 750L v2.2 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750l_v3.0", CPU_POWERPC_750L_v30, 750,
|
|
|
|
"PowerPC 750L v3.0 (G3 embedded)")
|
|
|
|
POWERPC_DEF("750l_v3.2", CPU_POWERPC_750L_v32, 750,
|
|
|
|
"PowerPC 750L v3.2 (G3 embedded)")
|
|
|
|
POWERPC_DEF("745_v1.0", CPU_POWERPC_7x5_v10, 745,
|
|
|
|
"PowerPC 745 v1.0")
|
|
|
|
POWERPC_DEF("755_v1.0", CPU_POWERPC_7x5_v10, 755,
|
|
|
|
"PowerPC 755 v1.0")
|
|
|
|
POWERPC_DEF("745_v1.1", CPU_POWERPC_7x5_v11, 745,
|
|
|
|
"PowerPC 745 v1.1")
|
|
|
|
POWERPC_DEF("755_v1.1", CPU_POWERPC_7x5_v11, 755,
|
|
|
|
"PowerPC 755 v1.1")
|
|
|
|
POWERPC_DEF("745_v2.0", CPU_POWERPC_7x5_v20, 745,
|
|
|
|
"PowerPC 745 v2.0")
|
|
|
|
POWERPC_DEF("755_v2.0", CPU_POWERPC_7x5_v20, 755,
|
|
|
|
"PowerPC 755 v2.0")
|
|
|
|
POWERPC_DEF("745_v2.1", CPU_POWERPC_7x5_v21, 745,
|
|
|
|
"PowerPC 745 v2.1")
|
|
|
|
POWERPC_DEF("755_v2.1", CPU_POWERPC_7x5_v21, 755,
|
|
|
|
"PowerPC 755 v2.1")
|
|
|
|
POWERPC_DEF("745_v2.2", CPU_POWERPC_7x5_v22, 745,
|
|
|
|
"PowerPC 745 v2.2")
|
|
|
|
POWERPC_DEF("755_v2.2", CPU_POWERPC_7x5_v22, 755,
|
|
|
|
"PowerPC 755 v2.2")
|
|
|
|
POWERPC_DEF("745_v2.3", CPU_POWERPC_7x5_v23, 745,
|
|
|
|
"PowerPC 745 v2.3")
|
|
|
|
POWERPC_DEF("755_v2.3", CPU_POWERPC_7x5_v23, 755,
|
|
|
|
"PowerPC 755 v2.3")
|
|
|
|
POWERPC_DEF("745_v2.4", CPU_POWERPC_7x5_v24, 745,
|
|
|
|
"PowerPC 745 v2.4")
|
|
|
|
POWERPC_DEF("755_v2.4", CPU_POWERPC_7x5_v24, 755,
|
|
|
|
"PowerPC 755 v2.4")
|
|
|
|
POWERPC_DEF("745_v2.5", CPU_POWERPC_7x5_v25, 745,
|
|
|
|
"PowerPC 745 v2.5")
|
|
|
|
POWERPC_DEF("755_v2.5", CPU_POWERPC_7x5_v25, 755,
|
|
|
|
"PowerPC 755 v2.5")
|
|
|
|
POWERPC_DEF("745_v2.6", CPU_POWERPC_7x5_v26, 745,
|
|
|
|
"PowerPC 745 v2.6")
|
|
|
|
POWERPC_DEF("755_v2.6", CPU_POWERPC_7x5_v26, 755,
|
|
|
|
"PowerPC 755 v2.6")
|
|
|
|
POWERPC_DEF("745_v2.7", CPU_POWERPC_7x5_v27, 745,
|
|
|
|
"PowerPC 745 v2.7")
|
|
|
|
POWERPC_DEF("755_v2.7", CPU_POWERPC_7x5_v27, 755,
|
|
|
|
"PowerPC 755 v2.7")
|
|
|
|
POWERPC_DEF("745_v2.8", CPU_POWERPC_7x5_v28, 745,
|
|
|
|
"PowerPC 745 v2.8")
|
|
|
|
POWERPC_DEF("755_v2.8", CPU_POWERPC_7x5_v28, 755,
|
|
|
|
"PowerPC 755 v2.8")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("745p", CPU_POWERPC_7x5P, 745,
|
|
|
|
"PowerPC 745P (G3)")
|
|
|
|
POWERPC_DEF("755p", CPU_POWERPC_7x5P, 755,
|
|
|
|
"PowerPC 755P (G3)")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PowerPC 74xx family */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("7400_v1.0", CPU_POWERPC_7400_v10, 7400,
|
|
|
|
"PowerPC 7400 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7400_v1.1", CPU_POWERPC_7400_v11, 7400,
|
|
|
|
"PowerPC 7400 v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.0", CPU_POWERPC_7400_v20, 7400,
|
|
|
|
"PowerPC 7400 v2.0 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.1", CPU_POWERPC_7400_v21, 7400,
|
|
|
|
"PowerPC 7400 v2.1 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.2", CPU_POWERPC_7400_v22, 7400,
|
|
|
|
"PowerPC 7400 v2.2 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.6", CPU_POWERPC_7400_v26, 7400,
|
|
|
|
"PowerPC 7400 v2.6 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.7", CPU_POWERPC_7400_v27, 7400,
|
|
|
|
"PowerPC 7400 v2.7 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.8", CPU_POWERPC_7400_v28, 7400,
|
|
|
|
"PowerPC 7400 v2.8 (G4)")
|
|
|
|
POWERPC_DEF("7400_v2.9", CPU_POWERPC_7400_v29, 7400,
|
|
|
|
"PowerPC 7400 v2.9 (G4)")
|
|
|
|
POWERPC_DEF("7410_v1.0", CPU_POWERPC_7410_v10, 7410,
|
|
|
|
"PowerPC 7410 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7410_v1.1", CPU_POWERPC_7410_v11, 7410,
|
|
|
|
"PowerPC 7410 v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7410_v1.2", CPU_POWERPC_7410_v12, 7410,
|
|
|
|
"PowerPC 7410 v1.2 (G4)")
|
|
|
|
POWERPC_DEF("7410_v1.3", CPU_POWERPC_7410_v13, 7410,
|
|
|
|
"PowerPC 7410 v1.3 (G4)")
|
|
|
|
POWERPC_DEF("7410_v1.4", CPU_POWERPC_7410_v14, 7410,
|
|
|
|
"PowerPC 7410 v1.4 (G4)")
|
|
|
|
POWERPC_DEF("7448_v1.0", CPU_POWERPC_7448_v10, 7400,
|
|
|
|
"PowerPC 7448 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7448_v1.1", CPU_POWERPC_7448_v11, 7400,
|
|
|
|
"PowerPC 7448 v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7448_v2.0", CPU_POWERPC_7448_v20, 7400,
|
|
|
|
"PowerPC 7448 v2.0 (G4)")
|
|
|
|
POWERPC_DEF("7448_v2.1", CPU_POWERPC_7448_v21, 7400,
|
|
|
|
"PowerPC 7448 v2.1 (G4)")
|
|
|
|
POWERPC_DEF("7450_v1.0", CPU_POWERPC_7450_v10, 7450,
|
|
|
|
"PowerPC 7450 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7450_v1.1", CPU_POWERPC_7450_v11, 7450,
|
|
|
|
"PowerPC 7450 v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7450_v1.2", CPU_POWERPC_7450_v12, 7450,
|
|
|
|
"PowerPC 7450 v1.2 (G4)")
|
|
|
|
POWERPC_DEF("7450_v2.0", CPU_POWERPC_7450_v20, 7450,
|
|
|
|
"PowerPC 7450 v2.0 (G4)")
|
|
|
|
POWERPC_DEF("7450_v2.1", CPU_POWERPC_7450_v21, 7450,
|
|
|
|
"PowerPC 7450 v2.1 (G4)")
|
|
|
|
POWERPC_DEF("7441_v2.1", CPU_POWERPC_7450_v21, 7440,
|
|
|
|
"PowerPC 7441 v2.1 (G4)")
|
|
|
|
POWERPC_DEF("7441_v2.3", CPU_POWERPC_74x1_v23, 7440,
|
|
|
|
"PowerPC 7441 v2.3 (G4)")
|
|
|
|
POWERPC_DEF("7451_v2.3", CPU_POWERPC_74x1_v23, 7450,
|
|
|
|
"PowerPC 7451 v2.3 (G4)")
|
|
|
|
POWERPC_DEF("7441_v2.10", CPU_POWERPC_74x1_v210, 7440,
|
|
|
|
"PowerPC 7441 v2.10 (G4)")
|
|
|
|
POWERPC_DEF("7451_v2.10", CPU_POWERPC_74x1_v210, 7450,
|
|
|
|
"PowerPC 7451 v2.10 (G4)")
|
|
|
|
POWERPC_DEF("7445_v1.0", CPU_POWERPC_74x5_v10, 7445,
|
|
|
|
"PowerPC 7445 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7455_v1.0", CPU_POWERPC_74x5_v10, 7455,
|
|
|
|
"PowerPC 7455 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7445_v2.1", CPU_POWERPC_74x5_v21, 7445,
|
|
|
|
"PowerPC 7445 v2.1 (G4)")
|
|
|
|
POWERPC_DEF("7455_v2.1", CPU_POWERPC_74x5_v21, 7455,
|
|
|
|
"PowerPC 7455 v2.1 (G4)")
|
|
|
|
POWERPC_DEF("7445_v3.2", CPU_POWERPC_74x5_v32, 7445,
|
|
|
|
"PowerPC 7445 v3.2 (G4)")
|
|
|
|
POWERPC_DEF("7455_v3.2", CPU_POWERPC_74x5_v32, 7455,
|
|
|
|
"PowerPC 7455 v3.2 (G4)")
|
|
|
|
POWERPC_DEF("7445_v3.3", CPU_POWERPC_74x5_v33, 7445,
|
|
|
|
"PowerPC 7445 v3.3 (G4)")
|
|
|
|
POWERPC_DEF("7455_v3.3", CPU_POWERPC_74x5_v33, 7455,
|
|
|
|
"PowerPC 7455 v3.3 (G4)")
|
|
|
|
POWERPC_DEF("7445_v3.4", CPU_POWERPC_74x5_v34, 7445,
|
|
|
|
"PowerPC 7445 v3.4 (G4)")
|
|
|
|
POWERPC_DEF("7455_v3.4", CPU_POWERPC_74x5_v34, 7455,
|
|
|
|
"PowerPC 7455 v3.4 (G4)")
|
|
|
|
POWERPC_DEF("7447_v1.0", CPU_POWERPC_74x7_v10, 7445,
|
|
|
|
"PowerPC 7447 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7457_v1.0", CPU_POWERPC_74x7_v10, 7455,
|
|
|
|
"PowerPC 7457 v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7447_v1.1", CPU_POWERPC_74x7_v11, 7445,
|
|
|
|
"PowerPC 7447 v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7457_v1.1", CPU_POWERPC_74x7_v11, 7455,
|
|
|
|
"PowerPC 7457 v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7457_v1.2", CPU_POWERPC_74x7_v12, 7455,
|
|
|
|
"PowerPC 7457 v1.2 (G4)")
|
|
|
|
POWERPC_DEF("7447A_v1.0", CPU_POWERPC_74x7A_v10, 7445,
|
|
|
|
"PowerPC 7447A v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7457A_v1.0", CPU_POWERPC_74x7A_v10, 7455,
|
|
|
|
"PowerPC 7457A v1.0 (G4)")
|
|
|
|
POWERPC_DEF("7447A_v1.1", CPU_POWERPC_74x7A_v11, 7445,
|
|
|
|
"PowerPC 7447A v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7457A_v1.1", CPU_POWERPC_74x7A_v11, 7455,
|
|
|
|
"PowerPC 7457A v1.1 (G4)")
|
|
|
|
POWERPC_DEF("7447A_v1.2", CPU_POWERPC_74x7A_v12, 7445,
|
|
|
|
"PowerPC 7447A v1.2 (G4)")
|
|
|
|
POWERPC_DEF("7457A_v1.2", CPU_POWERPC_74x7A_v12, 7455,
|
|
|
|
"PowerPC 7457A v1.2 (G4)")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* 64 bits PowerPC */
|
|
|
|
#if defined (TARGET_PPC64)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("620", CPU_POWERPC_620, 620,
|
|
|
|
"PowerPC 620")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("630", CPU_POWERPC_630, 630,
|
|
|
|
"PowerPC 630 (POWER3)")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("631", CPU_POWERPC_631, 631,
|
|
|
|
"PowerPC 631 (Power 3+)")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER4", CPU_POWERPC_POWER4, POWER4,
|
|
|
|
"POWER4")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER4+", CPU_POWERPC_POWER4P, POWER4P,
|
|
|
|
"POWER4p")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER5", CPU_POWERPC_POWER5, POWER5,
|
|
|
|
"POWER5")
|
|
|
|
POWERPC_DEF("POWER5gr", CPU_POWERPC_POWER5GR, POWER5,
|
|
|
|
"POWER5GR")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER5+", CPU_POWERPC_POWER5P, POWER5P,
|
|
|
|
"POWER5+")
|
|
|
|
POWERPC_DEF("POWER5gs", CPU_POWERPC_POWER5GS, POWER5P,
|
|
|
|
"POWER5GS")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER6", CPU_POWERPC_POWER6, POWER6,
|
|
|
|
"POWER6")
|
|
|
|
POWERPC_DEF("POWER6_5", CPU_POWERPC_POWER6_5, POWER5,
|
|
|
|
"POWER6 running in POWER5 mode")
|
|
|
|
POWERPC_DEF("POWER6A", CPU_POWERPC_POWER6A, POWER6,
|
|
|
|
"POWER6A")
|
|
|
|
#endif
|
|
|
|
POWERPC_DEF("POWER7_v2.0", CPU_POWERPC_POWER7_v20, POWER7,
|
|
|
|
"POWER7 v2.0")
|
|
|
|
POWERPC_DEF("POWER7_v2.1", CPU_POWERPC_POWER7_v21, POWER7,
|
|
|
|
"POWER7 v2.1")
|
|
|
|
POWERPC_DEF("POWER7_v2.3", CPU_POWERPC_POWER7_v23, POWER7,
|
|
|
|
"POWER7 v2.3")
|
|
|
|
POWERPC_DEF("970", CPU_POWERPC_970, 970,
|
|
|
|
"PowerPC 970")
|
|
|
|
POWERPC_DEF("970fx_v1.0", CPU_POWERPC_970FX_v10, 970FX,
|
|
|
|
"PowerPC 970FX v1.0 (G5)")
|
|
|
|
POWERPC_DEF("970fx_v2.0", CPU_POWERPC_970FX_v20, 970FX,
|
|
|
|
"PowerPC 970FX v2.0 (G5)")
|
|
|
|
POWERPC_DEF("970fx_v2.1", CPU_POWERPC_970FX_v21, 970FX,
|
|
|
|
"PowerPC 970FX v2.1 (G5)")
|
|
|
|
POWERPC_DEF("970fx_v3.0", CPU_POWERPC_970FX_v30, 970FX,
|
|
|
|
"PowerPC 970FX v3.0 (G5)")
|
|
|
|
POWERPC_DEF("970fx_v3.1", CPU_POWERPC_970FX_v31, 970FX,
|
|
|
|
"PowerPC 970FX v3.1 (G5)")
|
|
|
|
POWERPC_DEF("970gx", CPU_POWERPC_970GX, 970GX,
|
|
|
|
"PowerPC 970GX (G5)")
|
|
|
|
POWERPC_DEF("970mp_v1.0", CPU_POWERPC_970MP_v10, 970MP,
|
|
|
|
"PowerPC 970MP v1.0")
|
|
|
|
POWERPC_DEF("970mp_v1.1", CPU_POWERPC_970MP_v11, 970MP,
|
|
|
|
"PowerPC 970MP v1.1")
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Cell", CPU_POWERPC_CELL, 970,
|
|
|
|
"PowerPC Cell")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Cell_v1.0", CPU_POWERPC_CELL_v10, 970,
|
|
|
|
"PowerPC Cell v1.0")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Cell_v2.0", CPU_POWERPC_CELL_v20, 970,
|
|
|
|
"PowerPC Cell v2.0")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Cell_v3.0", CPU_POWERPC_CELL_v30, 970,
|
|
|
|
"PowerPC Cell v3.0")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Cell_v3.1", CPU_POWERPC_CELL_v31, 970,
|
|
|
|
"PowerPC Cell v3.1")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("Cell_v3.2", CPU_POWERPC_CELL_v32, 970,
|
|
|
|
"PowerPC Cell v3.2")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* This one seems to support the whole POWER2 instruction set
|
|
|
|
* and the PowerPC 64 one.
|
|
|
|
*/
|
|
|
|
/* What about A10 & A30 ? */
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("RS64", CPU_POWERPC_RS64, RS64,
|
|
|
|
"RS64 (Apache/A35)")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("RS64-II", CPU_POWERPC_RS64II, RS64,
|
|
|
|
"RS64-II (NorthStar/A50)")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("RS64-III", CPU_POWERPC_RS64III, RS64,
|
|
|
|
"RS64-III (Pulsar)")
|
2007-09-21 05:50:37 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("RS64-IV", CPU_POWERPC_RS64IV, RS64,
|
|
|
|
"RS64-IV (IceStar/IStar/SStar)")
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif /* defined (TARGET_PPC64) */
|
|
|
|
/* POWER */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER", CPU_POWERPC_POWER, POWER,
|
|
|
|
"Original POWER")
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("POWER2", CPU_POWERPC_POWER2, POWER,
|
|
|
|
"POWER2")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
|
|
|
/* PA semi cores */
|
2013-02-17 23:16:48 +00:00
|
|
|
#if defined(TODO)
|
2013-02-17 23:16:47 +00:00
|
|
|
POWERPC_DEF("PA6T", CPU_POWERPC_PA6T, PA6T,
|
|
|
|
"PA PA6T")
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#endif
|
2013-02-17 23:16:04 +00:00
|
|
|
|
|
|
|
typedef struct PowerPCCPUAlias {
|
|
|
|
const char *alias;
|
|
|
|
const char *model;
|
|
|
|
} PowerPCCPUAlias;
|
|
|
|
|
|
|
|
static const PowerPCCPUAlias ppc_cpu_aliases[] = {
|
2013-02-17 23:16:08 +00:00
|
|
|
{ "403", "403GC" },
|
|
|
|
{ "405", "405D4" },
|
|
|
|
{ "405CR", "405CRc" },
|
|
|
|
{ "405GP", "405GPd" },
|
2013-02-17 23:16:37 +00:00
|
|
|
{ "405GPe", "405CRc" },
|
2013-02-17 23:16:08 +00:00
|
|
|
{ "x2vp7", "x2vp4" },
|
|
|
|
{ "x2vp50", "x2vp20" },
|
|
|
|
|
2013-02-17 23:16:09 +00:00
|
|
|
{ "440EP", "440EPb" },
|
|
|
|
{ "440GP", "440GPc" },
|
|
|
|
{ "440GR", "440GRa" },
|
|
|
|
{ "440GX", "440GXf" },
|
|
|
|
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "RCPU", "MPC5xx" },
|
2013-02-17 23:16:06 +00:00
|
|
|
/* MPC5xx microcontrollers */
|
|
|
|
{ "MGT560", "MPC5xx" },
|
|
|
|
{ "MPC509", "MPC5xx" },
|
|
|
|
{ "MPC533", "MPC5xx" },
|
|
|
|
{ "MPC534", "MPC5xx" },
|
|
|
|
{ "MPC555", "MPC5xx" },
|
|
|
|
{ "MPC556", "MPC5xx" },
|
|
|
|
{ "MPC560", "MPC5xx" },
|
|
|
|
{ "MPC561", "MPC5xx" },
|
|
|
|
{ "MPC562", "MPC5xx" },
|
|
|
|
{ "MPC563", "MPC5xx" },
|
|
|
|
{ "MPC564", "MPC5xx" },
|
|
|
|
{ "MPC565", "MPC5xx" },
|
|
|
|
{ "MPC566", "MPC5xx" },
|
|
|
|
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "PowerQUICC", "MPC8xx" },
|
2013-02-17 23:16:07 +00:00
|
|
|
/* MPC8xx microcontrollers */
|
|
|
|
{ "MGT823", "MPC8xx" },
|
|
|
|
{ "MPC821", "MPC8xx" },
|
|
|
|
{ "MPC823", "MPC8xx" },
|
|
|
|
{ "MPC850", "MPC8xx" },
|
|
|
|
{ "MPC852T", "MPC8xx" },
|
|
|
|
{ "MPC855T", "MPC8xx" },
|
|
|
|
{ "MPC857", "MPC8xx" },
|
|
|
|
{ "MPC859", "MPC8xx" },
|
|
|
|
{ "MPC860", "MPC8xx" },
|
|
|
|
{ "MPC862", "MPC8xx" },
|
|
|
|
{ "MPC866", "MPC8xx" },
|
|
|
|
{ "MPC870", "MPC8xx" },
|
|
|
|
{ "MPC875", "MPC8xx" },
|
|
|
|
{ "MPC880", "MPC8xx" },
|
|
|
|
{ "MPC885", "MPC8xx" },
|
|
|
|
|
2013-02-17 23:16:36 +00:00
|
|
|
/* PowerPC MPC603 microcontrollers */
|
|
|
|
{ "MPC8240", "603" },
|
|
|
|
|
2013-02-17 23:16:34 +00:00
|
|
|
{ "MPC52xx", "MPC5200" },
|
2013-02-17 23:16:35 +00:00
|
|
|
{ "MPC5200", "MPC5200_v12" },
|
|
|
|
{ "MPC5200B", "MPC5200B_v21" },
|
2013-02-17 23:16:34 +00:00
|
|
|
|
2013-02-17 23:16:30 +00:00
|
|
|
{ "MPC82xx", "MPC8280" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "PowerQUICC-II", "MPC82xx" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8241", "G2HiP4" },
|
|
|
|
{ "MPC8245", "G2HiP4" },
|
2013-02-17 23:16:31 +00:00
|
|
|
{ "MPC8247", "G2leGP3" },
|
|
|
|
{ "MPC8248", "G2leGP3" },
|
2013-02-17 23:16:32 +00:00
|
|
|
{ "MPC8250", "MPC8250_HiP4" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8250_HiP3", "G2HiP3" },
|
|
|
|
{ "MPC8250_HiP4", "G2HiP4" },
|
2013-02-17 23:16:32 +00:00
|
|
|
{ "MPC8255", "MPC8255_HiP4" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8255_HiP3", "G2HiP3" },
|
|
|
|
{ "MPC8255_HiP4", "G2HiP4" },
|
2013-02-17 23:16:32 +00:00
|
|
|
{ "MPC8260", "MPC8260_HiP4" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8260_HiP3", "G2HiP3" },
|
|
|
|
{ "MPC8260_HiP4", "G2HiP4" },
|
2013-02-17 23:16:32 +00:00
|
|
|
{ "MPC8264", "MPC8264_HiP4" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8264_HiP3", "G2HiP3" },
|
|
|
|
{ "MPC8264_HiP4", "G2HiP4" },
|
2013-02-17 23:16:32 +00:00
|
|
|
{ "MPC8265", "MPC8265_HiP4" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8265_HiP3", "G2HiP3" },
|
|
|
|
{ "MPC8265_HiP4", "G2HiP4" },
|
2013-02-17 23:16:32 +00:00
|
|
|
{ "MPC8266", "MPC8266_HiP4" },
|
2013-02-17 23:16:33 +00:00
|
|
|
{ "MPC8266_HiP3", "G2HiP3" },
|
|
|
|
{ "MPC8266_HiP4", "G2HiP4" },
|
2013-02-17 23:16:31 +00:00
|
|
|
{ "MPC8270", "G2leGP3" },
|
|
|
|
{ "MPC8271", "G2leGP3" },
|
|
|
|
{ "MPC8272", "G2leGP3" },
|
|
|
|
{ "MPC8275", "G2leGP3" },
|
|
|
|
{ "MPC8280", "G2leGP3" },
|
2013-02-17 23:16:29 +00:00
|
|
|
{ "e200", "e200z6" },
|
2013-02-17 23:16:28 +00:00
|
|
|
{ "e300", "e300c3" },
|
2013-02-17 23:16:27 +00:00
|
|
|
{ "MPC8347", "MPC8347T" },
|
|
|
|
{ "MPC8347A", "MPC8347AT" },
|
|
|
|
{ "MPC8347E", "MPC8347ET" },
|
|
|
|
{ "MPC8347EA", "MPC8347EAT" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "e500", "e500v2_v22" },
|
2013-02-17 23:16:26 +00:00
|
|
|
{ "e500v1", "e500_v20" },
|
|
|
|
{ "e500v2", "e500v2_v22" },
|
2013-02-17 23:16:25 +00:00
|
|
|
{ "MPC8533", "MPC8533_v11" },
|
|
|
|
{ "MPC8533E", "MPC8533E_v11" },
|
|
|
|
{ "MPC8540", "MPC8540_v21" },
|
|
|
|
{ "MPC8541", "MPC8541_v11" },
|
|
|
|
{ "MPC8541E", "MPC8541E_v11" },
|
|
|
|
{ "MPC8543", "MPC8543_v21" },
|
|
|
|
{ "MPC8543E", "MPC8543E_v21" },
|
|
|
|
{ "MPC8544", "MPC8544_v11" },
|
|
|
|
{ "MPC8544E", "MPC8544E_v11" },
|
|
|
|
{ "MPC8545", "MPC8545_v21" },
|
|
|
|
{ "MPC8545E", "MPC8545E_v21" },
|
|
|
|
{ "MPC8547E", "MPC8547E_v21" },
|
|
|
|
{ "MPC8548", "MPC8548_v21" },
|
|
|
|
{ "MPC8548E", "MPC8548E_v21" },
|
|
|
|
{ "MPC8555", "MPC8555_v11" },
|
|
|
|
{ "MPC8555E", "MPC8555E_v11" },
|
|
|
|
{ "MPC8560", "MPC8560_v21" },
|
2013-02-17 23:16:24 +00:00
|
|
|
{ "601", "601_v2" },
|
|
|
|
{ "601v", "601_v2" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Vanilla", "603" },
|
2013-02-17 23:16:22 +00:00
|
|
|
{ "603e", "603e_v4.1" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Stretch", "603e" },
|
|
|
|
{ "Vaillant", "603e7v" },
|
2013-02-17 23:16:23 +00:00
|
|
|
{ "603r", "603e7t" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Goldeneye", "603r" },
|
2013-02-17 23:16:21 +00:00
|
|
|
{ "604e", "604e_v2.4" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Sirocco", "604e" },
|
|
|
|
{ "Mach5", "604r" },
|
2013-02-17 23:16:20 +00:00
|
|
|
{ "740", "740_v3.1" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Arthur", "740" },
|
2013-02-17 23:16:20 +00:00
|
|
|
{ "750", "750_v3.1" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Typhoon", "750" },
|
|
|
|
{ "G3", "750" },
|
|
|
|
{ "Conan/Doyle", "750p" },
|
2013-02-17 23:16:19 +00:00
|
|
|
{ "750cl", "750cl_v2.0" },
|
|
|
|
{ "750cx", "750cx_v2.2" },
|
|
|
|
{ "750cxe", "750cxe_v3.1b" },
|
|
|
|
{ "750fx", "750fx_v2.3" },
|
|
|
|
{ "750gx", "750gx_v1.2" },
|
|
|
|
{ "750l", "750l_v3.2" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "LoneStar", "750l" },
|
2013-02-17 23:16:18 +00:00
|
|
|
{ "745", "745_v2.8" },
|
|
|
|
{ "755", "755_v2.8" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Goldfinger", "755" },
|
2013-02-17 23:16:17 +00:00
|
|
|
{ "7400", "7400_v2.9" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Max", "7400" },
|
|
|
|
{ "G4", "7400" },
|
2013-02-17 23:16:16 +00:00
|
|
|
{ "7410", "7410_v1.4" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Nitro", "7410" },
|
2013-02-17 23:16:15 +00:00
|
|
|
{ "7448", "7448_v2.1" },
|
2013-02-17 23:16:14 +00:00
|
|
|
{ "7450", "7450_v2.1" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Vger", "7450" },
|
2013-02-17 23:16:13 +00:00
|
|
|
{ "7441", "7441_v2.3" },
|
|
|
|
{ "7451", "7451_v2.3" },
|
2013-02-17 23:16:12 +00:00
|
|
|
{ "7445", "7445_v3.2" },
|
|
|
|
{ "7455", "7455_v3.2" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Apollo6", "7455" },
|
2013-02-17 23:16:11 +00:00
|
|
|
{ "7447", "7447_v1.2" },
|
|
|
|
{ "7457", "7457_v1.2" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Apollo7", "7457" },
|
2013-02-17 23:16:11 +00:00
|
|
|
{ "7447A", "7447A_v1.2" },
|
|
|
|
{ "7457A", "7457A_v1.2" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Apollo7PM", "7457A_v1.0" },
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
{ "Trident", "620" },
|
|
|
|
{ "POWER3", "630" },
|
|
|
|
{ "Boxer", "POWER3" },
|
|
|
|
{ "Dino", "POWER3" },
|
|
|
|
{ "POWER3+", "631" },
|
2013-02-17 23:16:39 +00:00
|
|
|
{ "POWER7", "POWER7_v2.0" },
|
2013-02-17 23:16:38 +00:00
|
|
|
{ "970fx", "970fx_v3.1" },
|
|
|
|
{ "970mp", "970mp_v1.1" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "Apache", "RS64" },
|
|
|
|
{ "A35", "RS64" },
|
|
|
|
{ "NorthStar", "RS64-II" },
|
|
|
|
{ "A50", "RS64-II" },
|
|
|
|
{ "Pulsar", "RS64-III" },
|
|
|
|
{ "IceStar", "RS64-IV" },
|
|
|
|
{ "IStar", "RS64-IV" },
|
|
|
|
{ "SStar", "RS64-IV" },
|
|
|
|
#endif
|
|
|
|
{ "RIOS", "POWER" },
|
|
|
|
{ "RSC", "POWER" },
|
|
|
|
{ "RSC3308", "POWER" },
|
|
|
|
{ "RSC4608", "POWER" },
|
|
|
|
{ "RSC2", "POWER2" },
|
|
|
|
{ "P2SC", "POWER2" },
|
|
|
|
|
2013-02-17 23:16:10 +00:00
|
|
|
/* Generic PowerPCs */
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
{ "ppc64", "970fx" },
|
|
|
|
#endif
|
|
|
|
{ "ppc32", "604" },
|
2013-02-17 23:16:05 +00:00
|
|
|
{ "ppc", "ppc32" },
|
2013-02-17 23:16:04 +00:00
|
|
|
{ "default", "ppc" },
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2011-04-28 15:20:36 +00:00
|
|
|
/* Generic CPU instantiation routine */
|
2013-02-17 23:16:41 +00:00
|
|
|
static void init_ppc_proc(PowerPCCPU *cpu)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2013-02-17 23:16:41 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-29 13:06:16 +00:00
|
|
|
int i;
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
env->irq_inputs = NULL;
|
2007-09-29 13:06:16 +00:00
|
|
|
/* Set all exception vectors to an invalid address */
|
|
|
|
for (i = 0; i < POWERPC_EXCP_NB; i++)
|
|
|
|
env->excp_vectors[i] = (target_ulong)(-1ULL);
|
2009-04-28 18:00:30 +00:00
|
|
|
env->hreset_excp_prefix = 0x00000000;
|
2007-09-29 13:06:16 +00:00
|
|
|
env->ivor_mask = 0x00000000;
|
|
|
|
env->ivpr_mask = 0x00000000;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Default MMU definitions */
|
|
|
|
env->nb_BATs = 0;
|
|
|
|
env->nb_tlb = 0;
|
|
|
|
env->nb_ways = 0;
|
2011-06-16 23:00:28 +00:00
|
|
|
env->tlb_type = TLB_NONE;
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Register SPR common to all PowerPC implementations */
|
|
|
|
gen_spr_generic(env);
|
|
|
|
spr_register(env, SPR_PVR, "PVR",
|
2009-06-05 01:45:03 +00:00
|
|
|
/* Linux permits userspace to read PVR */
|
|
|
|
#if defined(CONFIG_LINUX_USER)
|
|
|
|
&spr_read_generic,
|
|
|
|
#else
|
|
|
|
SPR_NOACCESS,
|
|
|
|
#endif
|
|
|
|
SPR_NOACCESS,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2013-02-17 23:16:41 +00:00
|
|
|
pcc->pvr);
|
2007-11-17 23:02:20 +00:00
|
|
|
/* Register SVR if it's defined to anything else than POWERPC_SVR_NONE */
|
2013-02-17 23:16:41 +00:00
|
|
|
if (pcc->svr != POWERPC_SVR_NONE) {
|
|
|
|
if (pcc->svr & POWERPC_SVR_E500) {
|
2007-11-17 23:02:20 +00:00
|
|
|
spr_register(env, SPR_E500_SVR, "SVR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2013-02-17 23:16:41 +00:00
|
|
|
pcc->svr & ~POWERPC_SVR_E500);
|
2007-11-17 23:02:20 +00:00
|
|
|
} else {
|
|
|
|
spr_register(env, SPR_SVR, "SVR",
|
|
|
|
SPR_NOACCESS, SPR_NOACCESS,
|
|
|
|
&spr_read_generic, SPR_NOACCESS,
|
2013-02-17 23:16:41 +00:00
|
|
|
pcc->svr);
|
2007-11-17 23:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* PowerPC implementation specific initialisations (SPRs, timers, ...) */
|
2013-02-17 23:16:41 +00:00
|
|
|
(*pcc->init_proc)(env);
|
2009-04-28 18:00:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->excp_prefix = env->hreset_excp_prefix;
|
|
|
|
#endif
|
2007-10-08 02:58:07 +00:00
|
|
|
/* MSR bits & flags consistency checks */
|
|
|
|
if (env->msr_mask & (1 << 25)) {
|
|
|
|
switch (env->flags & (POWERPC_FLAG_SPE | POWERPC_FLAG_VRE)) {
|
|
|
|
case POWERPC_FLAG_SPE:
|
|
|
|
case POWERPC_FLAG_VRE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should define POWERPC_FLAG_SPE or POWERPC_FLAG_VRE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (env->flags & (POWERPC_FLAG_SPE | POWERPC_FLAG_VRE)) {
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should not define POWERPC_FLAG_SPE nor POWERPC_FLAG_VRE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (env->msr_mask & (1 << 17)) {
|
|
|
|
switch (env->flags & (POWERPC_FLAG_TGPR | POWERPC_FLAG_CE)) {
|
|
|
|
case POWERPC_FLAG_TGPR:
|
|
|
|
case POWERPC_FLAG_CE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should define POWERPC_FLAG_TGPR or POWERPC_FLAG_CE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (env->flags & (POWERPC_FLAG_TGPR | POWERPC_FLAG_CE)) {
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should not define POWERPC_FLAG_TGPR nor POWERPC_FLAG_CE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (env->msr_mask & (1 << 10)) {
|
|
|
|
switch (env->flags & (POWERPC_FLAG_SE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_UBLE)) {
|
|
|
|
case POWERPC_FLAG_SE:
|
|
|
|
case POWERPC_FLAG_DWE:
|
|
|
|
case POWERPC_FLAG_UBLE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should define POWERPC_FLAG_SE or POWERPC_FLAG_DWE or "
|
|
|
|
"POWERPC_FLAG_UBLE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (env->flags & (POWERPC_FLAG_SE | POWERPC_FLAG_DWE |
|
|
|
|
POWERPC_FLAG_UBLE)) {
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should not define POWERPC_FLAG_SE nor POWERPC_FLAG_DWE nor "
|
|
|
|
"POWERPC_FLAG_UBLE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (env->msr_mask & (1 << 9)) {
|
|
|
|
switch (env->flags & (POWERPC_FLAG_BE | POWERPC_FLAG_DE)) {
|
|
|
|
case POWERPC_FLAG_BE:
|
|
|
|
case POWERPC_FLAG_DE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should define POWERPC_FLAG_BE or POWERPC_FLAG_DE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (env->flags & (POWERPC_FLAG_BE | POWERPC_FLAG_DE)) {
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should not define POWERPC_FLAG_BE nor POWERPC_FLAG_DE\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (env->msr_mask & (1 << 2)) {
|
|
|
|
switch (env->flags & (POWERPC_FLAG_PX | POWERPC_FLAG_PMM)) {
|
|
|
|
case POWERPC_FLAG_PX:
|
|
|
|
case POWERPC_FLAG_PMM:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should define POWERPC_FLAG_PX or POWERPC_FLAG_PMM\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} else if (env->flags & (POWERPC_FLAG_PX | POWERPC_FLAG_PMM)) {
|
|
|
|
fprintf(stderr, "PowerPC MSR definition inconsistency\n"
|
|
|
|
"Should not define POWERPC_FLAG_PX nor POWERPC_FLAG_PMM\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2007-11-19 01:48:12 +00:00
|
|
|
if ((env->flags & (POWERPC_FLAG_RTC_CLK | POWERPC_FLAG_BUS_CLK)) == 0) {
|
|
|
|
fprintf(stderr, "PowerPC flags inconsistency\n"
|
|
|
|
"Should define the time-base and decrementer clock source\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Allocate TLBs buffer when needed */
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
if (env->nb_tlb != 0) {
|
|
|
|
int nb_tlb = env->nb_tlb;
|
|
|
|
if (env->id_tlbs != 0)
|
|
|
|
nb_tlb *= 2;
|
2011-06-16 23:00:28 +00:00
|
|
|
switch (env->tlb_type) {
|
|
|
|
case TLB_6XX:
|
2011-08-21 03:09:37 +00:00
|
|
|
env->tlb.tlb6 = g_malloc0(nb_tlb * sizeof(ppc6xx_tlb_t));
|
2011-06-16 23:00:28 +00:00
|
|
|
break;
|
|
|
|
case TLB_EMB:
|
2011-08-21 03:09:37 +00:00
|
|
|
env->tlb.tlbe = g_malloc0(nb_tlb * sizeof(ppcemb_tlb_t));
|
2011-06-16 23:00:28 +00:00
|
|
|
break;
|
|
|
|
case TLB_MAS:
|
2011-08-21 03:09:37 +00:00
|
|
|
env->tlb.tlbm = g_malloc0(nb_tlb * sizeof(ppcmas_tlb_t));
|
2011-06-16 23:00:28 +00:00
|
|
|
break;
|
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
/* Pre-compute some useful values */
|
|
|
|
env->tlb_per_way = env->nb_tlb / env->nb_ways;
|
|
|
|
}
|
|
|
|
if (env->irq_inputs == NULL) {
|
|
|
|
fprintf(stderr, "WARNING: no internal IRQ controller registered.\n"
|
2012-04-07 07:23:39 +00:00
|
|
|
" Attempt QEMU to crash very soon !\n");
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
2007-10-25 23:14:50 +00:00
|
|
|
if (env->check_pow == NULL) {
|
|
|
|
fprintf(stderr, "WARNING: no power management check handler "
|
|
|
|
"registered.\n"
|
2012-04-07 07:23:39 +00:00
|
|
|
" Attempt QEMU to crash very soon !\n");
|
2007-10-25 23:14:50 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(PPC_DUMP_CPU)
|
|
|
|
static void dump_ppc_sprs (CPUPPCState *env)
|
|
|
|
{
|
|
|
|
ppc_spr_t *spr;
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
uint32_t sr, sw;
|
|
|
|
#endif
|
|
|
|
uint32_t ur, uw;
|
|
|
|
int i, j, n;
|
|
|
|
|
|
|
|
printf("Special purpose registers:\n");
|
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
for (j = 0; j < 32; j++) {
|
|
|
|
n = (i << 5) | j;
|
|
|
|
spr = &env->spr_cb[n];
|
|
|
|
uw = spr->uea_write != NULL && spr->uea_write != SPR_NOACCESS;
|
|
|
|
ur = spr->uea_read != NULL && spr->uea_read != SPR_NOACCESS;
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
sw = spr->oea_write != NULL && spr->oea_write != SPR_NOACCESS;
|
|
|
|
sr = spr->oea_read != NULL && spr->oea_read != SPR_NOACCESS;
|
|
|
|
if (sw || sr || uw || ur) {
|
|
|
|
printf("SPR: %4d (%03x) %-8s s%c%c u%c%c\n",
|
|
|
|
(i << 5) | j, (i << 5) | j, spr->name,
|
|
|
|
sw ? 'w' : '-', sr ? 'r' : '-',
|
|
|
|
uw ? 'w' : '-', ur ? 'r' : '-');
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (uw || ur) {
|
|
|
|
printf("SPR: %4d (%03x) %-8s u%c%c\n",
|
|
|
|
(i << 5) | j, (i << 5) | j, spr->name,
|
|
|
|
uw ? 'w' : '-', ur ? 'r' : '-');
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* Opcode types */
|
|
|
|
enum {
|
|
|
|
PPC_DIRECT = 0, /* Opcode routine */
|
|
|
|
PPC_INDIRECT = 1, /* Indirect opcode table */
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline int is_indirect_opcode (void *handler)
|
|
|
|
{
|
2012-04-15 14:13:48 +00:00
|
|
|
return ((uintptr_t)handler & 0x03) == PPC_INDIRECT;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static inline opc_handler_t **ind_table(void *handler)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2012-04-15 14:13:48 +00:00
|
|
|
return (opc_handler_t **)((uintptr_t)handler & ~3);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Instruction table creation */
|
|
|
|
/* Opcodes tables creation */
|
2009-10-01 21:12:16 +00:00
|
|
|
static void fill_new_table (opc_handler_t **table, int len)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
table[i] = &invalid_handler;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int create_new_table (opc_handler_t **table, unsigned char idx)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2009-10-01 21:12:16 +00:00
|
|
|
opc_handler_t **tmp;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
tmp = malloc(0x20 * sizeof(opc_handler_t));
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
fill_new_table(tmp, 0x20);
|
2012-04-15 14:13:48 +00:00
|
|
|
table[idx] = (opc_handler_t *)((uintptr_t)tmp | PPC_INDIRECT);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int insert_in_table (opc_handler_t **table, unsigned char idx,
|
|
|
|
opc_handler_t *handler)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
if (table[idx] != &invalid_handler)
|
|
|
|
return -1;
|
|
|
|
table[idx] = handler;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int register_direct_insn (opc_handler_t **ppc_opcodes,
|
|
|
|
unsigned char idx, opc_handler_t *handler)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
if (insert_in_table(ppc_opcodes, idx, handler) < 0) {
|
|
|
|
printf("*** ERROR: opcode %02x already assigned in main "
|
|
|
|
"opcode table\n", idx);
|
2007-11-17 23:14:53 +00:00
|
|
|
#if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
|
|
|
|
printf(" Registered handler '%s' - new handler '%s'\n",
|
|
|
|
ppc_opcodes[idx]->oname, handler->oname);
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int register_ind_in_table (opc_handler_t **table,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
unsigned char idx1, unsigned char idx2,
|
2009-10-01 21:12:16 +00:00
|
|
|
opc_handler_t *handler)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
if (table[idx1] == &invalid_handler) {
|
|
|
|
if (create_new_table(table, idx1) < 0) {
|
|
|
|
printf("*** ERROR: unable to create indirect table "
|
|
|
|
"idx=%02x\n", idx1);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!is_indirect_opcode(table[idx1])) {
|
|
|
|
printf("*** ERROR: idx %02x already assigned to a direct "
|
|
|
|
"opcode\n", idx1);
|
2007-11-17 23:14:53 +00:00
|
|
|
#if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
|
|
|
|
printf(" Registered handler '%s' - new handler '%s'\n",
|
|
|
|
ind_table(table[idx1])[idx2]->oname, handler->oname);
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2007-04-16 09:31:49 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
if (handler != NULL &&
|
|
|
|
insert_in_table(ind_table(table[idx1]), idx2, handler) < 0) {
|
|
|
|
printf("*** ERROR: opcode %02x already assigned in "
|
|
|
|
"opcode table %02x\n", idx2, idx1);
|
2007-11-17 23:14:53 +00:00
|
|
|
#if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
|
|
|
|
printf(" Registered handler '%s' - new handler '%s'\n",
|
|
|
|
ind_table(table[idx1])[idx2]->oname, handler->oname);
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
return -1;
|
2007-04-16 09:31:49 +00:00
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int register_ind_insn (opc_handler_t **ppc_opcodes,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
unsigned char idx1, unsigned char idx2,
|
2009-10-01 21:12:16 +00:00
|
|
|
opc_handler_t *handler)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = register_ind_in_table(ppc_opcodes, idx1, idx2, handler);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int register_dblind_insn (opc_handler_t **ppc_opcodes,
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
unsigned char idx1, unsigned char idx2,
|
2009-10-01 21:12:16 +00:00
|
|
|
unsigned char idx3, opc_handler_t *handler)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
if (register_ind_in_table(ppc_opcodes, idx1, idx2, NULL) < 0) {
|
|
|
|
printf("*** ERROR: unable to join indirect table idx "
|
|
|
|
"[%02x-%02x]\n", idx1, idx2);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (register_ind_in_table(ind_table(ppc_opcodes[idx1]), idx2, idx3,
|
|
|
|
handler) < 0) {
|
|
|
|
printf("*** ERROR: unable to insert opcode "
|
|
|
|
"[%02x-%02x-%02x]\n", idx1, idx2, idx3);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int register_insn (opc_handler_t **ppc_opcodes, opcode_t *insn)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
if (insn->opc2 != 0xFF) {
|
|
|
|
if (insn->opc3 != 0xFF) {
|
|
|
|
if (register_dblind_insn(ppc_opcodes, insn->opc1, insn->opc2,
|
|
|
|
insn->opc3, &insn->handler) < 0)
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
if (register_ind_insn(ppc_opcodes, insn->opc1,
|
|
|
|
insn->opc2, &insn->handler) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (register_direct_insn(ppc_opcodes, insn->opc1, &insn->handler) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static int test_opcode_table (opc_handler_t **table, int len)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
|
|
|
int i, count, tmp;
|
|
|
|
|
|
|
|
for (i = 0, count = 0; i < len; i++) {
|
|
|
|
/* Consistency fixup */
|
|
|
|
if (table[i] == NULL)
|
|
|
|
table[i] = &invalid_handler;
|
|
|
|
if (table[i] != &invalid_handler) {
|
|
|
|
if (is_indirect_opcode(table[i])) {
|
2009-10-01 21:12:16 +00:00
|
|
|
tmp = test_opcode_table(ind_table(table[i]), 0x20);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
if (tmp == 0) {
|
|
|
|
free(table[i]);
|
|
|
|
table[i] = &invalid_handler;
|
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2009-10-01 21:12:16 +00:00
|
|
|
static void fix_opcode_tables (opc_handler_t **ppc_opcodes)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2009-10-01 21:12:16 +00:00
|
|
|
if (test_opcode_table(ppc_opcodes, 0x40) == 0)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
printf("*** WARNING: no opcode defined !\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2013-01-06 08:31:30 +00:00
|
|
|
static void create_ppc_opcodes(PowerPCCPU *cpu, Error **errp)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2013-01-06 08:31:30 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2009-10-01 21:12:16 +00:00
|
|
|
opcode_t *opc;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
|
|
|
fill_new_table(env->opcodes, 0x40);
|
2009-06-17 15:22:31 +00:00
|
|
|
for (opc = opcodes; opc < &opcodes[ARRAY_SIZE(opcodes)]; opc++) {
|
2013-02-17 23:16:41 +00:00
|
|
|
if (((opc->handler.type & pcc->insns_flags) != 0) ||
|
|
|
|
((opc->handler.type2 & pcc->insns_flags2) != 0)) {
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
if (register_insn(env->opcodes, opc) < 0) {
|
2013-01-06 08:31:30 +00:00
|
|
|
error_setg(errp, "ERROR initializing PowerPC instruction "
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-08 20:22:16 +00:00
|
|
|
"0x%02x 0x%02x 0x%02x", opc->opc1, opc->opc2,
|
2013-01-06 08:31:30 +00:00
|
|
|
opc->opc3);
|
|
|
|
return;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-01 21:12:16 +00:00
|
|
|
fix_opcode_tables(env->opcodes);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(PPC_DUMP_CPU)
|
2007-10-08 02:58:07 +00:00
|
|
|
static void dump_ppc_insns (CPUPPCState *env)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2009-10-01 21:12:16 +00:00
|
|
|
opc_handler_t **table, *handler;
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *p, *q;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
uint8_t opc1, opc2, opc3;
|
|
|
|
|
|
|
|
printf("Instructions set:\n");
|
|
|
|
/* opc1 is 6 bits long */
|
|
|
|
for (opc1 = 0x00; opc1 < 0x40; opc1++) {
|
|
|
|
table = env->opcodes;
|
|
|
|
handler = table[opc1];
|
|
|
|
if (is_indirect_opcode(handler)) {
|
|
|
|
/* opc2 is 5 bits long */
|
|
|
|
for (opc2 = 0; opc2 < 0x20; opc2++) {
|
|
|
|
table = env->opcodes;
|
|
|
|
handler = env->opcodes[opc1];
|
|
|
|
table = ind_table(handler);
|
|
|
|
handler = table[opc2];
|
|
|
|
if (is_indirect_opcode(handler)) {
|
|
|
|
table = ind_table(handler);
|
|
|
|
/* opc3 is 5 bits long */
|
|
|
|
for (opc3 = 0; opc3 < 0x20; opc3++) {
|
|
|
|
handler = table[opc3];
|
|
|
|
if (handler->handler != &gen_invalid) {
|
2007-11-17 23:14:53 +00:00
|
|
|
/* Special hack to properly dump SPE insns */
|
|
|
|
p = strchr(handler->oname, '_');
|
|
|
|
if (p == NULL) {
|
|
|
|
printf("INSN: %02x %02x %02x (%02d %04d) : "
|
|
|
|
"%s\n",
|
|
|
|
opc1, opc2, opc3, opc1,
|
|
|
|
(opc3 << 5) | opc2,
|
|
|
|
handler->oname);
|
|
|
|
} else {
|
|
|
|
q = "speundef";
|
|
|
|
if ((p - handler->oname) != strlen(q) ||
|
|
|
|
memcmp(handler->oname, q, strlen(q)) != 0) {
|
|
|
|
/* First instruction */
|
|
|
|
printf("INSN: %02x %02x %02x (%02d %04d) : "
|
|
|
|
"%.*s\n",
|
|
|
|
opc1, opc2 << 1, opc3, opc1,
|
|
|
|
(opc3 << 6) | (opc2 << 1),
|
|
|
|
(int)(p - handler->oname),
|
|
|
|
handler->oname);
|
|
|
|
}
|
|
|
|
if (strcmp(p + 1, q) != 0) {
|
|
|
|
/* Second instruction */
|
|
|
|
printf("INSN: %02x %02x %02x (%02d %04d) : "
|
|
|
|
"%s\n",
|
|
|
|
opc1, (opc2 << 1) | 1, opc3, opc1,
|
|
|
|
(opc3 << 6) | (opc2 << 1) | 1,
|
|
|
|
p + 1);
|
|
|
|
}
|
|
|
|
}
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (handler->handler != &gen_invalid) {
|
|
|
|
printf("INSN: %02x %02x -- (%02d %04d) : %s\n",
|
|
|
|
opc1, opc2, opc1, opc2, handler->oname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (handler->handler != &gen_invalid) {
|
|
|
|
printf("INSN: %02x -- -- (%02d ----) : %s\n",
|
|
|
|
opc1, opc1, handler->oname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
|
2012-03-14 00:38:22 +00:00
|
|
|
static int gdb_get_float_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
|
2009-01-24 15:08:00 +00:00
|
|
|
{
|
|
|
|
if (n < 32) {
|
|
|
|
stfq_p(mem_buf, env->fpr[n]);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
2011-09-01 04:56:00 +00:00
|
|
|
stl_p(mem_buf, env->fpscr);
|
2009-01-24 15:08:00 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:22 +00:00
|
|
|
static int gdb_set_float_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
|
2009-01-24 15:08:00 +00:00
|
|
|
{
|
|
|
|
if (n < 32) {
|
|
|
|
env->fpr[n] = ldfq_p(mem_buf);
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
if (n == 32) {
|
|
|
|
/* FPSCR not implemented */
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:22 +00:00
|
|
|
static int gdb_get_avr_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
|
2009-01-24 15:08:09 +00:00
|
|
|
{
|
|
|
|
if (n < 32) {
|
2009-07-27 14:13:06 +00:00
|
|
|
#ifdef HOST_WORDS_BIGENDIAN
|
2009-01-24 15:08:09 +00:00
|
|
|
stq_p(mem_buf, env->avr[n].u64[0]);
|
|
|
|
stq_p(mem_buf+8, env->avr[n].u64[1]);
|
|
|
|
#else
|
|
|
|
stq_p(mem_buf, env->avr[n].u64[1]);
|
|
|
|
stq_p(mem_buf+8, env->avr[n].u64[0]);
|
|
|
|
#endif
|
|
|
|
return 16;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 32) {
|
2009-01-24 15:08:09 +00:00
|
|
|
stl_p(mem_buf, env->vscr);
|
|
|
|
return 4;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 33) {
|
2009-01-24 15:08:09 +00:00
|
|
|
stl_p(mem_buf, (uint32_t)env->spr[SPR_VRSAVE]);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:22 +00:00
|
|
|
static int gdb_set_avr_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
|
2009-01-24 15:08:09 +00:00
|
|
|
{
|
|
|
|
if (n < 32) {
|
2009-07-27 14:13:06 +00:00
|
|
|
#ifdef HOST_WORDS_BIGENDIAN
|
2009-01-24 15:08:09 +00:00
|
|
|
env->avr[n].u64[0] = ldq_p(mem_buf);
|
|
|
|
env->avr[n].u64[1] = ldq_p(mem_buf+8);
|
|
|
|
#else
|
|
|
|
env->avr[n].u64[1] = ldq_p(mem_buf);
|
|
|
|
env->avr[n].u64[0] = ldq_p(mem_buf+8);
|
|
|
|
#endif
|
|
|
|
return 16;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 32) {
|
2009-01-24 15:08:09 +00:00
|
|
|
env->vscr = ldl_p(mem_buf);
|
|
|
|
return 4;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 33) {
|
2009-01-24 15:08:09 +00:00
|
|
|
env->spr[SPR_VRSAVE] = (target_ulong)ldl_p(mem_buf);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:22 +00:00
|
|
|
static int gdb_get_spe_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
|
2009-01-24 15:08:17 +00:00
|
|
|
{
|
|
|
|
if (n < 32) {
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
stl_p(mem_buf, env->gpr[n] >> 32);
|
|
|
|
#else
|
|
|
|
stl_p(mem_buf, env->gprh[n]);
|
|
|
|
#endif
|
|
|
|
return 4;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 32) {
|
2009-01-24 15:08:17 +00:00
|
|
|
stq_p(mem_buf, env->spe_acc);
|
|
|
|
return 8;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 33) {
|
2009-03-09 06:27:14 +00:00
|
|
|
stl_p(mem_buf, env->spe_fscr);
|
2009-01-24 15:08:17 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-14 00:38:22 +00:00
|
|
|
static int gdb_set_spe_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
|
2009-01-24 15:08:17 +00:00
|
|
|
{
|
|
|
|
if (n < 32) {
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
target_ulong lo = (uint32_t)env->gpr[n];
|
|
|
|
target_ulong hi = (target_ulong)ldl_p(mem_buf) << 32;
|
|
|
|
env->gpr[n] = lo | hi;
|
|
|
|
#else
|
|
|
|
env->gprh[n] = ldl_p(mem_buf);
|
|
|
|
#endif
|
|
|
|
return 4;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 32) {
|
2009-01-24 15:08:17 +00:00
|
|
|
env->spe_acc = ldq_p(mem_buf);
|
|
|
|
return 8;
|
|
|
|
}
|
2009-03-07 22:00:49 +00:00
|
|
|
if (n == 33) {
|
2009-03-09 06:27:14 +00:00
|
|
|
env->spe_fscr = ldl_p(mem_buf);
|
2009-01-24 15:08:17 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-17 05:18:02 +00:00
|
|
|
static int ppc_fixup_cpu(PowerPCCPU *cpu)
|
2012-04-04 05:02:05 +00:00
|
|
|
{
|
2012-12-17 05:18:02 +00:00
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2012-04-04 05:02:05 +00:00
|
|
|
/* TCG doesn't (yet) emulate some groups of instructions that
|
|
|
|
* are implemented on some otherwise supported CPUs (e.g. VSX
|
|
|
|
* and decimal floating point instructions on POWER7). We
|
|
|
|
* remove unsupported instruction groups from the cpu state's
|
|
|
|
* instruction masks and hope the guest can cope. For at
|
|
|
|
* least the pseries machine, the unavailability of these
|
|
|
|
* instructions can be advertised to the guest via the device
|
|
|
|
* tree. */
|
|
|
|
if ((env->insns_flags & ~PPC_TCG_INSNS)
|
|
|
|
|| (env->insns_flags2 & ~PPC_TCG_INSNS2)) {
|
|
|
|
fprintf(stderr, "Warning: Disabling some instructions which are not "
|
|
|
|
"emulated by TCG (0x%" PRIx64 ", 0x%" PRIx64 ")\n",
|
|
|
|
env->insns_flags & ~PPC_TCG_INSNS,
|
|
|
|
env->insns_flags2 & ~PPC_TCG_INSNS2);
|
|
|
|
}
|
|
|
|
env->insns_flags &= PPC_TCG_INSNS;
|
|
|
|
env->insns_flags2 &= PPC_TCG_INSNS2;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-01-16 02:55:14 +00:00
|
|
|
static void ppc_cpu_realizefn(DeviceState *dev, Error **errp)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
{
|
2013-01-16 02:55:14 +00:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(dev);
|
2013-01-06 08:31:30 +00:00
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
|
|
|
Error *local_err = NULL;
|
2013-01-23 17:20:38 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
int max_smt = kvm_enabled() ? kvmppc_smt_threads() : 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
if (smp_threads > max_smt) {
|
2013-02-17 23:16:01 +00:00
|
|
|
error_setg(errp, "Cannot support more than %d threads on PPC with %s",
|
|
|
|
max_smt, kvm_enabled() ? "KVM" : "TCG");
|
|
|
|
return;
|
2013-01-23 17:20:38 +00:00
|
|
|
}
|
|
|
|
#endif
|
ppc64: Rudimentary Support for extra page sizes on server CPUs
More recent Power server chips (i.e. based on the 64 bit hash MMU)
support more than just the traditional 4k and 16M page sizes. This
can get quite complicated, because which page sizes are supported,
which combinations are supported within an MMU segment and how these
page sizes are encoded both in the SLB entry and the hash PTE can vary
depending on the CPU model (they are not specified by the
architecture). In addition the firmware or hypervisor may not permit
use of certain page sizes, for various reasons. Whether various page
sizes are supported on KVM, for example, depends on whether the PR or
HV variant of KVM is in use, and on the page size of the memory
backing the guest's RAM.
This patch adds information to the CPUState and cpu defs to describe
the supported page sizes and encodings. Since TCG does not yet
support any extended page sizes, we just set this to NULL in the
static CPU definitions, expanding this to the default 4k and 16M page
sizes when we initialize the cpu state. When using KVM, however, we
instead determine available page sizes using the new
KVM_PPC_GET_SMMU_INFO call. For old kernels without that call, we use
some defaults, with some guesswork which should do the right thing for
existing HV and PR implementations. The fallback might not be correct
for future versions, but that's ok, because they'll have
KVM_PPC_GET_SMMU_INFO.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
2012-06-18 19:56:25 +00:00
|
|
|
|
2012-04-04 05:02:05 +00:00
|
|
|
if (kvm_enabled()) {
|
2012-12-17 05:18:02 +00:00
|
|
|
if (kvmppc_fixup_cpu(cpu) != 0) {
|
2013-01-06 08:31:30 +00:00
|
|
|
error_setg(errp, "Unable to virtualize selected CPU with KVM");
|
|
|
|
return;
|
2012-04-04 05:02:05 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-12-17 05:18:02 +00:00
|
|
|
if (ppc_fixup_cpu(cpu) != 0) {
|
2013-01-06 08:31:30 +00:00
|
|
|
error_setg(errp, "Unable to emulate selected CPU with TCG");
|
|
|
|
return;
|
2012-04-04 05:02:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:44 +00:00
|
|
|
#if defined(TARGET_PPCEMB)
|
|
|
|
if (pcc->mmu_model != POWERPC_MMU_BOOKE) {
|
|
|
|
error_setg(errp, "CPU does not possess a BookE MMU. "
|
|
|
|
"Please use qemu-system-ppc or qemu-system-ppc64 instead "
|
|
|
|
"or choose another CPU model.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
create_ppc_opcodes(cpu, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
2013-02-17 23:16:41 +00:00
|
|
|
init_ppc_proc(cpu);
|
2009-01-24 15:08:00 +00:00
|
|
|
|
2013-02-17 23:16:41 +00:00
|
|
|
if (pcc->insns_flags & PPC_FLOAT) {
|
2009-01-24 15:08:00 +00:00
|
|
|
gdb_register_coprocessor(env, gdb_get_float_reg, gdb_set_float_reg,
|
|
|
|
33, "power-fpu.xml", 0);
|
|
|
|
}
|
2013-02-17 23:16:41 +00:00
|
|
|
if (pcc->insns_flags & PPC_ALTIVEC) {
|
2009-01-24 15:08:09 +00:00
|
|
|
gdb_register_coprocessor(env, gdb_get_avr_reg, gdb_set_avr_reg,
|
|
|
|
34, "power-altivec.xml", 0);
|
|
|
|
}
|
2013-02-17 23:16:41 +00:00
|
|
|
if (pcc->insns_flags & PPC_SPE) {
|
2009-01-24 15:08:17 +00:00
|
|
|
gdb_register_coprocessor(env, gdb_get_spe_reg, gdb_set_spe_reg,
|
|
|
|
34, "power-spe.xml", 0);
|
|
|
|
}
|
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
qemu_init_vcpu(env);
|
|
|
|
|
2013-01-16 02:55:14 +00:00
|
|
|
pcc->parent_realize(dev, errp);
|
|
|
|
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
#if defined(PPC_DUMP_CPU)
|
2007-04-16 09:31:49 +00:00
|
|
|
{
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *mmu_model, *excp_model, *bus_model;
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
switch (env->mmu_model) {
|
|
|
|
case POWERPC_MMU_32B:
|
|
|
|
mmu_model = "PowerPC 32";
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_6xx:
|
|
|
|
mmu_model = "PowerPC 6xx/7xx with software driven TLBs";
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_74xx:
|
|
|
|
mmu_model = "PowerPC 74xx with software driven TLBs";
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_4xx:
|
|
|
|
mmu_model = "PowerPC 4xx with software driven TLBs";
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_SOFT_4xx_Z:
|
|
|
|
mmu_model = "PowerPC 4xx with software driven TLBs "
|
|
|
|
"and zones protections";
|
|
|
|
break;
|
2007-11-17 22:42:36 +00:00
|
|
|
case POWERPC_MMU_REAL:
|
|
|
|
mmu_model = "PowerPC real mode only";
|
|
|
|
break;
|
|
|
|
case POWERPC_MMU_MPC8xx:
|
|
|
|
mmu_model = "PowerPC MPC8xx";
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
break;
|
|
|
|
case POWERPC_MMU_BOOKE:
|
|
|
|
mmu_model = "PowerPC BookE";
|
|
|
|
break;
|
2011-04-30 21:34:58 +00:00
|
|
|
case POWERPC_MMU_BOOKE206:
|
|
|
|
mmu_model = "PowerPC BookE 2.06";
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
break;
|
2007-11-17 22:42:36 +00:00
|
|
|
case POWERPC_MMU_601:
|
|
|
|
mmu_model = "PowerPC 601";
|
|
|
|
break;
|
2007-10-03 01:05:39 +00:00
|
|
|
#if defined (TARGET_PPC64)
|
|
|
|
case POWERPC_MMU_64B:
|
|
|
|
mmu_model = "PowerPC 64";
|
|
|
|
break;
|
2007-11-19 11:41:10 +00:00
|
|
|
case POWERPC_MMU_620:
|
|
|
|
mmu_model = "PowerPC 620";
|
|
|
|
break;
|
2007-10-03 01:05:39 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
default:
|
|
|
|
mmu_model = "Unknown or invalid";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (env->excp_model) {
|
|
|
|
case POWERPC_EXCP_STD:
|
|
|
|
excp_model = "PowerPC";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_40x:
|
|
|
|
excp_model = "PowerPC 40x";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_601:
|
|
|
|
excp_model = "PowerPC 601";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_602:
|
|
|
|
excp_model = "PowerPC 602";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_603:
|
|
|
|
excp_model = "PowerPC 603";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_603E:
|
|
|
|
excp_model = "PowerPC 603e";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_604:
|
|
|
|
excp_model = "PowerPC 604";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_7x0:
|
|
|
|
excp_model = "PowerPC 740/750";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_7x5:
|
|
|
|
excp_model = "PowerPC 745/755";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_74xx:
|
|
|
|
excp_model = "PowerPC 74xx";
|
|
|
|
break;
|
|
|
|
case POWERPC_EXCP_BOOKE:
|
|
|
|
excp_model = "PowerPC BookE";
|
|
|
|
break;
|
2007-10-03 01:05:39 +00:00
|
|
|
#if defined (TARGET_PPC64)
|
|
|
|
case POWERPC_EXCP_970:
|
|
|
|
excp_model = "PowerPC 970";
|
|
|
|
break;
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
default:
|
|
|
|
excp_model = "Unknown or invalid";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (env->bus_model) {
|
|
|
|
case PPC_FLAGS_INPUT_6xx:
|
|
|
|
bus_model = "PowerPC 6xx";
|
|
|
|
break;
|
|
|
|
case PPC_FLAGS_INPUT_BookE:
|
|
|
|
bus_model = "PowerPC BookE";
|
|
|
|
break;
|
|
|
|
case PPC_FLAGS_INPUT_405:
|
|
|
|
bus_model = "PowerPC 405";
|
|
|
|
break;
|
|
|
|
case PPC_FLAGS_INPUT_401:
|
|
|
|
bus_model = "PowerPC 401/403";
|
|
|
|
break;
|
2007-11-17 22:42:36 +00:00
|
|
|
case PPC_FLAGS_INPUT_RCPU:
|
|
|
|
bus_model = "RCPU / MPC8xx";
|
|
|
|
break;
|
2007-10-03 01:05:39 +00:00
|
|
|
#if defined (TARGET_PPC64)
|
|
|
|
case PPC_FLAGS_INPUT_970:
|
|
|
|
bus_model = "PowerPC 970";
|
|
|
|
break;
|
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
default:
|
|
|
|
bus_model = "Unknown or invalid";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
printf("PowerPC %-12s : PVR %08x MSR %016" PRIx64 "\n"
|
|
|
|
" MMU model : %s\n",
|
2013-02-17 23:16:41 +00:00
|
|
|
pcc->name, pcc->pvr, pcc->msr_mask, mmu_model);
|
2007-10-07 15:43:50 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
if (env->tlb != NULL) {
|
|
|
|
printf(" %d %s TLB in %d ways\n",
|
|
|
|
env->nb_tlb, env->id_tlbs ? "splitted" : "merged",
|
|
|
|
env->nb_ways);
|
|
|
|
}
|
2007-10-07 15:43:50 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
printf(" Exceptions model : %s\n"
|
|
|
|
" Bus model : %s\n",
|
|
|
|
excp_model, bus_model);
|
2007-10-08 02:58:07 +00:00
|
|
|
printf(" MSR features :\n");
|
|
|
|
if (env->flags & POWERPC_FLAG_SPE)
|
|
|
|
printf(" signal processing engine enable"
|
|
|
|
"\n");
|
|
|
|
else if (env->flags & POWERPC_FLAG_VRE)
|
|
|
|
printf(" vector processor enable\n");
|
|
|
|
if (env->flags & POWERPC_FLAG_TGPR)
|
|
|
|
printf(" temporary GPRs\n");
|
|
|
|
else if (env->flags & POWERPC_FLAG_CE)
|
|
|
|
printf(" critical input enable\n");
|
|
|
|
if (env->flags & POWERPC_FLAG_SE)
|
|
|
|
printf(" single-step trace mode\n");
|
|
|
|
else if (env->flags & POWERPC_FLAG_DWE)
|
|
|
|
printf(" debug wait enable\n");
|
|
|
|
else if (env->flags & POWERPC_FLAG_UBLE)
|
|
|
|
printf(" user BTB lock enable\n");
|
|
|
|
if (env->flags & POWERPC_FLAG_BE)
|
|
|
|
printf(" branch-step trace mode\n");
|
|
|
|
else if (env->flags & POWERPC_FLAG_DE)
|
|
|
|
printf(" debug interrupt enable\n");
|
|
|
|
if (env->flags & POWERPC_FLAG_PX)
|
|
|
|
printf(" inclusive protection\n");
|
|
|
|
else if (env->flags & POWERPC_FLAG_PMM)
|
|
|
|
printf(" performance monitor mark\n");
|
|
|
|
if (env->flags == POWERPC_FLAG_NONE)
|
|
|
|
printf(" none\n");
|
2007-11-19 01:48:12 +00:00
|
|
|
printf(" Time-base/decrementer clock source: %s\n",
|
|
|
|
env->flags & POWERPC_FLAG_RTC_CLK ? "RTC clock" : "bus clock");
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
|
|
|
dump_ppc_insns(env);
|
|
|
|
dump_ppc_sprs(env);
|
|
|
|
fflush(stdout);
|
2007-04-16 09:31:49 +00:00
|
|
|
#endif
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3244 c046a42c-6fe2-441c-8c8c-71466251a162
2007-09-26 23:54:22 +00:00
|
|
|
}
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
static gint ppc_cpu_compare_class_pvr(gconstpointer a, gconstpointer b)
|
2011-10-18 00:00:51 +00:00
|
|
|
{
|
2013-01-06 08:31:30 +00:00
|
|
|
ObjectClass *oc = (ObjectClass *)a;
|
|
|
|
uint32_t pvr = *(uint32_t *)b;
|
|
|
|
PowerPCCPUClass *pcc = (PowerPCCPUClass *)a;
|
|
|
|
|
|
|
|
/* -cpu host does a PVR lookup during construction */
|
|
|
|
if (unlikely(strcmp(object_class_get_name(oc),
|
|
|
|
TYPE_HOST_POWERPC_CPU) == 0)) {
|
|
|
|
return -1;
|
2011-10-18 00:00:51 +00:00
|
|
|
}
|
|
|
|
|
2013-02-17 23:16:44 +00:00
|
|
|
#if defined(TARGET_PPCEMB)
|
|
|
|
if (pcc->mmu_model != POWERPC_MMU_BOOKE) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-02-17 23:16:41 +00:00
|
|
|
return pcc->pvr == pvr ? 0 : -1;
|
2011-10-18 00:00:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
PowerPCCPUClass *ppc_cpu_class_by_pvr(uint32_t pvr)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2013-01-06 08:31:30 +00:00
|
|
|
GSList *list, *item;
|
|
|
|
PowerPCCPUClass *pcc = NULL;
|
ppc: Remove broken partial PVR matching
The ppc target contains a ppc_find_by_pvr() function, which looks up a
CPU spec based on a PVR (that is, based on the value in the target cpu's
Processor Version Register). PVR values contain information on both the
cpu model (upper 16 bits, usually) and on the precise revision (low 16
bits, usually).
ppc_find_by_pvr, as well as making exact PVR matches, attempts to find
"close" PVR matches, when we don't have a CPU spec for the exact revision
specified. This sounds like a good idea, execpt that the current logic
is completely nonsensical.
It seems to assume CPU families are subdivided bit by bit in the PVR in a
way they just aren't. Specifically, it requires a match on all bits of the
specified pvr up to the last non-zero bit. This has the bizarre effect
that when the low bits are simply a sequential revision number (a common
though not universal pattern), then odd specified revisions must be matched
exactly, whereas even specified revisions will also match the next odd
revision, likewise for powers of 4, 8 and so forth.
To correctly do inexact matching we'd need to re-organize the table of CPU
specs to include a mask showing what PVR range the spec is compatible with
(similar to the cputable code in the Linux kernel).
For now, just remove the bogosity by only permitting exact PVR matches.
That at least makes the matching simple and consistent. If we need inexact
matching we can add the necessary per-subfamily masks later.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
2011-10-12 22:40:31 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
list = object_class_get_list(TYPE_POWERPC_CPU, false);
|
|
|
|
item = g_slist_find_custom(list, &pvr, ppc_cpu_compare_class_pvr);
|
|
|
|
if (item != NULL) {
|
|
|
|
pcc = POWERPC_CPU_CLASS(item->data);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
2013-01-06 08:31:30 +00:00
|
|
|
g_slist_free(list);
|
|
|
|
|
|
|
|
return pcc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint ppc_cpu_compare_class_name(gconstpointer a, gconstpointer b)
|
|
|
|
{
|
|
|
|
ObjectClass *oc = (ObjectClass *)a;
|
|
|
|
const char *name = b;
|
2013-02-17 23:16:44 +00:00
|
|
|
#if defined(TARGET_PPCEMB)
|
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
#endif
|
2007-11-10 23:51:02 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
if (strncasecmp(name, object_class_get_name(oc), strlen(name)) == 0 &&
|
2013-02-17 23:16:44 +00:00
|
|
|
#if defined(TARGET_PPCEMB)
|
|
|
|
pcc->mmu_model == POWERPC_MMU_BOOKE &&
|
|
|
|
#endif
|
2013-01-06 08:31:30 +00:00
|
|
|
strcmp(object_class_get_name(oc) + strlen(name),
|
|
|
|
"-" TYPE_POWERPC_CPU) == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2007-11-10 23:51:02 +00:00
|
|
|
#include <ctype.h>
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
static ObjectClass *ppc_cpu_class_by_name(const char *name)
|
2007-11-10 23:51:02 +00:00
|
|
|
{
|
2013-01-06 08:31:30 +00:00
|
|
|
GSList *list, *item;
|
|
|
|
ObjectClass *ret = NULL;
|
2008-09-20 08:07:15 +00:00
|
|
|
const char *p;
|
2013-01-06 08:31:30 +00:00
|
|
|
int i, len;
|
2007-11-10 23:51:02 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
if (strcasecmp(name, "host") == 0) {
|
|
|
|
if (kvm_enabled()) {
|
|
|
|
ret = object_class_by_name(TYPE_HOST_POWERPC_CPU);
|
|
|
|
}
|
|
|
|
return ret;
|
2011-10-12 22:40:32 +00:00
|
|
|
}
|
|
|
|
|
2007-11-10 23:51:02 +00:00
|
|
|
/* Check if the given name is a PVR */
|
|
|
|
len = strlen(name);
|
|
|
|
if (len == 10 && name[0] == '0' && name[1] == 'x') {
|
|
|
|
p = name + 2;
|
|
|
|
goto check_pvr;
|
|
|
|
} else if (len == 8) {
|
|
|
|
p = name;
|
|
|
|
check_pvr:
|
|
|
|
for (i = 0; i < 8; i++) {
|
2008-11-16 13:53:32 +00:00
|
|
|
if (!qemu_isxdigit(*p++))
|
2007-11-10 23:51:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-01-06 08:31:30 +00:00
|
|
|
if (i == 8) {
|
|
|
|
ret = OBJECT_CLASS(ppc_cpu_class_by_pvr(strtoul(name, NULL, 16)));
|
|
|
|
return ret;
|
2011-10-18 00:00:51 +00:00
|
|
|
}
|
2013-01-06 08:31:30 +00:00
|
|
|
}
|
2011-10-18 00:00:51 +00:00
|
|
|
|
2013-02-17 23:16:04 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(ppc_cpu_aliases); i++) {
|
|
|
|
if (strcmp(ppc_cpu_aliases[i].alias, name) == 0) {
|
|
|
|
return ppc_cpu_class_by_name(ppc_cpu_aliases[i].model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
list = object_class_get_list(TYPE_POWERPC_CPU, false);
|
|
|
|
item = g_slist_find_custom(list, name, ppc_cpu_compare_class_name);
|
|
|
|
if (item != NULL) {
|
|
|
|
ret = OBJECT_CLASS(item->data);
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
2013-01-06 08:31:30 +00:00
|
|
|
g_slist_free(list);
|
2007-11-10 23:51:02 +00:00
|
|
|
|
|
|
|
return ret;
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
PowerPCCPU *cpu_ppc_init(const char *cpu_model)
|
2005-07-02 20:59:34 +00:00
|
|
|
{
|
2013-01-06 08:31:30 +00:00
|
|
|
PowerPCCPU *cpu;
|
|
|
|
CPUPPCState *env;
|
|
|
|
ObjectClass *oc;
|
|
|
|
Error *err = NULL;
|
2005-07-02 20:59:34 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
oc = ppc_cpu_class_by_name(cpu_model);
|
|
|
|
if (oc == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-10-18 00:00:51 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
cpu = POWERPC_CPU(object_new(object_class_get_name(oc)));
|
|
|
|
env = &cpu->env;
|
|
|
|
env->cpu_model_str = cpu_model;
|
|
|
|
|
2013-01-16 02:55:14 +00:00
|
|
|
object_property_set_bool(OBJECT(cpu), true, "realized", &err);
|
2013-01-06 08:31:30 +00:00
|
|
|
if (err != NULL) {
|
|
|
|
fprintf(stderr, "%s\n", error_get_pretty(err));
|
|
|
|
error_free(err);
|
2013-01-25 13:12:38 +00:00
|
|
|
object_unref(OBJECT(cpu));
|
2013-01-06 08:31:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort by PVR, ordering special case "host" last. */
|
|
|
|
static gint ppc_cpu_list_compare(gconstpointer a, gconstpointer b)
|
|
|
|
{
|
|
|
|
ObjectClass *oc_a = (ObjectClass *)a;
|
|
|
|
ObjectClass *oc_b = (ObjectClass *)b;
|
|
|
|
PowerPCCPUClass *pcc_a = POWERPC_CPU_CLASS(oc_a);
|
|
|
|
PowerPCCPUClass *pcc_b = POWERPC_CPU_CLASS(oc_b);
|
|
|
|
const char *name_a = object_class_get_name(oc_a);
|
|
|
|
const char *name_b = object_class_get_name(oc_b);
|
|
|
|
|
|
|
|
if (strcmp(name_a, TYPE_HOST_POWERPC_CPU) == 0) {
|
|
|
|
return 1;
|
|
|
|
} else if (strcmp(name_b, TYPE_HOST_POWERPC_CPU) == 0) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
/* Avoid an integer overflow during subtraction */
|
2013-02-17 23:16:41 +00:00
|
|
|
if (pcc_a->pvr < pcc_b->pvr) {
|
2013-01-06 08:31:30 +00:00
|
|
|
return -1;
|
2013-02-17 23:16:41 +00:00
|
|
|
} else if (pcc_a->pvr > pcc_b->pvr) {
|
2013-01-06 08:31:30 +00:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ppc_cpu_list_entry(gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
ObjectClass *oc = data;
|
|
|
|
CPUListState *s = user_data;
|
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
2013-02-17 23:16:40 +00:00
|
|
|
const char *typename = object_class_get_name(oc);
|
|
|
|
char *name;
|
2013-01-06 08:31:30 +00:00
|
|
|
|
2013-02-17 23:16:44 +00:00
|
|
|
#if defined(TARGET_PPCEMB)
|
|
|
|
if (pcc->mmu_model != POWERPC_MMU_BOOKE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-02-17 23:16:40 +00:00
|
|
|
name = g_strndup(typename,
|
|
|
|
strlen(typename) - strlen("-" TYPE_POWERPC_CPU));
|
2013-01-06 08:31:30 +00:00
|
|
|
(*s->cpu_fprintf)(s->file, "PowerPC %-16s PVR %08x\n",
|
2013-02-17 23:16:41 +00:00
|
|
|
name, pcc->pvr);
|
2013-02-17 23:16:40 +00:00
|
|
|
g_free(name);
|
2013-01-06 08:31:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ppc_cpu_list(FILE *f, fprintf_function cpu_fprintf)
|
|
|
|
{
|
|
|
|
CPUListState s = {
|
|
|
|
.file = f,
|
|
|
|
.cpu_fprintf = cpu_fprintf,
|
|
|
|
};
|
|
|
|
GSList *list;
|
2013-02-17 23:16:04 +00:00
|
|
|
int i;
|
2013-01-06 08:31:30 +00:00
|
|
|
|
|
|
|
list = object_class_get_list(TYPE_POWERPC_CPU, false);
|
|
|
|
list = g_slist_sort(list, ppc_cpu_list_compare);
|
|
|
|
g_slist_foreach(list, ppc_cpu_list_entry, &s);
|
|
|
|
g_slist_free(list);
|
2013-02-17 23:16:04 +00:00
|
|
|
|
|
|
|
cpu_fprintf(f, "\n");
|
|
|
|
for (i = 0; i < ARRAY_SIZE(ppc_cpu_aliases); i++) {
|
|
|
|
ObjectClass *oc = ppc_cpu_class_by_name(ppc_cpu_aliases[i].model);
|
|
|
|
if (oc == NULL) {
|
|
|
|
/* Hide aliases that point to a TODO or TODO_USER_ONLY model */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cpu_fprintf(f, "PowerPC %-16s\n",
|
|
|
|
ppc_cpu_aliases[i].alias);
|
|
|
|
}
|
2013-01-06 08:31:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ppc_cpu_defs_entry(gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
ObjectClass *oc = data;
|
|
|
|
CpuDefinitionInfoList **first = user_data;
|
2013-02-17 23:16:40 +00:00
|
|
|
const char *typename;
|
2013-01-06 08:31:30 +00:00
|
|
|
CpuDefinitionInfoList *entry;
|
|
|
|
CpuDefinitionInfo *info;
|
2013-02-17 23:16:44 +00:00
|
|
|
#if defined(TARGET_PPCEMB)
|
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
|
|
|
|
if (pcc->mmu_model != POWERPC_MMU_BOOKE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-06 08:31:30 +00:00
|
|
|
|
2013-02-17 23:16:40 +00:00
|
|
|
typename = object_class_get_name(oc);
|
2013-01-06 08:31:30 +00:00
|
|
|
info = g_malloc0(sizeof(*info));
|
2013-02-17 23:16:40 +00:00
|
|
|
info->name = g_strndup(typename,
|
|
|
|
strlen(typename) - strlen("-" TYPE_POWERPC_CPU));
|
2013-01-06 08:31:30 +00:00
|
|
|
|
|
|
|
entry = g_malloc0(sizeof(*entry));
|
|
|
|
entry->value = info;
|
|
|
|
entry->next = *first;
|
|
|
|
*first = entry;
|
2005-07-02 20:59:34 +00:00
|
|
|
}
|
2012-04-06 12:39:03 +00:00
|
|
|
|
2012-08-15 03:17:36 +00:00
|
|
|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
|
2012-08-10 16:04:15 +00:00
|
|
|
{
|
|
|
|
CpuDefinitionInfoList *cpu_list = NULL;
|
2013-01-06 08:31:30 +00:00
|
|
|
GSList *list;
|
2012-08-10 16:04:15 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
list = object_class_get_list(TYPE_POWERPC_CPU, false);
|
|
|
|
g_slist_foreach(list, ppc_cpu_defs_entry, &cpu_list);
|
|
|
|
g_slist_free(list);
|
2012-08-10 16:04:15 +00:00
|
|
|
|
2013-01-06 08:31:30 +00:00
|
|
|
return cpu_list;
|
|
|
|
}
|
2012-08-10 16:04:15 +00:00
|
|
|
|
2012-04-06 12:39:03 +00:00
|
|
|
/* CPUClass::reset() */
|
|
|
|
static void ppc_cpu_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(s);
|
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2012-04-06 13:35:34 +00:00
|
|
|
target_ulong msr;
|
|
|
|
|
|
|
|
if (qemu_loglevel_mask(CPU_LOG_RESET)) {
|
2012-12-17 05:18:02 +00:00
|
|
|
qemu_log("CPU Reset (CPU %d)\n", s->cpu_index);
|
2012-04-06 13:35:34 +00:00
|
|
|
log_cpu_state(env, 0);
|
|
|
|
}
|
2012-04-06 12:39:03 +00:00
|
|
|
|
|
|
|
pcc->parent_reset(s);
|
|
|
|
|
2012-04-06 13:35:34 +00:00
|
|
|
msr = (target_ulong)0;
|
|
|
|
if (0) {
|
|
|
|
/* XXX: find a suitable condition to enable the hypervisor mode */
|
|
|
|
msr |= (target_ulong)MSR_HVB;
|
|
|
|
}
|
|
|
|
msr |= (target_ulong)0 << MSR_AP; /* TO BE CHECKED */
|
|
|
|
msr |= (target_ulong)0 << MSR_SA; /* TO BE CHECKED */
|
|
|
|
msr |= (target_ulong)1 << MSR_EP;
|
|
|
|
#if defined(DO_SINGLE_STEP) && 0
|
|
|
|
/* Single step trace mode */
|
|
|
|
msr |= (target_ulong)1 << MSR_SE;
|
|
|
|
msr |= (target_ulong)1 << MSR_BE;
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
msr |= (target_ulong)1 << MSR_FP; /* Allow floating point usage */
|
|
|
|
msr |= (target_ulong)1 << MSR_VR; /* Allow altivec usage */
|
|
|
|
msr |= (target_ulong)1 << MSR_SPE; /* Allow SPE usage */
|
|
|
|
msr |= (target_ulong)1 << MSR_PR;
|
|
|
|
#else
|
|
|
|
env->excp_prefix = env->hreset_excp_prefix;
|
|
|
|
env->nip = env->hreset_vector | env->excp_prefix;
|
|
|
|
if (env->mmu_model != POWERPC_MMU_REAL) {
|
|
|
|
ppc_tlb_invalidate_all(env);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
env->msr = msr & env->msr_mask;
|
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
if (env->mmu_model & POWERPC_MMU_64) {
|
|
|
|
env->msr |= (1ULL << MSR_SF);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
hreg_compute_hflags(env);
|
|
|
|
env->reserve_addr = (target_ulong)-1ULL;
|
|
|
|
/* Be sure no exception or interrupt is pending */
|
|
|
|
env->pending_interrupts = 0;
|
|
|
|
env->exception_index = POWERPC_EXCP_NONE;
|
|
|
|
env->error_code = 0;
|
2012-09-25 17:12:21 +00:00
|
|
|
|
|
|
|
#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
|
target-ppc: Rework storage of VPA registration state
With PAPR guests, hypercalls allow registration of the Virtual Processor
Area (VPA), SLB shadow and dispatch trace log (DTL), each of which allow
for certain communication between the guest and hypervisor. Currently, we
store the addresses of the three areas and the size of the dtl in
CPUPPCState.
The SLB shadow and DTL are variable sized, with the size being retrieved
from within the registered memory area at the hypercall time. This size
can later be overwritten with other information, however, so we need to
save the size as of registration time. We already do this for the DTL,
but not for the SLB shadow, so this patch fixes that.
In addition, we change the storage of the VPA information to use fixed
size integer types which will make life easier for syncing this data with
KVM, which we will need in future.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
2012-10-08 18:17:38 +00:00
|
|
|
env->vpa_addr = 0;
|
|
|
|
env->slb_shadow_addr = 0;
|
|
|
|
env->slb_shadow_size = 0;
|
|
|
|
env->dtl_addr = 0;
|
2012-09-25 17:12:21 +00:00
|
|
|
env->dtl_size = 0;
|
|
|
|
#endif /* TARGET_PPC64 */
|
|
|
|
|
2012-04-06 13:35:34 +00:00
|
|
|
/* Flush all TLBs */
|
|
|
|
tlb_flush(env, 1);
|
2012-04-06 12:39:03 +00:00
|
|
|
}
|
|
|
|
|
2012-04-06 13:09:01 +00:00
|
|
|
static void ppc_cpu_initfn(Object *obj)
|
|
|
|
{
|
2013-01-17 11:13:41 +00:00
|
|
|
CPUState *cs = CPU(obj);
|
2012-04-06 13:09:01 +00:00
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(obj);
|
2013-01-06 08:31:30 +00:00
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
|
2012-04-06 13:09:01 +00:00
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2013-01-17 11:13:41 +00:00
|
|
|
cs->env_ptr = env;
|
2012-04-06 13:09:01 +00:00
|
|
|
cpu_exec_init(env);
|
2013-01-06 08:31:30 +00:00
|
|
|
|
2013-02-17 23:16:41 +00:00
|
|
|
env->msr_mask = pcc->msr_mask;
|
|
|
|
env->mmu_model = pcc->mmu_model;
|
|
|
|
env->excp_model = pcc->excp_model;
|
|
|
|
env->bus_model = pcc->bus_model;
|
|
|
|
env->insns_flags = pcc->insns_flags;
|
|
|
|
env->insns_flags2 = pcc->insns_flags2;
|
|
|
|
env->flags = pcc->flags;
|
|
|
|
env->bfd_mach = pcc->bfd_mach;
|
|
|
|
env->check_pow = pcc->check_pow;
|
2013-01-06 08:31:30 +00:00
|
|
|
|
|
|
|
#if defined(TARGET_PPC64)
|
2013-02-17 23:16:41 +00:00
|
|
|
if (pcc->sps) {
|
|
|
|
env->sps = *pcc->sps;
|
2013-01-06 08:31:30 +00:00
|
|
|
} else if (env->mmu_model & POWERPC_MMU_64) {
|
|
|
|
/* Use default sets of page sizes */
|
|
|
|
static const struct ppc_segment_page_sizes defsps = {
|
|
|
|
.sps = {
|
|
|
|
{ .page_shift = 12, /* 4K */
|
|
|
|
.slb_enc = 0,
|
|
|
|
.enc = { { .page_shift = 12, .pte_enc = 0 } }
|
|
|
|
},
|
|
|
|
{ .page_shift = 24, /* 16M */
|
|
|
|
.slb_enc = 0x100,
|
|
|
|
.enc = { { .page_shift = 24, .pte_enc = 0 } }
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
env->sps = defsps;
|
|
|
|
}
|
|
|
|
#endif /* defined(TARGET_PPC64) */
|
2013-01-20 00:26:37 +00:00
|
|
|
|
|
|
|
if (tcg_enabled()) {
|
|
|
|
ppc_translate_init();
|
|
|
|
}
|
2012-04-06 13:09:01 +00:00
|
|
|
}
|
|
|
|
|
2012-04-06 12:39:03 +00:00
|
|
|
static void ppc_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
PowerPCCPUClass *pcc = POWERPC_CPU_CLASS(oc);
|
|
|
|
CPUClass *cc = CPU_CLASS(oc);
|
2013-01-16 02:55:14 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
|
|
|
|
|
|
|
pcc->parent_realize = dc->realize;
|
|
|
|
dc->realize = ppc_cpu_realizefn;
|
2012-04-06 12:39:03 +00:00
|
|
|
|
|
|
|
pcc->parent_reset = cc->reset;
|
|
|
|
cc->reset = ppc_cpu_reset;
|
2013-01-21 17:26:21 +00:00
|
|
|
|
|
|
|
cc->class_by_name = ppc_cpu_class_by_name;
|
2012-04-06 12:39:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo ppc_cpu_type_info = {
|
|
|
|
.name = TYPE_POWERPC_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(PowerPCCPU),
|
2012-04-06 13:09:01 +00:00
|
|
|
.instance_init = ppc_cpu_initfn,
|
2013-01-06 08:31:30 +00:00
|
|
|
.abstract = true,
|
2012-04-06 12:39:03 +00:00
|
|
|
.class_size = sizeof(PowerPCCPUClass),
|
|
|
|
.class_init = ppc_cpu_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ppc_cpu_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&ppc_cpu_type_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(ppc_cpu_register_types)
|