mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 10:45:22 +00:00
Since it handles not just power button, but also lid switch, AC detect, and other switches. No functional changes; just renaming. BUG=chrome-os-partner:15579 BRANCH=none TEST=boot system, power on/off with power button Change-Id: I51628a52293f7207715f5f6bf368a08fe6c3dbce Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/36821
44 lines
874 B
C
44 lines
874 B
C
/* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
/* Switch module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_SWITCH_H
|
|
#define __CROS_EC_SWITCH_H
|
|
|
|
#include "common.h"
|
|
#include "gpio.h"
|
|
|
|
/**
|
|
* Interrupt handler for switch inputs.
|
|
*
|
|
* @param signal Signal which triggered the interrupt.
|
|
*/
|
|
void switch_interrupt(enum gpio_signal signal);
|
|
|
|
/**
|
|
* Switch task.
|
|
*/
|
|
void switch_task(void);
|
|
|
|
/**
|
|
* Return non-zero if AC power is present.
|
|
*/
|
|
int switch_get_ac_present(void);
|
|
|
|
/**
|
|
* Return non-zero if lid is open.
|
|
*
|
|
* Uses the debounced lid state, not the raw signal from the GPIO.
|
|
*/
|
|
int switch_get_lid_open(void);
|
|
|
|
/**
|
|
* Return non-zero if write protect signal is asserted.
|
|
*/
|
|
int switch_get_write_protect(void);
|
|
|
|
#endif /* __CROS_EC_SWITCH_H */
|