aboutsummaryrefslogtreecommitdiff
path: root/core/chip.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2015-07-03 13:49:16 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-07-03 17:09:44 +1000
commitef50b5f5ad2834996eabc7e10885659a1ef65196 (patch)
treeee96305dfa1f6254e6d212de9592ed243eda4380 /core/chip.c
parent545c2d925d92ce0c0f50436596e5f6bb2cda8b81 (diff)
downloadskiboot-ef50b5f5ad2834996eabc7e10885659a1ef65196.zip
skiboot-ef50b5f5ad2834996eabc7e10885659a1ef65196.tar.gz
skiboot-ef50b5f5ad2834996eabc7e10885659a1ef65196.tar.bz2
plat/qemu: Add simple qemu platform
This adds support for running under qemu "powernv" platform, which is currently available via the qemu repository at: https://github.com/ozbenh/qemu branch "powernv" qemu can't yet create DT entries for ISA devices so we hard wire the UART and RTC devices in the device-tree like we do with other platforms. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'core/chip.c')
-rw-r--r--core/chip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/chip.c b/core/chip.c
index 7059ec3..c735df6 100644
--- a/core/chip.c
+++ b/core/chip.c
@@ -75,7 +75,7 @@ void init_chips(void)
prlog(PR_NOTICE, "CHIP: Detected Mambo simulator\n");
}
if (dt_node_is_compatible(dt_root, "qemu,powernv")) {
- proc_chip_quirks |= QUIRK_NO_CHIPTOD | QUIRK_NO_PBA | QUIRK_NO_OCC_IRQ;
+ proc_chip_quirks |= QUIRK_NO_CHIPTOD | QUIRK_NO_PBA;
prlog(PR_NOTICE, "CHIP: Detected Qemu simulator\n");
}