Blame view

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