Re: [PATCH 1/5 v2] i2c/gpio: add DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:20 Wed 29 Feb , Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: linux-...@vger.kernel.org Cc: devicetree-discuss@lists.ozlabs.org --- v2: use devm_kzalloc use

Re: [PULL] of nand generic binding

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:25 Wed 29 Feb , Jean-Christophe PLAGNIOL-VILLARD wrote: On 16:57 Fri 17 Feb , Jean-Christophe PLAGNIOL-VILLARD wrote: HI, please find attached the generic binding for the MTD nand This will add boolean and nand helpers is it ok? I need this for 3.4 will you

[PATCH 0/9 v2] at91 USB DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
HI, this is a second version of the patch series to add DT suport for usb host and device on at91 The following changes since commit 3370718be26d86e7f8587390eee563c289542ee7: ARM: at91/dt: add Calao DAB-MMX daugther board support for USB-A9G20 (2012-03-02 00:46:21 +0800)

[PATCH 3/9 v2] ARM: at91: usb ehci add dt support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: linux-...@vger.kernel.org Acked-by: Greg Kroah-Hartman gre...@linuxfoundation.org --- .../devicetree/bindings/usb/atmel-usb.txt | 12 ++

[PATCH 2/9 v2] ARM: at91: dt: enable usb ohci for sam9g20, sam9g45 amd sam9x5

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9g20.dtsi |7 +++ arch/arm/boot/dts/at91sam9g25ek.dts|8 arch/arm/boot/dts/at91sam9g45.dtsi |7 +++

[PATCH 6/9] ARM: at91: sam9g20 udc add dt support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9g20.dtsi |7 +++ arch/arm/boot/dts/usb_a9g20.dts|5 + 2 files changed, 12 insertions(+), 0 deletions(-) diff --git

[PATCH 1/9 v2] ARM: at91: usb ohci add dt support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: linux-...@vger.kernel.org Acked-by: Grant Likely grant.lik...@secretlab.ca Acked-by: Greg Kroah-Hartman gre...@linuxfoundation.org --- .../devicetree/bindings/usb/atmel-usb.txt

[PATCH 4/9] ARM: at91: dt: enable usb ehci for sam9g45 and sam9x5

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9g25ek.dts|4 arch/arm/boot/dts/at91sam9g45.dtsi |7 +++ arch/arm/boot/dts/at91sam9m10g45ek.dts |4

[PATCH 7/9] usb: add Atmel USBA UDC DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Allow to compile the driver all the time if AT91 enabled. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: linux-...@vger.kernel.org --- Hi Greg if it's ok with you I apply with the rest of the USB patch series via

[PATCH 9/9] ARM: at91: sam9x5 add udc DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9g25ek.dts |5 +++ arch/arm/boot/dts/at91sam9x5.dtsi | 67 +++ arch/arm/mach-at91/at91sam9x5.c |2 + 3 files

[PATCH 8/9] ARM: at91: sam9g45 add udc DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9g45.dtsi | 66 arch/arm/boot/dts/at91sam9m10g45ek.dts |5 ++ arch/arm/mach-at91/at91sam9g45.c |2 + 3

Re: [PATCH 1/9 v2] ARM: at91: usb ohci add dt support

