blob: abd1aa7fe1b01762ec5b9ce984962d091ed8c623 [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
Adam Ford0a9ef452017-10-16 14:08:26 -050014 imply NAND_OMAP_GPMC
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090015 imply SPL_EXT_SUPPORT
16 imply SPL_FAT_SUPPORT
17 imply SPL_GPIO_SUPPORT
18 imply SPL_I2C_SUPPORT
19 imply SPL_LIBCOMMON_SUPPORT
20 imply SPL_LIBDISK_SUPPORT
21 imply SPL_LIBGENERIC_SUPPORT
22 imply SPL_MMC_SUPPORT
23 imply SPL_NAND_SUPPORT
Adam Fordedd16532017-08-11 08:51:20 -050024 imply SPL_OMAP3_ID_NAND
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090025 imply SPL_POWER_SUPPORT
26 imply SPL_SERIAL_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -050027 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090028 imply SYS_THUMB_BUILD
Adam Ford7815c702017-04-26 13:41:31 -050029 imply TWL4030_POWER
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090030
31config OMAP44XX
32 bool "OMAP44XX SoC"
33 select USE_TINY_PRINTF
Adam Ford0a9ef452017-10-16 14:08:26 -050034 imply NAND_OMAP_ELM
35 imply NAND_OMAP_GPMC
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090036 imply SPL_DISPLAY_PRINT
37 imply SPL_EXT_SUPPORT
38 imply SPL_FAT_SUPPORT
39 imply SPL_GPIO_SUPPORT
40 imply SPL_I2C_SUPPORT
41 imply SPL_LIBCOMMON_SUPPORT
42 imply SPL_LIBDISK_SUPPORT
43 imply SPL_LIBGENERIC_SUPPORT
44 imply SPL_MMC_SUPPORT
Adam Ford0a9ef452017-10-16 14:08:26 -050045 imply SPL_NAND_SIMPLE
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090046 imply SPL_NAND_SUPPORT
47 imply SPL_POWER_SUPPORT
48 imply SPL_SERIAL_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -050049 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090050 imply SYS_THUMB_BUILD
51
52config OMAP54XX
53 bool "OMAP54XX SoC"
54 select ARM_ERRATA_798870
55 select SYS_THUMB_BUILD
Adam Ford0a9ef452017-10-16 14:08:26 -050056 imply NAND_OMAP_ELM
57 imply NAND_OMAP_GPMC
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090058 imply SPL_DISPLAY_PRINT
59 imply SPL_ENV_SUPPORT
60 imply SPL_EXT_SUPPORT
61 imply SPL_FAT_SUPPORT
62 imply SPL_GPIO_SUPPORT
63 imply SPL_I2C_SUPPORT
64 imply SPL_LIBCOMMON_SUPPORT
65 imply SPL_LIBDISK_SUPPORT
66 imply SPL_LIBGENERIC_SUPPORT
67 imply SPL_MMC_SUPPORT
Adam Ford0a9ef452017-10-16 14:08:26 -050068 imply SPL_NAND_AM33XX_BCH
69 imply SPL_NAND_AM33XX_BCH
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090070 imply SPL_NAND_SUPPORT
71 imply SPL_POWER_SUPPORT
72 imply SPL_SERIAL_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -050073 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090074
Tom Rini8bb687f2017-05-16 14:46:40 -040075config TI814X
76 bool "TI814X SoC"
77 help
78 Support for AM335x SOC from Texas Instruments.
79 The AM335x high performance SOC features a Cortex-A8
80 ARM core and more.
81
82config TI816X
83 bool "TI816X SoC"
Adam Ford0a9ef452017-10-16 14:08:26 -050084 imply NAND_OMAP_ELM
85 imply NAND_OMAP_GPMC
Tom Rini8bb687f2017-05-16 14:46:40 -040086 help
87 Support for AM335x SOC from Texas Instruments.
88 The AM335x high performance SOC features a Cortex-A8
89 ARM core and more.
90
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090091config AM43XX
92 bool "AM43XX SoC"
Adam Ford0a9ef452017-10-16 14:08:26 -050093 imply NAND_OMAP_ELM
94 imply NAND_OMAP_GPMC
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090095 imply SPL_DM
96 imply SPL_DM_SEQ_ALIAS
Adam Ford0a9ef452017-10-16 14:08:26 -050097 imply SPL_NAND_AM33XX_BCH
98 imply SPL_NAND_SUPPORT
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +090099 imply SPL_OF_CONTROL
100 imply SPL_OF_TRANSLATE
101 imply SPL_SEPARATE_BSS
102 imply SPL_SYS_MALLOC_SIMPLE
Adam Forddaa0f052017-08-07 13:11:34 -0500103 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900104 imply SYS_THUMB_BUILD
105 help
106 Support for AM43xx SOC from Texas Instruments.
107 The AM43xx high performance SOC features a Cortex-A9
108 ARM core, a quad core PRU-ICSS for industrial Ethernet
109 protocols, dual camera support, optional 3D graphics
110 and an optional customer programmable secure boot.
111
112config AM33XX
113 bool "AM33XX SoC"
Adam Ford0a9ef452017-10-16 14:08:26 -0500114 imply NAND_OMAP_ELM
115 imply NAND_OMAP_GPMC
116 imply SPL_NAND_AM33XX_BCH
117 imply SPL_NAND_SUPPORT
Adam Forddaa0f052017-08-07 13:11:34 -0500118 imply SYS_I2C_OMAP24XX
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900119 imply SYS_THUMB_BUILD
Lokesh Vutlaa292eb62017-04-26 13:37:10 +0530120 imply USE_TINY_PRINTF
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900121 help
122 Support for AM335x SOC from Texas Instruments.
123 The AM335x high performance SOC features a Cortex-A8
124 ARM core, a dual core PRU-ICSS for industrial Ethernet
125 protocols, optional 3D graphics and an optional customer
126 programmable secure boot.
127
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900128endchoice
129
Lokesh Vutlac187dd62017-05-05 12:59:07 +0530130config SYS_MPUCLK
131 int "MPU CLK speed"
Lokesh Vutla59041a52017-05-05 12:59:08 +0530132 default 500
Lokesh Vutlac187dd62017-05-05 12:59:07 +0530133 help
134 Defines the MPU clock speed (in MHz).
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900135
Madan Srinivasa774e082016-05-19 19:10:44 -0500136config TI_SECURE_DEVICE
137 bool "HS Device Type Support"
Vitaly Andrianovc8ab8cc2017-04-07 10:00:04 -0500138 depends on OMAP54XX || AM43XX || AM33XX || ARCH_KEYSTONE
Madan Srinivasa774e082016-05-19 19:10:44 -0500139 help
140 If a high secure (HS) device type is being used, this config
141 must be set. This option impacts various aspects of the
142 build system (to create signed boot images that can be
143 authenticated) and the code. See the doc/README.ti-secure
144 file for further details.
145
Andrew F. Davis3348e0c2017-07-10 14:45:49 -0500146config TI_SECURE_EMIF_REGION_START
147 hex "Reserved EMIF region start address"
148 depends on TI_SECURE_DEVICE
149 default 0x0
150 help
151 Reserved EMIF region start address. Set to "0" to auto-select
152 to be at the end of the external memory region.
153
154config TI_SECURE_EMIF_TOTAL_REGION_SIZE
155 hex "Reserved EMIF region size"
156 depends on TI_SECURE_DEVICE
157 default 0x0
158 help
159 Total reserved EMIF region size. Default is 0, which means no reserved EMIF
160 region on secure devices.
161
162config TI_SECURE_EMIF_PROTECTED_REGION_SIZE
163 hex "Size of protected region within reserved EMIF region"
164 depends on TI_SECURE_DEVICE
165 default 0x0
166 help
167 This config option is used to specify the size of the portion of the total
168 reserved EMIF region set aside for secure OS needs that will be protected
169 using hardware memory firewalls. This value must be smaller than the
170 TI_SECURE_EMIF_TOTAL_REGION_SIZE value.
171
Tom Rini983e3702016-11-07 21:34:54 -0500172source "arch/arm/mach-omap2/omap3/Kconfig"
Madan Srinivasa774e082016-05-19 19:10:44 -0500173
Tom Rini983e3702016-11-07 21:34:54 -0500174source "arch/arm/mach-omap2/omap4/Kconfig"
Madan Srinivasa774e082016-05-19 19:10:44 -0500175
Tom Rini983e3702016-11-07 21:34:54 -0500176source "arch/arm/mach-omap2/omap5/Kconfig"
Madan Srinivasa774e082016-05-19 19:10:44 -0500177
Tom Rini983e3702016-11-07 21:34:54 -0500178source "arch/arm/mach-omap2/am33xx/Kconfig"
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900179
180source "board/BuR/brxre1/Kconfig"
181source "board/BuR/brppt1/Kconfig"
182source "board/siemens/draco/Kconfig"
183source "board/siemens/pxm2/Kconfig"
184source "board/siemens/rut/Kconfig"
185source "board/ti/ti814x/Kconfig"
186source "board/ti/ti816x/Kconfig"
187source "board/ti/am43xx/Kconfig"
188source "board/ti/am335x/Kconfig"
189source "board/compulab/cm_t335/Kconfig"
190source "board/compulab/cm_t43/Kconfig"
191
Philipp Tomsichb5299932017-08-03 23:23:55 +0200192config SPL_LDSCRIPT
193 default "arch/arm/mach-omap2/u-boot-spl.lds"
194
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +0900195endif