repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ahci: add test_pci_enable to ahci-test.
[qemu/ar7.git]
/
hw
/
ppc
/
e500.h
blob
08b25fab4904087603647b12ad4876c899896570
1
#ifndef PPCE500_H
2
#define PPCE500_H
3
4
#include
"hw/boards.h"
5
6
typedef
struct
PPCE500Params
{
7
int
pci_first_slot
;
8
int
pci_nr_slots
;
9
10
/* required -- must at least add toplevel board compatible */
11
void
(*
fixup_devtree
)(
struct
PPCE500Params
*
params
,
void
*
fdt
);
12
13
int
mpic_version
;
14
}
PPCE500Params
;
15
16
void
ppce500_init
(
MachineState
*
machine
,
PPCE500Params
*
params
);
17
18
#endif