2 * linux/arch/arm/mach-sa1100/leds-badge4.c
4 * Author: Christopher Hoover <ch@hpl.hp.com>
5 * Copyright (C) 2002 Hewlett-Packard Company
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
13 #include <linux/config.h>
14 #include <linux/init.h>
16 #include <asm/hardware.h>
18 #include <asm/system.h>
22 #define LED_STATE_ENABLED 1
23 #define LED_STATE_CLAIMED 2
25 static unsigned int led_state
;
26 static unsigned int hw_led_state
;
28 #define LED_RED GPIO_GPIO(7)
29 #define LED_GREEN GPIO_GPIO(9)
30 #define LED_MASK (LED_RED|LED_GREEN)
32 #define LED_IDLE LED_GREEN
33 #define LED_TIMER LED_RED
35 void badge4_leds_event(led_event_t evt
)
39 local_irq_save(flags
);
44 hw_led_state
= LED_MASK
;
45 led_state
= LED_STATE_ENABLED
;
49 led_state
&= ~LED_STATE_ENABLED
;
53 led_state
|= LED_STATE_CLAIMED
;
54 hw_led_state
= LED_MASK
;
58 led_state
&= ~LED_STATE_CLAIMED
;
59 hw_led_state
= LED_MASK
;
62 #ifdef CONFIG_LEDS_TIMER
64 if (!(led_state
& LED_STATE_CLAIMED
))
65 hw_led_state
^= LED_TIMER
;
69 #ifdef CONFIG_LEDS_CPU
71 /* LED off when system is idle */
72 if (!(led_state
& LED_STATE_CLAIMED
))
73 hw_led_state
&= ~LED_IDLE
;
77 if (!(led_state
& LED_STATE_CLAIMED
))
78 hw_led_state
|= LED_IDLE
;
83 if (!(led_state
& LED_STATE_CLAIMED
))
84 hw_led_state
&= ~LED_RED
;
88 if (!(led_state
& LED_STATE_CLAIMED
))
89 hw_led_state
|= LED_RED
;
93 if (!(led_state
& LED_STATE_CLAIMED
))
94 hw_led_state
&= ~LED_GREEN
;
98 if (!(led_state
& LED_STATE_CLAIMED
))
99 hw_led_state
|= LED_GREEN
;
106 if (led_state
& LED_STATE_ENABLED
) {
108 GPCR
= hw_led_state
^ LED_MASK
;
111 local_irq_restore(flags
);