blob: 397ee3b3d7f357ff5d2d665491c12a28f478d909 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*
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
7struct sl811_platform_data {
8 unsigned can_wakeup:1;
9
10 /* given port_power, msec/2 after power on till power good */
11 u8 potpg;
12
13 /* mA/2 power supplied on this port (max = default = 250) */
14 u8 power;
15
16 /* sl811 relies on an external source of VBUS current */
David Brownell325a4af2006-06-13 09:59:32 -070017 void (*port_power)(struct device *dev, int is_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19 /* pulse sl811 nRST (probably with a GPIO) */
David Brownell325a4af2006-06-13 09:59:32 -070020 void (*reset)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22 // some boards need something like these:
David Brownell325a4af2006-06-13 09:59:32 -070023 // int (*check_overcurrent)(struct device *dev);
24 // void (*clock_enable)(struct device *dev, int is_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26