blob: d43121a30aa783065e52dd7f87a5f09cbcc277a9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-ebsa110/leds.c
3 *
4 * Copyright (C) 1998 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * EBSA-110 LED control routines. We use the led as follows:
11 *
12 * - Red - toggles state every 50 timer interrupts
13 */
14#include <linux/module.h>
15#include <linux/spinlock.h>
16#include <linux/init.h>
17
Russell Kinga09e64f2008-08-05 16:14:15 +010018#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/leds.h>
20#include <asm/system.h>
21#include <asm/mach-types.h>
22
Russell Kingbcbbf902011-06-10 11:13:05 +010023#include "core.h"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static spinlock_t leds_lock;
26
27static void ebsa110_leds_event(led_event_t ledevt)
28{
29 unsigned long flags;
30
31 spin_lock_irqsave(&leds_lock, flags);
32
33 switch(ledevt) {
34 case led_timer:
35 *(volatile unsigned char *)SOFT_BASE ^= 128;
36 break;
37
38 default:
39 break;
40 }
41
42 spin_unlock_irqrestore(&leds_lock, flags);
43}
44
45static int __init leds_init(void)
46{
47 if (machine_is_ebsa110())
48 leds_event = ebsa110_leds_event;
49
50 return 0;
51}
52
53__initcall(leds_init);