1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/
4 */
5
6/{
7	aliases {
8		usb0 = &usb;
9		usb1 = &usb1;
10		i2c0 = &i2c0;
11		i2c1 = &i2c1;
12		i2c2 = &i2c2;
13	};
14
15	chosen {
16		stdout-path = &uart0;
17	};
18};
19
20&soc0 {
21	bootph-all;
22};
23
24&i2c1 {
25	bootph-all;
26};
27
28&usb_phy {
29	#phy-cells = <0>;
30	psc-domain = <2>;
31};
32
33&usb {
34	dwc3@2690000 {
35		phys = <&usb_phy>;
36		dr_mode = "host";
37		snps,u2ss_inp3_quirk;
38		status = "okay";
39	};
40};
41
42&usb1_phy {
43	#phy-cells = <0>;
44	psc-domain = <1>;
45};
46
47&usb1 {
48	dwc3@25010000 {
49		phys = <&usb1_phy>;
50		dr_mode = "peripheral";
51		snps,u2ss_inp3_quirk;
52		status = "okay";
53	};
54};
55