summaryrefslogtreecommitdiff
path: root/sound/soc/fsl/fsl_dsp_platform.h
diff options
context:
space:
mode:
authorDaniel Baluta <daniel.baluta@nxp.com>2018-10-04 14:46:32 +0300
committerDong Aisheng <aisheng.dong@nxp.com>2019-11-25 15:52:02 +0800
commit09194b889d50146c20eafa3a661c5911d4ee2cbf (patch)
treed8390154a5da5f3fd367bf6d5652e0ec07386e54 /sound/soc/fsl/fsl_dsp_platform.h
parent78520df6826e552bbc2c23e76e0f11c32fa559f1 (diff)
MLK-18497-11: ASoC: fsl: compress: Introduce compress implemenation
Reviewed-by: Cosmin-Gabriel Samoila <cosmin.samoila@nxp.com> Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Diffstat (limited to 'sound/soc/fsl/fsl_dsp_platform.h')
-rw-r--r--sound/soc/fsl/fsl_dsp_platform.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/sound/soc/fsl/fsl_dsp_platform.h b/sound/soc/fsl/fsl_dsp_platform.h
new file mode 100644
index 000000000000..15d085c9f23d
--- /dev/null
+++ b/sound/soc/fsl/fsl_dsp_platform.h
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (c) 2012-2013 by Tensilica Inc. ALL RIGHTS RESERVED.
+ * Copyright 2018 NXP
+ */
+
+#ifndef _FSL_DSP_PLATFORM_H
+#define _FSL_DSP_PLATFORM_H
+
+#include "fsl_dsp_xaf_api.h"
+
+struct dsp_data {
+ struct xf_client *client;
+ struct xaf_pipeline *p_pipe;
+ struct xaf_pipeline pipeline;
+ struct xaf_comp component[2];
+ int codec_type;
+ int status;
+};
+
+#endif /*_FSL_DSP_PLATFORM_H*/