i2c: sh_mobile: add support for r8a7795 (R-Car H3)
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Wed, 5 Aug 2015 13:18:26 +0000 (15:18 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Tue, 20 Oct 2015 16:10:20 +0000 (18:10 +0200)
Enable the I2C core for this SoC. It is compitable to Gen2 SoCs, so
reuse the settings.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Tested-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
drivers/i2c/busses/i2c-sh_mobile.c

index 2bfc6e7..214f94c 100644 (file)
@@ -10,6 +10,7 @@ Required properties:
                        - "renesas,iic-r8a7792" (R-Car V2H)
                        - "renesas,iic-r8a7793" (R-Car M2-N)
                        - "renesas,iic-r8a7794" (R-Car E2)
+                       - "renesas,iic-r8a7795" (R-Car H3)
                        - "renesas,iic-sh73a0" (SH-Mobile AG5)
 - reg             : address start and address range size of device
 - interrupts      : interrupt of device
index 47659a9..7d2bd3e 100644 (file)
@@ -836,6 +836,7 @@ static const struct of_device_id sh_mobile_i2c_dt_ids[] = {
        { .compatible = "renesas,iic-r8a7792", .data = &fast_clock_dt_config },
        { .compatible = "renesas,iic-r8a7793", .data = &fast_clock_dt_config },
        { .compatible = "renesas,iic-r8a7794", .data = &fast_clock_dt_config },
+       { .compatible = "renesas,iic-r8a7795", .data = &fast_clock_dt_config },
        { .compatible = "renesas,iic-sh73a0", .data = &fast_clock_dt_config },
        {},
 };