Skip to content

Commit

Permalink
hw/hppa: Move software power button address to page zero
Browse files Browse the repository at this point in the history
Something appears to be off between the 64-bit CPU, the 32-bit PDC
(SeaBIOS-hppa firmware), and the 64-bit kernel in addressing the
power button address in high-mapped firmware memory.

Use a 32-bit value at PAGE0->pad0[4] instead.

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
hdeller authored and rth7680 committed Nov 13, 2023
1 parent 8066102 commit e274d2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hw/hppa/machine.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@

#define MIN_SEABIOS_HPPA_VERSION 10 /* require at least this fw version */

#define HPA_POWER_BUTTON (FIRMWARE_END - 0x10)
/* Power button address at &PAGE0->pad[4] */
#define HPA_POWER_BUTTON (0x40 + 4 * sizeof(uint32_t))

#define enable_lasi_lan() 0

Expand Down

0 comments on commit e274d2a

Please sign in to comment.