xref: /freebsd/sys/contrib/device-tree/src/arm/cnxt/cx92755.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot/*
2*f126890aSEmmanuel Vadot * Device Tree Include file for the Conexant Digicolor CX92755 SoC
3*f126890aSEmmanuel Vadot *
4*f126890aSEmmanuel Vadot * Author: Baruch Siach <baruch@tkos.co.il>
5*f126890aSEmmanuel Vadot *
6*f126890aSEmmanuel Vadot *  Copyright (C) 2014 Paradox Innovation Ltd.
7*f126890aSEmmanuel Vadot *
8*f126890aSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms
9*f126890aSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual
10*f126890aSEmmanuel Vadot * licensing only applies to this file, and not this project as a
11*f126890aSEmmanuel Vadot * whole.
12*f126890aSEmmanuel Vadot *
13*f126890aSEmmanuel Vadot *  a) This file is free software; you can redistribute it and/or
14*f126890aSEmmanuel Vadot *     modify it under the terms of the GNU General Public License as
15*f126890aSEmmanuel Vadot *     published by the Free Software Foundation; either version 2 of the
16*f126890aSEmmanuel Vadot *     License, or (at your option) any later version.
17*f126890aSEmmanuel Vadot *
18*f126890aSEmmanuel Vadot *     This file is distributed in the hope that it will be useful,
19*f126890aSEmmanuel Vadot *     but WITHOUT ANY WARRANTY; without even the implied warranty of
20*f126890aSEmmanuel Vadot *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21*f126890aSEmmanuel Vadot *     GNU General Public License for more details.
22*f126890aSEmmanuel Vadot *
23*f126890aSEmmanuel Vadot * Or, alternatively,
24*f126890aSEmmanuel Vadot *
25*f126890aSEmmanuel Vadot *  b) Permission is hereby granted, free of charge, to any person
26*f126890aSEmmanuel Vadot *     obtaining a copy of this software and associated documentation
27*f126890aSEmmanuel Vadot *     files (the "Software"), to deal in the Software without
28*f126890aSEmmanuel Vadot *     restriction, including without limitation the rights to use,
29*f126890aSEmmanuel Vadot *     copy, modify, merge, publish, distribute, sublicense, and/or
30*f126890aSEmmanuel Vadot *     sell copies of the Software, and to permit persons to whom the
31*f126890aSEmmanuel Vadot *     Software is furnished to do so, subject to the following
32*f126890aSEmmanuel Vadot *     conditions:
33*f126890aSEmmanuel Vadot *
34*f126890aSEmmanuel Vadot *     The above copyright notice and this permission notice shall be
35*f126890aSEmmanuel Vadot *     included in all copies or substantial portions of the Software.
36*f126890aSEmmanuel Vadot *
37*f126890aSEmmanuel Vadot *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
38*f126890aSEmmanuel Vadot *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
39*f126890aSEmmanuel Vadot *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
40*f126890aSEmmanuel Vadot *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
41*f126890aSEmmanuel Vadot *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
42*f126890aSEmmanuel Vadot *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
43*f126890aSEmmanuel Vadot *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
44*f126890aSEmmanuel Vadot *     OTHER DEALINGS IN THE SOFTWARE.
45*f126890aSEmmanuel Vadot */
46*f126890aSEmmanuel Vadot
47*f126890aSEmmanuel Vadot/ {
48*f126890aSEmmanuel Vadot	#address-cells = <1>;
49*f126890aSEmmanuel Vadot	#size-cells = <1>;
50*f126890aSEmmanuel Vadot	compatible = "cnxt,cx92755";
51*f126890aSEmmanuel Vadot
52*f126890aSEmmanuel Vadot	interrupt-parent = <&intc>;
53*f126890aSEmmanuel Vadot
54*f126890aSEmmanuel Vadot	cpus {
55*f126890aSEmmanuel Vadot		#address-cells = <1>;
56*f126890aSEmmanuel Vadot		#size-cells = <0>;
57*f126890aSEmmanuel Vadot		cpu@0 {
58*f126890aSEmmanuel Vadot			device_type = "cpu";
59*f126890aSEmmanuel Vadot			compatible = "arm,cortex-a8";
60*f126890aSEmmanuel Vadot			reg = <0x0>;
61*f126890aSEmmanuel Vadot		};
62*f126890aSEmmanuel Vadot	};
63*f126890aSEmmanuel Vadot
64*f126890aSEmmanuel Vadot	main_clk: main_clk {
65*f126890aSEmmanuel Vadot		compatible = "fixed-clock";
66*f126890aSEmmanuel Vadot		#clock-cells = <0>;
67*f126890aSEmmanuel Vadot		clock-frequency  = <200000000>;
68*f126890aSEmmanuel Vadot	};
69*f126890aSEmmanuel Vadot
70*f126890aSEmmanuel Vadot	intc: interrupt-controller@f0000040 {
71*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-ic";
72*f126890aSEmmanuel Vadot		interrupt-controller;
73*f126890aSEmmanuel Vadot		#interrupt-cells = <1>;
74*f126890aSEmmanuel Vadot		reg = <0xf0000040 0x40>;
75*f126890aSEmmanuel Vadot		syscon = <&uc_regs>;
76*f126890aSEmmanuel Vadot	};
77*f126890aSEmmanuel Vadot
78*f126890aSEmmanuel Vadot	timer@f0000fc0 {
79*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-timer";
80*f126890aSEmmanuel Vadot		reg = <0xf0000fc0 0x40>;
81*f126890aSEmmanuel Vadot		interrupts = <19>, <31>, <34>, <35>, <52>, <53>, <54>, <55>;
82*f126890aSEmmanuel Vadot		clocks = <&main_clk>;
83*f126890aSEmmanuel Vadot	};
84*f126890aSEmmanuel Vadot
85*f126890aSEmmanuel Vadot	rtc@f0000c30 {
86*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-rtc";
87*f126890aSEmmanuel Vadot		reg = <0xf0000c30 0x18>;
88*f126890aSEmmanuel Vadot		interrupts = <25>;
89*f126890aSEmmanuel Vadot	};
90*f126890aSEmmanuel Vadot
91*f126890aSEmmanuel Vadot	watchdog@f0000fc0 {
92*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-wdt";
93*f126890aSEmmanuel Vadot		reg = <0xf0000fc0 0x8>;
94*f126890aSEmmanuel Vadot		clocks = <&main_clk>;
95*f126890aSEmmanuel Vadot		timeout-sec = <15>;
96*f126890aSEmmanuel Vadot	};
97*f126890aSEmmanuel Vadot
98*f126890aSEmmanuel Vadot	pinctrl: pinctrl@f0000e20 {
99*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-pinctrl";
100*f126890aSEmmanuel Vadot		reg = <0xf0000e20 0x100>;
101*f126890aSEmmanuel Vadot		gpio-controller;
102*f126890aSEmmanuel Vadot		#gpio-cells = <2>;
103*f126890aSEmmanuel Vadot	};
104*f126890aSEmmanuel Vadot
105*f126890aSEmmanuel Vadot	uc_regs: syscon@f00003a0 {
106*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-uc", "syscon";
107*f126890aSEmmanuel Vadot		reg = <0xf00003a0 0x10>;
108*f126890aSEmmanuel Vadot	};
109*f126890aSEmmanuel Vadot
110*f126890aSEmmanuel Vadot	uart0: serial@f0000740 {
111*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-usart";
112*f126890aSEmmanuel Vadot		reg = <0xf0000740 0x20>;
113*f126890aSEmmanuel Vadot		clocks = <&main_clk>;
114*f126890aSEmmanuel Vadot		interrupts = <44>;
115*f126890aSEmmanuel Vadot		status = "disabled";
116*f126890aSEmmanuel Vadot	};
117*f126890aSEmmanuel Vadot
118*f126890aSEmmanuel Vadot	uart1: serial@f0000760 {
119*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-usart";
120*f126890aSEmmanuel Vadot		reg = <0xf0000760 0x20>;
121*f126890aSEmmanuel Vadot		clocks = <&main_clk>;
122*f126890aSEmmanuel Vadot		interrupts = <45>;
123*f126890aSEmmanuel Vadot		status = "disabled";
124*f126890aSEmmanuel Vadot	};
125*f126890aSEmmanuel Vadot
126*f126890aSEmmanuel Vadot	uart2: serial@f0000780 {
127*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-usart";
128*f126890aSEmmanuel Vadot		reg = <0xf0000780 0x20>;
129*f126890aSEmmanuel Vadot		clocks = <&main_clk>;
130*f126890aSEmmanuel Vadot		interrupts = <46>;
131*f126890aSEmmanuel Vadot		status = "disabled";
132*f126890aSEmmanuel Vadot	};
133*f126890aSEmmanuel Vadot
134*f126890aSEmmanuel Vadot	i2c: i2c@f0000120 {
135*f126890aSEmmanuel Vadot		compatible = "cnxt,cx92755-i2c";
136*f126890aSEmmanuel Vadot		reg = <0xf0000120 0x10>;
137*f126890aSEmmanuel Vadot		interrupts = <28>;
138*f126890aSEmmanuel Vadot		clocks = <&main_clk>;
139*f126890aSEmmanuel Vadot		clock-frequency = <100000>;
140*f126890aSEmmanuel Vadot		#address-cells = <1>;
141*f126890aSEmmanuel Vadot		#size-cells = <0>;
142*f126890aSEmmanuel Vadot		status = "disabled";
143*f126890aSEmmanuel Vadot	};
144*f126890aSEmmanuel Vadot};
145