[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <3dbf2c4f28e29b7adcef94e2322d0dc773cc9d91.camel@mediatek.com>
Date: Thu, 12 Aug 2021 11:54:10 +0000
From: Chunfeng Yun (云春峰)
<Chunfeng.Yun@...iatek.com>
To: "balbi@...nel.org" <balbi@...nel.org>
CC: "rikard.falkeborn@...il.com" <rikard.falkeborn@...il.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"jonathanh@...dia.com" <jonathanh@...dia.com>,
"linux-usb@...r.kernel.org" <linux-usb@...r.kernel.org>,
"bcm-kernel-feedback-list@...adcom.com"
<bcm-kernel-feedback-list@...adcom.com>,
"linux-mediatek@...ts.infradead.org"
<linux-mediatek@...ts.infradead.org>,
Eddie Hung (洪正鑫)
<Eddie.Hung@...iatek.com>,
"thierry.reding@...il.com" <thierry.reding@...il.com>,
"alcooperx@...il.com" <alcooperx@...il.com>,
"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"matthias.bgg@...il.com" <matthias.bgg@...il.com>,
"christophe.jaillet@...adoo.fr" <christophe.jaillet@...adoo.fr>,
"linux-tegra@...r.kernel.org" <linux-tegra@...r.kernel.org>,
"yangyingliang@...wei.com" <yangyingliang@...wei.com>,
"pawell@...ence.com" <pawell@...ence.com>
Subject: Re: [PATCH 4/6] usb: gadget: tegra-xudc: fix the wrong mult value for
HS isoc or intr
On Thu, 2021-08-12 at 09:51 +0300, Felipe Balbi wrote:
> Chunfeng Yun <chunfeng.yun@...iatek.com> writes:
>
> > usb_endpoint_maxp() only returns the bit[10:0] of wMaxPacketSize
> > of endpoint descriptor, not includes bit[12:11] anymore, so use
> > usb_endpoint_maxp_mult() instead.
> > Meanwhile no need AND 0x7ff when get maxp, remove it.
> >
> > Signed-off-by: Chunfeng Yun <chunfeng.yun@...iatek.com>
> > ---
> > drivers/usb/gadget/udc/tegra-xudc.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/usb/gadget/udc/tegra-xudc.c
> > b/drivers/usb/gadget/udc/tegra-xudc.c
> > index a54d1cef17db..40a7417e7ae4 100644
> > --- a/drivers/usb/gadget/udc/tegra-xudc.c
> > +++ b/drivers/usb/gadget/udc/tegra-xudc.c
> > @@ -1610,7 +1610,7 @@ static void
> > tegra_xudc_ep_context_setup(struct tegra_xudc_ep *ep)
> > u16 maxpacket, maxburst = 0, esit = 0;
> > u32 val;
> >
> > - maxpacket = usb_endpoint_maxp(desc) & 0x7ff;
> > + maxpacket = usb_endpoint_maxp(desc);
> > if (xudc->gadget.speed == USB_SPEED_SUPER) {
> > if (!usb_endpoint_xfer_control(desc))
> > maxburst = comp_desc->bMaxBurst;
> > @@ -1621,7 +1621,7 @@ static void
> > tegra_xudc_ep_context_setup(struct tegra_xudc_ep *ep)
> > (usb_endpoint_xfer_int(desc) ||
> > usb_endpoint_xfer_isoc(desc))) {
> > if (xudc->gadget.speed == USB_SPEED_HIGH) {
> > - maxburst = (usb_endpoint_maxp(desc) >> 11) &
> > 0x3;
> > + maxburst = usb_endpoint_maxp_mult(desc) - 1;
>
> this looks like a bug fix. Before this change, maxburst was always 0,
> right?
Yes
>
> In any case:
>
> Acked-by: Felipe Balbi <balbi@...nel.org>
>
Powered by blists - more mailing lists