devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] Documentation: devicetree: bindings: drm: Xylon binding
@ 2014-01-27 15:47 Davor Joja
       [not found] ` <52E67F9E.20492.1406B56-l//4pz4nnF2T4XiunKkQOL/f6Pfn6aUBAL8bYrjMMd8@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Davor Joja @ 2014-01-27 15:47 UTC (permalink / raw)
  To: devicetree-u79uwXL29TY76Z2rM5mHXA

Hi,

Can I please get comments about adding new vendor prefix "xylon", and on 
following devicetree binding for Xylon configurable video controller (logiCVC).
Shown node is prepared for Xilinx Linux kernel dts file.


logicvc_0: logicvc@40030000 {
	compatible = "xylon,logicvc-4.00.a";
	reg = <0x40030000 0x6000>;
	interrupt-parent = <&ps7_scugic_0>;
	interrupts = <0 59 4>;
	background-layer-bits-per-pixel = <32>;
	display-interface = <0>;
	display-color-space = <1>;
	is-readable-regs = <1>;
	is-size-position = <1>;
	layer-width = <2048>;
	num-layers = <4>;
	layer_0 {
		address = <0>;
		alpha-mode = <0>;
		data-width = <16>;
		type = <0>;
	} ;
	layer_1 {
		address = <0>;
		alpha-mode = <0>;
		data-width = <32>;
		type = <0>;
	} ;
	layer_2 {
		address = <0>;
		alpha-mode = <1>;
		data-width = <32>;
		type = <0>;
	} ;
	layer_3 {
		address = <0>;
		alpha-mode = <0>;
		data-width = <16>;
		type = <1>;
	} ;
} ;


Required properties for configuring logiCVC device:
 - compatible: value must be "xylon,logicvc-4.00.a"
 - reg: base address and size of the logiCVC IP
 - interrupts-parent: the phandle for interrupt controller
 - interrupts: the interrupt number
 - background-layer-bits-per-pixel: background layer color format (0, 16, 32)
      if "0" last available layer is standard layer
      if 16 or 32, last available layer is background layer implemented in
      hw register and containing specified bits per pixel color value
 - display-interface: logiCVC to display physical interface
      (0=Parallel, 1=ITU656)
 - display-color-space: logiCVC to display physical color space
      (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)
 - is-readable-regs: all hw registers are readable by sw
 - is-size-position: hw changing of layer size and position
 - layer-width: layer width in pixels, common for all layers
 - num-layers: supported number of layers (1-5)
      if "background-layer-bits-per-pixel != 0", "num-layers" property value is
      decreased by 1
 - layer_N
    - address: layer address hardcoded in hw (0=Unused, 0x...)
    - alpha-mode: layer transparency mode (0=Layer, 1=Pixel)
         layer alpha mode contains single alpha value for all layer pixels
         pixel alpha mode contains alpha value per pixel in video memory
         pixel alpha mode can increase physical size of pixel in memory
         (8 bits per pixel in pixel alpha mode uses 16 bits per pixel in 
memory)
    - data-width: layer bits per pixel color format (16, 32)
    - type: layer type (0=RGB, 1=YCbCr)


Thank you,
Davor
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] Documentation: devicetree: bindings: drm: Xylon binding
       [not found] ` <52E67F9E.20492.1406B56-l//4pz4nnF2T4XiunKkQOL/f6Pfn6aUBAL8bYrjMMd8@public.gmane.org>
@ 2014-01-27 16:22   ` Mark Rutland
       [not found]     ` <20140127162255.GG16516-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Rutland @ 2014-01-27 16:22 UTC (permalink / raw)
  To: Davor Joja; +Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

On Mon, Jan 27, 2014 at 03:47:42PM +0000, Davor Joja wrote:
> Hi,

Hi,

> 
> Can I please get comments about adding new vendor prefix "xylon", and on 
> following devicetree binding for Xylon configurable video controller (logiCVC).
> Shown node is prepared for Xilinx Linux kernel dts file.

Does this device have any publicly-accessible documentation?

It would be helpful if you could Cc this to some graphics related
mailing lists. Not everyone on devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org is a graphics
expert, and you'll get much better feedback with the relevant people on
Cc.

It would also be nice to see some code with the binding, and for both
the code and binding to be sent as patches. That makes it _far_ easier
to review as it's far easier to compare with existing bindings if in a
standard format.

> 
> 
> logicvc_0: logicvc@40030000 {
> 	compatible = "xylon,logicvc-4.00.a";
> 	reg = <0x40030000 0x6000>;
> 	interrupt-parent = <&ps7_scugic_0>;
> 	interrupts = <0 59 4>;
> 	background-layer-bits-per-pixel = <32>;
> 	display-interface = <0>;
> 	display-color-space = <1>;
> 	is-readable-regs = <1>;
> 	is-size-position = <1>;
> 	layer-width = <2048>;
> 	num-layers = <4>;
> 	layer_0 {
> 		address = <0>;
> 		alpha-mode = <0>;
> 		data-width = <16>;
> 		type = <0>;
> 	} ;
> 	layer_1 {
> 		address = <0>;
> 		alpha-mode = <0>;
> 		data-width = <32>;
> 		type = <0>;
> 	} ;
> 	layer_2 {
> 		address = <0>;
> 		alpha-mode = <1>;
> 		data-width = <32>;
> 		type = <0>;
> 	} ;
> 	layer_3 {
> 		address = <0>;
> 		alpha-mode = <0>;
> 		data-width = <16>;
> 		type = <1>;
> 	} ;
> } ;
> 
> 
> Required properties for configuring logiCVC device:
>  - compatible: value must be "xylon,logicvc-4.00.a"
>  - reg: base address and size of the logiCVC IP

