blob: 396ea882eaccae038cb51cffb31dfb1b42a7ca1b [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
8/*
9 * The purpose of this code is to signal the operational status of a
10 * target which usually boots over the network; while running in
11 * PCBoot, a status LED is blinking. As soon as a valid BOOTP reply
12 * message has been received, the LED is turned off. The Linux
13 * kernel, once it is running, will start blinking the LED again,
14 * with another frequency.
15 */
16
17#ifndef _STATUS_LED_H_
18#define _STATUS_LED_H_
19
20#ifdef CONFIG_STATUS_LED
21
22#define STATUS_LED_OFF 0
23#define STATUS_LED_BLINKING 1
24#define STATUS_LED_ON 2
25
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +020026void status_led_init(void);
wdenkc6097192002-11-03 00:24:07 +000027void status_led_tick (unsigned long timestamp);
28void status_led_set (int led, int state);
29
30/***** TQM8xxL ********************************************************/
Wolfgang Denk77efe352010-09-19 21:28:25 +020031#if defined(CONFIG_TQM8xxL)
wdenkc6097192002-11-03 00:24:07 +000032# define STATUS_LED_PAR im_cpm.cp_pbpar
33# define STATUS_LED_DIR im_cpm.cp_pbdir
34# define STATUS_LED_ODR im_cpm.cp_pbodr
35# define STATUS_LED_DAT im_cpm.cp_pbdat
36
37# define STATUS_LED_BIT 0x00000001
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
wdenkc6097192002-11-03 00:24:07 +000039# define STATUS_LED_STATE STATUS_LED_BLINKING
40
41# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
42
43# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
44
45/***** MVS v1 **********************************************************/
46#elif (defined(CONFIG_MVS) && CONFIG_MVS < 2)
47# define STATUS_LED_PAR im_ioport.iop_pdpar
48# define STATUS_LED_DIR im_ioport.iop_pddir
49# undef STATUS_LED_ODR
50# define STATUS_LED_DAT im_ioport.iop_pddat
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
wdenkc6097192002-11-03 00:24:07 +000060/***** Someone else defines these *************************************/
61#elif defined(STATUS_LED_PAR)
62
63 /*
64 * ADVICE: Define in your board configuration file rather than
65 * filling this file up with lots of custom board stuff.
66 */
67
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +020068#elif defined(CONFIG_V38B)
69
70# define STATUS_LED_BIT 0x0010 /* Timer7 GPIO */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020071# define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +020072# define STATUS_LED_STATE STATUS_LED_BLINKING
73
74# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
75# define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
76
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +020077#elif defined(CONFIG_MOTIONPRO)
78
79#define STATUS_LED_BIT ((vu_long *) MPC5XXX_GPT6_ENABLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080#define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 10)
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +020081#define STATUS_LED_STATE STATUS_LED_BLINKING
82
83#define STATUS_LED_BIT1 ((vu_long *) MPC5XXX_GPT7_ENABLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084#define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 10)
Bartlomiej Siekaa11c0b82007-05-27 16:51:48 +020085#define STATUS_LED_STATE1 STATUS_LED_OFF
86
87#define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
88
Heiko Schocher566a4942007-06-22 19:11:54 +020089#elif defined(CONFIG_BOARD_SPECIFIC_LED)
90/* led_id_t is unsigned long mask */
91typedef unsigned long led_id_t;
92
93extern void __led_toggle (led_id_t mask);
94extern void __led_init (led_id_t mask, int state);
95extern void __led_set (led_id_t mask, int state);
Stefan Roesea8eeaf22015-03-11 09:51:39 +010096void __led_blink(led_id_t mask, int freq);
wdenkc6097192002-11-03 00:24:07 +000097#else
98# error Status LED configuration missing
99#endif
100/************************************************************************/
101
wdenk48b42612003-06-19 23:01:32 +0000102#ifndef CONFIG_BOARD_SPECIFIC_LED
103# include <asm/status_led.h>
104#endif
105
Jeroen Hofsteec5d40012014-06-23 23:20:19 +0200106#endif /* CONFIG_STATUS_LED */
107
Wolfgang Denkde74b9e2007-10-13 21:15:39 +0200108/*
Peter Pearsebd862202007-09-18 13:07:54 +0100109 * Coloured LEDs API
Wolfgang Denkde74b9e2007-10-13 21:15:39 +0200110 */
Peter Pearsebd862202007-09-18 13:07:54 +0100111#ifndef __ASSEMBLY__
Jeroen Hofsteec5d40012014-06-23 23:20:19 +0200112void coloured_LED_init(void);
113void red_led_on(void);
114void red_led_off(void);
115void green_led_on(void);
116void green_led_off(void);
117void yellow_led_on(void);
118void yellow_led_off(void);
119void blue_led_on(void);
120void blue_led_off(void);
Peter Pearsebd862202007-09-18 13:07:54 +0100121#else
122 .extern LED_init
Jason Kridner2d3be7c2011-09-04 14:40:16 -0400123 .extern red_led_on
124 .extern red_led_off
125 .extern yellow_led_on
126 .extern yellow_led_off
127 .extern green_led_on
128 .extern green_led_off
129 .extern blue_led_on
130 .extern blue_led_off
Peter Pearsebd862202007-09-18 13:07:54 +0100131#endif
132
wdenkc6097192002-11-03 00:24:07 +0000133#endif /* _STATUS_LED_H_ */