summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mxs
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2012-07-20 15:34:49 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-07-23 22:10:54 +0200
commit0742542f8755b41db65be8767dd8b674854ea33f (patch)
tree09f30094edc159a885b095da034ab9c7caee0462 /arch/arm/mach-mxs
parent4d1fe257a384a0b6f3a90e819b923f8e94ffdac9 (diff)
downloadbarebox-0742542f8755b41db65be8767dd8b674854ea33f.tar.gz
barebox-0742542f8755b41db65be8767dd8b674854ea33f.tar.xz
ARM/MXS: pull-up and bitkeeper must be handled differently
Since commit 2f6b1f7690640f571f8e72fc2f2564acb2e13778 the pull-up and bitkeeper handling for i.MX23/28 is correct. But now it is important to distinguish these pin features as their programmed bit values are different. With this patch the bitkeeper and pull-up enable/disable bits are now handled separately. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mxs')
-rw-r--r--arch/arm/mach-mxs/include/mach/iomux-imx23.h5
-rw-r--r--arch/arm/mach-mxs/include/mach/iomux-imx28.h5
2 files changed, 6 insertions, 4 deletions
diff --git a/arch/arm/mach-mxs/include/mach/iomux-imx23.h b/arch/arm/mach-mxs/include/mach/iomux-imx23.h
index 7b2883c7ba..82362d7d16 100644
--- a/arch/arm/mach-mxs/include/mach/iomux-imx23.h
+++ b/arch/arm/mach-mxs/include/mach/iomux-imx23.h
@@ -22,13 +22,14 @@
* ^^^^____ Bit offset
* ^^________ Function
* ^__________ Drive strength feature present
- * ^___________ Pull up / bit keeper present
+ * ^___________ Pull up present
* ^^____________ Drive strength setting
* ^______________ Pull up / bit keeper setting
* ^_______________ Voltage select present
* ^________________ Voltage selection
* ^____________________ direction if enabled as GPIO (1 = output)
* ^_____________________ initial output value if enabled as GPIO and configured as output
+ * ^______________________ Bit keeper present
*/
#ifndef __ASM_MACH_IOMUX_H
#define __ASM_MACH_IOMUX_H
@@ -63,7 +64,7 @@
/* control pad's pull up / bit keeper feature */
#define PE (1 << 10)
-#define BK (1 << 11) /* FIXME useful to distinguish? */
+#define BK (1 << 21)
#define PE_PRESENT(x) (!!((x) & PE))
#define BK_PRESENT(x) (!!((x) & BK))
#define PULLUP(x) ((x) << 13)
diff --git a/arch/arm/mach-mxs/include/mach/iomux-imx28.h b/arch/arm/mach-mxs/include/mach/iomux-imx28.h
index ea1c3d8038..82918cf851 100644
--- a/arch/arm/mach-mxs/include/mach/iomux-imx28.h
+++ b/arch/arm/mach-mxs/include/mach/iomux-imx28.h
@@ -16,7 +16,7 @@
* ^^^______ Register Number
* ^^_________ Function
* ^___________ Drive strength feature present
- * ^____________ Pull up / bit keeper present
+ * ^____________ Pull up present
* ^^_____________ Drive strength setting
* ^_______________ Pull up / bit keeper setting
* ^________________ Voltage select present
@@ -24,6 +24,7 @@
* ^_____________________ direction if enabled as GPIO (1 = output)
* ^______________________ initial output value if enabled as GPIO
* and configured as output
+ * ^_______________________ Bit keeper present
*/
#ifndef __MACH_IOMUX_IMX28_H
#define __MACH_IOMUX_IMX28_H
@@ -57,7 +58,7 @@
/* control pad's pull up / bit keeper feature */
#define PE (1 << 11)
-#define BK (1 << 11) /* FIXME useful to distinguish? */
+#define BK (1 << 22)
#define PE_PRESENT(x) (!!((x) & PE))
#define BK_PRESENT(x) (!!((x) & BK))
#define PULLUP(x) ((x) << 14)