Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. if SOC_MT7628
  2. choice
  3. prompt "Board select"
  4. config BOARD_GARDENA_SMART_GATEWAY_MT7688
  5. bool "GARDENA smart Gateway"
  6. select BOARD_LATE_INIT
  7. help
  8. GARDENA smart Gateway boards have a MT7688 SoC with 128 MiB of RAM
  9. and 8 MiB of flash (SPI NOR) and additional SPI NAND storage.
  10. config BOARD_LINKIT_SMART_7688
  11. bool "LinkIt Smart 7688"
  12. help
  13. Seeed LinkIt Smart 7688 boards have a MT7688 SoC with 128 MiB of RAM
  14. and 32 MiB of flash (SPI).
  15. Between its different peripherals there's an integrated switch with 4
  16. ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs, and
  17. a MT7688 (PCIe).
  18. config BOARD_MT7628_RFB
  19. bool "MediaTek MT7628 RFB"
  20. help
  21. The reference design of MT7628. The board has 128 MiB DDR2, 8 MiB
  22. SPI-NOR flash, 1 built-in switch with 5 ports, 1 UART, 1 USB host,
  23. 1 SDXC, 1 PCIe socket and JTAG pins.
  24. config BOARD_VOCORE2
  25. bool "VoCore2"
  26. select SPL_SERIAL_SUPPORT
  27. select SPL_UART2_SPIS_PINMUX
  28. help
  29. VoCore VoCore2 board has a MT7628 SoC with 128 MiB of RAM
  30. and 16 MiB of flash (SPI).
  31. endchoice
  32. config SPL_UART2_SPIS_PINMUX
  33. bool "Use alternative pinmux for UART2 in SPL stage"
  34. depends on SPL_SERIAL_SUPPORT
  35. help
  36. Select this if the UART2 of your board is connected to GPIO 16/17
  37. (shared with SPIS) rather than the usual GPIO 20/21.
  38. source "board/gardena/smart-gateway-mt7688/Kconfig"
  39. source "board/mediatek/mt7628/Kconfig"
  40. source "board/seeed/linkit-smart-7688/Kconfig"
  41. source "board/vocore/vocore2/Kconfig"
  42. endif