summaryrefslogtreecommitdiff
path: root/board/cr50/power_button.c
blob: 640fd970ebbdb4a15621d473723b287e6fc499d3 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/* Copyright 2017 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.
 */

#include "ap_ro_integrity_check.h"
#include "console.h"
#include "extension.h"
#include "gpio.h"
#include "hooks.h"
#include "physical_presence.h"
#include "rbox.h"
#include "registers.h"
#include "system.h"
#include "system_chip.h"
#include "task.h"
#include "timer.h"

#define CPRINTS(format, args...) cprints(CC_RBOX, format, ## args)
#define CPRINTF(format, args...) cprintf(CC_RBOX, format, ## args)

DECLARE_DEFERRED(deassert_ec_rst);

void power_button_release_enable_interrupt(int enable)
{
	/* Clear any leftover power button rising edge detection interrupts */
	GWRITE_FIELD(RBOX, INT_STATE, INTR_PWRB_IN_RED, 1);

	if (enable) {
		/* Enable power button rising edge detection interrupt */
		GWRITE_FIELD(RBOX, INT_ENABLE, INTR_PWRB_IN_RED, 1);
		task_enable_irq(GC_IRQNUM_RBOX0_INTR_PWRB_IN_RED_INT);
	} else {
		GWRITE_FIELD(RBOX, INT_ENABLE, INTR_PWRB_IN_RED, 0);
		task_disable_irq(GC_IRQNUM_RBOX0_INTR_PWRB_IN_RED_INT);
	}
}

/**
 * Enable/disable power button interrupt.
 *
 * @param enable	Enable (!=0) or disable (==0)
 */
static void power_button_press_enable_interrupt(int enable)
{
	if (enable) {
		/* Clear any leftover power button interrupts */
		GWRITE_FIELD(RBOX, INT_STATE, INTR_PWRB_IN_FED, 1);

		/* Enable power button interrupt */
		GWRITE_FIELD(RBOX, INT_ENABLE, INTR_PWRB_IN_FED, 1);
		task_enable_irq(GC_IRQNUM_RBOX0_INTR_PWRB_IN_FED_INT);
	} else {
		GWRITE_FIELD(RBOX, INT_ENABLE, INTR_PWRB_IN_FED, 0);
		task_disable_irq(GC_IRQNUM_RBOX0_INTR_PWRB_IN_FED_INT);
	}
}

#ifdef CONFIG_AP_RO_VERIFICATION

/*
 * Implement sequence detecting trigger for starting AP RO verification.
 *
 * 'RCTD' is short for 'RO check trigger detection'.
 *
 * Start the detection sequence each time power button is pressed. While it is
 * kept pressed, count number of presses of the refresh key. If the refresh
 * key is pressed PRESS_COUNT times within RCTD_CUTOFF_TIME, consider the RO
 * verification process triggered.
 *
 * If power button is released before the refresh key is pressed the required
 * number of times, or the cutoff time expires, stop the sequence until the
 * next power button press.
 */
static void rctd_poll(void);
DECLARE_DEFERRED(rctd_poll);

#define RCTD_CUTOFF_TIME (3 * SECOND)
#define RCTD_POLL_INTERVAL (20 * MSEC) /* Poll buttons this often.*/
#define DEBOUNCE_COUNT 2  /* Keyboard keys are pretty noisy, need debouncing. */
#define PRESS_COUNT 3

/*
 * Lower 32 bit of the timestamp when the sequence started. Is zero if the
 * sequence is not running.
 */
static uint32_t rctd_start_time;

/*
 * rctd_poll_handler - periodically check states of power button and refresh
 * key.
 *
 * Returns non-zero value if the polling needs to continue, or zero, if the
 * polling should stop.
 */
static int rctd_poll_handler(void)
{
	uint32_t dior_state;
	uint8_t ref_curr_state;
	static uint8_t ref_press_count;
	static uint8_t ref_last_state;
	static uint8_t ref_debounced_state;
	static uint8_t ref_debounce_counter;

	/*
	 * H1 DIORx pins provide current state of both the power button and
	 * escape key.
	 */
	dior_state = GREG32(RBOX, CHECK_INPUT);
	ref_curr_state = !!(dior_state & GC_RBOX_CHECK_INPUT_KEY0_IN_MASK);

	if (rctd_start_time == 0) {
		/* Start the new sequence. */
		rctd_start_time = get_time().le.lo;
		ref_debounced_state = ref_last_state = ref_curr_state;
		ref_debounce_counter = DEBOUNCE_COUNT;
		ref_press_count = 0;
	} else {
		/* Have this been running longer than the timeout? */
		if ((get_time().le.lo - rctd_start_time) > RCTD_CUTOFF_TIME) {
			if (ref_press_count) {
				/*
				 * Report timeout only in case the process
				 * started.
				 */
				ap_ro_add_flash_event(APROF_CHECK_TIMED_OUT);
				CPRINTS("Timeout, no RO check triggered");
			}
			return 0;
		}
	}


	if ((dior_state & GC_RBOX_CHECK_INPUT_PWRB_IN_MASK) != 0) {
		if (ref_press_count) {
			/*
			 * Report interruption only in case the process
			 * started.
			 */
			CPRINTS("Power button released, "
				"RO Check Detection stopped");
			ap_ro_add_flash_event(APROF_CHECK_STOPPED);
		}
		return 0;
	}

	if (ref_curr_state != ref_debounced_state) {
		ref_debounced_state = ref_curr_state;
		ref_debounce_counter = 0;
		return 1;
	}

	if (ref_debounce_counter >= DEBOUNCE_COUNT)
		return 1;

	if (++ref_debounce_counter != DEBOUNCE_COUNT)
		return 1;

	ref_last_state = ref_debounced_state;
	if (!ref_last_state)
		return 1;

	if (++ref_press_count != PRESS_COUNT) {
		ap_ro_add_flash_event(APROF_REFRESH_PRESSED);
		CPRINTS("Refresh press registered");
		return 1;
	}

	CPRINTS("RO Validation triggered");
	ap_ro_add_flash_event(APROF_CHECK_TRIGGERED);

	validate_ap_ro();

	return 0;
}

