ASoC: SOF: Intel: hda: Add separate ops for ipc_dump for IPC4
authorPeter Ujfalusi <peter.ujfalusi@linux.intel.com>
Fri, 23 Sep 2022 13:36:12 +0000 (16:36 +0300)
committerMark Brown <broonie@kernel.org>
Fri, 23 Sep 2022 13:53:18 +0000 (14:53 +0100)
The use of the IPC registers are different between IPC3 and IPC4.
The ipc_dump needs to use different prints depending on the used IPC
protocol.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Rander Wang <rander.wang@intel.com>
Link: https://lore.kernel.org/r/20220923133616.26267-3-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sof/intel/apl.c
sound/soc/sof/intel/hda.c
sound/soc/sof/intel/hda.h

index 295df44..37d12e8 100644 (file)
@@ -45,6 +45,9 @@ int sof_apl_ops_init(struct snd_sof_dev *sdev)
 
                /* ipc */
                sof_apl_ops.send_msg    = hda_dsp_ipc_send_msg;
+
+               /* debug */
+               sof_apl_ops.ipc_dump    = hda_ipc_dump;
        }
 
        if (sdev->pdata->ipc_type == SOF_INTEL_IPC4) {
@@ -64,6 +67,9 @@ int sof_apl_ops_init(struct snd_sof_dev *sdev)
 
                /* ipc */
                sof_apl_ops.send_msg    = hda_dsp_ipc4_send_msg;
+
+               /* debug */
+               sof_apl_ops.ipc_dump    = hda_ipc4_dump;
        }
 
        /* set DAI driver ops */
@@ -72,7 +78,6 @@ int sof_apl_ops_init(struct snd_sof_dev *sdev)
        /* debug */
        sof_apl_ops.debug_map   = apl_dsp_debugfs;
        sof_apl_ops.debug_map_count     = ARRAY_SIZE(apl_dsp_debugfs);
-       sof_apl_ops.ipc_dump    = hda_ipc_dump;
 
        /* firmware run */
        sof_apl_ops.run = hda_dsp_cl_boot_firmware;
index f7068a7..ca648d2 100644 (file)
@@ -662,6 +662,24 @@ void hda_ipc_dump(struct snd_sof_dev *sdev)
                hipcie, hipct, hipcctl);
 }
 
+void hda_ipc4_dump(struct snd_sof_dev *sdev)
+{
+       u32 hipci, hipcie, hipct, hipcte, hipcctl;
+
+       hda_ipc_irq_dump(sdev);
+
+       hipci = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCI);
+       hipcie = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCIE);
+       hipct = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCT);
+       hipcte = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCTE);
+       hipcctl = snd_sof_dsp_read(sdev, HDA_DSP_BAR, HDA_DSP_REG_HIPCCTL);
+
+       /* dump the IPC regs */
+       /* TODO: parse the raw msg */
+       dev_err(sdev->dev, "Host IPC initiator: %#x|%#x, target: %#x|%#x, ctl: %#x\n",
+               hipci, hipcie, hipct, hipcte, hipcctl);
+}
+
 static int hda_init(struct snd_sof_dev *sdev)
 {
        struct hda_bus *hbus;
index 2013a94..c3a9f89 100644 (file)
@@ -851,6 +851,7 @@ irqreturn_t cnl_ipc4_irq_thread(int irq, void *context);
 int cnl_ipc4_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg);
 irqreturn_t hda_dsp_ipc4_irq_thread(int irq, void *context);
 int hda_dsp_ipc4_send_msg(struct snd_sof_dev *sdev, struct snd_sof_ipc_msg *msg);
+void hda_ipc4_dump(struct snd_sof_dev *sdev);
 extern struct sdw_intel_ops sdw_callback;
 
 #endif