2013-07-22 12:35:52 +08:00
|
|
|
/*
|
|
|
|
* Renesas R-Car
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Renesas Solutions Corp.
|
|
|
|
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#ifndef RSND_H
|
|
|
|
#define RSND_H
|
|
|
|
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/device.h>
|
2013-07-29 09:58:50 +08:00
|
|
|
#include <linux/dma-mapping.h>
|
2013-07-22 12:35:52 +08:00
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/module.h>
|
2014-03-18 10:29:55 +08:00
|
|
|
#include <linux/of_device.h>
|
|
|
|
#include <linux/of_irq.h>
|
2013-07-29 09:58:50 +08:00
|
|
|
#include <linux/sh_dma.h>
|
|
|
|
#include <linux/workqueue.h>
|
2013-07-22 12:35:52 +08:00
|
|
|
#include <sound/soc.h>
|
|
|
|
#include <sound/pcm_params.h>
|
|
|
|
|
2015-11-10 13:13:53 +08:00
|
|
|
#define RSND_GEN1_SRU 0
|
|
|
|
#define RSND_GEN1_ADG 1
|
|
|
|
#define RSND_GEN1_SSI 2
|
|
|
|
|
|
|
|
#define RSND_GEN2_SCU 0
|
|
|
|
#define RSND_GEN2_ADG 1
|
|
|
|
#define RSND_GEN2_SSIU 2
|
|
|
|
#define RSND_GEN2_SSI 3
|
|
|
|
|
|
|
|
#define RSND_BASE_MAX 4
|
2015-10-07 18:42:22 +08:00
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
/*
|
|
|
|
* pseudo register
|
|
|
|
*
|
|
|
|
* The register address offsets SRU/SCU/SSIU on Gen1/Gen2 are very different.
|
|
|
|
* This driver uses pseudo register in order to hide it.
|
|
|
|
* see gen1/gen2 for detail
|
|
|
|
*/
|
2013-07-22 12:36:21 +08:00
|
|
|
enum rsnd_reg {
|
2015-11-10 13:10:18 +08:00
|
|
|
/* SCU (SRC/SSIU/MIX/CTU/DVC) */
|
2015-11-30 16:54:03 +08:00
|
|
|
RSND_REG_SSI_MODE, /* Gen2 only */
|
2013-07-22 12:36:35 +08:00
|
|
|
RSND_REG_SSI_MODE0,
|
|
|
|
RSND_REG_SSI_MODE1,
|
2015-12-17 11:00:10 +08:00
|
|
|
RSND_REG_SSI_MODE2,
|
|
|
|
RSND_REG_SSI_CONTROL,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_SSI_CTRL, /* Gen2 only */
|
|
|
|
RSND_REG_SSI_BUSIF_MODE, /* Gen2 only */
|
|
|
|
RSND_REG_SSI_BUSIF_ADINR, /* Gen2 only */
|
|
|
|
RSND_REG_SSI_BUSIF_DALIGN, /* Gen2 only */
|
|
|
|
RSND_REG_SSI_INT_ENABLE, /* Gen2 only */
|
2015-11-30 16:50:08 +08:00
|
|
|
RSND_REG_SRC_I_BUSIF_MODE,
|
|
|
|
RSND_REG_SRC_O_BUSIF_MODE,
|
2013-12-20 11:28:51 +08:00
|
|
|
RSND_REG_SRC_ROUTE_MODE0,
|
|
|
|
RSND_REG_SRC_SWRSR,
|
|
|
|
RSND_REG_SRC_SRCIR,
|
2013-12-20 11:27:03 +08:00
|
|
|
RSND_REG_SRC_ADINR,
|
2013-12-20 11:28:51 +08:00
|
|
|
RSND_REG_SRC_IFSCR,
|
|
|
|
RSND_REG_SRC_IFSVR,
|
|
|
|
RSND_REG_SRC_SRCCR,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_SRC_CTRL, /* Gen2 only */
|
|
|
|
RSND_REG_SRC_BSDSR, /* Gen2 only */
|
|
|
|
RSND_REG_SRC_BSISR, /* Gen2 only */
|
|
|
|
RSND_REG_SRC_INT_ENABLE0, /* Gen2 only */
|
|
|
|
RSND_REG_SRC_BUSIF_DALIGN, /* Gen2 only */
|
|
|
|
RSND_REG_SRCIN_TIMSEL0, /* Gen2 only */
|
|
|
|
RSND_REG_SRCIN_TIMSEL1, /* Gen2 only */
|
|
|
|
RSND_REG_SRCIN_TIMSEL2, /* Gen2 only */
|
|
|
|
RSND_REG_SRCIN_TIMSEL3, /* Gen2 only */
|
|
|
|
RSND_REG_SRCIN_TIMSEL4, /* Gen2 only */
|
|
|
|
RSND_REG_SRCOUT_TIMSEL0, /* Gen2 only */
|
|
|
|
RSND_REG_SRCOUT_TIMSEL1, /* Gen2 only */
|
|
|
|
RSND_REG_SRCOUT_TIMSEL2, /* Gen2 only */
|
|
|
|
RSND_REG_SRCOUT_TIMSEL3, /* Gen2 only */
|
|
|
|
RSND_REG_SRCOUT_TIMSEL4, /* Gen2 only */
|
2015-01-08 09:52:36 +08:00
|
|
|
RSND_REG_SCU_SYS_STATUS0,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_SCU_SYS_STATUS1, /* Gen2 only */
|
2015-01-08 09:52:36 +08:00
|
|
|
RSND_REG_SCU_SYS_INT_EN0,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_SCU_SYS_INT_EN1, /* Gen2 only */
|
|
|
|
RSND_REG_CMD_CTRL, /* Gen2 only */
|
2015-12-08 13:38:23 +08:00
|
|
|
RSND_REG_CMD_BUSIF_DALIGN, /* Gen2 only */
|
2014-05-09 08:44:49 +08:00
|
|
|
RSND_REG_CMD_ROUTE_SLCT,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_CMDOUT_TIMSEL, /* Gen2 only */
|
2016-01-21 09:58:53 +08:00
|
|
|
RSND_REG_CTU_SWRSR,
|
2015-07-15 15:17:17 +08:00
|
|
|
RSND_REG_CTU_CTUIR,
|
|
|
|
RSND_REG_CTU_ADINR,
|
2016-01-21 09:59:33 +08:00
|
|
|
RSND_REG_CTU_CPMDR,
|
|
|
|
RSND_REG_CTU_SCMDR,
|
|
|
|
RSND_REG_CTU_SV00R,
|
|
|
|
RSND_REG_CTU_SV01R,
|
|
|
|
RSND_REG_CTU_SV02R,
|
|
|
|
RSND_REG_CTU_SV03R,
|
|
|
|
RSND_REG_CTU_SV04R,
|
|
|
|
RSND_REG_CTU_SV05R,
|
|
|
|
RSND_REG_CTU_SV06R,
|
|
|
|
RSND_REG_CTU_SV07R,
|
|
|
|
RSND_REG_CTU_SV10R,
|
|
|
|
RSND_REG_CTU_SV11R,
|
|
|
|
RSND_REG_CTU_SV12R,
|
|
|
|
RSND_REG_CTU_SV13R,
|
|
|
|
RSND_REG_CTU_SV14R,
|
|
|
|
RSND_REG_CTU_SV15R,
|
|
|
|
RSND_REG_CTU_SV16R,
|
|
|
|
RSND_REG_CTU_SV17R,
|
|
|
|
RSND_REG_CTU_SV20R,
|
|
|
|
RSND_REG_CTU_SV21R,
|
|
|
|
RSND_REG_CTU_SV22R,
|
|
|
|
RSND_REG_CTU_SV23R,
|
|
|
|
RSND_REG_CTU_SV24R,
|
|
|
|
RSND_REG_CTU_SV25R,
|
|
|
|
RSND_REG_CTU_SV26R,
|
|
|
|
RSND_REG_CTU_SV27R,
|
|
|
|
RSND_REG_CTU_SV30R,
|
|
|
|
RSND_REG_CTU_SV31R,
|
|
|
|
RSND_REG_CTU_SV32R,
|
|
|
|
RSND_REG_CTU_SV33R,
|
|
|
|
RSND_REG_CTU_SV34R,
|
|
|
|
RSND_REG_CTU_SV35R,
|
|
|
|
RSND_REG_CTU_SV36R,
|
|
|
|
RSND_REG_CTU_SV37R,
|
2015-07-15 15:17:36 +08:00
|
|
|
RSND_REG_MIX_SWRSR,
|
|
|
|
RSND_REG_MIX_MIXIR,
|
|
|
|
RSND_REG_MIX_ADINR,
|
|
|
|
RSND_REG_MIX_MIXMR,
|
|
|
|
RSND_REG_MIX_MVPDR,
|
|
|
|
RSND_REG_MIX_MDBAR,
|
|
|
|
RSND_REG_MIX_MDBBR,
|
|
|
|
RSND_REG_MIX_MDBCR,
|
|
|
|
RSND_REG_MIX_MDBDR,
|
|
|
|
RSND_REG_MIX_MDBER,
|
2014-05-09 08:44:49 +08:00
|
|
|
RSND_REG_DVC_SWRSR,
|
|
|
|
RSND_REG_DVC_DVUIR,
|
|
|
|
RSND_REG_DVC_ADINR,
|
|
|
|
RSND_REG_DVC_DVUCR,
|
|
|
|
RSND_REG_DVC_ZCMCR,
|
|
|
|
RSND_REG_DVC_VOL0R,
|
|
|
|
RSND_REG_DVC_VOL1R,
|
2015-11-30 16:53:44 +08:00
|
|
|
RSND_REG_DVC_VOL2R,
|
|
|
|
RSND_REG_DVC_VOL3R,
|
|
|
|
RSND_REG_DVC_VOL4R,
|
|
|
|
RSND_REG_DVC_VOL5R,
|
|
|
|
RSND_REG_DVC_VOL6R,
|
|
|
|
RSND_REG_DVC_VOL7R,
|
2014-05-09 08:44:49 +08:00
|
|
|
RSND_REG_DVC_DVUER,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_DVC_VRCTR, /* Gen2 only */
|
|
|
|
RSND_REG_DVC_VRPDR, /* Gen2 only */
|
|
|
|
RSND_REG_DVC_VRDBR, /* Gen2 only */
|
2013-07-22 12:36:35 +08:00
|
|
|
|
2013-07-22 12:36:46 +08:00
|
|
|
/* ADG */
|
|
|
|
RSND_REG_BRRA,
|
|
|
|
RSND_REG_BRRB,
|
|
|
|
RSND_REG_SSICKR,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_DIV_EN, /* Gen2 only */
|
2013-07-22 12:36:46 +08:00
|
|
|
RSND_REG_AUDIO_CLK_SEL0,
|
|
|
|
RSND_REG_AUDIO_CLK_SEL1,
|
2015-11-10 13:10:18 +08:00
|
|
|
RSND_REG_AUDIO_CLK_SEL2, /* Gen2 only */
|
2013-07-22 12:36:46 +08:00
|
|
|
|
2013-07-22 12:36:57 +08:00
|
|
|
/* SSI */
|
|
|
|
RSND_REG_SSICR,
|
|
|
|
RSND_REG_SSISR,
|
|
|
|
RSND_REG_SSITDR,
|
|
|
|
RSND_REG_SSIRDR,
|
|
|
|
RSND_REG_SSIWSR,
|
|
|
|
|
2013-07-22 12:36:21 +08:00
|
|
|
RSND_REG_MAX,
|
|
|
|
};
|
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
struct rsnd_priv;
|
2013-07-22 12:36:03 +08:00
|
|
|
struct rsnd_mod;
|
2013-07-22 12:35:52 +08:00
|
|
|
struct rsnd_dai;
|
|
|
|
struct rsnd_dai_stream;
|
|
|
|
|
2013-07-22 12:36:21 +08:00
|
|
|
/*
|
|
|
|
* R-Car basic functions
|
|
|
|
*/
|
|
|
|
#define rsnd_mod_read(m, r) \
|
|
|
|
rsnd_read(rsnd_mod_to_priv(m), m, RSND_REG_##r)
|
|
|
|
#define rsnd_mod_write(m, r, d) \
|
|
|
|
rsnd_write(rsnd_mod_to_priv(m), m, RSND_REG_##r, d)
|
2015-06-16 16:53:11 +08:00
|
|
|
#define rsnd_mod_force_write(m, r, d) \
|
|
|
|
rsnd_force_write(rsnd_mod_to_priv(m), m, RSND_REG_##r, d)
|
2013-07-22 12:36:21 +08:00
|
|
|
#define rsnd_mod_bset(m, r, s, d) \
|
|
|
|
rsnd_bset(rsnd_mod_to_priv(m), m, RSND_REG_##r, s, d)
|
|
|
|
|
|
|
|
u32 rsnd_read(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg);
|
|
|
|
void rsnd_write(struct rsnd_priv *priv, struct rsnd_mod *mod,
|
|
|
|
enum rsnd_reg reg, u32 data);
|
2015-06-16 16:53:11 +08:00
|
|
|
void rsnd_force_write(struct rsnd_priv *priv, struct rsnd_mod *mod,
|
|
|
|
enum rsnd_reg reg, u32 data);
|
2013-07-22 12:36:21 +08:00
|
|
|
void rsnd_bset(struct rsnd_priv *priv, struct rsnd_mod *mod, enum rsnd_reg reg,
|
|
|
|
u32 mask, u32 data);
|
2015-07-15 15:14:05 +08:00
|
|
|
u32 rsnd_get_adinr_bit(struct rsnd_mod *mod, struct rsnd_dai_stream *io);
|
2015-07-15 15:14:29 +08:00
|
|
|
u32 rsnd_get_adinr_chan(struct rsnd_mod *mod, struct rsnd_dai_stream *io);
|
2015-07-15 15:14:47 +08:00
|
|
|
u32 rsnd_get_dalign(struct rsnd_mod *mod, struct rsnd_dai_stream *io);
|
2013-07-22 12:36:21 +08:00
|
|
|
|
2013-07-29 09:58:50 +08:00
|
|
|
/*
|
|
|
|
* R-Car DMA
|
|
|
|
*/
|
2016-01-21 09:58:33 +08:00
|
|
|
int rsnd_dma_attach(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod, struct rsnd_mod **dma_mod, int id);
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_dma_probe(struct rsnd_priv *priv);
|
ASoC: rsnd: 1st DMAC dma-names cares subnode
Renesas R-Car sound (= rsnd) needs 2 DMAC which are called as
Audio DMAC (= 1st DMAC) and Audio DMAC peri peri (2nd DMAC).
And rsnd had assumed that 1st / 2nd DMACs are implemented as DMAEngine.
But, in result of DMA ML discussion, 2nd DMAC was concluded that it is
not a general purpose DMAC (2nd DMAC is for Device to Device inside
sound system). Additionally, current DMAEngine can't support Device to
Device, and we don't have correct DT bindings for it at this point.
So the easiest solution for it is that move it from DMAEngine to rsnd
driver.
dma-names on DT was implemented as no difference between 1st / 2nd
DMAC's, since rsnd had assumed that both DMACs are implemented as
DMAEngine. That style was "src_dst". But now, 2nd DMAC was implemented
as non DMAEngine, and it doesn't need dma-names anymore. So, this
dma-names rule is no longer needed.
And additionally, dma-names was assumed that it has all
(= SSI/SSIU/SRC/DVC) nodes under sound node.
In upstream code, no SoC/platform is supporting DMA for rsnd driver yet.
This means there is no compatible issue if this patch changes
dma-names's rule of DT.
This patch assumes dma-names for 1st DMAC are tx/rx base, and listed
in each SSI/SRC/DVC subnode
ex)
rcar_sound,dvc {
dvc0: dvc@0 {
dmas = <&audma0 0xbc>;
dma-names = "tx";
};
...
rcar_sound,src {
src0: src@0 {
...
dmas = <&audma0 0x85>, <&audma1 0x9a>;
dma-names = "rx", "tx";
};
...
rcar_sound,ssi {
ssi0: ssi@0 {
...
dmas = <&audma0 0x01>, <&audma1 0x02>, <&audma0 0x15>, <&audma1 0x16>;
dma-names = "rx", "tx", "rxu", "txu";
};
...
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2015-02-20 18:31:23 +08:00
|
|
|
struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node,
|
|
|
|
struct rsnd_mod *mod, char *name);
|
2013-07-29 09:58:50 +08:00
|
|
|
|
2013-07-22 12:36:03 +08:00
|
|
|
/*
|
|
|
|
* R-Car sound mod
|
|
|
|
*/
|
2014-03-03 15:42:55 +08:00
|
|
|
enum rsnd_mod_type {
|
2015-10-26 16:42:25 +08:00
|
|
|
RSND_MOD_AUDMAPP,
|
|
|
|
RSND_MOD_AUDMA,
|
|
|
|
RSND_MOD_DVC,
|
2015-07-15 15:17:36 +08:00
|
|
|
RSND_MOD_MIX,
|
2015-07-15 15:17:17 +08:00
|
|
|
RSND_MOD_CTU,
|
2015-10-26 16:43:21 +08:00
|
|
|
RSND_MOD_CMD,
|
2015-01-15 16:09:44 +08:00
|
|
|
RSND_MOD_SRC,
|
2015-12-17 11:00:10 +08:00
|
|
|
RSND_MOD_SSIM3, /* SSI multi 3 */
|
|
|
|
RSND_MOD_SSIM2, /* SSI multi 2 */
|
|
|
|
RSND_MOD_SSIM1, /* SSI multi 1 */
|
|
|
|
RSND_MOD_SSIP, /* SSI parent */
|
2014-03-03 15:42:55 +08:00
|
|
|
RSND_MOD_SSI,
|
2015-12-17 10:55:25 +08:00
|
|
|
RSND_MOD_SSIU,
|
2014-03-03 15:42:55 +08:00
|
|
|
RSND_MOD_MAX,
|
|
|
|
};
|
2013-07-22 12:36:03 +08:00
|
|
|
|
|
|
|
struct rsnd_mod_ops {
|
|
|
|
char *name;
|
2015-06-15 14:26:25 +08:00
|
|
|
struct dma_chan* (*dma_req)(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod);
|
2014-03-04 12:50:33 +08:00
|
|
|
int (*probe)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2014-03-04 12:50:33 +08:00
|
|
|
int (*remove)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2013-07-22 12:36:03 +08:00
|
|
|
int (*init)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2013-07-22 12:36:03 +08:00
|
|
|
int (*quit)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2013-07-22 12:36:03 +08:00
|
|
|
int (*start)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2013-07-22 12:36:03 +08:00
|
|
|
int (*stop)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2016-01-26 12:56:57 +08:00
|
|
|
int (*irq)(struct rsnd_mod *mod,
|
|
|
|
struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_priv *priv, int enable);
|
2014-05-09 08:44:49 +08:00
|
|
|
int (*pcm_new)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2014-05-09 08:44:49 +08:00
|
|
|
struct snd_soc_pcm_runtime *rtd);
|
2015-03-26 12:02:51 +08:00
|
|
|
int (*hw_params)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-03-26 12:02:51 +08:00
|
|
|
struct snd_pcm_substream *substream,
|
|
|
|
struct snd_pcm_hw_params *hw_params);
|
2014-11-27 16:02:43 +08:00
|
|
|
int (*fallback)(struct rsnd_mod *mod,
|
2015-06-15 14:25:20 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2015-01-15 16:07:47 +08:00
|
|
|
struct rsnd_priv *priv);
|
2013-07-22 12:36:03 +08:00
|
|
|
};
|
|
|
|
|
2014-01-24 10:41:44 +08:00
|
|
|
struct rsnd_dai_stream;
|
2013-07-22 12:36:03 +08:00
|
|
|
struct rsnd_mod {
|
|
|
|
int id;
|
2014-03-03 15:42:55 +08:00
|
|
|
enum rsnd_mod_type type;
|
2013-07-22 12:36:03 +08:00
|
|
|
struct rsnd_mod_ops *ops;
|
2015-06-15 14:24:54 +08:00
|
|
|
struct rsnd_priv *priv;
|
2015-01-15 16:03:22 +08:00
|
|
|
struct clk *clk;
|
2016-01-21 09:58:07 +08:00
|
|
|
u32 *(*get_status)(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod,
|
|
|
|
enum rsnd_mod_type type);
|
|
|
|
u32 status;
|
2013-07-22 12:36:03 +08:00
|
|
|
};
|
2014-11-27 16:02:55 +08:00
|
|
|
/*
|
|
|
|
* status
|
|
|
|
*
|
2016-01-21 09:56:59 +08:00
|
|
|
* 0xH0000CB0
|
2015-03-26 12:02:51 +08:00
|
|
|
*
|
2015-06-15 14:24:34 +08:00
|
|
|
* B 0: init 1: quit
|
|
|
|
* C 0: start 1: stop
|
|
|
|
*
|
|
|
|
* H is always called (see __rsnd_mod_call)
|
2016-01-21 09:56:59 +08:00
|
|
|
* H 0: probe 1: remove
|
2015-06-15 14:24:34 +08:00
|
|
|
* H 0: pcm_new
|
|
|
|
* H 0: fallback
|
|
|
|
* H 0: hw_params
|
2014-11-27 16:02:55 +08:00
|
|
|
*/
|
2015-06-15 14:24:34 +08:00
|
|
|
#define __rsnd_mod_shift_init 4
|
|
|
|
#define __rsnd_mod_shift_quit 4
|
|
|
|
#define __rsnd_mod_shift_start 8
|
|
|
|
#define __rsnd_mod_shift_stop 8
|
2016-01-21 09:56:59 +08:00
|
|
|
#define __rsnd_mod_shift_probe 28 /* always called */
|
|
|
|
#define __rsnd_mod_shift_remove 28 /* always called */
|
2016-01-26 12:56:57 +08:00
|
|
|
#define __rsnd_mod_shift_irq 28 /* always called */
|
2015-06-15 14:24:34 +08:00
|
|
|
#define __rsnd_mod_shift_pcm_new 28 /* always called */
|
|
|
|
#define __rsnd_mod_shift_fallback 28 /* always called */
|
|
|
|
#define __rsnd_mod_shift_hw_params 28 /* always called */
|
|
|
|
|
2016-01-21 09:56:59 +08:00
|
|
|
#define __rsnd_mod_add_probe 0
|
|
|
|
#define __rsnd_mod_add_remove 0
|
2015-06-15 14:24:34 +08:00
|
|
|
#define __rsnd_mod_add_init 1
|
|
|
|
#define __rsnd_mod_add_quit -1
|
|
|
|
#define __rsnd_mod_add_start 1
|
|
|
|
#define __rsnd_mod_add_stop -1
|
2016-01-26 12:56:57 +08:00
|
|
|
#define __rsnd_mod_add_irq 0
|
2015-06-15 14:24:34 +08:00
|
|
|
#define __rsnd_mod_add_pcm_new 0
|
|
|
|
#define __rsnd_mod_add_fallback 0
|
|
|
|
#define __rsnd_mod_add_hw_params 0
|
2014-11-27 16:02:55 +08:00
|
|
|
|
|
|
|
#define __rsnd_mod_call_probe 0
|
2016-01-21 09:56:59 +08:00
|
|
|
#define __rsnd_mod_call_remove 0
|
2014-11-27 16:02:55 +08:00
|
|
|
#define __rsnd_mod_call_init 0
|
|
|
|
#define __rsnd_mod_call_quit 1
|
|
|
|
#define __rsnd_mod_call_start 0
|
|
|
|
#define __rsnd_mod_call_stop 1
|
2016-01-26 12:56:57 +08:00
|
|
|
#define __rsnd_mod_call_irq 0
|
2014-11-27 16:02:55 +08:00
|
|
|
#define __rsnd_mod_call_pcm_new 0
|
|
|
|
#define __rsnd_mod_call_fallback 0
|
2015-03-26 12:02:51 +08:00
|
|
|
#define __rsnd_mod_call_hw_params 0
|
2013-07-22 12:36:03 +08:00
|
|
|
|
2015-06-15 14:24:54 +08:00
|
|
|
#define rsnd_mod_to_priv(mod) ((mod)->priv)
|
2015-07-15 15:10:43 +08:00
|
|
|
#define rsnd_mod_id(mod) ((mod) ? (mod)->id : -1)
|
2015-10-22 11:15:04 +08:00
|
|
|
#define rsnd_mod_power_on(mod) clk_enable((mod)->clk)
|
|
|
|
#define rsnd_mod_power_off(mod) clk_disable((mod)->clk)
|
2015-09-10 15:02:21 +08:00
|
|
|
#define rsnd_mod_get(ip) (&(ip)->mod)
|
2013-07-22 12:36:03 +08:00
|
|
|
|
2015-06-15 14:24:54 +08:00
|
|
|
int rsnd_mod_init(struct rsnd_priv *priv,
|
|
|
|
struct rsnd_mod *mod,
|
2016-01-21 09:58:07 +08:00
|
|
|
struct rsnd_mod_ops *ops,
|
|
|
|
struct clk *clk,
|
|
|
|
u32* (*get_status)(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod,
|
|
|
|
enum rsnd_mod_type type),
|
|
|
|
enum rsnd_mod_type type,
|
|
|
|
int id);
|
2015-03-26 12:02:09 +08:00
|
|
|
void rsnd_mod_quit(struct rsnd_mod *mod);
|
2013-07-22 12:36:03 +08:00
|
|
|
char *rsnd_mod_name(struct rsnd_mod *mod);
|
2015-06-15 14:26:25 +08:00
|
|
|
struct dma_chan *rsnd_mod_dma_req(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod);
|
2015-06-15 14:25:48 +08:00
|
|
|
void rsnd_mod_interrupt(struct rsnd_mod *mod,
|
|
|
|
void (*callback)(struct rsnd_mod *mod,
|
|
|
|
struct rsnd_dai_stream *io));
|
2016-01-21 09:58:07 +08:00
|
|
|
u32 *rsnd_mod_get_status(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod,
|
|
|
|
enum rsnd_mod_type type);
|
|
|
|
|
2015-12-17 10:58:14 +08:00
|
|
|
void rsnd_parse_connect_common(struct rsnd_dai *rdai,
|
|
|
|
struct rsnd_mod* (*mod_get)(struct rsnd_priv *priv, int id),
|
|
|
|
struct device_node *node,
|
|
|
|
struct device_node *playback,
|
|
|
|
struct device_node *capture);
|
2013-07-22 12:36:03 +08:00
|
|
|
|
2015-12-17 10:57:47 +08:00
|
|
|
void rsnd_set_slot(struct rsnd_dai *rdai,
|
|
|
|
int slots, int slots_total);
|
2015-12-17 10:57:27 +08:00
|
|
|
int rsnd_get_slot(struct rsnd_dai_stream *io);
|
|
|
|
int rsnd_get_slot_width(struct rsnd_dai_stream *io);
|
2015-12-17 10:57:47 +08:00
|
|
|
int rsnd_get_slot_num(struct rsnd_dai_stream *io);
|
2015-11-30 16:53:27 +08:00
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
/*
|
|
|
|
* R-Car sound DAI
|
|
|
|
*/
|
|
|
|
#define RSND_DAI_NAME_SIZE 16
|
|
|
|
struct rsnd_dai_stream {
|
2015-03-19 12:15:18 +08:00
|
|
|
char name[RSND_DAI_NAME_SIZE];
|
2013-07-22 12:35:52 +08:00
|
|
|
struct snd_pcm_substream *substream;
|
2014-03-03 15:42:55 +08:00
|
|
|
struct rsnd_mod *mod[RSND_MOD_MAX];
|
2014-03-04 12:50:00 +08:00
|
|
|
struct rsnd_dai_path_info *info; /* rcar_snd.h */
|
2015-01-15 16:06:24 +08:00
|
|
|
struct rsnd_dai *rdai;
|
2016-01-21 09:58:07 +08:00
|
|
|
u32 parent_ssi_status;
|
2013-07-22 12:35:52 +08:00
|
|
|
int byte_pos;
|
|
|
|
int period_pos;
|
|
|
|
int byte_per_period;
|
|
|
|
int next_period_byte;
|
|
|
|
};
|
2015-07-15 15:16:19 +08:00
|
|
|
#define rsnd_io_to_mod(io, i) ((i) < RSND_MOD_MAX ? (io)->mod[(i)] : NULL)
|
|
|
|
#define rsnd_io_to_mod_ssi(io) rsnd_io_to_mod((io), RSND_MOD_SSI)
|
2015-10-26 16:43:57 +08:00
|
|
|
#define rsnd_io_to_mod_ssip(io) rsnd_io_to_mod((io), RSND_MOD_SSIP)
|
2015-07-15 15:16:19 +08:00
|
|
|
#define rsnd_io_to_mod_src(io) rsnd_io_to_mod((io), RSND_MOD_SRC)
|
2015-07-15 15:17:17 +08:00
|
|
|
#define rsnd_io_to_mod_ctu(io) rsnd_io_to_mod((io), RSND_MOD_CTU)
|
2015-07-15 15:17:36 +08:00
|
|
|
#define rsnd_io_to_mod_mix(io) rsnd_io_to_mod((io), RSND_MOD_MIX)
|
2015-07-15 15:16:19 +08:00
|
|
|
#define rsnd_io_to_mod_dvc(io) rsnd_io_to_mod((io), RSND_MOD_DVC)
|
2015-12-08 13:38:23 +08:00
|
|
|
#define rsnd_io_to_mod_cmd(io) rsnd_io_to_mod((io), RSND_MOD_CMD)
|
2015-01-15 16:06:24 +08:00
|
|
|
#define rsnd_io_to_rdai(io) ((io)->rdai)
|
2015-01-15 16:08:34 +08:00
|
|
|
#define rsnd_io_to_priv(io) (rsnd_rdai_to_priv(rsnd_io_to_rdai(io)))
|
2015-01-15 16:06:49 +08:00
|
|
|
#define rsnd_io_is_play(io) (&rsnd_io_to_rdai(io)->playback == io)
|
2015-01-15 16:02:40 +08:00
|
|
|
#define rsnd_io_to_runtime(io) ((io)->substream ? \
|
|
|
|
(io)->substream->runtime : NULL)
|
2015-06-15 14:27:47 +08:00
|
|
|
int rsnd_io_is_working(struct rsnd_dai_stream *io);
|
2015-01-15 16:06:49 +08:00
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
struct rsnd_dai {
|
|
|
|
char name[RSND_DAI_NAME_SIZE];
|
|
|
|
struct rsnd_dai_stream playback;
|
|
|
|
struct rsnd_dai_stream capture;
|
2015-01-15 16:08:34 +08:00
|
|
|
struct rsnd_priv *priv;
|
2013-07-22 12:35:52 +08:00
|
|
|
|
2015-11-30 16:53:27 +08:00
|
|
|
int slots;
|
2015-12-17 10:57:47 +08:00
|
|
|
int slots_num;
|
2015-11-30 16:53:27 +08:00
|
|
|
|
2013-11-08 17:46:53 +08:00
|
|
|
unsigned int clk_master:1;
|
|
|
|
unsigned int bit_clk_inv:1;
|
|
|
|
unsigned int frm_clk_inv:1;
|
|
|
|
unsigned int sys_delay:1;
|
|
|
|
unsigned int data_alignment:1;
|
2013-07-22 12:35:52 +08:00
|
|
|
};
|
|
|
|
|
2014-02-25 14:15:18 +08:00
|
|
|
#define rsnd_rdai_nr(priv) ((priv)->rdai_nr)
|
2015-01-15 16:04:51 +08:00
|
|
|
#define rsnd_rdai_is_clk_master(rdai) ((rdai)->clk_master)
|
2015-01-15 16:08:34 +08:00
|
|
|
#define rsnd_rdai_to_priv(rdai) ((rdai)->priv)
|
2013-07-22 12:35:52 +08:00
|
|
|
#define for_each_rsnd_dai(rdai, priv, i) \
|
2014-02-12 09:15:51 +08:00
|
|
|
for (i = 0; \
|
2014-02-25 14:15:18 +08:00
|
|
|
(i < rsnd_rdai_nr(priv)) && \
|
2015-01-15 16:03:38 +08:00
|
|
|
((rdai) = rsnd_rdai_get(priv, i)); \
|
2014-02-12 09:15:51 +08:00
|
|
|
i++)
|
2013-07-22 12:35:52 +08:00
|
|
|
|
2015-01-15 16:03:38 +08:00
|
|
|
struct rsnd_dai *rsnd_rdai_get(struct rsnd_priv *priv, int id);
|
|
|
|
|
2015-06-15 14:21:15 +08:00
|
|
|
bool rsnd_dai_pointer_update(struct rsnd_dai_stream *io, int cnt);
|
|
|
|
void rsnd_dai_period_elapsed(struct rsnd_dai_stream *io);
|
2013-07-22 12:35:52 +08:00
|
|
|
int rsnd_dai_pointer_offset(struct rsnd_dai_stream *io, int additional);
|
2015-10-26 16:39:41 +08:00
|
|
|
int rsnd_dai_connect(struct rsnd_mod *mod,
|
|
|
|
struct rsnd_dai_stream *io,
|
|
|
|
enum rsnd_mod_type type);
|
2015-11-10 13:11:18 +08:00
|
|
|
#define rsnd_dai_of_node(priv) \
|
|
|
|
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,dai")
|
2013-07-22 12:35:52 +08:00
|
|
|
|
2013-07-22 12:36:21 +08:00
|
|
|
/*
|
|
|
|
* R-Car Gen1/Gen2
|
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_gen_probe(struct rsnd_priv *priv);
|
2013-07-22 12:36:21 +08:00
|
|
|
void __iomem *rsnd_gen_reg_get(struct rsnd_priv *priv,
|
|
|
|
struct rsnd_mod *mod,
|
|
|
|
enum rsnd_reg reg);
|
2015-02-20 18:25:27 +08:00
|
|
|
phys_addr_t rsnd_gen_get_phy_addr(struct rsnd_priv *priv, int reg_id);
|
2014-05-23 14:25:54 +08:00
|
|
|
|
2013-07-22 12:36:46 +08:00
|
|
|
/*
|
|
|
|
* R-Car ADG
|
|
|
|
*/
|
|
|
|
int rsnd_adg_ssi_clk_stop(struct rsnd_mod *mod);
|
|
|
|
int rsnd_adg_ssi_clk_try_start(struct rsnd_mod *mod, unsigned int rate);
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_adg_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_adg_remove(struct rsnd_priv *priv);
|
2014-01-24 10:42:00 +08:00
|
|
|
int rsnd_adg_set_convert_clk_gen2(struct rsnd_mod *mod,
|
|
|
|
struct rsnd_dai_stream *io,
|
|
|
|
unsigned int src_rate,
|
|
|
|
unsigned int dst_rate);
|
|
|
|
int rsnd_adg_set_convert_timing_gen2(struct rsnd_mod *mod,
|
|
|
|
struct rsnd_dai_stream *io);
|
2015-01-15 16:07:19 +08:00
|
|
|
int rsnd_adg_set_cmd_timsel_gen2(struct rsnd_mod *mod,
|
2014-05-09 08:44:49 +08:00
|
|
|
struct rsnd_dai_stream *io);
|
2013-07-22 12:36:46 +08:00
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
/*
|
|
|
|
* R-Car sound priv
|
|
|
|
*/
|
|
|
|
struct rsnd_priv {
|
|
|
|
|
2014-05-23 14:25:30 +08:00
|
|
|
struct platform_device *pdev;
|
2013-07-22 12:35:52 +08:00
|
|
|
spinlock_t lock;
|
2015-11-19 12:22:56 +08:00
|
|
|
unsigned long flags;
|
2015-11-10 13:13:53 +08:00
|
|
|
#define RSND_GEN_MASK (0xF << 0)
|
|
|
|
#define RSND_GEN1 (1 << 0)
|
|
|
|
#define RSND_GEN2 (2 << 0)
|
2013-07-22 12:35:52 +08:00
|
|
|
|
2013-07-22 12:36:21 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_gen_probe()
|
|
|
|
*/
|
|
|
|
void *gen;
|
|
|
|
|
2013-07-22 12:36:46 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_adg_probe()
|
|
|
|
*/
|
|
|
|
void *adg;
|
|
|
|
|
2015-02-20 18:27:42 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_dma_probe()
|
|
|
|
*/
|
|
|
|
void *dma;
|
|
|
|
|
2013-07-22 12:36:57 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_ssi_probe()
|
|
|
|
*/
|
2014-01-24 10:39:40 +08:00
|
|
|
void *ssi;
|
|
|
|
int ssi_nr;
|
2013-07-22 12:36:57 +08:00
|
|
|
|
2015-10-26 16:43:41 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_ssiu_probe()
|
|
|
|
*/
|
|
|
|
void *ssiu;
|
|
|
|
int ssiu_nr;
|
|
|
|
|
2015-07-15 15:16:37 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_src_probe()
|
|
|
|
*/
|
|
|
|
void *src;
|
|
|
|
int src_nr;
|
|
|
|
|
2015-07-15 15:17:17 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_ctu_probe()
|
|
|
|
*/
|
|
|
|
void *ctu;
|
|
|
|
int ctu_nr;
|
|
|
|
|
2015-07-15 15:17:36 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_mix_probe()
|
|
|
|
*/
|
|
|
|
void *mix;
|
|
|
|
int mix_nr;
|
|
|
|
|
2014-05-09 08:44:49 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_dvc_probe()
|
|
|
|
*/
|
|
|
|
void *dvc;
|
|
|
|
int dvc_nr;
|
|
|
|
|
2015-10-26 16:43:21 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_cmd_probe()
|
|
|
|
*/
|
|
|
|
void *cmd;
|
|
|
|
int cmd_nr;
|
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
/*
|
|
|
|
* below value will be filled on rsnd_dai_probe()
|
|
|
|
*/
|
|
|
|
struct snd_soc_dai_driver *daidrv;
|
|
|
|
struct rsnd_dai *rdai;
|
2014-02-25 14:15:18 +08:00
|
|
|
int rdai_nr;
|
2013-07-22 12:35:52 +08:00
|
|
|
};
|
|
|
|
|
2014-05-23 14:25:30 +08:00
|
|
|
#define rsnd_priv_to_pdev(priv) ((priv)->pdev)
|
|
|
|
#define rsnd_priv_to_dev(priv) (&(rsnd_priv_to_pdev(priv)->dev))
|
2013-07-22 12:35:52 +08:00
|
|
|
|
2015-11-10 13:13:12 +08:00
|
|
|
#define rsnd_is_gen1(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN1)
|
|
|
|
#define rsnd_is_gen2(priv) (((priv)->flags & RSND_GEN_MASK) == RSND_GEN2)
|
|
|
|
|
2014-11-27 16:06:14 +08:00
|
|
|
/*
|
|
|
|
* rsnd_kctrl
|
|
|
|
*/
|
|
|
|
struct rsnd_kctrl_cfg {
|
|
|
|
unsigned int max;
|
|
|
|
unsigned int size;
|
|
|
|
u32 *val;
|
|
|
|
const char * const *texts;
|
2015-06-15 14:27:28 +08:00
|
|
|
void (*update)(struct rsnd_dai_stream *io, struct rsnd_mod *mod);
|
|
|
|
struct rsnd_dai_stream *io;
|
2015-02-02 12:53:53 +08:00
|
|
|
struct snd_card *card;
|
|
|
|
struct snd_kcontrol *kctrl;
|
2014-11-27 16:06:14 +08:00
|
|
|
};
|
|
|
|
|
2015-11-30 16:53:44 +08:00
|
|
|
#define RSND_DVC_CHANNELS 8
|
2014-11-27 16:06:14 +08:00
|
|
|
struct rsnd_kctrl_cfg_m {
|
|
|
|
struct rsnd_kctrl_cfg cfg;
|
|
|
|
u32 val[RSND_DVC_CHANNELS];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rsnd_kctrl_cfg_s {
|
|
|
|
struct rsnd_kctrl_cfg cfg;
|
|
|
|
u32 val;
|
|
|
|
};
|
|
|
|
|
2015-02-02 12:53:53 +08:00
|
|
|
void _rsnd_kctrl_remove(struct rsnd_kctrl_cfg *cfg);
|
|
|
|
#define rsnd_kctrl_remove(_cfg) _rsnd_kctrl_remove(&((_cfg).cfg))
|
|
|
|
|
2014-11-27 16:06:14 +08:00
|
|
|
int rsnd_kctrl_new_m(struct rsnd_mod *mod,
|
2015-06-15 14:27:28 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2014-11-27 16:06:14 +08:00
|
|
|
struct snd_soc_pcm_runtime *rtd,
|
|
|
|
const unsigned char *name,
|
2015-06-15 14:27:28 +08:00
|
|
|
void (*update)(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod),
|
2014-11-27 16:06:14 +08:00
|
|
|
struct rsnd_kctrl_cfg_m *_cfg,
|
2015-11-30 16:53:44 +08:00
|
|
|
int ch_size,
|
2014-11-27 16:06:14 +08:00
|
|
|
u32 max);
|
|
|
|
int rsnd_kctrl_new_s(struct rsnd_mod *mod,
|
2015-06-15 14:27:28 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2014-11-27 16:06:14 +08:00
|
|
|
struct snd_soc_pcm_runtime *rtd,
|
|
|
|
const unsigned char *name,
|
2015-06-15 14:27:28 +08:00
|
|
|
void (*update)(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod),
|
2014-11-27 16:06:14 +08:00
|
|
|
struct rsnd_kctrl_cfg_s *_cfg,
|
|
|
|
u32 max);
|
|
|
|
int rsnd_kctrl_new_e(struct rsnd_mod *mod,
|
2015-06-15 14:27:28 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2014-11-27 16:06:14 +08:00
|
|
|
struct snd_soc_pcm_runtime *rtd,
|
|
|
|
const unsigned char *name,
|
|
|
|
struct rsnd_kctrl_cfg_s *_cfg,
|
2015-06-15 14:27:28 +08:00
|
|
|
void (*update)(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod),
|
2014-11-27 16:06:14 +08:00
|
|
|
const char * const *texts,
|
|
|
|
u32 max);
|
|
|
|
|
2015-07-15 15:16:37 +08:00
|
|
|
/*
|
|
|
|
* R-Car SSI
|
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_ssi_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_ssi_remove(struct rsnd_priv *priv);
|
2015-07-15 15:16:37 +08:00
|
|
|
struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id);
|
|
|
|
int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod);
|
2015-10-22 11:15:46 +08:00
|
|
|
int rsnd_ssi_use_busif(struct rsnd_dai_stream *io);
|
2015-12-17 11:00:10 +08:00
|
|
|
u32 rsnd_ssi_multi_slaves(struct rsnd_dai_stream *io);
|
2015-10-22 11:15:46 +08:00
|
|
|
|
|
|
|
#define rsnd_ssi_is_pin_sharing(io) \
|
|
|
|
__rsnd_ssi_is_pin_sharing(rsnd_io_to_mod_ssi(io))
|
|
|
|
int __rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod);
|
2015-07-15 15:16:37 +08:00
|
|
|
|
2015-11-10 13:11:18 +08:00
|
|
|
#define rsnd_ssi_of_node(priv) \
|
|
|
|
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,ssi")
|
2015-12-17 11:00:10 +08:00
|
|
|
void rsnd_parse_connect_ssi(struct rsnd_dai *rdai,
|
|
|
|
struct device_node *playback,
|
|
|
|
struct device_node *capture);
|
2015-11-10 13:11:18 +08:00
|
|
|
|
2015-10-26 16:43:41 +08:00
|
|
|
/*
|
|
|
|
* R-Car SSIU
|
|
|
|
*/
|
|
|
|
int rsnd_ssiu_attach(struct rsnd_dai_stream *io,
|
|
|
|
struct rsnd_mod *mod);
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_ssiu_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_ssiu_remove(struct rsnd_priv *priv);
|
2015-10-26 16:43:41 +08:00
|
|
|
|
2013-07-22 12:36:35 +08:00
|
|
|
/*
|
2014-03-04 12:51:21 +08:00
|
|
|
* R-Car SRC
|
2013-07-22 12:36:35 +08:00
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_src_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_src_remove(struct rsnd_priv *priv);
|
2014-03-04 12:51:21 +08:00
|
|
|
struct rsnd_mod *rsnd_src_mod_get(struct rsnd_priv *priv, int id);
|
|
|
|
unsigned int rsnd_src_get_ssi_rate(struct rsnd_priv *priv,
|
2014-03-03 15:43:03 +08:00
|
|
|
struct rsnd_dai_stream *io,
|
2013-12-20 11:28:51 +08:00
|
|
|
struct snd_pcm_runtime *runtime);
|
2015-11-10 13:11:18 +08:00
|
|
|
#define rsnd_src_of_node(priv) \
|
|
|
|
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,src")
|
2015-12-17 10:58:14 +08:00
|
|
|
#define rsnd_parse_connect_src(rdai, playback, capture) \
|
|
|
|
rsnd_parse_connect_common(rdai, rsnd_src_mod_get, \
|
|
|
|
rsnd_src_of_node(rsnd_rdai_to_priv(rdai)), \
|
|
|
|
playback, capture)
|
2013-12-20 11:28:51 +08:00
|
|
|
|
2015-07-15 15:17:17 +08:00
|
|
|
/*
|
|
|
|
* R-Car CTU
|
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_ctu_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_ctu_remove(struct rsnd_priv *priv);
|
2015-07-15 15:17:17 +08:00
|
|
|
struct rsnd_mod *rsnd_ctu_mod_get(struct rsnd_priv *priv, int id);
|
2015-11-10 13:11:18 +08:00
|
|
|
#define rsnd_ctu_of_node(priv) \
|
|
|
|
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,ctu")
|
2015-12-17 10:58:14 +08:00
|
|
|
#define rsnd_parse_connect_ctu(rdai, playback, capture) \
|
|
|
|
rsnd_parse_connect_common(rdai, rsnd_ctu_mod_get, \
|
|
|
|
rsnd_ctu_of_node(rsnd_rdai_to_priv(rdai)), \
|
|
|
|
playback, capture)
|
2015-07-15 15:17:17 +08:00
|
|
|
|
2015-07-15 15:17:36 +08:00
|
|
|
/*
|
|
|
|
* R-Car MIX
|
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_mix_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_mix_remove(struct rsnd_priv *priv);
|
2015-07-15 15:17:36 +08:00
|
|
|
struct rsnd_mod *rsnd_mix_mod_get(struct rsnd_priv *priv, int id);
|
2015-11-10 13:11:18 +08:00
|
|
|
#define rsnd_mix_of_node(priv) \
|
|
|
|
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,mix")
|
2015-12-17 10:58:14 +08:00
|
|
|
#define rsnd_parse_connect_mix(rdai, playback, capture) \
|
|
|
|
rsnd_parse_connect_common(rdai, rsnd_mix_mod_get, \
|
|
|
|
rsnd_mix_of_node(rsnd_rdai_to_priv(rdai)), \
|
|
|
|
playback, capture)
|
2015-07-15 15:17:36 +08:00
|
|
|
|
2014-05-09 08:44:49 +08:00
|
|
|
/*
|
|
|
|
* R-Car DVC
|
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_dvc_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_dvc_remove(struct rsnd_priv *priv);
|
2014-05-09 08:44:49 +08:00
|
|
|
struct rsnd_mod *rsnd_dvc_mod_get(struct rsnd_priv *priv, int id);
|
2015-11-10 13:11:18 +08:00
|
|
|
#define rsnd_dvc_of_node(priv) \
|
|
|
|
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,dvc")
|
2015-12-17 10:58:14 +08:00
|
|
|
#define rsnd_parse_connect_dvc(rdai, playback, capture) \
|
|
|
|
rsnd_parse_connect_common(rdai, rsnd_dvc_mod_get, \
|
|
|
|
rsnd_dvc_of_node(rsnd_rdai_to_priv(rdai)), \
|
|
|
|
playback, capture)
|
2014-05-09 08:44:49 +08:00
|
|
|
|
2015-10-26 16:43:21 +08:00
|
|
|
/*
|
|
|
|
* R-Car CMD
|
|
|
|
*/
|
2015-11-10 13:14:12 +08:00
|
|
|
int rsnd_cmd_probe(struct rsnd_priv *priv);
|
|
|
|
void rsnd_cmd_remove(struct rsnd_priv *priv);
|
2015-10-26 16:43:21 +08:00
|
|
|
int rsnd_cmd_attach(struct rsnd_dai_stream *io, int id);
|
|
|
|
struct rsnd_mod *rsnd_cmd_mod_get(struct rsnd_priv *priv, int id);
|
|
|
|
|
2015-09-10 15:03:08 +08:00
|
|
|
#ifdef DEBUG
|
|
|
|
void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type);
|
|
|
|
#define rsnd_mod_confirm_ssi(mssi) rsnd_mod_make_sure(mssi, RSND_MOD_SSI)
|
|
|
|
#define rsnd_mod_confirm_src(msrc) rsnd_mod_make_sure(msrc, RSND_MOD_SRC)
|
|
|
|
#define rsnd_mod_confirm_dvc(mdvc) rsnd_mod_make_sure(mdvc, RSND_MOD_DVC)
|
|
|
|
#else
|
|
|
|
#define rsnd_mod_confirm_ssi(mssi)
|
|
|
|
#define rsnd_mod_confirm_src(msrc)
|
|
|
|
#define rsnd_mod_confirm_dvc(mdvc)
|
|
|
|
#endif
|
|
|
|
|
2013-07-22 12:35:52 +08:00
|
|
|
#endif
|