arch/arm64: cleanup defconfigs
Use CONFIG_ARCH_CHIP_QEMU instead of CONFIG_ARCH_CHIP_QEMU_A53. This is because these configurations depend on the hardware configuration of qemu (memory map, irq numbers, etc.). Signed-off-by: Hidenori Matsubayashi <hidenori.matsubayashi@gmail.com>
This commit is contained in:
parent
83c76eaa93
commit
06cf41901f
5 changed files with 3 additions and 5 deletions
|
@ -33,7 +33,7 @@
|
|||
#define MB(x) (KB(x) << 10)
|
||||
#define GB(x) (MB(UINT64_C(x)) << 10)
|
||||
|
||||
#if defined(CONFIG_ARCH_CHIP_QEMU_A53)
|
||||
#if defined(CONFIG_ARCH_CHIP_QEMU)
|
||||
|
||||
#define CONFIG_GICD_BASE 0x8000000
|
||||
#define CONFIG_GICR_BASE 0x80a0000
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_ARCH_CHIP_QEMU_A53
|
||||
#ifdef CONFIG_ARCH_CHIP_QEMU
|
||||
#define CONFIG_QEMU_UART_BASE 0x9000000
|
||||
#define CONFIG_QEMU_UART_IRQ (GIC_SPI_INT_BASE + 1)
|
||||
#endif
|
||||
|
|
|
@ -1709,7 +1709,7 @@ config ARCH_BOARD_SABRE_6QUAD
|
|||
|
||||
config ARCH_BOARD_QEMU_A53
|
||||
bool "Qemu A53 board"
|
||||
depends on ARCH_CHIP_QEMU_A53
|
||||
depends on ARCH_CHIP_QEMU
|
||||
select ARCH_HAVE_IRQBUTTONS
|
||||
---help---
|
||||
This options selects support for NuttX on the QEMU A53
|
||||
|
|
|
@ -11,7 +11,6 @@ CONFIG_ARCH_BOARD="qemu-a53"
|
|||
CONFIG_ARCH_BOARD_QEMU_A53=y
|
||||
CONFIG_ARCH_CHIP="qemu"
|
||||
CONFIG_ARCH_CHIP_QEMU=y
|
||||
CONFIG_ARCH_CHIP_QEMU_A53=y
|
||||
CONFIG_ARCH_INTERRUPTSTACK=4096
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_ASSERTIONS=y
|
||||
|
|
|
@ -12,7 +12,6 @@ CONFIG_ARCH_BOARD="qemu-a53"
|
|||
CONFIG_ARCH_BOARD_QEMU_A53=y
|
||||
CONFIG_ARCH_CHIP="qemu"
|
||||
CONFIG_ARCH_CHIP_QEMU=y
|
||||
CONFIG_ARCH_CHIP_QEMU_A53=y
|
||||
CONFIG_ARCH_INTERRUPTSTACK=8192
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_ASSERTIONS=y
|
||||
|
|
Loading…
Reference in a new issue