blob: 27e9127694c7e5208e26dd5ae58d9ed11806cb77 [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
wdenkc6097192002-11-03 00:24:07 +000075/***** GEN860T *********************************************************/
76#elif defined(CONFIG_GEN860T)
77
78# define STATUS_LED_PAR im_ioport.iop_papar
79# define STATUS_LED_DIR im_ioport.iop_padir
80# define STATUS_LED_ODR im_ioport.iop_paodr
81# define STATUS_LED_DAT im_ioport.iop_padat
82
83# define STATUS_LED_BIT 0x0800 /* Red LED 0 is on PA.4 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 4)
wdenk7aa78612003-05-03 15:50:43 +000085# define STATUS_LED_STATE STATUS_LED_OFF
wdenkc6097192002-11-03 00:24:07 +000086# define STATUS_LED_BIT1 0x0400 /* Grn LED 1 is on PA.5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 8)
wdenkc6097192002-11-03 00:24:07 +000088# define STATUS_LED_STATE1 STATUS_LED_BLINKING
89# define STATUS_LED_BIT2 0x0080 /* Red LED 2 is on PA.8 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090# define STATUS_LED_PERIOD2 (CONFIG_SYS_HZ / 4)
wdenk7aa78612003-05-03 15:50:43 +000091# define STATUS_LED_STATE2 STATUS_LED_OFF
wdenkc6097192002-11-03 00:24:07 +000092# define STATUS_LED_BIT3 0x0040 /* Grn LED 3 is on PA.9 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093# define STATUS_LED_PERIOD3 (CONFIG_SYS_HZ / 4)
wdenk7aa78612003-05-03 15:50:43 +000094# define STATUS_LED_STATE3 STATUS_LED_OFF
wdenkc6097192002-11-03 00:24:07 +000095
96# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
wdenk7aa78612003-05-03 15:50:43 +000097# define STATUS_LED_BOOT 1 /* Boot status on LED 1 */
wdenkc6097192002-11-03 00:24:07 +000098
99/***** IVMS8 **********************************************************/
100#elif defined(CONFIG_IVMS8)
101
102# define STATUS_LED_PAR im_cpm.cp_pbpar
103# define STATUS_LED_DIR im_cpm.cp_pbdir
104# define STATUS_LED_ODR im_cpm.cp_pbodr
105# define STATUS_LED_DAT im_cpm.cp_pbdat
106
107# define STATUS_LED_BIT 0x00000010 /* LED 0 is on PB.27 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108# define STATUS_LED_PERIOD (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000109# define STATUS_LED_STATE STATUS_LED_OFF
110# define STATUS_LED_BIT1 0x00000020 /* LED 1 is on PB.26 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111# define STATUS_LED_PERIOD1 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000112# define STATUS_LED_STATE1 STATUS_LED_OFF
113/* IDE LED usable for other purposes, too */
114# define STATUS_LED_BIT2 0x00000008 /* LED 2 is on PB.28 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200115# define STATUS_LED_PERIOD2 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000116# define STATUS_LED_STATE2 STATUS_LED_OFF
117
118# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
119
120# define STATUS_ILOCK_SWITCH 0x00800000 /* ILOCK switch in IRQ4 */
121
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122# define STATUS_ILOCK_PERIOD (CONFIG_SYS_HZ / 10) /* about every 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000123
124# define STATUS_LED_YELLOW 0
125# define STATUS_LED_GREEN 1
126# define STATUS_LED_BOOT 2 /* IDE LED used for boot status */
127
128/***** IVML24 *********************************************************/
129#elif defined(CONFIG_IVML24)
130
131# define STATUS_LED_PAR im_cpm.cp_pbpar
132# define STATUS_LED_DIR im_cpm.cp_pbdir
133# define STATUS_LED_ODR im_cpm.cp_pbodr
134# define STATUS_LED_DAT im_cpm.cp_pbdat
135
136# define STATUS_LED_BIT 0x00000010 /* LED 0 is on PB.27 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200137# define STATUS_LED_PERIOD (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000138# define STATUS_LED_STATE STATUS_LED_OFF
139# define STATUS_LED_BIT1 0x00000020 /* LED 1 is on PB.26 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200140# define STATUS_LED_PERIOD1 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000141# define STATUS_LED_STATE1 STATUS_LED_OFF
142/* IDE LED usable for other purposes, too */
143# define STATUS_LED_BIT2 0x00000008 /* LED 2 is on PB.28 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200144# define STATUS_LED_PERIOD2 (1 * CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000145# define STATUS_LED_STATE2 STATUS_LED_OFF
146
147# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
148
149# define STATUS_ILOCK_SWITCH 0x00004000 /* ILOCK is on PB.17 */
150
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200151# define STATUS_ILOCK_PERIOD (CONFIG_SYS_HZ / 10) /* about every 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000152
153# define STATUS_LED_YELLOW 0
154# define STATUS_LED_GREEN 1
155# define STATUS_LED_BOOT 2 /* IDE LED used for boot status */
156
wdenkc6097192002-11-03 00:24:07 +0000157/***** ICU862 ********************************************************/
158#elif defined(CONFIG_ICU862)
159
160# define STATUS_LED_PAR im_ioport.iop_papar
161# define STATUS_LED_DIR im_ioport.iop_padir
162# define STATUS_LED_ODR im_ioport.iop_paodr
163# define STATUS_LED_DAT im_ioport.iop_padat
164
165# define STATUS_LED_BIT 0x4000 /* LED 0 is on PA.1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000167# define STATUS_LED_STATE STATUS_LED_BLINKING
168# define STATUS_LED_BIT1 0x1000 /* LED 1 is on PA.3 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ)
wdenkc6097192002-11-03 00:24:07 +0000170# define STATUS_LED_STATE1 STATUS_LED_OFF
171
172# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
173
174# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
175
176/***** Someone else defines these *************************************/
177#elif defined(STATUS_LED_PAR)
178
179 /*
180 * ADVICE: Define in your board configuration file rather than
181 * filling this file up with lots of custom board stuff.
182 */
183
184/***** NetVia ********************************************************/
185#elif defined(CONFIG_NETVIA)
186
wdenk993cad92003-06-26 22:04:09 +0000187#if !defined(CONFIG_NETVIA_VERSION) || CONFIG_NETVIA_VERSION == 1
188
wdenkc6097192002-11-03 00:24:07 +0000189#define STATUS_LED_PAR im_ioport.iop_pdpar
190#define STATUS_LED_DIR im_ioport.iop_pddir
191#undef STATUS_LED_ODR
192#define STATUS_LED_DAT im_ioport.iop_pddat
193
194# define STATUS_LED_BIT 0x0080 /* PD.8 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000196# define STATUS_LED_STATE STATUS_LED_BLINKING
197
198# define STATUS_LED_BIT1 0x0040 /* PD.9 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +0000200# define STATUS_LED_STATE1 STATUS_LED_OFF
201
202# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
203# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
204
wdenk993cad92003-06-26 22:04:09 +0000205#endif
wdenk56f94be2002-11-05 16:35:14 +0000206
wdenk0db5bca2003-03-31 17:27:09 +0000207/***** CMI ********************************************************/
208#elif defined(CONFIG_CMI)
wdenk8bde7f72003-06-27 21:31:46 +0000209# define STATUS_LED_DIR im_mios.mios_mpiosm32ddr
210# define STATUS_LED_DAT im_mios.mios_mpiosm32dr
wdenk0db5bca2003-03-31 17:27:09 +0000211
212# define STATUS_LED_BIT 0x2000 /* Select one of the 16 possible*/
213 /* MIOS outputs */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200214# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2) /* Blinking periode is 500 ms */
wdenk0db5bca2003-03-31 17:27:09 +0000215# define STATUS_LED_STATE STATUS_LED_BLINKING
216
217# define STATUS_LED_ACTIVE 1 /* LED on for bit == 0 */
218# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
219
wdenk0608e042004-03-25 19:29:38 +0000220/***** KUP4K, KUP4X ****************************************************/
Wolfgang Denkdff07e12010-10-05 22:54:54 +0200221#elif defined(CONFIG_KUP4K) || defined(CONFIG_KUP4X)
wdenk56f94be2002-11-05 16:35:14 +0000222
223# define STATUS_LED_PAR im_ioport.iop_papar
224# define STATUS_LED_DIR im_ioport.iop_padir
225# define STATUS_LED_ODR im_ioport.iop_paodr
226# define STATUS_LED_DAT im_ioport.iop_padat
227
228# 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 +0200229# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenk56f94be2002-11-05 16:35:14 +0000230# define STATUS_LED_STATE STATUS_LED_BLINKING
231
232# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
233
234# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
235
wdenkdc7c9a12003-03-26 06:55:25 +0000236#elif defined(CONFIG_SVM_SC8xx)
237# define STATUS_LED_PAR im_cpm.cp_pbpar
238# define STATUS_LED_DIR im_cpm.cp_pbdir
239# define STATUS_LED_ODR im_cpm.cp_pbodr
240# define STATUS_LED_DAT im_cpm.cp_pbdat
241
242# define STATUS_LED_BIT 0x00000001
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200243# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkdc7c9a12003-03-26 06:55:25 +0000244# define STATUS_LED_STATE STATUS_LED_BLINKING
245
246# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
247
248# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
249
wdenk682011f2003-06-03 23:54:09 +0000250/***** RBC823 ********************************************************/
251#elif defined(CONFIG_RBC823)
252
253# define STATUS_LED_PAR im_ioport.iop_pcpar
254# define STATUS_LED_DIR im_ioport.iop_pcdir
255# undef STATUS_LED_ODR
256# define STATUS_LED_DAT im_ioport.iop_pcdat
257
258# define STATUS_LED_BIT 0x0002 /* LED 0 is on PC.14 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200259# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenk682011f2003-06-03 23:54:09 +0000260# define STATUS_LED_STATE STATUS_LED_BLINKING
261# define STATUS_LED_BIT1 0x0004 /* LED 1 is on PC.13 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262# define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ)
wdenk682011f2003-06-03 23:54:09 +0000263# define STATUS_LED_STATE1 STATUS_LED_OFF
264
265# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
266
267# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
268
wdenk04a85b32004-04-15 18:22:41 +0000269/***** NetPhone ********************************************************/
wdenk79fa88f2004-06-07 23:46:25 +0000270#elif defined(CONFIG_NETPHONE) || defined(CONFIG_NETTA2)
wdenk04a85b32004-04-15 18:22:41 +0000271/* XXX empty just to avoid the error */
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200272/***** STx XTc ********************************************************/
273#elif defined(CONFIG_STXXTC)
274/* XXX empty just to avoid the error */
wdenkc6097192002-11-03 00:24:07 +0000275/************************************************************************/
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200276#elif defined(CONFIG_V38B)
277
278# define STATUS_LED_BIT 0x0010 /* Timer7 GPIO */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200279# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200280# define STATUS_LED_STATE STATUS_LED_BLINKING
281
282# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
283# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
284
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +0200285#elif defined(CONFIG_MOTIONPRO)
286
287#define STATUS_LED_BIT ((vu_long *) MPC5XXX_GPT6_ENABLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200288#define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 10)
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +0200289#define STATUS_LED_STATE STATUS_LED_BLINKING
290
291#define STATUS_LED_BIT1 ((vu_long *) MPC5XXX_GPT7_ENABLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200292#define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 10)
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +0200293#define STATUS_LED_STATE1 STATUS_LED_OFF
294
295#define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
296
Heiko Schocher566a4942007-06-22 19:11:54 +0200297#elif defined(CONFIG_BOARD_SPECIFIC_LED)
298/* led_id_t is unsigned long mask */
299typedef unsigned long led_id_t;
300
301extern void __led_toggle (led_id_t mask);
302extern void __led_init (led_id_t mask, int state);
303extern void __led_set (led_id_t mask, int state);
wdenkc6097192002-11-03 00:24:07 +0000304#else
305# error Status LED configuration missing
306#endif
307/************************************************************************/
308
wdenk48b42612003-06-19 23:01:32 +0000309#ifndef CONFIG_BOARD_SPECIFIC_LED
310# include <asm/status_led.h>
311#endif
312
Wolfgang Denkde74b9e2007-10-13 21:15:39 +0200313/*
Peter Pearsebd862202007-09-18 13:07:54 +0100314 * Coloured LEDs API
Wolfgang Denkde74b9e2007-10-13 21:15:39 +0200315 */
Peter Pearsebd862202007-09-18 13:07:54 +0100316#ifndef __ASSEMBLY__
317extern void coloured_LED_init (void);
Jason Kridner2d3be7c2011-09-04 14:40:16 -0400318extern void red_led_on(void);
319extern void red_led_off(void);
320extern void green_led_on(void);
321extern void green_led_off(void);
322extern void yellow_led_on(void);
323extern void yellow_led_off(void);
324extern void blue_led_on(void);
325extern void blue_led_off(void);
Peter Pearsebd862202007-09-18 13:07:54 +0100326#else
327 .extern LED_init
Jason Kridner2d3be7c2011-09-04 14:40:16 -0400328 .extern red_led_on
329 .extern red_led_off
330 .extern yellow_led_on
331 .extern yellow_led_off
332 .extern green_led_on
333 .extern green_led_off
334 .extern blue_led_on
335 .extern blue_led_off
Peter Pearsebd862202007-09-18 13:07:54 +0100336#endif
337
wdenkc6097192002-11-03 00:24:07 +0000338#endif /* CONFIG_STATUS_LED */
339
340#endif /* _STATUS_LED_H_ */