blob: 282941b9415fa7c602c861848d132c2474f0be11 (
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
48
49
50
51
52
53
54
55
|
/* Copyright 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.
*/
/*
* Mock power module for Sensor HUB.
*
* This implements the following features:
* when AP_IN_SUSPEND is low, in S0, otherwise S3.
*
*/
#include "chipset.h" /* This module implements chipset functions too */
#include "common.h"
#include "console.h"
#include "gpio.h"
#include "hooks.h"
#include "power.h"
#include "task.h"
#include "util.h"
/* Console output macros */
#define CPUTS(outstr) cputs(CC_CHIPSET, outstr)
#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ## args)
#define IN_SUSPEND POWER_SIGNAL_MASK(ECDRIVEN_SUSPEND_ASSERTED)
enum power_state power_chipset_init(void)
{
return POWER_S3;
}
enum power_state power_handle_state(enum power_state state)
{
switch (state) {
case POWER_S3:
if (!(power_get_signals() & IN_SUSPEND)) {
hook_notify(HOOK_CHIPSET_RESUME);
return POWER_S0;
}
return state;
case POWER_S0:
if (power_get_signals() & IN_SUSPEND) {
hook_notify(HOOK_CHIPSET_SUSPEND);
return POWER_S3;
}
return state;
default:
CPRINTS("Unexpected state: $d", state);
}
return state;
}
|