ASoC: SOF: ipc: Introduce SOF_IPC_GLB_TEST_MSG IPC command
authorRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Mon, 3 Jun 2019 16:18:19 +0000 (11:18 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 3 Jun 2019 17:42:27 +0000 (18:42 +0100)
Add a new class of IPC command along with the first
test type, IPC_FLOOD, which will be used for flooding the DSP
with IPCs.

Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/sof/header.h
sound/soc/sof/ipc.c

index ab5862d..12867bb 100644 (file)
@@ -49,6 +49,7 @@
 #define SOF_IPC_GLB_DAI_MSG                    SOF_GLB_TYPE(0x8U)
 #define SOF_IPC_GLB_TRACE_MSG                  SOF_GLB_TYPE(0x9U)
 #define SOF_IPC_GLB_GDB_DEBUG                   SOF_GLB_TYPE(0xAU)
+#define SOF_IPC_GLB_TEST_MSG                   SOF_GLB_TYPE(0xBU)
 
 /*
  * DSP Command Message Types
 #define SOF_IPC_STREAM_VORBIS_PARAMS           SOF_CMD_TYPE(0x010)
 #define SOF_IPC_STREAM_VORBIS_FREE             SOF_CMD_TYPE(0x011)
 
-/* trace and debug */
+/* trace */
 #define SOF_IPC_TRACE_DMA_PARAMS               SOF_CMD_TYPE(0x001)
 #define SOF_IPC_TRACE_DMA_POSITION             SOF_CMD_TYPE(0x002)
 #define SOF_IPC_TRACE_DMA_PARAMS_EXT           SOF_CMD_TYPE(0x003)
 
+/* debug */
+#define SOF_IPC_TEST_IPC_FLOOD                  SOF_CMD_TYPE(0x001)
+
 /* Get message component id */
 #define SOF_IPC_MESSAGE_ID(x)                  ((x) & 0xffff)
 
index 2414640..558b596 100644 (file)
@@ -175,6 +175,15 @@ static void ipc_log_header(struct device *dev, u8 *text, u32 cmd)
                break;
        case SOF_IPC_GLB_TRACE_MSG:
                str = "GLB_TRACE_MSG"; break;
+       case SOF_IPC_GLB_TEST_MSG:
+               str = "GLB_TEST_MSG";
+               switch (type) {
+               case SOF_IPC_TEST_IPC_FLOOD:
+                       str2 = "IPC_FLOOD"; break;
+               default:
+                       str2 = "unknown type"; break;
+               }
+               break;
        default:
                str = "unknown GLB command"; break;
        }