mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
STM32-based platforms now use the same lid debouncing code as LM4-based platforms, generate lid-open / lid-closed events, and trigger lid-change hooks. This is needed for disabling keyboard scanning when the lid is closed, as well as future changes to mask off wake events when the lid is closed. BUG=chrome-os-partner:18896 BRANCH=spring TEST=build all platforms; check that spring boots when lid is opened Change-Id: I09a6e91119c3739297fe49b7eacac6efda988284 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/48924 Reviewed-by: Vic Yang <victoryang@chromium.org>
29 lines
594 B
C
29 lines
594 B
C
/* Copyright (c) 2013 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.
|
|
*/
|
|
|
|
/* Gaia power module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_GAIA_POWER_H
|
|
#define __CROS_EC_GAIA_POWER_H
|
|
|
|
#include "gpio.h"
|
|
|
|
#ifdef CONFIG_CHIPSET_GAIA
|
|
|
|
/**
|
|
* Interrupt handlers for Gaia chipset GPIOs.
|
|
*/
|
|
void gaia_power_event(enum gpio_signal signal);
|
|
void gaia_suspend_event(enum gpio_signal signal);
|
|
|
|
#else
|
|
|
|
#define gaia_power_event NULL
|
|
#define gaia_suspend_event NULL
|
|
|
|
#endif
|
|
|
|
#endif /* __CROS_EC_GAIA_POWER_H */
|