summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-exynos
diff options
context:
space:
mode:
authorPrzemyslaw Marczak <p.marczak@samsung.com>2015-01-27 13:36:34 +0100
committerSimon Glass <sjg@chromium.org>2015-01-29 17:10:00 -0700
commitfda0e27bfd7dd8ea5fefaa00c932903e1fe82a16 (patch)
tree523fc5d5b274d7cdd596a469ff3ec564a5ea0866 /arch/arm/include/asm/arch-exynos
parent232a02cf016c7b51b880ed38bffe65369252339d (diff)
downloadu-boot-imx-fda0e27bfd7dd8ea5fefaa00c932903e1fe82a16.zip
u-boot-imx-fda0e27bfd7dd8ea5fefaa00c932903e1fe82a16.tar.gz
u-boot-imx-fda0e27bfd7dd8ea5fefaa00c932903e1fe82a16.tar.bz2
exynos5: pinmux: check flag for i2c config
Some versions of Exynos5 supports High-Speed I2C, on few interfaces, this change allows support this. The new flag is: PINMUX_FLAG_HS_MODE Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Cc: Simon Glass <sjg@chromium.org> Cc: Akshay Saraswat <akshay.s@samsung.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/include/asm/arch-exynos')
-rw-r--r--arch/arm/include/asm/arch-exynos/pinmux.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-exynos/pinmux.h b/arch/arm/include/asm/arch-exynos/pinmux.h
index 0b91ef6..d0ae757 100644
--- a/arch/arm/include/asm/arch-exynos/pinmux.h
+++ b/arch/arm/include/asm/arch-exynos/pinmux.h
@@ -23,6 +23,9 @@ enum {
/* Flags for SROM controller */
PINMUX_FLAG_BANK = 3 << 0, /* bank number (0-3) */
PINMUX_FLAG_16BIT = 1 << 2, /* 16-bit width */
+
+ /* Flags for I2C */
+ PINMUX_FLAG_HS_MODE = 1 << 1, /* I2C High Speed Mode */
};
/**