-
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.
- Loading branch information
Simon Horman
committed
Apr 3, 2013
1 parent
ad48ef9
commit c12a134
Showing
14 changed files
with
566 additions
and
74 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: 202ac6a21a79500ef5aab4cd8665be2597e9345c | ||
refs/heads/master: eb0ae7280939fda741ad6ae9b108725517652f56 |
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,47 @@ | ||
/* | ||
* Reference Device Tree Source for the Marzen board | ||
* | ||
* Copyright (C) 2013 Renesas Solutions Corp. | ||
* Copyright (C) 2013 Simon Horman | ||
* | ||
* This file is licensed under the terms of the GNU General Public License | ||
* version 2. This program is licensed "as is" without any warranty of any | ||
* kind, whether express or implied. | ||
*/ | ||
|
||
/dts-v1/; | ||
/include/ "r8a7779.dtsi" | ||
|
||
/ { | ||
model = "marzen"; | ||
compatible = "renesas,marzen-reference", "renesas,r8a7779"; | ||
|
||
chosen { | ||
bootargs = "console=ttySC2,115200 earlyprintk=sh-sci.2,115200 ignore_loglevel root=/dev/nfs ip=on"; | ||
}; | ||
|
||
memory { | ||
device_type = "memory"; | ||
reg = <0x60000000 0x40000000>; | ||
}; | ||
|
||
fixedregulator3v3: fixedregulator@0 { | ||
compatible = "regulator-fixed"; | ||
regulator-name = "fixed-3.3V"; | ||
regulator-min-microvolt = <3300000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
|
||
lan0@18000000 { | ||
compatible = "smsc,lan9220", "smsc,lan9115"; | ||
reg = <0x18000000 0x100>; | ||
phy-mode = "mii"; | ||
interrupt-parent = <&gic>; | ||
interrupts = <0 28 0x4>; | ||
reg-io-width = <4>; | ||
vddvario-supply = <&fixedregulator3v3>; | ||
vdd33a-supply = <&fixedregulator3v3>; | ||
}; | ||
}; |
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,66 @@ | ||
/* | ||
* Device Tree Source for the KZM-A9-GT board | ||
* | ||
* Copyright (C) 2012 Horms Solutions Ltd. | ||
* | ||
* Based on sh73a0-kzm9g.dts | ||
* Copyright (C) 2012 Renesas Solutions Corp. | ||
* | ||
* This file is licensed under the terms of the GNU General Public License | ||
* version 2. This program is licensed "as is" without any warranty of any | ||
* kind, whether express or implied. | ||
*/ | ||
|
||
/dts-v1/; | ||
/include/ "sh73a0.dtsi" | ||
|
||
/ { | ||
model = "KZM-A9-GT"; | ||
compatible = "renesas,kzm9g-reference", "renesas,sh73a0"; | ||
|
||
chosen { | ||
bootargs = "console=tty0 console=ttySC4,115200 root=/dev/nfs ip=dhcp ignore_loglevel earlyprintk=sh-sci.4,115200"; | ||
}; | ||
|
||
memory { | ||
device_type = "memory"; | ||
reg = <0x41000000 0x1e800000>; | ||
}; | ||
|
||
reg_1p8v: regulator@0 { | ||
compatible = "regulator-fixed"; | ||
regulator-name = "fixed-1.8V"; | ||
regulator-min-microvolt = <1800000>; | ||
regulator-max-microvolt = <1800000>; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
}; | ||
|
||
reg_3p3v: regulator@1 { | ||
compatible = "regulator-fixed"; | ||
regulator-name = "fixed-3.3V"; | ||
regulator-min-microvolt = <3300000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
}; | ||
}; | ||
|
||
&mmcif { | ||
bus-width = <8>; | ||
vmmc-supply = <®_1p8v>; | ||
status = "okay"; | ||
}; | ||
|
||
&sdhi0 { | ||
vmmc-supply = <®_3p3v>; | ||
bus-width = <4>; | ||
status = "okay"; | ||
}; | ||
|
||
&sdhi2 { | ||
vmmc-supply = <®_3p3v>; | ||
bus-width = <4>; | ||
broken-cd; | ||
status = "okay"; | ||
}; |
This file was deleted.
Oops, something went wrong.
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
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.