mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Merge git://git.denx.de/u-boot-uniphier
This commit is contained in:
commit
a35747b5e1
27 changed files with 936 additions and 206 deletions
|
@ -1,14 +1,13 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD11 Global Board
|
||||
*
|
||||
* Copyright (C) 2016-2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
* Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD11 Global Board
|
||||
//
|
||||
// Copyright (C) 2016-2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
// Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
#include "uniphier-ld11.dtsi"
|
||||
|
||||
/ {
|
||||
|
@ -37,6 +36,53 @@
|
|||
device_type = "memory";
|
||||
reg = <0 0x80000000 0 0x40000000>;
|
||||
};
|
||||
|
||||
dvdd_reg: reg-fixed {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "DVDD";
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
};
|
||||
|
||||
amp_vcc_reg: reg-fixed {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "AMP_VCC";
|
||||
regulator-min-microvolt = <24000000>;
|
||||
regulator-max-microvolt = <24000000>;
|
||||
};
|
||||
|
||||
sound {
|
||||
compatible = "audio-graph-card";
|
||||
label = "UniPhier LD11";
|
||||
widgets = "Headphone", "Headphone Jack";
|
||||
dais = <&i2s_port2
|
||||
&i2s_port3
|
||||
&i2s_port4
|
||||
&spdif_port0
|
||||
&comp_spdif_port0>;
|
||||
};
|
||||
|
||||
spdif-out {
|
||||
compatible = "linux,spdif-dit";
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
spdif_tx: endpoint {
|
||||
remote-endpoint = <&spdif_hiecout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
comp-spdif-out {
|
||||
compatible = "linux,spdif-dit";
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
comp_spdif_tx: endpoint {
|
||||
remote-endpoint = <&comp_spdif_hiecout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&serial0 {
|
||||
|
@ -47,9 +93,43 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&i2s_hpcmout1 {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&tas_speaker>;
|
||||
};
|
||||
|
||||
&spdif_hiecout1 {
|
||||
remote-endpoint = <&spdif_tx>;
|
||||
};
|
||||
|
||||
&comp_spdif_hiecout1 {
|
||||
remote-endpoint = <&comp_spdif_tx>;
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
status = "okay";
|
||||
|
||||
tas5707a@1d {
|
||||
compatible = "ti,tas5711";
|
||||
reg = <0x1d>;
|
||||
reset-gpios = <&gpio UNIPHIER_GPIO_PORT(23, 4) GPIO_ACTIVE_LOW>;
|
||||
pdn-gpios = <&gpio UNIPHIER_GPIO_PORT(23, 5) GPIO_ACTIVE_LOW>;
|
||||
#sound-dai-cells = <0>;
|
||||
AVDD-supply = <&dvdd_reg>;
|
||||
DVDD-supply = <&dvdd_reg>;
|
||||
PVDD_A-supply = <&_vcc_reg>;
|
||||
PVDD_B-supply = <&_vcc_reg>;
|
||||
PVDD_C-supply = <&_vcc_reg>;
|
||||
PVDD_D-supply = <&_vcc_reg>;
|
||||
|
||||
port@0 {
|
||||
tas_speaker: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&i2s_hpcmout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
eeprom@50 {
|
||||
compatible = "st,24c64", "atmel,24c64", "i2c-eeprom";
|
||||
reg = <0x50>;
|
||||
|
@ -69,6 +149,17 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&nand {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD11 Reference Board
|
||||
*
|
||||
* Copyright (C) 2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD11 Reference Board
|
||||
//
|
||||
// Copyright (C) 2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-ld11.dtsi"
|
||||
|
@ -70,3 +68,14 @@
|
|||
&usb2 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD11 SoC
|
||||
*
|
||||
* Copyright (C) 2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD11 SoC
|
||||
//
|
||||
// Copyright (C) 2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
|
@ -191,6 +189,92 @@
|
|||
<21 217 3>;
|
||||
};
|
||||
|
||||
audio@56000000 {
|
||||
compatible = "socionext,uniphier-ld11-aio";
|
||||
reg = <0x56000000 0x80000>;
|
||||
interrupts = <0 144 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_aout1>,
|
||||
<&pinctrl_aoutiec1>;
|
||||
clock-names = "aio";
|
||||
clocks = <&sys_clk 40>;
|
||||
reset-names = "aio";
|
||||
resets = <&sys_rst 40>;
|
||||
#sound-dai-cells = <1>;
|
||||
socionext,syscon = <&soc_glue>;
|
||||
|
||||
i2s_port0: port@0 {
|
||||
i2s_hdmi: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port1: port@1 {
|
||||
i2s_pcmin2: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port2: port@2 {
|
||||
i2s_line: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&evea_line>;
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port3: port@3 {
|
||||
i2s_hpcmout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port4: port@4 {
|
||||
i2s_hp: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&evea_hp>;
|
||||
};
|
||||
};
|
||||
|
||||
spdif_port0: port@5 {
|
||||
spdif_hiecout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
src_port0: port@6 {
|
||||
i2s_epcmout2: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
src_port1: port@7 {
|
||||
i2s_epcmout3: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
comp_spdif_port0: port@8 {
|
||||
comp_spdif_hiecout1: endpoint {
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
codec@57900000 {
|
||||
compatible = "socionext,uniphier-evea";
|
||||
reg = <0x57900000 0x1000>;
|
||||
clock-names = "evea", "exiv";
|
||||
clocks = <&sys_clk 41>, <&sys_clk 42>;
|
||||
reset-names = "evea", "exiv", "adamv";
|
||||
resets = <&sys_rst 41>, <&sys_rst 42>, <&adamv_rst 0>;
|
||||
#sound-dai-cells = <1>;
|
||||
|
||||
port@0 {
|
||||
evea_line: endpoint {
|
||||
remote-endpoint = <&i2s_line>;
|
||||
};
|
||||
};
|
||||
|
||||
port@1 {
|
||||
evea_hp: endpoint {
|
||||
remote-endpoint = <&i2s_hp>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
adamv@57920000 {
|
||||
compatible = "socionext,uniphier-ld11-adamv",
|
||||
"simple-mfd", "syscon";
|
||||
|
@ -400,7 +484,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
soc-glue@5f800000 {
|
||||
soc_glue: soc-glue@5f800000 {
|
||||
compatible = "socionext,uniphier-ld11-soc-glue",
|
||||
"simple-mfd", "syscon";
|
||||
reg = <0x5f800000 0x2000>;
|
||||
|
@ -464,6 +548,22 @@
|
|||
};
|
||||
};
|
||||
|
||||
eth: ethernet@65000000 {
|
||||
compatible = "socionext,uniphier-ld11-ave4";
|
||||
status = "disabled";
|
||||
reg = <0x65000000 0x8500>;
|
||||
interrupts = <0 66 4>;
|
||||
clocks = <&sys_clk 6>;
|
||||
resets = <&sys_rst 6>;
|
||||
phy-mode = "rmii";
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
|
||||
mdio: mdio {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
nand: nand@68000000 {
|
||||
compatible = "socionext,uniphier-denali-nand-v5b";
|
||||
status = "disabled";
|
||||
|
@ -479,3 +579,12 @@
|
|||
};
|
||||
|
||||
#include "uniphier-pinctrl.dtsi"
|
||||
|
||||
&pinctrl_aoutiec1 {
|
||||
drive-strength = <4>; /* default: 4mA */
|
||||
|
||||
ao1arc {
|
||||
pins = "AO1ARC";
|
||||
drive-strength = <8>; /* 8mA */
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD20 Global Board
|
||||
*
|
||||
* Copyright (C) 2015-2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
* Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD20 Global Board
|
||||
//
|
||||
// Copyright (C) 2015-2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
// Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
#include "uniphier-ld20.dtsi"
|
||||
|
||||
/ {
|
||||
|
@ -37,6 +36,53 @@
|
|||
device_type = "memory";
|
||||
reg = <0 0x80000000 0 0xc0000000>;
|
||||
};
|
||||
|
||||
dvdd_reg: reg-fixed {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "DVDD";
|
||||
regulator-min-microvolt = <3300000>;
|
||||
regulator-max-microvolt = <3300000>;
|
||||
};
|
||||
|
||||
amp_vcc_reg: reg-fixed {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "AMP_VCC";
|
||||
regulator-min-microvolt = <12000000>;
|
||||
regulator-max-microvolt = <12000000>;
|
||||
};
|
||||
|
||||
sound {
|
||||
compatible = "audio-graph-card";
|
||||
label = "UniPhier LD20";
|
||||
widgets = "Headphone", "Headphone Jack";
|
||||
dais = <&i2s_port2
|
||||
&i2s_port3
|
||||
&i2s_port4
|
||||
&spdif_port0
|
||||
&comp_spdif_port0>;
|
||||
};
|
||||
|
||||
spdif-out {
|
||||
compatible = "linux,spdif-dit";
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
spdif_tx: endpoint {
|
||||
remote-endpoint = <&spdif_hiecout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
comp-spdif-out {
|
||||
compatible = "linux,spdif-dit";
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
comp_spdif_tx: endpoint {
|
||||
remote-endpoint = <&comp_spdif_hiecout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&serial0 {
|
||||
|
@ -47,8 +93,55 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&i2s_hpcmout1 {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&tas_speaker>;
|
||||
};
|
||||
|
||||
&spdif_hiecout1 {
|
||||
remote-endpoint = <&spdif_tx>;
|
||||
};
|
||||
|
||||
&comp_spdif_hiecout1 {
|
||||
remote-endpoint = <&comp_spdif_tx>;
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
status = "okay";
|
||||
|
||||
tas5707@1b {
|
||||
compatible = "ti,tas5711";
|
||||
reg = <0x1b>;
|
||||
reset-gpios = <&gpio UNIPHIER_GPIO_PORT(0, 0) GPIO_ACTIVE_LOW>;
|
||||
pdn-gpios = <&gpio UNIPHIER_GPIO_PORT(0, 1) GPIO_ACTIVE_LOW>;
|
||||
#sound-dai-cells = <0>;
|
||||
AVDD-supply = <&dvdd_reg>;
|
||||
DVDD-supply = <&dvdd_reg>;
|
||||
PVDD_A-supply = <&_vcc_reg>;
|
||||
PVDD_B-supply = <&_vcc_reg>;
|
||||
PVDD_C-supply = <&_vcc_reg>;
|
||||
PVDD_D-supply = <&_vcc_reg>;
|
||||
|
||||
port@0 {
|
||||
tas_speaker: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&i2s_hpcmout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-mode = "rmii";
|
||||
pinctrl-0 = <&pinctrl_ether_rmii>;
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&nand {
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD20 Reference Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD20 Reference Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-ld20.dtsi"
|
||||
|
@ -58,3 +56,14 @@
|
|||
&i2c0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@0 {
|
||||
reg = <0>;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD20 SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD20 SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
|
@ -291,6 +289,92 @@
|
|||
<21 217 3>;
|
||||
};
|
||||
|
||||
audio@56000000 {
|
||||
compatible = "socionext,uniphier-ld20-aio";
|
||||
reg = <0x56000000 0x80000>;
|
||||
interrupts = <0 144 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_aout1>,
|
||||
<&pinctrl_aoutiec1>;
|
||||
clock-names = "aio";
|
||||
clocks = <&sys_clk 40>;
|
||||
reset-names = "aio";
|
||||
resets = <&sys_rst 40>;
|
||||
#sound-dai-cells = <1>;
|
||||
socionext,syscon = <&soc_glue>;
|
||||
|
||||
i2s_port0: port@0 {
|
||||
i2s_hdmi: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port1: port@1 {
|
||||
i2s_pcmin2: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port2: port@2 {
|
||||
i2s_line: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&evea_line>;
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port3: port@3 {
|
||||
i2s_hpcmout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port4: port@4 {
|
||||
i2s_hp: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&evea_hp>;
|
||||
};
|
||||
};
|
||||
|
||||
spdif_port0: port@5 {
|
||||
spdif_hiecout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
src_port0: port@6 {
|
||||
i2s_epcmout2: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
src_port1: port@7 {
|
||||
i2s_epcmout3: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
comp_spdif_port0: port@8 {
|
||||
comp_spdif_hiecout1: endpoint {
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
codec@57900000 {
|
||||
compatible = "socionext,uniphier-evea";
|
||||
reg = <0x57900000 0x1000>;
|
||||
clock-names = "evea", "exiv";
|
||||
clocks = <&sys_clk 41>, <&sys_clk 42>;
|
||||
reset-names = "evea", "exiv", "adamv";
|
||||
resets = <&sys_rst 41>, <&sys_rst 42>, <&adamv_rst 0>;
|
||||
#sound-dai-cells = <1>;
|
||||
|
||||
port@0 {
|
||||
evea_line: endpoint {
|
||||
remote-endpoint = <&i2s_line>;
|
||||
};
|
||||
};
|
||||
|
||||
port@1 {
|
||||
evea_hp: endpoint {
|
||||
remote-endpoint = <&i2s_hp>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
adamv@57920000 {
|
||||
compatible = "socionext,uniphier-ld20-adamv",
|
||||
"simple-mfd", "syscon";
|
||||
|
@ -460,7 +544,7 @@
|
|||
cap-sd-highspeed;
|
||||
};
|
||||
|
||||
soc-glue@5f800000 {
|
||||
soc_glue: soc-glue@5f800000 {
|
||||
compatible = "socionext,uniphier-ld20-soc-glue",
|
||||
"simple-mfd", "syscon";
|
||||
reg = <0x5f800000 0x2000>;
|
||||
|
@ -531,6 +615,24 @@
|
|||
};
|
||||
};
|
||||
|
||||
eth: ethernet@65000000 {
|
||||
compatible = "socionext,uniphier-ld20-ave4";
|
||||
status = "disabled";
|
||||
reg = <0x65000000 0x8500>;
|
||||
interrupts = <0 66 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_ether_rgmii>;
|
||||
clocks = <&sys_clk 6>;
|
||||
resets = <&sys_rst 6>;
|
||||
phy-mode = "rgmii";
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
|
||||
mdio: mdio {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
usb: usb@65b00000 {
|
||||
compatible = "socionext,uniphier-ld20-dwc3";
|
||||
reg = <0x65b00000 0x1000>;
|
||||
|
@ -564,3 +666,21 @@
|
|||
};
|
||||
|
||||
#include "uniphier-pinctrl.dtsi"
|
||||
|
||||
&pinctrl_aout1 {
|
||||
drive-strength = <4>; /* default: 3.5mA */
|
||||
|
||||
ao1dacck {
|
||||
pins = "AO1DACCK";
|
||||
drive-strength = <5>; /* 5mA */
|
||||
};
|
||||
};
|
||||
|
||||
&pinctrl_aoutiec1 {
|
||||
drive-strength = <4>; /* default: 3.5mA */
|
||||
|
||||
ao1arc {
|
||||
pins = "AO1ARC";
|
||||
drive-strength = <11>; /* 11mA */
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD4 Reference Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD4 Reference Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-ld4.dtsi"
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD4 SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD4 SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD6b Reference Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD6b Reference Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-ld6b.dtsi"
|
||||
|
@ -71,6 +69,17 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@0 {
|
||||
reg = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier LD6b SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier LD6b SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/*
|
||||
* LD6b consists of two silicon dies: D-chip and A-chip.
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier SoCs default pinctrl settings
|
||||
*
|
||||
* Copyright (C) 2015-2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier SoCs default pinctrl settings
|
||||
//
|
||||
// Copyright (C) 2015-2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
&pinctrl {
|
||||
pinctrl_aout: aout {
|
||||
|
@ -13,6 +11,46 @@
|
|||
function = "aout";
|
||||
};
|
||||
|
||||
pinctrl_ain1: ain1 {
|
||||
groups = "ain1";
|
||||
function = "ain1";
|
||||
};
|
||||
|
||||
pinctrl_ain2: ain2 {
|
||||
groups = "ain2";
|
||||
function = "ain2";
|
||||
};
|
||||
|
||||
pinctrl_ainiec1: ainiec1 {
|
||||
groups = "ainiec1";
|
||||
function = "ainiec1";
|
||||
};
|
||||
|
||||
pinctrl_aout1: aout1 {
|
||||
groups = "aout1";
|
||||
function = "aout1";
|
||||
};
|
||||
|
||||
pinctrl_aout2: aout2 {
|
||||
groups = "aout2";
|
||||
function = "aout2";
|
||||
};
|
||||
|
||||
pinctrl_aout3: aout3 {
|
||||
groups = "aout3";
|
||||
function = "aout3";
|
||||
};
|
||||
|
||||
pinctrl_aoutiec1: aoutiec1 {
|
||||
groups = "aoutiec1";
|
||||
function = "aoutiec1";
|
||||
};
|
||||
|
||||
pinctrl_aoutiec2: aoutiec2 {
|
||||
groups = "aoutiec2";
|
||||
function = "aoutiec2";
|
||||
};
|
||||
|
||||
pinctrl_emmc: emmc {
|
||||
groups = "emmc", "emmc_dat8";
|
||||
function = "emmc";
|
||||
|
@ -38,6 +76,16 @@
|
|||
function = "ether_rmii";
|
||||
};
|
||||
|
||||
pinctrl_ether1_rgmii: ether1-rgmii {
|
||||
groups = "ether1_rgmii";
|
||||
function = "ether1_rgmii";
|
||||
};
|
||||
|
||||
pinctrl_ether1_rmii: ether1-rmii {
|
||||
groups = "ether1_rmii";
|
||||
function = "ether1_rmii";
|
||||
};
|
||||
|
||||
pinctrl_i2c0: i2c0 {
|
||||
groups = "i2c0";
|
||||
function = "i2c0";
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Pro4 Ace Board
|
||||
*
|
||||
* Copyright (C) 2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Pro4 Ace Board
|
||||
//
|
||||
// Copyright (C) 2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-pro4.dtsi"
|
||||
|
@ -83,6 +81,17 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb2 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Pro4 Reference Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Pro4 Reference Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-pro4.dtsi"
|
||||
|
@ -84,6 +82,17 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@0 {
|
||||
reg = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Pro4 Sanji Board
|
||||
*
|
||||
* Copyright (C) 2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Pro4 Sanji Board
|
||||
//
|
||||
// Copyright (C) 2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-pro4.dtsi"
|
||||
|
@ -78,6 +76,17 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb2 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Pro4 SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Pro4 SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
|
||||
|
@ -422,6 +420,24 @@
|
|||
};
|
||||
};
|
||||
|
||||
eth: ethernet@65000000 {
|
||||
compatible = "socionext,uniphier-pro4-ave4";
|
||||
status = "disabled";
|
||||
reg = <0x65000000 0x8500>;
|
||||
interrupts = <0 66 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_ether_rgmii>;
|
||||
clocks = <&sys_clk 6>;
|
||||
resets = <&sys_rst 6>;
|
||||
phy-mode = "rgmii";
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
|
||||
mdio: mdio {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
usb0: usb@65b00000 {
|
||||
compatible = "socionext,uniphier-pro4-dwc3";
|
||||
status = "disabled";
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Pro5 SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Pro5 SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/ {
|
||||
compatible = "socionext,uniphier-pro5";
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier PXs2 Gentil Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier PXs2 Gentil Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-pxs2.dtsi"
|
||||
|
@ -34,6 +32,12 @@
|
|||
device_type = "memory";
|
||||
reg = <0x80000000 0x80000000>;
|
||||
};
|
||||
|
||||
sound {
|
||||
compatible = "audio-graph-card";
|
||||
label = "UniPhier PXs2";
|
||||
dais = <&i2s_port2>;
|
||||
};
|
||||
};
|
||||
|
||||
&serial2 {
|
||||
|
@ -51,14 +55,43 @@
|
|||
};
|
||||
};
|
||||
|
||||
&i2s_aux {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&wm_speaker>;
|
||||
};
|
||||
|
||||
&i2c2 {
|
||||
status = "okay";
|
||||
|
||||
wm8960@1a {
|
||||
compatible = "wlf,wm8960";
|
||||
reg = <0x1a>;
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
wm_speaker: endpoint {
|
||||
dai-format = "i2s";
|
||||
remote-endpoint = <&i2s_aux>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&emmc {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier PXs2 Vodka Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier PXs2 Vodka Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-pxs2.dtsi"
|
||||
|
@ -32,12 +30,49 @@
|
|||
device_type = "memory";
|
||||
reg = <0x80000000 0x80000000>;
|
||||
};
|
||||
|
||||
sound {
|
||||
compatible = "audio-graph-card";
|
||||
label = "UniPhier PXs2";
|
||||
dais = <&spdif_port0
|
||||
&comp_spdif_port0>;
|
||||
};
|
||||
|
||||
spdif-out {
|
||||
compatible = "linux,spdif-dit";
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
spdif_tx: endpoint {
|
||||
remote-endpoint = <&spdif_hiecout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
comp-spdif-out {
|
||||
compatible = "linux,spdif-dit";
|
||||
#sound-dai-cells = <0>;
|
||||
|
||||
port@0 {
|
||||
comp_spdif_tx: endpoint {
|
||||
remote-endpoint = <&comp_spdif_hiecout1>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&serial2 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&spdif_hiecout1 {
|
||||
remote-endpoint = <&spdif_tx>;
|
||||
};
|
||||
|
||||
&comp_spdif_hiecout1 {
|
||||
remote-endpoint = <&comp_spdif_tx>;
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
@ -46,6 +81,17 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
|
||||
&mdio {
|
||||
ethphy: ethphy@1 {
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier PXs2 SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier PXs2 SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
#include <dt-bindings/thermal/thermal.h>
|
||||
|
@ -231,6 +229,61 @@
|
|||
<21 217 3>;
|
||||
};
|
||||
|
||||
audio@56000000 {
|
||||
compatible = "socionext,uniphier-pxs2-aio";
|
||||
reg = <0x56000000 0x80000>;
|
||||
interrupts = <0 144 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_ain1>,
|
||||
<&pinctrl_ain2>,
|
||||
<&pinctrl_ainiec1>,
|
||||
<&pinctrl_aout2>,
|
||||
<&pinctrl_aout3>,
|
||||
<&pinctrl_aoutiec1>,
|
||||
<&pinctrl_aoutiec2>;
|
||||
clock-names = "aio";
|
||||
clocks = <&sys_clk 40>;
|
||||
reset-names = "aio";
|
||||
resets = <&sys_rst 40>;
|
||||
#sound-dai-cells = <1>;
|
||||
socionext,syscon = <&soc_glue>;
|
||||
|
||||
i2s_port0: port@0 {
|
||||
i2s_hdmi: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port1: port@1 {
|
||||
i2s_line: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
i2s_port2: port@2 {
|
||||
i2s_aux: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
spdif_port0: port@3 {
|
||||
spdif_hiecout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
spdif_port1: port@4 {
|
||||
spdif_iecout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
comp_spdif_port0: port@5 {
|
||||
comp_spdif_hiecout1: endpoint {
|
||||
};
|
||||
};
|
||||
|
||||
comp_spdif_port1: port@6 {
|
||||
comp_spdif_iecout1: endpoint {
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
i2c0: i2c@58780000 {
|
||||
compatible = "socionext,uniphier-fi2c";
|
||||
status = "disabled";
|
||||
|
@ -405,7 +458,7 @@
|
|||
sd-uhs-sdr50;
|
||||
};
|
||||
|
||||
soc-glue@5f800000 {
|
||||
soc_glue: soc-glue@5f800000 {
|
||||
compatible = "socionext,uniphier-pxs2-soc-glue",
|
||||
"simple-mfd", "syscon";
|
||||
reg = <0x5f800000 0x2000>;
|
||||
|
@ -485,6 +538,24 @@
|
|||
};
|
||||
};
|
||||
|
||||
eth: ethernet@65000000 {
|
||||
compatible = "socionext,uniphier-pxs2-ave4";
|
||||
status = "disabled";
|
||||
reg = <0x65000000 0x8500>;
|
||||
interrupts = <0 66 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_ether_rgmii>;
|
||||
clocks = <&sys_clk 6>;
|
||||
resets = <&sys_rst 6>;
|
||||
phy-mode = "rgmii";
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
|
||||
mdio: mdio {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
usb0: usb@65b00000 {
|
||||
compatible = "socionext,uniphier-pxs2-dwc3";
|
||||
status = "disabled";
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier PXs3 Reference Board
|
||||
*
|
||||
* Copyright (C) 2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier PXs3 Reference Board
|
||||
//
|
||||
// Copyright (C) 2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-pxs3.dtsi"
|
||||
|
@ -77,6 +75,28 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
ð0 {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy0>;
|
||||
};
|
||||
|
||||
&mdio0 {
|
||||
ethphy0: ethphy@0 {
|
||||
reg = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
ð1 {
|
||||
status = "okay";
|
||||
phy-handle = <ðphy1>;
|
||||
};
|
||||
|
||||
&mdio1 {
|
||||
ethphy1: ethphy@0 {
|
||||
reg = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
&usb0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier PXs3 SoC
|
||||
*
|
||||
* Copyright (C) 2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier PXs3 SoC
|
||||
//
|
||||
// Copyright (C) 2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
|
@ -361,7 +359,7 @@
|
|||
cap-sd-highspeed;
|
||||
};
|
||||
|
||||
soc-glue@5f800000 {
|
||||
soc_glue: soc-glue@5f800000 {
|
||||
compatible = "socionext,uniphier-pxs3-soc-glue",
|
||||
"simple-mfd", "syscon";
|
||||
reg = <0x5f800000 0x2000>;
|
||||
|
@ -425,6 +423,42 @@
|
|||
};
|
||||
};
|
||||
|
||||
eth0: ethernet@65000000 {
|
||||
compatible = "socionext,uniphier-pxs3-ave4";
|
||||
status = "disabled";
|
||||
reg = <0x65000000 0x8500>;
|
||||
interrupts = <0 66 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_ether_rgmii>;
|
||||
clocks = <&sys_clk 6>;
|
||||
resets = <&sys_rst 6>;
|
||||
phy-mode = "rgmii";
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
|
||||
mdio0: mdio {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
eth1: ethernet@65200000 {
|
||||
compatible = "socionext,uniphier-pxs3-ave4";
|
||||
status = "disabled";
|
||||
reg = <0x65200000 0x8500>;
|
||||
interrupts = <0 67 4>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_ether1_rgmii>;
|
||||
clocks = <&sys_clk 7>;
|
||||
resets = <&sys_rst 7>;
|
||||
phy-mode = "rgmii";
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
|
||||
mdio1: mdio {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
};
|
||||
|
||||
usb0: usb@65b00000 {
|
||||
compatible = "socionext,uniphier-pxs3-dwc3";
|
||||
status = "disabled";
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Reference Daughter Board
|
||||
*
|
||||
* Copyright (C) 2015-2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Reference Daughter Board
|
||||
//
|
||||
// Copyright (C) 2015-2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
&i2c0 {
|
||||
eeprom@50 {
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier sLD8 Reference Board
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier sLD8 Reference Board
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
/dts-v1/;
|
||||
#include "uniphier-sld8.dtsi"
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier sLD8 SoC
|
||||
*
|
||||
* Copyright (C) 2015-2016 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier sLD8 SoC
|
||||
//
|
||||
// Copyright (C) 2015-2016 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
#include <dt-bindings/gpio/uniphier-gpio.h>
|
||||
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
/*
|
||||
* Device Tree Source for UniPhier Support Card (Expansion Board)
|
||||
*
|
||||
* Copyright (C) 2015-2017 Socionext Inc.
|
||||
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
*
|
||||
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
*/
|
||||
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
||||
//
|
||||
// Device Tree Source for UniPhier Support Card (Expansion Board)
|
||||
//
|
||||
// Copyright (C) 2015-2017 Socionext Inc.
|
||||
// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||||
|
||||
&system_bus {
|
||||
status = "okay";
|
||||
|
|
|
@ -21,7 +21,10 @@ const struct uniphier_clk_data uniphier_pxs2_sys_clk_data[] = {
|
|||
defined(CONFIG_ARCH_UNIPHIER_PRO4) || defined(CONFIG_ARCH_UNIPHIER_PRO5) ||\
|
||||
defined(CONFIG_ARCH_UNIPHIER_PXS2) || defined(CONFIG_ARCH_UNIPHIER_LD6B)
|
||||
UNIPHIER_LD4_SYS_CLK_NAND(2),
|
||||
UNIPHIER_CLK_GATE_SIMPLE(6, 0x2104, 12), /* ether (Pro4, PXs2) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(7, 0x2104, 5), /* ether-gb (Pro4) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(8, 0x2104, 10), /* stdmac */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(10, 0x2260, 0), /* ether-phy (Pro4) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(12, 0x2104, 6), /* gio (Pro4, Pro5) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(14, 0x2104, 16), /* usb30 (Pro4, Pro5, PXs2) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(15, 0x2104, 17), /* usb31 (Pro4, Pro5, PXs2) */
|
||||
|
@ -34,6 +37,7 @@ const struct uniphier_clk_data uniphier_pxs2_sys_clk_data[] = {
|
|||
const struct uniphier_clk_data uniphier_ld20_sys_clk_data[] = {
|
||||
#if defined(CONFIG_ARCH_UNIPHIER_LD11) || defined(CONFIG_ARCH_UNIPHIER_LD20)
|
||||
UNIPHIER_LD11_SYS_CLK_NAND(2),
|
||||
UNIPHIER_CLK_GATE_SIMPLE(6, 0x210c, 6), /* ether */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(8, 0x210c, 8), /* stdmac */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(14, 0x210c, 14), /* usb30 (LD20) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(16, 0x210c, 12), /* usb30-phy0 (LD20) */
|
||||
|
@ -45,6 +49,8 @@ const struct uniphier_clk_data uniphier_ld20_sys_clk_data[] = {
|
|||
const struct uniphier_clk_data uniphier_pxs3_sys_clk_data[] = {
|
||||
#if defined(CONFIG_ARCH_UNIPHIER_PXS3)
|
||||
UNIPHIER_LD11_SYS_CLK_NAND(2),
|
||||
UNIPHIER_CLK_GATE_SIMPLE(6, 0x210c, 9), /* ether0 */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(7, 0x210c, 10), /* ether1 */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(12, 0x210c, 4), /* usb30 (gio0) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(13, 0x210c, 5), /* usb31-0 (gio1) */
|
||||
UNIPHIER_CLK_GATE_SIMPLE(14, 0x210c, 6), /* usb31-1 (gio1-1) */
|
||||
|
|
|
@ -43,6 +43,7 @@ struct uniphier_reset_data {
|
|||
/* System reset data */
|
||||
static const struct uniphier_reset_data uniphier_pro4_sys_reset_data[] = {
|
||||
UNIPHIER_RESETX(2, 0x2000, 2), /* NAND */
|
||||
UNIPHIER_RESETX(6, 0x2000, 12), /* ETHER */
|
||||
UNIPHIER_RESETX(8, 0x2000, 10), /* STDMAC */
|
||||
UNIPHIER_RESETX(12, 0x2000, 6), /* GIO */
|
||||
UNIPHIER_RESETX(14, 0x2000, 17), /* USB30 */
|
||||
|
@ -52,6 +53,7 @@ static const struct uniphier_reset_data uniphier_pro4_sys_reset_data[] = {
|
|||
|
||||
static const struct uniphier_reset_data uniphier_pxs2_sys_reset_data[] = {
|
||||
UNIPHIER_RESETX(2, 0x2000, 2), /* NAND */
|
||||
UNIPHIER_RESETX(6, 0x2000, 12), /* ETHER */
|
||||
UNIPHIER_RESETX(8, 0x2000, 10), /* STDMAC */
|
||||
UNIPHIER_RESETX(14, 0x2000, 17), /* USB30 */
|
||||
UNIPHIER_RESETX(15, 0x2004, 17), /* USB31 */
|
||||
|
@ -68,6 +70,7 @@ static const struct uniphier_reset_data uniphier_pxs2_sys_reset_data[] = {
|
|||
static const struct uniphier_reset_data uniphier_ld20_sys_reset_data[] = {
|
||||
UNIPHIER_RESETX(2, 0x200c, 0), /* NAND */
|
||||
UNIPHIER_RESETX(4, 0x200c, 2), /* eMMC */
|
||||
UNIPHIER_RESETX(6, 0x200c, 6), /* ETHER */
|
||||
UNIPHIER_RESETX(8, 0x200c, 8), /* STDMAC */
|
||||
UNIPHIER_RESETX(12, 0x200c, 5), /* GIO */
|
||||
UNIPHIER_RESETX(16, 0x200c, 12), /* USB30-PHY0 */
|
||||
|
@ -80,6 +83,8 @@ static const struct uniphier_reset_data uniphier_ld20_sys_reset_data[] = {
|
|||
static const struct uniphier_reset_data uniphier_pxs3_sys_reset_data[] = {
|
||||
UNIPHIER_RESETX(2, 0x200c, 0), /* NAND */
|
||||
UNIPHIER_RESETX(4, 0x200c, 2), /* eMMC */
|
||||
UNIPHIER_RESETX(6, 0x200c, 9), /* ETHER0 */
|
||||
UNIPHIER_RESETX(7, 0x200c, 10), /* ETHER1 */
|
||||
UNIPHIER_RESETX(8, 0x200c, 12), /* STDMAC */
|
||||
UNIPHIER_RESETX(12, 0x200c, 5), /* USB30 (GIO0) */
|
||||
UNIPHIER_RESETX(13, 0x200c, 6), /* USB31 (GIO1) */
|
||||
|
|
Loading…
Reference in a new issue