blob: 6fc0a06f7c6b73b79e2c7e5e088d37d200b8527b (
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
|
/* 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.
*
* Keyboard protocol interface
*/
#ifndef __CROS_EC_KEYBOARD_PROTOCOL_H
#define __CROS_EC_KEYBOARD_PROTOCOL_H
#include "common.h"
#include "button.h"
/* Routines common to all protocols */
/**
* Clear the keyboard buffer to host.
*/
void keyboard_clear_buffer(void);
/*
* Respond to button changes. Implemented by a host-specific
* handler.
*
* @param button The button that changed.
* @param is_pressed Whether the button is now pressed.
*/
void keyboard_update_button(enum keyboard_button_type button, int is_pressed);
/* Protocol-specific includes */
#ifdef CONFIG_KEYBOARD_PROTOCOL_8042
#include "keyboard_8042.h"
#endif
#ifdef CONFIG_KEYBOARD_PROTOCOL_MKBP
#include "keyboard_mkbp.h"
#endif
#endif /* __CROS_EC_KEYBOARD_PROTOCOL_H */
|