1
0
Fork 0

misc: led: pca9551_led: Fix problem with multiple blink frequencies

Only 2 frequencies are supported. The current driver implementation does
not always use the 2 last configured blink frequencies. This patch
fixes this problem. So that the last two entered frequencies are
active.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Tom Rini <trini@konsulko.com>
utp
Stefan Roese 2015-07-06 13:35:55 +02:00 committed by Tom Rini
parent 6b33056836
commit f5df36d0c8
1 changed files with 22 additions and 10 deletions

View File

@ -32,7 +32,10 @@ struct pca9551_blink_rate {
u8 pwm; /* Pulse width modulation, see PCA9551_7.pdf p. 6 */
};
static int freq0, freq1;
static int freq_last = -1;
static int mask_last = -1;
static int idx_last = -1;
static int mode_last;
static int pca9551_led_get_state(int led, int *state)
{
@ -135,21 +138,30 @@ void __led_blink(led_id_t mask, int freq)
{
struct pca9551_blink_rate rate;
int mode;
int blink;
int idx;
if ((freq0 == 0) || (freq == freq0)) {
blink = 0;
mode = PCA9551_LED_STATE_BLINK0;
freq0 = freq;
if ((freq == freq_last) || (mask == mask_last)) {
idx = idx_last;
mode = mode_last;
} else {
blink = 1;
mode = PCA9551_LED_STATE_BLINK1;
freq1 = freq;
/* Toggle blink index */
if (idx_last == 0) {
idx = 1;
mode = PCA9551_LED_STATE_BLINK1;
} else {
idx = 0;
mode = PCA9551_LED_STATE_BLINK0;
}
idx_last = idx;
mode_last = mode;
}
freq_last = freq;
mask_last = mask;
rate.psc = ((freq * 38) / 1000) - 1;
rate.pwm = 128; /* 50% duty cycle */
pca9551_led_set_blink_rate(blink, rate);
pca9551_led_set_blink_rate(idx, rate);
pca9551_led_set_state(mask, mode);
}