]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arm/boot/dts/pxa3xx.dtsi
ARM: dts: pxa: add dma engine node to pxa3xx-nand
[karo-tx-linux.git] / arch / arm / boot / dts / pxa3xx.dtsi
1 /* The pxa3xx skeleton simply augments the 2xx version */
2 #include "pxa2xx.dtsi"
3
4 / {
5         model = "Marvell PXA3xx familiy SoC";
6         compatible = "marvell,pxa3xx";
7
8         pxabus {
9                 pdma: dma-controller@40000000 {
10                         compatible = "marvell,pdma-1.0";
11                         reg = <0x40000000 0x10000>;
12                         interrupts = <25>;
13                         #dma-channels = <32>;
14                         #dma-cells = <2>;
15                         status = "okay";
16                 };
17
18                 pwri2c: i2c@40f500c0 {
19                         compatible = "mrvl,pwri2c";
20                         reg = <0x40f500c0 0x30>;
21                         interrupts = <6>;
22                         clocks = <&clks CLK_PWRI2C>;
23                         #address-cells = <0x1>;
24                         #size-cells = <0>;
25                         status = "disabled";
26                 };
27
28                 nand0: nand@43100000 {
29                         compatible = "marvell,pxa3xx-nand";
30                         reg = <0x43100000 90>;
31                         interrupts = <45>;
32                         clocks = <&clks CLK_NAND>;
33                         dmas = <&pdma 97>;
34                         dma-names = "data";
35                         #address-cells = <1>;
36                         #size-cells = <1>;      
37                         status = "disabled";
38                 };
39
40                 pxairq: interrupt-controller@40d00000 {
41                         marvell,intc-priority;
42                         marvell,intc-nr-irqs = <56>;
43                 };
44
45                 gpio: gpio@40e00000 {
46                         compatible = "intel,pxa3xx-gpio";
47                         reg = <0x40e00000 0x10000>;
48                         clocks = <&clks CLK_GPIO>;
49                         interrupt-names = "gpio0", "gpio1", "gpio_mux";
50                         interrupts = <8 9 10>;
51                         gpio-controller;
52                         #gpio-cells = <0x2>;
53                         interrupt-controller;
54                         #interrupt-cells = <0x2>;
55                 };
56         };
57
58         clocks {
59                /*
60                 * The muxing of external clocks/internal dividers for osc* clock
61                 * sources has been hidden under the carpet by now.
62                 */
63                 #address-cells = <1>;
64                 #size-cells = <1>;
65                 ranges;
66
67                 clks: pxa3xx_clks@41300004 {
68                         compatible = "marvell,pxa300-clocks";
69                         #clock-cells = <1>;
70                         status = "okay";
71                 };
72         };
73
74         timer@40a00000 {
75                 compatible = "marvell,pxa-timer";
76                 reg = <0x40a00000 0x20>;
77                 interrupts = <26>;
78                 clocks = <&clks CLK_OSTIMER>;
79                 status = "okay";
80         };
81 };