summaryrefslogtreecommitdiff
path: root/board/beadrix/led.c
blob: 56b8b736e5fe3006f9099b1e60aefc56bb0aff7d (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* Copyright 2021 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Beadrix specific LED settings. */

#include "battery.h"
#include "charge_manager.h"
#include "charge_state.h"
#include "chipset.h"
#include "common.h"
#include "ec_commands.h"
#include "gpio.h"
#include "hooks.h"
#include "host_command.h"
#include "led_common.h"
#include "system.h"
#include "util.h"

#define LED_ONE_SEC (1000 / HOOK_TICK_INTERVAL_MS)
#define BAT_LED_ON 0
#define BAT_LED_OFF 1

const enum ec_led_id supported_led_ids[] = { EC_LED_ID_BATTERY_LED };
const int supported_led_ids_count = ARRAY_SIZE(supported_led_ids);

enum led_color {
	LED_OFF = 0,
	LED_RED,
	LED_BLUE,
	LED_COLOR_COUNT /* Number of colors, not a color itself */
};

static void led_set_color(enum led_color color)
{
	gpio_set_level(GPIO_EC_LED_R_ODL,
		       (color == LED_RED) ? BAT_LED_ON : BAT_LED_OFF);
	gpio_set_level(GPIO_EC_LED_B_ODL,
		       (color == LED_BLUE) ? BAT_LED_ON : BAT_LED_OFF);
}

void led_get_brightness_range(enum ec_led_id led_id, uint8_t *brightness_range)
{
	brightness_range[EC_LED_COLOR_RED] = 1;
	brightness_range[EC_LED_COLOR_BLUE] = 1;
}

int led_set_brightness(enum ec_led_id led_id, const uint8_t *brightness)
{
	if (brightness[EC_LED_COLOR_BLUE] != 0)
		led_set_color(LED_BLUE);
	else if (brightness[EC_LED_COLOR_RED] != 0)
		led_set_color(LED_RED);
	else
		led_set_color(LED_OFF);

	return EC_SUCCESS;
}

static void board_led_set_battery(void)
{
	static int battery_ticks;
	enum led_color color = LED_OFF;
	int period = 0;

	battery_ticks++;

	switch (led_pwr_get_state()) {
	case PWR_STATE_CHARGE:
		/* Always indicate amber on when charging. */
		color = LED_RED;
		break;
	case PWR_STATE_DISCHARGE:
		if (chipset_in_state(CHIPSET_STATE_ANY_SUSPEND)) {
			/* Discharging in S3: Red 1 sec, off 3 sec */
			period = (1 + 3) * LED_ONE_SEC;
			battery_ticks = battery_ticks % period;
			if (battery_ticks < 1 * LED_ONE_SEC)
				color = LED_RED;
			else
				color = LED_OFF;
		} else if (chipset_in_state(CHIPSET_STATE_ANY_OFF)) {
			/* Discharging in S5: off */
			color = LED_OFF;
		} else if (chipset_in_state(CHIPSET_STATE_ON)) {
			/* Discharging in S0: Blue on */
			color = LED_BLUE;
		}
		break;
	case PWR_STATE_ERROR:
		/* Battery error: Red 1 sec, off 1 sec */
		period = (1 + 1) * LED_ONE_SEC;
		battery_ticks = battery_ticks % period;
		if (battery_ticks < 1 * LED_ONE_SEC)
			color = LED_RED;
		else
			color = LED_OFF;
		break;
	case PWR_STATE_CHARGE_NEAR_FULL:
		/* Full Charged: Blue on */
		color = LED_BLUE;
		break;
	case PWR_STATE_IDLE: /* External power connected in IDLE */
		color = LED_BLUE;
		break;
	case PWR_STATE_FORCED_IDLE:
		/* Factory mode: Blue 2 sec, Red 2 sec */
		period = (2 + 2) * LED_ONE_SEC;
		battery_ticks = battery_ticks % period;
		if (battery_ticks < 2 * LED_ONE_SEC)
			color = LED_BLUE;
		else
			color = LED_RED;
		break;
	default:
		/* Other states don't alter LED behavior */
		break;
	}

	led_set_color(color);
}

/* Called by hook task every TICK */
static void led_tick(void)
{
	if (led_auto_control_is_enabled(EC_LED_ID_BATTERY_LED))
		board_led_set_battery();
}
DECLARE_HOOK(HOOK_TICK, led_tick, HOOK_PRIO_DEFAULT);

void led_control(enum ec_led_id led_id, enum ec_led_state state)
{
	enum led_color color;

	if ((led_id != EC_LED_ID_RECOVERY_HW_REINIT_LED) &&
	    (led_id != EC_LED_ID_SYSRQ_DEBUG_LED))
		return;

	if (state == LED_STATE_RESET) {
		led_auto_control(EC_LED_ID_BATTERY_LED, 1);
		board_led_set_battery();
		return;
	}

	color = state ? LED_BLUE : LED_OFF;

	led_auto_control(EC_LED_ID_BATTERY_LED, 0);

	led_set_color(color);
}