From: Zixun LI <admin@hifiphile.com>
To: Lukasz Majewski <lukma@denx.de>,
Mattijs Korpershoek <mkorpershoek@baylibre.com>,
Marek Vasut <marex@denx.de>, Tom Rini <trini@konsulko.com>
Cc: Zixun LI <admin@hifiphile.com>, u-boot@lists.denx.de
Subject: [PATCH v4 6/7] usb: gadget: atmel: Add attach/detach support
Date: Thu, 25 Jul 2024 17:32:00 +0200 [thread overview]
Message-ID: <20240725153204.358925-7-admin@hifiphile.com> (raw)
In-Reply-To: <20240725153204.358925-1-admin@hifiphile.com>
Add controller attach/detach support by using
usb_gadget_ops.pullup() function.
Signed-off-by: Zixun LI <admin@hifiphile.com>
---
drivers/usb/gadget/atmel_usba_udc.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c
index ea9ad7585e..a7b96449f8 100644
--- a/drivers/usb/gadget/atmel_usba_udc.c
+++ b/drivers/usb/gadget/atmel_usba_udc.c
@@ -506,10 +506,28 @@ usba_udc_set_selfpowered(struct usb_gadget *gadget, int is_selfpowered)
return 0;
}
+static int usba_udc_pullup(struct usb_gadget *gadget, int is_on)
+{
+ struct usba_udc *udc = to_usba_udc(gadget);
+ u32 ctrl;
+
+ ctrl = usba_readl(udc, CTRL);
+
+ if (is_on)
+ ctrl &= ~USBA_DETACH;
+ else
+ ctrl |= USBA_DETACH;
+
+ usba_writel(udc, CTRL, ctrl);
+
+ return 0;
+}
+
static const struct usb_gadget_ops usba_udc_ops = {
.get_frame = usba_udc_get_frame,
.wakeup = usba_udc_wakeup,
.set_selfpowered = usba_udc_set_selfpowered,
+ .pullup = usba_udc_pullup,
};
static struct usb_endpoint_descriptor usba_ep0_desc = {
--
2.45.2
next prev parent reply other threads:[~2024-07-25 17:15 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-25 15:31 [PATCH v4 0/7] usb: gadget: atmel: Code refactor and DM_USB_GADGET support Zixun LI
2024-07-25 15:31 ` [PATCH v4 1/7] usb: gadget: atmel: Sort includes Zixun LI
2024-07-25 15:31 ` [PATCH v4 2/7] usb: gadget: atmel: Replace printf() and pr_err() by log_err() Zixun LI
2024-07-25 15:31 ` [PATCH v4 3/7] usb: gadget: atmel: Fix typo in usb gadget driver register and unregister Zixun LI
2024-07-25 15:31 ` [PATCH v4 4/7] usb: gadget: atmel: Move usba_udc_pdata() with other static functions Zixun LI
2024-07-25 15:31 ` [PATCH v4 5/7] usb: gadget: atmel: Rename atmel_usba_start()/_stop() to usba_udc_enable()/_disable() Zixun LI
2024-07-25 15:32 ` Zixun LI [this message]
2024-07-25 15:32 ` [PATCH v4 7/7] usb: gadget: atmel: Add DM_USB_GADGET support Zixun LI
2024-07-30 9:13 ` Mattijs Korpershoek
2024-07-25 18:24 ` [PATCH v4 0/7] usb: gadget: atmel: Code refactor and " Marek Vasut
2024-07-25 18:48 ` Zixun LI
2024-07-25 18:57 ` Marek Vasut
2024-07-26 9:34 ` Mattijs Korpershoek
2024-08-06 12:59 ` Mattijs Korpershoek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240725153204.358925-7-admin@hifiphile.com \
--to=admin@hifiphile.com \
--cc=lukma@denx.de \
--cc=marex@denx.de \
--cc=mkorpershoek@baylibre.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.