Presumably the address and size of the MMIO region the IP has?

Does it only have a single bank of registers?

>  - interrupts-parent: the phandle for interrupt controller
>  - interrupts: the interrupt number

Does the device have only a single interrupt?

>  - background-layer-bits-per-pixel: background layer color format (0, 16, 32)
>       if "0" last available layer is standard layer

Why is 0 quoted, and what is a "standard layer"?

>       if 16 or 32, last available layer is background layer implemented in
>       hw register and containing specified bits per pixel color value
>  - display-interface: logiCVC to display physical interface
>       (0=Parallel, 1=ITU656)
>  - display-color-space: logiCVC to display physical color space
>       (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)

These sound like they should be properties of the display this unit is
attached to.

>  - is-readable-regs: all hw registers are readable by sw

Which registers aren't always accessible?

>  - is-size-position: hw changing of layer size and position

These look like booleans, but have values above.

>  - layer-width: layer width in pixels, common for all layers
>  - num-layers: supported number of layers (1-5)

If you require a node for each layer, you don't need this proeprty --
you can simply count the layer nodes.

>       if "background-layer-bits-per-pixel != 0", "num-layers" property value is
>       decreased by 1

Does that mean the author of the dt subtracts one, or this is done by
the kernel?

Why?

>  - layer_N

Where N is?

>     - address: layer address hardcoded in hw (0=Unused, 0x...)

The example gives all layers 0 / unused. What exactly is this address
space?

>     - alpha-mode: layer transparency mode (0=Layer, 1=Pixel)
>          layer alpha mode contains single alpha value for all layer pixels
>          pixel alpha mode contains alpha value per pixel in video memory
>          pixel alpha mode can increase physical size of pixel in memory
>          (8 bits per pixel in pixel alpha mode uses 16 bits per pixel in 
> memory)

This looks like a runtime decision rather than a property of the device.

>     - data-width: layer bits per pixel color format (16, 32)
>     - type: layer type (0=RGB, 1=YCbCr)

Likewise why is this static?

