habanalabs: fix etr asid configuration
authorOded Gabbay <ogabbay@kernel.org>
Tue, 30 Nov 2021 20:32:13 +0000 (22:32 +0200)
committerOded Gabbay <ogabbay@kernel.org>
Sun, 26 Dec 2021 06:59:08 +0000 (08:59 +0200)
Pass the user's context pointer into the etr configuration function
to extract its ASID.

Using the compute_ctx pointer is an error as it is just an indication
of whether a user has opened the compute device.

Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/common/context.c
drivers/misc/habanalabs/common/device.c
drivers/misc/habanalabs/common/habanalabs.h
drivers/misc/habanalabs/common/habanalabs_ioctl.c
drivers/misc/habanalabs/gaudi/gaudiP.h
drivers/misc/habanalabs/gaudi/gaudi_coresight.c
drivers/misc/habanalabs/goya/goyaP.h
drivers/misc/habanalabs/goya/goya_coresight.c

index 8291151948ef8bda8be26e7b8b0fc99cec29d328..8de1217b2ed254d5f705b2caaf5547346aa9c8fd 100644 (file)
@@ -99,7 +99,7 @@ static void hl_ctx_fini(struct hl_ctx *ctx)
                 * related to the stopped engines. Hence stop it explicitly.
                 */
                if (hdev->in_debug)
-                       hl_device_set_debug_mode(hdev, false);
+                       hl_device_set_debug_mode(hdev, ctx, false);
 
                hdev->asic_funcs->ctx_fini(ctx);
                hl_cb_va_pool_fini(ctx);
index db4168f35c185305e7ba65027afa88fcc07a1266..bc5736ae6b709a79f423437b2015d8e0d3d858ce 100644 (file)
@@ -622,7 +622,7 @@ int hl_device_utilization(struct hl_device *hdev, u32 *utilization)
        return 0;
 }
 
-int hl_device_set_debug_mode(struct hl_device *hdev, bool enable)
+int hl_device_set_debug_mode(struct hl_device *hdev, struct hl_ctx *ctx, bool enable)
 {
        int rc = 0;
 
@@ -637,7 +637,7 @@ int hl_device_set_debug_mode(struct hl_device *hdev, bool enable)
                }
 
                if (!hdev->hard_reset_pending)
-                       hdev->asic_funcs->halt_coresight(hdev);
+                       hdev->asic_funcs->halt_coresight(hdev, ctx);
 
                hdev->in_debug = 0;
 
index 0ad08fdc89eadbae37f380789d011af7939e4646..670fad9b4ca05a3c0d3dc68260481475a3d4d749 100644 (file)
@@ -1288,7 +1288,7 @@ struct hl_asic_funcs {
        int (*send_heartbeat)(struct hl_device *hdev);
        void (*set_clock_gating)(struct hl_device *hdev);
        void (*disable_clock_gating)(struct hl_device *hdev);
-       int (*debug_coresight)(struct hl_device *hdev, void *data);
+       int (*debug_coresight)(struct hl_device *hdev, struct hl_ctx *ctx, void *data);
        bool (*is_device_idle)(struct hl_device *hdev, u64 *mask_arr,
                                        u8 mask_len, struct seq_file *s);
        int (*non_hard_reset_late_init)(struct hl_device *hdev);
@@ -1303,7 +1303,7 @@ struct hl_asic_funcs {
        int (*init_iatu)(struct hl_device *hdev);
        u32 (*rreg)(struct hl_device *hdev, u32 reg);
        void (*wreg)(struct hl_device *hdev, u32 reg, u32 val);
-       void (*halt_coresight)(struct hl_device *hdev);
+       void (*halt_coresight)(struct hl_device *hdev, struct hl_ctx *ctx);
        int (*ctx_init)(struct hl_ctx *ctx);
        void (*ctx_fini)(struct hl_ctx *ctx);
        int (*get_clk_rate)(struct hl_device *hdev, u32 *cur_clk, u32 *max_clk);
@@ -2867,7 +2867,7 @@ int hl_device_open_ctrl(struct inode *inode, struct file *filp);
 bool hl_device_operational(struct hl_device *hdev,
                enum hl_device_status *status);
 enum hl_device_status hl_device_status(struct hl_device *hdev);
-int hl_device_set_debug_mode(struct hl_device *hdev, bool enable);
+int hl_device_set_debug_mode(struct hl_device *hdev, struct hl_ctx *ctx, bool enable);
 int hl_hw_queues_create(struct hl_device *hdev);
 void hl_hw_queues_destroy(struct hl_device *hdev);
 int hl_hw_queue_send_cb_no_cmpl(struct hl_device *hdev, u32 hw_queue_id,
index 6c7339978bae33f723ea2201a65381b08be8c7ab..9210114beefebe560b3c0158799604f72e8f16d9 100644 (file)
@@ -158,7 +158,7 @@ static int hw_idle(struct hl_device *hdev, struct hl_info_args *args)
                min((size_t) max_size, sizeof(hw_idle))) ? -EFAULT : 0;
 }
 
-static int debug_coresight(struct hl_device *hdev, struct hl_debug_args *args)
+static int debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, struct hl_debug_args *args)
 {
        struct hl_debug_params *params;
        void *input = NULL, *output = NULL;
@@ -200,7 +200,7 @@ static int debug_coresight(struct hl_device *hdev, struct hl_debug_args *args)
                params->output_size = args->output_size;
        }
 
