2 * linux/arch/sh/kernel/led_rts7751r2d.c
4 * Copyright (C) Atom Create Engineering Co., Ltd.
6 * May be copied or modified under the terms of GNU General Public
7 * License. See linux/COPYING for more information.
9 * This file contains Renesas Technology Sales RTS7751R2D specific LED code.
12 #include <linux/config.h>
14 #include <asm/rts7751r2d/rts7751r2d.h>
16 extern unsigned int debug_counter
;
18 #ifdef CONFIG_HEARTBEAT
20 #include <linux/sched.h>
22 /* Cycle the LED's in the clasic Knightriger/Sun pattern */
23 void heartbeat_rts7751r2d(void)
25 static unsigned int cnt
= 0, period
= 0;
26 volatile unsigned short *p
= (volatile unsigned short *)PA_OUTPORT
;
27 static unsigned bit
= 0, up
= 1;
35 /* Go through the points (roughly!):
36 * f(0)=10, f(1)=16, f(2)=20, f(5)=35, f(int)->110
38 period
= 110 - ((300 << FSHIFT
)/((avenrun
[0]/5) + (3<<FSHIFT
)));
52 #endif /* CONFIG_HEARTBEAT */
54 void rts7751r2d_led(unsigned short value
)
56 ctrl_outw(value
, PA_OUTPORT
);
59 void debug_led_disp(void)
63 value
= (unsigned short)debug_counter
++;
64 rts7751r2d_led(value
);