]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
drivers: sysreset: Add sysreset op that can take arguments
authorVaradarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
Wed, 21 Jan 2026 06:39:17 +0000 (12:09 +0530)
committerCasey Connolly <casey.connolly@linaro.org>
Mon, 27 Apr 2026 10:38:44 +0000 (12:38 +0200)
Add a 'request_arg' op to struct sysreset_ops to enable sysreset drivers
to receive arguments given to the 'reset' command. Process the
request_arg() op before the usual request() op.

Reviewed-by: Casey Connolly <casey.connolly@linaro.org>
Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com>
Signed-off-by: Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Link: https://patch.msgid.link/20260121063920.1500293-3-varadarajan.narayanan@oss.qualcomm.com
Signed-off-by: Casey Connolly <casey.connolly@linaro.org>
drivers/sysreset/Kconfig
drivers/sysreset/sysreset-uclass.c
include/sysreset.h

index 16ef434a8d9c211484c390cd806c014cf70fc0d1..f589ad154186e5aa8fead51708d15186d3123d32 100644 (file)
@@ -49,6 +49,14 @@ config SYSRESET_CMD_RESET
        help
          Enable sysreset implementation of the reset command.
 
+config SYSRESET_CMD_RESET_ARGS
+       bool "Enable reset command to take arguments"
+       help
+         Pass on the arguments received by the 'reset' command to the
+         sysreset driver(s). The sysreset driver(s) may make use of the
+         additional arguments for implementing arch/board specific
+         functionality.
+
 if CMD_POWEROFF
 
 config SYSRESET_CMD_POWEROFF
index 536ac7271427bdc90ed7e9ab907d656618d26a81..f25e09e9cd06621b60e337a2ff9e30b9f12e80bb 100644 (file)
@@ -32,6 +32,18 @@ int sysreset_request(struct udevice *dev, enum sysreset_t type)
        return ops->request(dev, type);
 }
 
+#if IS_ENABLED(CONFIG_SYSRESET_CMD_RESET_ARGS)
+int sysreset_request_arg(struct udevice *dev, int argc, char * const argv[])
+{
+       struct sysreset_ops *ops = sysreset_get_ops(dev);
+
+       if (!ops->request_arg)
+               return -ENOSYS;
+
+       return ops->request_arg(dev, argc, argv);
+}
+#endif /* CONFIG_SYSRESET_CMD_RESET_ARGS */
+
 int sysreset_get_status(struct udevice *dev, char *buf, int size)
 {
        struct sysreset_ops *ops = sysreset_get_ops(dev);
@@ -71,6 +83,26 @@ int sysreset_walk(enum sysreset_t type)
        return ret;
 }
 
+#if IS_ENABLED(CONFIG_SYSRESET_CMD_RESET_ARGS)
+int sysreset_walk_arg(int argc, char * const argv[])
+{
+       struct udevice *dev;
+       int ret = -ENOSYS;
+
+       while (ret != -EINPROGRESS && ret != -EPROTONOSUPPORT) {
+               for (uclass_first_device(UCLASS_SYSRESET, &dev);
+                    dev;
+                    uclass_next_device(&dev)) {
+                       ret = sysreset_request_arg(dev, argc, argv);
+                       if (ret == -EINPROGRESS || ret == -EPROTONOSUPPORT)
+                               break;
+               }
+       }
+
+       return ret;
+}
+#endif /* CONFIG_SYSRESET_CMD_RESET_ARGS */
+
 int sysreset_get_last_walk(void)
 {
        struct udevice *dev;
@@ -132,6 +164,11 @@ int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
        printf("resetting ...\n");
        mdelay(100);
 
+#if IS_ENABLED(CONFIG_SYSRESET_CMD_RESET_ARGS)
+       if (argc > 1 && sysreset_walk_arg(argc, argv) == -EINPROGRESS)
+               return 0;
+#endif
+
        sysreset_walk_halt(reset_type);
 
        return 0;
index ff20abdeed3cfd7d7dde8a3891ca156f04beb8b8..d1cc9ebc542a14fc178b50eeac371269597c4295 100644 (file)
@@ -43,6 +43,24 @@ struct sysreset_ops {
         * (in which case this method will not actually return)
         */
        int (*request)(struct udevice *dev, enum sysreset_t type);
+
+       /**
+        * @request_arg: Reset handler implementations that might need to process
+        *               arguments given to the 'reset' command.
+        *
+        * Note that this function may return before the reset takes effect.
+        *
+        * @dev:        Device to be used for system reset
+        * @argc:       No. of items in @argv
+        * @argv:       Arguments given to 'reset' command
+        * Return:
+        * -EINPROGRESS         if the reset has started and will complete soon
+        * -EPROTONOSUPPORT     if not supported by this device
+        * 0                    if the reset has already happened
+        * (in which case this method will not actually return)
+        */
+       int (*request_arg)(struct udevice *dev, int argc, char * const argv[]);
+
        /**
         * @get_status: get printable reset status information
         *