mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
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: Ye.Li <B37916@freescale.com> Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
This commit is contained in:
parent
db1c217c85
commit
63ee5687fc
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue