blob: ac21a95732262b8e807d89ca7cf3d8f95cca7a6c [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>
Sanjeev Premi84c3b632011-09-08 10:51:01 -040025#include <asm/gpio.h>
Jason Kridner70d8c942011-04-18 17:23:35 -040026
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
Jason Kridner2d3be7c2011-09-04 14:40:16 -040032void green_led_off(void)
Jason Kridner70d8c942011-04-18 17:23:35 -040033{
34 __led_set (STATUS_LED_GREEN, 0);
35}
36
Jason Kridner2d3be7c2011-09-04 14:40:16 -040037void green_led_on(void)
Jason Kridner70d8c942011-04-18 17:23:35 -040038{
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) {
Sanjeev Premi84c3b632011-09-08 10:51:01 -040060 if (!gpio_request(toggle_gpio, "")) {
61 gpio_direction_output(toggle_gpio, 0);
62 state = gpio_get_value(toggle_gpio);
63 gpio_set_value(toggle_gpio, !state);
Joel A Fernandesb8bc8972011-08-11 23:16:53 -050064 }
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) {
Sanjeev Premi84c3b632011-09-08 10:51:01 -040072 if (!gpio_request(BEAGLE_LED_USR0, "")) {
73 gpio_direction_output(BEAGLE_LED_USR0, 0);
74 gpio_set_value(BEAGLE_LED_USR0, state);
Jason Kridner70d8c942011-04-18 17:23:35 -040075 }
Jason Kridner70d8c942011-04-18 17:23:35 -040076 }
77#endif
78#ifdef STATUS_LED_BIT1
79 if (STATUS_LED_BIT1 & mask) {
Sanjeev Premi84c3b632011-09-08 10:51:01 -040080 if (!gpio_request(BEAGLE_LED_USR1, "")) {
81 gpio_direction_output(BEAGLE_LED_USR1, 0);
82 gpio_set_value(BEAGLE_LED_USR1, state);
Jason Kridner70d8c942011-04-18 17:23:35 -040083 }
Jason Kridner70d8c942011-04-18 17:23:35 -040084 }
85#endif
86}