]> git.sur5r.net Git - u-boot/blob - board/ti/am335x/Kconfig
Convert CONFIG_SPL_WATCHDOG_SUPPORT to Kconfig
[u-boot] / board / ti / am335x / Kconfig
1 if TARGET_AM335X_EVM
2
3 config SPL_ENV_SUPPORT
4         default y
5
6 config SPL_WATCHDOG_SUPPORT
7         default y
8
9 config SYS_BOARD
10         default "am335x"
11
12 config SYS_VENDOR
13         default "ti"
14
15 config SYS_SOC
16         default "am33xx"
17
18 config SYS_CONFIG_NAME
19         default "am335x_evm"
20
21 config CONS_INDEX
22         int "UART used for console"
23         range 1 6
24         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
31 config 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
38 source "board/ti/common/Kconfig"
39
40 endif