Skip to content
Snippets Groups Projects
Commit 9aee34ec authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

mx23: Fix pad voltage selection bit


On mx23 the pad voltage selection bit needs to be always '0', since '1' is a
reserved value.

For example:

Pin 108, EMI_A06 pin voltage selection:
0= 1.8V (mDDR) or 2.5V (DDR1);
1= reserved.

Fix the pad voltage definitions for the mx23 case.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Acked-by: default avatarMarek Vasut <marex@denx.de>
parent 6cb83829
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,11 @@ typedef u32 iomux_cfg_t;
#define PAD_16MA 3
#define PAD_1V8 0
#if defined(CONFIG_MX28)
#define PAD_3V3 1
#else
#define PAD_3V3 0
#endif
#define PAD_NOPULL 0
#define PAD_PULLUP 1
......
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