2 * arch/sh64/kernel/led.c
4 * Copyright (C) 2002 Stuart Menefy <stuart.menefy@st.com>
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
11 #include <linux/config.h>
12 #include <linux/stddef.h>
13 #include <linux/sched.h>
15 void mach_led(int pos, int val);
17 /* acts like an actual heart beat -- ie thump-thump-pause... */
20 static unsigned int cnt = 0, period = 0, dist = 0;
22 if (cnt == 0 || cnt == dist) {
24 } else if (cnt == 7 || cnt == dist + 7) {
32 * The hyperbolic function below modifies the heartbeat period
33 * length in dependency of the current (5min) load. It goes
34 * through the points f(0)=126, f(1)=86, f(5)=51, f(inf)->30.
36 period = ((672 << FSHIFT) / (5 * avenrun[0] +