static void rctd_poll(void)
{
	if (rctd_poll_handler())
		hook_call_deferred(&rctd_poll_data, RCTD_POLL_INTERVAL);
	else
		rctd_start_time = 0;
}
#endif

static void power_button_handler(void)
{
	CPRINTS("power button pressed");

#ifdef CONFIG_AP_RO_VERIFICATION
	if (rctd_start_time == 0)
		hook_call_deferred(&rctd_poll_data, 0);
#endif

	if (physical_detect_press() != EC_SUCCESS) {
		/* Not consumed by physical detect */
#ifdef CONFIG_U2F
		/* Track last power button press for U2F */
		power_button_record();
#endif
	}

	GWRITE_FIELD(RBOX, INT_STATE, INTR_PWRB_IN_FED, 1);
}
DECLARE_IRQ(GC_IRQNUM_RBOX0_INTR_PWRB_IN_FED_INT, power_button_handler, 1);

static void power_button_release_handler(void)
{
#ifdef CR50_DEV
	CPRINTS("power button released");
#endif

	/*
	 * Let deassert_ec_rst be called deferred rather than
	 * by interrupt handler.
	 */
	hook_call_deferred(&deassert_ec_rst_data, 0);

	/* Note that this is for one-time use through the current power on. */
	power_button_release_enable_interrupt(0);
}
DECLARE_IRQ(GC_IRQNUM_RBOX0_INTR_PWRB_IN_RED_INT, power_button_release_handler,
	1);

#ifdef CONFIG_U2F
static void power_button_init(void)
{
	/*
	 * Enable power button interrupts all the time for U2F.
	 *
	 * Ideally U2F should only enable physical presence after the start of
	 * a U2F request (using atomic operations for the PP enable mask so it
	 * plays nicely with CCD config), but that doesn't happen yet.
	 */
	power_button_press_enable_interrupt(1);
}
DECLARE_HOOK(HOOK_INIT, power_button_init, HOOK_PRIO_DEFAULT);
#endif  /* CONFIG_U2F */

/* ---- physical presence (using the laptop power button) ---- */

static timestamp_t last_press;

/* how long do we keep the last button press as valid presence */
#define PRESENCE_TIMEOUT (10 * SECOND)

void power_button_record(void)
{
	if (ap_is_on() && rbox_powerbtn_is_pressed()) {
		last_press = get_time();
#ifdef CR50_DEV
		CPRINTS("record pp");
#endif
	}
}

enum touch_state pop_check_presence(int consume)
{
#ifdef CRYPTO_TEST_SETUP
	return POP_TOUCH_YES;
#else
	int recent = ((last_press.val  > 0) &&
		((get_time().val - last_press.val) < PRESENCE_TIMEOUT));

#ifdef CR50_DEV
	if (recent)
		CPRINTS("User presence: consumed %d", consume);
#endif
	if (consume)
		last_press.val = 0;

	/* user physical presence on the power button */
	return recent ? POP_TOUCH_YES : POP_TOUCH_NO;
#endif
}

void board_physical_presence_enable(int enable)
{
#ifndef CONFIG_U2F
	/* Enable/disable power button interrupts */
	power_button_press_enable_interrupt(enable);
#endif

	/* Stay awake while we're doing this, just in case. */
	if (enable)
		disable_sleep(SLEEP_MASK_PHYSICAL_PRESENCE);
	else
		enable_sleep(SLEEP_MASK_PHYSICAL_PRESENCE);
}

static int command_powerbtn(int argc, char **argv)
{
	ccprintf("powerbtn: %s\n",
		 rbox_powerbtn_is_pressed() ? "pressed" : "released");

#ifdef CR50_DEV
	pop_check_presence(1);
#endif
	return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(powerbtn, command_powerbtn, "",
			"get the state of the power button");

/*
 * Perform a user presence check using the power button.
 */
static enum vendor_cmd_rc vc_get_pwr_btn(enum vendor_cmd_cc code,
					 void *buf,
					 size_t input_size,
					 size_t *response_size)
{
	/*
	 * The AP uses VENDOR_CC_GET_PWR_BTN to poll both for the press and
	 * release of the power button.
	 *
	 * pop_check_presence(1) returns true if a new power button press was
	 * recorded in the last 10 seconds.
	 *
	 * Indicate button release if no new presses have been recorded and the
	 * current button state is not pressed.
	 */
	if (pop_check_presence(1) == POP_TOUCH_YES ||
		rbox_powerbtn_is_pressed())
		*(uint8_t *)buf = 1;
	else
		*(uint8_t *)buf = 0;
	*response_size = 1;

	return VENDOR_RC_SUCCESS;
}
DECLARE_VENDOR_COMMAND(VENDOR_CC_GET_PWR_BTN, vc_get_pwr_btn);