blob: a84e91b3dc56a65280ecf93db8e8a48d31ea6d3c [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001if TARGET_AM335X_EVM
2
Simon Glass256fe862016-09-12 23:18:35 -06003config SPL_ENV_SUPPORT
4 default y
5
Simon Glass02e69a52016-09-12 23:19:02 -06006config SPL_WATCHDOG_SUPPORT
7 default y
8
Simon Glass696a91f2016-09-12 23:19:03 -06009config SPL_YMODEM_SUPPORT
10 default y
11
Masahiro Yamadadd840582014-07-30 14:08:14 +090012config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +090013 default "am335x"
14
15config SYS_VENDOR
Masahiro Yamadadd840582014-07-30 14:08:14 +090016 default "ti"
17
18config SYS_SOC
Masahiro Yamadadd840582014-07-30 14:08:14 +090019 default "am33xx"
20
21config SYS_CONFIG_NAME
Masahiro Yamadadd840582014-07-30 14:08:14 +090022 default "am335x_evm"
23
Tom Rini1286b7f2014-08-01 09:53:24 -040024config CONS_INDEX
25 int "UART used for console"
Masahiro Yamada48ee8d32014-09-01 01:05:32 +090026 range 1 6
Tom Rini1286b7f2014-08-01 09:53:24 -040027 default 1
28 help
29 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
30 in documentation, etc) available to it. Depending on your specific
31 board you may want something other than UART0 as for example the IDK
32 uses UART3 so enter 4 here.
33
Tom Rini40aca032014-10-27 16:15:07 -040034config NOR
35 bool "Support for NOR flash"
36 help
37 The AM335x SoC supports having a NOR flash connected to the GPMC.
38 In practice this is seen as a NOR flash module connected to the
39 "memory cape" for the BeagleBone family.
40
Nishanth Menon770e68c2016-02-24 12:30:55 -060041source "board/ti/common/Kconfig"
42
Masahiro Yamadadd840582014-07-30 14:08:14 +090043endif