summaryrefslogtreecommitdiff
path: root/arch/arm/include
diff options
context:
space:
mode:
authorPrzemyslaw Marczak <[email protected]>2015-01-27 13:36:34 +0100
committerSimon Glass <[email protected]>2015-01-29 17:10:00 -0700
commitfda0e27bfd7dd8ea5fefaa00c932903e1fe82a16 (patch)
tree523fc5d5b274d7cdd596a469ff3ec564a5ea0866 /arch/arm/include
parent232a02cf016c7b51b880ed38bffe65369252339d (diff)
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 <[email protected]> Cc: Simon Glass <[email protected]> Cc: Akshay Saraswat <[email protected]> Cc: Minkyu Kang <[email protected]> Acked-by: Simon Glass <[email protected]>
Diffstat (limited to 'arch/arm/include')
-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 0b91ef658ca..d0ae7575dae 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 */
};
/**