1/*
2 * Qualcomm APQ8096 based Dragonboard 820C board device tree source
3 *
4 * (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
5 *
6 * SPDX-License-Identifier:	GPL-2.0+
7 */
8
9/dts-v1/;
10
11#include "skeleton64.dtsi"
12
13/ {
14	model = "Qualcomm Technologies, Inc. DB820c";
15	compatible = "arrow,apq8096-db820c", "qcom,apq8096-sbc";
16	#address-cells = <2>;
17	#size-cells = <2>;
18
19	aliases {
20		serial0 = &blsp2_uart1;
21	};
22
23	chosen {
24		stdout-path = "serial0:115200n8";
25	};
26
27	memory {
28		device_type = "memory";
29		reg = <0 0x80000000 0 0xc0000000>;
30	};
31
32	psci {
33		compatible = "arm,psci-1.0";
34		method = "smc";
35	};
36
37	soc: soc {
38		#address-cells = <1>;
39		#size-cells = <1>;
40		ranges = <0 0 0 0xffffffff>;
41		compatible = "simple-bus";
42
43		gcc: clock-controller@300000 {
44			compatible = "qcom,gcc-msm8996";
45			#clock-cells = <1>;
46			#reset-cells = <1>;
47			#power-domain-cells = <1>;
48			reg = <0x300000 0x90000>;
49		};
50
51		blsp2_uart1: serial@75b0000 {
52			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
53			reg = <0x75b0000 0x1000>;
54		};
55
56		sdhc2: sdhci@74a4900 {
57			 compatible = "qcom,sdhci-msm-v4";
58			 reg = <0x74a4900 0x314>, <0x74a4000 0x800>;
59			 index = <0x0>;
60			 bus-width = <4>;
61			 clock = <&gcc 0>;
62			clock-frequency = <200000000>;
63		 };
64
65		spmi@400f000 {
66			compatible = "qcom,spmi-pmic-arb";
67			reg = <0x400f800 0x200>,
68			      <0x4400000 0x400000>,
69			      <0x4c00000 0x400000>;
70			#address-cells = <0x1>;
71			#size-cells = <0x1>;
72
73			pmic0: pm8994@0 {
74				compatible = "qcom,spmi-pmic";
75				reg = <0x0 0x1>;
76				#address-cells = <0x1>;
77				#size-cells = <0x1>;
78
79				pm8994_pon: pm8994_pon@800 {
80					compatible = "qcom,pm8994-pwrkey";
81					reg = <0x800 0x96>;
82					#gpio-cells = <2>;
83					gpio-controller;
84					gpio-bank-name="pm8994_key.";
85				};
86
87				pm8994_gpios: pm8994_gpios@c000 {
88					compatible = "qcom,pm8994-gpio";
89					reg = <0xc000 0x400>;
90					gpio-controller;
91					gpio-count = <24>;
92					#gpio-cells = <2>;
93					gpio-bank-name="pm8994.";
94				};
95			};
96
97			pmic1: pm8994@1 {
98				compatible = "qcom,spmi-pmic";
99				reg = <0x1 0x1>;
100				#address-cells = <0x1>;
101				#size-cells = <0x1>;
102			};
103		};
104	};
105
106};
107
108#include "dragonboard820c-uboot.dtsi"
109