[v2 PATCH 01/14] of: add dma-mask binding

2012-12-03 Thread Wenyou Yang
From: Jean-Christophe PLAGNIOL-VILLARD This will allow each device to specify its dma-mask for this we use the coherent_dma_mask as pointer. By default the dma-mask will be set to DMA_BIT_MASK(32). The microblaze architecture hook is drop Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: gran

[v2 PATCH 02/14] of_spi: add generic binding support to specify cs gpio

2012-12-03 Thread Wenyou Yang
, [PATCH] of_spi: add generic binding support to specify cs gpio and merge the patch from Richard Genoud, [PATCH] [BUG] SPI: array out of bound => no CS Could you sign your signature in this patch? Best Regards, Wenyou Yang Documentation/devicetree/bindings/spi/spi-bus.txt |6 +++ driv

[v2 PATCH 07/14] spi/atmel_spi: add DT support

2012-12-03 Thread Wenyou Yang
From: Jean-Christophe PLAGNIOL-VILLARD The atmel_spi use only gpio for chip select. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [wenyou.y...@atmel.com: Add driver data and compatible "atmel,at91sam9260-spi", "atmel,at91sam9x5-spi"] Signed-off-by: Wenyou Yang Cc

[PATCH 01/17] of: add dma-mask binding

2012-11-14 Thread Wenyou Yang
From: Jean-Christophe PLAGNIOL-VILLARD This will allow each device to specify its dma-mask for this we use the coherent_dma_mask as pointer. By default the dma-mask will be set to DMA_BIT_MASK(32). The microblaze architecture hook is drop Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: gran

[PATCH 02/17] of_spi: add generic binding support to specify cs gpio

2012-11-14 Thread Wenyou Yang
, [PATCH] of_spi: add generic binding support to specify cs gpio and merged the patch from Richard Genoud, [PATCH] [BUG] SPI: array out of bound => no CS Could you sign your signature in this patch? Best Regards, Wenyou Yang Documentation/devicetree/bindings/spi/spi-bus.txt |

[PATCH 11/17] spi/atmel_spi: add DT support

2012-11-14 Thread Wenyou Yang
signature in this patch? Best Regards, Wenyou Yang .../devicetree/bindings/spi/spi_atmel.txt | 23 drivers/spi/spi-atmel.c| 21 ++ 2 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 Documentation

[PATCH 13/17] spi/atmel_spi: add function to read the spi data from the dts

2012-11-14 Thread Wenyou Yang
The spi data include: dma_type and version. dma_type to decide the SPI xfer mode: = 1(pdc), = 2(dmaengine), 0(no dma, using PIO) version to give the SPI ip version. Signed-off-by: Wenyou Yang Cc: grant.lik...@secretlab.ca Cc: r...@landley.net Cc: devicetree-discuss@lists.ozlabs.org Cc: linux

[PATCH 09/11] watchdog/at91sam9_wdt: add support to device tree

2012-11-14 Thread Wenyou Yang
Signed-off-by: Wenyou Yang Cc: grant.lik...@secretlab.ca Cc: rob.herr...@calxeda.com Cc: devicetree-discuss@lists.ozlabs.org --- drivers/watchdog/at91sam9_wdt.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c

[PATCH 11/11] ARM: dts: add the watchdog nodes for atmel SoC

2012-11-14 Thread Wenyou Yang
Signed-off-by: Wenyou Yang Cc: grant.lik...@secretlab.ca Cc: rob.herr...@calxeda.com Cc: r...@landley.net Cc: li...@arm.linux.org.uk Cc: devicetree-discuss@lists.ozlabs.org Cc: linux-...@vger.kernel.org --- .../devicetree/bindings/watchdog/atmel-wdt.txt | 14 ++ arch/arm/boot

[PATCH 01/17] of: add dma-mask binding

2013-03-22 Thread Wenyou Yang
From: Jean-Christophe PLAGNIOL-VILLARD This will allow each device to specify its dma-mask for this we use the coherent_dma_mask as pointer. By default the dma-mask will be set to DMA_BIT_MASK(32). The microblaze architecture hook is drop Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: gran

[PATCH 02/17] of_spi: add generic binding support to specify cs gpio

2013-03-22 Thread Wenyou Yang
From: Jean-Christophe PLAGNIOL-VILLARD This will allow to use gpio for chip select with no modification in the driver binding When use the cs-gpios, the gpio number will be passed via the cs_gpio field and the number of chip select will automatically increased. Signed-off-by: Jean-Christophe PL