]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
led: remove legacy API
authorQuentin Schulz <quentin.schulz@cherry.de>
Thu, 20 Nov 2025 12:48:06 +0000 (13:48 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 18 Mar 2026 19:07:36 +0000 (13:07 -0600)
No user of the legacy LED API anymore (except Sunxi with the PinePhone
but that is now a Sunxi-specific implementation), so let's remove
anything related.

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
14 files changed:
README
arch/m68k/lib/bootm.c
board/isee/igep00x0/igep00x0.c
boot/image.c
cmd/Makefile
cmd/ide.c
cmd/legacy_led.c [deleted file]
common/board_f.c
common/board_r.c
drivers/led/Kconfig
drivers/misc/Makefile
drivers/misc/gpio_led.c
drivers/misc/status_led.c [deleted file]
include/status_led.h [deleted file]

diff --git a/README b/README
index 20a73bab802ca8d40d33ec6686840190e854ac1f..38fcb23531cf4aeb0edfeb5d9903e17b60ac4fc0 100644 (file)
--- a/README
+++ b/README
@@ -597,32 +597,6 @@ The following options need to be configured:
 
                A byte containing the id of the VLAN.
 
-- Status LED:  CONFIG_LED_STATUS
-
-               Several configurations allow to display the current
-               status using a LED. For instance, the LED will blink
-               fast while running U-Boot code, stop blinking as
-               soon as a reply to a BOOTP request was received, and
-               start blinking slow once the Linux kernel is running
-               (supported by a status LED driver in the Linux
-               kernel). Defining CONFIG_LED_STATUS enables this
-               feature in U-Boot.
-
-               Additional options:
-
-               CONFIG_LED_STATUS_GPIO
-               The status LED can be connected to a GPIO pin.
-               In such cases, the gpio_led driver can be used as a
-               status LED backend implementation. Define CONFIG_LED_STATUS_GPIO
-               to include the gpio_led driver in the U-Boot binary.
-
-               CFG_GPIO_LED_INVERTED_TABLE
-               Some GPIO connected LEDs may have inverted polarity in which
-               case the GPIO high value corresponds to LED off state and
-               GPIO low value corresponds to LED on state.
-               In such cases CFG_GPIO_LED_INVERTED_TABLE may be defined
-               with a list of GPIO LEDs that have inverted polarity.
-
 - I2C Support:
                CFG_SYS_NUM_I2C_BUSES
                Hold the number of i2c buses you want to use.
index 3dcff8076e3cbb1e422afa94f66c3ea2cc8ee8ca..1fa112f8dbf3e8249b15c86c0b52079663251203 100644 (file)
@@ -15,9 +15,6 @@
 #include <bzlib.h>
 #include <watchdog.h>
 #include <asm/byteorder.h>
-#ifdef CONFIG_SHOW_BOOT_PROGRESS
-# include <status_led.h>
-#endif
 
 DECLARE_GLOBAL_DATA_PTR;
 
index c21b083b62a28c900aba7fa09a23e5338a6a506b..4dc7b608f0f93d529c5c250cddcc8bb154ed707e 100644 (file)
@@ -9,7 +9,6 @@
 #include <malloc.h>
 #include <mtd.h>
 #include <net.h>
-#include <status_led.h>
 #include <dm.h>
 #include <ns16550.h>
 #include <twl4030.h>
index abac2c7034b22b8a638d93899aff1d5465f938f1..28b367c6b54e0432b9a3989886985aa5f0c8fb5a 100644 (file)
 #include <malloc.h>
 #include <u-boot/crc.h>
 
-#ifdef CONFIG_SHOW_BOOT_PROGRESS
-#include <status_led.h>
-#endif
-
 #if CONFIG_IS_ENABLED(FIT) || CONFIG_IS_ENABLED(OF_LIBFDT)
 #include <linux/libfdt.h>
 #include <fdt_support.h>
index 254799077974142005fe9752ff7f1898509a609e..969f3b6386d1ed91388be5b775664ea61c8f44c4 100644 (file)
@@ -105,7 +105,6 @@ obj-$(CONFIG_CMD_IRQ) += irq.o
 obj-$(CONFIG_CMD_ITEST) += itest.o
 obj-$(CONFIG_CMD_JFFS2) += jffs2.o
 obj-$(CONFIG_CMD_CRAMFS) += cramfs.o
-obj-$(CONFIG_LED_STATUS_CMD) += legacy_led.o
 obj-$(CONFIG_CMD_LED) += led.o
 obj-$(CONFIG_CMD_LICENSE) += license.o
 obj-y += load.o
index ed30f94686605794d316ef4319cf4a62d146a725..f99fb6f582465a98e441ad68ed2c296225eb85fc 100644 (file)
--- a/cmd/ide.c
+++ b/cmd/ide.c
 
 #include <ata.h>
 
-#ifdef CONFIG_LED_STATUS
-# include <status_led.h>
-#endif
-
 /* Current I/O Device  */
 static int curr_device;
 
diff --git a/cmd/legacy_led.c b/cmd/legacy_led.c
deleted file mode 100644 (file)
index db312ae..0000000
+++ /dev/null
@@ -1,186 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * (C) Copyright 2010
- * Jason Kridner <jkridner@beagleboard.org>
- *
- * Based on cmd_led.c patch from:
- * http://www.mail-archive.com/u-boot@lists.denx.de/msg06873.html
- * (C) Copyright 2008
- * Ulf Samuelsson <ulf.samuelsson@atmel.com>
- */
-
-#include <command.h>
-#include <status_led.h>
-#include <vsprintf.h>
-#include <linux/string.h>
-
-struct led_tbl_s {
-       char            *string;        /* String for use in the command */
-       led_id_t        mask;           /* Mask used for calling __led_set() */
-       void            (*off)(void);   /* Optional function for turning LED off */
-       void            (*on)(void);    /* Optional function for turning LED on */
-       void            (*toggle)(void);/* Optional function for toggling LED */
-};
-
-typedef struct led_tbl_s led_tbl_t;
-
-static const led_tbl_t led_commands[] = {
-#ifdef CONFIG_LED_STATUS_BOARD_SPECIFIC
-#ifdef CONFIG_LED_STATUS0
-       { "0", CONFIG_LED_STATUS_BIT, NULL, NULL, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS1
-       { "1", CONFIG_LED_STATUS_BIT1, NULL, NULL, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS2
-       { "2", CONFIG_LED_STATUS_BIT2, NULL, NULL, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS3
-       { "3", CONFIG_LED_STATUS_BIT3, NULL, NULL, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS4
-       { "4", CONFIG_LED_STATUS_BIT4, NULL, NULL, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS5
-       { "5", CONFIG_LED_STATUS_BIT5, NULL, NULL, NULL },
-#endif
-#endif
-#ifdef CONFIG_LED_STATUS_GREEN
-       { "green", CONFIG_LED_STATUS_GREEN, green_led_off, green_led_on, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS_YELLOW
-       { "yellow", CONFIG_LED_STATUS_YELLOW, yellow_led_off, yellow_led_on,
-         NULL },
-#endif
-#ifdef CONFIG_LED_STATUS_RED
-       { "red", CONFIG_LED_STATUS_RED, red_led_off, red_led_on, NULL },
-#endif
-#ifdef CONFIG_LED_STATUS_BLUE
-       { "blue", CONFIG_LED_STATUS_BLUE, blue_led_off, blue_led_on, NULL },
-#endif
-       { NULL, 0, NULL, NULL, NULL }
-};
-
-enum led_cmd { LED_ON, LED_OFF, LED_TOGGLE, LED_BLINK };
-
-enum led_cmd get_led_cmd(char *var)
-{
-       if (strcmp(var, "off") == 0)
-               return LED_OFF;
-       if (strcmp(var, "on") == 0)
-               return LED_ON;
-       if (strcmp(var, "toggle") == 0)
-               return LED_TOGGLE;
-       if (strcmp(var, "blink") == 0)
-               return LED_BLINK;
-
-       return -1;
-}
-
-/*
- * LED drivers providing a blinking LED functionality, like the
- * PCA9551, can override this empty weak function
- */
-void __weak __led_blink(led_id_t mask, int freq)
-{
-}
-
-int do_legacy_led(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
-       int i, match = 0;
-       enum led_cmd cmd;
-       int freq;
-
-       /* Validate arguments */
-       if ((argc < 3) || (argc > 4))
-               return CMD_RET_USAGE;
-
-       cmd = get_led_cmd(argv[2]);
-       if (cmd < 0) {
-               return CMD_RET_USAGE;
-       }
-
-       for (i = 0; led_commands[i].string; i++) {
-               if ((strcmp("all", argv[1]) == 0) ||
-                   (strcmp(led_commands[i].string, argv[1]) == 0)) {
-                       match = 1;
-                       switch (cmd) {
-                       case LED_ON:
-                               if (led_commands[i].on)
-                                       led_commands[i].on();
-                               else
-                                       __led_set(led_commands[i].mask,
-                                                         CONFIG_LED_STATUS_ON);
-                               break;
-                       case LED_OFF:
-                               if (led_commands[i].off)
-                                       led_commands[i].off();
-                               else
-                                       __led_set(led_commands[i].mask,
-                                                 CONFIG_LED_STATUS_OFF);
-                               break;
-                       case LED_TOGGLE:
-                               if (led_commands[i].toggle)
-                                       led_commands[i].toggle();
-                               else
-                                       __led_toggle(led_commands[i].mask);
-                               break;
-                       case LED_BLINK:
-                               if (argc != 4)
-                                       return CMD_RET_USAGE;
-
-                               freq = dectoul(argv[3], NULL);
-                               __led_blink(led_commands[i].mask, freq);
-                       }
-                       /* Need to set only 1 led if led_name wasn't 'all' */
-                       if (strcmp("all", argv[1]) != 0)
-                               break;
-               }
-       }
-
-       /* If we ran out of matches, print Usage */
-       if (!match) {
-               return CMD_RET_USAGE;
-       }
-
-       return 0;
-}
-
-U_BOOT_CMD(
-       led, 4, 1, do_legacy_led,
-       "["
-#ifdef CONFIG_LED_STATUS_BOARD_SPECIFIC
-#ifdef CONFIG_LED_STATUS0
-       "0|"
-#endif
-#ifdef CONFIG_LED_STATUS1
-       "1|"
-#endif
-#ifdef CONFIG_LED_STATUS2
-       "2|"
-#endif
-#ifdef CONFIG_LED_STATUS3
-       "3|"
-#endif
-#ifdef CONFIG_LED_STATUS4
-       "4|"
-#endif
-#ifdef CONFIG_LED_STATUS5
-       "5|"
-#endif
-#endif
-#ifdef CONFIG_LED_STATUS_GREEN
-       "green|"
-#endif
-#ifdef CONFIG_LED_STATUS_YELLOW
-       "yellow|"
-#endif
-#ifdef CONFIG_LED_STATUS_RED
-       "red|"
-#endif
-#ifdef CONFIG_LED_STATUS_BLUE
-       "blue|"
-#endif
-       "all] [on|off|toggle|blink] [blink-freq in ms]",
-       "[led_name] [on|off|toggle|blink] sets or clears led(s)"
-);
index c8a612d6070963ffd260a1186ea26db44986b079..211ba6b9adaa0fd3f6567bb50091a0bd16c508d0 100644 (file)
@@ -36,7 +36,6 @@
 #include <relocate.h>
 #include <serial.h>
 #include <spl.h>
-#include <status_led.h>
 #include <sysreset.h>
 #include <time.h>
 #include <timer.h>
index 76f9fc090fbe44b0855ff87c22f04261cd02dd0c..8cf0e14679c05c03d38c482aefe552bcdeedfc45 100644 (file)
@@ -52,7 +52,6 @@
 #include <pvblock.h>
 #include <scsi.h>
 #include <serial.h>
-#include <status_led.h>
 #include <stdio_dev.h>
 #include <timer.h>
 #include <trace.h>
@@ -482,17 +481,8 @@ static int initr_malloc_bootparams(void)
 }
 #endif
 
-static int initr_status_led(void)
-{
-       status_led_init();
-
-       return 0;
-}
-
 static int initr_boot_led_blink(void)
 {
-       status_led_boot_blink();
-
        led_boot_blink();
 
        return 0;
@@ -758,7 +748,6 @@ static void initcall_run_r(void)
 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_M68K)
        INITCALL(timer_init);           /* initialize timer */
 #endif
-       INITCALL(initr_status_led);
        INITCALL(initr_boot_led_blink);
        /* PPC has a udelay(20) here dating from 2002. Why? */
 #if CONFIG_IS_ENABLED(BOARD_LATE_INIT)
index 1cd3638cb164cf0e9fd4b1fa9c1868d4544e4079..de95a1debdc5359307042f0ff2177617987cf944 100644 (file)
@@ -138,327 +138,4 @@ config SPL_LED_GPIO
          This option is an SPL-variant of the LED_GPIO option.
          See the help of LED_GPIO for details.
 
-config LED_STATUS
-       bool "Enable legacy status LED API"
-       depends on !LED
-       help
-         Allows common u-boot commands to use a board's leds to
-         provide status for activities like booting and downloading files.
-
-if LED_STATUS
-
-# Hidden constants
-
-config LED_STATUS_OFF
-       int
-       default 0
-
-config LED_STATUS_BLINKING
-       int
-       default 1
-
-config LED_STATUS_ON
-       int
-       default 2
-
-# Hidden constants end
-
-config LED_STATUS_GPIO
-       bool "GPIO status LED implementation"
-       help
-         The status LED can be connected to a GPIO pin. In such cases, the
-         gpio_led driver can be used as a status LED backend implementation.
-
-config LED_STATUS_BOARD_SPECIFIC
-       bool "Specific board"
-       default y
-       help
-         LED support is only for a specific board.
-
-comment "LEDs parameters"
-
-config LED_STATUS0
-       bool "Enable status LED 0"
-
-if LED_STATUS0
-
-config LED_STATUS_BIT
-       int "identification"
-       help
-         CONFIG_LED_STATUS_BIT is passed into the __led_* functions to identify
-         which LED is being acted on.  As such, the chosen value must be unique
-         with respect to the other CONFIG_LED_STATUS_BIT's. Mapping the value
-         to a physical LED is the responsibility of the __led_* function.
-
-config LED_STATUS_STATE
-       int "initial state"
-       range LED_STATUS_OFF LED_STATUS_ON
-       default LED_STATUS_OFF
-       help
-         Should be set one of the following:
-         0 - off
-         1 - blinking
-         2 - on
-
-config LED_STATUS_FREQ
-       int "blink frequency"
-       range 2 10
-       default 2
-       help
-         The LED blink period calculated from LED_STATUS_FREQ:
-         LED_STATUS_PERIOD = CONFIG_SYS_HZ/LED_STATUS_FREQ
-         Values range: 2 - 10
-
-endif # LED_STATUS0
-
-config LED_STATUS1
-       bool "Enable status LED 1"
-
-if LED_STATUS1
-
-config LED_STATUS_BIT1
-       int "identification"
-       help
-         CONFIG_LED_STATUS_BIT1 is passed into the __led_* functions to
-         identify which LED is being acted on.  As such, the chosen value must
-         be unique with respect to the other CONFIG_LED_STATUS_BIT's. Mapping
-         the value to a physical LED is the responsibility of the __led_*
-         function.
-
-config LED_STATUS_STATE1
-       int "initial state"
-       range LED_STATUS_OFF LED_STATUS_ON
-       default LED_STATUS_OFF
-       help
-         Should be set one of the following:
-         0 - off
-         1 - blinking
-         2 - on
-
-config LED_STATUS_FREQ1
-       int "blink frequency"
-       range 2 10
-       default 2
-       help
-         The LED blink period calculated from LED_STATUS_FREQ1:
-         LED_STATUS_PERIOD1 = CONFIG_SYS_HZ/LED_STATUS_FREQ1
-         Values range: 2 - 10
-
-endif # LED_STATUS1
-
-config LED_STATUS2
-       bool "Enable status LED 2"
-
-if LED_STATUS2
-
-config LED_STATUS_BIT2
-       int "identification"
-       help
-         CONFIG_LED_STATUS_BIT2 is passed into the __led_* functions to
-         identify which LED is being acted on.  As such, the chosen value must
-         be unique with respect to the other CONFIG_LED_STATUS_BIT's. Mapping
-         the value to a physical LED is the responsibility of the __led_*
-         function.
-
-config LED_STATUS_STATE2
-       int "initial state"
-       range LED_STATUS_OFF LED_STATUS_ON
-       default LED_STATUS_OFF
-       help
-         Should be set one of the following:
-         0 - off
-         1 - blinking
-         2 - on
-
-config LED_STATUS_FREQ2
-       int "blink frequency"
-       range 2 10
-       default 2
-       help
-         The LED blink period calculated from LED_STATUS_FREQ2:
-         LED_STATUS_PERIOD2 = CONFIG_SYS_HZ/LED_STATUS_FREQ2
-         Values range: 2 - 10
-
-endif # LED_STATUS2
-
-config LED_STATUS3
-       bool "Enable status LED 3"
-
-if LED_STATUS3
-
-config LED_STATUS_BIT3
-       int "identification"
-       help
-         CONFIG_LED_STATUS_BIT3 is passed into the __led_* functions to
-         identify which LED is being acted on.  As such, the chosen value must
-         be unique with respect to the other CONFIG_LED_STATUS_BIT's. Mapping
-         the value to a physical LED is the responsibility of the __led_*
-         function.
-
-config LED_STATUS_STATE3
-       int "initial state"
-       range LED_STATUS_OFF LED_STATUS_ON
-       default LED_STATUS_OFF
-       help
-         Should be set one of the following:
-         0 - off
-         1 - blinking
-         2 - on
-
-config LED_STATUS_FREQ3
-       int "blink frequency"
-       range 2 10
-       default 2
-       help
-         The LED blink period calculated from LED_STATUS_FREQ3:
-         LED_STATUS_PERIOD3 = CONFIG_SYS_HZ/LED_STATUS_FREQ3
-         Values range: 2 - 10
-
-endif # LED_STATUS3
-
-config LED_STATUS4
-       bool "Enable status LED 4"
-
-if LED_STATUS4
-
-config LED_STATUS_BIT4
-       int "identification"
-       help
-         CONFIG_LED_STATUS_BIT4 is passed into the __led_* functions to
-         identify which LED is being acted on.  As such, the chosen value must
-         be unique with respect to the other CONFIG_LED_STATUS_BIT's. Mapping
-         the value to a physical LED is the responsibility of the __led_*
-         function.
-
-config LED_STATUS_STATE4
-       int "initial state"
-       range LED_STATUS_OFF LED_STATUS_ON
-       default LED_STATUS_OFF
-       help
-         Should be set one of the following:
-         0 - off
-         1 - blinking
-         2 - on
-
-config LED_STATUS_FREQ4
-       int "blink frequency"
-       range 2 10
-       default 2
-       help
-         The LED blink period calculated from LED_STATUS_FREQ4:
-         LED_STATUS_PERIOD4 = CONFIG_SYS_HZ/LED_STATUS_FREQ4
-         Values range: 2 - 10
-
-endif # LED_STATUS4
-
-config LED_STATUS5
-       bool "Enable status LED 5"
-
-if LED_STATUS5
-
-config LED_STATUS_BIT5
-       int "identification"
-       help
-         CONFIG_LED_STATUS_BIT5 is passed into the __led_* functions to
-         identify which LED is being acted on.  As such, the chosen value must
-         be unique with respect to the other CONFIG_LED_STATUS_BIT's. Mapping
-         the value to a physical LED is the responsibility of the __led_*
-         function.
-
-config LED_STATUS_STATE5
-       int "initial state"
-       range LED_STATUS_OFF LED_STATUS_ON
-       default LED_STATUS_OFF
-       help
-         Should be set one of the following:
-         0 - off
-         1 - blinking
-         2 - on
-
-config LED_STATUS_FREQ5
-       int "blink frequency"
-       range 2 10
-       default 2
-       help
-         The LED blink period calculated from LED_STATUS_FREQ5:
-         LED_STATUS_PERIOD5 = CONFIG_SYS_HZ/LED_STATUS_FREQ5
-         Values range: 2 - 10
-
-endif # LED_STATUS5
-
-config LED_STATUS_BOOT_ENABLE
-       bool "Enable BOOT LED"
-       help
-         Enable to turn an LED on when the board is booting.
-
-if LED_STATUS_BOOT_ENABLE
-
-config LED_STATUS_BOOT
-       int "LED to light when the board is booting"
-       help
-         Valid enabled LED device number.
-
-endif # LED_STATUS_BOOT_ENABLE
-
-config LED_STATUS_RED_ENABLE
-       bool "Enable red LED"
-       help
-         Enable red status LED.
-
-if LED_STATUS_RED_ENABLE
-
-config LED_STATUS_RED
-       int "Red LED identification"
-       help
-         Valid enabled LED device number.
-
-endif # LED_STATUS_RED_ENABLE
-
-config LED_STATUS_YELLOW_ENABLE
-       bool "Enable yellow LED"
-       help
-         Enable yellow status LED.
-
-if LED_STATUS_YELLOW_ENABLE
-
-config LED_STATUS_YELLOW
-       int "Yellow LED identification"
-       help
-         Valid enabled LED device number.
-
-endif # LED_STATUS_YELLOW_ENABLE
-
-config LED_STATUS_BLUE_ENABLE
-       bool "Enable blue LED"
-       help
-         Enable blue status LED.
-
-if LED_STATUS_BLUE_ENABLE
-
-config LED_STATUS_BLUE
-       int "Blue LED identification"
-       help
-         Valid enabled LED device number.
-
-endif # LED_STATUS_BLUE_ENABLE
-
-config LED_STATUS_GREEN_ENABLE
-       bool "Enable green LED"
-       help
-         Enable green status LED.
-
-if LED_STATUS_GREEN_ENABLE
-
-config LED_STATUS_GREEN
-       int "Green LED identification"
-       help
-         Valid enabled LED device number (0-5).
-
-endif # LED_STATUS_GREEN_ENABLE
-
-config LED_STATUS_CMD
-       bool "Enable status LED commands"
-
-endif # LED_STATUS
-
 endmenu
index 1d950f7a0ab26e210eac60276cd689b2865dc547..e2170212e5ad72091f571eb4d05e09682a93f72b 100644 (file)
@@ -48,8 +48,6 @@ obj-$(CONFIG_IHS_FPGA) += ihs_fpga.o
 obj-$(CONFIG_IMX8) += imx8/
 obj-$(CONFIG_IMX_ELE) += imx_ele/
 obj-$(CONFIG_K3_FUSE) += k3_fuse.o
-obj-$(CONFIG_LED_STATUS) += status_led.o
-obj-$(CONFIG_LED_STATUS_GPIO) += gpio_led.o
 obj-$(CONFIG_MPC83XX_SERDES) += mpc83xx_serdes.o
 obj-$(CONFIG_$(PHASE_)LS2_SFP) += ls2_sfp.o
 obj-$(CONFIG_$(PHASE_)MXC_OCOTP) += mxc_ocotp.o
index e63689967a7ac0ee0f1bdc7e607bfb728ec11a67..69b2e2f76bd979636391d8ae3ea6d8e481928463 100644 (file)
@@ -1,55 +1,3 @@
-/*
- * Status LED driver based on GPIO access conventions of Linux
- *
- * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
- * Licensed under the GPL-2 or later.
- */
-
-#include <status_led.h>
-#include <asm/gpio.h>
-
-#ifndef CFG_GPIO_LED_INVERTED_TABLE
-#define CFG_GPIO_LED_INVERTED_TABLE {}
-#endif
-
-static led_id_t gpio_led_inv[] = CFG_GPIO_LED_INVERTED_TABLE;
-
-static int gpio_led_gpio_value(led_id_t mask, int state)
-{
-       int i, gpio_value = (state == CONFIG_LED_STATUS_ON);
-
-       for (i = 0; i < ARRAY_SIZE(gpio_led_inv); i++) {
-               if (gpio_led_inv[i] == mask)
-                       gpio_value = !gpio_value;
-       }
-
-       return gpio_value;
-}
-
-void __led_init(led_id_t mask, int state)
-{
-       int gpio_value;
-
-       if (gpio_request(mask, "gpio_led") != 0) {
-               printf("%s: failed requesting GPIO%lu!\n", __func__, mask);
-               return;
-       }
-
-       gpio_value = gpio_led_gpio_value(mask, state);
-       gpio_direction_output(mask, gpio_value);
-}
-
-void __led_set(led_id_t mask, int state)
-{
-       int gpio_value = gpio_led_gpio_value(mask, state);
-
-       gpio_set_value(mask, gpio_value);
-}
-
-void __led_toggle(led_id_t mask)
-{
-       gpio_set_value(mask, !gpio_get_value(mask));
-}
 
 #ifdef CONFIG_GPIO_LED_STUBS
 
diff --git a/drivers/misc/status_led.c b/drivers/misc/status_led.c
deleted file mode 100644 (file)
index 3b1baa4..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * (C) Copyright 2000-2003
- * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- */
-
-#include <status_led.h>
-#include <linux/types.h>
-
-/*
- * The purpose of this code is to signal the operational status of a
- * target which usually boots over the network; while running in
- * U-Boot, a status LED is blinking. As soon as a valid BOOTP reply
- * message has been received, the LED is turned off. The Linux
- * kernel, once it is running, will start blinking the LED again,
- * with another frequency.
- */
-
-/* ------------------------------------------------------------------------- */
-
-typedef struct {
-       led_id_t mask;
-       int state;
-       int period;
-       int cnt;
-} led_dev_t;
-
-led_dev_t led_dev[] = {
-       {       CONFIG_LED_STATUS_BIT,
-               CONFIG_LED_STATUS_STATE,
-               LED_STATUS_PERIOD,
-               0,
-       },
-#if defined(CONFIG_LED_STATUS1)
-       {       CONFIG_LED_STATUS_BIT1,
-               CONFIG_LED_STATUS_STATE1,
-               LED_STATUS_PERIOD1,
-               0,
-       },
-#endif
-#if defined(CONFIG_LED_STATUS2)
-       {       CONFIG_LED_STATUS_BIT2,
-               CONFIG_LED_STATUS_STATE2,
-               LED_STATUS_PERIOD2,
-               0,
-       },
-#endif
-#if defined(CONFIG_LED_STATUS3)
-       {       CONFIG_LED_STATUS_BIT3,
-               CONFIG_LED_STATUS_STATE3,
-               LED_STATUS_PERIOD3,
-               0,
-       },
-#endif
-#if defined(CONFIG_LED_STATUS4)
-       {       CONFIG_LED_STATUS_BIT4,
-               CONFIG_LED_STATUS_STATE4,
-               LED_STATUS_PERIOD4,
-               0,
-       },
-#endif
-#if defined(CONFIG_LED_STATUS5)
-       {       CONFIG_LED_STATUS_BIT5,
-               CONFIG_LED_STATUS_STATE5,
-               LED_STATUS_PERIOD5,
-               0,
-       },
-#endif
-};
-
-#define MAX_LED_DEV    (sizeof(led_dev)/sizeof(led_dev_t))
-
-static int status_led_init_done = 0;
-
-void status_led_init(void)
-{
-       led_dev_t *ld;
-       int i;
-
-       for (i = 0, ld = led_dev; i < MAX_LED_DEV; i++, ld++)
-               __led_init (ld->mask, ld->state);
-       status_led_init_done = 1;
-}
-
-void status_led_tick(ulong timestamp)
-{
-       led_dev_t *ld;
-       int i;
-
-       if (!status_led_init_done)
-               status_led_init();
-
-       for (i = 0, ld = led_dev; i < MAX_LED_DEV; i++, ld++) {
-
-               if (ld->state != CONFIG_LED_STATUS_BLINKING)
-                       continue;
-
-               if (++ld->cnt >= ld->period) {
-                       __led_toggle (ld->mask);
-                       ld->cnt -= ld->period;
-               }
-
-       }
-}
-
-void status_led_set(int led, int state)
-{
-       led_dev_t *ld;
-
-       if (led < 0 || led >= MAX_LED_DEV)
-               return;
-
-       if (!status_led_init_done)
-               status_led_init();
-
-       ld = &led_dev[led];
-
-       ld->state = state;
-       if (state == CONFIG_LED_STATUS_BLINKING) {
-               ld->cnt = 0;            /* always start with full period    */
-               state = CONFIG_LED_STATUS_ON;   /* always start with LED _ON_ */
-       }
-       __led_set (ld->mask, state);
-}
diff --git a/include/status_led.h b/include/status_led.h
deleted file mode 100644 (file)
index 1282022..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * (C) Copyright 2000-2004
- * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- */
-
-/*
- * The purpose of this code is to signal the operational status of a
- * target which usually boots over the network; while running in
- * PCBoot, a status LED is blinking. As soon as a valid BOOTP reply
- * message has been received, the LED is turned off. The Linux
- * kernel, once it is running, will start blinking the LED again,
- * with another frequency.
- */
-
-#ifndef _STATUS_LED_H_
-#define        _STATUS_LED_H_
-
-#ifdef CONFIG_LED_STATUS
-
-#define LED_STATUS_PERIOD      (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ)
-#ifdef CONFIG_LED_STATUS1
-#define LED_STATUS_PERIOD1     (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ1)
-#endif /* CONFIG_LED_STATUS1 */
-#ifdef CONFIG_LED_STATUS2
-#define LED_STATUS_PERIOD2     (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ2)
-#endif /* CONFIG_LED_STATUS2 */
-#ifdef CONFIG_LED_STATUS3
-#define LED_STATUS_PERIOD3     (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ3)
-#endif /* CONFIG_LED_STATUS3 */
-#ifdef CONFIG_LED_STATUS4
-#define LED_STATUS_PERIOD4     (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ4)
-#endif /* CONFIG_LED_STATUS4 */
-#ifdef CONFIG_LED_STATUS5
-#define LED_STATUS_PERIOD5     (CONFIG_SYS_HZ / CONFIG_LED_STATUS_FREQ5)
-#endif /* CONFIG_LED_STATUS5 */
-
-void status_led_init(void);
-void status_led_tick(unsigned long timestamp);
-void status_led_set(int led, int state);
-
-static inline void status_led_boot_blink(void)
-{
-#ifdef CONFIG_LED_STATUS_BOOT_ENABLE
-       status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
-#endif
-}
-
-/*****  MVS v1  **********************************************************/
-#if (defined(CONFIG_MVS) && CONFIG_MVS < 2)
-# define STATUS_LED_PAR                im_ioport.iop_pdpar
-# define STATUS_LED_DIR                im_ioport.iop_pddir
-# undef  STATUS_LED_ODR
-# define STATUS_LED_DAT                im_ioport.iop_pddat
-
-# define STATUS_LED_ACTIVE     1               /* LED on for bit == 1  */
-
-/*****  Someone else defines these  *************************************/
-#elif defined(STATUS_LED_PAR)
-  /*
-   * ADVICE: Define in your board configuration file rather than
-   * filling this file up with lots of custom board stuff.
-   */
-
-#elif defined(CONFIG_LED_STATUS_BOARD_SPECIFIC)
-/* led_id_t is unsigned long mask */
-typedef unsigned long led_id_t;
-
-extern void __led_toggle (led_id_t mask);
-extern void __led_init (led_id_t mask, int state);
-extern void __led_set (led_id_t mask, int state);
-void __led_blink(led_id_t mask, int freq);
-#else
-# error Status LED configuration missing
-#endif
-/************************************************************************/
-
-#ifndef CONFIG_LED_STATUS_BOARD_SPECIFIC
-# include <asm/status_led.h>
-#endif
-
-#else
-
-static inline void status_led_init(void) { }
-static inline void status_led_set(int led, int state) { }
-static inline void status_led_boot_blink(void) { }
-
-#endif /* CONFIG_LED_STATUS    */
-
-/*
- * Coloured LEDs API
- */
-#ifndef        __ASSEMBLY__
-void coloured_LED_init(void);
-void red_led_on(void);
-void red_led_off(void);
-void green_led_on(void);
-void green_led_off(void);
-void yellow_led_on(void);
-void yellow_led_off(void);
-void blue_led_on(void);
-void blue_led_off(void);
-#else
-       .extern LED_init
-       .extern red_led_on
-       .extern red_led_off
-       .extern yellow_led_on
-       .extern yellow_led_off
-       .extern green_led_on
-       .extern green_led_off
-       .extern blue_led_on
-       .extern blue_led_off
-#endif
-
-#endif /* _STATUS_LED_H_       */