aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Horman <horms+renesas@verge.net.au>2016-03-06 20:58:40 -0500
committerKishon Vijay Abraham I <kishon@ti.com>2016-04-29 05:10:07 -0400
commit7777cb8ba08dabcab8dc0e91ac0a26dde675edb6 (patch)
treea60abf0326b102ccf97795e1f2a72fc25a7a0fc7
parent5128de85124c728cdbb6b35bd9dc7410f02c0ca1 (diff)
phy: rcar-gen2: add fallback binding
In the case of Renesas R-Car hardware we know that there are generations of SoCs, e.g. Gen 2 and Gen 3. But beyond that its not clear what the relationship between IP blocks might be. For example, I believe that r8a7790 is older than r8a7791 but that doesn't imply that the latter is a descendant of the former or vice versa. We can, however, by examining the documentation and behaviour of the hardware at run-time observe that the current driver implementation appears to be compatible with the IP blocks on SoCs within a given generation. For the above reasons and convenience when enabling new SoCs a per-generation fallback compatibility string scheme being adopted for drivers for Renesas SoCs. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r--Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt8
-rw-r--r--drivers/phy/phy-rcar-gen2.c1
2 files changed, 8 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt b/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt
index d564ba4f1cf6..91da947ae9b6 100644
--- a/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt
+++ b/Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt
@@ -7,6 +7,12 @@ Required properties:
7- compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC. 7- compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC.
8 "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC. 8 "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC.
9 "renesas,usb-phy-r8a7794" if the device is a part of R8A7794 SoC. 9 "renesas,usb-phy-r8a7794" if the device is a part of R8A7794 SoC.
10 "renesas,rcar-gen2-usb-phy" for a generic R-Car Gen2 compatible device.
11
12 When compatible with the generic version, nodes must list the
13 SoC-specific version corresponding to the platform first
14 followed by the generic version.
15
10- reg: offset and length of the register block. 16- reg: offset and length of the register block.
11- #address-cells: number of address cells for the USB channel subnodes, must 17- #address-cells: number of address cells for the USB channel subnodes, must
12 be <1>. 18 be <1>.
@@ -34,7 +40,7 @@ the USB channel; see the selector meanings below:
34Example (Lager board): 40Example (Lager board):
35 41
36 usb-phy@e6590100 { 42 usb-phy@e6590100 {
37 compatible = "renesas,usb-phy-r8a7790"; 43 compatible = "renesas,usb-phy-r8a7790", "renesas,rcar-gen2-usb-phy";
38 reg = <0 0xe6590100 0 0x100>; 44 reg = <0 0xe6590100 0 0x100>;
39 #address-cells = <1>; 45 #address-cells = <1>;
40 #size-cells = <0>; 46 #size-cells = <0>;
diff --git a/drivers/phy/phy-rcar-gen2.c b/drivers/phy/phy-rcar-gen2.c
index c7a05996d5c1..97d4dd6ea924 100644
--- a/drivers/phy/phy-rcar-gen2.c
+++ b/drivers/phy/phy-rcar-gen2.c
@@ -195,6 +195,7 @@ static const struct of_device_id rcar_gen2_phy_match_table[] = {
195 { .compatible = "renesas,usb-phy-r8a7790" }, 195 { .compatible = "renesas,usb-phy-r8a7790" },
196 { .compatible = "renesas,usb-phy-r8a7791" }, 196 { .compatible = "renesas,usb-phy-r8a7791" },
197 { .compatible = "renesas,usb-phy-r8a7794" }, 197 { .compatible = "renesas,usb-phy-r8a7794" },
198 { .compatible = "renesas,rcar-gen2-usb-phy" },
198 { } 199 { }
199}; 200};
200MODULE_DEVICE_TABLE(of, rcar_gen2_phy_match_table); 201MODULE_DEVICE_TABLE(of, rcar_gen2_phy_match_table);