-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
usb: add devicetree helpers for determining dr_mode and phy_type
This adds two little devicetree helper functions for determining the dr_mode (host, peripheral, otg) and phy_type (utmi, ulpi,...) from the devicetree. Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Michael Grzeschik
authored and
Greg Kroah-Hartman
committed
Jun 17, 2013
1 parent
2e27041
commit 1c9af65
Showing
6 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* USB of helper code | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/of.h> | ||
#include <linux/usb/of.h> | ||
#include <linux/usb/otg.h> | ||
|
||
static const char *const usbphy_modes[] = { | ||
[USBPHY_INTERFACE_MODE_UNKNOWN] = "", | ||
[USBPHY_INTERFACE_MODE_UTMI] = "utmi", | ||
[USBPHY_INTERFACE_MODE_UTMIW] = "utmi_wide", | ||
[USBPHY_INTERFACE_MODE_ULPI] = "ulpi", | ||
[USBPHY_INTERFACE_MODE_SERIAL] = "serial", | ||
[USBPHY_INTERFACE_MODE_HSIC] = "hsic", | ||
}; | ||
|
||
/** | ||
* of_usb_get_phy_mode - Get phy mode for given device_node | ||
* @np: Pointer to the given device_node | ||
* | ||
* The function gets phy interface string from property 'phy_type', | ||
* and returns the correspondig enum usb_phy_interface | ||
*/ | ||
enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np) | ||
{ | ||
const char *phy_type; | ||
int err, i; | ||
|
||
err = of_property_read_string(np, "phy_type", &phy_type); | ||
if (err < 0) | ||
return USBPHY_INTERFACE_MODE_UNKNOWN; | ||
|
||
for (i = 0; i < ARRAY_SIZE(usbphy_modes); i++) | ||
if (!strcmp(phy_type, usbphy_modes[i])) | ||
return i; | ||
|
||
return USBPHY_INTERFACE_MODE_UNKNOWN; | ||
} | ||
EXPORT_SYMBOL_GPL(of_usb_get_phy_mode); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* 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> | ||
|
||
#ifdef CONFIG_OF | ||
enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np); | ||
enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np); | ||
#else | ||
static inline enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np) | ||
{ | ||
return USBPHY_INTERFACE_MODE_UNKNOWN; | ||
} | ||
|
||
static inline enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np) | ||
{ | ||
return USB_DR_MODE_UNKNOWN; | ||
} | ||
#endif | ||
|
||
#endif /* __LINUX_USB_OF_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters