lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20241206192745.hleuzue7kilari4x@synopsys.com>
Date: Fri, 6 Dec 2024 19:27:45 +0000
From: Thinh Nguyen <Thinh.Nguyen@...opsys.com>
To: André Draszik <andre.draszik@...aro.org>
CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        "linux-usb@...r.kernel.org" <linux-usb@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] usb: dwc3: gadget: fix writing NYET threshold

On Fri, Dec 06, 2024, Thinh Nguyen wrote:
> On Fri, Dec 06, 2024, André Draszik wrote:
> > Before writing a new value to the register, the old value needs to be
> > masked out for the new value to be programmed as intended.
> > 
> > At the moment, the dwc3 core initialises the threshold to the maximum
> > value (0xf), with the option to override it via a DT. No upstream DTs
> > seem to override it, therefore this commit doesn't change behaviour for
> > any upstream platform. Nevertheless, the code should be fixed to have
> > the desired outcome.
> > 
> > Do so.
> > 
> > Signed-off-by: André Draszik <andre.draszik@...aro.org>
> > ---
> >  drivers/usb/dwc3/core.h   | 1 +
> >  drivers/usb/dwc3/gadget.c | 4 +++-
> >  2 files changed, 4 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
> > index ee73789326bc..9335fd095968 100644
> > --- a/drivers/usb/dwc3/core.h
> > +++ b/drivers/usb/dwc3/core.h
> > @@ -465,6 +465,7 @@
> >  
> >  /* These apply for core versions 1.94a and later */
> >  #define DWC3_DCTL_NYET_THRES(n)		(((n) & 0xf) << 20)
> > +#define DWC3_DCTL_NYET_THRES_MASK	DWC3_DCTL_NYET_THRES(0xf)
> 
> If you're going to define a mask macro this way, do this:
> DWC3_DCTL_NYET_THRES(~0)
> 

Actually, let's keep it consistent as how the other masks are defined,
don't use DWC3_DCTL_NYET_THRES(n) to define the mask.

Use GENMASK or do something like this:
#define DWC3_DCTL_NYET_THRES_MASK	(0xf << 20)

BR,
Thinh

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