blob: 1ffc60db6c5ef501c5be2fb2fb177fc401a93e21 [file] [log] [blame]
Johann Neuhauser7e967d92022-02-16 17:12:34 +01001// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-3-Clause
2/*
3 * Copyright (C) 2019-2020 Marek Vasut <marex@denx.de>
4 * Copyright (C) 2022 DH electronics GmbH
5 */
6
7/ {
8 aliases {
9 serial0 = &uart4;
10 serial1 = &usart3;
11 };
12
13 chosen {
14 stdout-path = "serial0:115200n8";
15 };
16};
17
18&usart3 {
19 pinctrl-names = "default";
20 pinctrl-0 = <&usart3_pins_a>;
21 status = "okay";
22};
23
24&usbotg_hs {
25 dr_mode = "otg";
26 pinctrl-0 = <&usbotg_hs_pins_a>;
27 pinctrl-names = "default";
28 phy-names = "usb2-phy";
29 phys = <&usbphyc_port1 0>;
30 vbus-supply = <&vbus_otg>;
31 status = "okay";
32};
33
34&usbphyc {
35 status = "okay";
36};
37
38&usbphyc_port0 {
39 phy-supply = <&vdd_usb>;
40};
41
42&usbphyc_port1 {
43 phy-supply = <&vdd_usb>;
44};