Re: [PATCH v2 1/2] USB: Update EHCI-platform driver to devicetree.

2012-10-20 Thread Alan Stern
On Sun, 21 Oct 2012, Tony Prisk wrote: > This patch adds devicetree support to the EHCI-platform driver, > and removes the now unneeded ehci-vt8500.c > > Existing platform properties are maintained, with the exception > the power_(on/off) and suspend function pointers. Unfortunately this can't b

Re: [PATCH v3 0/7] mv643xx.c: Add basic device tree support.

2012-10-20 Thread Jason Cooper
Pong. ;-) On Tue, Sep 11, 2012 at 04:03:31PM +1000, Benjamin Herrenschmidt wrote: > On Mon, 2012-09-10 at 14:22 +, Arnd Bergmann wrote: > > Following up on the old discussion, I talked briefly about this > > issue with BenH at the kernel summit. The outcome basically is that > > it's a bit sa

Re: [PATCH v2 0/2] DT EHCI support for Kirkwood.

2012-10-20 Thread Jason Cooper
On Sat, Oct 20, 2012 at 01:09:59PM +0200, Andrew Lunn wrote: > These two patches add DT support to ehci-orion and convert all > existing Kirkwood DT boards to using DT to instantiate the USB host. > > v1->v2: Remove the phy property from DT. The previous implementation > was not compatible with th

Re: [PATCH 1/2] USB: Update EHCI-platform driver to devicetree.

2012-10-20 Thread Tony Prisk
On Sat, 2012-10-20 at 10:31 -0400, Alan Stern wrote: > On Sat, 20 Oct 2012, Florian Fainelli wrote: > > > Hi Tony, > > > > On Saturday 20 October 2012 16:17:32 Tony Prisk wrote: > > > This patch adds devicetree support to the EHCI-platform driver, > > > and removes the now unneeded ehci-vt8500.c

[PATCH v2 1/2] USB: Update EHCI-platform driver to devicetree.

2012-10-20 Thread Tony Prisk
This patch adds devicetree support to the EHCI-platform driver, and removes the now unneeded ehci-vt8500.c Existing platform properties are maintained, with the exception the power_(on/off) and suspend function pointers. Signed-off-by: Tony Prisk --- drivers/usb/host/ehci-hcd.c |5 --

[PATCH v2 2/2] USB: doc: Binding document for ehci-platform driver

2012-10-20 Thread Tony Prisk
Add a binding document for ehci-platform driver. Signed-off-by: Tony Prisk --- .../devicetree/bindings/usb/ehci-platform.txt | 27 1 file changed, 27 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/ehci-platform.txt diff --git a/Documentation/

[PATCH v2 0/2] Update ehci-platform driver to support devicetree

