1// SPDX-License-Identifier: GPL-2.0+ OR MIT
2//
3// Device Tree Source for UniPhier PXs2 Vodka Board
4//
5// Copyright (C) 2015-2016 Socionext Inc.
6//   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
7
8/dts-v1/;
9#include "uniphier-pxs2.dtsi"
10
11/ {
12	model = "UniPhier PXs2 Vodka Board";
13	compatible = "socionext,uniphier-pxs2-vodka", "socionext,uniphier-pxs2";
14
15	chosen {
16		stdout-path = "serial0:115200n8";
17	};
18
19	aliases {
20		serial0 = &serial2;
21		serial1 = &serial0;
22		serial2 = &serial1;
23		i2c0 = &i2c0;
24		i2c4 = &i2c4;
25		i2c5 = &i2c5;
26		i2c6 = &i2c6;
27	};
28
29	memory@80000000 {
30		device_type = "memory";
31		reg = <0x80000000 0x80000000>;
32	};
33
34	sound {
35		compatible = "audio-graph-card";
36		label = "UniPhier PXs2";
37		dais = <&spdif_port0
38			&comp_spdif_port0>;
39	};
40
41	spdif-out {
42		compatible = "linux,spdif-dit";
43		#sound-dai-cells = <0>;
44
45		port@0 {
46			spdif_tx: endpoint {
47				remote-endpoint = <&spdif_hiecout1>;
48			};
49		};
50	};
51
52	comp-spdif-out {
53		compatible = "linux,spdif-dit";
54		#sound-dai-cells = <0>;
55
56		port@0 {
57			comp_spdif_tx: endpoint {
58				remote-endpoint = <&comp_spdif_hiecout1>;
59			};
60		};
61	};
62};
63
64&serial2 {
65	status = "okay";
66};
67
68&spdif_hiecout1 {
69	remote-endpoint = <&spdif_tx>;
70};
71
72&comp_spdif_hiecout1 {
73	remote-endpoint = <&comp_spdif_tx>;
74};
75
76&i2c0 {
77	status = "okay";
78};
79
80&emmc {
81	status = "okay";
82};
83
84&eth {
85	status = "okay";
86	phy-handle = <&ethphy>;
87};
88
89&mdio {
90	ethphy: ethphy@1 {
91		reg = <1>;
92	};
93};
94
95&usb0 {
96	status = "okay";
97};
98