usb_isp116x.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Board initialization code should put one of these into dev->platform_data
  3. * and place the isp116x onto platform_bus.
  4. */
  5. struct isp116x_platform_data {
  6. /* Enable internal resistors on downstream ports */
  7. unsigned sel15Kres:1;
  8. /* On-chip overcurrent detection */
  9. unsigned oc_enable:1;
  10. /* INT output polarity */
  11. unsigned int_act_high:1;
  12. /* INT edge or level triggered */
  13. unsigned int_edge_triggered:1;
  14. /* Enable wakeup by devices on usb bus (e.g. wakeup
  15. by attachment/detachment or by device activity
  16. such as moving a mouse). When chosen, this option
  17. prevents stopping internal clock, increasing
  18. thereby power consumption in suspended state. */
  19. unsigned remote_wakeup_enable:1;
  20. /* Hardware reset set/clear. If implemented, this function must:
  21. if set == 0, deassert chip's HW reset pin
  22. otherwise, assert chip's HW reset pin */
  23. void (*reset) (struct device * dev, int set);
  24. /* Hardware clock start/stop. If implemented, this function must:
  25. if start == 0, stop the external clock
  26. otherwise, start the external clock
  27. */
  28. void (*clock) (struct device * dev, int start);
  29. /* Inter-io delay (ns). The chip is picky about access timings; it
  30. expects at least:
  31. 150ns delay between consecutive accesses to DATA_REG,
  32. 300ns delay between access to ADDR_REG and DATA_REG
  33. OE, WE MUST NOT be changed during these intervals
  34. */
  35. void (*delay) (struct device * dev, int delay);
  36. };