blob: ffc0e016291cff209a6789ddf089492a83ff5b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* 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 */
|