Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. if TARGET_APALIS_IMX6
  2. config SYS_BOARD
  3. default "apalis_imx6"
  4. config SYS_CONFIG_NAME
  5. default "apalis_imx6"
  6. config SYS_CPU
  7. default "armv7"
  8. config SYS_SOC
  9. default "mx6"
  10. config SYS_VENDOR
  11. default "toradex"
  12. config TDX_CFG_BLOCK
  13. default y
  14. config TDX_HAVE_MMC
  15. default y
  16. config TDX_CFG_BLOCK_DEV
  17. default "0"
  18. config TDX_CFG_BLOCK_PART
  19. default "1"
  20. # Toradex config block in eMMC, at the end of 1st "boot sector"
  21. config TDX_CFG_BLOCK_OFFSET
  22. default "-512"
  23. config TDX_CMD_IMX_MFGR
  24. bool "Enable factory testing commands for Toradex iMX 6 modules"
  25. help
  26. This adds the commands
  27. pf0100_otp_prog - Program the OTP fuses on the PMIC PF0100
  28. If executed on already fused modules it doesn't change any fuse setting.
  29. default y
  30. config TDX_APALIS_IMX6_V1_0
  31. bool "Apalis iMX6 V1.0 HW"
  32. help
  33. Apalis iMX6 V1.0 HW has a different pinout for the UART.
  34. The UARTs must be used in DCE mode, RTS/CTS are swapped and
  35. thus unusable on standard carrier boards.
  36. This option configures DCE mode unconditionally. Whithout this
  37. option the config block stating V1.0 HW selects DCE mode,
  38. otherwise the UARTs are configuered in DTE mode.
  39. default n
  40. source "board/toradex/common/Kconfig"
  41. endif