aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/chip.c4
-rw-r--r--include/chip.h1
2 files changed, 3 insertions, 2 deletions
diff --git a/core/chip.c b/core/chip.c
index 4a4a9a2..4573357 100644
--- a/core/chip.c
+++ b/core/chip.c
@@ -133,9 +133,9 @@ void init_chips(void)
if (dt_node_is_compatible(dt_root, "qemu,powernv") ||
dt_node_is_compatible(dt_root, "qemu,powernv8") ||
dt_node_is_compatible(dt_root, "qemu,powernv9")) {
- proc_chip_quirks |= QUIRK_NO_CHIPTOD | QUIRK_NO_PBA
+ proc_chip_quirks |= QUIRK_QEMU | QUIRK_NO_CHIPTOD
| QUIRK_NO_DIRECT_CTL | QUIRK_NO_RNG;
- prlog(PR_NOTICE, "CHIP: Detected Qemu simulator\n");
+ prlog(PR_NOTICE, "CHIP: Detected QEMU simulator\n");
}
/* We walk the chips based on xscom nodes in the tree */
diff --git a/include/chip.h b/include/chip.h
index 9bddd38..adb962a 100644
--- a/include/chip.h
+++ b/include/chip.h
@@ -105,6 +105,7 @@ enum proc_chip_quirks {
QUIRK_SLOW_SIM = 0x00000040,
QUIRK_NO_DIRECT_CTL = 0x00000080,
QUIRK_NO_RNG = 0x00000100,
+ QUIRK_QEMU = 0x00000200,
};
extern enum proc_chip_quirks proc_chip_quirks;