Thanks,
Mark.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] Documentation: devicetree: bindings: drm: Xylon binding
       [not found]     ` <20140127162255.GG16516-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
@ 2014-01-27 17:33       ` Davor Joja
       [not found]         ` <52E6987F.25008.1A19A05-l//4pz4nnF2T4XiunKkQOL/f6Pfn6aUBAL8bYrjMMd8@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Davor Joja @ 2014-01-27 17:33 UTC (permalink / raw)
  To: Mark Rutland
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Hi Mark,

> On Mon, Jan 27, 2014 at 03:47:42PM +0000, Davor Joja wrote:
> > Hi,
> 
> Hi,
> 
> > 
> > Can I please get comments about adding new vendor prefix "xylon", and on 
> > following devicetree binding for Xylon configurable video controller (logiCVC).
> > Shown node is prepared for Xilinx Linux kernel dts file.
> 
> Does this device have any publicly-accessible documentation?

Yes it has, but it does not explain the details mentioned in binding.
http://www.logicbricks.com/Documentation/Datasheets/IP/logiCVC-ML_hds.pdf

> 
> It would be helpful if you could Cc this to some graphics related
> mailing lists. Not everyone on devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org is a graphics
> expert, and you'll get much better feedback with the relevant people on
> Cc.
> 

Ok, CC'ed.

> It would also be nice to see some code with the binding, and for both
> the code and binding to be sent as patches. That makes it _far_ easier
> to review as it's far easier to compare with existing bindings if in a
> standard format.
> 

Currently I do not have it. I only have some old binding which I want to get 
rid off. That is why I want to change binding (officially) and then rewrite the 
driver code for that exact binding.

> > 
> > 
> > logicvc_0: logicvc@40030000 {
> > 	compatible = "xylon,logicvc-4.00.a";
> > 	reg = <0x40030000 0x6000>;
> > 	interrupt-parent = <&ps7_scugic_0>;
> > 	interrupts = <0 59 4>;
> > 	background-layer-bits-per-pixel = <32>;
> > 	display-interface = <0>;
> > 	display-color-space = <1>;
> > 	is-readable-regs = <1>;
> > 	is-size-position = <1>;
> > 	layer-width = <2048>;
> > 	num-layers = <4>;
> > 	layer_0 {
> > 		address = <0>;
> > 		alpha-mode = <0>;
> > 		data-width = <16>;
> > 		type = <0>;
> > 	} ;
> > 	layer_1 {
> > 		address = <0>;
> > 		alpha-mode = <0>;
> > 		data-width = <32>;
> > 		type = <0>;
> > 	} ;
> > 	layer_2 {
> > 		address = <0>;
> > 		alpha-mode = <1>;
> > 		data-width = <32>;
> > 		type = <0>;
> > 	} ;
> > 	layer_3 {
> > 		address = <0>;
> > 		alpha-mode = <0>;
> > 		data-width = <16>;
> > 		type = <1>;
> > 	} ;
> > } ;
> > 
> > 
> > Required properties for configuring logiCVC device:
> >  - compatible: value must be "xylon,logicvc-4.00.a"
> >  - reg: base address and size of the logiCVC IP
> 
> Presumably the address and size of the MMIO region the IP has?

Yes, MMIO region address where IP resides and size of IP registers area.

> 
> Does it only have a single bank of registers?
> 

Yes.

> >  - interrupts-parent: the phandle for interrupt controller
> >  - interrupts: the interrupt number
> 
> Does the device have only a single interrupt?

Yes, in this case connected to ARM GIC.

> 
> >  - background-layer-bits-per-pixel: background layer color format (0, 16, 32)
> >       if "0" last available layer is standard layer
> 
> Why is 0 quoted, and what is a "standard layer"?

Thought that this is simple way for saying "not used".
Maybe have / not to have property?

> 
> >       if 16 or 32, last available layer is background layer implemented in
> >       hw register and containing specified bits per pixel color value
> >  - display-interface: logiCVC to display physical interface
> >       (0=Parallel, 1=ITU656)
> >  - display-color-space: logiCVC to display physical color space
> >       (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)
> 
> These sound like they should be properties of the display this unit is
> attached to.

To be more exact, this is output interface to whatever (LCD, encoder, 
converter, ...), but it is IP property selectable when configuring.
Maybe better name for property should be "interface" and "color-space".

> 
> >  - is-readable-regs: all hw registers are readable by sw
> 
> Which registers aren't always accessible?

IP core can be configured to disable read registers access to all except 
interrupt status power control and interupt status.

> 
> >  - is-size-position: hw changing of layer size and position
> 
> These look like booleans, but have values above.

Yes, it is boolean.
Should it be
"readable-regs;" instead "is-readable-regs = <1>;"
"size-position;" instead "is-size-position = <1>;"

> 
> >  - layer-width: layer width in pixels, common for all layers
> >  - num-layers: supported number of layers (1-5)
> 
> If you require a node for each layer, you don't need this proeprty --
> you can simply count the layer nodes.

True, I do not know what is practice in this case.

> 
> >       if "background-layer-bits-per-pixel != 0", "num-layers" property value is
> >       decreased by 1
> 
> Does that mean the author of the dt subtracts one, or this is done by
> the kernel?
> 

In given example it is substracted by author, and I would like to have it like 
that.
This comment should be just info for user, and maybe it is confusing.

> Why?
> 
> >  - layer_N
> 
> Where N is?

0-4

> 
> >     - address: layer address hardcoded in hw (0=Unused, 0x...)
> 
> The example gives all layers 0 / unused. What exactly is this address
> space?

This property is set while configuring IP, and if it is set to "0" then driver 
knows that there is no dedicated address for video memory and uses its own.

> 
> >     - alpha-mode: layer transparency mode (0=Layer, 1=Pixel)
> >          layer alpha mode contains single alpha value for all layer pixels
> >          pixel alpha mode contains alpha value per pixel in video memory
> >          pixel alpha mode can increase physical size of pixel in memory
> >          (8 bits per pixel in pixel alpha mode uses 16 bits per pixel in 
> > memory)
> 
> This looks like a runtime decision rather than a property of the device.
> 
> >     - data-width: layer bits per pixel color format (16, 32)
> >     - type: layer type (0=RGB, 1=YCbCr)
> 
> Likewise why is this static?

What exactly do you mean with "runtime decision"?
All layer properties are configured in IP, and driver needs to know what they 
are to properly handle pixel memory access on specific layer.

Thank you,
Davor

> 
> Thanks,
> Mark.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] Documentation: devicetree: bindings: drm: Xylon binding
@ 2014-01-29 11:00 Davor Joja
  0 siblings, 0 replies; 8+ messages in thread
From: Davor Joja @ 2014-01-29 11:00 UTC (permalink / raw)
  To: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Hi,

Can I get some comments on below mails?

I want to create devicetree node for Xylon logiCVC DRM device driver, and get 
comments and suggestions from community.
At the end I would send driver and devicetree binding to mainline.

Thank you,
Davor


> Hi Mark,
> 
> > On Mon, Jan 27, 2014 at 03:47:42PM +0000, Davor Joja wrote:
> > > Hi,
> > 
> > Hi,
> > 
> > > 
> > > Can I please get comments about adding new vendor prefix "xylon", and on 
> > > following devicetree binding for Xylon configurable video controller (logiCVC).
> > > Shown node is prepared for Xilinx Linux kernel dts file.
> > 
> > Does this device have any publicly-accessible documentation?
> 
> Yes it has, but it does not explain the details mentioned in binding.
> http://www.logicbricks.com/Documentation/Datasheets/IP/logiCVC-ML_hds.pdf
> 
> > 
> > It would be helpful if you could Cc this to some graphics related
> > mailing lists. Not everyone on devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org is a graphics
> > expert, and you'll get much better feedback with the relevant people on
> > Cc.
> > 
> 
> Ok, CC'ed.
> 
> > It would also be nice to see some code with the binding, and for both
> > the code and binding to be sent as patches. That makes it _far_ easier
> > to review as it's far easier to compare with existing bindings if in a
> > standard format.
> > 
> 
> Currently I do not have it. I only have some old binding which I want to get 
> rid off. That is why I want to change binding (officially) and then rewrite the 
> driver code for that exact binding.
> 
> > > 
> > > 
> > > logicvc_0: logicvc@40030000 {
> > > 	compatible = "xylon,logicvc-4.00.a";
> > > 	reg = <0x40030000 0x6000>;
> > > 	interrupt-parent = <&ps7_scugic_0>;
> > > 	interrupts = <0 59 4>;
> > > 	background-layer-bits-per-pixel = <32>;
> > > 	display-interface = <0>;
> > > 	display-color-space = <1>;
> > > 	is-readable-regs = <1>;
> > > 	is-size-position = <1>;
> > > 	layer-width = <2048>;
> > > 	num-layers = <4>;
> > > 	layer_0 {
> > > 		address = <0>;
> > > 		alpha-mode = <0>;
> > > 		data-width = <16>;
> > > 		type = <0>;
> > > 	} ;
> > > 	layer_1 {
> > > 		address = <0>;
> > > 		alpha-mode = <0>;
> > > 		data-width = <32>;
> > > 		type = <0>;
> > > 	} ;
> > > 	layer_2 {
> > > 		address = <0>;
> > > 		alpha-mode = <1>;
> > > 		data-width = <32>;
> > > 		type = <0>;
> > > 	} ;
> > > 	layer_3 {
> > > 		address = <0>;
> > > 		alpha-mode = <0>;
> > > 		data-width = <16>;
> > > 		type = <1>;
> > > 	} ;
> > > } ;
> > > 
> > > 
> > > Required properties for configuring logiCVC device:
> > >  - compatible: value must be "xylon,logicvc-4.00.a"
> > >  - reg: base address and size of the logiCVC IP
> > 
> > Presumably the address and size of the MMIO region the IP has?
> 
> Yes, MMIO region address where IP resides and size of IP registers area.
> 
> > 
> > Does it only have a single bank of registers?
> > 
> 
> Yes.
> 
> > >  - interrupts-parent: the phandle for interrupt controller
> > >  - interrupts: the interrupt number
> > 
> > Does the device have only a single interrupt?
> 
> Yes, in this case connected to ARM GIC.
> 
> > 
> > >  - background-layer-bits-per-pixel: background layer color format (0, 16, 32)
> > >       if "0" last available layer is standard layer
> > 
> > Why is 0 quoted, and what is a "standard layer"?
> 
> Thought that this is simple way for saying "not used".
> Maybe have / not to have property?
> 
> > 
> > >       if 16 or 32, last available layer is background layer implemented in
> > >       hw register and containing specified bits per pixel color value
> > >  - display-interface: logiCVC to display physical interface
> > >       (0=Parallel, 1=ITU656)
> > >  - display-color-space: logiCVC to display physical color space
> > >       (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)
> > 
> > These sound like they should be properties of the display this unit is
> > attached to.
> 
> To be more exact, this is output interface to whatever (LCD, encoder, 
> converter, ...), but it is IP property selectable when configuring.
> Maybe better name for property should be "interface" and "color-space".
> 
> > 
> > >  - is-readable-regs: all hw registers are readable by sw
> > 
> > Which registers aren't always accessible?
> 
> IP core can be configured to disable read registers access to all except 
> interrupt status power control and interupt status.
> 
> > 
> > >  - is-size-position: hw changing of layer size and position
> > 
> > These look like booleans, but have values above.
> 
> Yes, it is boolean.
> Should it be
> "readable-regs;" instead "is-readable-regs = <1>;"
> "size-position;" instead "is-size-position = <1>;"
> 
> > 
> > >  - layer-width: layer width in pixels, common for all layers
> > >  - num-layers: supported number of layers (1-5)
> > 
> > If you require a node for each layer, you don't need this proeprty --
> > you can simply count the layer nodes.
> 
> True, I do not know what is practice in this case.
> 
> > 
> > >       if "background-layer-bits-per-pixel != 0", "num-layers" property value is
> > >       decreased by 1
> > 
> > Does that mean the author of the dt subtracts one, or this is done by
> > the kernel?
> > 
> 
> In given example it is substracted by author, and I would like to have it like 
> that.
> This comment should be just info for user, and maybe it is confusing.
> 
> > Why?
> > 
> > >  - layer_N
> > 
> > Where N is?
> 
> 0-4
> 
> > 
> > >     - address: layer address hardcoded in hw (0=Unused, 0x...)
> > 
> > The example gives all layers 0 / unused. What exactly is this address
> > space?
> 
> This property is set while configuring IP, and if it is set to "0" then driver 
> knows that there is no dedicated address for video memory and uses its own.
> 
> > 
> > >     - alpha-mode: layer transparency mode (0=Layer, 1=Pixel)
> > >          layer alpha mode contains single alpha value for all layer pixels
> > >          pixel alpha mode contains alpha value per pixel in video memory
> > >          pixel alpha mode can increase physical size of pixel in memory
> > >          (8 bits per pixel in pixel alpha mode uses 16 bits per pixel in 
> > > memory)
> > 
> > This looks like a runtime decision rather than a property of the device.
> > 
> > >     - data-width: layer bits per pixel color format (16, 32)
> > >     - type: layer type (0=RGB, 1=YCbCr)
> > 
> > Likewise why is this static?
> 
> What exactly do you mean with "runtime decision"?
> All layer properties are configured in IP, and driver needs to know what they 
> are to properly handle pixel memory access on specific layer.
> 
> Thank you,
> Davor
> 
> > 
> > Thanks,
> > Mark.


--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] Documentation: devicetree: bindings: drm: Xylon binding
       [not found]         ` <52E6987F.25008.1A19A05-l//4pz4nnF2T4XiunKkQOL/f6Pfn6aUBAL8bYrjMMd8@public.gmane.org>
