Enable USB related properties for USB functionality on tuna. Change-Id: Ia4270aa4860d8b894ab094dafbad61d278f7606f Signed-off-by: Uttkarsh Aggarwal <quic_uaggarwa@quicinc.com>
41 lines
663 B
Plaintext
41 lines
663 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
&arch_timer {
|
|
clock-frequency = <500000>;
|
|
};
|
|
|
|
&memtimer {
|
|
clock-frequency = <500000>;
|
|
};
|
|
|
|
&soc {
|
|
usb_nop_phy: usb_nop_phy {
|
|
compatible = "usb-nop-xceiv";
|
|
};
|
|
|
|
usb_emuphy: phy@a784000 {
|
|
compatible = "qcom,usb-emu-phy";
|
|
reg = <0x0a784000 0x9500>;
|
|
|
|
qcom,emu-init-seq = <0xfffff 0x4
|
|
0xffff0 0x4
|
|
0x100000 0x20
|
|
0x0 0x20
|
|
0x000101F0 0x20
|
|
0x00100000 0x3c
|
|
0x0 0x3c
|
|
0x0 0x4>;
|
|
};
|
|
};
|
|
|
|
&usb0 {
|
|
dwc3@a600000 {
|
|
usb-phy = <&usb_emuphy>, <&usb_nop_phy>;
|
|
dr_mode = "peripheral";
|
|
maximum-speed = "high-speed";
|
|
};
|
|
};
|