ti-usb-phy-uboot.h 490 B

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