2011-08-10 20:22:11 +00:00
|
|
|
/*
|
2012-03-13 23:19:19 +00:00
|
|
|
* Copyright 2011-2012 Calxeda, Inc.
|
2011-08-10 20:22:11 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/* First 4KB has pen for secondary cores. */
|
|
|
|
/memreserve/ 0x00000000 0x0001000;
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "Calxeda Highbank";
|
|
|
|
compatible = "calxeda,highbank";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clock-ranges;
|
2011-08-10 20:22:11 +00:00
|
|
|
|
|
|
|
cpus {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
|
|
|
cpu@0 {
|
|
|
|
compatible = "arm,cortex-a9";
|
2012-12-30 16:15:02 +00:00
|
|
|
device_type = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
reg = <0>;
|
|
|
|
next-level-cache = <&L2>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clocks = <&a9pll>;
|
|
|
|
clock-names = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cpu@1 {
|
|
|
|
compatible = "arm,cortex-a9";
|
2012-12-30 16:15:02 +00:00
|
|
|
device_type = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
reg = <1>;
|
|
|
|
next-level-cache = <&L2>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clocks = <&a9pll>;
|
|
|
|
clock-names = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cpu@2 {
|
|
|
|
compatible = "arm,cortex-a9";
|
2012-12-30 16:15:02 +00:00
|
|
|
device_type = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
reg = <2>;
|
|
|
|
next-level-cache = <&L2>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clocks = <&a9pll>;
|
|
|
|
clock-names = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cpu@3 {
|
|
|
|
compatible = "arm,cortex-a9";
|
2012-12-30 16:15:02 +00:00
|
|
|
device_type = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
reg = <3>;
|
|
|
|
next-level-cache = <&L2>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clocks = <&a9pll>;
|
|
|
|
clock-names = "cpu";
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
memory {
|
|
|
|
name = "memory";
|
|
|
|
device_type = "memory";
|
|
|
|
reg = <0x00000000 0xff900000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
soc {
|
2012-10-25 16:59:09 +00:00
|
|
|
ranges = <0x00000000 0x00000000 0xffffffff>;
|
2011-08-10 20:22:11 +00:00
|
|
|
|
|
|
|
timer@fff10600 {
|
2012-01-10 19:44:19 +00:00
|
|
|
compatible = "arm,cortex-a9-twd-timer";
|
2011-08-10 20:22:11 +00:00
|
|
|
reg = <0xfff10600 0x20>;
|
2012-01-10 19:44:19 +00:00
|
|
|
interrupts = <1 13 0xf01>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clocks = <&a9periphclk>;
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
watchdog@fff10620 {
|
2012-01-10 19:44:19 +00:00
|
|
|
compatible = "arm,cortex-a9-twd-wdt";
|
2011-08-10 20:22:11 +00:00
|
|
|
reg = <0xfff10620 0x20>;
|
2012-01-10 19:44:19 +00:00
|
|
|
interrupts = <1 14 0xf01>;
|
2012-03-13 23:19:19 +00:00
|
|
|
clocks = <&a9periphclk>;
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
intc: interrupt-controller@fff11000 {
|
|
|
|
compatible = "arm,cortex-a9-gic";
|
|
|
|
#interrupt-cells = <3>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
#address-cells = <1>;
|
|
|
|
interrupt-controller;
|
|
|
|
reg = <0xfff11000 0x1000>,
|
|
|
|
<0xfff10100 0x100>;
|
|
|
|
};
|
|
|
|
|
|
|
|
L2: l2-cache {
|
|
|
|
compatible = "arm,pl310-cache";
|
|
|
|
reg = <0xfff12000 0x1000>;
|
|
|
|
interrupts = <0 70 4>;
|
|
|
|
cache-unified;
|
|
|
|
cache-level = <2>;
|
|
|
|
};
|
|
|
|
|
|
|
|
pmu {
|
|
|
|
compatible = "arm,cortex-a9-pmu";
|
|
|
|
interrupts = <0 76 4 0 75 4 0 74 4 0 73 4>;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-06-12 02:32:14 +00:00
|
|
|
sregs@fff3c200 {
|
|
|
|
compatible = "calxeda,hb-sregs-l2-ecc";
|
|
|
|
reg = <0xfff3c200 0x100>;
|
|
|
|
interrupts = <0 71 4 0 72 4>;
|
|
|
|
};
|
|
|
|
|
2011-08-10 20:22:11 +00:00
|
|
|
};
|
|
|
|
};
|
2012-10-25 16:59:09 +00:00
|
|
|
|
|
|
|
/include/ "ecx-common.dtsi"
|