Skip to content

Commit 016a954

Browse files
masahir0ytrini
authored andcommitted
kconfig: armv8: move CONFIG_ARM64 to Kconfig
Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 8813fda commit 016a954

File tree

9 files changed

+18
-14
lines changed

9 files changed

+18
-14
lines changed

arch/arm/Kconfig

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ menu "ARM architecture"
44
config SYS_ARCH
55
default "arm"
66

7+
config ARM64
8+
bool
9+
710
choice
811
prompt "Target select"
912

@@ -459,12 +462,15 @@ config TEGRA
459462

460463
config TARGET_VEXPRESS_AEMV8A
461464
bool "Support vexpress_aemv8a"
465+
select ARM64
462466

463467
config TARGET_LS2085A_EMU
464468
bool "Support ls2085a_emu"
469+
select ARM64
465470

466471
config TARGET_LS2085A_SIMU
467472
bool "Support ls2085a_simu"
473+
select ARM64
468474

469475
config TARGET_LS1021AQDS
470476
bool "Support ls1021aqds_nor"
@@ -513,6 +519,8 @@ config TARGET_JORNADA
513519

514520
endchoice
515521

522+
source "arch/arm/cpu/armv8/Kconfig"
523+
516524
source "arch/arm/cpu/arm926ejs/davinci/Kconfig"
517525

518526
source "arch/arm/cpu/armv7/exynos/Kconfig"

arch/arm/cpu/armv8/Kconfig

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
if ARM64
2+
3+
config SYS_CPU
4+
default "armv8"
5+
6+
endif

board/armltd/vexpress64/Kconfig

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
if TARGET_VEXPRESS_AEMV8A
22

3-
config SYS_CPU
4-
default "armv8"
5-
63
config SYS_BOARD
74
default "vexpress64"
85

board/freescale/ls2085a/Kconfig

-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
if TARGET_LS2085A_EMU
22

3-
config SYS_CPU
4-
default "armv8"
5-
63
config SYS_BOARD
74
default "ls2085a"
85

@@ -19,9 +16,6 @@ endif
1916

2017
if TARGET_LS2085A_SIMU
2118

22-
config SYS_CPU
23-
default "armv8"
24-
2519
config SYS_BOARD
2620
default "ls2085a"
2721

configs/ls2085a_emu_D4_defconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
CONFIG_SYS_EXTRA_OPTIONS="ARM64,EMU,SYS_FSL_DDR4"
1+
CONFIG_SYS_EXTRA_OPTIONS="EMU,SYS_FSL_DDR4"
22
CONFIG_ARM=y
33
CONFIG_TARGET_LS2085A_EMU=y

configs/ls2085a_emu_defconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
CONFIG_SYS_EXTRA_OPTIONS="ARM64,EMU"
1+
CONFIG_SYS_EXTRA_OPTIONS="EMU"
22
CONFIG_ARM=y
33
CONFIG_TARGET_LS2085A_EMU=y

configs/ls2085a_simu_defconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
CONFIG_SYS_EXTRA_OPTIONS="ARM64,SIMU"
1+
CONFIG_SYS_EXTRA_OPTIONS="SIMU"
22
CONFIG_ARM=y
33
CONFIG_TARGET_LS2085A_SIMU=y

configs/vexpress_aemv8a_defconfig

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
CONFIG_SYS_EXTRA_OPTIONS="ARM64"
21
CONFIG_ARM=y
32
CONFIG_TARGET_VEXPRESS_AEMV8A=y
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
CONFIG_SYS_EXTRA_OPTIONS="ARM64,SEMIHOSTING,BASE_FVP"
1+
CONFIG_SYS_EXTRA_OPTIONS="SEMIHOSTING,BASE_FVP"
22
CONFIG_ARM=y
33
CONFIG_TARGET_VEXPRESS_AEMV8A=y

0 commit comments

Comments
 (0)