1 /* SPDX-License-Identifier: GPL-2.0
5 * Copyright (c) 2016 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
8 #ifndef __SIMPLE_CARD_UTILS_H
9 #define __SIMPLE_CARD_UTILS_H
11 #include <linux/clk.h>
12 #include <sound/soc.h>
14 #define asoc_simple_init_hp(card, sjack, prefix) \
15 asoc_simple_init_jack(card, sjack, 1, prefix)
16 #define asoc_simple_init_mic(card, sjack, prefix) \
17 asoc_simple_init_jack(card, sjack, 0, prefix)
19 struct asoc_simple_dai
{
25 unsigned int tx_slot_mask
;
26 unsigned int rx_slot_mask
;
30 struct asoc_simple_data
{
35 struct asoc_simple_jack
{
36 struct snd_soc_jack jack
;
37 struct snd_soc_jack_pin pin
;
38 struct snd_soc_jack_gpio gpio
;
41 struct asoc_simple_priv
{
42 struct snd_soc_card snd_card
;
43 struct simple_dai_props
{
44 struct asoc_simple_dai
*cpu_dai
;
45 struct asoc_simple_dai
*codec_dai
;
46 struct snd_soc_dai_link_component cpus
; /* single cpu */
47 struct snd_soc_dai_link_component codecs
; /* single codec */
48 struct snd_soc_dai_link_component platforms
;
49 struct asoc_simple_data adata
;
50 struct snd_soc_codec_conf
*codec_conf
;
53 struct asoc_simple_jack hp_jack
;
54 struct asoc_simple_jack mic_jack
;
55 struct snd_soc_dai_link
*dai_link
;
56 struct asoc_simple_dai
*dais
;
57 struct snd_soc_codec_conf
*codec_conf
;
58 struct gpio_desc
*pa_gpio
;
60 #define simple_priv_to_card(priv) (&(priv)->snd_card)
61 #define simple_priv_to_props(priv, i) ((priv)->dai_props + (i))
62 #define simple_priv_to_dev(priv) (simple_priv_to_card(priv)->dev)
63 #define simple_priv_to_link(priv, i) (simple_priv_to_card(priv)->dai_link + (i))
66 int dais
; /* number of dai */
67 int link
; /* number of link */
68 int conf
; /* number of codec_conf */
69 int cpu
; /* turn for CPU / Codec */
72 int asoc_simple_parse_daifmt(struct device
*dev
,
73 struct device_node
*node
,
74 struct device_node
*codec
,
76 unsigned int *retfmt
);
78 int asoc_simple_set_dailink_name(struct device
*dev
,
79 struct snd_soc_dai_link
*dai_link
,
80 const char *fmt
, ...);
81 int asoc_simple_parse_card_name(struct snd_soc_card
*card
,
84 #define asoc_simple_parse_clk_cpu(dev, node, dai_link, simple_dai) \
85 asoc_simple_parse_clk(dev, node, simple_dai, dai_link->cpus)
86 #define asoc_simple_parse_clk_codec(dev, node, dai_link, simple_dai) \
87 asoc_simple_parse_clk(dev, node, simple_dai, dai_link->codecs)
88 int asoc_simple_parse_clk(struct device
*dev
,
89 struct device_node
*node
,
90 struct asoc_simple_dai
*simple_dai
,
91 struct snd_soc_dai_link_component
*dlc
);
92 int asoc_simple_startup(struct snd_pcm_substream
*substream
);
93 void asoc_simple_shutdown(struct snd_pcm_substream
*substream
);
94 int asoc_simple_hw_params(struct snd_pcm_substream
*substream
,
95 struct snd_pcm_hw_params
*params
);
96 int asoc_simple_dai_init(struct snd_soc_pcm_runtime
*rtd
);
97 int asoc_simple_be_hw_params_fixup(struct snd_soc_pcm_runtime
*rtd
,
98 struct snd_pcm_hw_params
*params
);
100 #define asoc_simple_parse_cpu(node, dai_link, is_single_link) \
101 asoc_simple_parse_dai(node, dai_link->cpus, is_single_link)
102 #define asoc_simple_parse_codec(node, dai_link) \
103 asoc_simple_parse_dai(node, dai_link->codecs, NULL)
104 #define asoc_simple_parse_platform(node, dai_link) \
105 asoc_simple_parse_dai(node, dai_link->platforms, NULL)
107 #define asoc_simple_parse_tdm(np, dai) \
108 snd_soc_of_parse_tdm_slot(np, &(dai)->tx_slot_mask, \
109 &(dai)->rx_slot_mask, \
113 void asoc_simple_canonicalize_platform(struct snd_soc_dai_link
*dai_link
);
114 void asoc_simple_canonicalize_cpu(struct snd_soc_dai_link
*dai_link
,
115 int is_single_links
);
117 int asoc_simple_clean_reference(struct snd_soc_card
*card
);
119 void asoc_simple_convert_fixup(struct asoc_simple_data
*data
,
120 struct snd_pcm_hw_params
*params
);
121 void asoc_simple_parse_convert(struct device
*dev
,
122 struct device_node
*np
, char *prefix
,
123 struct asoc_simple_data
*data
);
125 int asoc_simple_parse_routing(struct snd_soc_card
*card
,
127 int asoc_simple_parse_widgets(struct snd_soc_card
*card
,
129 int asoc_simple_parse_pin_switches(struct snd_soc_card
*card
,
132 int asoc_simple_init_jack(struct snd_soc_card
*card
,
133 struct asoc_simple_jack
*sjack
,
134 int is_hp
, char *prefix
);
135 int asoc_simple_init_priv(struct asoc_simple_priv
*priv
,
136 struct link_info
*li
);
139 static inline void asoc_simple_debug_dai(struct asoc_simple_priv
*priv
,
141 struct asoc_simple_dai
*dai
)
143 struct device
*dev
= simple_priv_to_dev(priv
);
145 /* dai might be NULL */
150 dev_dbg(dev
, "%s dai name = %s\n",
153 dev_dbg(dev
, "%s sysclk = %d\n",
156 dev_dbg(dev
, "%s direction = %s\n",
157 name
, dai
->clk_direction
? "OUT" : "IN");
160 dev_dbg(dev
, "%s slots = %d\n", name
, dai
->slots
);
162 dev_dbg(dev
, "%s slot width = %d\n", name
, dai
->slot_width
);
163 if (dai
->tx_slot_mask
)
164 dev_dbg(dev
, "%s tx slot mask = %d\n", name
, dai
->tx_slot_mask
);
165 if (dai
->rx_slot_mask
)
166 dev_dbg(dev
, "%s rx slot mask = %d\n", name
, dai
->rx_slot_mask
);
168 dev_dbg(dev
, "%s clk %luHz\n", name
, clk_get_rate(dai
->clk
));
171 static inline void asoc_simple_debug_info(struct asoc_simple_priv
*priv
)
173 struct snd_soc_card
*card
= simple_priv_to_card(priv
);
174 struct device
*dev
= simple_priv_to_dev(priv
);
179 dev_dbg(dev
, "Card Name: %s\n", card
->name
);
181 for (i
= 0; i
< card
->num_links
; i
++) {
182 struct simple_dai_props
*props
= simple_priv_to_props(priv
, i
);
183 struct snd_soc_dai_link
*link
= simple_priv_to_link(priv
, i
);
185 dev_dbg(dev
, "DAI%d\n", i
);
187 asoc_simple_debug_dai(priv
, "cpu", props
->cpu_dai
);
188 asoc_simple_debug_dai(priv
, "codec", props
->codec_dai
);
191 dev_dbg(dev
, "dai name = %s\n", link
->name
);
193 dev_dbg(dev
, "dai format = %04x\n", link
->dai_fmt
);
195 if (props
->adata
.convert_rate
)
196 dev_dbg(dev
, "convert_rate = %d\n",
197 props
->adata
.convert_rate
);
198 if (props
->adata
.convert_channels
)
199 dev_dbg(dev
, "convert_channels = %d\n",
200 props
->adata
.convert_channels
);
201 if (props
->codec_conf
&& props
->codec_conf
->name_prefix
)
202 dev_dbg(dev
, "name prefix = %s\n",
203 props
->codec_conf
->name_prefix
);
205 dev_dbg(dev
, "mclk-fs = %d\n",
210 #define asoc_simple_debug_info(priv)
213 #endif /* __SIMPLE_CARD_UTILS_H */