dra74x.dtsi revision 279377
1279377Simp/*
2279377Simp * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
3279377Simp *
4279377Simp * This program is free software; you can redistribute it and/or modify
5279377Simp * it under the terms of the GNU General Public License version 2 as
6279377Simp * published by the Free Software Foundation.
7279377Simp * Based on "omap4.dtsi"
8279377Simp */
9279377Simp
10279377Simp#include "dra7.dtsi"
11279377Simp
12279377Simp/ {
13279377Simp	compatible = "ti,dra742", "ti,dra74", "ti,dra7";
14279377Simp
15279377Simp	cpus {
16279377Simp		#address-cells = <1>;
17279377Simp		#size-cells = <0>;
18279377Simp
19279377Simp		cpu0: cpu@0 {
20279377Simp			device_type = "cpu";
21279377Simp			compatible = "arm,cortex-a15";
22279377Simp			reg = <0>;
23279377Simp
24279377Simp			operating-points = <
25279377Simp				/* kHz    uV */
26279377Simp				1000000	1060000
27279377Simp				1176000	1160000
28279377Simp				>;
29279377Simp
30279377Simp			clocks = <&dpll_mpu_ck>;
31279377Simp			clock-names = "cpu";
32279377Simp
33279377Simp			clock-latency = <300000>; /* From omap-cpufreq driver */
34279377Simp		};
35279377Simp		cpu@1 {
36279377Simp			device_type = "cpu";
37279377Simp			compatible = "arm,cortex-a15";
38279377Simp			reg = <1>;
39279377Simp		};
40279377Simp	};
41279377Simp
42279377Simp	pmu {
43279377Simp		compatible = "arm,cortex-a15-pmu";
44279377Simp		interrupts = <GIC_SPI DIRECT_IRQ(131) IRQ_TYPE_LEVEL_HIGH>,
45279377Simp			     <GIC_SPI DIRECT_IRQ(132) IRQ_TYPE_LEVEL_HIGH>;
46279377Simp	};
47279377Simp
48279377Simp	ocp {
49279377Simp		omap_dwc3_4: omap_dwc3_4@48940000 {
50279377Simp			compatible = "ti,dwc3";
51279377Simp			ti,hwmods = "usb_otg_ss4";
52279377Simp			reg = <0x48940000 0x10000>;
53279377Simp			interrupts = <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH>;
54279377Simp			#address-cells = <1>;
55279377Simp			#size-cells = <1>;
56279377Simp			utmi-mode = <2>;
57279377Simp			ranges;
58279377Simp			status = "disabled";
59279377Simp			usb4: usb@48950000 {
60279377Simp				compatible = "snps,dwc3";
61279377Simp				reg = <0x48950000 0x17000>;
62279377Simp				interrupts = <GIC_SPI 345 IRQ_TYPE_LEVEL_HIGH>;
63279377Simp				tx-fifo-resize;
64279377Simp				maximum-speed = "high-speed";
65279377Simp				dr_mode = "otg";
66279377Simp			};
67279377Simp		};
68279377Simp	};
69279377Simp};
70