Kconfig 788 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. if TARGET_COLIBRI_IMX6
  2. config SYS_BOARD
  3. default "colibri_imx6"
  4. config SYS_CONFIG_NAME
  5. default "colibri_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. source "board/toradex/common/Kconfig"
  31. endif