summaryrefslogtreecommitdiff
path: root/chip_interface/ac_present.h
blob: 02a152dc1620cd7322c1ca50e9bf98b5d24dbaed (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
45
46
47
/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * power_button.h - Power button function.
 *                  Hides chip-specific implementation behind this interface.
 */

#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 EcAcPresentInit(void);


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


/* Register a calback function. It is called while AC is plugged in or
 * unplugged.
 */
EcError EcAcPresentRegister(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 */