@ 2014-01-29 17:32           ` Mark Rutland
       [not found]             ` <20140129173242.GH6651-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Rutland @ 2014-01-29 17:32 UTC (permalink / raw)
  To: Davor Joja
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org

On Mon, Jan 27, 2014 at 05:33:51PM +0000, Davor Joja wrote:
> Hi Mark,
> 
> > On Mon, Jan 27, 2014 at 03:47:42PM +0000, Davor Joja wrote:
> > > Hi,
> > 
> > Hi,
> > 
> > > 
> > > Can I please get comments about adding new vendor prefix "xylon", and on 
> > > following devicetree binding for Xylon configurable video controller (logiCVC).
> > > Shown node is prepared for Xilinx Linux kernel dts file.
> > 
> > Does this device have any publicly-accessible documentation?
> 
> Yes it has, but it does not explain the details mentioned in binding.
> http://www.logicbricks.com/Documentation/Datasheets/IP/logiCVC-ML_hds.pdf
> 
> > 
> > It would be helpful if you could Cc this to some graphics related
> > mailing lists. Not everyone on devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org is a graphics
> > expert, and you'll get much better feedback with the relevant people on
> > Cc.
> > 
> 
> Ok, CC'ed.
> 
> > It would also be nice to see some code with the binding, and for both
> > the code and binding to be sent as patches. That makes it _far_ easier
> > to review as it's far easier to compare with existing bindings if in a
> > standard format.
> > 
> 
> Currently I do not have it. I only have some old binding which I want to get 
> rid off. That is why I want to change binding (officially) and then rewrite the 
> driver code for that exact binding.

