Disintegrate asm/system.h for ARM
[linux-2.6.git] / arch / arm / mach-sa1100 / leds-hackkit.c
blob6a2352436e6268989700ab9d9b84761add3b9bc1
1 /*
2 * linux/arch/arm/mach-sa1100/leds-hackkit.c
4 * based on leds-lart.c
6 * (C) Erik Mouw (J.A.K.Mouw@its.tudelft.nl), April 21, 2000
7 * (C) Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>, 2002
9 * The HackKit has two leds (GPIO 22/23). The red led (gpio 22) is used
10 * as cpu led, the green one is used as timer led.
12 #include <linux/init.h>
14 #include <mach/hardware.h>
15 #include <asm/leds.h>
17 #include "leds.h"
20 #define LED_STATE_ENABLED 1
21 #define LED_STATE_CLAIMED 2
23 static unsigned int led_state;
24 static unsigned int hw_led_state;
26 #define LED_GREEN GPIO_GPIO23
27 #define LED_RED GPIO_GPIO22
28 #define LED_MASK (LED_RED | LED_GREEN)
30 void hackkit_leds_event(led_event_t evt)
32 unsigned long flags;
34 local_irq_save(flags);
36 switch(evt) {
37 case led_start:
38 /* pin 22/23 are outputs */
39 GPDR |= LED_MASK;
40 hw_led_state = LED_MASK;
41 led_state = LED_STATE_ENABLED;
42 break;
44 case led_stop:
45 led_state &= ~LED_STATE_ENABLED;
46 break;
48 case led_claim:
49 led_state |= LED_STATE_CLAIMED;
50 hw_led_state = LED_MASK;
51 break;
53 case led_release:
54 led_state &= ~LED_STATE_CLAIMED;
55 hw_led_state = LED_MASK;
56 break;
58 #ifdef CONFIG_LEDS_TIMER
59 case led_timer:
60 if (!(led_state & LED_STATE_CLAIMED))
61 hw_led_state ^= LED_GREEN;
62 break;
63 #endif
65 #ifdef CONFIG_LEDS_CPU
66 case led_idle_start:
67 /* The LART people like the LED to be off when the
68 system is idle... */
69 if (!(led_state & LED_STATE_CLAIMED))
70 hw_led_state &= ~LED_RED;
71 break;
73 case led_idle_end:
74 /* ... and on if the system is not idle */
75 if (!(led_state & LED_STATE_CLAIMED))
76 hw_led_state |= LED_RED;
77 break;
78 #endif
80 case led_red_on:
81 if (led_state & LED_STATE_CLAIMED)
82 hw_led_state &= ~LED_RED;
83 break;
85 case led_red_off:
86 if (led_state & LED_STATE_CLAIMED)
87 hw_led_state |= LED_RED;
88 break;
90 case led_green_on:
91 if (led_state & LED_STATE_CLAIMED)
92 hw_led_state &= ~LED_GREEN;
93 break;
95 case led_green_off:
96 if (led_state & LED_STATE_CLAIMED)
97 hw_led_state |= LED_GREEN;
98 break;
100 default:
101 break;
104 /* Now set the GPIO state, or nothing will happen at all */
105 if (led_state & LED_STATE_ENABLED) {
106 GPSR = hw_led_state;
107 GPCR = hw_led_state ^ LED_MASK;
110 local_irq_restore(flags);