-
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.
Merge tag 'renesas-dt3-for-v4.3' of git://git.kernel.org/pub/scm/linu…
…x/kernel/git/horms/renesas into next/dt Third Round of Renesas ARM Based SoC DT Updates for v4.3 * Add JPU support: r8a7791 and r8a7790 SoCs * Add MMCIF and PFC support: r8a7794 SoC * Add initial support for r8a7794/silk * Add missing "gpio-ranges" to gpio nodes: sh73a0, r8a7740 and r8a73a4 SoCs * tag 'renesas-dt3-for-v4.3' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas: ARM: shmobile: sh73a0 dtsi: Add missing "gpio-ranges" to gpio node ARM: shmobile: r8a7740 dtsi: Add missing "gpio-ranges" to gpio node ARM: shmobile: r8a73a4 dtsi: Add missing "gpio-ranges" to gpio node ARM: shmobile: silk: add eMMC DT support ARM: shmobile: r8a7794: add MMCIF DT support ARM: shmobile: silk: add Ether DT support ARM: shmobile: silk: initial device tree ARM: shmobile: r8a7794: add PFC DT support ARM: shmobile: r8a7791: Add JPU device node. ARM: shmobile: r8a7790: Add JPU device node. Signed-off-by: Olof Johansson <olof@lixom.net>
- Loading branch information
Showing
8 changed files
with
145 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
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
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,102 @@ | ||
/* | ||
* Device Tree Source for the SILK board | ||
* | ||
* Copyright (C) 2014 Renesas Electronics Corporation | ||
* Copyright (C) 2014-2015 Renesas Solutions Corp. | ||
* Copyright (C) 2014-2015 Cogent Embedded, Inc. | ||
* | ||
* 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 "r8a7794.dtsi" | ||
|
||
/ { | ||
model = "SILK"; | ||
compatible = "renesas,silk", "renesas,r8a7794"; | ||
|
||
aliases { | ||
serial0 = &scif2; | ||
}; | ||
|
||
chosen { | ||
bootargs = "ignore_loglevel rw root=/dev/nfs ip=dhcp"; | ||
stdout-path = &scif2; | ||
}; | ||
|
||
memory@40000000 { | ||
device_type = "memory"; | ||
reg = <0 0x40000000 0 0x40000000>; | ||
}; | ||
|
||
d3_3v: regulator@0 { | ||
compatible = "regulator-fixed"; | ||
regulator-name = "D3.3V"; | ||
regulator-min-microvolt = <3300000>; | ||
regulator-max-microvolt = <3300000>; | ||
regulator-boot-on; | ||
regulator-always-on; | ||
}; | ||
}; | ||
|
||
&extal_clk { | ||
clock-frequency = <20000000>; | ||
}; | ||
|
||
&pfc { | ||
scif2_pins: serial2 { | ||
renesas,groups = "scif2_data"; | ||
renesas,function = "scif2"; | ||
}; | ||
|
||
ether_pins: ether { | ||
renesas,groups = "eth_link", "eth_mdio", "eth_rmii"; | ||
renesas,function = "eth"; | ||
}; | ||
|
||
phy1_pins: phy1 { | ||
renesas,groups = "intc_irq8"; | ||
renesas,function = "intc"; | ||
}; | ||
|
||
mmcif0_pins: mmcif0 { | ||
renesas,groups = "mmc_data8", "mmc_ctrl"; | ||
renesas,function = "mmc"; | ||
}; | ||
}; | ||
|
||
&scif2 { | ||
pinctrl-0 = <&scif2_pins>; | ||
pinctrl-names = "default"; | ||
|
||
status = "okay"; | ||
}; | ||
|
||
ðer { | ||
pinctrl-0 = <ðer_pins &phy1_pins>; | ||
pinctrl-names = "default"; | ||
|
||
phy-handle = <&phy1>; | ||
renesas,ether-link-active-low; | ||
status = "okay"; | ||
|
||
phy1: ethernet-phy@1 { | ||
reg = <1>; | ||
interrupt-parent = <&irqc0>; | ||
interrupts = <8 IRQ_TYPE_LEVEL_LOW>; | ||
micrel,led-mode = <1>; | ||
}; | ||
}; | ||
|
||
&mmcif0 { | ||
pinctrl-0 = <&mmcif0_pins>; | ||
pinctrl-names = "default"; | ||
|
||
vmmc-supply = <&d3_3v>; | ||
vqmmc-supply = <&d3_3v>; | ||
bus-width = <8>; | ||
non-removable; | ||
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
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