mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
Share input pins and internal interrupt controller between all PowerPC 40x.
Fix critical input interrupt generation. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3299 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3391c81801
commit
4e290a0b71
3 changed files with 41 additions and 39 deletions
|
@ -1117,23 +1117,15 @@ enum {
|
|||
};
|
||||
|
||||
enum {
|
||||
/* PowerPC 401/403 input pins */
|
||||
PPC401_INPUT_RESET = 0,
|
||||
PPC401_INPUT_CINT = 1,
|
||||
PPC401_INPUT_INT = 2,
|
||||
PPC401_INPUT_BERR = 3,
|
||||
PPC401_INPUT_HALT = 4,
|
||||
};
|
||||
|
||||
enum {
|
||||
/* PowerPC 405 input pins */
|
||||
PPC405_INPUT_RESET_CORE = 0,
|
||||
PPC405_INPUT_RESET_CHIP = 1,
|
||||
PPC405_INPUT_RESET_SYS = 2,
|
||||
PPC405_INPUT_CINT = 3,
|
||||
PPC405_INPUT_INT = 4,
|
||||
PPC405_INPUT_HALT = 5,
|
||||
PPC405_INPUT_DEBUG = 6,
|
||||
/* PowerPC 40x input pins */
|
||||
PPC40x_INPUT_RESET_CORE = 0,
|
||||
PPC40x_INPUT_RESET_CHIP = 1,
|
||||
PPC40x_INPUT_RESET_SYS = 2,
|
||||
PPC40x_INPUT_CINT = 3,
|
||||
PPC40x_INPUT_INT = 4,
|
||||
PPC40x_INPUT_HALT = 5,
|
||||
PPC40x_INPUT_DEBUG = 6,
|
||||
PPC40x_INPUT_NB,
|
||||
};
|
||||
|
||||
enum {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue