summaryrefslogtreecommitdiff
path: root/chip_interface/ac_present.h
blob: c2bb0d9d77545a0941ccc2af023dcd42f9a7d330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* power_button.h - Power button function.
 *                  Hides chip-specific implementation behind this interface.
 *
 * (Chromium license) */

#ifndef __CHIP_INTERFACE_AC_PRESENT_H
#define __CHIP_INTERFACE_AC_PRESENT_H

/*
 * Initialize the AC present as GPIO input pin and enable interrupt for
 * callback.
 */
EcError CrAcPresentInit(void);


/* Calls GPIOPinRead() to read the GPIO state. */
/* TODO: has the state been debounced? */
EcError CrAcPrensentState(void);


/* Register a calback function. It is called while AC is plugged in or
 * unplugged.
 */
EcError CrAcPresentRegister(void (*callback)(void));

/* Below is the example code to register this function. */
#if 0
/* This callback function is implemented in Chrome OS features layer. */
void CrAcStateChanged(void) {
  int ac_present = CrAcPrensentState();
  if (ac_present) {
    if (battery_present && authenticated) {
      // start to charge battery;
    }
  } else {
    // stop charge battery;
  }
}
  ... somewhere in init code ...
  CrAcPresentRegister(CrACStateChanged);

#endif /* #if 0 */

#endif  /* __CHIP_INTERFACE_AC_PRESENT_H */