Loading...
1// 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/debugfs.h>
10#include <linux/delay.h>
11#include <linux/io.h>
12#include <sound/pcm_params.h>
13#include <linux/pm_runtime.h>
14#include <sound/soc.h>
15#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 "bus.h"
20#include "intel.h"
21
22
23enum intel_pdi_type {
24 INTEL_PDI_IN = 0,
25 INTEL_PDI_OUT = 1,
26 INTEL_PDI_BD = 2,
27};
28
29#define cdns_to_intel(_cdns) container_of(_cdns, struct sdw_intel, cdns)
30
31/*
32 * Read, write helpers for HW registers
33 */
34static inline int intel_readl(void __iomem *base, int offset)
35{
36 return readl(base + offset);
37}
38
39static inline void intel_writel(void __iomem *base, int offset, int value)
40{
41 writel(value, base + offset);
42}
43
44static inline u16 intel_readw(void __iomem *base, int offset)
45{
46 return readw(base + offset);
47}
48
49static inline void intel_writew(void __iomem *base, int offset, u16 value)
50{
51 writew(value, base + offset);
52}
53
54static int intel_wait_bit(void __iomem *base, int offset, u32 mask, u32 target)
55{
56 int timeout = 10;
57 u32 reg_read;
58
59 do {
60 reg_read = readl(base + offset);
61 if ((reg_read & mask) == target)
62 return 0;
63
64 timeout--;
65 usleep_range(50, 100);
66 } while (timeout != 0);
67
68 return -EAGAIN;
69}
70
71static int intel_clear_bit(void __iomem *base, int offset, u32 value, u32 mask)
72{
73 writel(value, base + offset);
74 return intel_wait_bit(base, offset, mask, 0);
75}
76
77static int intel_set_bit(void __iomem *base, int offset, u32 value, u32 mask)
78{
79 writel(value, base + offset);
80 return intel_wait_bit(base, offset, mask, mask);
81}
82
83/*
84 * debugfs
85 */
86#ifdef CONFIG_DEBUG_FS
87
88#define RD_BUF (2 * PAGE_SIZE)
89
90static ssize_t intel_sprintf(void __iomem *mem, bool l,
91 char *buf, size_t pos, unsigned int reg)
92{
93 int value;
94
95 if (l)
96 value = intel_readl(mem, reg);
97 else
98 value = intel_readw(mem, reg);
99
100 return scnprintf(buf + pos, RD_BUF - pos, "%4x\t%4x\n", reg, value);
101}
102
103static int intel_reg_show(struct seq_file *s_file, void *data)
104{
105 struct sdw_intel *sdw = s_file->private;
106 void __iomem *s = sdw->link_res->shim;
107 void __iomem *a = sdw->link_res->alh;
108 char *buf;
109 ssize_t ret;
110 int i, j;
111 unsigned int links, reg;
112
113 buf = kzalloc(RD_BUF, GFP_KERNEL);
114 if (!buf)
115 return -ENOMEM;
116
117 links = intel_readl(s, SDW_SHIM_LCAP) & SDW_SHIM_LCAP_LCOUNT_MASK;
118
119 ret = scnprintf(buf, RD_BUF, "Register Value\n");
120 ret += scnprintf(buf + ret, RD_BUF - ret, "\nShim\n");
121
122 for (i = 0; i < links; i++) {
123 reg = SDW_SHIM_LCAP + i * 4;
124 ret += intel_sprintf(s, true, buf, ret, reg);
125 }
126
127 for (i = 0; i < links; i++) {
128 ret += scnprintf(buf + ret, RD_BUF - ret, "\nLink%d\n", i);
129 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLSCAP(i));
130 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS0CM(i));
131 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS1CM(i));
132 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS2CM(i));
133 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS3CM(i));
134 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_PCMSCAP(i));
135
136 ret += scnprintf(buf + ret, RD_BUF - ret, "\n PCMSyCH registers\n");
137
138 /*
139 * the value 10 is the number of PDIs. We will need a
140 * cleanup to remove hard-coded Intel configurations
141 * from cadence_master.c
142 */
143 for (j = 0; j < 10; j++) {
144 ret += intel_sprintf(s, false, buf, ret,
145 SDW_SHIM_PCMSYCHM(i, j));
146 ret += intel_sprintf(s, false, buf, ret,
147 SDW_SHIM_PCMSYCHC(i, j));
148 }
149 ret += scnprintf(buf + ret, RD_BUF - ret, "\n IOCTL, CTMCTL\n");
150
151 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_IOCTL(i));
152 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTMCTL(i));
153 }
154
155 ret += scnprintf(buf + ret, RD_BUF - ret, "\nWake registers\n");
156 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_WAKEEN);
157 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_WAKESTS);
158
159 ret += scnprintf(buf + ret, RD_BUF - ret, "\nALH STRMzCFG\n");
160 for (i = 0; i < SDW_ALH_NUM_STREAMS; i++)
161 ret += intel_sprintf(a, true, buf, ret, SDW_ALH_STRMZCFG(i));
162
163 seq_printf(s_file, "%s", buf);
164 kfree(buf);
165
166 return 0;
167}
168DEFINE_SHOW_ATTRIBUTE(intel_reg);
169
170static int intel_set_m_datamode(void *data, u64 value)
171{
172 struct sdw_intel *sdw = data;
173 struct sdw_bus *bus = &sdw->cdns.bus;
174
175 if (value > SDW_PORT_DATA_MODE_STATIC_1)
176 return -EINVAL;
177
178 /* Userspace changed the hardware state behind the kernel's back */
179 add_taint(TAINT_USER, LOCKDEP_STILL_OK);
180
181 bus->params.m_data_mode = value;
182
183 return 0;
184}
185DEFINE_DEBUGFS_ATTRIBUTE(intel_set_m_datamode_fops, NULL,
186 intel_set_m_datamode, "%llu\n");
187
188static int intel_set_s_datamode(void *data, u64 value)
189{
190 struct sdw_intel *sdw = data;
191 struct sdw_bus *bus = &sdw->cdns.bus;
192
193 if (value > SDW_PORT_DATA_MODE_STATIC_1)
194 return -EINVAL;
195
196 /* Userspace changed the hardware state behind the kernel's back */
197 add_taint(TAINT_USER, LOCKDEP_STILL_OK);
198
199 bus->params.s_data_mode = value;
200
201 return 0;
202}
203DEFINE_DEBUGFS_ATTRIBUTE(intel_set_s_datamode_fops, NULL,
204 intel_set_s_datamode, "%llu\n");
205
206static void intel_debugfs_init(struct sdw_intel *sdw)
207{
208 struct dentry *root = sdw->cdns.bus.debugfs;
209
210 if (!root)
211 return;
212
213 sdw->debugfs = debugfs_create_dir("intel-sdw", root);
214
215 debugfs_create_file("intel-registers", 0400, sdw->debugfs, sdw,
216 &intel_reg_fops);
217
218 debugfs_create_file("intel-m-datamode", 0200, sdw->debugfs, sdw,
219 &intel_set_m_datamode_fops);
220
221 debugfs_create_file("intel-s-datamode", 0200, sdw->debugfs, sdw,
222 &intel_set_s_datamode_fops);
223
224 sdw_cdns_debugfs_init(&sdw->cdns, sdw->debugfs);
225}
226
227static void intel_debugfs_exit(struct sdw_intel *sdw)
228{
229 debugfs_remove_recursive(sdw->debugfs);
230}
231#else
232static void intel_debugfs_init(struct sdw_intel *sdw) {}
233static void intel_debugfs_exit(struct sdw_intel *sdw) {}
234#endif /* CONFIG_DEBUG_FS */
235
236/*
237 * shim ops
238 */
239/* this needs to be called with shim_lock */
240static void intel_shim_glue_to_master_ip(struct sdw_intel *sdw)
241{
242 void __iomem *shim = sdw->link_res->shim;
243 unsigned int link_id = sdw->instance;
244 u16 ioctl;
245
246 /* Switch to MIP from Glue logic */
247 ioctl = intel_readw(shim, SDW_SHIM_IOCTL(link_id));
248
249 ioctl &= ~(SDW_SHIM_IOCTL_DOE);
250 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
251 usleep_range(10, 15);
252
253 ioctl &= ~(SDW_SHIM_IOCTL_DO);
254 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
255 usleep_range(10, 15);
256
257 ioctl |= (SDW_SHIM_IOCTL_MIF);
258 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
259 usleep_range(10, 15);
260
261 ioctl &= ~(SDW_SHIM_IOCTL_BKE);
262 ioctl &= ~(SDW_SHIM_IOCTL_COE);
263 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
264 usleep_range(10, 15);
265
266 /* at this point Master IP has full control of the I/Os */
267}
268
269/* this needs to be called with shim_lock */
270static void intel_shim_master_ip_to_glue(struct sdw_intel *sdw)
271{
272 unsigned int link_id = sdw->instance;
273 void __iomem *shim = sdw->link_res->shim;
274 u16 ioctl;
275
276 /* Glue logic */
277 ioctl = intel_readw(shim, SDW_SHIM_IOCTL(link_id));
278 ioctl |= SDW_SHIM_IOCTL_BKE;
279 ioctl |= SDW_SHIM_IOCTL_COE;
280 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
281 usleep_range(10, 15);
282
283 ioctl &= ~(SDW_SHIM_IOCTL_MIF);
284 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
285 usleep_range(10, 15);
286
287 /* at this point Integration Glue has full control of the I/Os */
288}
289
290/* this needs to be called with shim_lock */
291static void intel_shim_init(struct sdw_intel *sdw)
292{
293 void __iomem *shim = sdw->link_res->shim;
294 unsigned int link_id = sdw->instance;
295 u16 ioctl = 0, act = 0;
296
297 /* Initialize Shim */
298 ioctl |= SDW_SHIM_IOCTL_BKE;
299 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
300 usleep_range(10, 15);
301
302 ioctl |= SDW_SHIM_IOCTL_WPDD;
303 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
304 usleep_range(10, 15);
305
306 ioctl |= SDW_SHIM_IOCTL_DO;
307 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
308 usleep_range(10, 15);
309
310 ioctl |= SDW_SHIM_IOCTL_DOE;
311 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
312 usleep_range(10, 15);
313
314 intel_shim_glue_to_master_ip(sdw);
315
316 u16p_replace_bits(&act, 0x1, SDW_SHIM_CTMCTL_DOAIS);
317 act |= SDW_SHIM_CTMCTL_DACTQE;
318 act |= SDW_SHIM_CTMCTL_DODS;
319 intel_writew(shim, SDW_SHIM_CTMCTL(link_id), act);
320 usleep_range(10, 15);
321}
322
323static int intel_shim_check_wake(struct sdw_intel *sdw)
324{
325 void __iomem *shim;
326 u16 wake_sts;
327
328 shim = sdw->link_res->shim;
329 wake_sts = intel_readw(shim, SDW_SHIM_WAKESTS);
330
331 return wake_sts & BIT(sdw->instance);
332}
333
334static void intel_shim_wake(struct sdw_intel *sdw, bool wake_enable)
335{
336 void __iomem *shim = sdw->link_res->shim;
337 unsigned int link_id = sdw->instance;
338 u16 wake_en, wake_sts;
339
340 mutex_lock(sdw->link_res->shim_lock);
341 wake_en = intel_readw(shim, SDW_SHIM_WAKEEN);
342
343 if (wake_enable) {
344 /* Enable the wakeup */
345 wake_en |= (SDW_SHIM_WAKEEN_ENABLE << link_id);
346 intel_writew(shim, SDW_SHIM_WAKEEN, wake_en);
347 } else {
348 /* Disable the wake up interrupt */
349 wake_en &= ~(SDW_SHIM_WAKEEN_ENABLE << link_id);
350 intel_writew(shim, SDW_SHIM_WAKEEN, wake_en);
351
352 /* Clear wake status */
353 wake_sts = intel_readw(shim, SDW_SHIM_WAKESTS);
354 wake_sts |= (SDW_SHIM_WAKESTS_STATUS << link_id);
355 intel_writew(shim, SDW_SHIM_WAKESTS, wake_sts);
356 }
357 mutex_unlock(sdw->link_res->shim_lock);
358}
359
360static int intel_link_power_up(struct sdw_intel *sdw)
361{
362 unsigned int link_id = sdw->instance;
363 void __iomem *shim = sdw->link_res->shim;
364 u32 *shim_mask = sdw->link_res->shim_mask;
365 struct sdw_bus *bus = &sdw->cdns.bus;
366 struct sdw_master_prop *prop = &bus->prop;
367 u32 spa_mask, cpa_mask;
368 u32 link_control;
369 int ret = 0;
370 u32 syncprd;
371 u32 sync_reg;
372
373 mutex_lock(sdw->link_res->shim_lock);
374
375 /*
376 * The hardware relies on an internal counter, typically 4kHz,
377 * to generate the SoundWire SSP - which defines a 'safe'
378 * synchronization point between commands and audio transport
379 * and allows for multi link synchronization. The SYNCPRD value
380 * is only dependent on the oscillator clock provided to
381 * the IP, so adjust based on _DSD properties reported in DSDT
382 * tables. The values reported are based on either 24MHz
383 * (CNL/CML) or 38.4 MHz (ICL/TGL+).
384 */
385 if (prop->mclk_freq % 6000000)
386 syncprd = SDW_SHIM_SYNC_SYNCPRD_VAL_38_4;
387 else
388 syncprd = SDW_SHIM_SYNC_SYNCPRD_VAL_24;
389
390 if (!*shim_mask) {
391 dev_dbg(sdw->cdns.dev, "powering up all links\n");
392
393 /* we first need to program the SyncPRD/CPU registers */
394 dev_dbg(sdw->cdns.dev,
395 "first link up, programming SYNCPRD\n");
396
397 /* set SyncPRD period */
398 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
399 u32p_replace_bits(&sync_reg, syncprd, SDW_SHIM_SYNC_SYNCPRD);
400
401 /* Set SyncCPU bit */
402 sync_reg |= SDW_SHIM_SYNC_SYNCCPU;
403 intel_writel(shim, SDW_SHIM_SYNC, sync_reg);
404
405 /* Link power up sequence */
406 link_control = intel_readl(shim, SDW_SHIM_LCTL);
407
408 /* only power-up enabled links */
409 spa_mask = FIELD_PREP(SDW_SHIM_LCTL_SPA_MASK, sdw->link_res->link_mask);
410 cpa_mask = FIELD_PREP(SDW_SHIM_LCTL_CPA_MASK, sdw->link_res->link_mask);
411
412 link_control |= spa_mask;
413
414 ret = intel_set_bit(shim, SDW_SHIM_LCTL, link_control, cpa_mask);
415 if (ret < 0) {
416 dev_err(sdw->cdns.dev, "Failed to power up link: %d\n", ret);
417 goto out;
418 }
419
420 /* SyncCPU will change once link is active */
421 ret = intel_wait_bit(shim, SDW_SHIM_SYNC,
422 SDW_SHIM_SYNC_SYNCCPU, 0);
423 if (ret < 0) {
424 dev_err(sdw->cdns.dev,
425 "Failed to set SHIM_SYNC: %d\n", ret);
426 goto out;
427 }
428 }
429
430 *shim_mask |= BIT(link_id);
431
432 sdw->cdns.link_up = true;
433
434 intel_shim_init(sdw);
435
436out:
437 mutex_unlock(sdw->link_res->shim_lock);
438
439 return ret;
440}
441
442static int intel_link_power_down(struct sdw_intel *sdw)
443{
444 u32 link_control, spa_mask, cpa_mask;
445 unsigned int link_id = sdw->instance;
446 void __iomem *shim = sdw->link_res->shim;
447 u32 *shim_mask = sdw->link_res->shim_mask;
448 int ret = 0;
449
450 mutex_lock(sdw->link_res->shim_lock);
451
452 if (!(*shim_mask & BIT(link_id)))
453 dev_err(sdw->cdns.dev,
454 "%s: Unbalanced power-up/down calls\n", __func__);
455
456 sdw->cdns.link_up = false;
457
458 intel_shim_master_ip_to_glue(sdw);
459
460 *shim_mask &= ~BIT(link_id);
461
462 if (!*shim_mask) {
463
464 dev_dbg(sdw->cdns.dev, "powering down all links\n");
465
466 /* Link power down sequence */
467 link_control = intel_readl(shim, SDW_SHIM_LCTL);
468
469 /* only power-down enabled links */
470 spa_mask = FIELD_PREP(SDW_SHIM_LCTL_SPA_MASK, ~sdw->link_res->link_mask);
471 cpa_mask = FIELD_PREP(SDW_SHIM_LCTL_CPA_MASK, sdw->link_res->link_mask);
472
473 link_control &= spa_mask;
474
475 ret = intel_clear_bit(shim, SDW_SHIM_LCTL, link_control, cpa_mask);
476 if (ret < 0) {
477 dev_err(sdw->cdns.dev, "%s: could not power down link\n", __func__);
478
479 /*
480 * we leave the sdw->cdns.link_up flag as false since we've disabled
481 * the link at this point and cannot handle interrupts any longer.
482 */
483 }
484 }
485
486 mutex_unlock(sdw->link_res->shim_lock);
487
488 return ret;
489}
490
491static void intel_shim_sync_arm(struct sdw_intel *sdw)
492{
493 void __iomem *shim = sdw->link_res->shim;
494 u32 sync_reg;
495
496 mutex_lock(sdw->link_res->shim_lock);
497
498 /* update SYNC register */
499 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
500 sync_reg |= (SDW_SHIM_SYNC_CMDSYNC << sdw->instance);
501 intel_writel(shim, SDW_SHIM_SYNC, sync_reg);
502
503 mutex_unlock(sdw->link_res->shim_lock);
504}
505
506static int intel_shim_sync_go_unlocked(struct sdw_intel *sdw)
507{
508 void __iomem *shim = sdw->link_res->shim;
509 u32 sync_reg;
510 int ret;
511
512 /* Read SYNC register */
513 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
514
515 /*
516 * Set SyncGO bit to synchronously trigger a bank switch for
517 * all the masters. A write to SYNCGO bit clears CMDSYNC bit for all
518 * the Masters.
519 */
520 sync_reg |= SDW_SHIM_SYNC_SYNCGO;
521
522 ret = intel_clear_bit(shim, SDW_SHIM_SYNC, sync_reg,
523 SDW_SHIM_SYNC_SYNCGO);
524
525 if (ret < 0)
526 dev_err(sdw->cdns.dev, "SyncGO clear failed: %d\n", ret);
527
528 return ret;
529}
530
531static int intel_shim_sync_go(struct sdw_intel *sdw)
532{
533 int ret;
534
535 mutex_lock(sdw->link_res->shim_lock);
536
537 ret = intel_shim_sync_go_unlocked(sdw);
538
539 mutex_unlock(sdw->link_res->shim_lock);
540
541 return ret;
542}
543
544/*
545 * PDI routines
546 */
547static void intel_pdi_init(struct sdw_intel *sdw,
548 struct sdw_cdns_stream_config *config)
549{
550 void __iomem *shim = sdw->link_res->shim;
551 unsigned int link_id = sdw->instance;
552 int pcm_cap;
553
554 /* PCM Stream Capability */
555 pcm_cap = intel_readw(shim, SDW_SHIM_PCMSCAP(link_id));
556
557 config->pcm_bd = FIELD_GET(SDW_SHIM_PCMSCAP_BSS, pcm_cap);
558 config->pcm_in = FIELD_GET(SDW_SHIM_PCMSCAP_ISS, pcm_cap);
559 config->pcm_out = FIELD_GET(SDW_SHIM_PCMSCAP_OSS, pcm_cap);
560
561 dev_dbg(sdw->cdns.dev, "PCM cap bd:%d in:%d out:%d\n",
562 config->pcm_bd, config->pcm_in, config->pcm_out);
563}
564
565static int
566intel_pdi_get_ch_cap(struct sdw_intel *sdw, unsigned int pdi_num)
567{
568 void __iomem *shim = sdw->link_res->shim;
569 unsigned int link_id = sdw->instance;
570 int count;
571
572 count = intel_readw(shim, SDW_SHIM_PCMSYCHC(link_id, pdi_num));
573
574 /*
575 * WORKAROUND: on all existing Intel controllers, pdi
576 * number 2 reports channel count as 1 even though it
577 * supports 8 channels. Performing hardcoding for pdi
578 * number 2.
579 */
580 if (pdi_num == 2)
581 count = 7;
582
583 /* zero based values for channel count in register */
584 count++;
585
586 return count;
587}
588
589static int intel_pdi_get_ch_update(struct sdw_intel *sdw,
590 struct sdw_cdns_pdi *pdi,
591 unsigned int num_pdi,
592 unsigned int *num_ch)
593{
594 int i, ch_count = 0;
595
596 for (i = 0; i < num_pdi; i++) {
597 pdi->ch_count = intel_pdi_get_ch_cap(sdw, pdi->num);
598 ch_count += pdi->ch_count;
599 pdi++;
600 }
601
602 *num_ch = ch_count;
603 return 0;
604}
605
606static int intel_pdi_stream_ch_update(struct sdw_intel *sdw,
607 struct sdw_cdns_streams *stream)
608{
609 intel_pdi_get_ch_update(sdw, stream->bd, stream->num_bd,
610 &stream->num_ch_bd);
611
612 intel_pdi_get_ch_update(sdw, stream->in, stream->num_in,
613 &stream->num_ch_in);
614
615 intel_pdi_get_ch_update(sdw, stream->out, stream->num_out,
616 &stream->num_ch_out);
617
618 return 0;
619}
620
621static int intel_pdi_ch_update(struct sdw_intel *sdw)
622{
623 intel_pdi_stream_ch_update(sdw, &sdw->cdns.pcm);
624
625 return 0;
626}
627
628static void
629intel_pdi_shim_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
630{
631 void __iomem *shim = sdw->link_res->shim;
632 unsigned int link_id = sdw->instance;
633 int pdi_conf = 0;
634
635 /* the Bulk and PCM streams are not contiguous */
636 pdi->intel_alh_id = (link_id * 16) + pdi->num + 3;
637 if (pdi->num >= 2)
638 pdi->intel_alh_id += 2;
639
640 /*
641 * Program stream parameters to stream SHIM register
642 * This is applicable for PCM stream only.
643 */
644 if (pdi->type != SDW_STREAM_PCM)
645 return;
646
647 if (pdi->dir == SDW_DATA_DIR_RX)
648 pdi_conf |= SDW_SHIM_PCMSYCM_DIR;
649 else
650 pdi_conf &= ~(SDW_SHIM_PCMSYCM_DIR);
651
652 u32p_replace_bits(&pdi_conf, pdi->intel_alh_id, SDW_SHIM_PCMSYCM_STREAM);
653 u32p_replace_bits(&pdi_conf, pdi->l_ch_num, SDW_SHIM_PCMSYCM_LCHN);
654 u32p_replace_bits(&pdi_conf, pdi->h_ch_num, SDW_SHIM_PCMSYCM_HCHN);
655
656 intel_writew(shim, SDW_SHIM_PCMSYCHM(link_id, pdi->num), pdi_conf);
657}
658
659static void
660intel_pdi_alh_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
661{
662 void __iomem *alh = sdw->link_res->alh;
663 unsigned int link_id = sdw->instance;
664 unsigned int conf;
665
666 /* the Bulk and PCM streams are not contiguous */
667 pdi->intel_alh_id = (link_id * 16) + pdi->num + 3;
668 if (pdi->num >= 2)
669 pdi->intel_alh_id += 2;
670
671 /* Program Stream config ALH register */
672 conf = intel_readl(alh, SDW_ALH_STRMZCFG(pdi->intel_alh_id));
673
674 u32p_replace_bits(&conf, SDW_ALH_STRMZCFG_DMAT_VAL, SDW_ALH_STRMZCFG_DMAT);
675 u32p_replace_bits(&conf, pdi->ch_count - 1, SDW_ALH_STRMZCFG_CHN);
676
677 intel_writel(alh, SDW_ALH_STRMZCFG(pdi->intel_alh_id), conf);
678}
679
680static int intel_params_stream(struct sdw_intel *sdw,
681 int stream,
682 struct snd_soc_dai *dai,
683 struct snd_pcm_hw_params *hw_params,
684 int link_id, int alh_stream_id)
685{
686 struct sdw_intel_link_res *res = sdw->link_res;
687 struct sdw_intel_stream_params_data params_data;
688
689 params_data.stream = stream; /* direction */
690 params_data.dai = dai;
691 params_data.hw_params = hw_params;
692 params_data.link_id = link_id;
693 params_data.alh_stream_id = alh_stream_id;
694
695 if (res->ops && res->ops->params_stream && res->dev)
696 return res->ops->params_stream(res->dev,
697 ¶ms_data);
698 return -EIO;
699}
700
701static int intel_free_stream(struct sdw_intel *sdw,
702 int stream,
703 struct snd_soc_dai *dai,
704 int link_id)
705{
706 struct sdw_intel_link_res *res = sdw->link_res;
707 struct sdw_intel_stream_free_data free_data;
708
709 free_data.stream = stream; /* direction */
710 free_data.dai = dai;
711 free_data.link_id = link_id;
712
713 if (res->ops && res->ops->free_stream && res->dev)
714 return res->ops->free_stream(res->dev,
715 &free_data);
716
717 return 0;
718}
719
720/*
721 * bank switch routines
722 */
723
724static int intel_pre_bank_switch(struct sdw_intel *sdw)
725{
726 struct sdw_cdns *cdns = &sdw->cdns;
727 struct sdw_bus *bus = &cdns->bus;
728
729 /* Write to register only for multi-link */
730 if (!bus->multi_link)
731 return 0;
732
733 intel_shim_sync_arm(sdw);
734
735 return 0;
736}
737
738static int intel_post_bank_switch(struct sdw_intel *sdw)
739{
740 struct sdw_cdns *cdns = &sdw->cdns;
741 struct sdw_bus *bus = &cdns->bus;
742 void __iomem *shim = sdw->link_res->shim;
743 int sync_reg, ret;
744
745 /* Write to register only for multi-link */
746 if (!bus->multi_link)
747 return 0;
748
749 mutex_lock(sdw->link_res->shim_lock);
750
751 /* Read SYNC register */
752 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
753
754 /*
755 * post_bank_switch() ops is called from the bus in loop for
756 * all the Masters in the steam with the expectation that
757 * we trigger the bankswitch for the only first Master in the list
758 * and do nothing for the other Masters
759 *
760 * So, set the SYNCGO bit only if CMDSYNC bit is set for any Master.
761 */
762 if (!(sync_reg & SDW_SHIM_SYNC_CMDSYNC_MASK)) {
763 ret = 0;
764 goto unlock;
765 }
766
767 ret = intel_shim_sync_go_unlocked(sdw);
768unlock:
769 mutex_unlock(sdw->link_res->shim_lock);
770
771 if (ret < 0)
772 dev_err(sdw->cdns.dev, "Post bank switch failed: %d\n", ret);
773
774 return ret;
775}
776
777/*
778 * DAI routines
779 */
780
781static int intel_startup(struct snd_pcm_substream *substream,
782 struct snd_soc_dai *dai)
783{
784 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
785 int ret;
786
787 ret = pm_runtime_resume_and_get(cdns->dev);
788 if (ret < 0 && ret != -EACCES) {
789 dev_err_ratelimited(cdns->dev,
790 "pm_runtime_resume_and_get failed in %s, ret %d\n",
791 __func__, ret);
792 return ret;
793 }
794 return 0;
795}
796
797static int intel_hw_params(struct snd_pcm_substream *substream,
798 struct snd_pcm_hw_params *params,
799 struct snd_soc_dai *dai)
800{
801 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
802 struct sdw_intel *sdw = cdns_to_intel(cdns);
803 struct sdw_cdns_dai_runtime *dai_runtime;
804 struct sdw_cdns_pdi *pdi;
805 struct sdw_stream_config sconfig;
806 struct sdw_port_config *pconfig;
807 int ch, dir;
808 int ret;
809
810 dai_runtime = cdns->dai_runtime_array[dai->id];
811 if (!dai_runtime)
812 return -EIO;
813
814 ch = params_channels(params);
815 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
816 dir = SDW_DATA_DIR_RX;
817 else
818 dir = SDW_DATA_DIR_TX;
819
820 pdi = sdw_cdns_alloc_pdi(cdns, &cdns->pcm, ch, dir, dai->id);
821
822 if (!pdi) {
823 ret = -EINVAL;
824 goto error;
825 }
826
827 /* do run-time configurations for SHIM, ALH and PDI/PORT */
828 intel_pdi_shim_configure(sdw, pdi);
829 intel_pdi_alh_configure(sdw, pdi);
830 sdw_cdns_config_stream(cdns, ch, dir, pdi);
831
832 /* store pdi and hw_params, may be needed in prepare step */
833 dai_runtime->paused = false;
834 dai_runtime->suspended = false;
835 dai_runtime->pdi = pdi;
836 dai_runtime->hw_params = params;
837
838 /* Inform DSP about PDI stream number */
839 ret = intel_params_stream(sdw, substream->stream, dai, params,
840 sdw->instance,
841 pdi->intel_alh_id);
842 if (ret)
843 goto error;
844
845 sconfig.direction = dir;
846 sconfig.ch_count = ch;
847 sconfig.frame_rate = params_rate(params);
848 sconfig.type = dai_runtime->stream_type;
849
850 sconfig.bps = snd_pcm_format_width(params_format(params));
851
852 /* Port configuration */
853 pconfig = kzalloc(sizeof(*pconfig), GFP_KERNEL);
854 if (!pconfig) {
855 ret = -ENOMEM;
856 goto error;
857 }
858
859 pconfig->num = pdi->num;
860 pconfig->ch_mask = (1 << ch) - 1;
861
862 ret = sdw_stream_add_master(&cdns->bus, &sconfig,
863 pconfig, 1, dai_runtime->stream);
864 if (ret)
865 dev_err(cdns->dev, "add master to stream failed:%d\n", ret);
866
867 kfree(pconfig);
868error:
869 return ret;
870}
871
872static int intel_prepare(struct snd_pcm_substream *substream,
873 struct snd_soc_dai *dai)
874{
875 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
876 struct sdw_intel *sdw = cdns_to_intel(cdns);
877 struct sdw_cdns_dai_runtime *dai_runtime;
878 int ch, dir;
879 int ret = 0;
880
881 dai_runtime = cdns->dai_runtime_array[dai->id];
882 if (!dai_runtime) {
883 dev_err(dai->dev, "failed to get dai runtime in %s\n",
884 __func__);
885 return -EIO;
886 }
887
888 if (dai_runtime->suspended) {
889 dai_runtime->suspended = false;
890
891 /*
892 * .prepare() is called after system resume, where we
893 * need to reinitialize the SHIM/ALH/Cadence IP.
894 * .prepare() is also called to deal with underflows,
895 * but in those cases we cannot touch ALH/SHIM
896 * registers
897 */
898
899 /* configure stream */
900 ch = params_channels(dai_runtime->hw_params);
901 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
902 dir = SDW_DATA_DIR_RX;
903 else
904 dir = SDW_DATA_DIR_TX;
905
906 intel_pdi_shim_configure(sdw, dai_runtime->pdi);
907 intel_pdi_alh_configure(sdw, dai_runtime->pdi);
908 sdw_cdns_config_stream(cdns, ch, dir, dai_runtime->pdi);
909
910 /* Inform DSP about PDI stream number */
911 ret = intel_params_stream(sdw, substream->stream, dai,
912 dai_runtime->hw_params,
913 sdw->instance,
914 dai_runtime->pdi->intel_alh_id);
915 }
916
917 return ret;
918}
919
920static int
921intel_hw_free(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
922{
923 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
924 struct sdw_intel *sdw = cdns_to_intel(cdns);
925 struct sdw_cdns_dai_runtime *dai_runtime;
926 int ret;
927
928 dai_runtime = cdns->dai_runtime_array[dai->id];
929 if (!dai_runtime)
930 return -EIO;
931
932 /*
933 * The sdw stream state will transition to RELEASED when stream->
934 * master_list is empty. So the stream state will transition to
935 * DEPREPARED for the first cpu-dai and to RELEASED for the last
936 * cpu-dai.
937 */
938 ret = sdw_stream_remove_master(&cdns->bus, dai_runtime->stream);
939 if (ret < 0) {
940 dev_err(dai->dev, "remove master from stream %s failed: %d\n",
941 dai_runtime->stream->name, ret);
942 return ret;
943 }
944
945 ret = intel_free_stream(sdw, substream->stream, dai, sdw->instance);
946 if (ret < 0) {
947 dev_err(dai->dev, "intel_free_stream: failed %d\n", ret);
948 return ret;
949 }
950
951 dai_runtime->hw_params = NULL;
952 dai_runtime->pdi = NULL;
953
954 return 0;
955}
956
957static void intel_shutdown(struct snd_pcm_substream *substream,
958 struct snd_soc_dai *dai)
959{
960 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
961
962 pm_runtime_mark_last_busy(cdns->dev);
963 pm_runtime_put_autosuspend(cdns->dev);
964}
965
966static int intel_pcm_set_sdw_stream(struct snd_soc_dai *dai,
967 void *stream, int direction)
968{
969 return cdns_set_sdw_stream(dai, stream, direction);
970}
971
972static void *intel_get_sdw_stream(struct snd_soc_dai *dai,
973 int direction)
974{
975 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
976 struct sdw_cdns_dai_runtime *dai_runtime;
977
978 dai_runtime = cdns->dai_runtime_array[dai->id];
979 if (!dai_runtime)
980 return ERR_PTR(-EINVAL);
981
982 return dai_runtime->stream;
983}
984
985static int intel_trigger(struct snd_pcm_substream *substream, int cmd, struct snd_soc_dai *dai)
986{
987 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
988 struct sdw_intel *sdw = cdns_to_intel(cdns);
989 struct sdw_intel_link_res *res = sdw->link_res;
990 struct sdw_cdns_dai_runtime *dai_runtime;
991 int ret = 0;
992
993 /*
994 * The .trigger callback is used to send required IPC to audio
995 * firmware. The .free_stream callback will still be called
996 * by intel_free_stream() in the TRIGGER_SUSPEND case.
997 */
998 if (res->ops && res->ops->trigger)
999 res->ops->trigger(dai, cmd, substream->stream);
1000
1001 dai_runtime = cdns->dai_runtime_array[dai->id];
1002 if (!dai_runtime) {
1003 dev_err(dai->dev, "failed to get dai runtime in %s\n",
1004 __func__);
1005 return -EIO;
1006 }
1007
1008 switch (cmd) {
1009 case SNDRV_PCM_TRIGGER_SUSPEND:
1010
1011 /*
1012 * The .prepare callback is used to deal with xruns and resume operations.
1013 * In the case of xruns, the DMAs and SHIM registers cannot be touched,
1014 * but for resume operations the DMAs and SHIM registers need to be initialized.
1015 * the .trigger callback is used to track the suspend case only.
1016 */
1017
1018 dai_runtime->suspended = true;
1019
1020 ret = intel_free_stream(sdw, substream->stream, dai, sdw->instance);
1021 break;
1022
1023 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1024 dai_runtime->paused = true;
1025 break;
1026 case SNDRV_PCM_TRIGGER_STOP:
1027 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1028 dai_runtime->paused = false;
1029 break;
1030 default:
1031 break;
1032 }
1033
1034 return ret;
1035}
1036
1037static int intel_component_probe(struct snd_soc_component *component)
1038{
1039 int ret;
1040
1041 /*
1042 * make sure the device is pm_runtime_active before initiating
1043 * bus transactions during the card registration.
1044 * We use pm_runtime_resume() here, without taking a reference
1045 * and releasing it immediately.
1046 */
1047 ret = pm_runtime_resume(component->dev);
1048 if (ret < 0 && ret != -EACCES)
1049 return ret;
1050
1051 return 0;
1052}
1053
1054static int intel_component_dais_suspend(struct snd_soc_component *component)
1055{
1056 struct snd_soc_dai *dai;
1057
1058 /*
1059 * In the corner case where a SUSPEND happens during a PAUSE, the ALSA core
1060 * does not throw the TRIGGER_SUSPEND. This leaves the DAIs in an unbalanced state.
1061 * Since the component suspend is called last, we can trap this corner case
1062 * and force the DAIs to release their resources.
1063 */
1064 for_each_component_dais(component, dai) {
1065 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
1066 struct sdw_intel *sdw = cdns_to_intel(cdns);
1067 struct sdw_cdns_dai_runtime *dai_runtime;
1068 int ret;
1069
1070 dai_runtime = cdns->dai_runtime_array[dai->id];
1071
1072 if (!dai_runtime)
1073 continue;
1074
1075 if (dai_runtime->suspended)
1076 continue;
1077
1078 if (dai_runtime->paused) {
1079 dai_runtime->suspended = true;
1080
1081 ret = intel_free_stream(sdw, dai_runtime->direction, dai, sdw->instance);
1082 if (ret < 0)
1083 return ret;
1084 }
1085 }
1086
1087 return 0;
1088}
1089
1090static const struct snd_soc_dai_ops intel_pcm_dai_ops = {
1091 .startup = intel_startup,
1092 .hw_params = intel_hw_params,
1093 .prepare = intel_prepare,
1094 .hw_free = intel_hw_free,
1095 .trigger = intel_trigger,
1096 .shutdown = intel_shutdown,
1097 .set_stream = intel_pcm_set_sdw_stream,
1098 .get_stream = intel_get_sdw_stream,
1099};
1100
1101static const struct snd_soc_component_driver dai_component = {
1102 .name = "soundwire",
1103 .probe = intel_component_probe,
1104 .suspend = intel_component_dais_suspend,
1105 .legacy_dai_naming = 1,
1106};
1107
1108static int intel_create_dai(struct sdw_cdns *cdns,
1109 struct snd_soc_dai_driver *dais,
1110 enum intel_pdi_type type,
1111 u32 num, u32 off, u32 max_ch)
1112{
1113 int i;
1114
1115 if (num == 0)
1116 return 0;
1117
1118 /* TODO: Read supported rates/formats from hardware */
1119 for (i = off; i < (off + num); i++) {
1120 dais[i].name = devm_kasprintf(cdns->dev, GFP_KERNEL,
1121 "SDW%d Pin%d",
1122 cdns->instance, i);
1123 if (!dais[i].name)
1124 return -ENOMEM;
1125
1126 if (type == INTEL_PDI_BD || type == INTEL_PDI_OUT) {
1127 dais[i].playback.channels_min = 1;
1128 dais[i].playback.channels_max = max_ch;
1129 dais[i].playback.rates = SNDRV_PCM_RATE_48000;
1130 dais[i].playback.formats = SNDRV_PCM_FMTBIT_S16_LE;
1131 }
1132
1133 if (type == INTEL_PDI_BD || type == INTEL_PDI_IN) {
1134 dais[i].capture.channels_min = 1;
1135 dais[i].capture.channels_max = max_ch;
1136 dais[i].capture.rates = SNDRV_PCM_RATE_48000;
1137 dais[i].capture.formats = SNDRV_PCM_FMTBIT_S16_LE;
1138 }
1139
1140 dais[i].ops = &intel_pcm_dai_ops;
1141 }
1142
1143 return 0;
1144}
1145
1146static int intel_register_dai(struct sdw_intel *sdw)
1147{
1148 struct sdw_cdns_dai_runtime **dai_runtime_array;
1149 struct sdw_cdns_stream_config config;
1150 struct sdw_cdns *cdns = &sdw->cdns;
1151 struct sdw_cdns_streams *stream;
1152 struct snd_soc_dai_driver *dais;
1153 int num_dai, ret, off = 0;
1154
1155 /* Read the PDI config and initialize cadence PDI */
1156 intel_pdi_init(sdw, &config);
1157 ret = sdw_cdns_pdi_init(cdns, config);
1158 if (ret)
1159 return ret;
1160
1161 intel_pdi_ch_update(sdw);
1162
1163 /* DAIs are created based on total number of PDIs supported */
1164 num_dai = cdns->pcm.num_pdi;
1165
1166 dai_runtime_array = devm_kcalloc(cdns->dev, num_dai,
1167 sizeof(struct sdw_cdns_dai_runtime *),
1168 GFP_KERNEL);
1169 if (!dai_runtime_array)
1170 return -ENOMEM;
1171 cdns->dai_runtime_array = dai_runtime_array;
1172
1173 dais = devm_kcalloc(cdns->dev, num_dai, sizeof(*dais), GFP_KERNEL);
1174 if (!dais)
1175 return -ENOMEM;
1176
1177 /* Create PCM DAIs */
1178 stream = &cdns->pcm;
1179
1180 ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, cdns->pcm.num_in,
1181 off, stream->num_ch_in);
1182 if (ret)
1183 return ret;
1184
1185 off += cdns->pcm.num_in;
1186 ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pcm.num_out,
1187 off, stream->num_ch_out);
1188 if (ret)
1189 return ret;
1190
1191 off += cdns->pcm.num_out;
1192 ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pcm.num_bd,
1193 off, stream->num_ch_bd);
1194 if (ret)
1195 return ret;
1196
1197 return devm_snd_soc_register_component(cdns->dev, &dai_component,
1198 dais, num_dai);
1199}
1200
1201static int intel_start_bus(struct sdw_intel *sdw)
1202{
1203 struct device *dev = sdw->cdns.dev;
1204 struct sdw_cdns *cdns = &sdw->cdns;
1205 struct sdw_bus *bus = &cdns->bus;
1206 int ret;
1207
1208 ret = sdw_cdns_enable_interrupt(cdns, true);
1209 if (ret < 0) {
1210 dev_err(dev, "%s: cannot enable interrupts: %d\n", __func__, ret);
1211 return ret;
1212 }
1213
1214 /*
1215 * follow recommended programming flows to avoid timeouts when
1216 * gsync is enabled
1217 */
1218 if (bus->multi_link)
1219 intel_shim_sync_arm(sdw);
1220
1221 ret = sdw_cdns_init(cdns);
1222 if (ret < 0) {
1223 dev_err(dev, "%s: unable to initialize Cadence IP: %d\n", __func__, ret);
1224 goto err_interrupt;
1225 }
1226
1227 ret = sdw_cdns_exit_reset(cdns);
1228 if (ret < 0) {
1229 dev_err(dev, "%s: unable to exit bus reset sequence: %d\n", __func__, ret);
1230 goto err_interrupt;
1231 }
1232
1233 if (bus->multi_link) {
1234 ret = intel_shim_sync_go(sdw);
1235 if (ret < 0) {
1236 dev_err(dev, "%s: sync go failed: %d\n", __func__, ret);
1237 goto err_interrupt;
1238 }
1239 }
1240 sdw_cdns_check_self_clearing_bits(cdns, __func__,
1241 true, INTEL_MASTER_RESET_ITERATIONS);
1242
1243 return 0;
1244
1245err_interrupt:
1246 sdw_cdns_enable_interrupt(cdns, false);
1247 return ret;
1248}
1249
1250static int intel_start_bus_after_reset(struct sdw_intel *sdw)
1251{
1252 struct device *dev = sdw->cdns.dev;
1253 struct sdw_cdns *cdns = &sdw->cdns;
1254 struct sdw_bus *bus = &cdns->bus;
1255 bool clock_stop0;
1256 int status;
1257 int ret;
1258
1259 /*
1260 * An exception condition occurs for the CLK_STOP_BUS_RESET
1261 * case if one or more masters remain active. In this condition,
1262 * all the masters are powered on for they are in the same power
1263 * domain. Master can preserve its context for clock stop0, so
1264 * there is no need to clear slave status and reset bus.
1265 */
1266 clock_stop0 = sdw_cdns_is_clock_stop(&sdw->cdns);
1267
1268 if (!clock_stop0) {
1269
1270 /*
1271 * make sure all Slaves are tagged as UNATTACHED and
1272 * provide reason for reinitialization
1273 */
1274
1275 status = SDW_UNATTACH_REQUEST_MASTER_RESET;
1276 sdw_clear_slave_status(bus, status);
1277
1278 ret = sdw_cdns_enable_interrupt(cdns, true);
1279 if (ret < 0) {
1280 dev_err(dev, "cannot enable interrupts during resume\n");
1281 return ret;
1282 }
1283
1284 /*
1285 * follow recommended programming flows to avoid
1286 * timeouts when gsync is enabled
1287 */
1288 if (bus->multi_link)
1289 intel_shim_sync_arm(sdw);
1290
1291 /*
1292 * Re-initialize the IP since it was powered-off
1293 */
1294 sdw_cdns_init(&sdw->cdns);
1295
1296 } else {
1297 ret = sdw_cdns_enable_interrupt(cdns, true);
1298 if (ret < 0) {
1299 dev_err(dev, "cannot enable interrupts during resume\n");
1300 return ret;
1301 }
1302 }
1303
1304 ret = sdw_cdns_clock_restart(cdns, !clock_stop0);
1305 if (ret < 0) {
1306 dev_err(dev, "unable to restart clock during resume\n");
1307 goto err_interrupt;
1308 }
1309
1310 if (!clock_stop0) {
1311 ret = sdw_cdns_exit_reset(cdns);
1312 if (ret < 0) {
1313 dev_err(dev, "unable to exit bus reset sequence during resume\n");
1314 goto err_interrupt;
1315 }
1316
1317 if (bus->multi_link) {
1318 ret = intel_shim_sync_go(sdw);
1319 if (ret < 0) {
1320 dev_err(sdw->cdns.dev, "sync go failed during resume\n");
1321 goto err_interrupt;
1322 }
1323 }
1324 }
1325 sdw_cdns_check_self_clearing_bits(cdns, __func__, true, INTEL_MASTER_RESET_ITERATIONS);
1326
1327 return 0;
1328
1329err_interrupt:
1330 sdw_cdns_enable_interrupt(cdns, false);
1331 return ret;
1332}
1333
1334static void intel_check_clock_stop(struct sdw_intel *sdw)
1335{
1336 struct device *dev = sdw->cdns.dev;
1337 bool clock_stop0;
1338
1339 clock_stop0 = sdw_cdns_is_clock_stop(&sdw->cdns);
1340 if (!clock_stop0)
1341 dev_err(dev, "%s: invalid configuration, clock was not stopped\n", __func__);
1342}
1343
1344static int intel_start_bus_after_clock_stop(struct sdw_intel *sdw)
1345{
1346 struct device *dev = sdw->cdns.dev;
1347 struct sdw_cdns *cdns = &sdw->cdns;
1348 int ret;
1349
1350 ret = sdw_cdns_enable_interrupt(cdns, true);
1351 if (ret < 0) {
1352 dev_err(dev, "%s: cannot enable interrupts: %d\n", __func__, ret);
1353 return ret;
1354 }
1355
1356 ret = sdw_cdns_clock_restart(cdns, false);
1357 if (ret < 0) {
1358 dev_err(dev, "%s: unable to restart clock: %d\n", __func__, ret);
1359 sdw_cdns_enable_interrupt(cdns, false);
1360 return ret;
1361 }
1362
1363 sdw_cdns_check_self_clearing_bits(cdns, "intel_resume_runtime no_quirks",
1364 true, INTEL_MASTER_RESET_ITERATIONS);
1365
1366 return 0;
1367}
1368
1369static int intel_stop_bus(struct sdw_intel *sdw, bool clock_stop)
1370{
1371 struct device *dev = sdw->cdns.dev;
1372 struct sdw_cdns *cdns = &sdw->cdns;
1373 bool wake_enable = false;
1374 int ret;
1375
1376 if (clock_stop) {
1377 ret = sdw_cdns_clock_stop(cdns, true);
1378 if (ret < 0)
1379 dev_err(dev, "%s: cannot stop clock: %d\n", __func__, ret);
1380 else
1381 wake_enable = true;
1382 }
1383
1384 ret = sdw_cdns_enable_interrupt(cdns, false);
1385 if (ret < 0) {
1386 dev_err(dev, "%s: cannot disable interrupts: %d\n", __func__, ret);
1387 return ret;
1388 }
1389
1390 ret = intel_link_power_down(sdw);
1391 if (ret) {
1392 dev_err(dev, "%s: Link power down failed: %d\n", __func__, ret);
1393 return ret;
1394 }
1395
1396 intel_shim_wake(sdw, wake_enable);
1397
1398 return 0;
1399}
1400
1401const struct sdw_intel_hw_ops sdw_intel_cnl_hw_ops = {
1402 .debugfs_init = intel_debugfs_init,
1403 .debugfs_exit = intel_debugfs_exit,
1404
1405 .register_dai = intel_register_dai,
1406
1407 .check_clock_stop = intel_check_clock_stop,
1408 .start_bus = intel_start_bus,
1409 .start_bus_after_reset = intel_start_bus_after_reset,
1410 .start_bus_after_clock_stop = intel_start_bus_after_clock_stop,
1411 .stop_bus = intel_stop_bus,
1412
1413 .link_power_up = intel_link_power_up,
1414 .link_power_down = intel_link_power_down,
1415
1416 .shim_check_wake = intel_shim_check_wake,
1417 .shim_wake = intel_shim_wake,
1418
1419 .pre_bank_switch = intel_pre_bank_switch,
1420 .post_bank_switch = intel_post_bank_switch,
1421};
1422EXPORT_SYMBOL_NS(sdw_intel_cnl_hw_ops, SOUNDWIRE_INTEL);
1423
1// 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/debugfs.h>
10#include <linux/delay.h>
11#include <linux/module.h>
12#include <linux/interrupt.h>
13#include <linux/platform_device.h>
14#include <sound/pcm_params.h>
15#include <sound/soc.h>
16#include <linux/soundwire/sdw_registers.h>
17#include <linux/soundwire/sdw.h>
18#include <linux/soundwire/sdw_intel.h>
19#include "cadence_master.h"
20#include "bus.h"
21#include "intel.h"
22
23/* Intel SHIM Registers Definition */
24#define SDW_SHIM_LCAP 0x0
25#define SDW_SHIM_LCTL 0x4
26#define SDW_SHIM_IPPTR 0x8
27#define SDW_SHIM_SYNC 0xC
28
29#define SDW_SHIM_CTLSCAP(x) (0x010 + 0x60 * (x))
30#define SDW_SHIM_CTLS0CM(x) (0x012 + 0x60 * (x))
31#define SDW_SHIM_CTLS1CM(x) (0x014 + 0x60 * (x))
32#define SDW_SHIM_CTLS2CM(x) (0x016 + 0x60 * (x))
33#define SDW_SHIM_CTLS3CM(x) (0x018 + 0x60 * (x))
34#define SDW_SHIM_PCMSCAP(x) (0x020 + 0x60 * (x))
35
36#define SDW_SHIM_PCMSYCHM(x, y) (0x022 + (0x60 * (x)) + (0x2 * (y)))
37#define SDW_SHIM_PCMSYCHC(x, y) (0x042 + (0x60 * (x)) + (0x2 * (y)))
38#define SDW_SHIM_PDMSCAP(x) (0x062 + 0x60 * (x))
39#define SDW_SHIM_IOCTL(x) (0x06C + 0x60 * (x))
40#define SDW_SHIM_CTMCTL(x) (0x06E + 0x60 * (x))
41
42#define SDW_SHIM_WAKEEN 0x190
43#define SDW_SHIM_WAKESTS 0x192
44
45#define SDW_SHIM_LCTL_SPA BIT(0)
46#define SDW_SHIM_LCTL_CPA BIT(8)
47
48#define SDW_SHIM_SYNC_SYNCPRD_VAL 0x176F
49#define SDW_SHIM_SYNC_SYNCPRD GENMASK(14, 0)
50#define SDW_SHIM_SYNC_SYNCCPU BIT(15)
51#define SDW_SHIM_SYNC_CMDSYNC_MASK GENMASK(19, 16)
52#define SDW_SHIM_SYNC_CMDSYNC BIT(16)
53#define SDW_SHIM_SYNC_SYNCGO BIT(24)
54
55#define SDW_SHIM_PCMSCAP_ISS GENMASK(3, 0)
56#define SDW_SHIM_PCMSCAP_OSS GENMASK(7, 4)
57#define SDW_SHIM_PCMSCAP_BSS GENMASK(12, 8)
58
59#define SDW_SHIM_PCMSYCM_LCHN GENMASK(3, 0)
60#define SDW_SHIM_PCMSYCM_HCHN GENMASK(7, 4)
61#define SDW_SHIM_PCMSYCM_STREAM GENMASK(13, 8)
62#define SDW_SHIM_PCMSYCM_DIR BIT(15)
63
64#define SDW_SHIM_PDMSCAP_ISS GENMASK(3, 0)
65#define SDW_SHIM_PDMSCAP_OSS GENMASK(7, 4)
66#define SDW_SHIM_PDMSCAP_BSS GENMASK(12, 8)
67#define SDW_SHIM_PDMSCAP_CPSS GENMASK(15, 13)
68
69#define SDW_SHIM_IOCTL_MIF BIT(0)
70#define SDW_SHIM_IOCTL_CO BIT(1)
71#define SDW_SHIM_IOCTL_COE BIT(2)
72#define SDW_SHIM_IOCTL_DO BIT(3)
73#define SDW_SHIM_IOCTL_DOE BIT(4)
74#define SDW_SHIM_IOCTL_BKE BIT(5)
75#define SDW_SHIM_IOCTL_WPDD BIT(6)
76#define SDW_SHIM_IOCTL_CIBD BIT(8)
77#define SDW_SHIM_IOCTL_DIBD BIT(9)
78
79#define SDW_SHIM_CTMCTL_DACTQE BIT(0)
80#define SDW_SHIM_CTMCTL_DODS BIT(1)
81#define SDW_SHIM_CTMCTL_DOAIS GENMASK(4, 3)
82
83#define SDW_SHIM_WAKEEN_ENABLE BIT(0)
84#define SDW_SHIM_WAKESTS_STATUS BIT(0)
85
86/* Intel ALH Register definitions */
87#define SDW_ALH_STRMZCFG(x) (0x000 + (0x4 * (x)))
88#define SDW_ALH_NUM_STREAMS 64
89
90#define SDW_ALH_STRMZCFG_DMAT_VAL 0x3
91#define SDW_ALH_STRMZCFG_DMAT GENMASK(7, 0)
92#define SDW_ALH_STRMZCFG_CHN GENMASK(19, 16)
93
94#define SDW_INTEL_QUIRK_MASK_BUS_DISABLE BIT(1)
95
96enum intel_pdi_type {
97 INTEL_PDI_IN = 0,
98 INTEL_PDI_OUT = 1,
99 INTEL_PDI_BD = 2,
100};
101
102struct sdw_intel {
103 struct sdw_cdns cdns;
104 int instance;
105 struct sdw_intel_link_res *res;
106#ifdef CONFIG_DEBUG_FS
107 struct dentry *debugfs;
108#endif
109};
110
111#define cdns_to_intel(_cdns) container_of(_cdns, struct sdw_intel, cdns)
112
113/*
114 * Read, write helpers for HW registers
115 */
116static inline int intel_readl(void __iomem *base, int offset)
117{
118 return readl(base + offset);
119}
120
121static inline void intel_writel(void __iomem *base, int offset, int value)
122{
123 writel(value, base + offset);
124}
125
126static inline u16 intel_readw(void __iomem *base, int offset)
127{
128 return readw(base + offset);
129}
130
131static inline void intel_writew(void __iomem *base, int offset, u16 value)
132{
133 writew(value, base + offset);
134}
135
136static int intel_clear_bit(void __iomem *base, int offset, u32 value, u32 mask)
137{
138 int timeout = 10;
139 u32 reg_read;
140
141 writel(value, base + offset);
142 do {
143 reg_read = readl(base + offset);
144 if (!(reg_read & mask))
145 return 0;
146
147 timeout--;
148 udelay(50);
149 } while (timeout != 0);
150
151 return -EAGAIN;
152}
153
154static int intel_set_bit(void __iomem *base, int offset, u32 value, u32 mask)
155{
156 int timeout = 10;
157 u32 reg_read;
158
159 writel(value, base + offset);
160 do {
161 reg_read = readl(base + offset);
162 if (reg_read & mask)
163 return 0;
164
165 timeout--;
166 udelay(50);
167 } while (timeout != 0);
168
169 return -EAGAIN;
170}
171
172/*
173 * debugfs
174 */
175#ifdef CONFIG_DEBUG_FS
176
177#define RD_BUF (2 * PAGE_SIZE)
178
179static ssize_t intel_sprintf(void __iomem *mem, bool l,
180 char *buf, size_t pos, unsigned int reg)
181{
182 int value;
183
184 if (l)
185 value = intel_readl(mem, reg);
186 else
187 value = intel_readw(mem, reg);
188
189 return scnprintf(buf + pos, RD_BUF - pos, "%4x\t%4x\n", reg, value);
190}
191
192static int intel_reg_show(struct seq_file *s_file, void *data)
193{
194 struct sdw_intel *sdw = s_file->private;
195 void __iomem *s = sdw->res->shim;
196 void __iomem *a = sdw->res->alh;
197 char *buf;
198 ssize_t ret;
199 int i, j;
200 unsigned int links, reg;
201
202 buf = kzalloc(RD_BUF, GFP_KERNEL);
203 if (!buf)
204 return -ENOMEM;
205
206 links = intel_readl(s, SDW_SHIM_LCAP) & GENMASK(2, 0);
207
208 ret = scnprintf(buf, RD_BUF, "Register Value\n");
209 ret += scnprintf(buf + ret, RD_BUF - ret, "\nShim\n");
210
211 for (i = 0; i < links; i++) {
212 reg = SDW_SHIM_LCAP + i * 4;
213 ret += intel_sprintf(s, true, buf, ret, reg);
214 }
215
216 for (i = 0; i < links; i++) {
217 ret += scnprintf(buf + ret, RD_BUF - ret, "\nLink%d\n", i);
218 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLSCAP(i));
219 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS0CM(i));
220 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS1CM(i));
221 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS2CM(i));
222 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTLS3CM(i));
223 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_PCMSCAP(i));
224
225 ret += scnprintf(buf + ret, RD_BUF - ret, "\n PCMSyCH registers\n");
226
227 /*
228 * the value 10 is the number of PDIs. We will need a
229 * cleanup to remove hard-coded Intel configurations
230 * from cadence_master.c
231 */
232 for (j = 0; j < 10; j++) {
233 ret += intel_sprintf(s, false, buf, ret,
234 SDW_SHIM_PCMSYCHM(i, j));
235 ret += intel_sprintf(s, false, buf, ret,
236 SDW_SHIM_PCMSYCHC(i, j));
237 }
238 ret += scnprintf(buf + ret, RD_BUF - ret, "\n PDMSCAP, IOCTL, CTMCTL\n");
239
240 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_PDMSCAP(i));
241 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_IOCTL(i));
242 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_CTMCTL(i));
243 }
244
245 ret += scnprintf(buf + ret, RD_BUF - ret, "\nWake registers\n");
246 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_WAKEEN);
247 ret += intel_sprintf(s, false, buf, ret, SDW_SHIM_WAKESTS);
248
249 ret += scnprintf(buf + ret, RD_BUF - ret, "\nALH STRMzCFG\n");
250 for (i = 0; i < SDW_ALH_NUM_STREAMS; i++)
251 ret += intel_sprintf(a, true, buf, ret, SDW_ALH_STRMZCFG(i));
252
253 seq_printf(s_file, "%s", buf);
254 kfree(buf);
255
256 return 0;
257}
258DEFINE_SHOW_ATTRIBUTE(intel_reg);
259
260static void intel_debugfs_init(struct sdw_intel *sdw)
261{
262 struct dentry *root = sdw->cdns.bus.debugfs;
263
264 if (!root)
265 return;
266
267 sdw->debugfs = debugfs_create_dir("intel-sdw", root);
268
269 debugfs_create_file("intel-registers", 0400, sdw->debugfs, sdw,
270 &intel_reg_fops);
271
272 sdw_cdns_debugfs_init(&sdw->cdns, sdw->debugfs);
273}
274
275static void intel_debugfs_exit(struct sdw_intel *sdw)
276{
277 debugfs_remove_recursive(sdw->debugfs);
278}
279#else
280static void intel_debugfs_init(struct sdw_intel *sdw) {}
281static void intel_debugfs_exit(struct sdw_intel *sdw) {}
282#endif /* CONFIG_DEBUG_FS */
283
284/*
285 * shim ops
286 */
287
288static int intel_link_power_up(struct sdw_intel *sdw)
289{
290 unsigned int link_id = sdw->instance;
291 void __iomem *shim = sdw->res->shim;
292 int spa_mask, cpa_mask;
293 int link_control, ret;
294
295 /* Link power up sequence */
296 link_control = intel_readl(shim, SDW_SHIM_LCTL);
297 spa_mask = (SDW_SHIM_LCTL_SPA << link_id);
298 cpa_mask = (SDW_SHIM_LCTL_CPA << link_id);
299 link_control |= spa_mask;
300
301 ret = intel_set_bit(shim, SDW_SHIM_LCTL, link_control, cpa_mask);
302 if (ret < 0)
303 return ret;
304
305 sdw->cdns.link_up = true;
306 return 0;
307}
308
309static int intel_shim_init(struct sdw_intel *sdw)
310{
311 void __iomem *shim = sdw->res->shim;
312 unsigned int link_id = sdw->instance;
313 int sync_reg, ret;
314 u16 ioctl = 0, act = 0;
315
316 /* Initialize Shim */
317 ioctl |= SDW_SHIM_IOCTL_BKE;
318 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
319
320 ioctl |= SDW_SHIM_IOCTL_WPDD;
321 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
322
323 ioctl |= SDW_SHIM_IOCTL_DO;
324 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
325
326 ioctl |= SDW_SHIM_IOCTL_DOE;
327 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
328
329 /* Switch to MIP from Glue logic */
330 ioctl = intel_readw(shim, SDW_SHIM_IOCTL(link_id));
331
332 ioctl &= ~(SDW_SHIM_IOCTL_DOE);
333 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
334
335 ioctl &= ~(SDW_SHIM_IOCTL_DO);
336 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
337
338 ioctl |= (SDW_SHIM_IOCTL_MIF);
339 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
340
341 ioctl &= ~(SDW_SHIM_IOCTL_BKE);
342 ioctl &= ~(SDW_SHIM_IOCTL_COE);
343
344 intel_writew(shim, SDW_SHIM_IOCTL(link_id), ioctl);
345
346 act |= 0x1 << SDW_REG_SHIFT(SDW_SHIM_CTMCTL_DOAIS);
347 act |= SDW_SHIM_CTMCTL_DACTQE;
348 act |= SDW_SHIM_CTMCTL_DODS;
349 intel_writew(shim, SDW_SHIM_CTMCTL(link_id), act);
350
351 /* Now set SyncPRD period */
352 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
353 sync_reg |= (SDW_SHIM_SYNC_SYNCPRD_VAL <<
354 SDW_REG_SHIFT(SDW_SHIM_SYNC_SYNCPRD));
355
356 /* Set SyncCPU bit */
357 sync_reg |= SDW_SHIM_SYNC_SYNCCPU;
358 ret = intel_clear_bit(shim, SDW_SHIM_SYNC, sync_reg,
359 SDW_SHIM_SYNC_SYNCCPU);
360 if (ret < 0)
361 dev_err(sdw->cdns.dev, "Failed to set sync period: %d\n", ret);
362
363 return ret;
364}
365
366/*
367 * PDI routines
368 */
369static void intel_pdi_init(struct sdw_intel *sdw,
370 struct sdw_cdns_stream_config *config)
371{
372 void __iomem *shim = sdw->res->shim;
373 unsigned int link_id = sdw->instance;
374 int pcm_cap, pdm_cap;
375
376 /* PCM Stream Capability */
377 pcm_cap = intel_readw(shim, SDW_SHIM_PCMSCAP(link_id));
378
379 config->pcm_bd = (pcm_cap & SDW_SHIM_PCMSCAP_BSS) >>
380 SDW_REG_SHIFT(SDW_SHIM_PCMSCAP_BSS);
381 config->pcm_in = (pcm_cap & SDW_SHIM_PCMSCAP_ISS) >>
382 SDW_REG_SHIFT(SDW_SHIM_PCMSCAP_ISS);
383 config->pcm_out = (pcm_cap & SDW_SHIM_PCMSCAP_OSS) >>
384 SDW_REG_SHIFT(SDW_SHIM_PCMSCAP_OSS);
385
386 dev_dbg(sdw->cdns.dev, "PCM cap bd:%d in:%d out:%d\n",
387 config->pcm_bd, config->pcm_in, config->pcm_out);
388
389 /* PDM Stream Capability */
390 pdm_cap = intel_readw(shim, SDW_SHIM_PDMSCAP(link_id));
391
392 config->pdm_bd = (pdm_cap & SDW_SHIM_PDMSCAP_BSS) >>
393 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_BSS);
394 config->pdm_in = (pdm_cap & SDW_SHIM_PDMSCAP_ISS) >>
395 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_ISS);
396 config->pdm_out = (pdm_cap & SDW_SHIM_PDMSCAP_OSS) >>
397 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_OSS);
398
399 dev_dbg(sdw->cdns.dev, "PDM cap bd:%d in:%d out:%d\n",
400 config->pdm_bd, config->pdm_in, config->pdm_out);
401}
402
403static int
404intel_pdi_get_ch_cap(struct sdw_intel *sdw, unsigned int pdi_num, bool pcm)
405{
406 void __iomem *shim = sdw->res->shim;
407 unsigned int link_id = sdw->instance;
408 int count;
409
410 if (pcm) {
411 count = intel_readw(shim, SDW_SHIM_PCMSYCHC(link_id, pdi_num));
412
413 /*
414 * WORKAROUND: on all existing Intel controllers, pdi
415 * number 2 reports channel count as 1 even though it
416 * supports 8 channels. Performing hardcoding for pdi
417 * number 2.
418 */
419 if (pdi_num == 2)
420 count = 7;
421
422 } else {
423 count = intel_readw(shim, SDW_SHIM_PDMSCAP(link_id));
424 count = ((count & SDW_SHIM_PDMSCAP_CPSS) >>
425 SDW_REG_SHIFT(SDW_SHIM_PDMSCAP_CPSS));
426 }
427
428 /* zero based values for channel count in register */
429 count++;
430
431 return count;
432}
433
434static int intel_pdi_get_ch_update(struct sdw_intel *sdw,
435 struct sdw_cdns_pdi *pdi,
436 unsigned int num_pdi,
437 unsigned int *num_ch, bool pcm)
438{
439 int i, ch_count = 0;
440
441 for (i = 0; i < num_pdi; i++) {
442 pdi->ch_count = intel_pdi_get_ch_cap(sdw, pdi->num, pcm);
443 ch_count += pdi->ch_count;
444 pdi++;
445 }
446
447 *num_ch = ch_count;
448 return 0;
449}
450
451static int intel_pdi_stream_ch_update(struct sdw_intel *sdw,
452 struct sdw_cdns_streams *stream, bool pcm)
453{
454 intel_pdi_get_ch_update(sdw, stream->bd, stream->num_bd,
455 &stream->num_ch_bd, pcm);
456
457 intel_pdi_get_ch_update(sdw, stream->in, stream->num_in,
458 &stream->num_ch_in, pcm);
459
460 intel_pdi_get_ch_update(sdw, stream->out, stream->num_out,
461 &stream->num_ch_out, pcm);
462
463 return 0;
464}
465
466static int intel_pdi_ch_update(struct sdw_intel *sdw)
467{
468 /* First update PCM streams followed by PDM streams */
469 intel_pdi_stream_ch_update(sdw, &sdw->cdns.pcm, true);
470 intel_pdi_stream_ch_update(sdw, &sdw->cdns.pdm, false);
471
472 return 0;
473}
474
475static void
476intel_pdi_shim_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
477{
478 void __iomem *shim = sdw->res->shim;
479 unsigned int link_id = sdw->instance;
480 int pdi_conf = 0;
481
482 pdi->intel_alh_id = (link_id * 16) + pdi->num + 5;
483
484 /*
485 * Program stream parameters to stream SHIM register
486 * This is applicable for PCM stream only.
487 */
488 if (pdi->type != SDW_STREAM_PCM)
489 return;
490
491 if (pdi->dir == SDW_DATA_DIR_RX)
492 pdi_conf |= SDW_SHIM_PCMSYCM_DIR;
493 else
494 pdi_conf &= ~(SDW_SHIM_PCMSYCM_DIR);
495
496 pdi_conf |= (pdi->intel_alh_id <<
497 SDW_REG_SHIFT(SDW_SHIM_PCMSYCM_STREAM));
498 pdi_conf |= (pdi->l_ch_num << SDW_REG_SHIFT(SDW_SHIM_PCMSYCM_LCHN));
499 pdi_conf |= (pdi->h_ch_num << SDW_REG_SHIFT(SDW_SHIM_PCMSYCM_HCHN));
500
501 intel_writew(shim, SDW_SHIM_PCMSYCHM(link_id, pdi->num), pdi_conf);
502}
503
504static void
505intel_pdi_alh_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
506{
507 void __iomem *alh = sdw->res->alh;
508 unsigned int link_id = sdw->instance;
509 unsigned int conf;
510
511 pdi->intel_alh_id = (link_id * 16) + pdi->num + 5;
512
513 /* Program Stream config ALH register */
514 conf = intel_readl(alh, SDW_ALH_STRMZCFG(pdi->intel_alh_id));
515
516 conf |= (SDW_ALH_STRMZCFG_DMAT_VAL <<
517 SDW_REG_SHIFT(SDW_ALH_STRMZCFG_DMAT));
518
519 conf |= ((pdi->ch_count - 1) <<
520 SDW_REG_SHIFT(SDW_ALH_STRMZCFG_CHN));
521
522 intel_writel(alh, SDW_ALH_STRMZCFG(pdi->intel_alh_id), conf);
523}
524
525static int intel_config_stream(struct sdw_intel *sdw,
526 struct snd_pcm_substream *substream,
527 struct snd_soc_dai *dai,
528 struct snd_pcm_hw_params *hw_params, int link_id)
529{
530 struct sdw_intel_link_res *res = sdw->res;
531
532 if (res->ops && res->ops->config_stream && res->arg)
533 return res->ops->config_stream(res->arg,
534 substream, dai, hw_params, link_id);
535
536 return -EIO;
537}
538
539/*
540 * bank switch routines
541 */
542
543static int intel_pre_bank_switch(struct sdw_bus *bus)
544{
545 struct sdw_cdns *cdns = bus_to_cdns(bus);
546 struct sdw_intel *sdw = cdns_to_intel(cdns);
547 void __iomem *shim = sdw->res->shim;
548 int sync_reg;
549
550 /* Write to register only for multi-link */
551 if (!bus->multi_link)
552 return 0;
553
554 /* Read SYNC register */
555 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
556 sync_reg |= SDW_SHIM_SYNC_CMDSYNC << sdw->instance;
557 intel_writel(shim, SDW_SHIM_SYNC, sync_reg);
558
559 return 0;
560}
561
562static int intel_post_bank_switch(struct sdw_bus *bus)
563{
564 struct sdw_cdns *cdns = bus_to_cdns(bus);
565 struct sdw_intel *sdw = cdns_to_intel(cdns);
566 void __iomem *shim = sdw->res->shim;
567 int sync_reg, ret;
568
569 /* Write to register only for multi-link */
570 if (!bus->multi_link)
571 return 0;
572
573 /* Read SYNC register */
574 sync_reg = intel_readl(shim, SDW_SHIM_SYNC);
575
576 /*
577 * post_bank_switch() ops is called from the bus in loop for
578 * all the Masters in the steam with the expectation that
579 * we trigger the bankswitch for the only first Master in the list
580 * and do nothing for the other Masters
581 *
582 * So, set the SYNCGO bit only if CMDSYNC bit is set for any Master.
583 */
584 if (!(sync_reg & SDW_SHIM_SYNC_CMDSYNC_MASK))
585 return 0;
586
587 /*
588 * Set SyncGO bit to synchronously trigger a bank switch for
589 * all the masters. A write to SYNCGO bit clears CMDSYNC bit for all
590 * the Masters.
591 */
592 sync_reg |= SDW_SHIM_SYNC_SYNCGO;
593
594 ret = intel_clear_bit(shim, SDW_SHIM_SYNC, sync_reg,
595 SDW_SHIM_SYNC_SYNCGO);
596 if (ret < 0)
597 dev_err(sdw->cdns.dev, "Post bank switch failed: %d\n", ret);
598
599 return ret;
600}
601
602/*
603 * DAI routines
604 */
605
606static struct sdw_cdns_port *intel_alloc_port(struct sdw_intel *sdw,
607 u32 ch, u32 dir, bool pcm)
608{
609 struct sdw_cdns *cdns = &sdw->cdns;
610 struct sdw_cdns_port *port = NULL;
611 int i, ret = 0;
612
613 for (i = 0; i < cdns->num_ports; i++) {
614 if (cdns->ports[i].assigned)
615 continue;
616
617 port = &cdns->ports[i];
618 port->assigned = true;
619 port->direction = dir;
620 port->ch = ch;
621 break;
622 }
623
624 if (!port) {
625 dev_err(cdns->dev, "Unable to find a free port\n");
626 return NULL;
627 }
628
629 if (pcm) {
630 ret = sdw_cdns_alloc_stream(cdns, &cdns->pcm, port, ch, dir);
631 if (ret)
632 goto out;
633
634 intel_pdi_shim_configure(sdw, port->pdi);
635 sdw_cdns_config_stream(cdns, port, ch, dir, port->pdi);
636
637 intel_pdi_alh_configure(sdw, port->pdi);
638
639 } else {
640 ret = sdw_cdns_alloc_stream(cdns, &cdns->pdm, port, ch, dir);
641 }
642
643out:
644 if (ret) {
645 port->assigned = false;
646 port = NULL;
647 }
648
649 return port;
650}
651
652static void intel_port_cleanup(struct sdw_cdns_dma_data *dma)
653{
654 int i;
655
656 for (i = 0; i < dma->nr_ports; i++) {
657 if (dma->port[i]) {
658 dma->port[i]->pdi->assigned = false;
659 dma->port[i]->pdi = NULL;
660 dma->port[i]->assigned = false;
661 dma->port[i] = NULL;
662 }
663 }
664}
665
666static int intel_hw_params(struct snd_pcm_substream *substream,
667 struct snd_pcm_hw_params *params,
668 struct snd_soc_dai *dai)
669{
670 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
671 struct sdw_intel *sdw = cdns_to_intel(cdns);
672 struct sdw_cdns_dma_data *dma;
673 struct sdw_stream_config sconfig;
674 struct sdw_port_config *pconfig;
675 int ret, i, ch, dir;
676 bool pcm = true;
677
678 dma = snd_soc_dai_get_dma_data(dai, substream);
679 if (!dma)
680 return -EIO;
681
682 ch = params_channels(params);
683 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
684 dir = SDW_DATA_DIR_RX;
685 else
686 dir = SDW_DATA_DIR_TX;
687
688 if (dma->stream_type == SDW_STREAM_PDM) {
689 /* TODO: Check whether PDM decimator is already in use */
690 dma->nr_ports = sdw_cdns_get_stream(cdns, &cdns->pdm, ch, dir);
691 pcm = false;
692 } else {
693 dma->nr_ports = sdw_cdns_get_stream(cdns, &cdns->pcm, ch, dir);
694 }
695
696 if (!dma->nr_ports) {
697 dev_err(dai->dev, "ports/resources not available\n");
698 return -EINVAL;
699 }
700
701 dma->port = kcalloc(dma->nr_ports, sizeof(*dma->port), GFP_KERNEL);
702 if (!dma->port)
703 return -ENOMEM;
704
705 for (i = 0; i < dma->nr_ports; i++) {
706 dma->port[i] = intel_alloc_port(sdw, ch, dir, pcm);
707 if (!dma->port[i]) {
708 ret = -EINVAL;
709 goto port_error;
710 }
711 }
712
713 /* Inform DSP about PDI stream number */
714 for (i = 0; i < dma->nr_ports; i++) {
715 ret = intel_config_stream(sdw, substream, dai, params,
716 dma->port[i]->pdi->intel_alh_id);
717 if (ret)
718 goto port_error;
719 }
720
721 sconfig.direction = dir;
722 sconfig.ch_count = ch;
723 sconfig.frame_rate = params_rate(params);
724 sconfig.type = dma->stream_type;
725
726 if (dma->stream_type == SDW_STREAM_PDM) {
727 sconfig.frame_rate *= 50;
728 sconfig.bps = 1;
729 } else {
730 sconfig.bps = snd_pcm_format_width(params_format(params));
731 }
732
733 /* Port configuration */
734 pconfig = kcalloc(dma->nr_ports, sizeof(*pconfig), GFP_KERNEL);
735 if (!pconfig) {
736 ret = -ENOMEM;
737 goto port_error;
738 }
739
740 for (i = 0; i < dma->nr_ports; i++) {
741 pconfig[i].num = dma->port[i]->num;
742 pconfig[i].ch_mask = (1 << ch) - 1;
743 }
744
745 ret = sdw_stream_add_master(&cdns->bus, &sconfig,
746 pconfig, dma->nr_ports, dma->stream);
747 if (ret) {
748 dev_err(cdns->dev, "add master to stream failed:%d\n", ret);
749 goto stream_error;
750 }
751
752 kfree(pconfig);
753 return ret;
754
755stream_error:
756 kfree(pconfig);
757port_error:
758 intel_port_cleanup(dma);
759 kfree(dma->port);
760 return ret;
761}
762
763static int
764intel_hw_free(struct snd_pcm_substream *substream, struct snd_soc_dai *dai)
765{
766 struct sdw_cdns *cdns = snd_soc_dai_get_drvdata(dai);
767 struct sdw_cdns_dma_data *dma;
768 int ret;
769
770 dma = snd_soc_dai_get_dma_data(dai, substream);
771 if (!dma)
772 return -EIO;
773
774 ret = sdw_stream_remove_master(&cdns->bus, dma->stream);
775 if (ret < 0)
776 dev_err(dai->dev, "remove master from stream %s failed: %d\n",
777 dma->stream->name, ret);
778
779 intel_port_cleanup(dma);
780 kfree(dma->port);
781 return ret;
782}
783
784static void intel_shutdown(struct snd_pcm_substream *substream,
785 struct snd_soc_dai *dai)
786{
787 struct sdw_cdns_dma_data *dma;
788
789 dma = snd_soc_dai_get_dma_data(dai, substream);
790 if (!dma)
791 return;
792
793 snd_soc_dai_set_dma_data(dai, substream, NULL);
794 kfree(dma);
795}
796
797static int intel_pcm_set_sdw_stream(struct snd_soc_dai *dai,
798 void *stream, int direction)
799{
800 return cdns_set_sdw_stream(dai, stream, true, direction);
801}
802
803static int intel_pdm_set_sdw_stream(struct snd_soc_dai *dai,
804 void *stream, int direction)
805{
806 return cdns_set_sdw_stream(dai, stream, false, direction);
807}
808
809static const struct snd_soc_dai_ops intel_pcm_dai_ops = {
810 .hw_params = intel_hw_params,
811 .hw_free = intel_hw_free,
812 .shutdown = intel_shutdown,
813 .set_sdw_stream = intel_pcm_set_sdw_stream,
814};
815
816static const struct snd_soc_dai_ops intel_pdm_dai_ops = {
817 .hw_params = intel_hw_params,
818 .hw_free = intel_hw_free,
819 .shutdown = intel_shutdown,
820 .set_sdw_stream = intel_pdm_set_sdw_stream,
821};
822
823static const struct snd_soc_component_driver dai_component = {
824 .name = "soundwire",
825};
826
827static int intel_create_dai(struct sdw_cdns *cdns,
828 struct snd_soc_dai_driver *dais,
829 enum intel_pdi_type type,
830 u32 num, u32 off, u32 max_ch, bool pcm)
831{
832 int i;
833
834 if (num == 0)
835 return 0;
836
837 /* TODO: Read supported rates/formats from hardware */
838 for (i = off; i < (off + num); i++) {
839 dais[i].name = kasprintf(GFP_KERNEL, "SDW%d Pin%d",
840 cdns->instance, i);
841 if (!dais[i].name)
842 return -ENOMEM;
843
844 if (type == INTEL_PDI_BD || type == INTEL_PDI_OUT) {
845 dais[i].playback.stream_name =
846 kasprintf(GFP_KERNEL, "SDW%d Tx%d",
847 cdns->instance, i);
848 if (!dais[i].playback.stream_name) {
849 kfree(dais[i].name);
850 return -ENOMEM;
851 }
852
853 dais[i].playback.channels_min = 1;
854 dais[i].playback.channels_max = max_ch;
855 dais[i].playback.rates = SNDRV_PCM_RATE_48000;
856 dais[i].playback.formats = SNDRV_PCM_FMTBIT_S16_LE;
857 }
858
859 if (type == INTEL_PDI_BD || type == INTEL_PDI_IN) {
860 dais[i].capture.stream_name =
861 kasprintf(GFP_KERNEL, "SDW%d Rx%d",
862 cdns->instance, i);
863 if (!dais[i].capture.stream_name) {
864 kfree(dais[i].name);
865 kfree(dais[i].playback.stream_name);
866 return -ENOMEM;
867 }
868
869 dais[i].capture.channels_min = 1;
870 dais[i].capture.channels_max = max_ch;
871 dais[i].capture.rates = SNDRV_PCM_RATE_48000;
872 dais[i].capture.formats = SNDRV_PCM_FMTBIT_S16_LE;
873 }
874
875 dais[i].id = SDW_DAI_ID_RANGE_START + i;
876
877 if (pcm)
878 dais[i].ops = &intel_pcm_dai_ops;
879 else
880 dais[i].ops = &intel_pdm_dai_ops;
881 }
882
883 return 0;
884}
885
886static int intel_register_dai(struct sdw_intel *sdw)
887{
888 struct sdw_cdns *cdns = &sdw->cdns;
889 struct sdw_cdns_streams *stream;
890 struct snd_soc_dai_driver *dais;
891 int num_dai, ret, off = 0;
892
893 /* DAIs are created based on total number of PDIs supported */
894 num_dai = cdns->pcm.num_pdi + cdns->pdm.num_pdi;
895
896 dais = devm_kcalloc(cdns->dev, num_dai, sizeof(*dais), GFP_KERNEL);
897 if (!dais)
898 return -ENOMEM;
899
900 /* Create PCM DAIs */
901 stream = &cdns->pcm;
902
903 ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, cdns->pcm.num_in,
904 off, stream->num_ch_in, true);
905 if (ret)
906 return ret;
907
908 off += cdns->pcm.num_in;
909 ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pcm.num_out,
910 off, stream->num_ch_out, true);
911 if (ret)
912 return ret;
913
914 off += cdns->pcm.num_out;
915 ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pcm.num_bd,
916 off, stream->num_ch_bd, true);
917 if (ret)
918 return ret;
919
920 /* Create PDM DAIs */
921 stream = &cdns->pdm;
922 off += cdns->pcm.num_bd;
923 ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, cdns->pdm.num_in,
924 off, stream->num_ch_in, false);
925 if (ret)
926 return ret;
927
928 off += cdns->pdm.num_in;
929 ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pdm.num_out,
930 off, stream->num_ch_out, false);
931 if (ret)
932 return ret;
933
934 off += cdns->pdm.num_out;
935 ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pdm.num_bd,
936 off, stream->num_ch_bd, false);
937 if (ret)
938 return ret;
939
940 return snd_soc_register_component(cdns->dev, &dai_component,
941 dais, num_dai);
942}
943
944static int sdw_master_read_intel_prop(struct sdw_bus *bus)
945{
946 struct sdw_master_prop *prop = &bus->prop;
947 struct fwnode_handle *link;
948 char name[32];
949 u32 quirk_mask;
950
951 /* Find master handle */
952 snprintf(name, sizeof(name),
953 "mipi-sdw-link-%d-subproperties", bus->link_id);
954
955 link = device_get_named_child_node(bus->dev, name);
956 if (!link) {
957 dev_err(bus->dev, "Master node %s not found\n", name);
958 return -EIO;
959 }
960
961 fwnode_property_read_u32(link,
962 "intel-sdw-ip-clock",
963 &prop->mclk_freq);
964
965 fwnode_property_read_u32(link,
966 "intel-quirk-mask",
967 &quirk_mask);
968
969 if (quirk_mask & SDW_INTEL_QUIRK_MASK_BUS_DISABLE)
970 prop->hw_disabled = true;
971
972 return 0;
973}
974
975static int intel_prop_read(struct sdw_bus *bus)
976{
977 /* Initialize with default handler to read all DisCo properties */
978 sdw_master_read_prop(bus);
979
980 /* read Intel-specific properties */
981 sdw_master_read_intel_prop(bus);
982
983 return 0;
984}
985
986static struct sdw_master_ops sdw_intel_ops = {
987 .read_prop = sdw_master_read_prop,
988 .xfer_msg = cdns_xfer_msg,
989 .xfer_msg_defer = cdns_xfer_msg_defer,
990 .reset_page_addr = cdns_reset_page_addr,
991 .set_bus_conf = cdns_bus_conf,
992 .pre_bank_switch = intel_pre_bank_switch,
993 .post_bank_switch = intel_post_bank_switch,
994};
995
996/*
997 * probe and init
998 */
999static int intel_probe(struct platform_device *pdev)
1000{
1001 struct sdw_cdns_stream_config config;
1002 struct sdw_intel *sdw;
1003 int ret;
1004
1005 sdw = devm_kzalloc(&pdev->dev, sizeof(*sdw), GFP_KERNEL);
1006 if (!sdw)
1007 return -ENOMEM;
1008
1009 sdw->instance = pdev->id;
1010 sdw->res = dev_get_platdata(&pdev->dev);
1011 sdw->cdns.dev = &pdev->dev;
1012 sdw->cdns.registers = sdw->res->registers;
1013 sdw->cdns.instance = sdw->instance;
1014 sdw->cdns.msg_count = 0;
1015 sdw->cdns.bus.dev = &pdev->dev;
1016 sdw->cdns.bus.link_id = pdev->id;
1017
1018 sdw_cdns_probe(&sdw->cdns);
1019
1020 /* Set property read ops */
1021 sdw_intel_ops.read_prop = intel_prop_read;
1022 sdw->cdns.bus.ops = &sdw_intel_ops;
1023
1024 platform_set_drvdata(pdev, sdw);
1025
1026 ret = sdw_add_bus_master(&sdw->cdns.bus);
1027 if (ret) {
1028 dev_err(&pdev->dev, "sdw_add_bus_master fail: %d\n", ret);
1029 goto err_master_reg;
1030 }
1031
1032 if (sdw->cdns.bus.prop.hw_disabled) {
1033 dev_info(&pdev->dev, "SoundWire master %d is disabled, ignoring\n",
1034 sdw->cdns.bus.link_id);
1035 return 0;
1036 }
1037
1038 /* Initialize shim and controller */
1039 intel_link_power_up(sdw);
1040 intel_shim_init(sdw);
1041
1042 ret = sdw_cdns_init(&sdw->cdns);
1043 if (ret)
1044 goto err_init;
1045
1046 ret = sdw_cdns_enable_interrupt(&sdw->cdns);
1047
1048 /* Read the PDI config and initialize cadence PDI */
1049 intel_pdi_init(sdw, &config);
1050 ret = sdw_cdns_pdi_init(&sdw->cdns, config);
1051 if (ret)
1052 goto err_init;
1053
1054 intel_pdi_ch_update(sdw);
1055
1056 /* Acquire IRQ */
1057 ret = request_threaded_irq(sdw->res->irq, sdw_cdns_irq, sdw_cdns_thread,
1058 IRQF_SHARED, KBUILD_MODNAME, &sdw->cdns);
1059 if (ret < 0) {
1060 dev_err(sdw->cdns.dev, "unable to grab IRQ %d, disabling device\n",
1061 sdw->res->irq);
1062 goto err_init;
1063 }
1064
1065 /* Register DAIs */
1066 ret = intel_register_dai(sdw);
1067 if (ret) {
1068 dev_err(sdw->cdns.dev, "DAI registration failed: %d\n", ret);
1069 snd_soc_unregister_component(sdw->cdns.dev);
1070 goto err_dai;
1071 }
1072
1073 intel_debugfs_init(sdw);
1074
1075 return 0;
1076
1077err_dai:
1078 free_irq(sdw->res->irq, sdw);
1079err_init:
1080 sdw_delete_bus_master(&sdw->cdns.bus);
1081err_master_reg:
1082 return ret;
1083}
1084
1085static int intel_remove(struct platform_device *pdev)
1086{
1087 struct sdw_intel *sdw;
1088
1089 sdw = platform_get_drvdata(pdev);
1090
1091 if (!sdw->cdns.bus.prop.hw_disabled) {
1092 intel_debugfs_exit(sdw);
1093 free_irq(sdw->res->irq, sdw);
1094 snd_soc_unregister_component(sdw->cdns.dev);
1095 }
1096 sdw_delete_bus_master(&sdw->cdns.bus);
1097
1098 return 0;
1099}
1100
1101static struct platform_driver sdw_intel_drv = {
1102 .probe = intel_probe,
1103 .remove = intel_remove,
1104 .driver = {
1105 .name = "int-sdw",
1106
1107 },
1108};
1109
1110module_platform_driver(sdw_intel_drv);
1111
1112MODULE_LICENSE("Dual BSD/GPL");
1113MODULE_ALIAS("platform:int-sdw");
1114MODULE_DESCRIPTION("Intel Soundwire Master Driver");