diff options
author | Peng Fan | 2019-08-27 06:25:23 +0000 |
---|---|---|
committer | Stefano Babic | 2019-10-08 16:36:36 +0200 |
commit | 1c7cba9fa70c7ce5113afdf78f132d49c99e9ed2 (patch) | |
tree | 34967b45c4139cddff6c2340bf89abd772227f96 | |
parent | e246b7ad74c80b79c17eeb8fc7e9079b5b25a97f (diff) |
imx: add i.MX8MM PE property
i.MX8MM does not have LVTTL, it has a PE property
Signed-off-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | arch/arm/include/asm/mach-imx/iomux-v3.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach-imx/iomux-v3.h b/arch/arm/include/asm/mach-imx/iomux-v3.h index b899a4ff6f0..720e8f70433 100644 --- a/arch/arm/include/asm/mach-imx/iomux-v3.h +++ b/arch/arm/include/asm/mach-imx/iomux-v3.h @@ -104,7 +104,11 @@ typedef u64 iomux_v3_cfg_t; #define PAD_CTL_ODE (0x1 << 5) #define PAD_CTL_PUE (0x1 << 6) #define PAD_CTL_HYS (0x1 << 7) +#ifdef CONFIG_IMX8MM +#define PAD_CTL_PE (0x1 << 8) +#else #define PAD_CTL_LVTTL (0x1 << 8) +#endif #elif defined CONFIG_MX7 |