1# IMX M4 Core SDK 2 3# Copyright (c) 2018, NXP 4# SPDX-License-Identifier: Apache-2.0 5 6config HAS_IMX_HAL 7 bool 8 select HAS_CMSIS_CORE 9 depends on SOC_FAMILY_IMX 10 11if HAS_IMX_HAL 12 13config HAS_IMX_GPIO 14 bool 15 help 16 Set if the GPIO module is present in the SoC. 17 18config HAS_IMX_I2C 19 bool 20 help 21 Set if the I2C module is present in the SoC. 22 23config HAS_IMX_EPIT 24 bool 25 help 26 Set if the EPIT module is present in the SoC. 27 28config HAS_IMX_IOMUXC 29 bool 30 help 31 Set if the IOMUXC module is present in the SoC. 32 33endif # HAS_IMX_HAL 34