blob: 716e4e47228cbc5a1796dfedccae9b261c866bb5 [file] [log] [blame]
Vinod Koul71bb8a12017-12-14 11:19:43 +05301// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2// Copyright(c) 2015-17 Intel Corporation.
3
4/*
5 * Soundwire Intel Master Driver
6 */
7
8#include <linux/acpi.h>
9#include <linux/delay.h>
Paul Gortmaker4abbd782019-04-13 11:12:52 -040010#include <linux/module.h>
Vinod Koul71bb8a12017-12-14 11:19:43 +053011#include <linux/interrupt.h>
12#include <linux/platform_device.h>
Vinod Koul37a2d222018-04-26 18:38:58 +053013#include <sound/pcm_params.h>
14#include <sound/soc.h>
Vinod Koul71bb8a12017-12-14 11:19:43 +053015#include <linux/soundwire/sdw_registers.h>
16#include <linux/soundwire/sdw.h>
17#include <linux/soundwire/sdw_intel.h>
18#include "cadence_master.h"
19#include "intel.h"
20
21/* Intel SHIM Registers Definition */
22#define SDW_SHIM_LCAP 0x0
23#define SDW_SHIM_LCTL 0x4
24#define SDW_SHIM_IPPTR 0x8
25#define SDW_SHIM_SYNC 0xC
26
Pierre-Louis Bossart7cc6e312019-05-01 10:57:39 -050027#define SDW_SHIM_CTLSCAP(x) (0x010 + 0x60 * (x))
28#define SDW_SHIM_CTLS0CM(x) (0x012 + 0x60 * (x))
29#define SDW_SHIM_CTLS1CM(x) (0x014 + 0x60 * (x))
30#define SDW_SHIM_CTLS2CM(x) (0x016 + 0x60 * (x))
31#define SDW_SHIM_CTLS3CM(x) (0x018 + 0x60 * (x))
32#define SDW_SHIM_PCMSCAP(x) (0x020 + 0x60 * (x))
Vinod Koul71bb8a12017-12-14 11:19:43 +053033
Pierre-Louis Bossart7cc6e312019-05-01 10:57:39 -050034#define SDW_SHIM_PCMSYCHM(x, y) (0x022 + (0x60 * (x)) + (0x2 * (y)))
35#define SDW_SHIM_PCMSYCHC(x, y) (0x042 + (0x60 * (x)) + (0x2 * (y)))
36#define SDW_SHIM_PDMSCAP(x) (0x062 + 0x60 * (x))
37#define SDW_SHIM_IOCTL(x) (0x06C + 0x60 * (x))
38#define SDW_SHIM_CTMCTL(x) (0x06E + 0x60 * (x))
Vinod Koul71bb8a12017-12-14 11:19:43 +053039
40#define SDW_SHIM_WAKEEN 0x190
41#define SDW_SHIM_WAKESTS 0x192
42
43#define SDW_SHIM_LCTL_SPA BIT(0)
44#define SDW_SHIM_LCTL_CPA BIT(8)
45
46#define SDW_SHIM_SYNC_SYNCPRD_VAL 0x176F
47#define SDW_SHIM_SYNC_SYNCPRD GENMASK(14, 0)
48#define SDW_SHIM_SYNC_SYNCCPU BIT(15)
49#define SDW_SHIM_SYNC_CMDSYNC_MASK GENMASK(19, 16)
50#define SDW_SHIM_SYNC_CMDSYNC BIT(16)
51#define SDW_SHIM_SYNC_SYNCGO BIT(24)
52
53#define SDW_SHIM_PCMSCAP_ISS GENMASK(3, 0)
54#define SDW_SHIM_PCMSCAP_OSS GENMASK(7, 4)
55#define SDW_SHIM_PCMSCAP_BSS GENMASK(12, 8)
56
57#define SDW_SHIM_PCMSYCM_LCHN GENMASK(3, 0)
58#define SDW_SHIM_PCMSYCM_HCHN GENMASK(7, 4)
59#define SDW_SHIM_PCMSYCM_STREAM GENMASK(13, 8)
60#define SDW_SHIM_PCMSYCM_DIR BIT(15)
61
62#define SDW_SHIM_PDMSCAP_ISS GENMASK(3, 0)
63#define SDW_SHIM_PDMSCAP_OSS GENMASK(7, 4)
64#define SDW_SHIM_PDMSCAP_BSS GENMASK(12, 8)
65#define SDW_SHIM_PDMSCAP_CPSS GENMASK(15, 13)
66
67#define SDW_SHIM_IOCTL_MIF BIT(0)
68#define SDW_SHIM_IOCTL_CO BIT(1)
69#define SDW_SHIM_IOCTL_COE BIT(2)
70#define SDW_SHIM_IOCTL_DO BIT(3)
71#define SDW_SHIM_IOCTL_DOE BIT(4)
72#define SDW_SHIM_IOCTL_BKE BIT(5)
73#define SDW_SHIM_IOCTL_WPDD BIT(6)
74#define SDW_SHIM_IOCTL_CIBD BIT(8)
75#define SDW_SHIM_IOCTL_DIBD BIT(9)
76
77#define SDW_SHIM_CTMCTL_DACTQE BIT(0)
78#define SDW_SHIM_CTMCTL_DODS BIT(1)
79#define SDW_SHIM_CTMCTL_DOAIS GENMASK(4, 3)
80
81#define SDW_SHIM_WAKEEN_ENABLE BIT(0)
82#define SDW_SHIM_WAKESTS_STATUS BIT(0)
83
84/* Intel ALH Register definitions */
Pierre-Louis Bossart7cc6e312019-05-01 10:57:39 -050085#define SDW_ALH_STRMZCFG(x) (0x000 + (0x4 * (x)))
Vinod Koul71bb8a12017-12-14 11:19:43 +053086
87#define SDW_ALH_STRMZCFG_DMAT_VAL 0x3
88#define SDW_ALH_STRMZCFG_DMAT GENMASK(7, 0)
89#define SDW_ALH_STRMZCFG_CHN GENMASK(19, 16)
90
Vinod Koulc46302e2018-04-26 18:39:05 +053091enum intel_pdi_type {
92 INTEL_PDI_IN = 0,
93 INTEL_PDI_OUT = 1,
94 INTEL_PDI_BD = 2,
95};
96
Vinod Koul71bb8a12017-12-14 11:19:43 +053097struct sdw_intel {
98 struct sdw_cdns cdns;
99 int instance;
100 struct sdw_intel_link_res *res;
101};
102
103#define cdns_to_intel(_cdns) container_of(_cdns, struct sdw_intel, cdns)
104
105/*
106 * Read, write helpers for HW registers
107 */
108static inline int intel_readl(void __iomem *base, int offset)
109{
110 return readl(base + offset);
111}
112
113static inline void intel_writel(void __iomem *base, int offset, int value)
114{
115 writel(value, base + offset);
116}
117
118static inline u16 intel_readw(void __iomem *base, int offset)
119{
120 return readw(base + offset);
121}
122
123static inline void intel_writew(void __iomem *base, int offset, u16 value)
124{
125 writew(value, base + offset);
126}
127
128static int intel_clear_bit(void __iomem *base, int offset, u32 value, u32 mask)
129{
130 int timeout = 10;
131 u32 reg_read;
132
133 writel(value, base + offset);
134 do {
135 reg_read = readl(base + offset);
136 if (!(reg_read & mask))
137 return 0;
138
139 timeout--;
140 udelay(50);
141 } while (timeout != 0);
142
143 return -EAGAIN;
144}
145
146static int intel_set_bit(void __iomem *base, int offset, u32 value, u32 mask)
147{
148 int timeout = 10;
149 u32 reg_read;
150
151 writel(value, base + offset);
152 do {
153 reg_read = readl(base + offset);
154 if (reg_read & mask)
155 return 0;
156
157 timeout--;
158 udelay(50);
159 } while (timeout != 0);
160
161 return -EAGAIN;
162}
163
164/*
165 * shim ops
166 */
167
168static int intel_link_power_up(struct sdw_intel *sdw)
169{
170 unsigned int link_id = sdw->instance;
171 void __iomem *shim = sdw->res->shim;
172 int spa_mask, cpa_mask;
173 int link_control, ret;
174
175 /* Link power up sequence */
176 link_control = intel_readl(shim, SDW_SHIM_LCTL);
177 spa_mask = (SDW_SHIM_LCTL_SPA << link_id);
178 cpa_mask = (SDW_SHIM_LCTL_CPA << link_id);
179 link_control |= spa_mask;
180
181 ret = intel_set_bit(shim, SDW_SHIM_LCTL, link_control, cpa_mask);
182 if (ret < 0)
183 return ret;
184
185 sdw->cdns.link_up = true;
186 return 0;
187}
188
189static int intel_shim_init(struct sdw_intel *sdw)
190{
191 void __iomem *shim = sdw->res->shim;
192 unsigned int link_id = sdw->instance;
193 int sync_reg, ret;
194 u16 ioctl = 0, act = 0;
195
196 /* Initialize Shim */
197 ioctl |= SDW_SHIM_IOCTL_BKE;
198 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
199
200 ioctl |= SDW_SHIM_IOCTL_WPDD;
201 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
202
203 ioctl |= SDW_SHIM_IOCTL_DO;
204 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
205
206 ioctl |= SDW_SHIM_IOCTL_DOE;
207 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
208
209 /* Switch to MIP from Glue logic */
210 ioctl = intel_readw(shim, SDW_SHIM_IOCTL(link_id));
211
212 ioctl &= ~(SDW_SHIM_IOCTL_DOE);
213 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
214
215 ioctl &= ~(SDW_SHIM_IOCTL_DO);
216 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
217
218 ioctl |= (SDW_SHIM_IOCTL_MIF);
219 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
220
221 ioctl &= ~(SDW_SHIM_IOCTL_BKE);
222 ioctl &= ~(SDW_SHIM_IOCTL_COE);
223
224 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
225
226 act |= 0x1 << SDW_REG_SHIFT(SDW_SHIM_CTMCTL_DOAIS);
227 act |= SDW_SHIM_CTMCTL_DACTQE;
228 act |= SDW_SHIM_CTMCTL_DODS;
229 intel_writew(shim, SDW_SHIM_CTMCTL(link_id), act);
230
231 /* Now set SyncPRD period */
232 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
233 sync_reg |= (SDW_SHIM_SYNC_SYNCPRD_VAL <<
234 SDW_REG_SHIFT(SDW_SHIM_SYNC_SYNCPRD));
235
236 /* Set SyncCPU bit */
237 sync_reg |= SDW_SHIM_SYNC_SYNCCPU;
238 ret = intel_clear_bit(shim, SDW_SHIM_SYNC, sync_reg,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500239 SDW_SHIM_SYNC_SYNCCPU);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530240 if (ret < 0)
Pierre-Louis Bossart17ed5be2019-05-01 10:57:45 -0500241 dev_err(sdw->cdns.dev, "Failed to set sync period: %d\n", ret);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530242
243 return ret;
244}
245
Vinod Koul37a2d222018-04-26 18:38:58 +0530246/*
247 * PDI routines
248 */
249static void intel_pdi_init(struct sdw_intel *sdw,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500250 struct sdw_cdns_stream_config *config)
Vinod Koul37a2d222018-04-26 18:38:58 +0530251{
252 void __iomem *shim = sdw->res->shim;
253 unsigned int link_id = sdw->instance;
254 int pcm_cap, pdm_cap;
255
256 /* PCM Stream Capability */
257 pcm_cap = intel_readw(shim, SDW_SHIM_PCMSCAP(link_id));
258
259 config->pcm_bd = (pcm_cap & SDW_SHIM_PCMSCAP_BSS) >>
260 SDW_REG_SHIFT(SDW_SHIM_PCMSCAP_BSS);
261 config->pcm_in = (pcm_cap & SDW_SHIM_PCMSCAP_ISS) >>
262 SDW_REG_SHIFT(SDW_SHIM_PCMSCAP_ISS);
263 config->pcm_out = (pcm_cap & SDW_SHIM_PCMSCAP_OSS) >>
264 SDW_REG_SHIFT(SDW_SHIM_PCMSCAP_OSS);
265
Pierre-Louis Bossart121f4362019-05-22 14:47:29 -0500266 dev_dbg(sdw->cdns.dev, "PCM cap bd:%d in:%d out:%d\n",
267 config->pcm_bd, config->pcm_in, config->pcm_out);
268
Vinod Koul37a2d222018-04-26 18:38:58 +0530269 /* PDM Stream Capability */
270 pdm_cap = intel_readw(shim, SDW_SHIM_PDMSCAP(link_id));
271
272 config->pdm_bd = (pdm_cap & SDW_SHIM_PDMSCAP_BSS) >>
273 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_BSS);
274 config->pdm_in = (pdm_cap & SDW_SHIM_PDMSCAP_ISS) >>
275 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_ISS);
276 config->pdm_out = (pdm_cap & SDW_SHIM_PDMSCAP_OSS) >>
277 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_OSS);
Pierre-Louis Bossart121f4362019-05-22 14:47:29 -0500278
279 dev_dbg(sdw->cdns.dev, "PDM cap bd:%d in:%d out:%d\n",
280 config->pdm_bd, config->pdm_in, config->pdm_out);
Vinod Koul37a2d222018-04-26 18:38:58 +0530281}
282
283static int
284intel_pdi_get_ch_cap(struct sdw_intel *sdw, unsigned int pdi_num, bool pcm)
285{
286 void __iomem *shim = sdw->res->shim;
287 unsigned int link_id = sdw->instance;
288 int count;
289
290 if (pcm) {
291 count = intel_readw(shim, SDW_SHIM_PCMSYCHC(link_id, pdi_num));
Pierre-Louis Bossart18046332019-08-05 19:55:07 -0500292
293 /*
294 * WORKAROUND: on all existing Intel controllers, pdi
295 * number 2 reports channel count as 1 even though it
296 * supports 8 channels. Performing hardcoding for pdi
297 * number 2.
298 */
299 if (pdi_num == 2)
300 count = 7;
301
Vinod Koul37a2d222018-04-26 18:38:58 +0530302 } else {
303 count = intel_readw(shim, SDW_SHIM_PDMSCAP(link_id));
304 count = ((count & SDW_SHIM_PDMSCAP_CPSS) >>
305 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_CPSS));
306 }
307
308 /* zero based values for channel count in register */
309 count++;
310
311 return count;
312}
313
314static int intel_pdi_get_ch_update(struct sdw_intel *sdw,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500315 struct sdw_cdns_pdi *pdi,
316 unsigned int num_pdi,
317 unsigned int *num_ch, bool pcm)
Vinod Koul37a2d222018-04-26 18:38:58 +0530318{
319 int i, ch_count = 0;
320
321 for (i = 0; i < num_pdi; i++) {
322 pdi->ch_count = intel_pdi_get_ch_cap(sdw, pdi->num, pcm);
323 ch_count += pdi->ch_count;
324 pdi++;
325 }
326
327 *num_ch = ch_count;
328 return 0;
329}
330
331static int intel_pdi_stream_ch_update(struct sdw_intel *sdw,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500332 struct sdw_cdns_streams *stream, bool pcm)
Vinod Koul37a2d222018-04-26 18:38:58 +0530333{
334 intel_pdi_get_ch_update(sdw, stream->bd, stream->num_bd,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500335 &stream->num_ch_bd, pcm);
Vinod Koul37a2d222018-04-26 18:38:58 +0530336
337 intel_pdi_get_ch_update(sdw, stream->in, stream->num_in,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500338 &stream->num_ch_in, pcm);
Vinod Koul37a2d222018-04-26 18:38:58 +0530339
340 intel_pdi_get_ch_update(sdw, stream->out, stream->num_out,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500341 &stream->num_ch_out, pcm);
Vinod Koul37a2d222018-04-26 18:38:58 +0530342
343 return 0;
344}
345
346static int intel_pdi_ch_update(struct sdw_intel *sdw)
347{
348 /* First update PCM streams followed by PDM streams */
349 intel_pdi_stream_ch_update(sdw, &sdw->cdns.pcm, true);
350 intel_pdi_stream_ch_update(sdw, &sdw->cdns.pdm, false);
351
352 return 0;
353}
354
355static void
356intel_pdi_shim_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
357{
358 void __iomem *shim = sdw->res->shim;
359 unsigned int link_id = sdw->instance;
360 int pdi_conf = 0;
361
362 pdi->intel_alh_id = (link_id * 16) + pdi->num + 5;
363
364 /*
365 * Program stream parameters to stream SHIM register
366 * This is applicable for PCM stream only.
367 */
368 if (pdi->type != SDW_STREAM_PCM)
369 return;
370
371 if (pdi->dir == SDW_DATA_DIR_RX)
372 pdi_conf |= SDW_SHIM_PCMSYCM_DIR;
373 else
374 pdi_conf &= ~(SDW_SHIM_PCMSYCM_DIR);
375
376 pdi_conf |= (pdi->intel_alh_id <<
377 SDW_REG_SHIFT(SDW_SHIM_PCMSYCM_STREAM));
378 pdi_conf |= (pdi->l_ch_num << SDW_REG_SHIFT(SDW_SHIM_PCMSYCM_LCHN));
379 pdi_conf |= (pdi->h_ch_num << SDW_REG_SHIFT(SDW_SHIM_PCMSYCM_HCHN));
380
381 intel_writew(shim, SDW_SHIM_PCMSYCHM(link_id, pdi->num), pdi_conf);
382}
383
384static void
385intel_pdi_alh_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
386{
387 void __iomem *alh = sdw->res->alh;
388 unsigned int link_id = sdw->instance;
389 unsigned int conf;
390
391 pdi->intel_alh_id = (link_id * 16) + pdi->num + 5;
392
393 /* Program Stream config ALH register */
394 conf = intel_readl(alh, SDW_ALH_STRMZCFG(pdi->intel_alh_id));
395
396 conf |= (SDW_ALH_STRMZCFG_DMAT_VAL <<
397 SDW_REG_SHIFT(SDW_ALH_STRMZCFG_DMAT));
398
399 conf |= ((pdi->ch_count - 1) <<
400 SDW_REG_SHIFT(SDW_ALH_STRMZCFG_CHN));
401
402 intel_writel(alh, SDW_ALH_STRMZCFG(pdi->intel_alh_id), conf);
403}
404
Vinod Koulc46302e2018-04-26 18:39:05 +0530405static int intel_config_stream(struct sdw_intel *sdw,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500406 struct snd_pcm_substream *substream,
407 struct snd_soc_dai *dai,
408 struct snd_pcm_hw_params *hw_params, int link_id)
Vinod Koulc46302e2018-04-26 18:39:05 +0530409{
Pierre-Louis Bossart05c8afe42019-08-05 19:55:06 -0500410 struct sdw_intel_link_res *res = sdw->res;
411
412 if (res->ops && res->ops->config_stream && res->arg)
413 return res->ops->config_stream(res->arg,
Vinod Koulc46302e2018-04-26 18:39:05 +0530414 substream, dai, hw_params, link_id);
415
416 return -EIO;
417}
418
419/*
Shreyas NC30246e22018-07-27 14:44:17 +0530420 * bank switch routines
421 */
422
423static int intel_pre_bank_switch(struct sdw_bus *bus)
424{
425 struct sdw_cdns *cdns = bus_to_cdns(bus);
426 struct sdw_intel *sdw = cdns_to_intel(cdns);
427 void __iomem *shim = sdw->res->shim;
428 int sync_reg;
429
430 /* Write to register only for multi-link */
431 if (!bus->multi_link)
432 return 0;
433
434 /* Read SYNC register */
435 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
436 sync_reg |= SDW_SHIM_SYNC_CMDSYNC << sdw->instance;
437 intel_writel(shim, SDW_SHIM_SYNC, sync_reg);
438
439 return 0;
440}
441
442static int intel_post_bank_switch(struct sdw_bus *bus)
443{
444 struct sdw_cdns *cdns = bus_to_cdns(bus);
445 struct sdw_intel *sdw = cdns_to_intel(cdns);
446 void __iomem *shim = sdw->res->shim;
447 int sync_reg, ret;
448
449 /* Write to register only for multi-link */
450 if (!bus->multi_link)
451 return 0;
452
453 /* Read SYNC register */
454 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
455
456 /*
457 * post_bank_switch() ops is called from the bus in loop for
458 * all the Masters in the steam with the expectation that
459 * we trigger the bankswitch for the only first Master in the list
460 * and do nothing for the other Masters
461 *
462 * So, set the SYNCGO bit only if CMDSYNC bit is set for any Master.
463 */
464 if (!(sync_reg & SDW_SHIM_SYNC_CMDSYNC_MASK))
465 return 0;
466
467 /*
468 * Set SyncGO bit to synchronously trigger a bank switch for
469 * all the masters. A write to SYNCGO bit clears CMDSYNC bit for all
470 * the Masters.
471 */
472 sync_reg |= SDW_SHIM_SYNC_SYNCGO;
473
474 ret = intel_clear_bit(shim, SDW_SHIM_SYNC, sync_reg,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500475 SDW_SHIM_SYNC_SYNCGO);
Shreyas NC30246e22018-07-27 14:44:17 +0530476 if (ret < 0)
Pierre-Louis Bossart17ed5be2019-05-01 10:57:45 -0500477 dev_err(sdw->cdns.dev, "Post bank switch failed: %d\n", ret);
Shreyas NC30246e22018-07-27 14:44:17 +0530478
479 return ret;
480}
481
482/*
Vinod Koulc46302e2018-04-26 18:39:05 +0530483 * DAI routines
484 */
485
486static struct sdw_cdns_port *intel_alloc_port(struct sdw_intel *sdw,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500487 u32 ch, u32 dir, bool pcm)
Vinod Koulc46302e2018-04-26 18:39:05 +0530488{
489 struct sdw_cdns *cdns = &sdw->cdns;
490 struct sdw_cdns_port *port = NULL;
491 int i, ret = 0;
492
493 for (i = 0; i < cdns->num_ports; i++) {
Pierre-Louis Bossart2890a632019-05-01 10:57:40 -0500494 if (cdns->ports[i].assigned)
Vinod Koulc46302e2018-04-26 18:39:05 +0530495 continue;
496
497 port = &cdns->ports[i];
498 port->assigned = true;
499 port->direction = dir;
500 port->ch = ch;
501 break;
502 }
503
504 if (!port) {
505 dev_err(cdns->dev, "Unable to find a free port\n");
506 return NULL;
507 }
508
509 if (pcm) {
510 ret = sdw_cdns_alloc_stream(cdns, &cdns->pcm, port, ch, dir);
511 if (ret)
512 goto out;
513
514 intel_pdi_shim_configure(sdw, port->pdi);
515 sdw_cdns_config_stream(cdns, port, ch, dir, port->pdi);
516
517 intel_pdi_alh_configure(sdw, port->pdi);
518
519 } else {
520 ret = sdw_cdns_alloc_stream(cdns, &cdns->pdm, port, ch, dir);
521 }
522
523out:
524 if (ret) {
525 port->assigned = false;
526 port = NULL;
527 }
528
529 return port;
530}
531
532static void intel_port_cleanup(struct sdw_cdns_dma_data *dma)
533{
534 int i;
535
536 for (i = 0; i < dma->nr_ports; i++) {
537 if (dma->port[i]) {
538 dma->port[i]->pdi->assigned = false;
539 dma->port[i]->pdi = NULL;
540 dma->port[i]->assigned = false;
541 dma->port[i] = NULL;
542 }
543 }
544}
545
546static int intel_hw_params(struct snd_pcm_substream *substream,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500547 struct snd_pcm_hw_params *params,
548 struct snd_soc_dai *dai)
Vinod Koulc46302e2018-04-26 18:39:05 +0530549{
550 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
551 struct sdw_intel *sdw = cdns_to_intel(cdns);
552 struct sdw_cdns_dma_data *dma;
553 struct sdw_stream_config sconfig;
554 struct sdw_port_config *pconfig;
555 int ret, i, ch, dir;
556 bool pcm = true;
557
558 dma = snd_soc_dai_get_dma_data(dai, substream);
559 if (!dma)
560 return -EIO;
561
562 ch = params_channels(params);
563 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
564 dir = SDW_DATA_DIR_RX;
565 else
566 dir = SDW_DATA_DIR_TX;
567
568 if (dma->stream_type == SDW_STREAM_PDM) {
569 /* TODO: Check whether PDM decimator is already in use */
570 dma->nr_ports = sdw_cdns_get_stream(cdns, &cdns->pdm, ch, dir);
571 pcm = false;
572 } else {
573 dma->nr_ports = sdw_cdns_get_stream(cdns, &cdns->pcm, ch, dir);
574 }
575
576 if (!dma->nr_ports) {
Pierre-Louis Bossart17ed5be2019-05-01 10:57:45 -0500577 dev_err(dai->dev, "ports/resources not available\n");
Vinod Koulc46302e2018-04-26 18:39:05 +0530578 return -EINVAL;
579 }
580
581 dma->port = kcalloc(dma->nr_ports, sizeof(*dma->port), GFP_KERNEL);
582 if (!dma->port)
583 return -ENOMEM;
584
585 for (i = 0; i < dma->nr_ports; i++) {
586 dma->port[i] = intel_alloc_port(sdw, ch, dir, pcm);
587 if (!dma->port[i]) {
588 ret = -EINVAL;
589 goto port_error;
590 }
591 }
592
593 /* Inform DSP about PDI stream number */
594 for (i = 0; i < dma->nr_ports; i++) {
595 ret = intel_config_stream(sdw, substream, dai, params,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500596 dma->port[i]->pdi->intel_alh_id);
Vinod Koulc46302e2018-04-26 18:39:05 +0530597 if (ret)
598 goto port_error;
599 }
600
601 sconfig.direction = dir;
602 sconfig.ch_count = ch;
603 sconfig.frame_rate = params_rate(params);
604 sconfig.type = dma->stream_type;
605
606 if (dma->stream_type == SDW_STREAM_PDM) {
607 sconfig.frame_rate *= 50;
608 sconfig.bps = 1;
609 } else {
610 sconfig.bps = snd_pcm_format_width(params_format(params));
611 }
612
613 /* Port configuration */
614 pconfig = kcalloc(dma->nr_ports, sizeof(*pconfig), GFP_KERNEL);
615 if (!pconfig) {
616 ret = -ENOMEM;
617 goto port_error;
618 }
619
620 for (i = 0; i < dma->nr_ports; i++) {
621 pconfig[i].num = dma->port[i]->num;
622 pconfig[i].ch_mask = (1 << ch) - 1;
623 }
624
625 ret = sdw_stream_add_master(&cdns->bus, &sconfig,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500626 pconfig, dma->nr_ports, dma->stream);
Vinod Koulc46302e2018-04-26 18:39:05 +0530627 if (ret) {
Pierre-Louis Bossart17ed5be2019-05-01 10:57:45 -0500628 dev_err(cdns->dev, "add master to stream failed:%d\n", ret);
Vinod Koulc46302e2018-04-26 18:39:05 +0530629 goto stream_error;
630 }
631
632 kfree(pconfig);
633 return ret;
634
635stream_error:
636 kfree(pconfig);
637port_error:
638 intel_port_cleanup(dma);
639 kfree(dma->port);
640 return ret;
641}
642
643static int
644intel_hw_free(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
645{
646 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
647 struct sdw_cdns_dma_data *dma;
648 int ret;
649
650 dma = snd_soc_dai_get_dma_data(dai, substream);
651 if (!dma)
652 return -EIO;
653
654 ret = sdw_stream_remove_master(&cdns->bus, dma->stream);
655 if (ret < 0)
Pierre-Louis Bossart17ed5be2019-05-01 10:57:45 -0500656 dev_err(dai->dev, "remove master from stream %s failed: %d\n",
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500657 dma->stream->name, ret);
Vinod Koulc46302e2018-04-26 18:39:05 +0530658
659 intel_port_cleanup(dma);
660 kfree(dma->port);
661 return ret;
662}
663
664static int intel_pcm_set_sdw_stream(struct snd_soc_dai *dai,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500665 void *stream, int direction)
Vinod Koulc46302e2018-04-26 18:39:05 +0530666{
667 return cdns_set_sdw_stream(dai, stream, true, direction);
668}
669
670static int intel_pdm_set_sdw_stream(struct snd_soc_dai *dai,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500671 void *stream, int direction)
Vinod Koulc46302e2018-04-26 18:39:05 +0530672{
673 return cdns_set_sdw_stream(dai, stream, false, direction);
674}
675
Julia Lawallb1635592018-10-27 15:34:42 +0200676static const struct snd_soc_dai_ops intel_pcm_dai_ops = {
Vinod Koulc46302e2018-04-26 18:39:05 +0530677 .hw_params = intel_hw_params,
678 .hw_free = intel_hw_free,
679 .shutdown = sdw_cdns_shutdown,
680 .set_sdw_stream = intel_pcm_set_sdw_stream,
681};
682
Julia Lawallb1635592018-10-27 15:34:42 +0200683static const struct snd_soc_dai_ops intel_pdm_dai_ops = {
Vinod Koulc46302e2018-04-26 18:39:05 +0530684 .hw_params = intel_hw_params,
685 .hw_free = intel_hw_free,
686 .shutdown = sdw_cdns_shutdown,
687 .set_sdw_stream = intel_pdm_set_sdw_stream,
688};
689
690static const struct snd_soc_component_driver dai_component = {
691 .name = "soundwire",
692};
693
694static int intel_create_dai(struct sdw_cdns *cdns,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500695 struct snd_soc_dai_driver *dais,
696 enum intel_pdi_type type,
697 u32 num, u32 off, u32 max_ch, bool pcm)
Vinod Koulc46302e2018-04-26 18:39:05 +0530698{
699 int i;
700
701 if (num == 0)
702 return 0;
703
704 /* TODO: Read supported rates/formats from hardware */
705 for (i = off; i < (off + num); i++) {
706 dais[i].name = kasprintf(GFP_KERNEL, "SDW%d Pin%d",
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500707 cdns->instance, i);
Vinod Koulc46302e2018-04-26 18:39:05 +0530708 if (!dais[i].name)
709 return -ENOMEM;
710
711 if (type == INTEL_PDI_BD || type == INTEL_PDI_OUT) {
Vinod Koul1215dae2019-05-02 16:29:25 +0530712 dais[i].playback.stream_name =
713 kasprintf(GFP_KERNEL, "SDW%d Tx%d",
714 cdns->instance, i);
Vinod Koulc46302e2018-04-26 18:39:05 +0530715 if (!dais[i].playback.stream_name) {
716 kfree(dais[i].name);
717 return -ENOMEM;
718 }
719
720 dais[i].playback.channels_min = 1;
721 dais[i].playback.channels_max = max_ch;
722 dais[i].playback.rates = SNDRV_PCM_RATE_48000;
723 dais[i].playback.formats = SNDRV_PCM_FMTBIT_S16_LE;
724 }
725
726 if (type == INTEL_PDI_BD || type == INTEL_PDI_IN) {
Vinod Koul1215dae2019-05-02 16:29:25 +0530727 dais[i].capture.stream_name =
728 kasprintf(GFP_KERNEL, "SDW%d Rx%d",
729 cdns->instance, i);
Vinod Koulc46302e2018-04-26 18:39:05 +0530730 if (!dais[i].capture.stream_name) {
731 kfree(dais[i].name);
732 kfree(dais[i].playback.stream_name);
733 return -ENOMEM;
734 }
735
Srinivas Kandagatla39194122019-06-06 12:23:04 +0100736 dais[i].capture.channels_min = 1;
737 dais[i].capture.channels_max = max_ch;
Vinod Koulc46302e2018-04-26 18:39:05 +0530738 dais[i].capture.rates = SNDRV_PCM_RATE_48000;
739 dais[i].capture.formats = SNDRV_PCM_FMTBIT_S16_LE;
740 }
741
742 dais[i].id = SDW_DAI_ID_RANGE_START + i;
743
744 if (pcm)
745 dais[i].ops = &intel_pcm_dai_ops;
746 else
747 dais[i].ops = &intel_pdm_dai_ops;
748 }
749
750 return 0;
751}
752
753static int intel_register_dai(struct sdw_intel *sdw)
754{
755 struct sdw_cdns *cdns = &sdw->cdns;
756 struct sdw_cdns_streams *stream;
757 struct snd_soc_dai_driver *dais;
758 int num_dai, ret, off = 0;
759
760 /* DAIs are created based on total number of PDIs supported */
761 num_dai = cdns->pcm.num_pdi + cdns->pdm.num_pdi;
762
763 dais = devm_kcalloc(cdns->dev, num_dai, sizeof(*dais), GFP_KERNEL);
764 if (!dais)
765 return -ENOMEM;
766
767 /* Create PCM DAIs */
768 stream = &cdns->pcm;
769
Vinod Koul1215dae2019-05-02 16:29:25 +0530770 ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, stream->num_in,
771 off, stream->num_ch_in, true);
Vinod Koulc46302e2018-04-26 18:39:05 +0530772 if (ret)
773 return ret;
774
775 off += cdns->pcm.num_in;
Vinod Koul1215dae2019-05-02 16:29:25 +0530776 ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pcm.num_out,
777 off, stream->num_ch_out, true);
Vinod Koulc46302e2018-04-26 18:39:05 +0530778 if (ret)
779 return ret;
780
781 off += cdns->pcm.num_out;
Vinod Koul1215dae2019-05-02 16:29:25 +0530782 ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pcm.num_bd,
783 off, stream->num_ch_bd, true);
Vinod Koulc46302e2018-04-26 18:39:05 +0530784 if (ret)
785 return ret;
786
787 /* Create PDM DAIs */
788 stream = &cdns->pdm;
789 off += cdns->pcm.num_bd;
Vinod Koul1215dae2019-05-02 16:29:25 +0530790 ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, cdns->pdm.num_in,
791 off, stream->num_ch_in, false);
Vinod Koulc46302e2018-04-26 18:39:05 +0530792 if (ret)
793 return ret;
794
795 off += cdns->pdm.num_in;
Vinod Koul1215dae2019-05-02 16:29:25 +0530796 ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pdm.num_out,
797 off, stream->num_ch_out, false);
Vinod Koulc46302e2018-04-26 18:39:05 +0530798 if (ret)
799 return ret;
800
801 off += cdns->pdm.num_bd;
Vinod Koul1215dae2019-05-02 16:29:25 +0530802 ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pdm.num_bd,
803 off, stream->num_ch_bd, false);
Vinod Koulc46302e2018-04-26 18:39:05 +0530804 if (ret)
805 return ret;
806
807 return snd_soc_register_component(cdns->dev, &dai_component,
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500808 dais, num_dai);
Vinod Koulc46302e2018-04-26 18:39:05 +0530809}
810
Vinod Koul71bb8a12017-12-14 11:19:43 +0530811static int intel_prop_read(struct sdw_bus *bus)
812{
813 /* Initialize with default handler to read all DisCo properties */
814 sdw_master_read_prop(bus);
815
Vinod Koul71bb8a12017-12-14 11:19:43 +0530816 return 0;
817}
818
Shreyas NCc91605f2018-04-26 18:38:43 +0530819static struct sdw_master_ops sdw_intel_ops = {
820 .read_prop = sdw_master_read_prop,
821 .xfer_msg = cdns_xfer_msg,
822 .xfer_msg_defer = cdns_xfer_msg_defer,
823 .reset_page_addr = cdns_reset_page_addr,
Vinod Koul07abeff2018-04-26 18:38:48 +0530824 .set_bus_conf = cdns_bus_conf,
Shreyas NC30246e22018-07-27 14:44:17 +0530825 .pre_bank_switch = intel_pre_bank_switch,
826 .post_bank_switch = intel_post_bank_switch,
Shreyas NCc91605f2018-04-26 18:38:43 +0530827};
828
Vinod Koul71bb8a12017-12-14 11:19:43 +0530829/*
830 * probe and init
831 */
832static int intel_probe(struct platform_device *pdev)
833{
Vinod Koul37a2d222018-04-26 18:38:58 +0530834 struct sdw_cdns_stream_config config;
Vinod Koul71bb8a12017-12-14 11:19:43 +0530835 struct sdw_intel *sdw;
836 int ret;
837
838 sdw = devm_kzalloc(&pdev->dev, sizeof(*sdw), GFP_KERNEL);
839 if (!sdw)
840 return -ENOMEM;
841
842 sdw->instance = pdev->id;
843 sdw->res = dev_get_platdata(&pdev->dev);
844 sdw->cdns.dev = &pdev->dev;
845 sdw->cdns.registers = sdw->res->registers;
846 sdw->cdns.instance = sdw->instance;
847 sdw->cdns.msg_count = 0;
848 sdw->cdns.bus.dev = &pdev->dev;
849 sdw->cdns.bus.link_id = pdev->id;
850
851 sdw_cdns_probe(&sdw->cdns);
852
853 /* Set property read ops */
Shreyas NCc91605f2018-04-26 18:38:43 +0530854 sdw_intel_ops.read_prop = intel_prop_read;
855 sdw->cdns.bus.ops = &sdw_intel_ops;
Vinod Koul71bb8a12017-12-14 11:19:43 +0530856
857 platform_set_drvdata(pdev, sdw);
858
859 ret = sdw_add_bus_master(&sdw->cdns.bus);
860 if (ret) {
861 dev_err(&pdev->dev, "sdw_add_bus_master fail: %d\n", ret);
862 goto err_master_reg;
863 }
864
865 /* Initialize shim and controller */
866 intel_link_power_up(sdw);
867 intel_shim_init(sdw);
868
869 ret = sdw_cdns_init(&sdw->cdns);
870 if (ret)
871 goto err_init;
872
Colin Ian King7094dc22018-01-08 22:22:43 +0530873 ret = sdw_cdns_enable_interrupt(&sdw->cdns);
Vinod Koul37a2d222018-04-26 18:38:58 +0530874
875 /* Read the PDI config and initialize cadence PDI */
876 intel_pdi_init(sdw, &config);
877 ret = sdw_cdns_pdi_init(&sdw->cdns, config);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530878 if (ret)
879 goto err_init;
880
Vinod Koul37a2d222018-04-26 18:38:58 +0530881 intel_pdi_ch_update(sdw);
882
Vinod Koul71bb8a12017-12-14 11:19:43 +0530883 /* Acquire IRQ */
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500884 ret = request_threaded_irq(sdw->res->irq, sdw_cdns_irq, sdw_cdns_thread,
885 IRQF_SHARED, KBUILD_MODNAME, &sdw->cdns);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530886 if (ret < 0) {
887 dev_err(sdw->cdns.dev, "unable to grab IRQ %d, disabling device\n",
Pierre-Louis Bossartd542bc92019-05-01 10:57:38 -0500888 sdw->res->irq);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530889 goto err_init;
890 }
891
Vinod Koulc46302e2018-04-26 18:39:05 +0530892 /* Register DAIs */
893 ret = intel_register_dai(sdw);
894 if (ret) {
Pierre-Louis Bossart17ed5be2019-05-01 10:57:45 -0500895 dev_err(sdw->cdns.dev, "DAI registration failed: %d\n", ret);
Vinod Koulc46302e2018-04-26 18:39:05 +0530896 snd_soc_unregister_component(sdw->cdns.dev);
897 goto err_dai;
898 }
899
Vinod Koul71bb8a12017-12-14 11:19:43 +0530900 return 0;
901
Vinod Koulc46302e2018-04-26 18:39:05 +0530902err_dai:
903 free_irq(sdw->res->irq, sdw);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530904err_init:
905 sdw_delete_bus_master(&sdw->cdns.bus);
906err_master_reg:
907 return ret;
908}
909
910static int intel_remove(struct platform_device *pdev)
911{
912 struct sdw_intel *sdw;
913
914 sdw = platform_get_drvdata(pdev);
915
916 free_irq(sdw->res->irq, sdw);
Vinod Koulc46302e2018-04-26 18:39:05 +0530917 snd_soc_unregister_component(sdw->cdns.dev);
Vinod Koul71bb8a12017-12-14 11:19:43 +0530918 sdw_delete_bus_master(&sdw->cdns.bus);
919
920 return 0;
921}
922
923static struct platform_driver sdw_intel_drv = {
924 .probe = intel_probe,
925 .remove = intel_remove,
926 .driver = {
927 .name = "int-sdw",
928
929 },
930};
931
932module_platform_driver(sdw_intel_drv);
933
934MODULE_LICENSE("Dual BSD/GPL");
935MODULE_ALIAS("platform:int-sdw");
936MODULE_DESCRIPTION("Intel Soundwire Master Driver");