]>
Commit | Line | Data |
---|---|---|
6900aeda KVA |
1 | /* include/ti_usb_phy_uboot.h |
2 | * | |
3 | * Copyright (c) 2014 Texas Instruments Incorporated - http://www.ti.com | |
4 | * | |
5 | * USB2 and USB3 PHY uboot init | |
6 | * | |
7 | * SPDX-License-Identifier: GPL-2.0+ | |
8 | */ | |
9 | ||
10 | #ifndef __TI_USB_PHY_UBOOT_H_ | |
11 | #define __TI_USB_PHY_UBOOT_H_ | |
12 | ||
13 | struct ti_usb_phy_device { | |
14 | void *pll_ctrl_base; | |
15 | void *usb2_phy_power; | |
16 | void *usb3_phy_power; | |
17 | int index; | |
18 | }; | |
19 | ||
20 | int ti_usb_phy_uboot_init(struct ti_usb_phy_device *dev); | |
21 | void ti_usb_phy_uboot_exit(int index); | |
22 | #endif /* __TI_USB_PHY_UBOOT_H_ */ |