blob: 753d652c4fcd36c48a9c5136aab9d28a90613abe [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001if TARGET_AM335X_EVM
2
Simon Glassd6c08cf2016-09-12 23:18:35 -06003config SPL_ENV_SUPPORT
4 default y
5
Simon Glass6662a9f2016-09-12 23:19:02 -06006config SPL_WATCHDOG_SUPPORT
7 default y
8
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09009config SYS_BOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090010 default "am335x"
11
12config SYS_VENDOR
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090013 default "ti"
14
15config SYS_SOC
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090016 default "am33xx"
17
18config SYS_CONFIG_NAME
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090019 default "am335x_evm"
20
Tom Rini986d7552014-08-01 09:53:24 -040021config CONS_INDEX
22 int "UART used for console"
Masahiro Yamada0d261b42014-09-01 01:05:32 +090023 range 1 6
Tom Rini986d7552014-08-01 09:53:24 -040024 default 1
25 help
26 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
27 in documentation, etc) available to it. Depending on your specific
28 board you may want something other than UART0 as for example the IDK
29 uses UART3 so enter 4 here.
30
Tom Rini240cde72014-10-27 16:15:07 -040031config NOR
32 bool "Support for NOR flash"
33 help
34 The AM335x SoC supports having a NOR flash connected to the GPMC.
35 In practice this is seen as a NOR flash module connected to the
36 "memory cape" for the BeagleBone family.
37
Nishanth Menon2afa70d2016-02-24 12:30:55 -060038source "board/ti/common/Kconfig"
39
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090040endif