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] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 29 Jul 2015 11:19:01 +0000
From:	Badola Nikhil <nikhil.badola@...escale.com>
To:	"balbi@...com" <balbi@...com>
CC:	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	"linux-usb@...r.kernel.org" <linux-usb@...r.kernel.org>,
	"linux-omap@...r.kernel.org" <linux-omap@...r.kernel.org>,
	"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>
Subject: RE: [PATCH 2/3] drivers: usb: dwc3: Add adjust_frame_length_quirk

> -----Original Message-----
> From: Felipe Balbi [mailto:balbi@...com]
> Sent: Monday, July 27, 2015 8:38 PM
> To: Badola Nikhil-B46172
> Cc: balbi@...com; linux-kernel@...r.kernel.org; linux-usb@...r.kernel.org;
> linux-omap@...r.kernel.org; gregkh@...uxfoundation.org
> Subject: Re: [PATCH 2/3] drivers: usb: dwc3: Add adjust_frame_length_quirk
> 
> On Mon, Jul 27, 2015 at 06:56:48AM +0000, Badola Nikhil wrote:
> > > -----Original Message-----
> > > From: Felipe Balbi [mailto:balbi@...com]
> > > Sent: Thursday, July 23, 2015 8:39 PM
> > > To: Felipe Balbi
> > > Cc: Badola Nikhil-B46172; linux-kernel@...r.kernel.org; linux-
> > > usb@...r.kernel.org; linux-omap@...r.kernel.org;
> > > gregkh@...uxfoundation.org
> > > Subject: Re: [PATCH 2/3] drivers: usb: dwc3: Add
> > > adjust_frame_length_quirk
> > >
> > > Hi again,
> > >
> > > On Thu, Jul 23, 2015 at 09:55:32AM -0500, Felipe Balbi wrote:
> > > > > diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
> > > > > index
> > > > > 0447788..b7a5119 100644
> > > > > --- a/drivers/usb/dwc3/core.h
> > > > > +++ b/drivers/usb/dwc3/core.h
> > > > > @@ -124,6 +124,7 @@
> > > > >  #define DWC3_GEVNTCOUNT(n)	(0xc40c + (n * 0x10))
> > > > >
> > > > >  #define DWC3_GHWPARAMS8		0xc600
> > > > > +#define DWC3_GFLADJ		0xc630
> > > > >
> > > > >  /* Device Registers */
> > > > >  #define DWC3_DCFG		0xc700
> > > > > @@ -234,6 +235,10 @@
> > > > >  /* Global HWPARAMS6 Register */
> > > > >  #define DWC3_GHWPARAMS6_EN_FPGA			(1 <<
> 7)
> > > > >
> > > > > +/* Global Frame Length Adjustment Register */
> > > > > +#define GFLADJ_30MHZ_REG_SEL		(1 << 7)
> > > >
> > > > always prepend with DWC3_ like *all* other macros in this file.
> > > >
> > > > Also, match docs to ease grepping. This should be called
> > > > DWC3_GFLADJ_30MHZ_SDBND_SEL
> >
> > GFLADJ_30MHZ_REG_SEL is the field's name in LS1021A Reference Manual
> > as well as dwc3 databook. Though DWC3_GFLADJ_30MHZ_SDBND_SEL
> seems
> > more relevant.
> 
> databook calls it GFLADJ_30MHZ_SDBND_SEL, I checked before sending my
> email.
> 
> > > yet another problem is that this register doesn't exist in *all*
> > > versions of DWC3. It was introduced in version 2.50a so the branch I
> > > typed above needs one extra check, and since it's getting so large,
> > > it deserves be factored out into its own function.
> > >
> > > static int dwc3_frame_length_adjustment(struct dwc3 *dwc, u32 fladj) {
> > > 	u32 reg;
> > > 	u32 dft;
> > >
> > > 	if (dwc->revision <= DWC3_REVISION_250A)
> > > 		return 0;
> > >
> > > 	if (fladj == 0)
> > > 		return 0;
> > >
> > > 	reg = dwc3_readl(dwc->regs, DWC3_GFLADJ);
> > > 	dft = reg & 0x3f; /* needs a mask macro */
> > >
> > > 	if (!dev_WARN_ONCE(dwc->dev, dft == fladj,
> > > 		"requested value same as default, ignoring\n")) {
> > > 		reg &= ~0x3f; /* needs a mask macro */
> > > 		reg |= DWC3_GFLADJ_30MHZ_SDBND_SEL |
> > > 			DWC3_GFLADJ_30MHZ(fladj_value);
> > >
> > > 		dwc3_writel(dwc->regs, DWC3_GFLADJ, reg);
> > > 	}
> > > }
> > >
> > > you really *MUST* check this sort of this out when writing patches.
> > > It's not only about *your* SoC. You gotta remember we have a ton of
> > > different users and those a prone to major grumpyness should a
> > > completely unrelated patch break their use case.
> > >
> > > You have access to the IP's documentation, and that contains the
> > > entire history of the IP itself, so it's easy to figure all of this
> > > out with a simple search in the documentation.
> > >
> > > One extra detail is that you were very careless when writing to the
> > > GFLADJ register too. You simply wrote your 30MHz sideband value,
> > > potentially clearing other bits which shouldn't be touched. That
> > > alone can add regressions.
> > >
> > > When resending, make sure all 3 patches reach linux-usb. I still
> > > can't find patch 3/3.
> > >
> >
> > Will take care of above scenarios and resend patches cc'ing linux-usb
> > in each of them.
> >
> > Regarding acceptance of the patch only when it's used in glue layer,
> > there is no freescale's glue layer present for dwc3 as of now.
> 
> if there is no glue layer, how are you testing your patch ?

We directly call dwc3_probe() . Please see usb node in file arch/arm/boot/dts/ls1021a.dtsi 
For your reference : 

usb3@...0000 {
                        compatible = "snps,dwc3";
                        reg = <0x0 0x3100000 0x0 0x10000>;
                        interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
                        dr_mode = "host";
                };

> 
> > Furthermore, there is not any platform specific code required in glue
> > layer apart from the ones present in dwc3/core.c.
> 
> sorry ? core.c is generic for all users, the glue layer should somewhat hide
> platform details such as clocks and PM. It's surprising if you don't need
> anything on that side.

We do not support power management for now. Also we are not sure
If we need clocks and will look into it when we start working on power management.
I would request you to accept this patch set (after modifications which you 
suggested) so that usb functionality doesn't break.
I will send an incremental patch to use this frame length adjust patch via glue layer
as soon as we introduce one. 
  
 



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