Commit 790f70c725d6a89e6a9ac78f91b025454ae75dde

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent 06471dfc3d

kconfig: arm: select CPU_V7 for some new boards

This commit adds "select CPU_V7" for some new boards that were not
covered by commit 2e07c249a67e
(kconfig: arm: introduce symbol for ARM CPUs).

Redundant "SYS_CPU" defines and "string" directives should be removed.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Stefan Roese <sr@denx.de>
Acked-by: Georges Savoundararadj <savoundg@gmail.com>

Showing 6 changed files with 3 additions and 25 deletions Side-by-side Diff

... ... @@ -225,9 +225,11 @@
225 225  
226 226 config TARGET_DB_MV784MP_GP
227 227 bool "Support db-mv784mp-gp"
  228 + select CPU_V7
228 229  
229 230 config TARGET_MAXBCM
230 231 bool "Support maxbcm"
  232 + select CPU_V7
231 233  
232 234 config TARGET_DEVKIT3250
233 235 bool "Support devkit3250"
... ... @@ -629,6 +631,7 @@
629 631  
630 632 config TARGET_KOSAGI_NOVENA
631 633 bool "Support Kosagi Novena"
  634 + select CPU_V7
632 635  
633 636 config TARGET_TQMA6
634 637 bool "TQ Systems TQMa6 board"
arch/arm/cpu/armv7/tegra-common/Kconfig
... ... @@ -20,10 +20,6 @@
20 20 config USE_PRIVATE_LIBGCC
21 21 default y if SPL_BUILD
22 22  
23   -config SYS_CPU
24   - default "arm720t" if SPL_BUILD
25   - default "armv7" if !SPL_BUILD
26   -
27 23 source "arch/arm/cpu/armv7/tegra20/Kconfig"
28 24 source "arch/arm/cpu/armv7/tegra30/Kconfig"
29 25 source "arch/arm/cpu/armv7/tegra114/Kconfig"
board/Marvell/db-mv784mp-gp/Kconfig
1 1 if TARGET_DB_MV784MP_GP
2 2  
3   -config SYS_CPU
4   - string
5   - default "armv7"
6   -
7 3 config SYS_BOARD
8   - string
9 4 default "db-mv784mp-gp"
10 5  
11 6 config SYS_VENDOR
12   - string
13 7 default "Marvell"
14 8  
15 9 config SYS_SOC
16   - string
17 10 default "armada-xp"
18 11  
19 12 config SYS_CONFIG_NAME
20   - string
21 13 default "db-mv784mp-gp"
22 14  
23 15 endif
board/kosagi/novena/Kconfig
1 1 if TARGET_KOSAGI_NOVENA
2 2  
3   -config SYS_CPU
4   - default "armv7"
5   -
6 3 config SYS_BOARD
7 4 default "novena"
8 5  
board/maxbcm/Kconfig
1 1 if TARGET_MAXBCM
2 2  
3   -config SYS_CPU
4   - string
5   - default "armv7"
6   -
7 3 config SYS_BOARD
8   - string
9 4 default "maxbcm"
10 5  
11 6 config SYS_SOC
12   - string
13 7 default "armada-xp"
14 8  
15 9 config SYS_CONFIG_NAME
16   - string
17 10 default "maxbcm"
18 11  
19 12 endif
board/ti/ks2_evm/Kconfig
... ... @@ -27,15 +27,12 @@
27 27 if TARGET_K2L_EVM
28 28  
29 29 config SYS_BOARD
30   - string
31 30 default "ks2_evm"
32 31  
33 32 config SYS_VENDOR
34   - string
35 33 default "ti"
36 34  
37 35 config SYS_CONFIG_NAME
38   - string
39 36 default "k2l_evm"
40 37  
41 38 endif