Merge tag 'staging-4.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[deliverable/linux.git] / include / linux / usb / phy.h
CommitLineData
de4217d9 1/*
07673204 2 * USB PHY defines
de4217d9
VB
3 *
4 * These APIs may be used between USB controllers. USB device drivers
5 * (for either host or peripheral roles) don't use these calls; they
6 * continue to use just usb_device and usb_gadget.
7 */
8
9#ifndef __LINUX_USB_PHY_H
10#define __LINUX_USB_PHY_H
11
12#include <linux/notifier.h>
ac96511b 13#include <linux/usb.h>
de4217d9 14
1c9af653
MG
15enum usb_phy_interface {
16 USBPHY_INTERFACE_MODE_UNKNOWN,
17 USBPHY_INTERFACE_MODE_UTMI,
18 USBPHY_INTERFACE_MODE_UTMIW,
19 USBPHY_INTERFACE_MODE_ULPI,
20 USBPHY_INTERFACE_MODE_SERIAL,
21 USBPHY_INTERFACE_MODE_HSIC,
22};
23
de4217d9
VB
24enum usb_phy_events {
25 USB_EVENT_NONE, /* no events or cable disconnected */
26 USB_EVENT_VBUS, /* vbus valid event */
27 USB_EVENT_ID, /* id was grounded */
28 USB_EVENT_CHARGER, /* usb dedicated charger */
29 USB_EVENT_ENUMERATED, /* gadget driver enumerated */
30};
31
32/* associate a type with PHY */
33enum usb_phy_type {
34 USB_PHY_TYPE_UNDEFINED,
35 USB_PHY_TYPE_USB2,
36 USB_PHY_TYPE_USB3,
37};
38
a4c3ddec
VB
39/* OTG defines lots of enumeration states before device reset */
40enum usb_otg_state {
41 OTG_STATE_UNDEFINED = 0,
42
43 /* single-role peripheral, and dual-role default-b */
44 OTG_STATE_B_IDLE,
45 OTG_STATE_B_SRP_INIT,
46 OTG_STATE_B_PERIPHERAL,
47
48 /* extra dual-role default-b states */
49 OTG_STATE_B_WAIT_ACON,
50 OTG_STATE_B_HOST,
51
52 /* dual-role default-a */
53 OTG_STATE_A_IDLE,
54 OTG_STATE_A_WAIT_VRISE,
55 OTG_STATE_A_WAIT_BCON,
56 OTG_STATE_A_HOST,
57 OTG_STATE_A_SUSPEND,
58 OTG_STATE_A_PERIPHERAL,
59 OTG_STATE_A_WAIT_VFALL,
60 OTG_STATE_A_VBUS_ERR,
61};
62
de4217d9
VB
63struct usb_phy;
64struct usb_otg;
65
66/* for transceivers connected thru an ULPI interface, the user must
67 * provide access ops
68 */
69struct usb_phy_io_ops {
70 int (*read)(struct usb_phy *x, u32 reg);
71 int (*write)(struct usb_phy *x, u32 val, u32 reg);
72};
73
74struct usb_phy {
75 struct device *dev;
76 const char *label;
77 unsigned int flags;
78
79 enum usb_phy_type type;
80 enum usb_phy_events last_event;
81
82 struct usb_otg *otg;
83
84 struct device *io_dev;
85 struct usb_phy_io_ops *io_ops;
86 void __iomem *io_priv;
87
88 /* for notification of usb_phy_events */
89 struct atomic_notifier_head notifier;
90
91 /* to pass extra port status to the root hub */
92 u16 port_status;
93 u16 port_change;
94
95 /* to support controllers that have multiple transceivers */
96 struct list_head head;
97
98 /* initialize/shutdown the OTG controller */
99 int (*init)(struct usb_phy *x);
100 void (*shutdown)(struct usb_phy *x);
101
b774212e
FB
102 /* enable/disable VBUS */
103 int (*set_vbus)(struct usb_phy *x, int on);
104
de4217d9
VB
105 /* effective for B devices, ignored for A-peripheral */
106 int (*set_power)(struct usb_phy *x,
107 unsigned mA);
108
07673204 109 /* Set transceiver into suspend mode */
de4217d9
VB
110 int (*set_suspend)(struct usb_phy *x,
111 int suspend);
112
57bf9b09
PC
113 /*
114 * Set wakeup enable for PHY, in that case, the PHY can be
115 * woken up from suspend status due to external events,
116 * like vbus change, dp/dm change and id.
117 */
118 int (*set_wakeup)(struct usb_phy *x, bool enabled);
119
de4217d9 120 /* notify phy connect status change */
ac96511b
PC
121 int (*notify_connect)(struct usb_phy *x,
122 enum usb_device_speed speed);
123 int (*notify_disconnect)(struct usb_phy *x,
124 enum usb_device_speed speed);
de4217d9
VB
125};
126
b4a83e4d
KVA
127/**
128 * struct usb_phy_bind - represent the binding for the phy
129 * @dev_name: the device name of the device that will bind to the phy
130 * @phy_dev_name: the device name of the phy
131 * @index: used if a single controller uses multiple phys
132 * @phy: reference to the phy
133 * @list: to maintain a linked list of the binding information
134 */
135struct usb_phy_bind {
136 const char *dev_name;
137 const char *phy_dev_name;
138 u8 index;
139 struct usb_phy *phy;
140 struct list_head list;
141};
de4217d9
VB
142
143/* for board-specific init logic */
144extern int usb_add_phy(struct usb_phy *, enum usb_phy_type type);
0fa4fab4 145extern int usb_add_phy_dev(struct usb_phy *);
de4217d9
VB
146extern void usb_remove_phy(struct usb_phy *);
147
148/* helpers for direct access thru low-level io interface */
149static inline int usb_phy_io_read(struct usb_phy *x, u32 reg)
150{
410aee70 151 if (x && x->io_ops && x->io_ops->read)
de4217d9
VB
152 return x->io_ops->read(x, reg);
153
154 return -EINVAL;
155}
156
157static inline int usb_phy_io_write(struct usb_phy *x, u32 val, u32 reg)
158{
410aee70 159 if (x && x->io_ops && x->io_ops->write)
de4217d9
VB
160 return x->io_ops->write(x, val, reg);
161
162 return -EINVAL;
163}
164
165static inline int
166usb_phy_init(struct usb_phy *x)
167{
410aee70 168 if (x && x->init)
de4217d9
VB
169 return x->init(x);
170
171 return 0;
172}
173
174static inline void
175usb_phy_shutdown(struct usb_phy *x)
176{
410aee70 177 if (x && x->shutdown)
de4217d9
VB
178 x->shutdown(x);
179}
180
b774212e
FB
181static inline int
182usb_phy_vbus_on(struct usb_phy *x)
183{
410aee70 184 if (!x || !x->set_vbus)
b774212e
FB
185 return 0;
186
187 return x->set_vbus(x, true);
188}
189
190static inline int
191usb_phy_vbus_off(struct usb_phy *x)
192{
410aee70 193 if (!x || !x->set_vbus)
b774212e
FB
194 return 0;
195
196 return x->set_vbus(x, false);
197}
198
de4217d9 199/* for usb host and peripheral controller drivers */
edc7cb2e 200#if IS_ENABLED(CONFIG_USB_PHY)
de4217d9
VB
201extern struct usb_phy *usb_get_phy(enum usb_phy_type type);
202extern struct usb_phy *devm_usb_get_phy(struct device *dev,
203 enum usb_phy_type type);
0fa4fab4
KVA
204extern struct usb_phy *usb_get_phy_dev(struct device *dev, u8 index);
205extern struct usb_phy *devm_usb_get_phy_dev(struct device *dev, u8 index);
5d3c28b5
KVA
206extern struct usb_phy *devm_usb_get_phy_by_phandle(struct device *dev,
207 const char *phandle, u8 index);
de4217d9
VB
208extern void usb_put_phy(struct usb_phy *);
209extern void devm_usb_put_phy(struct device *dev, struct usb_phy *x);
b4a83e4d
KVA
210extern int usb_bind_phy(const char *dev_name, u8 index,
211 const char *phy_dev_name);
df9f7b31 212extern void usb_phy_set_event(struct usb_phy *x, unsigned long event);
de4217d9
VB
213#else
214static inline struct usb_phy *usb_get_phy(enum usb_phy_type type)
215{
b7fa5c2a 216 return ERR_PTR(-ENXIO);
de4217d9
VB
217}
218
219static inline struct usb_phy *devm_usb_get_phy(struct device *dev,
220 enum usb_phy_type type)
221{
b7fa5c2a 222 return ERR_PTR(-ENXIO);
de4217d9
VB
223}
224
0fa4fab4
KVA
225static inline struct usb_phy *usb_get_phy_dev(struct device *dev, u8 index)
226{
b7fa5c2a 227 return ERR_PTR(-ENXIO);
0fa4fab4
KVA
228}
229
230static inline struct usb_phy *devm_usb_get_phy_dev(struct device *dev, u8 index)
231{
b7fa5c2a 232 return ERR_PTR(-ENXIO);
0fa4fab4
KVA
233}
234
5d3c28b5
KVA
235static inline struct usb_phy *devm_usb_get_phy_by_phandle(struct device *dev,
236 const char *phandle, u8 index)
237{
b7fa5c2a 238 return ERR_PTR(-ENXIO);
5d3c28b5
KVA
239}
240
de4217d9
VB
241static inline void usb_put_phy(struct usb_phy *x)
242{
243}
244
245static inline void devm_usb_put_phy(struct device *dev, struct usb_phy *x)
246{
247}
248
b4a83e4d
KVA
249static inline int usb_bind_phy(const char *dev_name, u8 index,
250 const char *phy_dev_name)
251{
252 return -EOPNOTSUPP;
253}
df9f7b31
KR
254
255static inline void usb_phy_set_event(struct usb_phy *x, unsigned long event)
256{
257}
de4217d9
VB
258#endif
259
260static inline int
261usb_phy_set_power(struct usb_phy *x, unsigned mA)
262{
263 if (x && x->set_power)
264 return x->set_power(x, mA);
265 return 0;
266}
267
268/* Context: can sleep */
269static inline int
270usb_phy_set_suspend(struct usb_phy *x, int suspend)
271{
410aee70 272 if (x && x->set_suspend != NULL)
de4217d9
VB
273 return x->set_suspend(x, suspend);
274 else
275 return 0;
276}
277
57bf9b09
PC
278static inline int
279usb_phy_set_wakeup(struct usb_phy *x, bool enabled)
280{
281 if (x && x->set_wakeup)
282 return x->set_wakeup(x, enabled);
283 else
284 return 0;
285}
286
de4217d9 287static inline int
ac96511b 288usb_phy_notify_connect(struct usb_phy *x, enum usb_device_speed speed)
de4217d9 289{
410aee70 290 if (x && x->notify_connect)
ac96511b 291 return x->notify_connect(x, speed);
de4217d9
VB
292 else
293 return 0;
294}
295
296static inline int
ac96511b 297usb_phy_notify_disconnect(struct usb_phy *x, enum usb_device_speed speed)
de4217d9 298{
410aee70 299 if (x && x->notify_disconnect)
ac96511b 300 return x->notify_disconnect(x, speed);
de4217d9
VB
301 else
302 return 0;
303}
304
305/* notifiers */
306static inline int
307usb_register_notifier(struct usb_phy *x, struct notifier_block *nb)
308{
309 return atomic_notifier_chain_register(&x->notifier, nb);
310}
311
312static inline void
313usb_unregister_notifier(struct usb_phy *x, struct notifier_block *nb)
314{
315 atomic_notifier_chain_unregister(&x->notifier, nb);
316}
317
318static inline const char *usb_phy_type_string(enum usb_phy_type type)
319{
320 switch (type) {
321 case USB_PHY_TYPE_USB2:
322 return "USB2 PHY";
323 case USB_PHY_TYPE_USB3:
324 return "USB3 PHY";
325 default:
326 return "UNKNOWN PHY TYPE";
327 }
328}
329#endif /* __LINUX_USB_PHY_H */
This page took 0.2685 seconds and 5 git commands to generate.