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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 29 Oct 2014 15:49:24 -0500
From:	atull <atull@...nsource.altera.com>
To:	Steffen Trumtrar <s.trumtrar@...gutronix.de>
CC:	<jgunthorpe@...idianresearch.com>, <hpa@...or.com>,
	<monstr@...str.eu>, <michal.simek@...inx.com>,
	<rdunlap@...radead.org>, <gregkh@...uxfoundation.org>,
	<linux-kernel@...r.kernel.org>, <devicetree@...r.kernel.org>,
	<pantelis.antoniou@...sulko.com>, <robh+dt@...nel.org>,
	<grant.likely@...aro.org>, <iws@...o.caltech.edu>,
	<linux-doc@...r.kernel.org>, <pavel@...x.de>, <broonie@...nel.org>,
	<philip@...ister.org>, <rubini@...dd.com>, <jason@...edaemon.net>,
	<kyle.teske@...com>, <nico@...aro.org>, <balbi@...com>,
	<m.chehab@...sung.com>, <davidb@...eaurora.org>, <rob@...dley.net>,
	<davem@...emloft.net>, <cesarb@...arb.net>,
	<sameo@...ux.intel.com>, <akpm@...ux-foundation.org>,
	<linus.walleij@...aro.org>, <mgerlach@...nsource.altera.com>,
	<delicious.quinoa@...il.com>, <dinguyen@...nsource.altera.com>,
	<yvanderv@...nsource.altera.com>
Subject: Re: [PATCH v2 2/3] ARM: dts: socfpga: fpga bridges bindings docs

On Wed, 29 Oct 2014, Steffen Trumtrar wrote:

> Hi!
> 
> On Tue, Oct 28, 2014 at 04:19:03PM -0500, atull wrote:
> > On Fri, 24 Oct 2014, Steffen Trumtrar wrote:
> > 
> > > Hi!
> > > 
> > 
> > Hi,
> > 
> > I see that my documentation sucks and needs cleanup.  I'll try to
> > answer some of the flames and get a more coherent version out soon.
> > 
> > > On Thu, Oct 23, 2014 at 06:51:06PM -0500, atull@...nsource.altera.com wrote:
> > > > From: Alan Tull <atull@...nsource.altera.com>
> > > 
> > > (...)
> > > 
> > > > diff --git a/Documentation/devicetree/bindings/fpga/altera-hps2fpga-bridge.txt b/Documentation/devicetree/bindings/fpga/altera-hps2fpga-bridge.txt
> > > > new file mode 100644
> > > > index 0000000..bc24a2e
> > > > --- /dev/null
> > > > +++ b/Documentation/devicetree/bindings/fpga/altera-hps2fpga-bridge.txt
> > > > @@ -0,0 +1,53 @@
> > > > +Altera FPGA/HPS Bridge Driver
> > > > +
> > > > +This driver manages a bridge between a FPGA and a host processor system (HPS).
> > > > +User space can enable or disable the bridge by writing a "1" or a "0",
> > > > +respectively, to its enable file under bridge's entry in
> > > > +/sys/class/fpga-bridge.  Typically, one disables the bridges before
> > > > +reprogramming the FPGA.  Once the FPGA is reprogrammed, the bridges are
> > > > +reenabled.
> > > > +
> > > 
> > > NAK.
> > > 
> > > This is all linux specific and doesn't belong here.
> > 
> > Right.  This stuff shouldn't be in this document.  While I was squashing
> > patches and cleaning up for posting on the mailing list, I added a sysfs
> > document and forgot to clean up my DT bindings documents.
> > 
> > > 
> > > > +Required properties:
> > > > +
> > > > + - compatible     : should contain one of:
> > > > +                     "altr,socfpga-hps2fpga-bridge"
> > > > +                     "altr,socfpga-lwhps2fpga-bridge"
> > > > +                     "altr,socfpga-fpga2hps-bridge"
> > > > +
> > > > + - clocks         : clocks used by this module
> > > > +
> > > > + - altr,l3-syscon : phandle of the l3 interconnect module
> > > > +
> > > 
> > > L3 shouldn't be a syscon.
> > 
> > L3 is actually a good candidate for syscon.  Lots of registers, each one
> > affects a different hardware block.
> > 
> > > Have you tried dumping the regmap in the debugfs if L3
> > > is a syscon? Doesn't work.
> > 
> > Is that a bug in regmap or is that because the register in L3 that
> > I am actully interested in here is write-only (ugh)?
> >
> 
> That is not a bug in regmap. It is because you only have a register at 0x4008,
> than one at 0x4104, that one at 0x5008, etc.... (values from memory, so might
> be wrong)
> 
> Of course regmap tries to read from the whole register range if specified as
> syscon. Which it can't.
> 
> So, that shouldn't be a problem though, as I already cooked up a driver for
> the L3 with all the ranges specified. The only thing I need to figure out
> before I will post it, is how to nicely handle the WO remap register.
> I think regmap might be able to handle this itself, but am not sure yet.
> 
> > > 
> > > > +Optional properties:
> > > > + - label          : name that you want this bridge to show up as under
> > > > +                    /sys/class/fpga-bridge.  Default is br<device#> if this is
> > > > +                    not specified.
> > > > +
> > > 
> > > Why? Linux-specific.
> > 
> > That was a convience for the user.  I can take that out and won't miss it.
> > 
> > > 
> > > > + - init-val       : 0 if driver should disable bridge at startup
> > > > +                    1 if driver should enable bridge at startup
> > > > +                    driver leaves bridge in current state if property not
> > > > +                    specified.
> > > > +
> > > 
> > > Configuration in the DT? Really?
> > > 
> > > > +Example:
> > > > +	hps_fpgabridge0: fpgabridge@0 {
> > > > +		compatible = "altr,socfpga-hps2fpga-bridge";
> > > > +		label = "hps2fpga";
> > > > +		altr,l3-syscon = <&l3regs>;
> > > > +		clocks = <&l4_main_clk>;
> > > > +		init-val = <1>;
> > > > +	};
> > > > +
> > > > +	hps_fpgabridge1: fpgabridge@1 {
> > > > +		compatible = "altr,socfpga-lwhps2fpga-bridge";
> > > > +		label = "lwhps2fpga";
> > > > +		altr,l3-syscon = <&l3regs>;
> > > > +		clocks = <&l4_main_clk>;
> > > > +		init-val = <0>;
> > > > +	};
> > > > +
> > > > +	hps_fpgabridge2: fpgabridge@2 {
> > > > +		compatible = "altr,socfpga-fpga2hps-bridge";
> > > > +		label = "fpga2hps";
> > > > +		altr,l3-syscon = <&l3regs>;
> > > > +		clocks = <&l4_main_clk>;
> > > > +	};
> > > 
> > > The bridges are the buses into the FPGA. This has to be accomodated.
> > > The bridges have two specified memory ranges: one the address space
> > > of the bus, the second the register space for configuration.
> > > 
> > > This binding does NOT correctly describe the hardware. Sorry.
> > > 
> > 
> > OK that was outdated.  More cleanup needed.  How about this type of
> > binding?  Here's an actual use case for something that has multiple
> > pieces of soft IP in the FPGA (sysid, gpio).  I eliminated a few.
> > 
> > *snippet of DT*
> > sopc@0 {
> > 	device_type = "soc";
> > 	ranges;
> > 	#address-cells = <0x1>;
> > 	#size-cells = <0x1>;
> > 	compatible = "ALTR,avalon", "simple-bus";
> > 	bus-frequency = <0x0>;
> > 
> > 	bridge@...0000000 {
> > 		compatible = "altr,bridge-14.0", "simple-bus";
> > 		reg = <0xc0000000 0x20000000 0xff200000 0x200000>;
> > 		reg-names = "axi_h2f", "axi_h2f_lw";
> > 		clocks = <0x2 0x2 0x2>;
> > 		clock-names = "h2f_axi_clock", "h2f_lw_axi_clock",
> > 		              "f2h_sdram0_clock";
> > 		#address-cells = <0x2>;
> > 		#size-cells = <0x1>;
> > 		ranges = <0x0 0x0 0xc0000000 0x10000
> > 		          0x1 0x10000 0xff210000 0x8
> > 			  0x1 0x10040 0xff210040 0x20 
> > 			  0x1 0x10080 0xff210080 0x10 
> > 			  0x1 0x100c0 0xff2100c0 0x10 
> > 			  0x1 0x20000 0xff220000 0x8>;
> > 
> > 		sysid@...00010000 {
> > 			compatible = "altr,sysid-14.0", "altr,sysid-1.0";
> > 			reg = <0x1 0x10000 0x8>;
> > 			clocks = <0x2>;
> > 			id = <0xacd51402>;
> > 			timestamp = <0x540a048e>;
> > 		};
> > 
> > 		gpio@...00010040 {
> > 			compatible = "altr,pio-14.0", "altr,pio-1.0";
> > 			reg = <0x1 0x10040 0x20>;
> > 			clocks = <0x2>;
> > 			altr,gpio-bank-width = <0x4>;
> > 			resetvalue = <0x0>;
> > 			#gpio-cells = <0x2>;
> > 			gpio-controller;
> > 			linux,phandle = <0x2a>;
> > 		};
> > 
> > 		/* other hardware that exists on FPGA here */
> > 
> > 	};
> > };
> > 
> 
> Yes, something like this seems appropriate. Again, I also cooked up a driver
> for this. I need to figure out why the GPV register writing sometimes doesn't
> work as expected and will try to marry it to your FPGA manager framework
> before I consider sending it to the list.

