-
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.
Add a minimal device tree for the ETRAX FS SoC and the Axis 88 developer board. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Jesper Nilsson <jespern@axis.com>
- Loading branch information
Rabin Vincent
authored and
Jesper Nilsson
committed
Mar 25, 2015
1 parent
a9f75ac
commit c8e840d
Showing
2 changed files
with
56 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/dts-v1/; | ||
|
||
/include/ "etraxfs.dtsi" | ||
|
||
/ { | ||
model = "Axis 88 Developer Board"; | ||
compatible = "axis,dev88"; | ||
|
||
aliases { | ||
serial0 = &uart0; | ||
}; | ||
|
||
soc { | ||
uart0: serial@b00260000 { | ||
status = "okay"; | ||
}; | ||
}; | ||
}; |
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,38 @@ | ||
/ { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
interrupt-parent = <&intc>; | ||
|
||
cpus { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
cpu@0 { | ||
device_type = "cpu"; | ||
model = "axis,crisv32"; | ||
reg = <0>; | ||
}; | ||
}; | ||
|
||
soc { | ||
compatible = "simple-bus"; | ||
model = "etraxfs"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
ranges; | ||
|
||
intc: interrupt-controller { | ||
compatible = "axis,crisv32-intc"; | ||
reg = <0xb001c000 0x1000>; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
}; | ||
|
||
serial@b00260000 { | ||
compatible = "axis,etraxfs-uart"; | ||
reg = <0xb0026000 0x1000>; | ||
interrupts = <68>; | ||
status = "disabled"; | ||
}; | ||
}; | ||
}; |