blob: f74740d0994b414be10e9354eb2177ddeb9adcee [file] [log] [blame]
Heiko Schocher33085b32012-08-30 14:21:04 +05301/*
2 * Copyright 2012 DENX Software Engineering GmbH
3 * Heiko Schocher <hs@denx.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 */
10/include/ "skeleton.dtsi"
11
12/ {
13 arm {
14 #address-cells = <1>;
15 #size-cells = <1>;
16 ranges;
17 intc: interrupt-controller {
18 compatible = "ti,cp-intc";
19 interrupt-controller;
20 #interrupt-cells = <1>;
21 ti,intc-size = <100>;
22 reg = <0xfffee000 0x2000>;
23 };
24 };
25 soc {
26 compatible = "simple-bus";
27 model = "da850";
28 #address-cells = <1>;
29 #size-cells = <1>;
30 ranges = <0x0 0x01c00000 0x400000>;
31
Kumar, Anil1faaba32013-01-16 14:37:39 +053032 pmx_core: pinmux@1c14120 {
33 compatible = "pinctrl-single";
34 reg = <0x14120 0x50>;
35 #address-cells = <1>;
36 #size-cells = <0>;
37 pinctrl-single,bit-per-mux;
38 pinctrl-single,register-width = <32>;
39 pinctrl-single,function-mask = <0xffffffff>;
40 status = "disabled";
41 };
Heiko Schocher33085b32012-08-30 14:21:04 +053042 serial0: serial@1c42000 {
43 compatible = "ns16550a";
44 reg = <0x42000 0x100>;
45 clock-frequency = <150000000>;
46 reg-shift = <2>;
47 interrupts = <25>;
48 interrupt-parent = <&intc>;
49 status = "disabled";
50 };
51 serial1: serial@1d0c000 {
52 compatible = "ns16550a";
53 reg = <0x10c000 0x100>;
54 clock-frequency = <150000000>;
55 reg-shift = <2>;
56 interrupts = <53>;
57 interrupt-parent = <&intc>;
58 status = "disabled";
59 };
60 serial2: serial@1d0d000 {
61 compatible = "ns16550a";
62 reg = <0x10d000 0x100>;
63 clock-frequency = <150000000>;
64 reg-shift = <2>;
65 interrupts = <61>;
66 interrupt-parent = <&intc>;
67 status = "disabled";
68 };
69 };
70};