1if ARCH_MX7ULP 2 3config SYS_SOC 4 default "mx7ulp" 5 6config LDO_ENABLED_MODE 7 bool "i.MX7ULP LDO Enabled Mode" 8 help 9 Select this option to enable the PMC1 LDO. 10 11config MX7ULP 12 select HAS_CAAM 13 bool 14 15choice 16 prompt "MX7ULP board select" 17 optional 18 19config TARGET_MX7ULP_COM 20 bool "Support MX7ULP COM board" 21 select MX7ULP 22 select SYS_ARCH_TIMER 23 24config TARGET_MX7ULP_EVK 25 bool "Support mx7ulp EVK board" 26 select MX7ULP 27 select SYS_ARCH_TIMER 28 29endchoice 30 31source "board/ea/mx7ulp_com/Kconfig" 32source "board/freescale/mx7ulp_evk/Kconfig" 33 34endif 35