summaryrefslogtreecommitdiff
path: root/include/keyboard_backlight.h
blob: 194bec66f4c49b245564fe668307c727f0f236d6 (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
/* Copyright 2018 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.
 */

#ifndef __CROS_EC_KEYBOARD_BACKLIGHT_H
#define __CROS_EC_KEYBOARD_BACKLIGHT_H

/**
 * If GPIO_EN_KEYBOARD_BACKLIGHT is defined, this GPIO will be set when
 * the the keyboard backlight is enabled or disabled. This GPIO is used
 * to enable or disable the power to the keyboard backlight circuitry.
 * GPIO_EN_KEYBOARD_BACKLIGHT must be active high.
 */

struct kblight_conf {
	const struct kblight_drv *drv;
};

struct kblight_drv {
	/**
	 * Initialize the keyboard backlight controller
	 * @return EC_SUCCESS or EC_ERROR_*
	 */
	int (*init)(void);

	/**
	 * Set the brightness
	 * @param percent
	 * @return EC_SUCCESS or EC_ERROR_*
	 */
	int (*set)(int percent);

	/**
	 * Get the current brightness
	 * @return Brightness in percentage
	 */
	int (*get)(void);

	/**
	 * Enable or disable keyboard backlight
	 * @param enable: 1=Enable, 0=Disable.
	 * @return EC_SUCCESS or EC_ERROR_*
	 */
	int (*enable)(int enable);

	/**
	 * Get the enabled state.
	 * @return 1=Enable, 0=Disable, -1=Failed to read enabled state.
	 */
	int (*get_enabled)(void);
};

/**
 * Initialize keyboard backlight per board
 */
__override_proto void board_kblight_init(void);

/**
 * Shutdown keyboard backlight
 */
__override_proto void board_kblight_shutdown(void);

/**
 * Set keyboard backlight brightness
 *
 * @param percent Brightness in percentage
 * @return EC_SUCCESS or EC_ERROR_*
 */
int kblight_set(int percent);

/**
 * Get keyboard backlight brightness
 *
 * @return Brightness in percentage
 */
int kblight_get(void);

/**
 * Enable or disable keyboard backlight
 *
 * @param enable: 1=Enable, 0=Disable.
 * @return EC_SUCCESS or EC_ERROR_*
 */
int kblight_enable(int enable);

/**
 * Register keyboard backlight controller
 *
 * @param drv: Driver of keyboard backlight controller
 * @return EC_SUCCESS or EC_ERROR_*
 */
int kblight_register(const struct kblight_drv *drv);

extern const struct kblight_drv kblight_pwm;

#endif /* __CROS_EC_KEYBOARD_BACKLIGHT_H */