blob: c85c206772bc27d289a08623f3b8e1a301e0d448 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenk04a85b32004-04-15 18:22:41 +00002 * (C) Copyright 2000-2004
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * The purpose of this code is to signal the operational status of a
26 * target which usually boots over the network; while running in
27 * PCBoot, a status LED is blinking. As soon as a valid BOOTP reply
28 * message has been received, the LED is turned off. The Linux
29 * kernel, once it is running, will start blinking the LED again,
30 * with another frequency.
31 */
32
33#ifndef _STATUS_LED_H_
34#define _STATUS_LED_H_
35
36#ifdef CONFIG_STATUS_LED
37
38#define STATUS_LED_OFF 0
39#define STATUS_LED_BLINKING 1
40#define STATUS_LED_ON 2
41
42void status_led_tick (unsigned long timestamp);
43void status_led_set (int led, int state);
44
45/***** TQM8xxL ********************************************************/
Wolfgang Denk77efe352010-09-19 21:28:25 +020046#if defined(CONFIG_TQM8xxL)
wdenkc6097192002-11-03 00:24:07 +000047# define STATUS_LED_PAR im_cpm.cp_pbpar
48# define STATUS_LED_DIR im_cpm.cp_pbdir
49# define STATUS_LED_ODR im_cpm.cp_pbodr
50# define STATUS_LED_DAT im_cpm.cp_pbdat
51
52# define STATUS_LED_BIT 0x00000001
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +000054# define STATUS_LED_STATE STATUS_LED_BLINKING
55
56# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
57
58# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
59
60/***** MVS v1 **********************************************************/
61#elif (defined(CONFIG_MVS) && CONFIG_MVS < 2)
62# define STATUS_LED_PAR im_ioport.iop_pdpar
63# define STATUS_LED_DIR im_ioport.iop_pddir
64# undef STATUS_LED_ODR
65# define STATUS_LED_DAT im_ioport.iop_pddat
66
67# define STATUS_LED_BIT 0x00000001
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +000069# define STATUS_LED_STATE STATUS_LED_BLINKING
70
71# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
72
73# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
74
75/***** ETX_094 ********************************************************/
76#elif defined(CONFIG_ETX094)
77
78# define STATUS_LED_PAR im_ioport.iop_pdpar
79# define STATUS_LED_DIR im_ioport.iop_pddir
80# undef STATUS_LED_ODR
81# define STATUS_LED_DAT im_ioport.iop_pddat
82
83# define STATUS_LED_BIT 0x00000001
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +000085# define STATUS_LED_STATE STATUS_LED_BLINKING
86
87# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
88
89# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
90
91/***** GEN860T *********************************************************/
92#elif defined(CONFIG_GEN860T)
93
94# define STATUS_LED_PAR im_ioport.iop_papar
95# define STATUS_LED_DIR im_ioport.iop_padir
96# define STATUS_LED_ODR im_ioport.iop_paodr
97# define STATUS_LED_DAT im_ioport.iop_padat
98
99# define STATUS_LED_BIT 0x0800 /* Red LED 0 is on PA.4 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 4)
wdenk7aa78612003-05-03 15:50:43 +0000101# define STATUS_LED_STATE STATUS_LED_OFF
wdenkc6097192002-11-03 00:24:07 +0000102# define STATUS_LED_BIT1 0x0400 /* Grn LED 1 is on PA.5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200103# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 8)
wdenkc6097192002-11-03 00:24:07 +0000104# define STATUS_LED_STATE1 STATUS_LED_BLINKING
105# define STATUS_LED_BIT2 0x0080 /* Red LED 2 is on PA.8 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106# define STATUS_LED_PERIOD2 (CONFIG_SYS_HZ / 4)
wdenk7aa78612003-05-03 15:50:43 +0000107# define STATUS_LED_STATE2 STATUS_LED_OFF
wdenkc6097192002-11-03 00:24:07 +0000108# define STATUS_LED_BIT3 0x0040 /* Grn LED 3 is on PA.9 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109# define STATUS_LED_PERIOD3 (CONFIG_SYS_HZ / 4)
wdenk7aa78612003-05-03 15:50:43 +0000110# define STATUS_LED_STATE3 STATUS_LED_OFF
wdenkc6097192002-11-03 00:24:07 +0000111
112# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
wdenk7aa78612003-05-03 15:50:43 +0000113# define STATUS_LED_BOOT 1 /* Boot status on LED 1 */
wdenkc6097192002-11-03 00:24:07 +0000114
115/***** IVMS8 **********************************************************/
116#elif defined(CONFIG_IVMS8)
117
118# define STATUS_LED_PAR im_cpm.cp_pbpar
119# define STATUS_LED_DIR im_cpm.cp_pbdir
120# define STATUS_LED_ODR im_cpm.cp_pbodr
121# define STATUS_LED_DAT im_cpm.cp_pbdat
122
123# define STATUS_LED_BIT 0x00000010 /* LED 0 is on PB.27 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200124# define STATUS_LED_PERIOD (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000125# define STATUS_LED_STATE STATUS_LED_OFF
126# define STATUS_LED_BIT1 0x00000020 /* LED 1 is on PB.26 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127# define STATUS_LED_PERIOD1 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000128# define STATUS_LED_STATE1 STATUS_LED_OFF
129/* IDE LED usable for other purposes, too */
130# define STATUS_LED_BIT2 0x00000008 /* LED 2 is on PB.28 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131# define STATUS_LED_PERIOD2 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000132# define STATUS_LED_STATE2 STATUS_LED_OFF
133
134# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
135
136# define STATUS_ILOCK_SWITCH 0x00800000 /* ILOCK switch in IRQ4 */
137
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138# define STATUS_ILOCK_PERIOD (CONFIG_SYS_HZ / 10) /* about every 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000139
140# define STATUS_LED_YELLOW 0
141# define STATUS_LED_GREEN 1
142# define STATUS_LED_BOOT 2 /* IDE LED used for boot status */
143
144/***** IVML24 *********************************************************/
145#elif defined(CONFIG_IVML24)
146
147# define STATUS_LED_PAR im_cpm.cp_pbpar
148# define STATUS_LED_DIR im_cpm.cp_pbdir
149# define STATUS_LED_ODR im_cpm.cp_pbodr
150# define STATUS_LED_DAT im_cpm.cp_pbdat
151
152# define STATUS_LED_BIT 0x00000010 /* LED 0 is on PB.27 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153# define STATUS_LED_PERIOD (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000154# define STATUS_LED_STATE STATUS_LED_OFF
155# define STATUS_LED_BIT1 0x00000020 /* LED 1 is on PB.26 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156# define STATUS_LED_PERIOD1 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000157# define STATUS_LED_STATE1 STATUS_LED_OFF
158/* IDE LED usable for other purposes, too */
159# define STATUS_LED_BIT2 0x00000008 /* LED 2 is on PB.28 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160# define STATUS_LED_PERIOD2 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000161# define STATUS_LED_STATE2 STATUS_LED_OFF
162
163# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
164
165# define STATUS_ILOCK_SWITCH 0x00004000 /* ILOCK is on PB.17 */
166
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167# define STATUS_ILOCK_PERIOD (CONFIG_SYS_HZ / 10) /* about every 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000168
169# define STATUS_LED_YELLOW 0
170# define STATUS_LED_GREEN 1
171# define STATUS_LED_BOOT 2 /* IDE LED used for boot status */
172
173/***** LANTEC *********************************************************/
174#elif defined(CONFIG_LANTEC)
175
176# define STATUS_LED_PAR im_ioport.iop_pdpar
177# define STATUS_LED_DIR im_ioport.iop_pddir
178# undef STATUS_LED_ODR
179# define STATUS_LED_DAT im_ioport.iop_pddat
180
181# if CONFIG_LATEC < 2
182# define STATUS_LED_BIT 0x1000
183# else
184# define STATUS_LED_BIT 0x0800
185# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200186# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000187# define STATUS_LED_STATE STATUS_LED_BLINKING
188
189# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
190
191# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
192
wdenkc6097192002-11-03 00:24:07 +0000193/***** ICU862 ********************************************************/
194#elif defined(CONFIG_ICU862)
195
196# define STATUS_LED_PAR im_ioport.iop_papar
197# define STATUS_LED_DIR im_ioport.iop_padir
198# define STATUS_LED_ODR im_ioport.iop_paodr
199# define STATUS_LED_DAT im_ioport.iop_padat
200
201# define STATUS_LED_BIT 0x4000 /* LED 0 is on PA.1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200202# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000203# define STATUS_LED_STATE STATUS_LED_BLINKING
204# define STATUS_LED_BIT1 0x1000 /* LED 1 is on PA.3 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200205# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000206# define STATUS_LED_STATE1 STATUS_LED_OFF
207
208# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
209
210# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
211
212/***** Someone else defines these *************************************/
213#elif defined(STATUS_LED_PAR)
214
215 /*
216 * ADVICE: Define in your board configuration file rather than
217 * filling this file up with lots of custom board stuff.
218 */
219
220/***** NetVia ********************************************************/
221#elif defined(CONFIG_NETVIA)
222
wdenk993cad92003-06-26 22:04:09 +0000223#if !defined(CONFIG_NETVIA_VERSION) || CONFIG_NETVIA_VERSION == 1
224
wdenkc6097192002-11-03 00:24:07 +0000225#define STATUS_LED_PAR im_ioport.iop_pdpar
226#define STATUS_LED_DIR im_ioport.iop_pddir
227#undef STATUS_LED_ODR
228#define STATUS_LED_DAT im_ioport.iop_pddat
229
230# define STATUS_LED_BIT 0x0080 /* PD.8 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000232# define STATUS_LED_STATE STATUS_LED_BLINKING
233
234# define STATUS_LED_BIT1 0x0040 /* PD.9 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000236# define STATUS_LED_STATE1 STATUS_LED_OFF
237
238# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
239# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
240
wdenk993cad92003-06-26 22:04:09 +0000241#endif
wdenk56f94be2002-11-05 16:35:14 +0000242
wdenk0db5bca2003-03-31 17:27:09 +0000243/***** CMI ********************************************************/
244#elif defined(CONFIG_CMI)
wdenk8bde7f72003-06-27 21:31:46 +0000245# define STATUS_LED_DIR im_mios.mios_mpiosm32ddr
246# define STATUS_LED_DAT im_mios.mios_mpiosm32dr
wdenk0db5bca2003-03-31 17:27:09 +0000247
248# define STATUS_LED_BIT 0x2000 /* Select one of the 16 possible*/
249 /* MIOS outputs */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200250# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2) /* Blinking periode is 500 ms */
wdenk0db5bca2003-03-31 17:27:09 +0000251# define STATUS_LED_STATE STATUS_LED_BLINKING
252
253# define STATUS_LED_ACTIVE 1 /* LED on for bit == 0 */
254# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
255
wdenk0608e042004-03-25 19:29:38 +0000256/***** KUP4K, KUP4X ****************************************************/
Wolfgang Denkdff07e12010-10-05 22:54:54 +0200257#elif defined(CONFIG_KUP4K) || defined(CONFIG_KUP4X)
wdenk56f94be2002-11-05 16:35:14 +0000258
259# define STATUS_LED_PAR im_ioport.iop_papar
260# define STATUS_LED_DIR im_ioport.iop_padir
261# define STATUS_LED_ODR im_ioport.iop_paodr
262# define STATUS_LED_DAT im_ioport.iop_padat
263
264# define STATUS_LED_BIT 0x00000300 /* green + red PA[8]=yellow, PA[7]=red, PA[6]=green */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200265# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenk56f94be2002-11-05 16:35:14 +0000266# define STATUS_LED_STATE STATUS_LED_BLINKING
267
268# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
269
270# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
271
wdenkdc7c9a12003-03-26 06:55:25 +0000272#elif defined(CONFIG_SVM_SC8xx)
273# define STATUS_LED_PAR im_cpm.cp_pbpar
274# define STATUS_LED_DIR im_cpm.cp_pbdir
275# define STATUS_LED_ODR im_cpm.cp_pbodr
276# define STATUS_LED_DAT im_cpm.cp_pbdat
277
278# define STATUS_LED_BIT 0x00000001
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200279# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkdc7c9a12003-03-26 06:55:25 +0000280# define STATUS_LED_STATE STATUS_LED_BLINKING
281
282# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
283
284# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
285
wdenk682011f2003-06-03 23:54:09 +0000286/***** RBC823 ********************************************************/
287#elif defined(CONFIG_RBC823)
288
289# define STATUS_LED_PAR im_ioport.iop_pcpar
290# define STATUS_LED_DIR im_ioport.iop_pcdir
291# undef STATUS_LED_ODR
292# define STATUS_LED_DAT im_ioport.iop_pcdat
293
294# define STATUS_LED_BIT 0x0002 /* LED 0 is on PC.14 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200295# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenk682011f2003-06-03 23:54:09 +0000296# define STATUS_LED_STATE STATUS_LED_BLINKING
297# define STATUS_LED_BIT1 0x0004 /* LED 1 is on PC.13 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200298# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ)
wdenk682011f2003-06-03 23:54:09 +0000299# define STATUS_LED_STATE1 STATUS_LED_OFF
300
301# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
302
303# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
304
wdenk04a85b32004-04-15 18:22:41 +0000305/***** NetPhone ********************************************************/
wdenk79fa88f2004-06-07 23:46:25 +0000306#elif defined(CONFIG_NETPHONE) || defined(CONFIG_NETTA2)
wdenk04a85b32004-04-15 18:22:41 +0000307/* XXX empty just to avoid the error */
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200308/***** STx XTc ********************************************************/
309#elif defined(CONFIG_STXXTC)
310/* XXX empty just to avoid the error */
wdenkc6097192002-11-03 00:24:07 +0000311/************************************************************************/
wdenk5c952cf2004-10-10 21:27:30 +0000312#elif defined(CONFIG_NIOS2)
313/* XXX empty just to avoid the error */
314/************************************************************************/
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200315#elif defined(CONFIG_V38B)
316
317# define STATUS_LED_BIT 0x0010 /* Timer7 GPIO */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200318# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200319# define STATUS_LED_STATE STATUS_LED_BLINKING
320
321# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
322# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
323
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +0200324#elif defined(CONFIG_MOTIONPRO)
325
326#define STATUS_LED_BIT ((vu_long *) MPC5XXX_GPT6_ENABLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200327#define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 10)
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +0200328#define STATUS_LED_STATE STATUS_LED_BLINKING
329
330#define STATUS_LED_BIT1 ((vu_long *) MPC5XXX_GPT7_ENABLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200331#define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 10)
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +0200332#define STATUS_LED_STATE1 STATUS_LED_OFF
333
334#define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
335
Heiko Schocher566a4942007-06-22 19:11:54 +0200336#elif defined(CONFIG_BOARD_SPECIFIC_LED)
337/* led_id_t is unsigned long mask */
338typedef unsigned long led_id_t;
339
340extern void __led_toggle (led_id_t mask);
341extern void __led_init (led_id_t mask, int state);
342extern void __led_set (led_id_t mask, int state);
wdenkc6097192002-11-03 00:24:07 +0000343#else
344# error Status LED configuration missing
345#endif
346/************************************************************************/
347
wdenk48b42612003-06-19 23:01:32 +0000348#ifndef CONFIG_BOARD_SPECIFIC_LED
349# include <asm/status_led.h>
350#endif
351
Wolfgang Denkde74b9e2007-10-13 21:15:39 +0200352/*
Peter Pearsebd862202007-09-18 13:07:54 +0100353 * Coloured LEDs API
Wolfgang Denkde74b9e2007-10-13 21:15:39 +0200354 */
Peter Pearsebd862202007-09-18 13:07:54 +0100355#ifndef __ASSEMBLY__
356extern void coloured_LED_init (void);
Jason Kridner2d3be7c2011-09-04 14:40:16 -0400357extern void red_led_on(void);
358extern void red_led_off(void);
359extern void green_led_on(void);
360extern void green_led_off(void);
361extern void yellow_led_on(void);
362extern void yellow_led_off(void);
363extern void blue_led_on(void);
364extern void blue_led_off(void);
Peter Pearsebd862202007-09-18 13:07:54 +0100365#else
366 .extern LED_init
Jason Kridner2d3be7c2011-09-04 14:40:16 -0400367 .extern red_led_on
368 .extern red_led_off
369 .extern yellow_led_on
370 .extern yellow_led_off
371 .extern green_led_on
372 .extern green_led_off
373 .extern blue_led_on
374 .extern blue_led_off
Peter Pearsebd862202007-09-18 13:07:54 +0100375#endif
376
wdenkc6097192002-11-03 00:24:07 +0000377#endif /* CONFIG_STATUS_LED */
378
379#endif /* _STATUS_LED_H_ */