1/*
2 * Copyright (C) 2013, 2014 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9/*
10 * Device tree for AXC003 CPU card: HS38x UP configuration (VDK version)
11 */
12
13/include/ "skeleton_hs.dtsi"
14
15/ {
16	compatible = "snps,arc";
17	clock-frequency = <50000000>;
18	#address-cells = <1>;
19	#size-cells = <1>;
20
21	cpu_card {
22		compatible = "simple-bus";
23		#address-cells = <1>;
24		#size-cells = <1>;
25
26		ranges = <0x00000000 0xf0000000 0x10000000>;
27
28		core_intc: archs-intc@cpu {
29			compatible = "snps,archs-intc";
30			interrupt-controller;
31			#interrupt-cells = <1>;
32		};
33
34		debug_uart: dw-apb-uart@0x5000 {
35			compatible = "snps,dw-apb-uart";
36			reg = <0x5000 0x100>;
37			clock-frequency = <2403200>;
38			interrupt-parent = <&core_intc>;
39			interrupts = <19>;
40			baud = <115200>;
41			reg-shift = <2>;
42			reg-io-width = <4>;
43		};
44
45	};
46
47	mb_intc: dw-apb-ictl@0xe0012000 {
48		#interrupt-cells = <1>;
49		compatible = "snps,dw-apb-ictl";
50		reg = < 0xe0012000 0x200 >;
51		interrupt-controller;
52		interrupt-parent = <&core_intc>;
53		interrupts = < 18 >;
54	};
55
56	memory {
57		#address-cells = <1>;
58		#size-cells = <1>;
59		ranges = <0x00000000 0x80000000 0x40000000>;
60		device_type = "memory";
61		reg = <0x80000000 0x20000000>;	/* 512MiB */
62	};
63};
64