Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Cooper Jr., Franklin | bdf7c71 | 2017-06-16 16:16:14 -0500 | [diff] [blame] | 2 | /* |
Nishanth Menon | eaa39c6 | 2023-11-01 15:56:03 -0500 | [diff] [blame] | 3 | * Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/ |
Cooper Jr., Franklin | bdf7c71 | 2017-06-16 16:16:14 -0500 | [diff] [blame] | 4 | */ |
5 | |||||
6 | /{ | ||||
7 | soc { | ||||
Simon Glass | d3a98cb | 2023-02-13 08:56:33 -0700 | [diff] [blame] | 8 | bootph-all; |
Cooper Jr., Franklin | bdf7c71 | 2017-06-16 16:16:14 -0500 | [diff] [blame] | 9 | }; |
Jean-Jacques Hiblot | de12b94 | 2019-09-11 11:33:58 +0200 | [diff] [blame] | 10 | aliases { |
11 | usb0 = &usb; | ||||
12 | usb1 = &usb1; | ||||
13 | }; | ||||
Cooper Jr., Franklin | bdf7c71 | 2017-06-16 16:16:14 -0500 | [diff] [blame] | 14 | }; |
15 | |||||
16 | &i2c1 { | ||||
Simon Glass | d3a98cb | 2023-02-13 08:56:33 -0700 | [diff] [blame] | 17 | bootph-all; |
Cooper Jr., Franklin | bdf7c71 | 2017-06-16 16:16:14 -0500 | [diff] [blame] | 18 | }; |
Jean-Jacques Hiblot | de12b94 | 2019-09-11 11:33:58 +0200 | [diff] [blame] | 19 | |
20 | &usb_phy { | ||||
21 | #phy-cells = <0>; | ||||
22 | psc-domain = <2>; | ||||
23 | }; | ||||
24 | |||||
25 | &usb { | ||||
26 | dwc3@2690000 { | ||||
27 | phys = <&usb_phy>; | ||||
28 | dr_mode = "host"; | ||||
29 | snps,u2ss_inp3_quirk; | ||||
30 | status = "okay"; | ||||
31 | }; | ||||
32 | }; | ||||
33 | |||||
34 | &usb1_phy { | ||||
35 | #phy-cells = <0>; | ||||
36 | psc-domain = <1>; | ||||
37 | }; | ||||
38 | |||||
39 | &usb1 { | ||||
40 | dwc3@25010000 { | ||||
41 | phys = <&usb1_phy>; | ||||
42 | dr_mode = "peripheral"; | ||||
43 | snps,u2ss_inp3_quirk; | ||||
44 | status = "okay"; | ||||
45 | }; | ||||
46 | }; |