2012-03-07 Thread Russell King - ARM Linux
On Wed, Mar 07, 2012 at 10:15:38AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: +static u64 at91_ohci_dma_mask = DMA_BIT_MASK(32); + +static int __devinit ohci_at91_of_init(struct platform_device *pdev) +{ + struct device_node *np = pdev-dev.of_node; + int i, ret, gpio; +

[PATCH 1/1] of: add dma-mask binding

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
This will allow each device to specify its dma-mask The microblaze architecture hook is keep temporary if no dma-mask is specified int the DT Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/of/platform.c | 26 +- 1 files changed, 25

[PATCH 2/4 v4] spi/atmel: add DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
The atmel_spi use only gpio for chip select. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: devicetree-discuss@lists.ozlabs.org Cc: spi-devel-gene...@lists.sourceforge.net --- .../devicetree/bindings/spi/spi_atmel.txt |6 + drivers/spi/spi-atmel.c

Re: [PULL] of nand generic binding

2012-03-07 Thread Rob Herring
On 03/07/2012 02:29 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: On 16:25 Wed 29 Feb , Jean-Christophe PLAGNIOL-VILLARD wrote: On 16:57 Fri 17 Feb , Jean-Christophe PLAGNIOL-VILLARD wrote: HI, please find attached the generic binding for the MTD nand This will add boolean and

Re: [PATCH] mach-kirkwood: Support for DLink DNS-320 DNS-325 NAS

2012-03-07 Thread Jason
On Wed, Mar 07, 2012 at 02:25:10PM +, Jamie Lentin wrote: On Thu, 1 Mar 2012, Jason wrote: On Wed, Feb 29, 2012 at 02:40:10PM +, Arnd Bergmann wrote: On Sunday 12 February 2012, Jamie Lentin wrote: This patch adds support for the D-Link DNS-320 DNS-325 NAS. Kirkwood-based

Re: [PATCH 1/9 v2] ARM: at91: usb ohci add dt support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:33 Wed 07 Mar , Jean-Christophe PLAGNIOL-VILLARD wrote: On 09:34 Wed 07 Mar , Russell King - ARM Linux wrote: On Wed, Mar 07, 2012 at 10:15:38AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: +static u64 at91_ohci_dma_mask = DMA_BIT_MASK(32); + +static int __devinit

[PATCH 1/1] of: add coherent dma-mask binding

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
This will allow each device to specify its coherent-dma-mask The default behavior the set it to DMA_BIT_MASK(32) if none specified is keeped. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/of/platform.c | 15 ++- 1 files changed, 14 insertions(+),

Re: [PATCH v8 15/21] tegra: fdt: Add function to return peripheral/clock ID

2012-03-07 Thread Stephen Warren
On 03/06/2012 08:10 PM, Simon Glass wrote: A common requirement is to find the clock ID for a peripheral. This is the second cell of the 'clocks' property (the first being the phandle itself). Signed-off-by: Simon Glass s...@chromium.org ... Changes in v8: - Only include

Re: [PATCH v8 21/21] tegra: fdt: Enable FDT support for Ventana

2012-03-07 Thread Stephen Warren
On 03/06/2012 08:10 PM, Simon Glass wrote: From: Tom Warren twar...@nvidia.com This switches Ventana over to use FDT for run-time config instead of CONFIG options. At present Ventana does not have its own device tree file - it just uses the Seaboard one. But there's a Ventana-specific

Re: [PATCH v8 21/21] tegra: fdt: Enable FDT support for Ventana

2012-03-07 Thread Simon Glass
Hi Stephen, On Wed, Mar 7, 2012 at 9:10 AM, Stephen Warren swar...@wwwdotorg.org wrote: On 03/06/2012 08:10 PM, Simon Glass wrote: From: Tom Warren twar...@nvidia.com This switches Ventana over to use FDT for run-time config instead of CONFIG options. At present Ventana does not have its

Re: [PATCH 1/5 v2] i2c/gpio: add DT support

2012-03-07 Thread Rob Herring
On 02/29/2012 08:20 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: linux-...@vger.kernel.org Cc: devicetree-discuss@lists.ozlabs.org --- v2: use devm_kzalloc use

Re: [PATCH 1/5 v2] i2c/gpio: add DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:16 Wed 07 Mar , Rob Herring wrote: On 02/29/2012 08:20 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Nicolas Ferre nicolas.fe...@atmel.com Cc: linux-...@vger.kernel.org Cc:

Re: [PATCH 1/1] of: add dma-mask binding

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:59 Wed 07 Mar , Rob Herring wrote: On 03/07/2012 05:26 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: This will allow each device to specify its dma-mask The microblaze architecture hook is keep temporary if no dma-mask is specified int the DT Signed-off-by: Jean-Christophe

Re: [PATCH 6/6] ARM: at91: add Shutdown Controller (SHDWC) DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 20:24 Fri 02 Mar , Arnd Bergmann wrote: On Friday 02 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: + } + + if (of_device_is_compatible(np, atmel,at91sam9x5-shdwc)) { + have_rtt = false; + have_rtc = true; + } else if

Re: [PATCH 0/6] AT91 more DT bindings

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, Rob is ok for you? Best Regards, J. On 20:28 Fri 02 Mar , Jean-Christophe PLAGNIOL-VILLARD wrote: HI, The following patch series add the bindings for: - PMC - SDRAM/DDR Controller - Reset Controller - Shutdown Controller The following

