Kconfig 873 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. if TARGET_AM335X_EVM
  2. config SPL_ENV_SUPPORT
  3. default y
  4. config SPL_WATCHDOG_SUPPORT
  5. default y
  6. config SPL_YMODEM_SUPPORT
  7. default y
  8. config SYS_BOARD
  9. default "am335x"
  10. config SYS_VENDOR
  11. default "ti"
  12. config SYS_SOC
  13. default "am33xx"
  14. config SYS_CONFIG_NAME
  15. default "am335x_evm"
  16. config CONS_INDEX
  17. int "UART used for console"
  18. range 1 6
  19. default 1
  20. help
  21. The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
  22. in documentation, etc) available to it. Depending on your specific
  23. board you may want something other than UART0 as for example the IDK
  24. uses UART3 so enter 4 here.
  25. config NOR
  26. bool "Support for NOR flash"
  27. help
  28. The AM335x SoC supports having a NOR flash connected to the GPMC.
  29. In practice this is seen as a NOR flash module connected to the
  30. "memory cape" for the BeagleBone family.
  31. source "board/ti/common/Kconfig"
  32. endif