Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. if TARGET_O4_IMX6ULL_NANO
  2. config SYS_BOARD
  3. default "o4-imx6ull-nano"
  4. config SYS_VENDOR
  5. default "out4"
  6. config SYS_CONFIG_NAME
  7. default "o4-imx6ull-nano"
  8. choice
  9. prompt "Memory model"
  10. default K4B4G1646D_BCMA
  11. help
  12. Memory type setup.
  13. Please choose correct memory model here.
  14. config K4B4G1646D_BCMA
  15. bool "K4B4G1646D-BCMA 256Mx16 (512 MiB/chip)"
  16. help
  17. Samsung DDR3 SDRAM
  18. K4B4G1646D-BCMA
  19. config MT41K256M16HA_125E
  20. bool "MT41K256M16HA-125:E 256Mx16 (512 MiB/chip)"
  21. help
  22. Micron DDR3L SDRAM
  23. MT41K256M16HA-125:E
  24. endchoice
  25. choice
  26. prompt "Mainboard model"
  27. default O4_IMX_NANO
  28. help
  29. Mainboard setup.
  30. Please choose correct main board model here.
  31. config O4_IMX_NANO
  32. bool "O4-iMX-NANO"
  33. help
  34. A baseboard for EV-iMX280-NANO module:
  35. https://out4.ru/products/board/18-o4-imx-nano.html
  36. config EV_IMX280_NANO_X_MB
  37. bool "EV-IMX280-NANO-X-MB"
  38. help
  39. A simple baseboard for EV-iMX280-NANO module:
  40. http://evodbg.net/products/mx28-eval-kits/14-ev-imx280-nano-x-mb.html
  41. endchoice
  42. config IMX_CONFIG
  43. default "board/out4/o4-imx6ull-nano/K4B4G1646D-BCMA.cfg" if K4B4G1646D_BCMA
  44. default "board/out4/o4-imx6ull-nano/MT41K256M16HA-125E.cfg" if MT41K256M16HA_125E
  45. config DEFAULT_DEVICE_TREE
  46. default "o4-imx-nano" if O4_IMX_NANO
  47. default "ev-imx280-nano-x-mb" if EV_IMX280_NANO_X_MB
  48. endif