RE: [PATCH v8 21/21] tegra: fdt: Enable FDT support for Ventana

2012-03-07 Thread Tom Warren
Simon/Stephen, -Original Message- From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass Sent: Wednesday, March 07, 2012 10:15 AM To: Stephen Warren Cc: U-Boot Mailing List; Tom Warren; linux-te...@vger.kernel.org; Jerry Van Baren; Devicetree Discuss Subject: Re:

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Jason Cooper wrote: + serial@f1012000 { + compatible = ns16550a; + reg = 0xf1012000 0xff; + reg-shift = 2; + interrupts = 33; + clock-frequency = 2; + }; I just noticed

Re: [PATCH 08/14] ARM: kirkwood: use devicetree for rtc-mv

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Jason Cooper wrote: + + rtc@f1010300 { + compatible = mrvl,kirkwood-rtc, mrvl,orion-rtc; + reg = 0xf1010300 0x1f; + interrupts = 53; + }; }; Same as with the uart, this length should be 0x20 instead of 0x1f.

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Jason
On Wed, Mar 07, 2012 at 06:31:31PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason Cooper wrote: + serial@f1012000 { + compatible = ns16550a; + reg = 0xf1012000 0xff; + reg-shift = 2; + interrupts = 33; +

Re: [PATCH 14/14] ARM: kirkwood: use devicetree to init sata_mv

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Jason Cooper wrote: @@ -504,6 +504,16 @@ static int __init kirkwood_clock_gate(void) kirkwood_clk_ctrl |= CGC_USB0; of_node_put(np); } + + np = of_find_compatible_node(NULL, NULL, mrvl,orion-sata); + if (np

Re: [PATCH 14/14] ARM: kirkwood: use devicetree to init sata_mv

2012-03-07 Thread Jason
On Wed, Mar 07, 2012 at 06:40:09PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason Cooper wrote: @@ -504,6 +504,16 @@ static int __init kirkwood_clock_gate(void) kirkwood_clk_ctrl |= CGC_USB0; of_node_put(np); } + + np =

