forked from lemonjesus/qemu-ipod-nano
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hw/hppa: Implement DINO system board
Now that we have the prerequisites in target/hppa/, implement the hardware for a PA7100LC. This also enables build for hppa-softmmu. Signed-off-by: Helge Deller <deller@gmx.de> [rth: Since it is all new code, squashed all branch development withing hw/hppa/ to a single patch.] Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
- Loading branch information
Showing
9 changed files
with
938 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
include pci.mak | ||
include usb.mak | ||
CONFIG_SERIAL=y | ||
CONFIG_SERIAL_ISA=y | ||
CONFIG_ISA_BUS=y | ||
CONFIG_I8259=y | ||
CONFIG_VIRTIO_PCI=$(CONFIG_PCI) | ||
CONFIG_VIRTIO=y | ||
CONFIG_E1000_PCI=y | ||
CONFIG_IDE_ISA=y | ||
CONFIG_IDE_CMD646=y | ||
# CONFIG_IDE_MMIO=y | ||
CONFIG_VIRTIO_VGA=y | ||
CONFIG_MC146818RTC=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
obj-y += machine.o | ||
obj-y += machine.o pci.o dino.o |
Oops, something went wrong.