Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-clps711x / p720t-leds.c
blob4915b3524963c6a4918a024e46ad8cfede069860
1 /*
2 * linux/arch/arm/mach-clps711x/leds.c
4 * Integrator LED control routines
6 * Copyright (C) 2000 Deep Blue Solutions Ltd
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/kernel.h>
23 #include <linux/init.h>
25 #include <asm/hardware.h>
26 #include <asm/io.h>
27 #include <asm/leds.h>
28 #include <asm/system.h>
29 #include <asm/mach-types.h>
31 #include <asm/hardware/clps7111.h>
32 #include <asm/hardware/ep7212.h>
34 static void p720t_leds_event(led_event_t ledevt)
36 unsigned long flags;
37 u32 pddr;
39 local_irq_save(flags);
40 switch(ledevt) {
41 case led_idle_start:
42 break;
44 case led_idle_end:
45 break;
47 case led_timer:
48 pddr = clps_readb(PDDR);
49 clps_writeb(pddr ^ 1, PDDR);
50 break;
52 default:
53 break;
56 local_irq_restore(flags);
59 static int __init leds_init(void)
61 if (machine_is_p720t())
62 leds_event = p720t_leds_event;
64 return 0;
67 arch_initcall(leds_init);