Re: [PATCH 6/6] ARM: at91: add Shutdown Controller (SHDWC) DT support

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: On 20:24 Fri 02 Mar , Arnd Bergmann wrote: On Friday 02 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: + } + + if (of_device_is_compatible(np, atmel,at91sam9x5-shdwc)) { + have_rtt

Re: [PATCH 14/14] ARM: kirkwood: use devicetree to init sata_mv

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Jason wrote: Is it guaranteed that it's always the first port that gets used if there is only one? If not, this might turn on the wrong one. This is the same logic as mach-kirkwood/common.c:176 void __init kirkwood_sata_init(struct mv_sata_platform_data

Re: [PATCH 6/6] ARM: at91: add Shutdown Controller (SHDWC) DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:49 Wed 07 Mar , Arnd Bergmann wrote: On Wednesday 07 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: On 20:24 Fri 02 Mar , Arnd Bergmann wrote: On Friday 02 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: + } + + if (of_device_is_compatible(np,

Re: [PATCH 1/4] fdtget: Fix multiple arg bug and add test for it

2012-03-07 Thread Jon Loeliger
There is a rather unfortunate bug in fdtget in that if multiple argument sets are provided, it just repeats displaying the first set ones for each set. Fix this bug and add a test for it. Signed-off-by: Simon Glass s...@chromium.org Applied. Thanks, jdl

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Jason
On Wed, Mar 07, 2012 at 06:31:31PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason Cooper wrote: + serial@f1012000 { + compatible = ns16550a; + reg = 0xf1012000 0xff; + reg-shift = 2; + interrupts = 33; +

Re: [PATCH 3/4] fdtget: Add -l to list the children of a node

2012-03-07 Thread Jon Loeliger
This option lists the children of each node given as a parameter, one child per line. Signed-off-by: Simon Glass s...@chromium.org I'll wait for the respin here. jdl ___ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org

Re: [PATCH 2/4] fdtget: Add -p to list the properties of a node

2012-03-07 Thread Jon Loeliger
This option lists the properties of each node given as a parameter, one property per line. Signed-off-by: Simon Glass s...@chromium.org Applied. Thanks, jdl ___ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org

Re: [PATCH 1/1] of: add dma-mask binding

2012-03-07 Thread Rob Herring
On 03/07/2012 11:34 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: On 10:59 Wed 07 Mar , Rob Herring wrote: On 03/07/2012 05:26 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: This will allow each device to specify its dma-mask The microblaze architecture hook is keep temporary if no dma-mask is

Re: [PATCH 6/6] ARM: at91: add Shutdown Controller (SHDWC) DT support

2012-03-07 Thread Rob Herring
On 03/07/2012 12:49 PM, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: On 20:24 Fri 02 Mar , Arnd Bergmann wrote: On Friday 02 March 2012, Jean-Christophe PLAGNIOL-VILLARD wrote: + } + + if (of_device_is_compatible(np,

Re: [PATCH 5/6] ARM: at91: add ram controller DT support

2012-03-07 Thread Rob Herring
On 03/02/2012 01:54 PM, Jean-Christophe PLAGNIOL-VILLARD wrote: We can now drop the call to ioremap_registers() as we have the binding for the SDRAM/DDR Controller. Drop ioremap_registers() for sam9x5 too. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Acked-by:

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Andrew Lunn
On Wed, Mar 07, 2012 at 02:27:23PM -0500, Jason wrote: On Wed, Mar 07, 2012 at 06:31:31PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason Cooper wrote: + serial@f1012000 { + compatible = ns16550a; + reg = 0xf1012000 0xff; +

Re: [PATCH v4 4/9] tegra: fdt: i2c: Add extra I2C bindings for U-Boot

2012-03-07 Thread Stephen Warren
On 03/06/2012 09:22 PM, Simon Glass wrote: Hi Stephen, On Wed, Feb 29, 2012 at 12:36 PM, Stephen Warren swar...@nvidia.com wrote: On 02/29/2012 01:32 PM, Simon Glass wrote: Hi Stephen, On Wed, Feb 29, 2012 at 12:21 PM, Stephen Warren swar...@nvidia.com wrote: On 02/29/2012 10:31 AM, Simon

Re: [PATCH v5 4/9] tegra: fdt: i2c: Add extra I2C bindings for U-Boot

2012-03-07 Thread Stephen Warren
On 03/06/2012 10:00 PM, Simon Glass wrote: Add U-Boot's peripheral clock information to the Tegra20 device tree file. Signed-off-by: Simon Glass s...@chromium.org ... diff --git a/doc/device-tree-bindings/i2c/tegra20-i2c.txt b/doc/device-tree-bindings/i2c/tegra20-i2c.txt ... +Required

Re: [RESEND PATCH 0/3] arm: tegra: dts: USB Updates for Tegra legacy mode / OTG

2012-03-07 Thread Stephen Warren
On 03/06/2012 10:04 PM, Simon Glass wrote: This little series brings in some bindings that seem useful for U-Boot. I am working mostly in U-Boot, but since there is no shared .dts repo I was asked to commit these changes to the kernel. I do not propose to update the Linux USB drivers to

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Jason wrote: Grrr. Now I'm getting frustrated. I'm trying to boot without earlyprintk. Evidently, something is wrong with the above, because the device boots all the way up (blinky lights come on), but I get no messages after the usual Uncompressing Linux...

Re: [PATCH 6/6] ARM: at91: add Shutdown Controller (SHDWC) DT support

2012-03-07 Thread Arnd Bergmann
On Wednesday 07 March 2012, Rob Herring wrote: I still don't understand: Doesn't the property already give the information? In general, you should try to encode these things in specific properties instead of checking the compatible property. Or vice-versa, the compatible

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Michael Walle
Am Mittwoch 07 März 2012, 20:27:23 schrieb Jason: On Wed, Mar 07, 2012 at 06:31:31PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason Cooper wrote: + serial@f1012000 { + compatible = ns16550a; + reg = 0xf1012000 0xff; +

Re: [PATCH v2 3/4] fdtget: Add -l to list the subnodes of a node

2012-03-07 Thread Jon Loeliger
This option lists the subnodes of each node given as a parameter, one subnode per line. Signed-off-by: Simon Glass s...@chromium.org Applied. Thanks, jdl ___ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org

Re: [PATCH v2 4/4] fdtget: Add -d to provide a default value

2012-03-07 Thread Jon Loeliger
Sometimes the requested node or property is not present in the device tree. This option provides a way of reporting a default value in this case, rather than halting with an error. Signed-off-by: Simon Glass s...@chromium.org Acked-by: David Gibson da...@gibson.dropbear.id.au --- Changes

Re: [PATCH 2/4] fdtget: Add -p to list the properties of a node

2012-03-07 Thread David Gibson
On Wed, Mar 07, 2012 at 01:27:59PM -0600, Jon Loeliger wrote: This option lists the properties of each node given as a parameter, one property per line. Signed-off-by: Simon Glass s...@chromium.org Applied. But not pushed out by the looks of it? -- David Gibson|

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Jason
On Wed, Mar 07, 2012 at 09:05:15PM +0100, Andrew Lunn wrote: On Wed, Mar 07, 2012 at 02:27:23PM -0500, Jason wrote: On Wed, Mar 07, 2012 at 06:31:31PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason Cooper wrote: + serial@f1012000 { + compatible =

[GIT PULL v4] ARM: kirkwood: fdt conversion progress

2012-03-07 Thread Jason Cooper
The following changes since commit d65b4e98d7ea3038b767b70fe8be959b2913f16d: Linux 3.3-rc3 (2012-02-08 19:21:53 -0800) are available in the git repository at: git://git.infradead.org/users/jcooper/linux-kirkwood.git kirkwood_dt --- Arnd, My first two should match up with what you have

Re: [PATCH 06/14] ARM: kirkwood: convert uart0 to devicetree.

2012-03-07 Thread Jason
On Wed, Mar 07, 2012 at 09:13:04PM +, Arnd Bergmann wrote: On Wednesday 07 March 2012, Jason wrote: Grrr. Now I'm getting frustrated. I'm trying to boot without earlyprintk. Evidently, something is wrong with the above, because the device boots all the way up (blinky lights come on),

Re: [PATCH 2/4] fdtget: Add -p to list the properties of a node

2012-03-07 Thread Jon Loeliger
On Wed, Mar 07, 2012 at 01:27:59PM -0600, Jon Loeliger wrote: This option lists the properties of each node given as a parameter, one property per line. Signed-off-by: Simon Glass s...@chromium.org Applied. But not pushed out by the looks of it? I thought it was $ git

Re: [PATCH 2/4] fdtget: Add -p to list the properties of a node

2012-03-07 Thread David Gibson
On Wed, Mar 07, 2012 at 07:25:03PM -0600, Jon Loeliger wrote: On Wed, Mar 07, 2012 at 01:27:59PM -0600, Jon Loeliger wrote: This option lists the properties of each node given as a parameter, one property per line. Signed-off-by: Simon Glass s...@chromium.org Applied.

Re: [PATCH v2 1/4] mmc: omap_hsmmc: Convert hsmmc driver to use device tree

2012-03-07 Thread Rajendra Nayak
Hi Rob/Grant, On Thursday 23 February 2012 05:31 PM, Rajendra Nayak wrote: Define dt bindings for the ti-omap-hsmmc, and adapt the driver to extract data (which was earlier passed as platform_data) from device tree. Any comments on these bindings for omap hsmmc? All the dependent

Re: [PATCH 5/6] ARM: at91: add ram controller DT support

2012-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
diff --git a/arch/arm/mach-at91/include/mach/at91sam9x5.h b/arch/arm/mach-at91/include/mach/at91sam9x5.h index a297a77..88e43d5 100644 --- a/arch/arm/mach-at91/include/mach/at91sam9x5.h +++ b/arch/arm/mach-at91/include/mach/at91sam9x5.h @@ -55,11 +55,6 @@ #define

Re: [PATCH v5 4/9] tegra: fdt: i2c: Add extra I2C bindings for U-Boot

2012-03-07 Thread Simon Glass
Hi Stephen, On Wed, Mar 7, 2012 at 12:39 PM, Stephen Warren swar...@wwwdotorg.org wrote: On 03/06/2012 10:00 PM, Simon Glass wrote: Add U-Boot's peripheral clock information to the Tegra20 device tree file. Signed-off-by: Simon Glass s...@chromium.org ... diff --git