blob: feeddb865296dd53f82087a4dad2a31584ea41c8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kishon Vijay Abraham Ie99e37b2015-02-23 18:40:12 +05302/* include/ti_usb_phy_uboot.h
3 *
Nishanth Menoneaa39c62023-11-01 15:56:03 -05004 * Copyright (c) 2014 Texas Instruments Incorporated - https://www.ti.com
Kishon Vijay Abraham Ie99e37b2015-02-23 18:40:12 +05305 *
6 * USB2 and USB3 PHY uboot init
Kishon Vijay Abraham Ie99e37b2015-02-23 18:40:12 +05307 */
8
9#ifndef __TI_USB_PHY_UBOOT_H_
10#define __TI_USB_PHY_UBOOT_H_
11
12struct ti_usb_phy_device {
13 void *pll_ctrl_base;
14 void *usb2_phy_power;
15 void *usb3_phy_power;
16 int index;
17};
18
19int ti_usb_phy_uboot_init(struct ti_usb_phy_device *dev);
20void ti_usb_phy_uboot_exit(int index);
21#endif /* __TI_USB_PHY_UBOOT_H_ */