Skip to content

Commit 657bfcb

Browse files
pritamsutargregkh
authored andcommitted
usb: dwc3-exynos: add support for ExynosAutov920
This SoC has a DWC3 compatible controllers. It needs "ref" and "susp_clk" for it's operation. Add required changes in exynos dwc3 glue layer to support this SoC. Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com> Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com> Signed-off-by: Pritam Manohar Sutar <pritam.sutar@samsung.com> Link: https://lore.kernel.org/r/20250516071333.3223226-3-pritam.sutar@samsung.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 6f399a1 commit 657bfcb

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

drivers/usb/dwc3/dwc3-exynos.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,12 @@ static const struct dwc3_exynos_driverdata gs101_drvdata = {
187187
.suspend_clk_idx = 1,
188188
};
189189

190+
static const struct dwc3_exynos_driverdata exynosautov920_drvdata = {
191+
.clk_names = { "ref", "susp_clk"},
192+
.num_clks = 2,
193+
.suspend_clk_idx = 1,
194+
};
195+
190196
static const struct of_device_id exynos_dwc3_match[] = {
191197
{
192198
.compatible = "samsung,exynos2200-dwusb3",
@@ -206,6 +212,9 @@ static const struct of_device_id exynos_dwc3_match[] = {
206212
}, {
207213
.compatible = "samsung,exynos850-dwusb3",
208214
.data = &exynos850_drvdata,
215+
}, {
216+
.compatible = "samsung,exynosautov920-dwusb3",
217+
.data = &exynosautov920_drvdata,
209218
}, {
210219
.compatible = "google,gs101-dwusb3",
211220
.data = &gs101_drvdata,

0 commit comments

Comments
 (0)