-
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: 331475 b: refs/heads/master c: 4980f9b h: refs/heads/master i: 331473: 6ff06cb 331471: ead6460 v: v3
- Loading branch information
Linus Walleij
authored and
Russell King
committed
Sep 17, 2012
1 parent
6ccd078
commit 29a2992
Showing
7 changed files
with
361 additions
and
69 deletions.
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: dc81df520bfb918a5cd4adc2ddcc7f1701fd1455 | ||
refs/heads/master: 4980f9bc2cec0f8ff0e0f2b021d46c7606ae1849 |
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
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,33 @@ | ||
/* | ||
* SoC core Device Tree for the ARM Integrator platforms | ||
*/ | ||
|
||
/include/ "skeleton.dtsi" | ||
|
||
/ { | ||
timer@13000000 { | ||
reg = <0x13000000 0x100>; | ||
interrupt-parent = <&pic>; | ||
interrupts = <5>; | ||
}; | ||
|
||
timer@13000100 { | ||
reg = <0x13000100 0x100>; | ||
interrupt-parent = <&pic>; | ||
interrupts = <6>; | ||
}; | ||
|
||
timer@13000200 { | ||
reg = <0x13000200 0x100>; | ||
interrupt-parent = <&pic>; | ||
interrupts = <7>; | ||
}; | ||
|
||
pic@14000000 { | ||
compatible = "arm,versatile-fpga-irq"; | ||
#interrupt-cells = <1>; | ||
interrupt-controller; | ||
reg = <0x14000000 0x100>; | ||
clear-mask = <0xffffffff>; | ||
}; | ||
}; |
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,36 @@ | ||
/* | ||
* Device Tree for the ARM Integrator/AP platform | ||
*/ | ||
|
||
/dts-v1/; | ||
/include/ "integrator.dtsi" | ||
|
||
/ { | ||
model = "ARM Integrator/AP"; | ||
compatible = "arm,integrator-ap"; | ||
|
||
aliases { | ||
arm,timer-primary = &timer2; | ||
arm,timer-secondary = &timer1; | ||
}; | ||
|
||
chosen { | ||
bootargs = "root=/dev/ram0 console=ttyAM0,38400n8 earlyprintk"; | ||
}; | ||
|
||
timer0: timer@13000000 { | ||
compatible = "arm,integrator-timer"; | ||
}; | ||
|
||
timer1: timer@13000100 { | ||
compatible = "arm,integrator-timer"; | ||
}; | ||
|
||
timer2: timer@13000200 { | ||
compatible = "arm,integrator-timer"; | ||
}; | ||
|
||
pic: pic@14000000 { | ||
valid-mask = <0x003fffff>; | ||
}; | ||
}; |
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,54 @@ | ||
/* | ||
* Device Tree for the ARM Integrator/CP platform | ||
*/ | ||
|
||
/dts-v1/; | ||
/include/ "integrator.dtsi" | ||
|
||
/ { | ||
model = "ARM Integrator/CP"; | ||
compatible = "arm,integrator-cp"; | ||
|
||
aliases { | ||
arm,timer-primary = &timer2; | ||
arm,timer-secondary = &timer1; | ||
}; | ||
|
||
chosen { | ||
bootargs = "root=/dev/ram0 console=ttyAMA0,38400n8 earlyprintk"; | ||
}; | ||
|
||
timer0: timer@13000000 { | ||
compatible = "arm,sp804", "arm,primecell"; | ||
}; | ||
|
||
timer1: timer@13000100 { | ||
compatible = "arm,sp804", "arm,primecell"; | ||
}; | ||
|
||
timer2: timer@13000200 { | ||
compatible = "arm,sp804", "arm,primecell"; | ||
}; | ||
|
||
pic: pic@14000000 { | ||
valid-mask = <0x1fc003ff>; | ||
}; | ||
|
||
cic: cic@10000040 { | ||
compatible = "arm,versatile-fpga-irq"; | ||
#interrupt-cells = <1>; | ||
interrupt-controller; | ||
reg = <0x10000040 0x100>; | ||
clear-mask = <0xffffffff>; | ||
valid-mask = <0x00000007>; | ||
}; | ||
|
||
sic: sic@ca000000 { | ||
compatible = "arm,versatile-fpga-irq"; | ||
#interrupt-cells = <1>; | ||
interrupt-controller; | ||
reg = <0xca000000 0x100>; | ||
clear-mask = <0x00000fff>; | ||
valid-mask = <0x00000fff>; | ||
}; | ||
}; |
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
Oops, something went wrong.