Why not write the code, and propose the binding with an example user
that shows it's possible to make use of the information in the binding?

> 
> > > 
> > > 
> > > logicvc_0: logicvc@40030000 {
> > > 	compatible = "xylon,logicvc-4.00.a";
> > > 	reg = <0x40030000 0x6000>;
> > > 	interrupt-parent = <&ps7_scugic_0>;
> > > 	interrupts = <0 59 4>;
> > > 	background-layer-bits-per-pixel = <32>;
> > > 	display-interface = <0>;
> > > 	display-color-space = <1>;
> > > 	is-readable-regs = <1>;
> > > 	is-size-position = <1>;
> > > 	layer-width = <2048>;
> > > 	num-layers = <4>;
> > > 	layer_0 {
> > > 		address = <0>;
> > > 		alpha-mode = <0>;
> > > 		data-width = <16>;
> > > 		type = <0>;
> > > 	} ;
> > > 	layer_1 {
> > > 		address = <0>;
> > > 		alpha-mode = <0>;
> > > 		data-width = <32>;
> > > 		type = <0>;
> > > 	} ;
> > > 	layer_2 {
> > > 		address = <0>;
> > > 		alpha-mode = <1>;
> > > 		data-width = <32>;
> > > 		type = <0>;
> > > 	} ;
> > > 	layer_3 {
> > > 		address = <0>;
> > > 		alpha-mode = <0>;
> > > 		data-width = <16>;
> > > 		type = <1>;
> > > 	} ;
> > > } ;
> > > 
> > > 
> > > Required properties for configuring logiCVC device:
> > >  - compatible: value must be "xylon,logicvc-4.00.a"
> > >  - reg: base address and size of the logiCVC IP
> > 
> > Presumably the address and size of the MMIO region the IP has?
> 
> Yes, MMIO region address where IP resides and size of IP registers area.
> 
> > 
> > Does it only have a single bank of registers?
> > 
> 
> Yes.
> 
> > >  - interrupts-parent: the phandle for interrupt controller
> > >  - interrupts: the interrupt number
> > 
> > Does the device have only a single interrupt?
> 
> Yes, in this case connected to ARM GIC.
> 
> > 
> > >  - background-layer-bits-per-pixel: background layer color format (0, 16, 32)
> > >       if "0" last available layer is standard layer
> > 
> > Why is 0 quoted, and what is a "standard layer"?
> 
> Thought that this is simple way for saying "not used".
> Maybe have / not to have property?

Omitting the property would be clearer.

> 
> > 
> > >       if 16 or 32, last available layer is background layer implemented in
> > >       hw register and containing specified bits per pixel color value
> > >  - display-interface: logiCVC to display physical interface
> > >       (0=Parallel, 1=ITU656)
> > >  - display-color-space: logiCVC to display physical color space
> > >       (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)
> > 
> > These sound like they should be properties of the display this unit is
> > attached to.
> 
> To be more exact, this is output interface to whatever (LCD, encoder, 
> converter, ...), but it is IP property selectable when configuring.
> Maybe better name for property should be "interface" and "color-space".

This still sounds like a property of the display. Other bindings
describe the display, and then configure the device as appropriate for
the display.

> 
> > 
> > >  - is-readable-regs: all hw registers are readable by sw
> > 
> > Which registers aren't always accessible?
> 
> IP core can be configured to disable read registers access to all except 
> interrupt status power control and interupt status.

OK. Please name the property to be more specific, and mention this in
the binding.

> 
> > 
> > >  - is-size-position: hw changing of layer size and position
> > 
> > These look like booleans, but have values above.
> 
> Yes, it is boolean.
> Should it be
> "readable-regs;" instead "is-readable-regs = <1>;"
> "size-position;" instead "is-size-position = <1>;"

Yes.

Also, please elaborate on "hw changing of layer size and position".

> 
> > 
> > >  - layer-width: layer width in pixels, common for all layers
> > >  - num-layers: supported number of layers (1-5)
> > 
> > If you require a node for each layer, you don't need this proeprty --
> > you can simply count the layer nodes.
> 
> True, I do not know what is practice in this case.
> 
> > 
> > >       if "background-layer-bits-per-pixel != 0", "num-layers" property value is
> > >       decreased by 1
> > 
> > Does that mean the author of the dt subtracts one, or this is done by
> > the kernel?
> > 
> 
> In given example it is substracted by author, and I would like to have it like 
> that.
> This comment should be just info for user, and maybe it is confusing.

Get rid of the num-layers property entirely. It's redundant and
confusing.

If a layer is unusable / not present, don't describe it.

> 
> > Why?
> > 
> > >  - layer_N
> > 
> > Where N is?
> 
> 0-4
> 
> > 
> > >     - address: layer address hardcoded in hw (0=Unused, 0x...)
> > 
> > The example gives all layers 0 / unused. What exactly is this address
> > space?
> 
> This property is set while configuring IP, and if it is set to "0" then driver 
> knows that there is no dedicated address for video memory and uses its own.

In that case, omit the address property.

Your reply doesn't answer the question of what address space this is in.

