Kconfig 586 B

12345678910111213141516171819202122232425262728293031
  1. if ARCH_MESON
  2. config MESON_GXBB
  3. bool "Support Meson GXBaby"
  4. select ARM64
  5. select DM
  6. select DM_SERIAL
  7. help
  8. The Amlogic Meson GXBaby (S905) is an ARM SoC with a
  9. quad-core Cortex-A53 CPU and a Mali-450 GPU.
  10. if MESON_GXBB
  11. config TARGET_ODROID_C2
  12. bool "ODROID-C2"
  13. help
  14. ODROID-C2 is a single board computer based on Meson GXBaby
  15. with 2 GiB of RAM, Gigabit Ethernet, HDMI, 4 USB, micro-SD
  16. slot, eMMC, IR receiver and a 40-pin GPIO header.
  17. endif
  18. config SYS_SOC
  19. default "meson"
  20. config SYS_MALLOC_F_LEN
  21. default 0x1000
  22. source "board/amlogic/odroid-c2/Kconfig"
  23. endif