projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db1c217
)
imx: mx6 add PAD_CTL_SPEED_LOW for i.MX6SX/UL
author
Peng Fan
<Peng.Fan@freescale.com>
Mon, 20 Jul 2015 11:28:30 +0000
(19:28 +0800)
committer
Stefano Babic
<sbabic@denx.de>
Sun, 2 Aug 2015 09:05:08 +0000
(11:05 +0200)
PAD_CTL_SPEED_LOW for i.MX6SX/UL is (0 << 6)
Signed-off-by: Ye.Li <B37916@freescale.com>
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
arch/arm/include/asm/imx-common/iomux-v3.h
patch
|
blob
|
history
diff --git
a/arch/arm/include/asm/imx-common/iomux-v3.h
b/arch/arm/include/asm/imx-common/iomux-v3.h
index
5cde90f
..
42098a3
100644
(file)
--- a/
arch/arm/include/asm/imx-common/iomux-v3.h
+++ b/
arch/arm/include/asm/imx-common/iomux-v3.h
@@
-98,7
+98,11
@@
typedef u64 iomux_v3_cfg_t;
#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)
+#endif
#define PAD_CTL_SPEED_MED (2 << 6)
#define PAD_CTL_SPEED_HIGH (3 << 6)