ti-usb-phy-uboot.h 494 B

12345678910111213141516171819202122
  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. #ifndef __TI_USB_PHY_UBOOT_H_
  10. #define __TI_USB_PHY_UBOOT_H_
  11. struct ti_usb_phy_device {
  12. void *pll_ctrl_base;
  13. void *usb2_phy_power;
  14. void *usb3_phy_power;
  15. int index;
  16. };
  17. int ti_usb_phy_uboot_init(struct ti_usb_phy_device *dev);
  18. void ti_usb_phy_uboot_exit(int index);
  19. #endif /* __TI_USB_PHY_UBOOT_H_ */