-       rc = hdev->asic_funcs->debug_coresight(hdev, params);
+       rc = hdev->asic_funcs->debug_coresight(hdev, ctx, params);
        if (rc) {
                dev_err(hdev->dev,
                        "debug coresight operation failed %d\n", rc);
@@ -738,13 +738,14 @@ static int hl_debug_ioctl(struct hl_fpriv *hpriv, void *data)
                                "Rejecting debug configuration request because device not in debug mode\n");
                        return -EFAULT;
                }
-               args->input_size =
-                       min(args->input_size, hl_debug_struct_size[args->op]);
-               rc = debug_coresight(hdev, args);
+               args->input_size = min(args->input_size, hl_debug_struct_size[args->op]);
+               rc = debug_coresight(hdev, hpriv->ctx, args);
                break;
+
        case HL_DEBUG_OP_SET_MODE:
-               rc = hl_device_set_debug_mode(hdev, (bool) args->enable);
+               rc = hl_device_set_debug_mode(hdev, hpriv->ctx, (bool) args->enable);
                break;
+
        default:
                dev_err(hdev->dev, "Invalid request %d\n", args->op);
                rc = -ENOTTY;
index f325e36a71e615d29229f3ac58f8b17c5df4afd3..8ac16a9b7d1593602249a8660a4f9445faeee7fc 100644 (file)
@@ -357,8 +357,8 @@ void gaudi_init_security(struct hl_device *hdev);
 void gaudi_ack_protection_bits_errors(struct hl_device *hdev);
 void gaudi_add_device_attr(struct hl_device *hdev,
                        struct attribute_group *dev_attr_grp);
-int gaudi_debug_coresight(struct hl_device *hdev, void *data);
-void gaudi_halt_coresight(struct hl_device *hdev);
+int gaudi_debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, void *data);
+void gaudi_halt_coresight(struct hl_device *hdev, struct hl_ctx *ctx);
 void gaudi_mmu_prepare_reg(struct hl_device *hdev, u64 reg, u32 asid);
 
 #endif /* GAUDIP_H_ */
index 5349c1be13f98898fa19fcb2e760f4ac4c76b338..08108f5fed674872846132ace7f4f3fd5940be03 100644 (file)
@@ -848,7 +848,7 @@ static int gaudi_config_spmu(struct hl_device *hdev,
        return 0;
 }
 
-int gaudi_debug_coresight(struct hl_device *hdev, void *data)
+int gaudi_debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, void *data)
 {
        struct hl_debug_params *params = data;
        int rc = 0;
@@ -887,7 +887,7 @@ int gaudi_debug_coresight(struct hl_device *hdev, void *data)
        return rc;
 }
 
-void gaudi_halt_coresight(struct hl_device *hdev)
+void gaudi_halt_coresight(struct hl_device *hdev, struct hl_ctx *ctx)
 {
        struct hl_debug_params params = {};
        int i, rc;
index f0c3c6df04d53de555d26d0534ef9d79c155e2c0..3740fd25bf843c1d4302b5ceb312a04d160125f3 100644 (file)
@@ -220,8 +220,8 @@ void goya_set_pll_profile(struct hl_device *hdev, enum hl_pll_frequency freq);
 void goya_add_device_attr(struct hl_device *hdev,
                        struct attribute_group *dev_attr_grp);
 int goya_cpucp_info_get(struct hl_device *hdev);
-int goya_debug_coresight(struct hl_device *hdev, void *data);
-void goya_halt_coresight(struct hl_device *hdev);
+int goya_debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, void *data);
+void goya_halt_coresight(struct hl_device *hdev, struct hl_ctx *ctx);
 
 int goya_suspend(struct hl_device *hdev);
 int goya_resume(struct hl_device *hdev);
index c55c100fdd24b7e88174b16e6ba0990628d122e8..2c5133cfae6597bb75931e4e823f77c27c7a05a0 100644 (file)
@@ -652,7 +652,7 @@ static int goya_config_spmu(struct hl_device *hdev,
        return 0;
 }
 
-int goya_debug_coresight(struct hl_device *hdev, void *data)
+int goya_debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, void *data)
 {
        struct hl_debug_params *params = data;
        int rc = 0;
@@ -691,7 +691,7 @@ int goya_debug_coresight(struct hl_device *hdev, void *data)
        return rc;
 }
 
-void goya_halt_coresight(struct hl_device *hdev)
+void goya_halt_coresight(struct hl_device *hdev, struct hl_ctx *ctx)
 {
        struct hl_debug_params params = {};
        int i, rc;