diff options
author | Tony Lindgren <tony@atomide.com> | 2011-10-04 16:54:30 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-10-04 16:54:30 -0400 |
commit | 3ae3e253db7385238dd9d6c67c085afa3e770a56 (patch) | |
tree | c3f93d9742c4654c9d10af829db1122bac0b6f6f /arch/arm/boot/dts/omap3.dtsi | |
parent | c541c15fb5ab48c47bc9b90121538fd30d152f23 (diff) | |
parent | 476b679a5d785d1244f6b43ad26877acf278cd18 (diff) |
Merge branch 'for_3.2/3_omap_devicetree' of git://gitorious.org/omap-pm/linux into dt
Diffstat (limited to 'arch/arm/boot/dts/omap3.dtsi')
-rw-r--r-- | arch/arm/boot/dts/omap3.dtsi | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi new file mode 100644 index 000000000000..d202bb5ec7ef --- /dev/null +++ b/arch/arm/boot/dts/omap3.dtsi | |||
@@ -0,0 +1,63 @@ | |||
1 | /* | ||
2 | * Device Tree Source for OMAP3 SoC | ||
3 | * | ||
4 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public License | ||
7 | * version 2. This program is licensed "as is" without any warranty of any | ||
8 | * kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | /include/ "skeleton.dtsi" | ||
12 | |||
13 | / { | ||
14 | compatible = "ti,omap3430", "ti,omap3"; | ||
15 | |||
16 | cpus { | ||
17 | cpu@0 { | ||
18 | compatible = "arm,cortex-a8"; | ||
19 | }; | ||
20 | }; | ||
21 | |||
22 | /* | ||
23 | * The soc node represents the soc top level view. It is uses for IPs | ||
24 | * that are not memory mapped in the MPU view or for the MPU itself. | ||
25 | */ | ||
26 | soc { | ||
27 | compatible = "ti,omap-infra"; | ||
28 | mpu { | ||
29 | compatible = "ti,omap3-mpu"; | ||
30 | ti,hwmods = "mpu"; | ||
31 | }; | ||
32 | |||
33 | iva { | ||
34 | compatible = "ti,iva2.2"; | ||
35 | ti,hwmods = "iva"; | ||
36 | |||
37 | dsp { | ||
38 | compatible = "ti,omap3-c64"; | ||
39 | }; | ||
40 | }; | ||
41 | }; | ||
42 | |||
43 | /* | ||
44 | * XXX: Use a flat representation of the OMAP3 interconnect. | ||
45 | * The real OMAP interconnect network is quite complex. | ||
46 | * Since that will not bring real advantage to represent that in DT for | ||
47 | * the moment, just use a fake OCP bus entry to represent the whole bus | ||
48 | * hierarchy. | ||
49 | */ | ||
50 | ocp { | ||
51 | compatible = "simple-bus"; | ||
52 | #address-cells = <1>; | ||
53 | #size-cells = <1>; | ||
54 | ranges; | ||
55 | ti,hwmods = "l3_main"; | ||
56 | |||
57 | intc: interrupt-controller@1 { | ||
58 | compatible = "ti,omap3-intc"; | ||
59 | interrupt-controller; | ||
60 | #interrupt-cells = <1>; | ||
61 | }; | ||
62 | }; | ||
63 | }; | ||