mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: <Cristian.Birsan@microchip.com>
To: <alexandre.belloni@bootlin.com>, <mirq-linux@rere.qmqm.pl>
Cc: <balbi@kernel.org>, <gregkh@linuxfoundation.org>,
	<Ludovic.Desroches@microchip.com>, <Nicolas.Ferre@microchip.com>,
	<songjun.wu@atmel.com>, <linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <linux-usb@vger.kernel.org>
Subject: Re: [PATCH RESEND 3/3] usb: gadget: udc: atmel: implement .pullup callback
Date: Thu, 16 Jul 2020 18:01:02 +0000	[thread overview]
Message-ID: <bec0cf9f-d937-c4fb-5073-5fc152be2417@microchip.com> (raw)
In-Reply-To: <20200715215801.GG23553@piout.net>



On 7/16/20 12:58 AM, Alexandre Belloni wrote:
> 
> On 08/07/2020 20:04:10+0200, Michał Mirosław wrote:
>> Implement udc->pullup callback, so that udc_connect/disconnect work.
>> This is needed for composite gadget, as it assumes udc_disconnect()
>> actually works and calls its ->disconnect callback.
>>
>> Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

Acked-by: Cristian Birsan <cristian.birsan@microchip.com>

I checked the patch on sama5d2_xplained board and monitored the traffic with a sniffer. Everything looks good.

> 
>> ---
>>  drivers/usb/gadget/udc/atmel_usba_udc.c | 20 ++++++++++++++++++++
>>  1 file changed, 20 insertions(+)
>>
>> diff --git a/drivers/usb/gadget/udc/atmel_usba_udc.c b/drivers/usb/gadget/udc/atmel_usba_udc.c
>> index 9342a3d24963..c5128c229c52 100644
>> --- a/drivers/usb/gadget/udc/atmel_usba_udc.c
>> +++ b/drivers/usb/gadget/udc/atmel_usba_udc.c
>> @@ -1028,6 +1028,7 @@ usba_udc_set_selfpowered(struct usb_gadget *gadget, int is_selfpowered)
>>       return 0;
>>  }
>>
>> +static int atmel_usba_pullup(struct usb_gadget *gadget, int is_on);
>>  static int atmel_usba_start(struct usb_gadget *gadget,
>>               struct usb_gadget_driver *driver);
>>  static int atmel_usba_stop(struct usb_gadget *gadget);
>> @@ -1101,6 +1102,7 @@ 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                 = atmel_usba_pullup,
>>       .udc_start              = atmel_usba_start,
>>       .udc_stop               = atmel_usba_stop,
>>       .match_ep               = atmel_usba_match_ep,
>> @@ -1957,6 +1959,24 @@ static irqreturn_t usba_vbus_irq_thread(int irq, void *devid)
>>       return IRQ_HANDLED;
>>  }
>>
>> +static int atmel_usba_pullup(struct usb_gadget *gadget, int is_on)
>> +{
>> +     struct usba_udc *udc = container_of(gadget, struct usba_udc, gadget);
>> +     unsigned long flags;
>> +     u32 ctrl;
>> +
>> +     spin_lock_irqsave(&udc->lock, flags);
>> +     ctrl = usba_readl(udc, CTRL);
>> +     if (is_on)
>> +             ctrl &= ~USBA_DETACH;
>> +     else
>> +             ctrl |= USBA_DETACH;
>> +     usba_writel(udc, CTRL, ctrl);
>> +     spin_unlock_irqrestore(&udc->lock, flags);
>> +
>> +     return 0;
>> +}
>> +
>>  static int atmel_usba_start(struct usb_gadget *gadget,
>>               struct usb_gadget_driver *driver)
>>  {
>> --
>> 2.20.1
>>
> 
> --
> Alexandre Belloni, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
> 

      reply	other threads:[~2020-07-16 18:01 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-08 18:04 [PATCH RESEND 0/3] usb: gadget: udc: atmel: assorted fixes Michał Mirosław
2020-07-08 18:04 ` [PATCH RESEND 1/3] usb: gadget: udc: atmel: remove outdated comment in usba_ep_disable() Michał Mirosław
2020-07-15 21:44   ` Alexandre Belloni
2020-07-16 17:55     ` Cristian.Birsan
2020-07-08 18:04 ` [PATCH RESEND 2/3] usb: gadget: udc: atmel: fix uninitialized read in debug printk Michał Mirosław
2020-07-15 21:45   ` Alexandre Belloni
2020-07-16 17:56     ` Cristian.Birsan
2020-07-08 18:04 ` [PATCH RESEND 3/3] usb: gadget: udc: atmel: implement .pullup callback Michał Mirosław
2020-07-15 21:58   ` Alexandre Belloni
2020-07-16 18:01     ` Cristian.Birsan [this message]

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=bec0cf9f-d937-c4fb-5073-5fc152be2417@microchip.com \
    --to=cristian.birsan@microchip.com \
    --cc=Ludovic.Desroches@microchip.com \
    --cc=Nicolas.Ferre@microchip.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=balbi@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mirq-linux@rere.qmqm.pl \
    --cc=songjun.wu@atmel.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®