Loading...
1/* SPDX-License-Identifier: GPL-2.0
2 *
3 * simple_card_utils.h
4 *
5 * Copyright (c) 2016 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 */
7
8#ifndef __SIMPLE_CARD_UTILS_H
9#define __SIMPLE_CARD_UTILS_H
10
11#include <linux/clk.h>
12#include <sound/soc.h>
13
14#define asoc_simple_init_hp(card, sjack, prefix) \
15 asoc_simple_init_jack(card, sjack, 1, prefix, NULL)
16#define asoc_simple_init_mic(card, sjack, prefix) \
17 asoc_simple_init_jack(card, sjack, 0, prefix, NULL)
18
19struct asoc_simple_tdm_width_map {
20 u8 sample_bits;
21 u8 slot_count;
22 u16 slot_width;
23};
24
25struct asoc_simple_dai {
26 const char *name;
27 unsigned int sysclk;
28 int clk_direction;
29 int slots;
30 int slot_width;
31 unsigned int tx_slot_mask;
32 unsigned int rx_slot_mask;
33 struct clk *clk;
34 bool clk_fixed;
35 struct asoc_simple_tdm_width_map *tdm_width_map;
36 int n_tdm_widths;
37};
38
39struct asoc_simple_data {
40 u32 convert_rate;
41 u32 convert_channels;
42 const char *convert_sample_format;
43};
44
45struct asoc_simple_jack {
46 struct snd_soc_jack jack;
47 struct snd_soc_jack_pin pin;
48 struct snd_soc_jack_gpio gpio;
49};
50
51struct prop_nums {
52 int cpus;
53 int codecs;
54 int platforms;
55};
56
57struct asoc_simple_priv {
58 struct snd_soc_card snd_card;
59 struct simple_dai_props {
60 struct asoc_simple_dai *cpu_dai;
61 struct asoc_simple_dai *codec_dai;
62 struct snd_soc_dai_link_component *cpus;
63 struct snd_soc_dai_link_component *codecs;
64 struct snd_soc_dai_link_component *platforms;
65 struct asoc_simple_data adata;
66 struct snd_soc_codec_conf *codec_conf;
67 struct prop_nums num;
68 unsigned int mclk_fs;
69 } *dai_props;
70 struct asoc_simple_jack hp_jack;
71 struct asoc_simple_jack mic_jack;
72 struct snd_soc_dai_link *dai_link;
73 struct asoc_simple_dai *dais;
74 struct snd_soc_dai_link_component *dlcs;
75 struct snd_soc_dai_link_component dummy;
76 struct snd_soc_codec_conf *codec_conf;
77 struct gpio_desc *pa_gpio;
78 const struct snd_soc_ops *ops;
79 unsigned int dpcm_selectable:1;
80 unsigned int force_dpcm:1;
81};
82#define simple_priv_to_card(priv) (&(priv)->snd_card)
83#define simple_priv_to_props(priv, i) ((priv)->dai_props + (i))
84#define simple_priv_to_dev(priv) (simple_priv_to_card(priv)->dev)
85#define simple_priv_to_link(priv, i) (simple_priv_to_card(priv)->dai_link + (i))
86
87#define simple_props_to_dlc_cpu(props, i) ((props)->cpus + i)
88#define simple_props_to_dlc_codec(props, i) ((props)->codecs + i)
89#define simple_props_to_dlc_platform(props, i) ((props)->platforms + i)
90
91#define simple_props_to_dai_cpu(props, i) ((props)->cpu_dai + i)
92#define simple_props_to_dai_codec(props, i) ((props)->codec_dai + i)
93#define simple_props_to_codec_conf(props, i) ((props)->codec_conf + i)
94
95#define for_each_prop_dlc_cpus(props, i, cpu) \
96 for ((i) = 0; \
97 ((i) < (props)->num.cpus) && \
98 ((cpu) = simple_props_to_dlc_cpu(props, i)); \
99 (i)++)
100#define for_each_prop_dlc_codecs(props, i, codec) \
101 for ((i) = 0; \
102 ((i) < (props)->num.codecs) && \
103 ((codec) = simple_props_to_dlc_codec(props, i)); \
104 (i)++)
105#define for_each_prop_dlc_platforms(props, i, platform) \
106 for ((i) = 0; \
107 ((i) < (props)->num.platforms) && \
108 ((platform) = simple_props_to_dlc_platform(props, i)); \
109 (i)++)
110#define for_each_prop_codec_conf(props, i, conf) \
111 for ((i) = 0; \
112 ((i) < (props)->num.codecs) && \
113 (props)->codec_conf && \
114 ((conf) = simple_props_to_codec_conf(props, i)); \
115 (i)++)
116
117#define for_each_prop_dai_cpu(props, i, cpu) \
118 for ((i) = 0; \
119 ((i) < (props)->num.cpus) && \
120 ((cpu) = simple_props_to_dai_cpu(props, i)); \
121 (i)++)
122#define for_each_prop_dai_codec(props, i, codec) \
123 for ((i) = 0; \
124 ((i) < (props)->num.codecs) && \
125 ((codec) = simple_props_to_dai_codec(props, i)); \
126 (i)++)
127
128#define SNDRV_MAX_LINKS 512
129
130struct link_info {
131 int link; /* number of link */
132 int cpu; /* turn for CPU / Codec */
133 struct prop_nums num[SNDRV_MAX_LINKS];
134};
135
136int asoc_simple_parse_daifmt(struct device *dev,
137 struct device_node *node,
138 struct device_node *codec,
139 char *prefix,
140 unsigned int *retfmt);
141int asoc_simple_parse_tdm_width_map(struct device *dev, struct device_node *np,
142 struct asoc_simple_dai *dai);
143
144__printf(3, 4)
145int asoc_simple_set_dailink_name(struct device *dev,
146 struct snd_soc_dai_link *dai_link,
147 const char *fmt, ...);
148int asoc_simple_parse_card_name(struct snd_soc_card *card,
149 char *prefix);
150
151int asoc_simple_parse_clk(struct device *dev,
152 struct device_node *node,
153 struct asoc_simple_dai *simple_dai,
154 struct snd_soc_dai_link_component *dlc);
155int asoc_simple_startup(struct snd_pcm_substream *substream);
156void asoc_simple_shutdown(struct snd_pcm_substream *substream);
157int asoc_simple_hw_params(struct snd_pcm_substream *substream,
158 struct snd_pcm_hw_params *params);
159int asoc_simple_dai_init(struct snd_soc_pcm_runtime *rtd);
160int asoc_simple_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
161 struct snd_pcm_hw_params *params);
162
163#define asoc_simple_parse_tdm(np, dai) \
164 snd_soc_of_parse_tdm_slot(np, &(dai)->tx_slot_mask, \
165 &(dai)->rx_slot_mask, \
166 &(dai)->slots, \
167 &(dai)->slot_width);
168
169void asoc_simple_canonicalize_platform(struct snd_soc_dai_link_component *platforms,
170 struct snd_soc_dai_link_component *cpus);
171void asoc_simple_canonicalize_cpu(struct snd_soc_dai_link_component *cpus,
172 int is_single_links);
173
174void asoc_simple_clean_reference(struct snd_soc_card *card);
175
176void asoc_simple_parse_convert(struct device_node *np, char *prefix,
177 struct asoc_simple_data *data);
178bool asoc_simple_is_convert_required(const struct asoc_simple_data *data);
179
180int asoc_simple_parse_routing(struct snd_soc_card *card,
181 char *prefix);
182int asoc_simple_parse_widgets(struct snd_soc_card *card,
183 char *prefix);
184int asoc_simple_parse_pin_switches(struct snd_soc_card *card,
185 char *prefix);
186
187int asoc_simple_init_jack(struct snd_soc_card *card,
188 struct asoc_simple_jack *sjack,
189 int is_hp, char *prefix, char *pin);
190int asoc_simple_init_priv(struct asoc_simple_priv *priv,
191 struct link_info *li);
192int asoc_simple_remove(struct platform_device *pdev);
193
194int asoc_graph_card_probe(struct snd_soc_card *card);
195int asoc_graph_is_ports0(struct device_node *port);
196
197#ifdef DEBUG
198static inline void asoc_simple_debug_dai(struct asoc_simple_priv *priv,
199 char *name,
200 struct asoc_simple_dai *dai)
201{
202 struct device *dev = simple_priv_to_dev(priv);
203
204 /* dai might be NULL */
205 if (!dai)
206 return;
207
208 if (dai->name)
209 dev_dbg(dev, "%s dai name = %s\n",
210 name, dai->name);
211
212 if (dai->slots)
213 dev_dbg(dev, "%s slots = %d\n", name, dai->slots);
214 if (dai->slot_width)
215 dev_dbg(dev, "%s slot width = %d\n", name, dai->slot_width);
216 if (dai->tx_slot_mask)
217 dev_dbg(dev, "%s tx slot mask = %d\n", name, dai->tx_slot_mask);
218 if (dai->rx_slot_mask)
219 dev_dbg(dev, "%s rx slot mask = %d\n", name, dai->rx_slot_mask);
220 if (dai->clk)
221 dev_dbg(dev, "%s clk %luHz\n", name, clk_get_rate(dai->clk));
222 if (dai->sysclk)
223 dev_dbg(dev, "%s sysclk = %dHz\n",
224 name, dai->sysclk);
225 if (dai->clk || dai->sysclk)
226 dev_dbg(dev, "%s direction = %s\n",
227 name, dai->clk_direction ? "OUT" : "IN");
228}
229
230static inline void asoc_simple_debug_info(struct asoc_simple_priv *priv)
231{
232 struct snd_soc_card *card = simple_priv_to_card(priv);
233 struct device *dev = simple_priv_to_dev(priv);
234
235 int i;
236
237 if (card->name)
238 dev_dbg(dev, "Card Name: %s\n", card->name);
239
240 for (i = 0; i < card->num_links; i++) {
241 struct simple_dai_props *props = simple_priv_to_props(priv, i);
242 struct snd_soc_dai_link *link = simple_priv_to_link(priv, i);
243 struct asoc_simple_dai *dai;
244 struct snd_soc_codec_conf *cnf;
245 int j;
246
247 dev_dbg(dev, "DAI%d\n", i);
248
249 dev_dbg(dev, "cpu num = %d\n", link->num_cpus);
250 for_each_prop_dai_cpu(props, j, dai)
251 asoc_simple_debug_dai(priv, "cpu", dai);
252 dev_dbg(dev, "codec num = %d\n", link->num_codecs);
253 for_each_prop_dai_codec(props, j, dai)
254 asoc_simple_debug_dai(priv, "codec", dai);
255
256 if (link->name)
257 dev_dbg(dev, "dai name = %s\n", link->name);
258 if (link->dai_fmt)
259 dev_dbg(dev, "dai format = %04x\n", link->dai_fmt);
260 if (props->adata.convert_rate)
261 dev_dbg(dev, "convert_rate = %d\n", props->adata.convert_rate);
262 if (props->adata.convert_channels)
263 dev_dbg(dev, "convert_channels = %d\n", props->adata.convert_channels);
264 for_each_prop_codec_conf(props, j, cnf)
265 if (cnf->name_prefix)
266 dev_dbg(dev, "name prefix = %s\n", cnf->name_prefix);
267 if (props->mclk_fs)
268 dev_dbg(dev, "mclk-fs = %d\n", props->mclk_fs);
269 }
270}
271#else
272#define asoc_simple_debug_info(priv)
273#endif /* DEBUG */
274
275#endif /* __SIMPLE_CARD_UTILS_H */
1/* SPDX-License-Identifier: GPL-2.0
2 *
3 * simple_card_utils.h
4 *
5 * Copyright (c) 2016 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 */
7
8#ifndef __SIMPLE_CARD_UTILS_H
9#define __SIMPLE_CARD_UTILS_H
10
11#include <sound/soc.h>
12
13#define asoc_simple_init_hp(card, sjack, prefix) \
14 asoc_simple_init_jack(card, sjack, 1, prefix)
15#define asoc_simple_init_mic(card, sjack, prefix) \
16 asoc_simple_init_jack(card, sjack, 0, prefix)
17
18struct asoc_simple_dai {
19 const char *name;
20 unsigned int sysclk;
21 int clk_direction;
22 int slots;
23 int slot_width;
24 unsigned int tx_slot_mask;
25 unsigned int rx_slot_mask;
26 struct clk *clk;
27};
28
29struct asoc_simple_data {
30 u32 convert_rate;
31 u32 convert_channels;
32};
33
34struct asoc_simple_jack {
35 struct snd_soc_jack jack;
36 struct snd_soc_jack_pin pin;
37 struct snd_soc_jack_gpio gpio;
38};
39
40struct asoc_simple_priv {
41 struct snd_soc_card snd_card;
42 struct simple_dai_props {
43 struct asoc_simple_dai *cpu_dai;
44 struct asoc_simple_dai *codec_dai;
45 struct snd_soc_dai_link_component cpus; /* single cpu */
46 struct snd_soc_dai_link_component codecs; /* single codec */
47 struct snd_soc_dai_link_component platforms;
48 struct asoc_simple_data adata;
49 struct snd_soc_codec_conf *codec_conf;
50 unsigned int mclk_fs;
51 } *dai_props;
52 struct asoc_simple_jack hp_jack;
53 struct asoc_simple_jack mic_jack;
54 struct snd_soc_dai_link *dai_link;
55 struct asoc_simple_dai *dais;
56 struct snd_soc_codec_conf *codec_conf;
57 struct gpio_desc *pa_gpio;
58};
59#define simple_priv_to_card(priv) (&(priv)->snd_card)
60#define simple_priv_to_props(priv, i) ((priv)->dai_props + (i))
61#define simple_priv_to_dev(priv) (simple_priv_to_card(priv)->dev)
62#define simple_priv_to_link(priv, i) (simple_priv_to_card(priv)->dai_link + (i))
63
64struct link_info {
65 int dais; /* number of dai */
66 int link; /* number of link */
67 int conf; /* number of codec_conf */
68 int cpu; /* turn for CPU / Codec */
69};
70
71int asoc_simple_parse_daifmt(struct device *dev,
72 struct device_node *node,
73 struct device_node *codec,
74 char *prefix,
75 unsigned int *retfmt);
76__printf(3, 4)
77int asoc_simple_set_dailink_name(struct device *dev,
78 struct snd_soc_dai_link *dai_link,
79 const char *fmt, ...);
80int asoc_simple_parse_card_name(struct snd_soc_card *card,
81 char *prefix);
82
83#define asoc_simple_parse_clk_cpu(dev, node, dai_link, simple_dai) \
84 asoc_simple_parse_clk(dev, node, simple_dai, dai_link->cpus)
85#define asoc_simple_parse_clk_codec(dev, node, dai_link, simple_dai) \
86 asoc_simple_parse_clk(dev, node, simple_dai, dai_link->codecs)
87int asoc_simple_parse_clk(struct device *dev,
88 struct device_node *node,
89 struct asoc_simple_dai *simple_dai,
90 struct snd_soc_dai_link_component *dlc);
91int asoc_simple_startup(struct snd_pcm_substream *substream);
92void asoc_simple_shutdown(struct snd_pcm_substream *substream);
93int asoc_simple_hw_params(struct snd_pcm_substream *substream,
94 struct snd_pcm_hw_params *params);
95int asoc_simple_dai_init(struct snd_soc_pcm_runtime *rtd);
96int asoc_simple_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
97 struct snd_pcm_hw_params *params);
98
99#define asoc_simple_parse_cpu(node, dai_link, is_single_link) \
100 asoc_simple_parse_dai(node, dai_link->cpus, is_single_link)
101#define asoc_simple_parse_codec(node, dai_link) \
102 asoc_simple_parse_dai(node, dai_link->codecs, NULL)
103#define asoc_simple_parse_platform(node, dai_link) \
104 asoc_simple_parse_dai(node, dai_link->platforms, NULL)
105
106#define asoc_simple_parse_tdm(np, dai) \
107 snd_soc_of_parse_tdm_slot(np, &(dai)->tx_slot_mask, \
108 &(dai)->rx_slot_mask, \
109 &(dai)->slots, \
110 &(dai)->slot_width);
111
112void asoc_simple_canonicalize_platform(struct snd_soc_dai_link *dai_link);
113void asoc_simple_canonicalize_cpu(struct snd_soc_dai_link *dai_link,
114 int is_single_links);
115
116int asoc_simple_clean_reference(struct snd_soc_card *card);
117
118void asoc_simple_convert_fixup(struct asoc_simple_data *data,
119 struct snd_pcm_hw_params *params);
120void asoc_simple_parse_convert(struct device *dev,
121 struct device_node *np, char *prefix,
122 struct asoc_simple_data *data);
123
124int asoc_simple_parse_routing(struct snd_soc_card *card,
125 char *prefix);
126int asoc_simple_parse_widgets(struct snd_soc_card *card,
127 char *prefix);
128int asoc_simple_parse_pin_switches(struct snd_soc_card *card,
129 char *prefix);
130
131int asoc_simple_init_jack(struct snd_soc_card *card,
132 struct asoc_simple_jack *sjack,
133 int is_hp, char *prefix);
134int asoc_simple_init_priv(struct asoc_simple_priv *priv,
135 struct link_info *li);
136
137#ifdef DEBUG
138static inline void asoc_simple_debug_dai(struct asoc_simple_priv *priv,
139 char *name,
140 struct asoc_simple_dai *dai)
141{
142 struct device *dev = simple_priv_to_dev(priv);
143
144 /* dai might be NULL */
145 if (!dai)
146 return;
147
148 if (dai->name)
149 dev_dbg(dev, "%s dai name = %s\n",
150 name, dai->name);
151 if (dai->sysclk)
152 dev_dbg(dev, "%s sysclk = %d\n",
153 name, dai->sysclk);
154
155 dev_dbg(dev, "%s direction = %s\n",
156 name, dai->clk_direction ? "OUT" : "IN");
157
158 if (dai->slots)
159 dev_dbg(dev, "%s slots = %d\n", name, dai->slots);
160 if (dai->slot_width)
161 dev_dbg(dev, "%s slot width = %d\n", name, dai->slot_width);
162 if (dai->tx_slot_mask)
163 dev_dbg(dev, "%s tx slot mask = %d\n", name, dai->tx_slot_mask);
164 if (dai->rx_slot_mask)
165 dev_dbg(dev, "%s rx slot mask = %d\n", name, dai->rx_slot_mask);
166 if (dai->clk)
167 dev_dbg(dev, "%s clk %luHz\n", name, clk_get_rate(dai->clk));
168}
169
170static inline void asoc_simple_debug_info(struct asoc_simple_priv *priv)
171{
172 struct snd_soc_card *card = simple_priv_to_card(priv);
173 struct device *dev = simple_priv_to_dev(priv);
174
175 int i;
176
177 if (card->name)
178 dev_dbg(dev, "Card Name: %s\n", card->name);
179
180 for (i = 0; i < card->num_links; i++) {
181 struct simple_dai_props *props = simple_priv_to_props(priv, i);
182 struct snd_soc_dai_link *link = simple_priv_to_link(priv, i);
183
184 dev_dbg(dev, "DAI%d\n", i);
185
186 asoc_simple_debug_dai(priv, "cpu", props->cpu_dai);
187 asoc_simple_debug_dai(priv, "codec", props->codec_dai);
188
189 if (link->name)
190 dev_dbg(dev, "dai name = %s\n", link->name);
191
192 dev_dbg(dev, "dai format = %04x\n", link->dai_fmt);
193
194 if (props->adata.convert_rate)
195 dev_dbg(dev, "convert_rate = %d\n",
196 props->adata.convert_rate);
197 if (props->adata.convert_channels)
198 dev_dbg(dev, "convert_channels = %d\n",
199 props->adata.convert_channels);
200 if (props->codec_conf && props->codec_conf->name_prefix)
201 dev_dbg(dev, "name prefix = %s\n",
202 props->codec_conf->name_prefix);
203 if (props->mclk_fs)
204 dev_dbg(dev, "mclk-fs = %d\n",
205 props->mclk_fs);
206 }
207}
208#else
209#define asoc_simple_debug_info(priv)
210#endif /* DEBUG */
211
212#endif /* __SIMPLE_CARD_UTILS_H */