Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2 | /* |
wdenk | 3902d70 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 3 | * (C) Copyright 2000-2004 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 5 | */ |
| 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 Mashiach | 4892d39 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 19 | #ifdef CONFIG_LED_STATUS |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 20 | |
Uri Mashiach | 4892d39 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 21 | #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 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 37 | |
Bernhard Nortmann | c5dcb4a | 2015-08-21 15:13:21 +0200 | [diff] [blame] | 38 | void status_led_init(void); |
Simon Glass | 9ea8f9f | 2019-11-14 12:57:12 -0700 | [diff] [blame] | 39 | void status_led_tick(unsigned long timestamp); |
| 40 | void status_led_set(int led, int state); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 41 | |
Christian Marangi | ac41112 | 2024-10-01 14:24:37 +0200 | [diff] [blame] | 42 | static inline void status_led_boot_blink(void) |
| 43 | { |
| 44 | #ifdef CONFIG_LED_STATUS_BOOT_ENABLE |
| 45 | status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING); |
| 46 | #endif |
| 47 | } |
| 48 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 49 | /***** MVS v1 **********************************************************/ |
Heiko Schocher | 65d94db | 2017-06-07 17:33:09 +0200 | [diff] [blame] | 50 | #if (defined(CONFIG_MVS) && CONFIG_MVS < 2) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 51 | # define STATUS_LED_PAR im_ioport.iop_pdpar |
| 52 | # define STATUS_LED_DIR im_ioport.iop_pddir |
| 53 | # undef STATUS_LED_ODR |
| 54 | # define STATUS_LED_DAT im_ioport.iop_pddat |
| 55 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 56 | # define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */ |
| 57 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 58 | /***** Someone else defines these *************************************/ |
| 59 | #elif defined(STATUS_LED_PAR) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 60 | /* |
| 61 | * ADVICE: Define in your board configuration file rather than |
| 62 | * filling this file up with lots of custom board stuff. |
| 63 | */ |
| 64 | |
Uri Mashiach | 4892d39 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 65 | #elif defined(CONFIG_LED_STATUS_BOARD_SPECIFIC) |
Heiko Schocher | 633e03a | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 66 | /* led_id_t is unsigned long mask */ |
| 67 | typedef unsigned long led_id_t; |
| 68 | |
| 69 | extern void __led_toggle (led_id_t mask); |
| 70 | extern void __led_init (led_id_t mask, int state); |
| 71 | extern void __led_set (led_id_t mask, int state); |
Stefan Roese | 448e9df | 2015-03-11 09:51:39 +0100 | [diff] [blame] | 72 | void __led_blink(led_id_t mask, int freq); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 73 | #else |
| 74 | # error Status LED configuration missing |
| 75 | #endif |
| 76 | /************************************************************************/ |
| 77 | |
Uri Mashiach | 4892d39 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 78 | #ifndef CONFIG_LED_STATUS_BOARD_SPECIFIC |
wdenk | 7539dea | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 79 | # include <asm/status_led.h> |
| 80 | #endif |
| 81 | |
Christian Marangi | ac41112 | 2024-10-01 14:24:37 +0200 | [diff] [blame] | 82 | #else |
| 83 | |
| 84 | static inline void status_led_init(void) { } |
| 85 | static inline void status_led_set(int led, int state) { } |
| 86 | static inline void status_led_boot_blink(void) { } |
| 87 | |
Uri Mashiach | 4892d39 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 88 | #endif /* CONFIG_LED_STATUS */ |
Jeroen Hofstee | a802b98 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 89 | |
Wolfgang Denk | ebc1591 | 2007-10-13 21:15:39 +0200 | [diff] [blame] | 90 | /* |
Peter Pearse | abf2c5d | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 91 | * Coloured LEDs API |
Wolfgang Denk | ebc1591 | 2007-10-13 21:15:39 +0200 | [diff] [blame] | 92 | */ |
Peter Pearse | abf2c5d | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 93 | #ifndef __ASSEMBLY__ |
Jeroen Hofstee | a802b98 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 94 | void coloured_LED_init(void); |
| 95 | void red_led_on(void); |
| 96 | void red_led_off(void); |
| 97 | void green_led_on(void); |
| 98 | void green_led_off(void); |
| 99 | void yellow_led_on(void); |
| 100 | void yellow_led_off(void); |
| 101 | void blue_led_on(void); |
| 102 | void blue_led_off(void); |
Peter Pearse | abf2c5d | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 103 | #else |
| 104 | .extern LED_init |
Jason Kridner | aff0aa8 | 2011-09-04 14:40:16 -0400 | [diff] [blame] | 105 | .extern red_led_on |
| 106 | .extern red_led_off |
| 107 | .extern yellow_led_on |
| 108 | .extern yellow_led_off |
| 109 | .extern green_led_on |
| 110 | .extern green_led_off |
| 111 | .extern blue_led_on |
| 112 | .extern blue_led_off |
Peter Pearse | abf2c5d | 2007-09-18 13:07:54 +0100 | [diff] [blame] | 113 | #endif |
| 114 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 115 | #endif /* _STATUS_LED_H_ */ |