mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
1. GPIO initial 2. board config 3. led control 4. power control of Stoney 5. battery setting BRANCH=None BUG=None TEST=power on device and test manually Change-Id: I14cc60bf2cdd40032b3cbdfacf68d7a3c17fe87c Reviewed-on: https://chromium-review.googlesource.com/461624 Commit-Ready: YH Lin <yueherngl@chromium.org> Tested-by: Lin Cloud <cloud_lin@compal.com> Tested-by: Danny Kuo <Danny_Kuo@compal.com> Reviewed-by: Danny Kuo <Danny_Kuo@compal.com> Reviewed-by: Randall Spangler <rspangler@chromium.org>
18 lines
512 B
C
18 lines
512 B
C
|
|
/* Copyright 2016 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.
|
|
*/
|
|
|
|
/* Stoney chipset power control module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_STONEY_H
|
|
#define __CROS_EC_STONEY_H
|
|
|
|
#define IN_SPOK POWER_SIGNAL_MASK(X86_SPOK)
|
|
#define IN_ALW_PG POWER_SIGNAL_MASK(X86_ALW_PG)
|
|
#define IN_SLP_S3 POWER_SIGNAL_MASK(X86_SLP_S3_N)
|
|
#define IN_SLP_S5 POWER_SIGNAL_MASK(X86_SLP_S5_N)
|
|
|
|
#endif /* __CROS_EC_STONEY_H */
|