1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// SPDX-License-Identifier: GPL-2.0
/*
* usb devicetree helper functions
*/
#include <common.h>
#include <usb/usb.h>
#include <usb/phy.h>
#include <of.h>
static const char *usb_dr_modes[] = {
[USB_DR_MODE_UNKNOWN] = "",
[USB_DR_MODE_HOST] = "host",
[USB_DR_MODE_PERIPHERAL] = "peripheral",
[USB_DR_MODE_OTG] = "otg",
};
/**
* of_usb_get_dr_mode - Get dual role mode for given device_node
* @np: Pointer to the given device_node
*
* The function gets phy interface string from property 'dr_mode',
* and returns the correspondig enum usb_dr_mode
*/
enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np,
const char *propname)
{
const char *dr_mode;
int err, i;
if (!propname)
propname = "dr_mode";
err = of_property_read_string(np, propname, &dr_mode);
if (err < 0)
return USB_DR_MODE_UNKNOWN;
for (i = 0; i < ARRAY_SIZE(usb_dr_modes); i++)
if (!strcmp(dr_mode, usb_dr_modes[i]))
return i;
return USB_DR_MODE_UNKNOWN;
}
EXPORT_SYMBOL_GPL(of_usb_get_dr_mode);
static const char *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 *propname)
{
const char *phy_type;
int err, i;
if (!propname)
propname = "phy_type";
err = of_property_read_string(np, propname, &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);
/**
* of_usb_get_maximum_speed - Get maximum speed for given device_node
* @np: Pointer to the given device_node
*
* The function gets maximum speed string from property 'maximum-speed',
* and returns the correspondig enum usb_device_speed
*/
enum usb_device_speed of_usb_get_maximum_speed(struct device_node *np,
const char *propname)
{
const char *maximum_speed;
int err;
if (!propname)
propname = "maximum-speed";
err = of_property_read_string(np, propname, &maximum_speed);
if (err < 0)
return USB_SPEED_UNKNOWN;
return usb_speed_by_string(maximum_speed);
}
EXPORT_SYMBOL_GPL(of_usb_get_maximum_speed);
|