mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
Pull-down means backlight is present, pull-up means backlight
is absent.
After detection, we still apply internal pull-down on the GPIO,
to make sure old boards with both pull-up and pull-down stuffed
do not always keep backlight on.
BRANCH=none
BUG=b:67722756
TEST=On reworked board with pull-down on backlight pin,
backlight works, and "Backlight present" shown in console.
TEST=On old board with both pull-up and pull-down, backlight is
off by default, and "Backlight not present" shown in console.
Change-Id: I6988c6ef8f4d155a08967db34f72d7ea4c835306
Signed-off-by: Nicolas Boichat <drinkcat@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/538458
Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
/* 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"
|
|
|
|
/* MKBP protocol takes the whole keyboard matrix, and does not care about
|
|
* individual key presses.
|
|
*/
|
|
static inline void keyboard_state_changed(int row, int col, int is_pressed) {}
|
|
#else
|
|
/**
|
|
* Called by keyboard scan code once any key state change (after de-bounce),
|
|
*
|
|
* This function will look up matrix table and convert scancode host.
|
|
*/
|
|
void keyboard_state_changed(int row, int col, int is_pressed);
|
|
#endif
|
|
|
|
/**
|
|
* Returns true if keyboard backlight is present/detected.
|
|
*/
|
|
int board_has_keyboard_backlight(void);
|
|
|
|
#endif /* __CROS_EC_KEYBOARD_PROTOCOL_H */
|