2013-06-13 14:59:55 +00:00
|
|
|
/*
|
|
|
|
* OF helpers for usb devices.
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_USB_OF_H
|
|
|
|
#define __LINUX_USB_OF_H
|
|
|
|
|
|
|
|
#include <linux/usb/otg.h>
|
|
|
|
#include <linux/usb/phy.h>
|
|
|
|
|
2013-06-24 01:25:59 +00:00
|
|
|
#if IS_ENABLED(CONFIG_OF)
|
2013-06-13 14:59:55 +00:00
|
|
|
enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np);
|
|
|
|
#else
|
2013-06-24 01:25:59 +00:00
|
|
|
static inline enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np)
|
2013-06-13 14:59:55 +00:00
|
|
|
{
|
2013-06-24 01:25:59 +00:00
|
|
|
return USB_DR_MODE_UNKNOWN;
|
2013-06-13 14:59:55 +00:00
|
|
|
}
|
2013-06-24 01:25:59 +00:00
|
|
|
#endif
|
2013-06-13 14:59:55 +00:00
|
|
|
|
2013-06-24 01:25:59 +00:00
|
|
|
#if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_USB_PHY)
|
|
|
|
enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np);
|
|
|
|
#else
|
|
|
|
static inline enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np)
|
2013-06-13 14:59:55 +00:00
|
|
|
{
|
2013-06-24 01:25:59 +00:00
|
|
|
return USBPHY_INTERFACE_MODE_UNKNOWN;
|
2013-06-13 14:59:55 +00:00
|
|
|
}
|
2013-06-24 01:25:59 +00:00
|
|
|
|
2013-06-13 14:59:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __LINUX_USB_OF_H */
|