diff options
| author | Tom Rini <[email protected]> | 2025-09-19 11:56:24 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-19 11:56:24 -0600 |
| commit | 8c4430fc523f60ebeac09a6637deae428a6c0c1a (patch) | |
| tree | cb3129be6f2c0abe8a4dfd9e52cba25746397443 | |
| parent | ecced05f679e1920ffd3e1bd57334bd6442194c4 (diff) | |
| parent | edaaedb5dd0fee9fcdfe41d92659914dc9d1d44d (diff) | |
Merge patch series "qemu-sbsa: Fix GIC enablement"
Kunihiko Hayashi <[email protected]> says:
In the qemu-sbsa configuration, the GICv3 definition is disabled due to
a typo. After fixing the typo, GICv3 is enabled, however, the GIC register
base address definitions are missing, resulting in a build failure.
This series enables GICv3 and resolves this build error.
Confirming that U-Boot successfully starts up in QEMU SBSA environment
after the fix.
Link: https://lore.kernel.org/r/[email protected]
| -rw-r--r-- | board/emulation/qemu-sbsa/Kconfig | 2 | ||||
| -rw-r--r-- | include/configs/qemu-sbsa.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/board/emulation/qemu-sbsa/Kconfig b/board/emulation/qemu-sbsa/Kconfig index 9ea6303ec9c..1f058a43932 100644 --- a/board/emulation/qemu-sbsa/Kconfig +++ b/board/emulation/qemu-sbsa/Kconfig @@ -34,7 +34,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy select PCIE_ECAM_GENERIC select SYS_PCI_64BIT select USB - select GIC_V3 + select GICV3 select GIC_V3_ITS select SYS_FLASH_CFI_WIDTH_16BIT imply AHCI_GENERIC diff --git a/include/configs/qemu-sbsa.h b/include/configs/qemu-sbsa.h index aff78160e12..669d0fe7c58 100644 --- a/include/configs/qemu-sbsa.h +++ b/include/configs/qemu-sbsa.h @@ -86,4 +86,8 @@ #define CFG_SYS_INIT_RAM_ADDR SBSA_MEM_BASE_ADDR #define CFG_SYS_INIT_RAM_SIZE 0x1000000 +/* Generic Interrupt Controller Definitions */ +#define GICD_BASE SBSA_GIC_DIST_BASE_ADDR +#define GICR_BASE SBSA_GIC_REDIST_BASE_ADDR + #endif /* __CONFIG_H */ |
