]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - arch/arm/boot/dts/pxa27x.dtsi
Merge tag 'xtensa-20190715' of git://github.com/jcmvbkbc/linux-xtensa
[mirror_ubuntu-eoan-kernel.git] / arch / arm / boot / dts / pxa27x.dtsi
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
aff18a67 2/* The pxa3xx skeleton simply augments the 2xx version */
85fe55c1 3#include "pxa2xx.dtsi"
d96672e6 4#include "dt-bindings/clock/pxa-clock.h"
aff18a67
DM
5
6/ {
7 model = "Marvell PXA27x familiy SoC";
8 compatible = "marvell,pxa27x";
9
10 pxabus {
0cd49141
RJ
11 pdma: dma-controller@40000000 {
12 compatible = "marvell,pdma-1.0";
13 reg = <0x40000000 0x10000>;
14 interrupts = <25>;
15 #dma-channels = <32>;
16 #dma-cells = <2>;
72b195cb 17 #dma-requests = <75>;
0cd49141
RJ
18 status = "okay";
19 };
20
aff18a67
DM
21 pxairq: interrupt-controller@40d00000 {
22 marvell,intc-priority;
23 marvell,intc-nr-irqs = <34>;
24 };
e7b4a8df 25
ca91c703
RJ
26 pinctrl: pinctrl@40e00000 {
27 reg = <0x40e00054 0x20 0x40e0000c 0xc 0x40e0010c 4
28 0x40f00020 0x10>;
29 compatible = "marvell,pxa27x-pinctrl";
30 };
31
d96672e6
RJ
32 gpio: gpio@40e00000 {
33 compatible = "intel,pxa27x-gpio";
ca91c703 34 gpio-ranges = <&pinctrl 0 0 128>;
d96672e6
RJ
35 clocks = <&clks CLK_NONE>;
36 };
37
c40ad242 38 usb0: usb@4c000000 {
0ec19396
RJ
39 compatible = "marvell,pxa-ohci";
40 reg = <0x4c000000 0x10000>;
41 interrupts = <3>;
42 clocks = <&clks CLK_USBHOST>;
43 status = "disabled";
44 };
45
e7b4a8df
MD
46 pwm0: pwm@40b00000 {
47 compatible = "marvell,pxa270-pwm", "marvell,pxa250-pwm";
48 reg = <0x40b00000 0x10>;
49 #pwm-cells = <1>;
d96672e6 50 clocks = <&clks CLK_PWM0>;
e7b4a8df
MD
51 };
52
53 pwm1: pwm@40b00010 {
54 compatible = "marvell,pxa270-pwm", "marvell,pxa250-pwm";
55 reg = <0x40b00010 0x10>;
56 #pwm-cells = <1>;
d96672e6 57 clocks = <&clks CLK_PWM1>;
e7b4a8df
MD
58 };
59
60 pwm2: pwm@40c00000 {
61 compatible = "marvell,pxa270-pwm", "marvell,pxa250-pwm";
62 reg = <0x40c00000 0x10>;
63 #pwm-cells = <1>;
d96672e6 64 clocks = <&clks CLK_PWM0>;
e7b4a8df
MD
65 };
66
67 pwm3: pwm@40c00010 {
68 compatible = "marvell,pxa270-pwm", "marvell,pxa250-pwm";
69 reg = <0x40c00010 0x10>;
70 #pwm-cells = <1>;
d96672e6 71 clocks = <&clks CLK_PWM1>;
e7b4a8df 72 };
f374d1e7 73
8a1ecc01 74 pwri2c: i2c@40f00180 {
f374d1e7
RJ
75 compatible = "mrvl,pxa-i2c";
76 reg = <0x40f00180 0x24>;
77 interrupts = <6>;
d96672e6 78 clocks = <&clks CLK_PWRI2C>;
fb18539b
RJ
79 #address-cells = <0x1>;
80 #size-cells = <0>;
f374d1e7
RJ
81 status = "disabled";
82 };
d96672e6 83
361818cd
RJ
84 pxa27x_udc: udc@40600000 {
85 compatible = "marvell,pxa270-udc";
86 reg = <0x40600000 0x10000>;
87 interrupts = <11>;
88 clocks = <&clks CLK_USB>;
89 status = "disabled";
90 };
8dcba817
RJ
91
92 keypad: keypad@41500000 {
93 compatible = "marvell,pxa27x-keypad";
94 reg = <0x41500000 0x4c>;
95 interrupts = <4>;
96 clocks = <&clks CLK_KEYPAD>;
97 status = "disabled";
98 };
796b7dcf
RJ
99
100 pxa_camera: imaging@50000000 {
101 compatible = "marvell,pxa270-qci";
102 reg = <0x50000000 0x1000>;
103 interrupts = <33>;
104 dmas = <&pdma 68 0 /* Y channel */
105 &pdma 69 0 /* U channel */
106 &pdma 70 0>; /* V channel */
107 dma-names = "CI_Y", "CI_U", "CI_V";
108
109 clocks = <&clks CLK_CAMERA>;
110 clock-names = "ciclk";
111 clock-frequency = <5000000>;
112 clock-output-names = "qci_mclk";
113
114 status = "disabled";
115 };
24a610eb
RJ
116
117 rtc@40900000 {
118 clocks = <&clks CLK_OSC32k768>;
119 };
aff18a67 120 };
85fe55c1
RJ
121
122 clocks {
123 /*
124 * The muxing of external clocks/internal dividers for osc* clock
125 * sources has been hidden under the carpet by now.
126 */
127 #address-cells = <1>;
128 #size-cells = <1>;
129 ranges;
130
d96672e6
RJ
131 clks: pxa2xx_clks@41300004 {
132 compatible = "marvell,pxa270-clocks";
85fe55c1
RJ
133 #clock-cells = <1>;
134 status = "okay";
135 };
136 };
8dd3075c
RJ
137
138 timer@40a00000 {
139 compatible = "marvell,pxa-timer";
140 reg = <0x40a00000 0x20>;
141 interrupts = <26>;
142 clocks = <&clks CLK_OSTIMER>;
143 status = "okay";
144 };
74e382b8
RJ
145
146 pxa270_opp_table: opp_table0 {
147 compatible = "operating-points-v2";
148
a8702719 149 opp-104000000 {
74e382b8
RJ
150 opp-hz = /bits/ 64 <104000000>;
151 opp-microvolt = <900000 900000 1705000>;
152 clock-latency-ns = <20>;
153 };
a8702719 154 opp-156000000 {
74e382b8
RJ
155 opp-hz = /bits/ 64 <156000000>;
156 opp-microvolt = <1000000 1000000 1705000>;
157 clock-latency-ns = <20>;
158 };
a8702719 159 opp-208000000 {
74e382b8
RJ
160 opp-hz = /bits/ 64 <208000000>;
161 opp-microvolt = <1180000 1180000 1705000>;
162 clock-latency-ns = <20>;
163 };
a8702719 164 opp-312000000 {
74e382b8
RJ
165 opp-hz = /bits/ 64 <312000000>;
166 opp-microvolt = <1250000 1250000 1705000>;
167 clock-latency-ns = <20>;
168 };
a8702719 169 opp-416000000 {
74e382b8
RJ
170 opp-hz = /bits/ 64 <416000000>;
171 opp-microvolt = <1350000 1350000 1705000>;
172 clock-latency-ns = <20>;
173 };
a8702719 174 opp-520000000 {
74e382b8
RJ
175 opp-hz = /bits/ 64 <520000000>;
176 opp-microvolt = <1450000 1450000 1705000>;
177 clock-latency-ns = <20>;
178 };
a8702719 179 opp-624000000 {
74e382b8
RJ
180 opp-hz = /bits/ 64 <624000000>;
181 opp-microvolt = <1550000 1550000 1705000>;
182 clock-latency-ns = <20>;
183 };
184 };
aff18a67 185};