> 
> > 
> > >     - alpha-mode: layer transparency mode (0=Layer, 1=Pixel)
> > >          layer alpha mode contains single alpha value for all layer pixels
> > >          pixel alpha mode contains alpha value per pixel in video memory
> > >          pixel alpha mode can increase physical size of pixel in memory
> > >          (8 bits per pixel in pixel alpha mode uses 16 bits per pixel in 
> > > memory)
> > 
> > This looks like a runtime decision rather than a property of the device.
> > 
> > >     - data-width: layer bits per pixel color format (16, 32)
> > >     - type: layer type (0=RGB, 1=YCbCr)
> > 
> > Likewise why is this static?
> 
> What exactly do you mean with "runtime decision"?
> All layer properties are configured in IP, and driver needs to know what they 
> are to properly handle pixel memory access on specific layer.

Without a user or appropriate documentation, such things are unclear...

Thanks,
Mark.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC] Documentation: devicetree: bindings: drm: Xylon binding
       [not found]             ` <20140129173242.GH6651-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
@ 2014-02-02 18:29               ` Davor Joja
  0 siblings, 0 replies; 8+ messages in thread
From: Davor Joja @ 2014-02-02 18:29 UTC (permalink / raw)
  To: Mark Rutland; +Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org


> On Mon, Jan 27, 2014 at 05:33:51PM +0000, Davor Joja wrote:
> > Hi Mark,
> > 
> > > On Mon, Jan 27, 2014 at 03:47:42PM +0000, Davor Joja wrote:
> > > > Hi,
> > > 
> > > Hi,
> > > 
> > > > 
> > > > Can I please get comments about adding new vendor prefix "xylon", and on 
> > > > following devicetree binding for Xylon configurable video controller (logiCVC).
> > > > Shown node is prepared for Xilinx Linux kernel dts file.
> > > 
> > > Does this device have any publicly-accessible documentation?
> > 
> > Yes it has, but it does not explain the details mentioned in binding.
> > http://www.logicbricks.com/Documentation/Datasheets/IP/logiCVC-ML_hds.pdf
> > 
> > > 
> > > It would be helpful if you could Cc this to some graphics related
> > > mailing lists. Not everyone on devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org is a graphics
> > > expert, and you'll get much better feedback with the relevant people on
> > > Cc.
> > > 
> > 
> > Ok, CC'ed.
> > 
> > > It would also be nice to see some code with the binding, and for both
> > > the code and binding to be sent as patches. That makes it _far_ easier
> > > to review as it's far easier to compare with existing bindings if in a
> > > standard format.
> > > 
> > 
> > Currently I do not have it. I only have some old binding which I want to get 
> > rid off. That is why I want to change binding (officially) and then rewrite the 
> > driver code for that exact binding.
> 
> Why not write the code, and propose the binding with an example user
> that shows it's possible to make use of the information in the binding?
> 

I have written binding in drm driver skeleton to show how information is parsed 
and stored in internal driver structures for later usage.
I will send patches.

> > 
> > > > 
> > > > 
> > > > logicvc_0: logicvc@40030000 {
> > > > 	compatible = "xylon,logicvc-4.00.a";
> > > > 	reg = <0x40030000 0x6000>;
> > > > 	interrupt-parent = <&ps7_scugic_0>;
> > > > 	interrupts = <0 59 4>;
> > > > 	background-layer-bits-per-pixel = <32>;
> > > > 	display-interface = <0>;
> > > > 	display-color-space = <1>;
> > > > 	is-readable-regs = <1>;
> > > > 	is-size-position = <1>;
> > > > 	layer-width = <2048>;
> > > > 	num-layers = <4>;
> > > > 	layer_0 {
> > > > 		address = <0>;
> > > > 		alpha-mode = <0>;
> > > > 		data-width = <16>;
> > > > 		type = <0>;
> > > > 	} ;
> > > > 	layer_1 {
> > > > 		address = <0>;
> > > > 		alpha-mode = <0>;
> > > > 		data-width = <32>;
> > > > 		type = <0>;
> > > > 	} ;
> > > > 	layer_2 {
> > > > 		address = <0>;
> > > > 		alpha-mode = <1>;
> > > > 		data-width = <32>;
> > > > 		type = <0>;
> > > > 	} ;
> > > > 	layer_3 {
> > > > 		address = <0>;
> > > > 		alpha-mode = <0>;
> > > > 		data-width = <16>;
> > > > 		type = <1>;
> > > > 	} ;
> > > > } ;
> > > > 
> > > > 
> > > > Required properties for configuring logiCVC device:
> > > >  - compatible: value must be "xylon,logicvc-4.00.a"
> > > >  - reg: base address and size of the logiCVC IP
> > > 
> > > Presumably the address and size of the MMIO region the IP has?
> > 
> > Yes, MMIO region address where IP resides and size of IP registers area.
> > 
> > > 
> > > Does it only have a single bank of registers?
> > > 
> > 
> > Yes.
> > 
> > > >  - interrupts-parent: the phandle for interrupt controller
> > > >  - interrupts: the interrupt number
> > > 
> > > Does the device have only a single interrupt?
> > 
> > Yes, in this case connected to ARM GIC.
> > 
> > > 
> > > >  - background-layer-bits-per-pixel: background layer color format (0, 16, 32)
> > > >       if "0" last available layer is standard layer
> > > 
> > > Why is 0 quoted, and what is a "standard layer"?
> > 
> > Thought that this is simple way for saying "not used".
> > Maybe have / not to have property?
> 
> Omitting the property would be clearer.
> 

I agree.

