blob: 6c97f8e664925b9c81501835bba4bff16a2b063c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * board initialization should put one of these into dev->platform_data
4 * and place the sl811hs onto platform_bus named "sl811-hcd".
5 */
6
Robert P. J. Daydda43a02008-03-07 13:45:32 -05007#ifndef __LINUX_USB_SL811_H
8#define __LINUX_USB_SL811_H
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010struct sl811_platform_data {
11 unsigned can_wakeup:1;
12
13 /* given port_power, msec/2 after power on till power good */
14 u8 potpg;
15
16 /* mA/2 power supplied on this port (max = default = 250) */
17 u8 power;
18
19 /* sl811 relies on an external source of VBUS current */
David Brownell325a4af2006-06-13 09:59:32 -070020 void (*port_power)(struct device *dev, int is_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22 /* pulse sl811 nRST (probably with a GPIO) */
David Brownell325a4af2006-06-13 09:59:32 -070023 void (*reset)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Greg Kroah-Hartman41dceed2008-01-30 15:21:33 -080025 /* some boards need something like these: */
26 /* int (*check_overcurrent)(struct device *dev); */
27 /* void (*clock_enable)(struct device *dev, int is_on); */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
Robert P. J. Daydda43a02008-03-07 13:45:32 -050030#endif /* __LINUX_USB_SL811_H */