mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-05 14:31:31 +00:00
Unless the lid is closed, the ALS is used for lightbar dimming. Change the google colors depending on the light sensor result. BUG=chrome-os-partner:44400 BRANCH=smaug TEST=Check all 3 levels of brightness of the lightbar. Check value using "adb shell ectool lightbar" Check double tap color are not affected and is using full brightness. Change-Id: I7b5e2890c3557f1dd3ae719f5f82ffb5fe7b24fb Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/301216 Reviewed-by: Alec Berg <alecaberg@chromium.org>
69 lines
1.8 KiB
C
69 lines
1.8 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.
|
|
*/
|
|
/* Ask the EC to set the lightbar state to reflect the CPU activity */
|
|
|
|
#ifndef __CROS_EC_LIGHTBAR_H
|
|
#define __CROS_EC_LIGHTBAR_H
|
|
|
|
/****************************************************************************/
|
|
/* Internal stuff */
|
|
|
|
/* Define the types of sequences */
|
|
#define LBMSG(state) LIGHTBAR_##state
|
|
#include "lightbar_msg_list.h"
|
|
enum lightbar_sequence {
|
|
LIGHTBAR_MSG_LIST
|
|
LIGHTBAR_NUM_SEQUENCES
|
|
};
|
|
#undef LBMSG
|
|
|
|
/* Bytecode field constants */
|
|
enum lb_color {
|
|
LB_COL_RED,
|
|
LB_COL_GREEN,
|
|
LB_COL_BLUE,
|
|
LB_COL_ALL
|
|
};
|
|
|
|
enum lb_control {
|
|
LB_CONT_COLOR0,
|
|
LB_CONT_COLOR1,
|
|
LB_CONT_PHASE,
|
|
LB_CONT_MAX
|
|
};
|
|
|
|
#ifdef CONFIG_ALS_LIGHTBAR_DIMMING
|
|
/*
|
|
* For dimming the lightbar in the dark, we define an array to
|
|
* describe the expected colors:
|
|
* if luminosity is more than 'lux', the color defined will be used.
|
|
* The last entry must have lux == 0.
|
|
* Defining brightness is not enough to prevent washed color in low
|
|
* lux setting.
|
|
*/
|
|
struct lb_brightness_def {
|
|
uint16_t lux;
|
|
struct rgb_s color[4];
|
|
};
|
|
|
|
extern struct lb_brightness_def lb_brightness_levels[];
|
|
extern const unsigned lb_brightness_levels_count;
|
|
#endif
|
|
|
|
/* Request a preset sequence from the lightbar task. */
|
|
void lightbar_sequence_f(enum lightbar_sequence num, const char *f);
|
|
#define lightbar_sequence(A) lightbar_sequence_f(A, __func__)
|
|
|
|
/****************************************************************************/
|
|
/* External stuff */
|
|
|
|
/* These are used for demo purposes */
|
|
#define DEMO_MODE_DEFAULT 0
|
|
extern void demo_battery_level(int inc);
|
|
extern void demo_is_charging(int ischarge);
|
|
extern void demo_brightness(int inc);
|
|
extern void demo_tap(void);
|
|
#endif /* __CROS_EC_LIGHTBAR_H */
|