aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-09-28 22:52:14 +0200
committerHelge Deller <deller@gmx.de>2023-09-28 22:52:14 +0200
commite6e5160caec6cceb6e6b0c1d3c0cce975087bc49 (patch)
treee2677c8917f5863b612d99fa998500d84ca4f24d
parent8c990699bed57b3c1a122fc762b37edd96cabbf0 (diff)
downloadseabios-hppa-e6e5160caec6cceb6e6b0c1d3c0cce975087bc49.zip
seabios-hppa-e6e5160caec6cceb6e6b0c1d3c0cce975087bc49.tar.gz
seabios-hppa-e6e5160caec6cceb6e6b0c1d3c0cce975087bc49.tar.bz2
more fixes
-rw-r--r--src/parisc/parisc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c
index bdd92db..07bbbcb 100644
--- a/src/parisc/parisc.c
+++ b/src/parisc/parisc.c
@@ -2320,6 +2320,7 @@ void __VISIBLE start_parisc_firmware(void)
/* real-time-clock addr */
rtc_ptr = (int *) (unsigned long)
romfile_loadint("/etc/hppa/rtc-addr", (unsigned long) LASI_RTC_HPA);
+ dprintf(0, "RTC PTR 0x%x\n", (int)rtc_ptr);
/* use -fw_cfg opt/pdc_debug,string=255 to enable all firmware debug infos */
pdc_debug = romfile_loadstring_to_int("opt/pdc_debug", 0);
@@ -2437,7 +2438,8 @@ void __VISIBLE start_parisc_firmware(void)
// coreboot_preinit();
pci_setup();
- iosapic_table_setup();
+ if (has_astro)
+ iosapic_table_setup();
serial_setup();
block_setup();