Kconfig 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. if ARCH_MEDIATEK
  2. config SYS_SOC
  3. default "mediatek"
  4. config SYS_VENDOR
  5. default "mediatek"
  6. config MT8512
  7. bool "MediaTek MT8512 SoC"
  8. default n
  9. choice
  10. prompt "MediaTek board select"
  11. config TARGET_MT7622
  12. bool "MediaTek MT7622 SoC"
  13. select ARM64
  14. help
  15. The MediaTek MT7622 is a ARM64-based SoC with a dual-core Cortex-A53.
  16. including UART, SPI, USB3.0, SD and MMC cards, NAND, SNFI, PWM, PCIe,
  17. Gigabit Ethernet, I2C, built-in Wi-Fi, and PCIe.
  18. config TARGET_MT7623
  19. bool "MediaTek MT7623 SoC"
  20. select CPU_V7A
  21. help
  22. The MediaTek MT7623 is a ARM-based SoC with a quad-core Cortex-A7
  23. including NEON and GPU, Mali-450 graphics, several DDR3 options,
  24. crypto engine, built-in Wi-Fi / Bluetooth combo chip, JPEG decoder,
  25. video interfaces supporting HDMI and MIPI, and video codec support.
  26. Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe,
  27. I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM.
  28. config TARGET_MT7629
  29. bool "MediaTek MT7629 SoC"
  30. select CPU_V7A
  31. select SPL
  32. select BINMAN
  33. help
  34. The MediaTek MT7629 is a ARM-based SoC with a dual-core Cortex-A7
  35. including DDR3, crypto engine, 3x3 11n/ac Wi-Fi, Gigabit Ethernet,
  36. switch, USB3.0, PCIe, UART, SPI, I2C and PWM.
  37. config TARGET_MT8512
  38. bool "MediaTek MT8512 M1 Board"
  39. select ARM64
  40. select MT8512
  41. help
  42. The MediaTek MT8512 is a ARM64-based SoC with a dual-core Cortex-A53.
  43. including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
  44. IR RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth digital
  45. and several LPDDR3 and LPDDR4 options.
  46. config TARGET_MT8516
  47. bool "MediaTek MT8516 SoC"
  48. select ARM64
  49. help
  50. The MediaTek MT8516 is a ARM64-based SoC with a quad-core Cortex-A35.
  51. including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
  52. Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo
  53. chip and several DDR3 and DDR4 options.
  54. config TARGET_MT8518
  55. bool "MediaTek MT8518 SoC"
  56. select ARM64
  57. help
  58. The MediaTek MT8518 is a ARM64-based SoC with a quad-core Cortex-A53.
  59. including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
  60. Ethernet, IR TX/RX, I2C, I2S, S/PDIF, and built-in Wi-Fi / Bluetooth combo
  61. chip and several DDR3 and DDR4 options.
  62. endchoice
  63. source "board/mediatek/mt7622/Kconfig"
  64. source "board/mediatek/mt7623/Kconfig"
  65. source "board/mediatek/mt7629/Kconfig"
  66. source "board/mediatek/mt8512/Kconfig"
  67. source "board/mediatek/mt8518/Kconfig"
  68. source "board/mediatek/pumpkin/Kconfig"
  69. endif