blob: 7efef6b84b37e2289a99831a360484a8d5fc17a2 [file] [log] [blame]
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +09001if ARCH_OMAP2PLUS
2
3choice
4 prompt "OMAP2+ platform select"
Tom Rinif2d78c12017-06-09 16:59:17 -04005 default OMAP34XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +09006
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +09007config OMAP34XX
8 bool "OMAP34XX SoC"
9 select ARM_ERRATA_430973
10 select ARM_ERRATA_454179
11 select ARM_ERRATA_621766
12 select ARM_ERRATA_725233
13 select USE_TINY_PRINTF
14 imply SPL_EXT_SUPPORT
15 imply SPL_FAT_SUPPORT
16 imply SPL_GPIO_SUPPORT
17 imply SPL_I2C_SUPPORT
18 imply SPL_LIBCOMMON_SUPPORT
19 imply SPL_LIBDISK_SUPPORT
20 imply SPL_LIBGENERIC_SUPPORT
21 imply SPL_MMC_SUPPORT
22 imply SPL_NAND_SUPPORT
Adam Fordedd16532017-08-11 08:51:20 -050023 imply SPL_OMAP3_ID_NAND
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090024 imply SPL_POWER_SUPPORT
25 imply SPL_SERIAL_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -050026 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090027 imply SYS_THUMB_BUILD
Adam Ford7815c702017-04-26 13:41:31 -050028 imply TWL4030_POWER
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090029
30config OMAP44XX
31 bool "OMAP44XX SoC"
32 select USE_TINY_PRINTF
33 imply SPL_DISPLAY_PRINT
34 imply SPL_EXT_SUPPORT
35 imply SPL_FAT_SUPPORT
36 imply SPL_GPIO_SUPPORT
37 imply SPL_I2C_SUPPORT
38 imply SPL_LIBCOMMON_SUPPORT
39 imply SPL_LIBDISK_SUPPORT
40 imply SPL_LIBGENERIC_SUPPORT
41 imply SPL_MMC_SUPPORT
42 imply SPL_NAND_SUPPORT
43 imply SPL_POWER_SUPPORT
44 imply SPL_SERIAL_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -050045 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090046 imply SYS_THUMB_BUILD
47
48config OMAP54XX
49 bool "OMAP54XX SoC"
50 select ARM_ERRATA_798870
51 select SYS_THUMB_BUILD
52 imply SPL_DISPLAY_PRINT
53 imply SPL_ENV_SUPPORT
54 imply SPL_EXT_SUPPORT
55 imply SPL_FAT_SUPPORT
56 imply SPL_GPIO_SUPPORT
57 imply SPL_I2C_SUPPORT
58 imply SPL_LIBCOMMON_SUPPORT
59 imply SPL_LIBDISK_SUPPORT
60 imply SPL_LIBGENERIC_SUPPORT
61 imply SPL_MMC_SUPPORT
62 imply SPL_NAND_SUPPORT
63 imply SPL_POWER_SUPPORT
64 imply SPL_SERIAL_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -050065 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090066
Tom Rini8bb687f2017-05-16 14:46:40 -040067config TI814X
68 bool "TI814X SoC"
69 help
70 Support for AM335x SOC from Texas Instruments.
71 The AM335x high performance SOC features a Cortex-A8
72 ARM core and more.
73
74config TI816X
75 bool "TI816X SoC"
76 help
77 Support for AM335x SOC from Texas Instruments.
78 The AM335x high performance SOC features a Cortex-A8
79 ARM core and more.
80
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090081config AM43XX
82 bool "AM43XX SoC"
83 imply SPL_DM
84 imply SPL_DM_SEQ_ALIAS
85 imply SPL_OF_CONTROL
86 imply SPL_OF_TRANSLATE
87 imply SPL_SEPARATE_BSS
88 imply SPL_SYS_MALLOC_SIMPLE
Adam Forddaa0f052017-08-07 13:11:34 -050089 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090090 imply SYS_THUMB_BUILD
91 help
92 Support for AM43xx SOC from Texas Instruments.
93 The AM43xx high performance SOC features a Cortex-A9
94 ARM core, a quad core PRU-ICSS for industrial Ethernet
95 protocols, dual camera support, optional 3D graphics
96 and an optional customer programmable secure boot.
97
98config AM33XX
99 bool "AM33XX SoC"
Adam Forddaa0f052017-08-07 13:11:34 -0500100 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900101 imply SYS_THUMB_BUILD
Lokesh Vutlaa292eb62017-04-26 13:37:10 +0530102 imply USE_TINY_PRINTF
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900103 help
104 Support for AM335x SOC from Texas Instruments.
105 The AM335x high performance SOC features a Cortex-A8
106 ARM core, a dual core PRU-ICSS for industrial Ethernet
107 protocols, optional 3D graphics and an optional customer
108 programmable secure boot.
109
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900110endchoice
111
Lokesh Vutlac187dd62017-05-05 12:59:07 +0530112config SYS_MPUCLK
113 int "MPU CLK speed"
Lokesh Vutla59041a52017-05-05 12:59:08 +0530114 default 500
Lokesh Vutlac187dd62017-05-05 12:59:07 +0530115 help
116 Defines the MPU clock speed (in MHz).
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900117
Madan Srinivasa774e082016-05-19 19:10:44 -0500118config TI_SECURE_DEVICE
119 bool "HS Device Type Support"
Vitaly Andrianovc8ab8cc2017-04-07 10:00:04 -0500120 depends on OMAP54XX || AM43XX || AM33XX || ARCH_KEYSTONE
Madan Srinivasa774e082016-05-19 19:10:44 -0500121 help
122 If a high secure (HS) device type is being used, this config
123 must be set. This option impacts various aspects of the
124 build system (to create signed boot images that can be
125 authenticated) and the code. See the doc/README.ti-secure
126 file for further details.
127
Andrew F. Davis3348e0c2017-07-10 14:45:49 -0500128config TI_SECURE_EMIF_REGION_START
129 hex "Reserved EMIF region start address"
130 depends on TI_SECURE_DEVICE
131 default 0x0
132 help
133 Reserved EMIF region start address. Set to "0" to auto-select
134 to be at the end of the external memory region.
135
136config TI_SECURE_EMIF_TOTAL_REGION_SIZE
137 hex "Reserved EMIF region size"
138 depends on TI_SECURE_DEVICE
139 default 0x0
140 help
141 Total reserved EMIF region size. Default is 0, which means no reserved EMIF
142 region on secure devices.
143
144config TI_SECURE_EMIF_PROTECTED_REGION_SIZE
145 hex "Size of protected region within reserved EMIF region"
146 depends on TI_SECURE_DEVICE
147 default 0x0
148 help
149 This config option is used to specify the size of the portion of the total
150 reserved EMIF region set aside for secure OS needs that will be protected
151 using hardware memory firewalls. This value must be smaller than the
152 TI_SECURE_EMIF_TOTAL_REGION_SIZE value.
153
Tom Rini983e3702016-11-07 21:34:54 -0500154source "arch/arm/mach-omap2/omap3/Kconfig"
Madan Srinivasa774e082016-05-19 19:10:44 -0500155
Tom Rini983e3702016-11-07 21:34:54 -0500156source "arch/arm/mach-omap2/omap4/Kconfig"
Madan Srinivasa774e082016-05-19 19:10:44 -0500157
Tom Rini983e3702016-11-07 21:34:54 -0500158source "arch/arm/mach-omap2/omap5/Kconfig"
Madan Srinivasa774e082016-05-19 19:10:44 -0500159
Tom Rini983e3702016-11-07 21:34:54 -0500160source "arch/arm/mach-omap2/am33xx/Kconfig"
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900161
162source "board/BuR/brxre1/Kconfig"
163source "board/BuR/brppt1/Kconfig"
164source "board/siemens/draco/Kconfig"
165source "board/siemens/pxm2/Kconfig"
166source "board/siemens/rut/Kconfig"
167source "board/ti/ti814x/Kconfig"
168source "board/ti/ti816x/Kconfig"
169source "board/ti/am43xx/Kconfig"
170source "board/ti/am335x/Kconfig"
171source "board/compulab/cm_t335/Kconfig"
172source "board/compulab/cm_t43/Kconfig"
173
Philipp Tomsichb5299932017-08-03 23:23:55 +0200174config SPL_LDSCRIPT
175 default "arch/arm/mach-omap2/u-boot-spl.lds"
176
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900177endif