Re: [PATCH 6/7] ARM: mackerel: support booting with or without DT

2012-12-15 Thread Simon Horman
On Sat, Dec 15, 2012 at 08:02:39PM +0100, Guennadi Liakhovetski wrote: > Hi Simon > > Thanks for your comments. I'll reply to other your reviews later, I think, > let me just briefly clarify this one. > > On Sat, 15 Dec 2012, Simon Horman wrote: > > > On Fri, Dec 14, 2012 at 05:45:30PM +0100, G

[PATCH] [media] Add common binding documentation for video interfaces

2012-12-15 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski This patch adds a document describing common OF bindings for video capture, output and video processing devices. It is currently mainly focused on video capture devices, with data interfaces defined in standards like ITU-R BT.656 or MIPI CSI-2. It also documents a meth

Re: [PATCH 6/7] ARM: mackerel: support booting with or without DT

2012-12-15 Thread Guennadi Liakhovetski
Hi Simon Thanks for your comments. I'll reply to other your reviews later, I think, let me just briefly clarify this one. On Sat, 15 Dec 2012, Simon Horman wrote: > On Fri, Dec 14, 2012 at 05:45:30PM +0100, Guennadi Liakhovetski wrote: > > This patch adds dynamic switching to booting either wit

Re: [PATCH 2/2] spi: devicetree: add support for loopback mode

2012-12-15 Thread Felipe Balbi
On Sat, Dec 15, 2012 at 12:32:24AM +, Grant Likely wrote: > On Wed, 12 Dec 2012 10:46:00 +0200, Felipe Balbi wrote: > > there are a few spi master drivers which make > > use of that flag but there is no way to pass it > > through devicetree. > > > > This patch just creates a way to pass SPI_L

Re: [PATCH 1/2] i2c-core: Add gpio based bus arbitration implementation

2012-12-15 Thread Mark Brown
On Fri, Dec 14, 2012 at 09:06:49AM -0700, Stephen Warren wrote: > On 12/13/2012 10:50 PM, Naveen Krishna Chatradhi wrote: > > +The first should be an output, and is used to claim the I2C bus, > > +the second should be an input, and signals that the other side (Client) > > +wants to claim the bus.

[PATCH] of: define struct device in of_platform.h if !OF_DEVICE and !OF_ADDRESS

2012-12-15 Thread Jonas Gorski
Fixes the following warning: include/linux/of_platform.h:106:13: warning: 'struct device' declared inside parameter list [enabled by default] include/linux/of_platform.h:106:13: warning: its scope is only this definition or declaration, which is probably not what you want [enabled by default] S

Re: [PATCH 1/7] ARM: sh7372: add missing "#interrupt-cells" properties

2012-12-15 Thread Simon Horman
On Fri, Dec 14, 2012 at 05:45:25PM +0100, Guennadi Liakhovetski wrote: > Two of four interrupt controllers in sh7372.dtsi are missing the compulsory > "#interrupt-cells" properties. Fix this. Thanks. I think that is fixed in the latest INTC DT series that I posted just a few moments ago "[RFC v7

Re: [PATCH 2/7] ARM: mackerel: include the correct .dtsi file

2012-12-15 Thread Simon Horman
On Fri, Dec 14, 2012 at 05:45:26PM +0100, Guennadi Liakhovetski wrote: > Mackerel's .dts Device Tree description file should derive from the SoC's > .dtsi, not from skeleton.dtsi directly. > > Signed-off-by: Guennadi Liakhovetski Thanks applied. I have applied this to a temporary 'boards4' bran

Re: [PATCH 4/7] ARM: sh7372: add clock lookup entries for DT-based devices

2012-12-15 Thread Simon Horman
On Fri, Dec 14, 2012 at 05:45:28PM +0100, Guennadi Liakhovetski wrote: > When booting with DT, devices are named differently. To get their clocks > additional entries have to be added to the lookup table. Thanks applied. I have applied this to a temporary 'soc5' branch which is based on 3.7-rc1.

Re: [PATCH 6/7] ARM: mackerel: support booting with or without DT

2012-12-15 Thread Simon Horman
On Fri, Dec 14, 2012 at 05:45:30PM +0100, Guennadi Liakhovetski wrote: > This patch adds dynamic switching to booting either with or without DT. > So far only a part of the board initialisation can be done via DT. Devices, > that still need platform data are kept that way. Devices, that can be > in

Re: [PATCH 3/7] ARM: sh7372: support mixed DT and board code interrupt controller init

2012-12-15 Thread Simon Horman
On Fri, Dec 14, 2012 at 05:45:27PM +0100, Guennadi Liakhovetski wrote: > Extend DT interrupt controller initialisation to automatically fall back to > platform data based configuration, if booting without DT. This simplifies > implementing boards, capable of booting in either mode with a single ker

Re: [PATCH 5/7] ARM: sh7372: allow boards supporting booting with or without DT

2012-12-15 Thread Simon Horman
On Fri, Dec 14, 2012 at 05:45:29PM +0100, Guennadi Liakhovetski wrote: > For boards booting without DT no changes should be caused by this patch. > When booting with DT, devices, whose drivers support DT probing, will not > be registered. This relates in part to my comment on "ARM: sh7372: support