Hi Steffen,

I look forward to seeing it.

> 
> My proposed binding at the moment looks like:
> 
> Example:
> 
> 	hps2fpga: axibridge@...00000 {
> 		#address-cells = <1>;
> 		#size-cells = <1>;
> 		compatible = "altr,hps2fpga-axi-bridge";
> 		reg = <0xff500000 0x100000>,
> 		      <0xc0000000 0x3c000000>;
> 		clocks = <&l4_mp_clk>, <&l3_main_clk>;
> 		clock-names = "gpv_clk", "data_clk";
> 		resets = <&rst HPS2FPGA_RESET>;
> 		reset-names = "hps2fpga";
> 		altr,gpv-master = <&lwhps2fpga>;
> 		altr,l3-gpv = <&l3regs>;
> 		bus-width = <64>;
> 		status = "disabled";
> 		ranges;
> 	};
> 
> Board file example:
> 
> 	&hps2fpga {
> 		bus-width = <32>;
> 		status = "okay";
> 
> 		axi-ip: axi-ip@...00000 {
> 			compatible = "axi-ip";
> 			reg = <0xc0000000 0x10000>;
> 			clocks = <&h2f_usr2_clk>;
> 			status = "okay";
> 		};
> 	};
> 
> So we seem to be almost on the same page. I first had the simple-bus in
> there, too. But this will lead to all sorts of problems regarding driver
> probing/removing on that bus.
> 

I think the problems we have had was that the bus had to be arch_initcall so
that it would be there before the drivers were.  Are there other problems
you are thinking of?  It would be good if we could get around that problem
as otherwise it will be a problem with the l3-nic not being early enough.

Alan


> Regards,
> Steffen
> 
> -- 
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
> --
> 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/
> 
--
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