diff options
-rw-r--r-- | tests/boot-serial-test.c | 2 | ||||
-rw-r--r-- | tests/pnv-xscom-test.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/boot-serial-test.c b/tests/boot-serial-test.c index 44c82e5110..57edf6af33 100644 --- a/tests/boot-serial-test.c +++ b/tests/boot-serial-test.c @@ -29,7 +29,7 @@ static testdef_t tests[] = { { "ppc64", "ppce500", "", "U-Boot" }, { "ppc64", "prep", "", "Open Hack'Ware BIOS" }, { "ppc64", "pseries", "", "Open Firmware" }, - { "ppc64", "powernv", "-cpu POWER9", "SkiBoot" }, + { "ppc64", "powernv", "-cpu POWER8", "SkiBoot" }, { "i386", "isapc", "-cpu qemu32 -device sga", "SGABIOS" }, { "i386", "pc", "-device sga", "SGABIOS" }, { "i386", "q35", "-device sga", "SGABIOS" }, diff --git a/tests/pnv-xscom-test.c b/tests/pnv-xscom-test.c index 5951da16cd..5adc3fd3a9 100644 --- a/tests/pnv-xscom-test.c +++ b/tests/pnv-xscom-test.c @@ -41,7 +41,9 @@ static const PnvChip pnv_chips[] = { .xscom_core_base = 0x10000000ull, .cfam_id = 0x120d304980000000ull, .first_core = 0x1, - }, { + }, +#if 0 /* POWER9 support is not ready yet */ + { .chip_type = PNV_CHIP_POWER9, .cpu_model = "POWER9", .xscom_base = 0x000603fc00000000ull, @@ -49,6 +51,7 @@ static const PnvChip pnv_chips[] = { .cfam_id = 0x100d104980000000ull, .first_core = 0x20, }, +#endif }; static uint64_t pnv_xscom_addr(const PnvChip *chip, uint32_t pcba) |