blob: acd6a90127de1e4593ac09b2489a70377f0a40e4 (
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
|
/*
* Status LED driver based on GPIO access conventions of Linux
*
* Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <common.h>
#include <status_led.h>
#include <asm/gpio.h>
/* assume led is active low */
void __led_init(led_id_t mask, int state)
{
gpio_direction_output(mask, (state == STATUS_LED_ON) ? 0 : 1);
}
void __led_set(led_id_t mask, int state)
{
gpio_set_value(mask, (state == STATUS_LED_ON) ? 0 : 1);
}
void __led_toggle(led_id_t mask)
{
gpio_set_value(mask, !gpio_get_value(mask));
}
|