2 * arch/sh/boards/se/73180/led.c
4 * Derived from arch/sh/boards/se/770x/led.c
6 * Copyright (C) 2000 Stuart Menefy <stuart.menefy@st.com>
8 * May be copied or modified under the terms of the GNU General Public
9 * License. See linux/COPYING for more information.
11 * This file contains Solution Engine specific LED code.
14 #include <linux/sched.h>
15 #include <asm/mach/se73180.h>
18 mach_led(int position, int value)
20 volatile unsigned short *p = (volatile unsigned short *) PA_LED;
23 *p |= (1 << LED_SHIFT);
25 *p &= ~(1 << LED_SHIFT);
29 /* Cycle the LED's in the clasic Knightrider/Sun pattern */
31 heartbeat_73180se(void)
33 static unsigned int cnt = 0, period = 0;
34 volatile unsigned short *p = (volatile unsigned short *) PA_LED;
35 static unsigned bit = 0, up = 1;
44 /* Go through the points (roughly!):
45 * f(0)=10, f(1)=16, f(2)=20, f(5)=35,f(inf)->110
47 period = 110 - ((300 << FSHIFT) / ((avenrun[0] / 5) + (3 << FSHIFT)));
64 *p = 1 << (bit + LED_SHIFT);