blob: 71c5b0de5f7a35ca61b0353c206742296c32342b [file] [log] [blame]
Igor Grinberg2b8754b2011-04-18 17:54:33 -04001/*
2 * (C) Copyright 2011
3 * CompuLab, Ltd. <www.compulab.co.il>
4 *
5 * Author: Igor Grinberg <grinberg@compulab.co.il>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc.
20 */
21#include <common.h>
22#include <status_led.h>
23#include <asm/arch/gpio.h>
24
25static unsigned int leds[] = { GREEN_LED_GPIO };
26
27void __led_init(led_id_t mask, int state)
28{
29 if (omap_request_gpio(leds[mask]) != 0) {
30 printf("%s: failed requesting GPIO%u\n", __func__, leds[mask]);
31 return;
32 }
33
34 omap_set_gpio_direction(leds[mask], 0);
35}
36
37void __led_set(led_id_t mask, int state)
38{
39 omap_set_gpio_dataout(leds[mask], state == STATUS_LED_ON);
40}
41
42void __led_toggle(led_id_t mask)
43{
44 omap_set_gpio_dataout(leds[mask], !omap_get_gpio_datain(leds[mask]));
45}