usb_phy_generic.h 789 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef __LINUX_USB_NOP_XCEIV_H
  2. #define __LINUX_USB_NOP_XCEIV_H
  3. #include <linux/usb/otg.h>
  4. struct usb_phy_generic_platform_data {
  5. enum usb_phy_type type;
  6. unsigned long clk_rate;
  7. /* if set fails with -EPROBE_DEFER if can't get regulator */
  8. unsigned int needs_vcc:1;
  9. unsigned int needs_reset:1; /* deprecated */
  10. int gpio_reset;
  11. };
  12. #if IS_ENABLED(CONFIG_NOP_USB_XCEIV)
  13. /* sometimes transceivers are accessed only through e.g. ULPI */
  14. extern struct platform_device *usb_phy_generic_register(void);
  15. extern void usb_phy_generic_unregister(struct platform_device *);
  16. #else
  17. static inline struct platform_device *usb_phy_generic_register(void)
  18. {
  19. return NULL;
  20. }
  21. static inline void usb_phy_generic_unregister(struct platform_device *pdev)
  22. {
  23. }
  24. #endif
  25. #endif /* __LINUX_USB_NOP_XCEIV_H */