blob: 75364557bfc130b0290e4cf363fb59f7b2e45a1e [file] [log] [blame]
Nick Hawkinse7ea0a22022-06-08 16:21:37 -05001choice
2 prompt "SoC select"
3
4config TARGET_GXP
5 bool "GXP"
6 select DM
7 select SOC_GXP
8 imply CMD_DM
9
10config TARGET_GXP2
11 bool "GXP2"
12 select DM
13 select SOC_GXP
14 select GXP_ECC
15 imply CMD_DM
16
17endchoice
18
19choice
20 prompt "GXP VROM size"
21 default GXP_VROM_64MB
22 optional
23
24config GXP_VROM_64MB
25 bool "64MB"
26
27config GXP_VROM_32MB
28 bool "32MB"
29endchoice
30
31config GXP_ECC
32 bool "Enable memory ECC protected"
33 help
34 Use half of memory to enable ECC protected
35
36config SYS_BOARD
37 default "gxp"
38
39config SYS_VENDOR
40 default "hpe"
41
42config SYS_CONFIG_NAME
43 default "gxp"
44
Simon Glass98463902022-10-20 18:22:39 -060045config TEXT_BASE
Nick Hawkinse7ea0a22022-06-08 16:21:37 -050046 default 0x50000000