Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: rcar-gen2: Add support for R-Car E2

This patch adds a compatible string to support for R-Car E2.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

authored by

Yoshihiro Shimoda and committed by
Kishon Vijay Abraham I
9d699bf4 33f434d2

+2
+1
Documentation/devicetree/bindings/phy/rcar-gen2-phy.txt
··· 6 6 Required properties: 7 7 - compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC. 8 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 10 - reg: offset and length of the register block. 10 11 - #address-cells: number of address cells for the USB channel subnodes, must 11 12 be <1>.
+1
drivers/phy/phy-rcar-gen2.c
··· 195 195 static const struct of_device_id rcar_gen2_phy_match_table[] = { 196 196 { .compatible = "renesas,usb-phy-r8a7790" }, 197 197 { .compatible = "renesas,usb-phy-r8a7791" }, 198 + { .compatible = "renesas,usb-phy-r8a7794" }, 198 199 { } 199 200 }; 200 201 MODULE_DEVICE_TABLE(of, rcar_gen2_phy_match_table);