int acp_sof_dsp_run(struct snd_sof_dev *sdev)
 {
+       struct acp_dev_data *adata = sdev->pdata->hw_pdata;
        const struct sof_amd_acp_desc *desc = get_chip_info(sdev->pdata);
        int val;
 
        dev_dbg(sdev->dev, "ACP_DSP0_RUNSTALL : 0x%0x\n", val);
 
        /* Some platforms won't support fusion DSP,keep offset zero for no support */
-       if (desc->fusion_dsp_offset) {
+       if (desc->fusion_dsp_offset && adata->enable_fw_debug) {
                snd_sof_dsp_write(sdev, ACP_DSP_BAR, desc->fusion_dsp_offset, ACP_DSP_RUN);
                val = snd_sof_dsp_read(sdev, ACP_DSP_BAR, desc->fusion_dsp_offset);
                dev_dbg(sdev->dev, "ACP_DSP0_FUSION_RUNSTALL : 0x%0x\n", val);
 
 
 #define SECURED_FIRMWARE 1
 
+static bool enable_fw_debug;
+module_param(enable_fw_debug, bool, 0444);
+MODULE_PARM_DESC(enable_fw_debug, "Enable Firmware debug");
+
 const struct dmi_system_id acp_sof_quirk_table[] = {
        {
                /* Valve Jupiter device */
                dev_dbg(sdev->dev, "fw_code_bin:%s, fw_data_bin:%s\n", adata->fw_code_bin,
                        adata->fw_data_bin);
        }
+       adata->enable_fw_debug = enable_fw_debug;
        acp_memory_init(sdev);
 
        acp_dsp_stream_init(sdev);
 
        struct acp_dsp_stream *dtrace_stream;
        struct pci_dev *smn_dev;
        struct acp_dsp_stream *probe_stream;
+       bool enable_fw_debug;
 };
 
 void memcpy_to_scratch(struct snd_sof_dev *sdev, u32 offset, unsigned int *src, size_t bytes);