Project import generated by Copybara.
GitOrigin-RevId: abbc95b6c8806446e86dc701509e6afbda80f8e3
diff --git a/common/cmd_leds_state.c b/common/cmd_leds_state.c
new file mode 100644
index 0000000..0288126
--- /dev/null
+++ b/common/cmd_leds_state.c
@@ -0,0 +1,38 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * Copyright (c) 2019 Amlogic, Inc. All rights reserved.
+ */
+
+#include <common.h>
+#include <config.h>
+#include <command.h>
+#include <asm/arch/mailbox.h>
+#include "amlogic/leds_state.h"
+
+int32_t do_leds_state(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+{
+ uint32_t data[12];
+ uint32_t rev_data, i, ret;
+
+ if (argc < 2)
+ return CMD_RET_USAGE;
+ for (i = 1; i < argc; i++)
+ data[i-1] = (u32)simple_strtoul(argv[i], NULL, 10);
+ ret = scpi_send_data(AOCPU_REE_CHANNEL, 0xF7, data, 4*(argc-1), &rev_data, 0);
+ if (ret != 0) {
+ printf("communication failed\n");
+ return -EINVAL;
+ }
+
+ return 0;
+}
+
+#define BLINK ""
+
+U_BOOT_CMD(
+ leds_state, 12, 1, do_leds_state,
+ "manage amlogic LEDs",
+ "<led_label> on|off|toggle" BLINK "\tChange LED state\n"
+ "led [<led_label>\tGet LED state\n"
+ "led list\t\tshow a list of LEDs\n"
+);