wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 2 | * (C) Copyright 2000-2004 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | */ |
| 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 Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 20 | #ifdef CONFIG_LED_STATUS |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 21 | |
Uri Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 22 | #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 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 38 | |
Bernhard Nortmann | 13cfbe5 | 2015-08-21 15:13:21 +0200 | [diff] [blame] | 39 | void status_led_init(void); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 40 | void status_led_tick (unsigned long timestamp); |
| 41 | void status_led_set (int led, int state); |
| 42 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 43 | /***** MVS v1 **********************************************************/ |
Heiko Schocher | 5b8e76c | 2017-06-07 17:33:09 +0200 | [diff] [blame] | 44 | #if (defined(CONFIG_MVS) && CONFIG_MVS < 2) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 45 | # define STATUS_LED_PAR im_ioport.iop_pdpar |
| 46 | # define STATUS_LED_DIR im_ioport.iop_pddir |
| 47 | # undef STATUS_LED_ODR |
| 48 | # define STATUS_LED_DAT im_ioport.iop_pddat |
| 49 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 50 | # define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */ |
| 51 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 52 | /***** Someone else defines these *************************************/ |
| 53 | #elif defined(STATUS_LED_PAR) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | /* |
| 55 | * ADVICE: Define in your board configuration file rather than |
| 56 | * filling this file up with lots of custom board stuff. |
| 57 | */ |
| 58 | |
Uri Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 59 | #elif defined(CONFIG_LED_STATUS_BOARD_SPECIFIC) |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 60 | /* led_id_t is unsigned long mask */ |
| 61 | typedef unsigned long led_id_t; |
| 62 | |
| 63 | extern void __led_toggle (led_id_t mask); |
| 64 | extern void __led_init (led_id_t mask, int state); |
| 65 | extern void __led_set (led_id_t mask, int state); |
Stefan Roese | a8eeaf2 | 2015-03-11 09:51:39 +0100 | [diff] [blame] | 66 | void __led_blink(led_id_t mask, int freq); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 67 | #else |
| 68 | # error Status LED configuration missing |
| 69 | #endif |
| 70 | /************************************************************************/ |
| 71 | |
Uri Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 72 | #ifndef CONFIG_LED_STATUS_BOARD_SPECIFIC |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 73 | # include <asm/status_led.h> |
| 74 | #endif |
| 75 | |
Uri Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 76 | #endif /* CONFIG_LED_STATUS */ |
Jeroen Hofstee | c5d4001 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 77 | |
Wolfgang Denk | de74b9e | 2007-10-13 21:15:39 +0200 | [diff] [blame] | 78 | /* |
Peter Pearse | bd86220 | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 79 | * Coloured LEDs API |
Wolfgang Denk | de74b9e | 2007-10-13 21:15:39 +0200 | [diff] [blame] | 80 | */ |
Peter Pearse | bd86220 | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 81 | #ifndef __ASSEMBLY__ |
Jeroen Hofstee | c5d4001 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 82 | void coloured_LED_init(void); |
| 83 | void red_led_on(void); |
| 84 | void red_led_off(void); |
| 85 | void green_led_on(void); |
| 86 | void green_led_off(void); |
| 87 | void yellow_led_on(void); |
| 88 | void yellow_led_off(void); |
| 89 | void blue_led_on(void); |
| 90 | void blue_led_off(void); |
Peter Pearse | bd86220 | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 91 | #else |
| 92 | .extern LED_init |
Jason Kridner | 2d3be7c | 2011-09-04 14:40:16 -0400 | [diff] [blame] | 93 | .extern red_led_on |
| 94 | .extern red_led_off |
| 95 | .extern yellow_led_on |
| 96 | .extern yellow_led_off |
| 97 | .extern green_led_on |
| 98 | .extern green_led_off |
| 99 | .extern blue_led_on |
| 100 | .extern blue_led_off |
Peter Pearse | bd86220 | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 101 | #endif |
| 102 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 103 | #endif /* _STATUS_LED_H_ */ |