mirror of https://gitee.com/openkylin/linux.git
ARM: dts: ipq4019: Move xo and timer nodes to SoC dtsi
The node for xo and timer belong to the SoC DTS file. Else, new board DT files may not inherit these nodes. Signed-off-by: Varadarajan Narayanan <varada@codeaurora.org> Signed-off-by: Andy Gross <andy.gross@linaro.org>
This commit is contained in:
parent
ba4ca27ba9
commit
75ea98acf7
|
@ -20,26 +20,7 @@ / {
|
||||||
model = "Qualcomm Technologies, Inc. IPQ4019/AP-DK01.1";
|
model = "Qualcomm Technologies, Inc. IPQ4019/AP-DK01.1";
|
||||||
compatible = "qcom,ipq4019";
|
compatible = "qcom,ipq4019";
|
||||||
|
|
||||||
clocks {
|
|
||||||
xo: xo {
|
|
||||||
compatible = "fixed-clock";
|
|
||||||
clock-frequency = <48000000>;
|
|
||||||
#clock-cells = <0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
soc {
|
soc {
|
||||||
|
|
||||||
|
|
||||||
timer {
|
|
||||||
compatible = "arm,armv7-timer";
|
|
||||||
interrupts = <1 2 0xf08>,
|
|
||||||
<1 3 0xf08>,
|
|
||||||
<1 4 0xf08>,
|
|
||||||
<1 1 0xf08>;
|
|
||||||
clock-frequency = <48000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pinctrl@1000000 {
|
pinctrl@1000000 {
|
||||||
serial_pins: serial_pinmux {
|
serial_pins: serial_pinmux {
|
||||||
mux {
|
mux {
|
||||||
|
|
|
@ -96,6 +96,21 @@ sleep_clk: sleep_clk {
|
||||||
clock-frequency = <32768>;
|
clock-frequency = <32768>;
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xo: xo {
|
||||||
|
compatible = "fixed-clock";
|
||||||
|
clock-frequency = <48000000>;
|
||||||
|
#clock-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
timer {
|
||||||
|
compatible = "arm,armv7-timer";
|
||||||
|
interrupts = <1 2 0xf08>,
|
||||||
|
<1 3 0xf08>,
|
||||||
|
<1 4 0xf08>,
|
||||||
|
<1 1 0xf08>;
|
||||||
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
soc {
|
soc {
|
||||||
|
|
Loading…
Reference in New Issue