hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Copyright (c) 2010 Texas Instruments, Inc.
 * Jason Kridner <jkridner@beagleboard.org>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
#include <common.h>
#include <status_led.h>
#include <asm/arch/cpu.h>
#include <asm/io.h>
#include <asm/arch/sys_proto.h>
#include <asm/gpio.h>
 
/* GPIO pins for the LEDs */
#define BEAGLE_LED_USR0    150
#define BEAGLE_LED_USR1    149
 
#ifdef CONFIG_LED_STATUS_GREEN
void green_led_off(void)
{
   __led_set(CONFIG_LED_STATUS_GREEN, 0);
}
 
void green_led_on(void)
{
   __led_set(CONFIG_LED_STATUS_GREEN, 1);
}
#endif
 
static int get_led_gpio(led_id_t mask)
{
#ifdef CONFIG_LED_STATUS0
   if (CONFIG_LED_STATUS_BIT & mask)
       return BEAGLE_LED_USR0;
#endif
#ifdef CONFIG_LED_STATUS1
   if (CONFIG_LED_STATUS_BIT1 & mask)
       return BEAGLE_LED_USR1;
#endif
 
   return 0;
}
 
void __led_init (led_id_t mask, int state)
{
   int toggle_gpio;
 
   toggle_gpio = get_led_gpio(mask);
 
   if (toggle_gpio && !gpio_request(toggle_gpio, "led"))
       __led_set(mask, state);
}
 
void __led_toggle (led_id_t mask)
{
   int state, toggle_gpio;
 
   toggle_gpio = get_led_gpio(mask);
   if (toggle_gpio) {
       state = gpio_get_value(toggle_gpio);
       gpio_direction_output(toggle_gpio, !state);
   }
}
 
void __led_set (led_id_t mask, int state)
{
   int toggle_gpio;
 
   toggle_gpio = get_led_gpio(mask);
   if (toggle_gpio)
       gpio_direction_output(toggle_gpio, state);
}