Skip to content
Snippets Groups Projects
Commit 63ee5687 authored by Peng Fan's avatar Peng Fan Committed by Stefano Babic
Browse files

imx: mx6 add PAD_CTL_SPEED_LOW for i.MX6SX/UL


PAD_CTL_SPEED_LOW for i.MX6SX/UL is (0 << 6)

Signed-off-by: default avatarYe.Li <B37916@freescale.com>
Signed-off-by: default avatarPeng Fan <Peng.Fan@freescale.com>
parent db1c217c
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,11 @@ typedef u64 iomux_v3_cfg_t; ...@@ -98,7 +98,11 @@ typedef u64 iomux_v3_cfg_t;
#define PAD_CTL_ODE (1 << 11) #define PAD_CTL_ODE (1 << 11)
#if defined(CONFIG_MX6SX) || defined(CONFIG_MX6UL)
#define PAD_CTL_SPEED_LOW (0 << 6)
#else
#define PAD_CTL_SPEED_LOW (1 << 6) #define PAD_CTL_SPEED_LOW (1 << 6)
#endif
#define PAD_CTL_SPEED_MED (2 << 6) #define PAD_CTL_SPEED_MED (2 << 6)
#define PAD_CTL_SPEED_HIGH (3 << 6) #define PAD_CTL_SPEED_HIGH (3 << 6)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment