Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. if ARCH_LPC32XX
  2. menu "Individual UART enable selections"
  3. config ARCH_LPC32XX_UART3_SELECT
  4. bool "Add support for standard UART3"
  5. help
  6. Adds support for standard UART 3 when the 8250 serial support
  7. is enabled.
  8. config ARCH_LPC32XX_UART4_SELECT
  9. bool "Add support for standard UART4"
  10. help
  11. Adds support for standard UART 4 when the 8250 serial support
  12. is enabled.
  13. config ARCH_LPC32XX_UART5_SELECT
  14. bool "Add support for standard UART5"
  15. default y
  16. help
  17. Adds support for standard UART 5 when the 8250 serial support
  18. is enabled.
  19. config ARCH_LPC32XX_UART6_SELECT
  20. bool "Add support for standard UART6"
  21. help
  22. Adds support for standard UART 6 when the 8250 serial support
  23. is enabled.
  24. endmenu
  25. menu "LPC32XX chip components"
  26. config ARCH_LPC32XX_IRAM_FOR_NET
  27. bool "Use IRAM for network buffers"
  28. default y
  29. help
  30. Say Y here to use the LPC internal fast IRAM (i.e. 256KB SRAM) as
  31. network buffer. If the total combined required buffer sizes is
  32. larger than the size of IRAM, then SDRAM will be used instead.
  33. This can be enabled safely if the IRAM is not intended for other
  34. uses.
  35. config ARCH_LPC32XX_MII_SUPPORT
  36. bool "Check to enable MII support or leave disabled for RMII support"
  37. help
  38. Say Y here to enable MII support, or N for RMII support. Regardless of
  39. which support is selected, the ethernet interface driver needs to be
  40. selected in the device driver networking section.
  41. The PHY3250 reference board uses RMII, so users of this board should
  42. say N.
  43. endmenu
  44. endif