-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 355587 b: refs/heads/master c: 18a4df7 h: refs/heads/master i: 355585: 561ff9d 355583: dfbc085 v: v3
- Loading branch information
Hiroshi Doyu
authored and
Stephen Warren
committed
Jan 28, 2013
1 parent
598391e
commit 0b42c02
Showing
2 changed files
with
115 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7b30d4578a4ceb9ea3f5c3d999dfe6159092c4a0 | ||
refs/heads/master: 18a4df70511a5591de3ffe532495d59ee1bf470c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
/include/ "skeleton.dtsi" | ||
|
||
/ { | ||
compatible = "nvidia,tegra114"; | ||
interrupt-parent = <&gic>; | ||
|
||
gic: interrupt-controller { | ||
compatible = "arm,cortex-a15-gic"; | ||
#interrupt-cells = <3>; | ||
interrupt-controller; | ||
reg = <0x50041000 0x1000>, | ||
<0x50042000 0x1000>, | ||
<0x50044000 0x2000>, | ||
<0x50046000 0x2000>; | ||
interrupts = <1 9 0xf04>; | ||
}; | ||
|
||
timer@60005000 { | ||
compatible = "nvidia,tegra114-timer", "nvidia,tegra20-timer"; | ||
reg = <0x60005000 0x400>; | ||
interrupts = <0 0 0x04 | ||
0 1 0x04 | ||
0 41 0x04 | ||
0 42 0x04 | ||
0 121 0x04 | ||
0 122 0x04>; | ||
}; | ||
|
||
tegra_car: clock { | ||
compatible = "nvidia,tegra114-car, nvidia,tegra30-car"; | ||
reg = <0x60006000 0x1000>; | ||
#clock-cells = <1>; | ||
}; | ||
|
||
serial@70006000 { | ||
compatible = "nvidia,tegra114-uart", "nvidia,tegra20-uart"; | ||
reg = <0x70006000 0x40>; | ||
reg-shift = <2>; | ||
interrupts = <0 36 0x04>; | ||
status = "disabled"; | ||
}; | ||
|
||
serial@70006040 { | ||
compatible = "nvidia,tegra114-uart", "nvidia,tegra20-uart"; | ||
reg = <0x70006040 0x40>; | ||
reg-shift = <2>; | ||
interrupts = <0 37 0x04>; | ||
status = "disabled"; | ||
}; | ||
|
||
serial@70006200 { | ||
compatible = "nvidia,tegra114-uart", "nvidia,tegra20-uart"; | ||
reg = <0x70006200 0x100>; | ||
reg-shift = <2>; | ||
interrupts = <0 46 0x04>; | ||
status = "disabled"; | ||
}; | ||
|
||
serial@70006300 { | ||
compatible = "nvidia,tegra114-uart", "nvidia,tegra20-uart"; | ||
reg = <0x70006300 0x100>; | ||
reg-shift = <2>; | ||
interrupts = <0 90 0x04>; | ||
status = "disabled"; | ||
}; | ||
|
||
rtc { | ||
compatible = "nvidia,tegra114-rtc", "nvidia,tegra20-rtc"; | ||
reg = <0x7000e000 0x100>; | ||
interrupts = <0 2 0x04>; | ||
}; | ||
|
||
pmc { | ||
compatible = "nvidia,tegra114-pmc", "nvidia,tegra30-pmc"; | ||
reg = <0x7000e400 0x400>; | ||
}; | ||
|
||
cpus { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
cpu@0 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a15"; | ||
reg = <0>; | ||
}; | ||
|
||
cpu@1 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a15"; | ||
reg = <1>; | ||
}; | ||
|
||
cpu@2 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a15"; | ||
reg = <2>; | ||
}; | ||
|
||
cpu@3 { | ||
device_type = "cpu"; | ||
compatible = "arm,cortex-a15"; | ||
reg = <3>; | ||
}; | ||
}; | ||
|
||
timer { | ||
compatible = "arm,armv7-timer"; | ||
interrupts = <1 13 0xf08>, | ||
<1 14 0xf08>, | ||
<1 11 0xf08>, | ||
<1 10 0xf08>; | ||
}; | ||
}; |