platform/x86: ISST: Add IOCTL default callback
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Sat, 11 Feb 2023 06:32:48 +0000 (22:32 -0800)
committerHans de Goede <hdegoede@redhat.com>
Tue, 7 Mar 2023 11:08:30 +0000 (12:08 +0100)
The common IOCTL handler has a predefined list of IOCTLs it can
handle. There is no default handler, if there is no match.

Allow a client driver to define their own version of default IOCTL
callback. In this way the default handling is passed to the client
drivers to handle.

With the introduction of TPMI target, IOCTL list is extended. The
additional TPMI specific IOCTLs will be passed to the TPMI client
driver default IOCTL handler.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Link: https://lore.kernel.org/r/20230211063257.311746-4-srinivas.pandruvada@linux.intel.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
drivers/platform/x86/intel/speed_select_if/isst_if_common.h

index 0954a04623edfff38d91cde7f22d7d2d3464e7f2..cdf0501f4e4fb1cc10502ac86c39c7150f3359d7 100644 (file)
@@ -588,6 +588,7 @@ static long isst_if_def_ioctl(struct file *file, unsigned int cmd,
        struct isst_if_cmd_cb cmd_cb;
        struct isst_if_cmd_cb *cb;
        long ret = -ENOTTY;
+       int i;
 
        switch (cmd) {
        case ISST_IF_GET_PLATFORM_INFO:
@@ -616,6 +617,16 @@ static long isst_if_def_ioctl(struct file *file, unsigned int cmd,
                ret = isst_if_exec_multi_cmd(argp, &cmd_cb);
                break;
        default:
+               for (i = 0; i < ISST_IF_DEV_MAX; ++i) {
+                       struct isst_if_cmd_cb *cb = &punit_callbacks[i];
+                       int ret;
+
+                       if (cb->def_ioctl) {
+                               ret = cb->def_ioctl(file, cmd, arg);
+                               if (!ret)
+                                       return ret;
+                       }
+               }
                break;
        }
 
index 967c338e83c5825e6764bcb4a4075f5be2ae9a41..34a172e5c82c8d132a7f35d2509baae5abae4c3d 100644 (file)
@@ -48,6 +48,8 @@
  *             response to user ioctl buffer. The "resume" argument
  *             can be used to avoid storing the command for replay
  *             during system resume
+ * @def_ioctl: Default IOCTL handler callback, if there is no match in
+ *             the existing list of IOCTL handled by the common handler.
  *
  * This structure is used to register an handler for IOCTL. To avoid
  * code duplication common code handles all the IOCTL command read/write
@@ -58,8 +60,10 @@ struct isst_if_cmd_cb {
        int registered;
        int cmd_size;
        int offset;
+
        struct module *owner;
        long (*cmd_callback)(u8 *ptr, int *write_only, int resume);
+       long (*def_ioctl)(struct file *file, unsigned int cmd, unsigned long arg);
 };
 
 /* Internal interface functions */