blob: f08c08ad884f3881ea3ebb2ca38ff16e9539df68 [file] [log] [blame]
Jason Kridner70d8c942011-04-18 17:23:35 -04001/*
2 * Copyright (c) 2010 Texas Instruments, Inc.
3 * Jason Kridner <jkridner@beagleboard.org>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 */
20#include <common.h>
21#include <status_led.h>
22#include <asm/arch/cpu.h>
23#include <asm/io.h>
24#include <asm/arch/sys_proto.h>
25#include <asm/arch/gpio.h>
26
Jason Kridner70d8c942011-04-18 17:23:35 -040027/* GPIO pins for the LEDs */
Jason Kridnerf87824e2011-04-19 10:55:26 -050028#define BEAGLE_LED_USR0 150
29#define BEAGLE_LED_USR1 149
Jason Kridner70d8c942011-04-18 17:23:35 -040030
31#ifdef STATUS_LED_GREEN
32void green_LED_off (void)
33{
34 __led_set (STATUS_LED_GREEN, 0);
35}
36
37void green_LED_on (void)
38{
39 __led_set (STATUS_LED_GREEN, 1);
40}
41#endif
42
43void __led_init (led_id_t mask, int state)
44{
45 __led_set (mask, state);
46}
47
48void __led_toggle (led_id_t mask)
49{
Joel A Fernandesb8bc8972011-08-11 23:16:53 -050050 int state, toggle_gpio = 0;
Jason Kridner70d8c942011-04-18 17:23:35 -040051#ifdef STATUS_LED_BIT
Joel A Fernandesb8bc8972011-08-11 23:16:53 -050052 if (!toggle_gpio && STATUS_LED_BIT & mask)
53 toggle_gpio = BEAGLE_LED_USR0;
Jason Kridner70d8c942011-04-18 17:23:35 -040054#endif
55#ifdef STATUS_LED_BIT1
Joel A Fernandesb8bc8972011-08-11 23:16:53 -050056 if (!toggle_gpio && STATUS_LED_BIT1 & mask)
57 toggle_gpio = BEAGLE_LED_USR1;
Jason Kridner70d8c942011-04-18 17:23:35 -040058#endif
Joel A Fernandesb8bc8972011-08-11 23:16:53 -050059 if (toggle_gpio) {
60 if (!omap_request_gpio(toggle_gpio)) {
61 omap_set_gpio_direction(toggle_gpio, 0);
62 state = omap_get_gpio_dataout(toggle_gpio);
63 omap_set_gpio_dataout(toggle_gpio, !state);
64 }
65 }
Jason Kridner70d8c942011-04-18 17:23:35 -040066}
67
68void __led_set (led_id_t mask, int state)
69{
70#ifdef STATUS_LED_BIT
71 if (STATUS_LED_BIT & mask) {
72 if (!omap_request_gpio(BEAGLE_LED_USR0)) {
73 omap_set_gpio_direction(BEAGLE_LED_USR0, 0);
74 omap_set_gpio_dataout(BEAGLE_LED_USR0, state);
75 }
Jason Kridner70d8c942011-04-18 17:23:35 -040076 }
77#endif
78#ifdef STATUS_LED_BIT1
79 if (STATUS_LED_BIT1 & mask) {
80 if (!omap_request_gpio(BEAGLE_LED_USR1)) {
81 omap_set_gpio_direction(BEAGLE_LED_USR1, 0);
82 omap_set_gpio_dataout(BEAGLE_LED_USR1, state);
83 }
Jason Kridner70d8c942011-04-18 17:23:35 -040084 }
85#endif
86}