public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH 2/3] drivers: musb-new: add allwinner f1c100s
@ 2023-06-09 14:11 路辉
  2023-06-10  0:50 ` Andre Przywara
  0 siblings, 1 reply; 2+ messages in thread
From: 路辉 @ 2023-06-09 14:11 UTC (permalink / raw)
  To: u-boot

From fe7d48e84bb3c72d219f37eed51ea766f83b4bec Mon Sep 17 00:00:00 2001
From: Lu Hui <luhux76@gmail.com>
Date: Fri, 9 Jun 2023 22:05:23 +0800
Subject: [PATCH 2/3] drivers: musb-new: add allwinner f1c100s configuration

---
 drivers/usb/musb-new/sunxi.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/usb/musb-new/sunxi.c b/drivers/usb/musb-new/sunxi.c
index dc4cfc2194..1c90739cea 100644
--- a/drivers/usb/musb-new/sunxi.c
+++ b/drivers/usb/musb-new/sunxi.c
@@ -4,6 +4,7 @@
  *
  * Copyright © 2015 Hans de Goede <hdegoede@redhat.com>
  * Copyright © 2013 Jussi Kivilinna <jussi.kivilinna@iki.fi>
+ * Copyright © 2023 Lu Hui <luhux76@gmail.com>
  *
  * Based on the sw_usb "Allwinner OTG Dual Role Controller" code.
  *  Copyright 2007-2012 (C) Allwinner Technology Co., Ltd.
@@ -519,6 +520,10 @@ static const struct sunxi_musb_config sun8i_h3_cfg = {
     .config = &musb_config_h3,
 };

+static const struct sunxi_musb_config suniv_f1c100s_cfg = {
+    .config = &musb_config,
+};
+
 static const struct udevice_id sunxi_musb_ids[] = {
     { .compatible = "allwinner,sun4i-a10-musb",
             .data = (ulong)&sun4i_a10_cfg },
@@ -528,6 +533,8 @@ static const struct udevice_id sunxi_musb_ids[] = {
             .data = (ulong)&sun6i_a31_cfg },
     { .compatible = "allwinner,sun8i-h3-musb",
             .data = (ulong)&sun8i_h3_cfg },
+    { .compatible = "allwinner,suniv-f1c100s-musb",
+            .data = (ulong)&suniv_f1c100s_cfg },
     { }
 };

-- 
2.40.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-10  0:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-09 14:11 [PATCH 2/3] drivers: musb-new: add allwinner f1c100s 路辉
2023-06-10  0:50 ` Andre Przywara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox