diff options
-rw-r--r-- | Documentation/devicetree/bindings/i2c/i2c-s3c2410.txt | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-s3c2410.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/i2c/i2c-s3c2410.txt b/Documentation/devicetree/bindings/i2c/i2c-s3c2410.txt index e9611ace8792..f98d4c5b5cca 100644 --- a/Documentation/devicetree/bindings/i2c/i2c-s3c2410.txt +++ b/Documentation/devicetree/bindings/i2c/i2c-s3c2410.txt | |||
@@ -8,6 +8,8 @@ Required properties: | |||
8 | (b) "samsung, s3c2440-i2c", for i2c compatible with s3c2440 i2c. | 8 | (b) "samsung, s3c2440-i2c", for i2c compatible with s3c2440 i2c. |
9 | (c) "samsung, s3c2440-hdmiphy-i2c", for s3c2440-like i2c used | 9 | (c) "samsung, s3c2440-hdmiphy-i2c", for s3c2440-like i2c used |
10 | inside HDMIPHY block found on several samsung SoCs | 10 | inside HDMIPHY block found on several samsung SoCs |
11 | (d) "samsung, exynos5440-i2c", for s3c2440-like i2c used | ||
12 | on EXYNOS5440 which does not need GPIO configuration. | ||
11 | - reg: physical base address of the controller and length of memory mapped | 13 | - reg: physical base address of the controller and length of memory mapped |
12 | region. | 14 | region. |
13 | - interrupts: interrupt number to the cpu. | 15 | - interrupts: interrupt number to the cpu. |
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 3479ca76d2ae..5e33df7c6c82 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c | |||
@@ -111,6 +111,8 @@ static const struct of_device_id s3c24xx_i2c_match[] = { | |||
111 | { .compatible = "samsung,s3c2440-i2c", .data = (void *)QUIRK_S3C2440 }, | 111 | { .compatible = "samsung,s3c2440-i2c", .data = (void *)QUIRK_S3C2440 }, |
112 | { .compatible = "samsung,s3c2440-hdmiphy-i2c", | 112 | { .compatible = "samsung,s3c2440-hdmiphy-i2c", |
113 | .data = (void *)(QUIRK_S3C2440 | QUIRK_HDMIPHY | QUIRK_NO_GPIO) }, | 113 | .data = (void *)(QUIRK_S3C2440 | QUIRK_HDMIPHY | QUIRK_NO_GPIO) }, |
114 | { .compatible = "samsung,exynos5440-i2c", | ||
115 | .data = (void *)(QUIRK_S3C2440 | QUIRK_NO_GPIO) }, | ||
114 | {}, | 116 | {}, |
115 | }; | 117 | }; |
116 | MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); | 118 | MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); |