OSDN Git Service

drm/amd/display: Fix static checker warnings on tracebuff_fb
authorLeo (Hanghong) Ma <hanghong.ma@amd.com>
Mon, 15 Mar 2021 22:31:55 +0000 (18:31 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 9 Apr 2021 20:48:02 +0000 (16:48 -0400)
[Why]
Static analysis on linux-next has found a potential null pointer
dereference;

[How]
Refactor the function, add ASSERT and remove the unnecessary check.

Signed-off-by: Leo (Hanghong) Ma <hanghong.ma@amd.com>
Reviewed-by: Harry Wentland <Harry.Wentland@amd.com>
Acked-by: Anson Jacob <Anson.Jacob@amd.com>
Tested-by: Dan Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c

index 8ba0a9e..743d3b7 100644 (file)
@@ -415,6 +415,12 @@ enum dmub_status dmub_srv_hw_init(struct dmub_srv *dmub,
        if (!dmub->sw_init)
                return DMUB_STATUS_INVALID;
 
+       if (!inst_fb || !stack_fb || !data_fb || !bios_fb || !mail_fb ||
+               !tracebuff_fb || !fw_state_fb || !scratch_mem_fb) {
+               ASSERT(0);
+               return DMUB_STATUS_INVALID;
+       }
+
        dmub->fb_base = params->fb_base;
        dmub->fb_offset = params->fb_offset;
        dmub->psp_version = params->psp_version;
@@ -422,97 +428,85 @@ enum dmub_status dmub_srv_hw_init(struct dmub_srv *dmub,
        if (dmub->hw_funcs.reset)
                dmub->hw_funcs.reset(dmub);
 
-       if (inst_fb && data_fb) {
-               cw0.offset.quad_part = inst_fb->gpu_addr;
-               cw0.region.base = DMUB_CW0_BASE;
-               cw0.region.top = cw0.region.base + inst_fb->size - 1;
-
-               cw1.offset.quad_part = stack_fb->gpu_addr;
-               cw1.region.base = DMUB_CW1_BASE;
-               cw1.region.top = cw1.region.base + stack_fb->size - 1;
-
-               if (params->load_inst_const && dmub->hw_funcs.backdoor_load) {
-                   /**
-                    * Read back all the instruction memory so we don't hang the
-                    * DMCUB when backdoor loading if the write from x86 hasn't been
-                    * flushed yet. This only occurs in backdoor loading.
-                    */
-                   dmub_flush_buffer_mem(inst_fb);
-                   dmub->hw_funcs.backdoor_load(dmub, &cw0, &cw1);
-               }
-
-       }
-
-       if (inst_fb && data_fb && bios_fb && mail_fb && tracebuff_fb &&
-           fw_state_fb && scratch_mem_fb) {
-               cw2.offset.quad_part = data_fb->gpu_addr;
-               cw2.region.base = DMUB_CW0_BASE + inst_fb->size;
-               cw2.region.top = cw2.region.base + data_fb->size;
+       cw0.offset.quad_part = inst_fb->gpu_addr;
+       cw0.region.base = DMUB_CW0_BASE;
+       cw0.region.top = cw0.region.base + inst_fb->size - 1;
 
-               cw3.offset.quad_part = bios_fb->gpu_addr;
-               cw3.region.base = DMUB_CW3_BASE;
-               cw3.region.top = cw3.region.base + bios_fb->size;
-
-               cw4.offset.quad_part = mail_fb->gpu_addr;
-               cw4.region.base = DMUB_CW4_BASE;
-               cw4.region.top = cw4.region.base + mail_fb->size;
+       cw1.offset.quad_part = stack_fb->gpu_addr;
+       cw1.region.base = DMUB_CW1_BASE;
+       cw1.region.top = cw1.region.base + stack_fb->size - 1;
 
+       if (params->load_inst_const && dmub->hw_funcs.backdoor_load) {
                /**
-                * Doubled the mailbox region to accomodate inbox and outbox.
-                * Note: Currently, currently total mailbox size is 16KB. It is split
-                * equally into 8KB between inbox and outbox. If this config is
-                * changed, then uncached base address configuration of outbox1
-                * has to be updated in funcs->setup_out_mailbox.
+                * Read back all the instruction memory so we don't hang the
+                * DMCUB when backdoor loading if the write from x86 hasn't been
+                * flushed yet. This only occurs in backdoor loading.
                 */
-               inbox1.base = cw4.region.base;
-               inbox1.top = cw4.region.base + DMUB_RB_SIZE;
-               outbox1.base = inbox1.top;
-               outbox1.top = cw4.region.top;
+               dmub_flush_buffer_mem(inst_fb);
+               dmub->hw_funcs.backdoor_load(dmub, &cw0, &cw1);
+       }
 
-               cw5.offset.quad_part = tracebuff_fb->gpu_addr;
-               cw5.region.base = DMUB_CW5_BASE;
-               cw5.region.top = cw5.region.base + tracebuff_fb->size;
+       cw2.offset.quad_part = data_fb->gpu_addr;
+       cw2.region.base = DMUB_CW0_BASE + inst_fb->size;
+       cw2.region.top = cw2.region.base + data_fb->size;
 
-               outbox0.base = DMUB_REGION5_BASE + TRACE_BUFFER_ENTRY_OFFSET;
-               outbox0.top = outbox0.base + tracebuff_fb->size - TRACE_BUFFER_ENTRY_OFFSET;
+       cw3.offset.quad_part = bios_fb->gpu_addr;
+       cw3.region.base = DMUB_CW3_BASE;
+       cw3.region.top = cw3.region.base + bios_fb->size;
 
+       cw4.offset.quad_part = mail_fb->gpu_addr;
+       cw4.region.base = DMUB_CW4_BASE;
+       cw4.region.top = cw4.region.base + mail_fb->size;
 
-               cw6.offset.quad_part = fw_state_fb->gpu_addr;
-               cw6.region.base = DMUB_CW6_BASE;
-               cw6.region.top = cw6.region.base + fw_state_fb->size;
+       /**
+        * Doubled the mailbox region to accomodate inbox and outbox.
+        * Note: Currently, currently total mailbox size is 16KB. It is split
+        * equally into 8KB between inbox and outbox. If this config is
+        * changed, then uncached base address configuration of outbox1
+        * has to be updated in funcs->setup_out_mailbox.
+        */
+       inbox1.base = cw4.region.base;
+       inbox1.top = cw4.region.base + DMUB_RB_SIZE;
+       outbox1.base = inbox1.top;
+       outbox1.top = cw4.region.top;
 
-               dmub->fw_state = fw_state_fb->cpu_addr;
+       cw5.offset.quad_part = tracebuff_fb->gpu_addr;
+       cw5.region.base = DMUB_CW5_BASE;
+       cw5.region.top = cw5.region.base + tracebuff_fb->size;
 
-               dmub->scratch_mem_fb = *scratch_mem_fb;
+       outbox0.base = DMUB_REGION5_BASE + TRACE_BUFFER_ENTRY_OFFSET;
+       outbox0.top = outbox0.base + tracebuff_fb->size - TRACE_BUFFER_ENTRY_OFFSET;
 
-               if (dmub->hw_funcs.setup_windows)
-                       dmub->hw_funcs.setup_windows(dmub, &cw2, &cw3, &cw4,
-                                                    &cw5, &cw6);
+       cw6.offset.quad_part = fw_state_fb->gpu_addr;
+       cw6.region.base = DMUB_CW6_BASE;
+       cw6.region.top = cw6.region.base + fw_state_fb->size;
 
-               if (dmub->hw_funcs.setup_outbox0)
-                       dmub->hw_funcs.setup_outbox0(dmub, &outbox0);
+       dmub->fw_state = fw_state_fb->cpu_addr;
 
-               if (dmub->hw_funcs.setup_mailbox)
-                       dmub->hw_funcs.setup_mailbox(dmub, &inbox1);
-               if (dmub->hw_funcs.setup_out_mailbox)
-                       dmub->hw_funcs.setup_out_mailbox(dmub, &outbox1);
-       }
+       dmub->scratch_mem_fb = *scratch_mem_fb;
 
-       if (mail_fb) {
-               dmub_memset(&rb_params, 0, sizeof(rb_params));
-               rb_params.ctx = dmub;
-               rb_params.base_address = mail_fb->cpu_addr;
-               rb_params.capacity = DMUB_RB_SIZE;
+       if (dmub->hw_funcs.setup_windows)
+               dmub->hw_funcs.setup_windows(dmub, &cw2, &cw3, &cw4, &cw5, &cw6);
 
-               dmub_rb_init(&dmub->inbox1_rb, &rb_params);
+       if (dmub->hw_funcs.setup_outbox0)
+               dmub->hw_funcs.setup_outbox0(dmub, &outbox0);
 
-               // Initialize outbox1 ring buffer
-               rb_params.ctx = dmub;
-               rb_params.base_address = (void *) ((uint8_t *) (mail_fb->cpu_addr) + DMUB_RB_SIZE);
-               rb_params.capacity = DMUB_RB_SIZE;
-               dmub_rb_init(&dmub->outbox1_rb, &rb_params);
+       if (dmub->hw_funcs.setup_mailbox)
+               dmub->hw_funcs.setup_mailbox(dmub, &inbox1);
+       if (dmub->hw_funcs.setup_out_mailbox)
+               dmub->hw_funcs.setup_out_mailbox(dmub, &outbox1);
 
-       }
+       dmub_memset(&rb_params, 0, sizeof(rb_params));
+       rb_params.ctx = dmub;
+       rb_params.base_address = mail_fb->cpu_addr;
+       rb_params.capacity = DMUB_RB_SIZE;
+       dmub_rb_init(&dmub->inbox1_rb, &rb_params);
+
+       // Initialize outbox1 ring buffer
+       rb_params.ctx = dmub;
+       rb_params.base_address = (void *) ((uint8_t *) (mail_fb->cpu_addr) + DMUB_RB_SIZE);
+       rb_params.capacity = DMUB_RB_SIZE;
+       dmub_rb_init(&dmub->outbox1_rb, &rb_params);
 
        dmub_memset(&outbox0_rb_params, 0, sizeof(outbox0_rb_params));
        outbox0_rb_params.ctx = dmub;