summaryrefslogtreecommitdiff
path: root/board/quawks/led.c
blob: 7fbaf69cce29676aa7800e676dfa3608eb96ee74 (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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/* Copyright (c) 2014 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.
 *
 * Battery LED control for Quawks
 */

#include "charge_state.h"
#include "chipset.h"
#include "gpio.h"
#include "hooks.h"
#include "led_common.h"
#include "lid_switch.h"
#include "pwm.h"
#include "util.h"

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

enum led_color {
	LED_OFF = 0,
	LED_ORANGE,
	LED_GREEN,
};

/**
 * Set battery LED color
 *
 * @param color		Enumerated color value
 */
static void set_battery_led_color(enum led_color color)
{
	pwm_set_duty(PWM_CH_LED_BATTERY_ORANGE, color == LED_ORANGE ? 100 : 0);
	pwm_set_duty(PWM_CH_LED_BATTERY_GREEN, color == LED_GREEN ? 100 : 0);
}

void led_get_brightness_range(enum ec_led_id led_id, uint8_t *brightness_range)
{
	if (led_id == EC_LED_ID_POWER_LED) {
		brightness_range[EC_LED_COLOR_GREEN] = 100;
	} else {
		brightness_range[EC_LED_COLOR_RED] = 100;
		brightness_range[EC_LED_COLOR_GREEN] = 100;
	}
}

int led_set_brightness(enum ec_led_id led_id, const uint8_t *brightness)
{
	if (led_id == EC_LED_ID_POWER_LED) {
		pwm_set_duty(PWM_CH_LED_POWER_GREEN,
			     brightness[EC_LED_COLOR_GREEN]);
	} else {
		pwm_set_duty(PWM_CH_LED_BATTERY_ORANGE,
			     brightness[EC_LED_COLOR_RED]);
		pwm_set_duty(PWM_CH_LED_BATTERY_GREEN,
			     brightness[EC_LED_COLOR_GREEN]);
	}
	return EC_SUCCESS;
}

static void led_init(void)
{
	/* Configure GPIOs */
	gpio_config_module(MODULE_PWM_LED, 1);

	/*
	 * Enable PWMs and set to 0% duty cycle.  If they're disabled, the LM4
	 * seems to ground the pins instead of letting them float.
	 */
	pwm_enable(PWM_CH_LED_BATTERY_ORANGE, 1);
	pwm_enable(PWM_CH_LED_BATTERY_GREEN, 1);
	pwm_enable(PWM_CH_LED_POWER_GREEN, 1);
	pwm_set_duty(PWM_CH_LED_POWER_GREEN, 0);
	set_battery_led_color(LED_OFF);
}
DECLARE_HOOK(HOOK_INIT, led_init, HOOK_PRIO_DEFAULT);

/**
 * Return new duty cycle for power LED (0-100).
 */
static int new_power_led_brightness(void)
{
	static unsigned ticks;
	static int suspended_prev;

	int suspended = chipset_in_state(CHIPSET_STATE_SUSPEND);

	/* If we're just suspending now, reset ticks so LED changes quickly */
	if (suspended && !suspended_prev)
		ticks = 0;
	else
		ticks++;

	suspended_prev = suspended;

	/* If lid is closed, LED is off in all chipset states */
	if (!lid_is_open())
		return 0;

	/* If chipset is on, LED is on */
	if (chipset_in_state(CHIPSET_STATE_ON))
		return 100;

	/* If chipset isn't on or suspended, it's off; LED is off */
	if (!chipset_in_state(CHIPSET_STATE_SUSPEND))
		return 0;

	/* Suspended.  Blink with 25% duty cycle, 2 sec period */
	return (ticks % 8 < 2) ? 100 : 0;
}

/**
 * Return new color for battery LED.
 */
static enum led_color new_battery_led_color(void)
{
	static unsigned ticks;

	int chstate = charge_get_state();

	ticks++;

	/* If charging error, blink orange, 50% duty cycle, 0.5 sec period */
	if (chstate == PWR_STATE_ERROR || !charge_battery_responsive())
		return (ticks & 0x1) ? LED_ORANGE : LED_OFF;

	/* If charge-force-idle, blink green, 50% duty cycle, 2 sec period */
	if (chstate == PWR_STATE_IDLE &&
	    (charge_get_flags() & CHARGE_FLAG_FORCE_IDLE))
		return (ticks & 0x4) ? LED_GREEN : LED_OFF;

	/*
	 * If the system is charging, orange; green if 95% or over.
	 * Subtract 4% to compensate for how the UI reports charge remaining.
	 */
	if (chstate == PWR_STATE_CHARGE)
		return charge_get_percent() < 91 ? LED_ORANGE : LED_GREEN;

	/* If AC connected and fully charged (or close to it), solid green */
	if (chstate == PWR_STATE_CHARGE_NEAR_FULL ||
	    chstate == PWR_STATE_IDLE) {
		return LED_GREEN;
	}

	/*
	 * Otherwise, discharging; flash orange if 10% or less power, 50%
	 * duty cycle, 2 sec period. Adding 4% bias to compensate for how
	 * the UI reports charge remaining.
	 */
	if (charge_get_percent() < 14)
		return (ticks & 0x4) ? LED_ORANGE : LED_OFF;

	/* Discharging and greater than 10% power, so off */
	return LED_OFF;
}

/**
 * Called by hook task every 250 ms
 */
static void led_tick(void)
{
	if (led_auto_control_is_enabled(EC_LED_ID_POWER_LED))
		pwm_set_duty(PWM_CH_LED_POWER_GREEN,
			     new_power_led_brightness());

	if (led_auto_control_is_enabled(EC_LED_ID_BATTERY_LED))
		set_battery_led_color(new_battery_led_color());
}
DECLARE_HOOK(HOOK_TICK, led_tick, HOOK_PRIO_DEFAULT);