blob: 6707ab1d29d214c8ea273fb69dbadb3ad7054e3a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenkc6097192002-11-03 00:24:07 +00002/*
wdenk04a85b32004-04-15 18:22:41 +00003 * (C) Copyright 2000-2004
wdenkc6097192002-11-03 00:24:07 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkc6097192002-11-03 00:24:07 +00005 */
6
7/*
8 * The purpose of this code is to signal the operational status of a
9 * target which usually boots over the network; while running in
10 * PCBoot, a status LED is blinking. As soon as a valid BOOTP reply
11 * message has been received, the LED is turned off. The Linux
12 * kernel, once it is running, will start blinking the LED again,
13 * with another frequency.
14 */
15
16#ifndef _STATUS_LED_H_
17#define _STATUS_LED_H_
18
Uri Mashiach2d8d1902017-01-19 10:51:45 +020019#ifdef CONFIG_LED_STATUS
wdenkc6097192002-11-03 00:24:07 +000020
Uri Mashiach2d8d1902017-01-19 10:51:45 +020021#define LED_STATUS_PERIOD (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ)
22#ifdef CONFIG_LED_STATUS1
23#define LED_STATUS_PERIOD1 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ1)
24#endif /* CONFIG_LED_STATUS1 */
25#ifdef CONFIG_LED_STATUS2
26#define LED_STATUS_PERIOD2 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ2)
27#endif /* CONFIG_LED_STATUS2 */
28#ifdef CONFIG_LED_STATUS3
29#define LED_STATUS_PERIOD3 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ3)
30#endif /* CONFIG_LED_STATUS3 */
31#ifdef CONFIG_LED_STATUS4
32#define LED_STATUS_PERIOD4 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ4)
33#endif /* CONFIG_LED_STATUS4 */
34#ifdef CONFIG_LED_STATUS5
35#define LED_STATUS_PERIOD5 (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ5)
36#endif /* CONFIG_LED_STATUS5 */
wdenkc6097192002-11-03 00:24:07 +000037
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +020038void status_led_init(void);
Simon Glassc076e5c2019-11-14 12:57:12 -070039void status_led_tick(unsigned long timestamp);
40void status_led_set(int led, int state);
wdenkc6097192002-11-03 00:24:07 +000041
wdenkc6097192002-11-03 00:24:07 +000042/***** MVS v1 **********************************************************/
Heiko Schocher5b8e76c2017-06-07 17:33:09 +020043#if (defined(CONFIG_MVS) && CONFIG_MVS < 2)
wdenkc6097192002-11-03 00:24:07 +000044# define STATUS_LED_PAR im_ioport.iop_pdpar
45# define STATUS_LED_DIR im_ioport.iop_pddir
46# undef STATUS_LED_ODR
47# define STATUS_LED_DAT im_ioport.iop_pddat
48
wdenkc6097192002-11-03 00:24:07 +000049# define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
50
wdenkc6097192002-11-03 00:24:07 +000051/***** Someone else defines these *************************************/
52#elif defined(STATUS_LED_PAR)
wdenkc6097192002-11-03 00:24:07 +000053 /*
54 * ADVICE: Define in your board configuration file rather than
55 * filling this file up with lots of custom board stuff.
56 */
57
Uri Mashiach2d8d1902017-01-19 10:51:45 +020058#elif defined(CONFIG_LED_STATUS_BOARD_SPECIFIC)
Heiko Schocher566a4942007-06-22 19:11:54 +020059/* led_id_t is unsigned long mask */
60typedef unsigned long led_id_t;
61
62extern void __led_toggle (led_id_t mask);
63extern void __led_init (led_id_t mask, int state);
64extern void __led_set (led_id_t mask, int state);
Stefan Roesea8eeaf22015-03-11 09:51:39 +010065void __led_blink(led_id_t mask, int freq);
wdenkc6097192002-11-03 00:24:07 +000066#else
67# error Status LED configuration missing
68#endif
69/************************************************************************/
70
Uri Mashiach2d8d1902017-01-19 10:51:45 +020071#ifndef CONFIG_LED_STATUS_BOARD_SPECIFIC
wdenk48b42612003-06-19 23:01:32 +000072# include <asm/status_led.h>
73#endif
74
Uri Mashiach2d8d1902017-01-19 10:51:45 +020075#endif /* CONFIG_LED_STATUS */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020076
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020077/*
Peter Pearsebd862202007-09-18 13:07:54 +010078 * Coloured LEDs API
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020079 */
Peter Pearsebd862202007-09-18 13:07:54 +010080#ifndef __ASSEMBLY__
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020081void coloured_LED_init(void);
82void red_led_on(void);
83void red_led_off(void);
84void green_led_on(void);
85void green_led_off(void);
86void yellow_led_on(void);
87void yellow_led_off(void);
88void blue_led_on(void);
89void blue_led_off(void);
Peter Pearsebd862202007-09-18 13:07:54 +010090#else
91 .extern LED_init
Jason Kridner2d3be7c2011-09-04 14:40:16 -040092 .extern red_led_on
93 .extern red_led_off
94 .extern yellow_led_on
95 .extern yellow_led_off
96 .extern green_led_on
97 .extern green_led_off
98 .extern blue_led_on
99 .extern blue_led_off
Peter Pearsebd862202007-09-18 13:07:54 +0100100#endif
101
wdenkc6097192002-11-03 00:24:07 +0000102#endif /* _STATUS_LED_H_ */