1 if TARGET_COLIBRI_IMX6 2 3 config SYS_BOARD 4 default "colibri_imx6" 5 6 config SYS_CONFIG_NAME 7 default "colibri_imx6" 8 9 config SYS_CPU 10 default "armv7" 11 12 config SYS_SOC 13 default "mx6" 14 15 config SYS_VENDOR 16 default "toradex" 17 18 config TDX_CFG_BLOCK 19 default y 20 21 config TDX_HAVE_MMC 22 default y 23 24 config TDX_CFG_BLOCK_DEV 25 default "0" 26 27 config TDX_CFG_BLOCK_PART 28 default "1" 29 30 # Toradex config block in eMMC, at the end of 1st "boot sector" 31 config TDX_CFG_BLOCK_OFFSET 32 default "-512" 33 34 config TDX_CMD_IMX_MFGR 35 bool "Enable factory testing commands for Toradex iMX 6 modules" 36 help 37 This adds the commands 38 pf0100_otp_prog - Program the OTP fuses on the PMIC PF0100 39 If executed on already fused modules it doesn't change any fuse setting. 40 default y 41 42 source "board/toradex/common/Kconfig" 43 44 endif 45