Pull kmalloc into release branch
[pandora-kernel.git] / arch / sh / boards / renesas / rts7751r2d / led.c
1 /*
2  * linux/arch/sh/kernel/led_rts7751r2d.c
3  *
4  * Copyright (C) Atom Create Engineering Co., Ltd.
5  *
6  * May be copied or modified under the terms of GNU General Public
7  * License.  See linux/COPYING for more information.
8  *
9  * This file contains Renesas Technology Sales RTS7751R2D specific LED code.
10  */
11
12 #include <asm/io.h>
13 #include <asm/rts7751r2d/rts7751r2d.h>
14
15 extern unsigned int debug_counter;
16
17 #ifdef CONFIG_HEARTBEAT
18
19 #include <linux/sched.h>
20
21 /* Cycle the LED's in the clasic Knightriger/Sun pattern */
22 void heartbeat_rts7751r2d(void)
23 {
24         static unsigned int cnt = 0, period = 0;
25         volatile unsigned short *p = (volatile unsigned short *)PA_OUTPORT;
26         static unsigned bit = 0, up = 1;
27
28         cnt += 1;
29         if (cnt < period)
30                 return;
31
32         cnt = 0;
33
34         /* Go through the points (roughly!):
35          * f(0)=10, f(1)=16, f(2)=20, f(5)=35, f(int)->110
36          */
37         period = 110 - ((300 << FSHIFT)/((avenrun[0]/5) + (3<<FSHIFT)));
38
39         *p = 1 << bit;
40         if (up)
41                 if (bit == 7) {
42                         bit--;
43                         up = 0;
44                 } else
45                         bit++;
46         else if (bit == 0)
47                 up = 1;
48         else
49                 bit--;
50 }
51 #endif /* CONFIG_HEARTBEAT */
52
53 void rts7751r2d_led(unsigned short value)
54 {
55         ctrl_outw(value, PA_OUTPORT);
56 }
57
58 void debug_led_disp(void)
59 {
60         unsigned short value;
61
62         value = (unsigned short)debug_counter++;
63         rts7751r2d_led(value);
64         if (value == 0xff)
65                 debug_counter = 0;
66 }