This adds two functions to get DT properties "mentor,power" and "dr_mode": musb_get_power() and musb_mode musb_get_mode() Signed-off-by: Petr Kulhavy <petr@xxxxxxxxx> --- drivers/usb/musb/musb_core.c | 36 ++++++++++++++++++++++++++++++++++++ drivers/usb/musb/musb_core.h | 13 +++++++++++++ 2 files changed, 49 insertions(+) diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index c3791a0..f96a79a 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -100,6 +100,7 @@ #include <linux/io.h> #include <linux/dma-mapping.h> #include <linux/usb.h> +#include <linux/usb/of.h> #include "musb_core.h" @@ -129,6 +130,41 @@ static inline struct musb *dev_to_musb(struct device *dev) return dev_get_drvdata(dev); } +enum musb_mode musb_get_mode(struct device *dev) +{ + enum usb_dr_mode mode; + + mode = usb_get_dr_mode(dev); + switch (mode) { + case USB_DR_MODE_HOST: + return MUSB_HOST; + + case USB_DR_MODE_PERIPHERAL: + return MUSB_PERIPHERAL; + + case USB_DR_MODE_OTG: + return MUSB_OTG; + + default: + return MUSB_UNDEFINED; + } +} +EXPORT_SYMBOL_GPL(musb_get_mode); + +u8 musb_get_power(struct device *dev) +{ + int ret; + unsigned power_ma; + + /* the "mentor,power" value is in milliamperes, whereas + * the mentor configuration is in 2mA units + */ + ret = of_property_read_u32(dev->of_node, "mentor,power", &power_ma); + + return ret ? 0 : power_ma / 2; +} +EXPORT_SYMBOL_GPL(musb_get_power); + /*-------------------------------------------------------------------------*/ #ifndef CONFIG_BLACKFIN diff --git a/drivers/usb/musb/musb_core.h b/drivers/usb/musb/musb_core.h index fd215fb..1f4754b 100644 --- a/drivers/usb/musb/musb_core.h +++ b/drivers/usb/musb/musb_core.h @@ -614,4 +614,17 @@ static inline void musb_platform_post_root_reset_end(struct musb *musb) musb->ops->post_root_reset_end(musb); } +/* gets the "dr_mode" property from DT and converts it into musb_mode + * if the property is not found returns MUSB_UNDEFINED + */ +extern enum musb_mode musb_get_mode(struct device *dev); + +/* gets the "mentor,power" property from DT + * and converts it from mA to 2mA units for the "power" parameter + * in struct musb_hdrc_platform_data + * + * in case the property is not found returns 0 + */ +extern u8 musb_get_power(struct device *dev); + #endif /* __MUSB_CORE_H__ */ -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html