mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
When keyboard backlight is disabled, make 'ectool pwmgetkblight' reports 'disabled'. BUG=chrome-os-partner:9966 TEST='ectool pwmgetkblight' shows 'Keyboard backlight disabled' when lid closed. Change-Id: Ica690159e30431ccb530275fcc2311fb8f54a9aa
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
/* PWM module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_PWM_H
|
|
#define __CROS_EC_PWM_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Enable/disable the fan. This should be called by whatever function
|
|
* enables the power supply to the fan. */
|
|
int pwm_enable_fan(int enable);
|
|
|
|
/* Get the current fan RPM. */
|
|
int pwm_get_fan_rpm(void);
|
|
|
|
/* Get the target fan RPM. */
|
|
int pwm_get_fan_target_rpm(void);
|
|
|
|
/* Set the target fan RPM. Pass -1 to set fan to maximum. */
|
|
int pwm_set_fan_target_rpm(int rpm);
|
|
|
|
/* Enable/disable the keyboard backlight. */
|
|
int pwm_enable_keyboard_backlight(int enable);
|
|
|
|
/* Get the keyboard backlight enable/disable status (1=enabled, 0=disabled). */
|
|
int pwm_get_keyboard_backlight_enabled(void);
|
|
|
|
/* Get the keyboard backlight percentage (0=off, 100=max). */
|
|
int pwm_get_keyboard_backlight(void);
|
|
|
|
/* Set the keyboard backlight percentage (0=off, 100=max). */
|
|
int pwm_set_keyboard_backlight(int percent);
|
|
|
|
#endif /* __CROS_EC_PWM_H */
|