1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
//
// Copyright (c) 2026 BayLibre, SAS.
// Author: Valerio Setti <vsetti@baylibre.com>
#include <linux/module.h>
#include <linux/of_platform.h>
#include <linux/regmap.h>
#include <sound/soc.h>
#include "gx-formatter.h"
struct gx_formatter {
struct list_head list;
struct gx_stream *stream;
const struct gx_formatter_driver *drv;
bool enabled;
struct regmap *map;
};
static int gx_formatter_enable(struct gx_formatter *formatter)
{
int ret;
/* Do nothing if the formatter is already enabled */
if (formatter->enabled)
return 0;
/* Setup the stream parameter in the formatter */
if (formatter->drv->ops->prepare) {
ret = formatter->drv->ops->prepare(formatter->map,
formatter->drv->quirks,
formatter->stream);
if (ret)
return ret;
}
/* Finally, actually enable the formatter */
if (formatter->drv->ops->enable)
formatter->drv->ops->enable(formatter->map);
formatter->enabled = true;
return 0;
}
static void gx_formatter_disable(struct gx_formatter *formatter)
{
/* Do nothing if the formatter is already disabled */
if (!formatter->enabled)
return;
if (formatter->drv->ops->disable)
formatter->drv->ops->disable(formatter->map);
formatter->enabled = false;
}
static int gx_formatter_attach(struct gx_formatter *formatter)
{
struct gx_stream *ts = formatter->stream;
int ret = 0;
mutex_lock(&ts->lock);
/* Catch up if the stream is already running when we attach */
if (ts->ready) {
ret = gx_formatter_enable(formatter);
if (ret) {
pr_err("failed to enable formatter\n");
goto out;
}
}
list_add_tail(&formatter->list, &ts->formatter_list);
out:
mutex_unlock(&ts->lock);
return ret;
}
static void gx_formatter_detach(struct gx_formatter *formatter)
{
struct gx_stream *ts = formatter->stream;
if (!ts)
return;
mutex_lock(&ts->lock);
list_del(&formatter->list);
mutex_unlock(&ts->lock);
gx_formatter_disable(formatter);
}
static int gx_formatter_power_up(struct gx_formatter *formatter,
struct snd_soc_dapm_widget *w)
{
struct gx_stream *ts = formatter->drv->ops->get_stream(w);
int ret;
/*
* If we don't get a stream at this stage, it would mean that the
* widget is powering up but is not attached to any backend DAI.
* It should not happen, ever !
*/
if (WARN_ON(!ts))
return -ENODEV;
formatter->stream = ts;
INIT_LIST_HEAD(&formatter->list);
ret = gx_formatter_attach(formatter);
if (ret)
return ret;
return 0;
}
static void gx_formatter_power_down(struct gx_formatter *formatter)
{
gx_formatter_detach(formatter);
formatter->stream = NULL;
}
int gx_formatter_event(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *control,
int event)
{
struct snd_soc_component *c;
struct gx_formatter *formatter;
int ret = 0;
c = snd_soc_dapm_to_component(w->dapm);
if (w->priv)
formatter = w->priv;
else
formatter = snd_soc_component_get_drvdata(c);
switch (event) {
case SND_SOC_DAPM_PRE_PMU:
ret = gx_formatter_power_up(formatter, w);
break;
case SND_SOC_DAPM_PRE_PMD:
gx_formatter_power_down(formatter);
break;
default:
dev_err(c->dev, "Unexpected event %d\n", event);
return -EINVAL;
}
return ret;
}
EXPORT_SYMBOL_GPL(gx_formatter_event);
int gx_formatter_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
const struct gx_formatter_driver *drv;
struct gx_formatter *formatter;
void __iomem *regs;
drv = of_device_get_match_data(dev);
if (!drv) {
dev_err(dev, "failed to match device\n");
return -ENODEV;
}
formatter = devm_kzalloc(dev, sizeof(*formatter), GFP_KERNEL);
if (!formatter)
return -ENOMEM;
platform_set_drvdata(pdev, formatter);
formatter->drv = drv;
regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(regs))
return PTR_ERR(regs);
formatter->map = devm_regmap_init_mmio(dev, regs, drv->regmap_cfg);
if (IS_ERR(formatter->map)) {
dev_err(dev, "failed to init regmap: %ld\n",
PTR_ERR(formatter->map));
return PTR_ERR(formatter->map);
}
return devm_snd_soc_register_component(dev, drv->component_drv,
NULL, 0);
}
EXPORT_SYMBOL_GPL(gx_formatter_probe);
int gx_formatter_create(struct device *dev,
struct snd_soc_dapm_widget *w,
const struct gx_formatter_driver *drv,
struct regmap *regmap)
{
struct gx_formatter *formatter;
formatter = devm_kzalloc(dev, sizeof(*formatter), GFP_KERNEL);
if (!formatter)
return -ENOMEM;
formatter->drv = drv;
formatter->map = regmap;
w->priv = formatter;
return 0;
}
EXPORT_SYMBOL_GPL(gx_formatter_create);
int gx_stream_start(struct gx_stream *ts)
{
struct gx_formatter *formatter;
int ret = 0;
mutex_lock(&ts->lock);
/* Start all the formatters attached to the stream */
list_for_each_entry(formatter, &ts->formatter_list, list) {
ret = gx_formatter_enable(formatter);
if (ret) {
pr_err("failed to enable formatter\n");
goto out;
}
}
ts->ready = true;
out:
mutex_unlock(&ts->lock);
return ret;
}
EXPORT_SYMBOL_GPL(gx_stream_start);
void gx_stream_stop(struct gx_stream *ts)
{
struct gx_formatter *formatter;
mutex_lock(&ts->lock);
ts->ready = false;
/* Stop all the formatters attached to the stream */
list_for_each_entry(formatter, &ts->formatter_list, list) {
gx_formatter_disable(formatter);
}
mutex_unlock(&ts->lock);
}
EXPORT_SYMBOL_GPL(gx_stream_stop);
struct gx_stream *gx_stream_alloc(struct gx_iface *iface)
{
struct gx_stream *ts;
ts = kzalloc(sizeof(*ts), GFP_KERNEL);
if (ts) {
INIT_LIST_HEAD(&ts->formatter_list);
mutex_init(&ts->lock);
ts->iface = iface;
}
return ts;
}
EXPORT_SYMBOL_GPL(gx_stream_alloc);
void gx_stream_free(struct gx_stream *ts)
{
/*
* If the list is not empty, it would mean that one of the formatter
* widget is still powered and attached to the interface while we
* are removing the TDM DAI. It should not be possible
*/
WARN_ON(!list_empty(&ts->formatter_list));
mutex_destroy(&ts->lock);
kfree(ts);
}
EXPORT_SYMBOL_GPL(gx_stream_free);
MODULE_DESCRIPTION("Amlogic GX formatter driver");
MODULE_AUTHOR("Valerio Setti <vsetti@baylibre.com>");
MODULE_LICENSE("GPL");
|