blob: f838f362dd7f5382c90d798c527f5fe47f26dbab [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
Uri Mashiach2d8d1902017-01-19 10:51:45 +020020#ifdef CONFIG_LED_STATUS
wdenkc6097192002-11-03 00:24:07 +000021
Uri Mashiach2d8d1902017-01-19 10:51:45 +020022#define LED_STATUS_PERIOD (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ)
23#ifdef CONFIG_LED_STATUS1
24#define LED_STATUS_PERIOD1 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ1)
25#endif /* CONFIG_LED_STATUS1 */
26#ifdef CONFIG_LED_STATUS2
27#define LED_STATUS_PERIOD2 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ2)
28#endif /* CONFIG_LED_STATUS2 */
29#ifdef CONFIG_LED_STATUS3
30#define LED_STATUS_PERIOD3 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ3)
31#endif /* CONFIG_LED_STATUS3 */
32#ifdef CONFIG_LED_STATUS4
33#define LED_STATUS_PERIOD4 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ4)
34#endif /* CONFIG_LED_STATUS4 */
35#ifdef CONFIG_LED_STATUS5
36#define LED_STATUS_PERIOD5 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ5)
37#endif /* CONFIG_LED_STATUS5 */
wdenkc6097192002-11-03 00:24:07 +000038
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +020039void status_led_init(void);
wdenkc6097192002-11-03 00:24:07 +000040void status_led_tick (unsigned long timestamp);
41void status_led_set (int led, int state);
42
43/***** TQM8xxL ********************************************************/
Wolfgang Denk77efe352010-09-19 21:28:25 +020044#if defined(CONFIG_TQM8xxL)
wdenkc6097192002-11-03 00:24:07 +000045# define STATUS_LED_PAR im_cpm.cp_pbpar
46# define STATUS_LED_DIR im_cpm.cp_pbdir
47# define STATUS_LED_ODR im_cpm.cp_pbodr
48# define STATUS_LED_DAT im_cpm.cp_pbdat
49
wdenkc6097192002-11-03 00:24:07 +000050# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
51
wdenkc6097192002-11-03 00:24:07 +000052/***** MVS v1 **********************************************************/
53#elif (defined(CONFIG_MVS) && CONFIG_MVS < 2)
54# define STATUS_LED_PAR im_ioport.iop_pdpar
55# define STATUS_LED_DIR im_ioport.iop_pddir
56# undef STATUS_LED_ODR
57# define STATUS_LED_DAT im_ioport.iop_pddat
58
wdenkc6097192002-11-03 00:24:07 +000059# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
60
wdenkc6097192002-11-03 00:24:07 +000061/***** Someone else defines these *************************************/
62#elif defined(STATUS_LED_PAR)
wdenkc6097192002-11-03 00:24:07 +000063 /*
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
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +020070# define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +020071
Uri Mashiach2d8d1902017-01-19 10:51:45 +020072#elif defined(CONFIG_LED_STATUS_BOARD_SPECIFIC)
Heiko Schocher566a4942007-06-22 19:11:54 +020073/* led_id_t is unsigned long mask */
74typedef unsigned long led_id_t;
75
76extern void __led_toggle (led_id_t mask);
77extern void __led_init (led_id_t mask, int state);
78extern void __led_set (led_id_t mask, int state);
Stefan Roesea8eeaf22015-03-11 09:51:39 +010079void __led_blink(led_id_t mask, int freq);
wdenkc6097192002-11-03 00:24:07 +000080#else
81# error Status LED configuration missing
82#endif
83/************************************************************************/
84
Uri Mashiach2d8d1902017-01-19 10:51:45 +020085#ifndef CONFIG_LED_STATUS_BOARD_SPECIFIC
wdenk48b42612003-06-19 23:01:32 +000086# include <asm/status_led.h>
87#endif
88
Uri Mashiach2d8d1902017-01-19 10:51:45 +020089#endif /* CONFIG_LED_STATUS */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020090
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020091/*
Peter Pearsebd862202007-09-18 13:07:54 +010092 * Coloured LEDs API
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020093 */
Peter Pearsebd862202007-09-18 13:07:54 +010094#ifndef __ASSEMBLY__
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020095void coloured_LED_init(void);
96void red_led_on(void);
97void red_led_off(void);
98void green_led_on(void);
99void green_led_off(void);
100void yellow_led_on(void);
101void yellow_led_off(void);
102void blue_led_on(void);
103void blue_led_off(void);
Peter Pearsebd862202007-09-18 13:07:54 +0100104#else
105 .extern LED_init
Jason Kridner2d3be7c2011-09-04 14:40:16 -0400106 .extern red_led_on
107 .extern red_led_off
108 .extern yellow_led_on
109 .extern yellow_led_off
110 .extern green_led_on
111 .extern green_led_off
112 .extern blue_led_on
113 .extern blue_led_off
Peter Pearsebd862202007-09-18 13:07:54 +0100114#endif
115
wdenkc6097192002-11-03 00:24:07 +0000116#endif /* _STATUS_LED_H_ */