aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/boot
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-04-24 12:49:37 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-04-24 12:49:37 -0400
commitd6a4c0e5d3d433ef296f8f417e835329a834a256 (patch)
treea65de394ea1afeeccee9f84dc7e6cd21e2660639 /arch/arm64/boot
parent474095e46cd14421821da3201a9fd6a4c070996b (diff)
parentcdde0e61cf2d41123604c6c9d8f09ef5c23464ee (diff)
Merge branch 'for-linus' of git://git.infradead.org/users/vkoul/slave-dma
Pull slave-dmaengine updates from Vinod Koul: - new drivers for: - Ingenic JZ4780 controller - APM X-Gene controller - Freescale RaidEngine device - Renesas USB Controller - remove device_alloc_chan_resources dummy handlers - sh driver cleanups for peri peri and related emmc and asoc patches as well - fixes and enhancements spread over the drivers * 'for-linus' of git://git.infradead.org/users/vkoul/slave-dma: (59 commits) dmaengine: dw: don't prompt for DW_DMAC_CORE dmaengine: shdmac: avoid unused variable warnings dmaengine: fix platform_no_drv_owner.cocci warnings dmaengine: pch_dma: fix memory leak on failure path in pch_dma_probe() dmaengine: at_xdmac: unlock spin lock before return dmaengine: xgene: devm_ioremap() returns NULL on error dmaengine: xgene: buffer overflow in xgene_dma_init_channels() dmaengine: usb-dmac: Fix dereferencing freed memory 'desc' dmaengine: sa11x0: report slave capabilities to upper layers dmaengine: vdma: Fix compilation warnings dmaengine: fsl_raid: statify fsl_re_chan_probe dmaengine: Driver support for FSL RaidEngine device. dmaengine: xgene_dma_init_ring_mngr() can be static Documentation: dma: Add documentation for the APM X-Gene SoC DMA device DTS binding arm64: dts: Add APM X-Gene SoC DMA device and DMA clock DTS nodes dmaengine: Add support for APM X-Gene SoC DMA engine driver dmaengine: usb-dmac: Add Renesas USB DMA Controller (USB-DMAC) driver dmaengine: renesas,usb-dmac: Add device tree bindings documentation dmaengine: edma: fixed wrongly initialized data parameter to the edma callback dmaengine: ste_dma40: fix implicit conversion ...
Diffstat (limited to 'arch/arm64/boot')
-rw-r--r--arch/arm64/boot/dts/apm/apm-storm.dtsi26
1 files changed, 26 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/apm/apm-storm.dtsi b/arch/arm64/boot/dts/apm/apm-storm.dtsi
index e74f6e0a208c..c8d3e0e86678 100644
--- a/arch/arm64/boot/dts/apm/apm-storm.dtsi
+++ b/arch/arm64/boot/dts/apm/apm-storm.dtsi
@@ -102,6 +102,7 @@
102 #address-cells = <2>; 102 #address-cells = <2>;
103 #size-cells = <2>; 103 #size-cells = <2>;
104 ranges; 104 ranges;
105 dma-ranges = <0x0 0x0 0x0 0x0 0x400 0x0>;
105 106
106 clocks { 107 clocks {
107 #address-cells = <2>; 108 #address-cells = <2>;
@@ -362,6 +363,15 @@
362 reg-names = "csr-reg"; 363 reg-names = "csr-reg";
363 clock-output-names = "pcie4clk"; 364 clock-output-names = "pcie4clk";
364 }; 365 };
366
367 dmaclk: dmaclk@1f27c000 {
368 compatible = "apm,xgene-device-clock";
369 #clock-cells = <1>;
370 clocks = <&socplldiv2 0>;
371 reg = <0x0 0x1f27c000 0x0 0x1000>;
372 reg-names = "csr-reg";
373 clock-output-names = "dmaclk";
374 };
365 }; 375 };
366 376
367 pcie0: pcie@1f2b0000 { 377 pcie0: pcie@1f2b0000 {
@@ -684,5 +694,21 @@
684 interrupts = <0x0 0x41 0x4>; 694 interrupts = <0x0 0x41 0x4>;
685 clocks = <&rngpkaclk 0>; 695 clocks = <&rngpkaclk 0>;
686 }; 696 };
697
698 dma: dma@1f270000 {
699 compatible = "apm,xgene-storm-dma";
700 device_type = "dma";
701 reg = <0x0 0x1f270000 0x0 0x10000>,
702 <0x0 0x1f200000 0x0 0x10000>,
703 <0x0 0x1b008000 0x0 0x2000>,
704 <0x0 0x1054a000 0x0 0x100>;
705 interrupts = <0x0 0x82 0x4>,
706 <0x0 0xb8 0x4>,
707 <0x0 0xb9 0x4>,
708 <0x0 0xba 0x4>,
709 <0x0 0xbb 0x4>;
710 dma-coherent;
711 clocks = <&dmaclk 0>;
712 };
687 }; 713 };
688}; 714};