2012-10-20 Thread Tony Prisk
This patchset updates the ehci-platform.c driver to allow device tree probing. I have dropped support for the three function pointers (power_on, power_off and power_suspend). If someone has knowledge of the power sequence functions that are being implemented, these functions could be replaced (Sorr

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-20 Thread Thierry Reding
On Thu, Oct 04, 2012 at 07:59:19PM +0200, Steffen Trumtrar wrote: [...] > diff --git a/include/linux/of_display_timings.h > b/include/linux/of_display_timings.h [...] > +struct display_timings { > + unsigned int num_timings; > + unsigned int default_timing; > + > + struct signal_timing

Re: [PATCH 1/2] USB: Update EHCI-platform driver to devicetree.

2012-10-20 Thread Tony Prisk
On Sat, 2012-10-20 at 15:01 +0200, Florian Fainelli wrote: > Hi Tony, > > On Saturday 20 October 2012 16:17:32 Tony Prisk wrote: > > This patch adds devicetree support to the EHCI-platform driver, > > and removes the now unneeded ehci-vt8500.c > > > > Existing platform properties are maintained,

Re: [PATCH 1/2] USB: Update EHCI-platform driver to devicetree.

2012-10-20 Thread Alan Stern
On Sat, 20 Oct 2012, Florian Fainelli wrote: > Hi Tony, > > On Saturday 20 October 2012 16:17:32 Tony Prisk wrote: > > This patch adds devicetree support to the EHCI-platform driver, > > and removes the now unneeded ehci-vt8500.c > > > > Existing platform properties are maintained, with the exce

Re: [PATCH 0/2 v6] of: add display helper

2012-10-20 Thread Thierry Reding
On Mon, Oct 15, 2012 at 04:17:51PM +0200, Steffen Trumtrar wrote: > Hi Leela, > > On Mon, Oct 15, 2012 at 04:24:43PM +0530, Leela Krishna Amudala wrote: > > Hello Steffen, > > > > To which version of the kernel we can expect this patch set to be merged > > into? > > Because I'm waiting for this

[PATCH v2 2/2] ARM: Kirkwood: Convert all DT boards to EHCI via DT.

2012-10-20 Thread Andrew Lunn
Now that the EHCI driver has DT support, drop old style configuration of it and add DT in its place. Since all the boards enable the EHCI, enable it by default in kirkwood.dtsi. Any new boards which don't have USB can specifically disable it. Signed-off-by: Andrew Lunn --- arch/arm/boot/dts/kirk

[PATCH v2 1/2] ARM: Kirkwood: ehci-orion: Add device tree binding

2012-10-20 Thread Andrew Lunn
Based on previous work by Michael Walle and Jason Cooper. Made their work actually work, which required added interrupt from DT and auxdata, along with setting the dma_mask, which DT does not currently do. Signed-off-by: Andrew Lunn Tested-by: Sebastian Hesselbarth Acked-by: Alan Stern --- ..

[PATCH v2 0/2] DT EHCI support for Kirkwood.

2012-10-20 Thread Andrew Lunn
These two patches add DT support to ehci-orion and convert all existing Kirkwood DT boards to using DT to instantiate the USB host. v1->v2: Remove the phy property from DT. The previous implementation was not compatible with the new ideas of a USB phy node. Only orion5x needs it anyway, and curren

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-20 Thread Thierry Reding
On Thu, Oct 04, 2012 at 07:59:20PM +0200, Steffen Trumtrar wrote: [...] > diff --git a/drivers/of/of_videomode.c b/drivers/of/of_videomode.c [...] > +#if defined(CONFIG_DRM) This should be: #if IS_ENABLED(CONFIG_DRM) or the code below won't be included if DRM is built as a module. But se

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-20 Thread Thierry Reding
On Thu, Oct 04, 2012 at 07:59:19PM +0200, Steffen Trumtrar wrote: [...] > diff --git a/include/linux/of_display_timings.h > b/include/linux/of_display_timings.h > new file mode 100644 > index 000..1ad719e > --- /dev/null > +++ b/include/linux/of_display_timings.h > @@ -0,0 +1,85 @@ > +/* > + *

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-20 Thread Thierry Reding
On Tue, Oct 09, 2012 at 09:26:08AM +0200, Steffen Trumtrar wrote: > Hi Laurent, > > On Mon, Oct 08, 2012 at 10:52:04PM +0200, Laurent Pinchart wrote: > > Hi Steffen, > > > > On Monday 08 October 2012 14:48:01 Steffen Trumtrar wrote: > > > On Mon, Oct 08, 2012 at 02:13:50PM +0200, Laurent Pinchart

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-20 Thread Thierry Reding
On Sun, Oct 07, 2012 at 03:38:33PM +0200, Laurent Pinchart wrote: > Hi Steffen, > > On Friday 05 October 2012 17:51:21 Steffen Trumtrar wrote: > > On Thu, Oct 04, 2012 at 12:51:00PM -0600, Stephen Warren wrote: > > > On 10/04/2012 11:59 AM, Steffen Trumtrar wrote: > > > > Get videomode from device