91 lines
2.1 KiB
Plaintext
91 lines
2.1 KiB
Plaintext
|
/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 and
|
||
|
* only version 2 as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*/
|
||
|
|
||
|
/include/ "skeleton.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Qualcomm MSM SAMARIUM";
|
||
|
compatible = "qcom,msmsamarium";
|
||
|
interrupt-parent = <&intc>;
|
||
|
soc: soc { };
|
||
|
};
|
||
|
|
||
|
/include/ "msmsamarium-ion.dtsi"
|
||
|
|
||
|
&soc {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <1>;
|
||
|
ranges;
|
||
|
|
||
|
intc: interrupt-controller@f9000000 {
|
||
|
compatible = "qcom,msm-qgic2";
|
||
|
interrupt-controller;
|
||
|
#interrupt-cells = <3>;
|
||
|
reg = <0xf9000000 0x1000>,
|
||
|
<0xf9002000 0x1000>;
|
||
|
};
|
||
|
|
||
|
msmgpio: gpio@fd510000 {
|
||
|
compatible = "qcom,msm-gpio";
|
||
|
gpio-controller;
|
||
|
#gpio-cells = <2>;
|
||
|
interrupt-controller;
|
||
|
#interrupt-cells = <2>;
|
||
|
reg = <0xfd510000 0x4000>;
|
||
|
ngpio = <145>;
|
||
|
interrupts = <0 208 0>;
|
||
|
qcom,direct-connect-irqs = <8>;
|
||
|
};
|
||
|
|
||
|
timer {
|
||
|
compatible = "arm,armv7-timer";
|
||
|
interrupts = <1 2 0 1 3 0>;
|
||
|
clock-frequency = <19200000>;
|
||
|
};
|
||
|
|
||
|
uartblsp0dm2: serial@f991f000 {
|
||
|
compatible = "qcom,msm-lsuart-v14";
|
||
|
reg = <0xf991f000 0x1000>;
|
||
|
interrupts = <0 109 0>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
|
||
|
qcom,msm-imem@fe805000 {
|
||
|
compatible = "qcom,msm-imem";
|
||
|
reg = <0xfe805000 0x1000>; /* Address and size of IMEM */
|
||
|
};
|
||
|
|
||
|
sdcc1: qcom,sdcc@f9824000 {
|
||
|
cell-index = <1>; /* SDC1 eMMC slot */
|
||
|
compatible = "qcom,msm-sdcc";
|
||
|
reg = <0xf9824000 0x800>;
|
||
|
reg-names = "core_mem";
|
||
|
interrupts = <0 123 0>;
|
||
|
interrupt-names = "core_irq";
|
||
|
|
||
|
qcom,bus-width = <8>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
|
||
|
sdcc2: qcom,sdcc@f98a4000 {
|
||
|
cell-index = <2>; /* SDC2 SD card slot */
|
||
|
compatible = "qcom,msm-sdcc";
|
||
|
reg = <0xf98a4000 0x800>;
|
||
|
reg-names = "core_mem";
|
||
|
interrupts = <0 125 0>;
|
||
|
interrupt-names = "core_irq";
|
||
|
|
||
|
qcom,bus-width = <4>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
};
|