2007-03-07 08:32:30 +00:00
|
|
|
/*
|
|
|
|
* PowerPC emulation helpers header for qemu.
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2007-03-07 08:32:30 +00:00
|
|
|
* Copyright (c) 2003-2007 Jocelyn Mayer
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2007-04-16 07:10:48 +00:00
|
|
|
void do_print_mem_EA (target_ulong EA);
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* Registers load and stores */
|
2007-09-30 01:18:26 +00:00
|
|
|
#if defined(TARGET_PPC64)
|
|
|
|
void do_store_pri (int prio);
|
|
|
|
#endif
|
2007-04-16 07:10:48 +00:00
|
|
|
target_ulong ppc_load_dump_spr (int sprn);
|
|
|
|
void ppc_store_dump_spr (int sprn, target_ulong val);
|
2007-03-07 08:32:30 +00:00
|
|
|
|
2007-03-20 22:11:31 +00:00
|
|
|
/* Misc */
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-08-24 23:16:35 +00:00
|
|
|
void do_store_msr (void);
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* POWER / PowerPC 601 specific helpers */
|
|
|
|
void do_POWER_abso (void);
|
|
|
|
void do_POWER_clcs (void);
|
|
|
|
void do_POWER_div (void);
|
|
|
|
void do_POWER_divo (void);
|
|
|
|
void do_POWER_divs (void);
|
|
|
|
void do_POWER_divso (void);
|
|
|
|
void do_POWER_dozo (void);
|
|
|
|
void do_POWER_maskg (void);
|
|
|
|
void do_POWER_mulo (void);
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
void do_POWER_rac (void);
|
2007-11-04 02:55:33 +00:00
|
|
|
void do_store_hid0_601 (void);
|
2007-03-07 08:32:30 +00:00
|
|
|
#endif
|
|
|
|
|
2007-09-21 05:28:33 +00:00
|
|
|
/* PowerPC 440 specific helpers */
|
2007-09-19 05:44:04 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2007-09-21 05:28:33 +00:00
|
|
|
void do_440_tlbre (int word);
|
|
|
|
void do_440_tlbwe (int word);
|
2007-09-19 05:44:04 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-07 08:32:30 +00:00
|
|
|
/* PowerPC 4xx specific helpers */
|
2007-03-30 10:22:46 +00:00
|
|
|
void do_load_dcr (void);
|
|
|
|
void do_store_dcr (void);
|
Great rework and cleanups to ease PowerPC implementations definitions.
* cleanup cpu.h, removing definitions used only in translate.c/translate_init.c
* add new flags to define instructions sets more precisely
* various changes in MMU models definitions
* add definitions for PowerPC 440/460 support (insns and SPRs).
* add definitions for PowerPC 401/403 and 620 input pins model
* Fix definitions for most PowerPC 401, 403, 405, 440, 601, 602, 603 and 7x0
* Preliminary support for PowerPC 74xx (aka G4) without altivec.
* Code provision for other PowerPC support (7x5, 970, ...).
* New SPR and PVR defined, from PowerPC 2.04 specification and other sources
* Misc code bugs, error messages and styles fixes.
* Update status files for PowerPC cores support.
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-03-07 08:32:30 +00:00
|
|
|
void do_4xx_tlbre_lo (void);
|
|
|
|
void do_4xx_tlbre_hi (void);
|
|
|
|
void do_4xx_tlbwe_lo (void);
|
|
|
|
void do_4xx_tlbwe_hi (void);
|
|
|
|
#endif
|
|
|
|
|
2007-03-20 22:11:31 +00:00
|
|
|
/* PowerPC 403 specific helpers */
|
2007-03-07 08:32:30 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
void do_load_403_pb (int num);
|
|
|
|
void do_store_403_pb (int num);
|
|
|
|
#endif
|