> > 
> > > 
> > > >       if 16 or 32, last available layer is background layer implemented in
> > > >       hw register and containing specified bits per pixel color value
> > > >  - display-interface: logiCVC to display physical interface
> > > >       (0=Parallel, 1=ITU656)
> > > >  - display-color-space: logiCVC to display physical color space
> > > >       (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)
> > > 
> > > These sound like they should be properties of the display this unit is
> > > attached to.
> > 
> > To be more exact, this is output interface to whatever (LCD, encoder, 
> > converter, ...), but it is IP property selectable when configuring.
> > Maybe better name for property should be "interface" and "color-space".
> 
> This still sounds like a property of the display. Other bindings
> describe the display, and then configure the device as appropriate for
> the display.
> 

It is property of encoder/display but it is also property of logiCVC when 
configuring IP core. They are connected so interface must be the same.
This property describes logiCVC hw interface and driver takes this information 
and makes some decisions.
I searched through kernel documentation for display properties and found only 
timing properties.

> > 
> > > 
> > > >  - is-readable-regs: all hw registers are readable by sw
> > > 
> > > Which registers aren't always accessible?
> > 
> > IP core can be configured to disable read registers access to all except 
> > interrupt status power control and interupt status.
> 
> OK. Please name the property to be more specific, and mention this in
> the binding.
> 

I have described this property more detail.
Could not think of more specific naming.

> > 
> > > 
> > > >  - is-size-position: hw changing of layer size and position
> > > 
> > > These look like booleans, but have values above.
> > 
> > Yes, it is boolean.
> > Should it be
> > "readable-regs;" instead "is-readable-regs = <1>;"
> > "size-position;" instead "is-size-position = <1>;"
> 
> Yes.
> 
> Also, please elaborate on "hw changing of layer size and position".
> 

I changed property description.

> > 
> > > 
> > > >  - layer-width: layer width in pixels, common for all layers
> > > >  - num-layers: supported number of layers (1-5)
> > > 
> > > If you require a node for each layer, you don't need this proeprty --
> > > you can simply count the layer nodes.
> > 
> > True, I do not know what is practice in this case.
> > 
> > > 
> > > >       if "background-layer-bits-per-pixel != 0", "num-layers" property value is
> > > >       decreased by 1
> > > 
> > > Does that mean the author of the dt subtracts one, or this is done by
> > > the kernel?
> > > 
> > 
> > In given example it is substracted by author, and I would like to have it like 
> > that.
> > This comment should be just info for user, and maybe it is confusing.
> 
> Get rid of the num-layers property entirely. It's redundant and
> confusing.
> 
> If a layer is unusable / not present, don't describe it.
> 

I agree.

> > 
> > > Why?
> > > 
> > > >  - layer_N
> > > 
> > > Where N is?
> > 
> > 0-4
> > 
> > > 
> > > >     - address: layer address hardcoded in hw (0=Unused, 0x...)
> > > 
> > > The example gives all layers 0 / unused. What exactly is this address
> > > space?
> > 
> > This property is set while configuring IP, and if it is set to "0" then driver 
> > knows that there is no dedicated address for video memory and uses its own.
> 
> In that case, omit the address property.

Ok.

> 
> Your reply doesn't answer the question of what address space this is in.

Added explanation of this.

> 
> > 
> > > 
> > > >     - alpha-mode: layer transparency mode (0=Layer, 1=Pixel)
> > > >          layer alpha mode contains single alpha value for all layer pixels
> > > >          pixel alpha mode contains alpha value per pixel in video memory
> > > >          pixel alpha mode can increase physical size of pixel in memory
> > > >          (8 bits per pixel in pixel alpha mode uses 16 bits per pixel in 
> > > > memory)
> > > 
> > > This looks like a runtime decision rather than a property of the device.
> > > 
> > > >     - data-width: layer bits per pixel color format (16, 32)
> > > >     - type: layer type (0=RGB, 1=YCbCr)
> > > 
> > > Likewise why is this static?
> > 
> > What exactly do you mean with "runtime decision"?
> > All layer properties are configured in IP, and driver needs to know what they 
> > are to properly handle pixel memory access on specific layer.
> 
> Without a user or appropriate documentation, such things are unclear...
> 

Yes, they are.

Thank you,
Davor

> Thanks,
> Mark.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [RFC] Xylon video controller binding
@ 2014-02-05 15:36 Davor Joja
       [not found] ` <1391614588-2831-1-git-send-email-davorjoja-bBue3UIS71U2IjGS+8YXRQ@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Davor Joja @ 2014-02-05 15:36 UTC (permalink / raw)
  To: devicetree-u79uwXL29TY76Z2rM5mHXA

Hi,

I would like to get some comments on logiCVC video controller binding from
patch.

Thank you,
Davor

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [RFC] Documentation: devicetree: bindings: drm: Xylon binding
       [not found] ` <1391614588-2831-1-git-send-email-davorjoja-bBue3UIS71U2IjGS+8YXRQ@public.gmane.org>
