pda_power.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Common power driver for PDAs and phones with one or two external
  3. * power supplies (AC/USB) connected to main and backup batteries,
  4. * and optional builtin charger.
  5. *
  6. * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef __PDA_POWER_H__
  13. #define __PDA_POWER_H__
  14. #define PDA_POWER_CHARGE_AC (1 << 0)
  15. #define PDA_POWER_CHARGE_USB (1 << 1)
  16. struct device;
  17. struct pda_power_pdata {
  18. int (*init)(struct device *dev);
  19. int (*is_ac_online)(void);
  20. int (*is_usb_online)(void);
  21. void (*set_charge)(int flags);
  22. void (*exit)(struct device *dev);
  23. int (*suspend)(pm_message_t state);
  24. int (*resume)(void);
  25. char **supplied_to;
  26. size_t num_supplicants;
  27. unsigned int wait_for_status; /* msecs, default is 500 */
  28. unsigned int wait_for_charger; /* msecs, default is 500 */
  29. unsigned int polling_interval; /* msecs, default is 2000 */
  30. unsigned long ac_max_uA; /* current to draw when on AC */
  31. bool use_otg_notifier;
  32. };
  33. #endif /* __PDA_POWER_H__ */