1if TARGET_AM335X_EVM 2 3config SPL_ENV_SUPPORT 4 default y 5 6config SPL_WATCHDOG_SUPPORT 7 default y 8 9config SPL_YMODEM_SUPPORT 10 default y 11 12config SYS_BOARD 13 default "am335x" 14 15config SYS_VENDOR 16 default "ti" 17 18config SYS_SOC 19 default "am33xx" 20 21config SYS_CONFIG_NAME 22 default "am335x_evm" 23 24config CONS_INDEX 25 int "UART used for console" 26 range 1 6 27 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 34config 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 41source "board/ti/common/Kconfig" 42 43endif 44