@ 2014-02-05 15:36   ` Davor Joja
  0 siblings, 0 replies; 8+ messages in thread
From: Davor Joja @ 2014-02-05 15:36 UTC (permalink / raw)
  To: devicetree-u79uwXL29TY76Z2rM5mHXA; +Cc: Davor Joja

Xylon binding of DRM driver and logiCVC IP core.

Signed-off-by: Davor Joja <davorjoja-bBue3UIS71U2IjGS+8YXRQ@public.gmane.org>
---
 .../devicetree/bindings/drm/xylon/logicvc.txt      |   79 ++++++++++++++++++++
 .../devicetree/bindings/drm/xylon/xylon_drm.txt    |   24 ++++++
 2 files changed, 103 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/drm/xylon/logicvc.txt
 create mode 100644 Documentation/devicetree/bindings/drm/xylon/xylon_drm.txt

diff --git a/Documentation/devicetree/bindings/drm/xylon/logicvc.txt b/Documentation/devicetree/bindings/drm/xylon/logicvc.txt
new file mode 100644
index 0000000..505e655
--- /dev/null
+++ b/Documentation/devicetree/bindings/drm/xylon/logicvc.txt
@@ -0,0 +1,79 @@
+Binding for Xylon configurable video controller logiCVC IP core
+
+Required properties:
+ - compatible: value must be "xylon,logicvc-4.00.a"
+ - reg: MMIO base address and size of the logiCVC IP core address space
+ - interrupts-parent: the phandle for interrupt controller
+ - interrupts: the interrupt number
+ - background-layer-bits-per-pixel: background layer bits per pixel (16, 32)
+      if omitted, last available layer is logiCVC standard layer, which has its
+      own video memory of specific size, color format and specified
+      bits per pixel
+      if 16 or 32, last available layer is logiCVC background layer,
+      with only specified bits per pixel value
+ - interface: logiCVC to display physical interface
+      (0=Parallel, 1=ITU656)
+ - color-space: logiCVC to display physical color space
+      (0=RGB, 1=YCbCr 4:2:2, 2=YCbCr 4:4:4)
+ - is-readable-regs: all logiCVC registers are available for reading
+      if omitted, only Interrupt Status, Power Control and IP Version registers
+      are available for reading
+ - is-size-position: logiCVC functionality for controlling on screen layer size
+      and position is available
+      if omitted, functionality is not available
+ - pixel-stride: layer video memory width in pixels
+      common for all available logiCVC standard layers
+ - layer_0: layer has its own configuration described with below properties
+   - bits-per-pixel: layer bits per pixel configuration (16, 32)
+         layer is configured to be used with specific pixel width in bits
+         pixels written to layer video memory must match in size to configured
+         bits per pixel value
+   - format: layer format (0=RGB, 1=YCbCr)
+         layer is configured to be used with specific color format
+         pixels written to layer video memory must match specified color format
+   - transparency: layer transparency (0=Layer, 1=Pixel)
+         logiCVC layer can be configured to have transparency control on
+         layer or pixel level
+         "Layer" mode enables controlling of layer transparency by changing
+         alpha value in single logiCVC register
+         "Pixel" mode enables controlling of pixel transparency by changing
+         dedicated alpha bits of specific pixel in video memory
+
+Example:
+
+	logicvc_0: logicvc@40000000 {
+		compatible = "xylon,logicvc-4.00.a";
+		reg = <0x40000000 0x6000>;
+		interrupt-parent = <&gic_0>;
+		interrupts = <0 59 4>;
+		background-layer-bits-per-pixel = <32>;
+		interface = <0>;
+		color-space = <1>;
+		is-readable-regs;
+		is-size-position;
+		pixel-stride = <2048>;
+		layer_0 {
+			address = <0x30000000>;
+			bits-per-pixel = <16>;
+			format = <0>;
+			transparency = <0>;
+		};
+		layer_1 {
+			address = <0x30500000>;
+			bits-per-pixel = <32>;
+			format = <0>;
+			transparency = <0>;
+		};
+		layer_2 {
+			address = <0x30E00000>;
+			bits-per-pixel = <32>;
+			format = <0>;
+			transparency = <1>;
+		};
+		layer_3 {
+			address = <0x31700000>;
+			bits-per-pixel = <16>;
+			format = <1>;
+			transparency = <0>;
+		};
+	};
diff --git a/Documentation/devicetree/bindings/drm/xylon/xylon_drm.txt b/Documentation/devicetree/bindings/drm/xylon/xylon_drm.txt
new file mode 100644
index 0000000..da4940e
--- /dev/null
+++ b/Documentation/devicetree/bindings/drm/xylon/xylon_drm.txt
@@ -0,0 +1,24 @@
+Binding for Xylon DRM driver
+
+Xylon DRM driver supports the Xylon configurable video controller
+logiCVC FPGA IP core device.
+
+On ZC702, ZC706, ZED boards, logiCVC uses SI570 CCF driver for pixel clock
+generation, and ADV7511 DRM encoder driver to set video encoding configuration.
+
+Required properties:
+ - compatible: value should be "xylon,drm-1.00.a".
+ - clocks: the phandle for the pixel clock generator
+ - device: the phandle for logiCVC video controller device
+ - encoder: the phandle for the video encoder
+ - private-plane: logiCVC layer id used for DRM driver private plane
+
+Example:
+
+	xylon_drm {
+		compatible = "xylon,drm-1.00.a";
+		clocks = <&si570>;
+		device = <&logicvc_0>;
+		encoder = <&adv7511>;
+		private-plane = <0>;
+	};
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-02-05 15:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-05 15:36 [RFC] Xylon video controller binding Davor Joja
     [not found] ` <1391614588-2831-1-git-send-email-davorjoja-bBue3UIS71U2IjGS+8YXRQ@public.gmane.org>
2014-02-05 15:36   ` [RFC] Documentation: devicetree: bindings: drm: Xylon binding Davor Joja
  -- strict thread matches above, loose matches on Subject: below --
2014-01-29 11:00 Davor Joja
2014-01-27 15:47 Davor Joja
     [not found] ` <52E67F9E.20492.1406B56-l//4pz4nnF2T4XiunKkQOL/f6Pfn6aUBAL8bYrjMMd8@public.gmane.org>
2014-01-27 16:22   ` Mark Rutland
     [not found]     ` <20140127162255.GG16516-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2014-01-27 17:33       ` Davor Joja
     [not found]         ` <52E6987F.25008.1A19A05-l//4pz4nnF2T4XiunKkQOL/f6Pfn6aUBAL8bYrjMMd8@public.gmane.org>
2014-01-29 17:32           ` Mark Rutland
     [not found]             ` <20140129173242.GH6651-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2014-02-02 18:29               ` Davor Joja

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).