Merge branch 'fix/img-spfi' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[deliverable/linux.git] / include / linux / usb / usb_phy_generic.h
CommitLineData
78c289f8
FB
1#ifndef __LINUX_USB_NOP_XCEIV_H
2#define __LINUX_USB_NOP_XCEIV_H
3
c84d364f 4#include <linux/usb/otg.h>
7acc9973 5#include <linux/gpio/consumer.h>
c84d364f 6
4525beeb 7struct usb_phy_generic_platform_data {
c84d364f 8 enum usb_phy_type type;
1f0972f5
RQ
9 unsigned long clk_rate;
10
11 /* if set fails with -EPROBE_DEFER if can't get regulator */
12 unsigned int needs_vcc:1;
8e933359
RQ
13 unsigned int needs_reset:1; /* deprecated */
14 int gpio_reset;
7acc9973 15 struct gpio_desc *gpiod_vbus;
c84d364f
FB
16};
17
dca769bd 18#if IS_ENABLED(CONFIG_NOP_USB_XCEIV)
78c289f8 19/* sometimes transceivers are accessed only through e.g. ULPI */
2f36ff69
FB
20extern struct platform_device *usb_phy_generic_register(void);
21extern void usb_phy_generic_unregister(struct platform_device *);
78c289f8 22#else
2f36ff69 23static inline struct platform_device *usb_phy_generic_register(void)
78c289f8 24{
2f36ff69 25 return NULL;
78c289f8
FB
26}
27
2f36ff69 28static inline void usb_phy_generic_unregister(struct platform_device *pdev)
78c289f8
FB
29{
30}
31#endif
32
33#endif /* __LINUX_USB_NOP_XCEIV_H */
This page took 0.270328 seconds and 5 git commands to generate.