Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. if ARCH_MESON
  2. config MESON_GXBB
  3. bool "Support Meson GXBaby"
  4. select ARM64
  5. select CLK
  6. select DM
  7. select DM_SERIAL
  8. help
  9. The Amlogic Meson GXBaby (S905) is an ARM SoC with a
  10. quad-core Cortex-A53 CPU and a Mali-450 GPU.
  11. config MESON_GXL
  12. bool "Support Meson GXL"
  13. select ARM64
  14. select CLK
  15. select DM
  16. select DM_SERIAL
  17. help
  18. The Amlogic Meson GXL (S905X and S905X) is an ARM SoC with a
  19. quad-core Cortex-A53 CPU and a Mali-450 GPU.
  20. if MESON_GXBB
  21. config TARGET_ODROID_C2
  22. bool "ODROID-C2"
  23. help
  24. ODROID-C2 is a single board computer based on Meson GXBaby
  25. with 2 GiB of RAM, Gigabit Ethernet, HDMI, 4 USB, micro-SD
  26. slot, eMMC, IR receiver and a 40-pin GPIO header.
  27. endif
  28. if MESON_GXL
  29. config TARGET_P212
  30. bool "P212"
  31. help
  32. P212 is a reference dessign board based on Meson GXL S905X SoC
  33. with 2 GiB of RAM, Ethernet, HDMI, 2 USB, micro-SD slot,
  34. eMMC, IR receiver, CVBS+Audio jack and a SDIO WiFi module.
  35. config TARGET_LIBRETECH_CC
  36. bool "LIBRETECH-CC"
  37. help
  38. LibreTech CC is a single board computer based on Meson GXL
  39. with 2 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot,
  40. eMMC, IR receiver and a 40-pin GPIO header.
  41. config TARGET_KHADAS_VIM
  42. bool "KHADAS-VIM"
  43. help
  44. Khadas VIM is a single board computer based on Meson GXL
  45. with 2 GiB of RAM, Ethernet, HDMI, 4 USB, micro-SD slot,
  46. eMMC, IR receiver and a 40-pin GPIO header.
  47. endif
  48. config SYS_SOC
  49. default "meson"
  50. config SYS_MALLOC_F_LEN
  51. default 0x1000
  52. source "board/amlogic/odroid-c2/Kconfig"
  53. source "board/amlogic/p212/Kconfig"
  54. source "board/amlogic/libretech-cc/Kconfig"
  55. source "board/amlogic/khadas-vim/Kconfig"
  56. endif