Commit 54e4f66b authored by Yoshihiro Shimoda's avatar Yoshihiro Shimoda Committed by Felipe Balbi

usb: renesas_usbhs: add support for R-Car E3

This patch adds support for R-Car E3. This SoC needs to release
the PLL reset by the UGCTRL register like R-Car D3. So, this patch
adds a usbhs_of_match entry for this SoC with
"USBHS_TYPE_RCAR_GEN3_WITH_PLL".
Reviewed-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Signed-off-by: default avatarYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent a10f8861
...@@ -559,6 +559,10 @@ static const struct of_device_id usbhs_of_match[] = { ...@@ -559,6 +559,10 @@ static const struct of_device_id usbhs_of_match[] = {
.compatible = "renesas,usbhs-r8a7796", .compatible = "renesas,usbhs-r8a7796",
.data = (void *)USBHS_TYPE_RCAR_GEN3, .data = (void *)USBHS_TYPE_RCAR_GEN3,
}, },
{
.compatible = "renesas,usbhs-r8a77990",
.data = (void *)USBHS_TYPE_RCAR_GEN3_WITH_PLL,
},
{ {
.compatible = "renesas,usbhs-r8a77995", .compatible = "renesas,usbhs-r8a77995",
.data = (void *)USBHS_TYPE_RCAR_GEN3_WITH_PLL, .data = (void *)USBHS_TYPE_RCAR_GEN3_WITH_PLL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment