xref: /openbmc/linux/drivers/soundwire/stream.c (revision c7aa9d77)
1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2 // Copyright(c) 2015-18 Intel Corporation.
3 
4 /*
5  *  stream.c - SoundWire Bus stream operations.
6  */
7 
8 #include <linux/delay.h>
9 #include <linux/device.h>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/mod_devicetable.h>
13 #include <linux/slab.h>
14 #include <linux/soundwire/sdw_registers.h>
15 #include <linux/soundwire/sdw.h>
16 #include <sound/soc.h>
17 #include "bus.h"
18 
19 /*
20  * Array of supported rows and columns as per MIPI SoundWire Specification 1.1
21  *
22  * The rows are arranged as per the array index value programmed
23  * in register. The index 15 has dummy value 0 in order to fill hole.
24  */
25 int sdw_rows[SDW_FRAME_ROWS] = {48, 50, 60, 64, 75, 80, 125, 147,
26 			96, 100, 120, 128, 150, 160, 250, 0,
27 			192, 200, 240, 256, 72, 144, 90, 180};
28 EXPORT_SYMBOL(sdw_rows);
29 
30 int sdw_cols[SDW_FRAME_COLS] = {2, 4, 6, 8, 10, 12, 14, 16};
31 EXPORT_SYMBOL(sdw_cols);
32 
33 int sdw_find_col_index(int col)
34 {
35 	int i;
36 
37 	for (i = 0; i < SDW_FRAME_COLS; i++) {
38 		if (sdw_cols[i] == col)
39 			return i;
40 	}
41 
42 	pr_warn("Requested column not found, selecting lowest column no: 2\n");
43 	return 0;
44 }
45 EXPORT_SYMBOL(sdw_find_col_index);
46 
47 int sdw_find_row_index(int row)
48 {
49 	int i;
50 
51 	for (i = 0; i < SDW_FRAME_ROWS; i++) {
52 		if (sdw_rows[i] == row)
53 			return i;
54 	}
55 
56 	pr_warn("Requested row not found, selecting lowest row no: 48\n");
57 	return 0;
58 }
59 EXPORT_SYMBOL(sdw_find_row_index);
60 
61 static int _sdw_program_slave_port_params(struct sdw_bus *bus,
62 					  struct sdw_slave *slave,
63 					  struct sdw_transport_params *t_params,
64 					  enum sdw_dpn_type type)
65 {
66 	u32 addr1, addr2, addr3, addr4;
67 	int ret;
68 	u16 wbuf;
69 
70 	if (bus->params.next_bank) {
71 		addr1 = SDW_DPN_OFFSETCTRL2_B1(t_params->port_num);
72 		addr2 = SDW_DPN_BLOCKCTRL3_B1(t_params->port_num);
73 		addr3 = SDW_DPN_SAMPLECTRL2_B1(t_params->port_num);
74 		addr4 = SDW_DPN_HCTRL_B1(t_params->port_num);
75 	} else {
76 		addr1 = SDW_DPN_OFFSETCTRL2_B0(t_params->port_num);
77 		addr2 = SDW_DPN_BLOCKCTRL3_B0(t_params->port_num);
78 		addr3 = SDW_DPN_SAMPLECTRL2_B0(t_params->port_num);
79 		addr4 = SDW_DPN_HCTRL_B0(t_params->port_num);
80 	}
81 
82 	/* Program DPN_OffsetCtrl2 registers */
83 	ret = sdw_write(slave, addr1, t_params->offset2);
84 	if (ret < 0) {
85 		dev_err(bus->dev, "DPN_OffsetCtrl2 register write failed\n");
86 		return ret;
87 	}
88 
89 	/* Program DPN_BlockCtrl3 register */
90 	ret = sdw_write(slave, addr2, t_params->blk_pkg_mode);
91 	if (ret < 0) {
92 		dev_err(bus->dev, "DPN_BlockCtrl3 register write failed\n");
93 		return ret;
94 	}
95 
96 	/*
97 	 * Data ports are FULL, SIMPLE and REDUCED. This function handles
98 	 * FULL and REDUCED only and beyond this point only FULL is
99 	 * handled, so bail out if we are not FULL data port type
100 	 */
101 	if (type != SDW_DPN_FULL)
102 		return ret;
103 
104 	/* Program DPN_SampleCtrl2 register */
105 	wbuf = FIELD_GET(SDW_DPN_SAMPLECTRL_HIGH, t_params->sample_interval - 1);
106 
107 	ret = sdw_write(slave, addr3, wbuf);
108 	if (ret < 0) {
109 		dev_err(bus->dev, "DPN_SampleCtrl2 register write failed\n");
110 		return ret;
111 	}
112 
113 	/* Program DPN_HCtrl register */
114 	wbuf = FIELD_PREP(SDW_DPN_HCTRL_HSTART, t_params->hstart);
115 	wbuf |= FIELD_PREP(SDW_DPN_HCTRL_HSTOP, t_params->hstop);
116 
117 	ret = sdw_write(slave, addr4, wbuf);
118 	if (ret < 0)
119 		dev_err(bus->dev, "DPN_HCtrl register write failed\n");
120 
121 	return ret;
122 }
123 
124 static int sdw_program_slave_port_params(struct sdw_bus *bus,
125 					 struct sdw_slave_runtime *s_rt,
126 					 struct sdw_port_runtime *p_rt)
127 {
128 	struct sdw_transport_params *t_params = &p_rt->transport_params;
129 	struct sdw_port_params *p_params = &p_rt->port_params;
130 	struct sdw_slave_prop *slave_prop = &s_rt->slave->prop;
131 	u32 addr1, addr2, addr3, addr4, addr5, addr6;
132 	struct sdw_dpn_prop *dpn_prop;
133 	int ret;
134 	u8 wbuf;
135 
136 	if (s_rt->slave->is_mockup_device)
137 		return 0;
138 
139 	dpn_prop = sdw_get_slave_dpn_prop(s_rt->slave,
140 					  s_rt->direction,
141 					  t_params->port_num);
142 	if (!dpn_prop)
143 		return -EINVAL;
144 
145 	addr1 = SDW_DPN_PORTCTRL(t_params->port_num);
146 	addr2 = SDW_DPN_BLOCKCTRL1(t_params->port_num);
147 
148 	if (bus->params.next_bank) {
149 		addr3 = SDW_DPN_SAMPLECTRL1_B1(t_params->port_num);
150 		addr4 = SDW_DPN_OFFSETCTRL1_B1(t_params->port_num);
151 		addr5 = SDW_DPN_BLOCKCTRL2_B1(t_params->port_num);
152 		addr6 = SDW_DPN_LANECTRL_B1(t_params->port_num);
153 
154 	} else {
155 		addr3 = SDW_DPN_SAMPLECTRL1_B0(t_params->port_num);
156 		addr4 = SDW_DPN_OFFSETCTRL1_B0(t_params->port_num);
157 		addr5 = SDW_DPN_BLOCKCTRL2_B0(t_params->port_num);
158 		addr6 = SDW_DPN_LANECTRL_B0(t_params->port_num);
159 	}
160 
161 	/* Program DPN_PortCtrl register */
162 	wbuf = FIELD_PREP(SDW_DPN_PORTCTRL_DATAMODE, p_params->data_mode);
163 	wbuf |= FIELD_PREP(SDW_DPN_PORTCTRL_FLOWMODE, p_params->flow_mode);
164 
165 	ret = sdw_update(s_rt->slave, addr1, 0xF, wbuf);
166 	if (ret < 0) {
167 		dev_err(&s_rt->slave->dev,
168 			"DPN_PortCtrl register write failed for port %d\n",
169 			t_params->port_num);
170 		return ret;
171 	}
172 
173 	if (!dpn_prop->read_only_wordlength) {
174 		/* Program DPN_BlockCtrl1 register */
175 		ret = sdw_write(s_rt->slave, addr2, (p_params->bps - 1));
176 		if (ret < 0) {
177 			dev_err(&s_rt->slave->dev,
178 				"DPN_BlockCtrl1 register write failed for port %d\n",
179 				t_params->port_num);
180 			return ret;
181 		}
182 	}
183 
184 	/* Program DPN_SampleCtrl1 register */
185 	wbuf = (t_params->sample_interval - 1) & SDW_DPN_SAMPLECTRL_LOW;
186 	ret = sdw_write(s_rt->slave, addr3, wbuf);
187 	if (ret < 0) {
188 		dev_err(&s_rt->slave->dev,
189 			"DPN_SampleCtrl1 register write failed for port %d\n",
190 			t_params->port_num);
191 		return ret;
192 	}
193 
194 	/* Program DPN_OffsetCtrl1 registers */
195 	ret = sdw_write(s_rt->slave, addr4, t_params->offset1);
196 	if (ret < 0) {
197 		dev_err(&s_rt->slave->dev,
198 			"DPN_OffsetCtrl1 register write failed for port %d\n",
199 			t_params->port_num);
200 		return ret;
201 	}
202 
203 	/* Program DPN_BlockCtrl2 register*/
204 	if (t_params->blk_grp_ctrl_valid) {
205 		ret = sdw_write(s_rt->slave, addr5, t_params->blk_grp_ctrl);
206 		if (ret < 0) {
207 			dev_err(&s_rt->slave->dev,
208 				"DPN_BlockCtrl2 reg write failed for port %d\n",
209 				t_params->port_num);
210 			return ret;
211 		}
212 	}
213 
214 	/* program DPN_LaneCtrl register */
215 	if (slave_prop->lane_control_support) {
216 		ret = sdw_write(s_rt->slave, addr6, t_params->lane_ctrl);
217 		if (ret < 0) {
218 			dev_err(&s_rt->slave->dev,
219 				"DPN_LaneCtrl register write failed for port %d\n",
220 				t_params->port_num);
221 			return ret;
222 		}
223 	}
224 
225 	if (dpn_prop->type != SDW_DPN_SIMPLE) {
226 		ret = _sdw_program_slave_port_params(bus, s_rt->slave,
227 						     t_params, dpn_prop->type);
228 		if (ret < 0)
229 			dev_err(&s_rt->slave->dev,
230 				"Transport reg write failed for port: %d\n",
231 				t_params->port_num);
232 	}
233 
234 	return ret;
235 }
236 
237 static int sdw_program_master_port_params(struct sdw_bus *bus,
238 					  struct sdw_port_runtime *p_rt)
239 {
240 	int ret;
241 
242 	/*
243 	 * we need to set transport and port parameters for the port.
244 	 * Transport parameters refers to the sample interval, offsets and
245 	 * hstart/stop etc of the data. Port parameters refers to word
246 	 * length, flow mode etc of the port
247 	 */
248 	ret = bus->port_ops->dpn_set_port_transport_params(bus,
249 					&p_rt->transport_params,
250 					bus->params.next_bank);
251 	if (ret < 0)
252 		return ret;
253 
254 	return bus->port_ops->dpn_set_port_params(bus,
255 						  &p_rt->port_params,
256 						  bus->params.next_bank);
257 }
258 
259 /**
260  * sdw_program_port_params() - Programs transport parameters of Master(s)
261  * and Slave(s)
262  *
263  * @m_rt: Master stream runtime
264  */
265 static int sdw_program_port_params(struct sdw_master_runtime *m_rt)
266 {
267 	struct sdw_slave_runtime *s_rt;
268 	struct sdw_bus *bus = m_rt->bus;
269 	struct sdw_port_runtime *p_rt;
270 	int ret = 0;
271 
272 	/* Program transport & port parameters for Slave(s) */
273 	list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
274 		list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
275 			ret = sdw_program_slave_port_params(bus, s_rt, p_rt);
276 			if (ret < 0)
277 				return ret;
278 		}
279 	}
280 
281 	/* Program transport & port parameters for Master(s) */
282 	list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
283 		ret = sdw_program_master_port_params(bus, p_rt);
284 		if (ret < 0)
285 			return ret;
286 	}
287 
288 	return 0;
289 }
290 
291 /**
292  * sdw_enable_disable_slave_ports: Enable/disable slave data port
293  *
294  * @bus: bus instance
295  * @s_rt: slave runtime
296  * @p_rt: port runtime
297  * @en: enable or disable operation
298  *
299  * This function only sets the enable/disable bits in the relevant bank, the
300  * actual enable/disable is done with a bank switch
301  */
302 static int sdw_enable_disable_slave_ports(struct sdw_bus *bus,
303 					  struct sdw_slave_runtime *s_rt,
304 					  struct sdw_port_runtime *p_rt,
305 					  bool en)
306 {
307 	struct sdw_transport_params *t_params = &p_rt->transport_params;
308 	u32 addr;
309 	int ret;
310 
311 	if (bus->params.next_bank)
312 		addr = SDW_DPN_CHANNELEN_B1(p_rt->num);
313 	else
314 		addr = SDW_DPN_CHANNELEN_B0(p_rt->num);
315 
316 	/*
317 	 * Since bus doesn't support sharing a port across two streams,
318 	 * it is safe to reset this register
319 	 */
320 	if (en)
321 		ret = sdw_write(s_rt->slave, addr, p_rt->ch_mask);
322 	else
323 		ret = sdw_write(s_rt->slave, addr, 0x0);
324 
325 	if (ret < 0)
326 		dev_err(&s_rt->slave->dev,
327 			"Slave chn_en reg write failed:%d port:%d\n",
328 			ret, t_params->port_num);
329 
330 	return ret;
331 }
332 
333 static int sdw_enable_disable_master_ports(struct sdw_master_runtime *m_rt,
334 					   struct sdw_port_runtime *p_rt,
335 					   bool en)
336 {
337 	struct sdw_transport_params *t_params = &p_rt->transport_params;
338 	struct sdw_bus *bus = m_rt->bus;
339 	struct sdw_enable_ch enable_ch;
340 	int ret;
341 
342 	enable_ch.port_num = p_rt->num;
343 	enable_ch.ch_mask = p_rt->ch_mask;
344 	enable_ch.enable = en;
345 
346 	/* Perform Master port channel(s) enable/disable */
347 	if (bus->port_ops->dpn_port_enable_ch) {
348 		ret = bus->port_ops->dpn_port_enable_ch(bus,
349 							&enable_ch,
350 							bus->params.next_bank);
351 		if (ret < 0) {
352 			dev_err(bus->dev,
353 				"Master chn_en write failed:%d port:%d\n",
354 				ret, t_params->port_num);
355 			return ret;
356 		}
357 	} else {
358 		dev_err(bus->dev,
359 			"dpn_port_enable_ch not supported, %s failed\n",
360 			en ? "enable" : "disable");
361 		return -EINVAL;
362 	}
363 
364 	return 0;
365 }
366 
367 /**
368  * sdw_enable_disable_ports() - Enable/disable port(s) for Master and
369  * Slave(s)
370  *
371  * @m_rt: Master stream runtime
372  * @en: mode (enable/disable)
373  */
374 static int sdw_enable_disable_ports(struct sdw_master_runtime *m_rt, bool en)
375 {
376 	struct sdw_port_runtime *s_port, *m_port;
377 	struct sdw_slave_runtime *s_rt;
378 	int ret = 0;
379 
380 	/* Enable/Disable Slave port(s) */
381 	list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
382 		list_for_each_entry(s_port, &s_rt->port_list, port_node) {
383 			ret = sdw_enable_disable_slave_ports(m_rt->bus, s_rt,
384 							     s_port, en);
385 			if (ret < 0)
386 				return ret;
387 		}
388 	}
389 
390 	/* Enable/Disable Master port(s) */
391 	list_for_each_entry(m_port, &m_rt->port_list, port_node) {
392 		ret = sdw_enable_disable_master_ports(m_rt, m_port, en);
393 		if (ret < 0)
394 			return ret;
395 	}
396 
397 	return 0;
398 }
399 
400 static int sdw_do_port_prep(struct sdw_slave_runtime *s_rt,
401 			    struct sdw_prepare_ch prep_ch,
402 			    enum sdw_port_prep_ops cmd)
403 {
404 	const struct sdw_slave_ops *ops = s_rt->slave->ops;
405 	int ret;
406 
407 	if (ops->port_prep) {
408 		ret = ops->port_prep(s_rt->slave, &prep_ch, cmd);
409 		if (ret < 0) {
410 			dev_err(&s_rt->slave->dev,
411 				"Slave Port Prep cmd %d failed: %d\n",
412 				cmd, ret);
413 			return ret;
414 		}
415 	}
416 
417 	return 0;
418 }
419 
420 static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
421 				       struct sdw_slave_runtime *s_rt,
422 				       struct sdw_port_runtime *p_rt,
423 				       bool prep)
424 {
425 	struct completion *port_ready;
426 	struct sdw_dpn_prop *dpn_prop;
427 	struct sdw_prepare_ch prep_ch;
428 	bool intr = false;
429 	int ret = 0, val;
430 	u32 addr;
431 
432 	prep_ch.num = p_rt->num;
433 	prep_ch.ch_mask = p_rt->ch_mask;
434 
435 	dpn_prop = sdw_get_slave_dpn_prop(s_rt->slave,
436 					  s_rt->direction,
437 					  prep_ch.num);
438 	if (!dpn_prop) {
439 		dev_err(bus->dev,
440 			"Slave Port:%d properties not found\n", prep_ch.num);
441 		return -EINVAL;
442 	}
443 
444 	prep_ch.prepare = prep;
445 
446 	prep_ch.bank = bus->params.next_bank;
447 
448 	if (dpn_prop->imp_def_interrupts || !dpn_prop->simple_ch_prep_sm ||
449 	    bus->params.s_data_mode != SDW_PORT_DATA_MODE_NORMAL)
450 		intr = true;
451 
452 	/*
453 	 * Enable interrupt before Port prepare.
454 	 * For Port de-prepare, it is assumed that port
455 	 * was prepared earlier
456 	 */
457 	if (prep && intr) {
458 		ret = sdw_configure_dpn_intr(s_rt->slave, p_rt->num, prep,
459 					     dpn_prop->imp_def_interrupts);
460 		if (ret < 0)
461 			return ret;
462 	}
463 
464 	/* Inform slave about the impending port prepare */
465 	sdw_do_port_prep(s_rt, prep_ch, SDW_OPS_PORT_PRE_PREP);
466 
467 	/* Prepare Slave port implementing CP_SM */
468 	if (!dpn_prop->simple_ch_prep_sm) {
469 		addr = SDW_DPN_PREPARECTRL(p_rt->num);
470 
471 		if (prep)
472 			ret = sdw_write(s_rt->slave, addr, p_rt->ch_mask);
473 		else
474 			ret = sdw_write(s_rt->slave, addr, 0x0);
475 
476 		if (ret < 0) {
477 			dev_err(&s_rt->slave->dev,
478 				"Slave prep_ctrl reg write failed\n");
479 			return ret;
480 		}
481 
482 		/* Wait for completion on port ready */
483 		port_ready = &s_rt->slave->port_ready[prep_ch.num];
484 		wait_for_completion_timeout(port_ready,
485 			msecs_to_jiffies(dpn_prop->ch_prep_timeout));
486 
487 		val = sdw_read(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
488 		if ((val < 0) || (val & p_rt->ch_mask)) {
489 			ret = (val < 0) ? val : -ETIMEDOUT;
490 			dev_err(&s_rt->slave->dev,
491 				"Chn prep failed for port %d: %d\n", prep_ch.num, ret);
492 			return ret;
493 		}
494 	}
495 
496 	/* Inform slaves about ports prepared */
497 	sdw_do_port_prep(s_rt, prep_ch, SDW_OPS_PORT_POST_PREP);
498 
499 	/* Disable interrupt after Port de-prepare */
500 	if (!prep && intr)
501 		ret = sdw_configure_dpn_intr(s_rt->slave, p_rt->num, prep,
502 					     dpn_prop->imp_def_interrupts);
503 
504 	return ret;
505 }
506 
507 static int sdw_prep_deprep_master_ports(struct sdw_master_runtime *m_rt,
508 					struct sdw_port_runtime *p_rt,
509 					bool prep)
510 {
511 	struct sdw_transport_params *t_params = &p_rt->transport_params;
512 	struct sdw_bus *bus = m_rt->bus;
513 	const struct sdw_master_port_ops *ops = bus->port_ops;
514 	struct sdw_prepare_ch prep_ch;
515 	int ret = 0;
516 
517 	prep_ch.num = p_rt->num;
518 	prep_ch.ch_mask = p_rt->ch_mask;
519 	prep_ch.prepare = prep; /* Prepare/De-prepare */
520 	prep_ch.bank = bus->params.next_bank;
521 
522 	/* Pre-prepare/Pre-deprepare port(s) */
523 	if (ops->dpn_port_prep) {
524 		ret = ops->dpn_port_prep(bus, &prep_ch);
525 		if (ret < 0) {
526 			dev_err(bus->dev, "Port prepare failed for port:%d\n",
527 				t_params->port_num);
528 			return ret;
529 		}
530 	}
531 
532 	return ret;
533 }
534 
535 /**
536  * sdw_prep_deprep_ports() - Prepare/De-prepare port(s) for Master(s) and
537  * Slave(s)
538  *
539  * @m_rt: Master runtime handle
540  * @prep: Prepare or De-prepare
541  */
542 static int sdw_prep_deprep_ports(struct sdw_master_runtime *m_rt, bool prep)
543 {
544 	struct sdw_slave_runtime *s_rt;
545 	struct sdw_port_runtime *p_rt;
546 	int ret = 0;
547 
548 	/* Prepare/De-prepare Slave port(s) */
549 	list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
550 		list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
551 			ret = sdw_prep_deprep_slave_ports(m_rt->bus, s_rt,
552 							  p_rt, prep);
553 			if (ret < 0)
554 				return ret;
555 		}
556 	}
557 
558 	/* Prepare/De-prepare Master port(s) */
559 	list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
560 		ret = sdw_prep_deprep_master_ports(m_rt, p_rt, prep);
561 		if (ret < 0)
562 			return ret;
563 	}
564 
565 	return ret;
566 }
567 
568 /**
569  * sdw_notify_config() - Notify bus configuration
570  *
571  * @m_rt: Master runtime handle
572  *
573  * This function notifies the Master(s) and Slave(s) of the
574  * new bus configuration.
575  */
576 static int sdw_notify_config(struct sdw_master_runtime *m_rt)
577 {
578 	struct sdw_slave_runtime *s_rt;
579 	struct sdw_bus *bus = m_rt->bus;
580 	struct sdw_slave *slave;
581 	int ret = 0;
582 
583 	if (bus->ops->set_bus_conf) {
584 		ret = bus->ops->set_bus_conf(bus, &bus->params);
585 		if (ret < 0)
586 			return ret;
587 	}
588 
589 	list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
590 		slave = s_rt->slave;
591 
592 		if (slave->ops->bus_config) {
593 			ret = slave->ops->bus_config(slave, &bus->params);
594 			if (ret < 0) {
595 				dev_err(bus->dev, "Notify Slave: %d failed\n",
596 					slave->dev_num);
597 				return ret;
598 			}
599 		}
600 	}
601 
602 	return ret;
603 }
604 
605 /**
606  * sdw_program_params() - Program transport and port parameters for Master(s)
607  * and Slave(s)
608  *
609  * @bus: SDW bus instance
610  * @prepare: true if sdw_program_params() is called by _prepare.
611  */
612 static int sdw_program_params(struct sdw_bus *bus, bool prepare)
613 {
614 	struct sdw_master_runtime *m_rt;
615 	int ret = 0;
616 
617 	list_for_each_entry(m_rt, &bus->m_rt_list, bus_node) {
618 
619 		/*
620 		 * this loop walks through all master runtimes for a
621 		 * bus, but the ports can only be configured while
622 		 * explicitly preparing a stream or handling an
623 		 * already-prepared stream otherwise.
624 		 */
625 		if (!prepare &&
626 		    m_rt->stream->state == SDW_STREAM_CONFIGURED)
627 			continue;
628 
629 		ret = sdw_program_port_params(m_rt);
630 		if (ret < 0) {
631 			dev_err(bus->dev,
632 				"Program transport params failed: %d\n", ret);
633 			return ret;
634 		}
635 
636 		ret = sdw_notify_config(m_rt);
637 		if (ret < 0) {
638 			dev_err(bus->dev,
639 				"Notify bus config failed: %d\n", ret);
640 			return ret;
641 		}
642 
643 		/* Enable port(s) on alternate bank for all active streams */
644 		if (m_rt->stream->state != SDW_STREAM_ENABLED)
645 			continue;
646 
647 		ret = sdw_enable_disable_ports(m_rt, true);
648 		if (ret < 0) {
649 			dev_err(bus->dev, "Enable channel failed: %d\n", ret);
650 			return ret;
651 		}
652 	}
653 
654 	return ret;
655 }
656 
657 static int sdw_bank_switch(struct sdw_bus *bus, int m_rt_count)
658 {
659 	int col_index, row_index;
660 	bool multi_link;
661 	struct sdw_msg *wr_msg;
662 	u8 *wbuf;
663 	int ret;
664 	u16 addr;
665 
666 	wr_msg = kzalloc(sizeof(*wr_msg), GFP_KERNEL);
667 	if (!wr_msg)
668 		return -ENOMEM;
669 
670 	bus->defer_msg.msg = wr_msg;
671 
672 	wbuf = kzalloc(sizeof(*wbuf), GFP_KERNEL);
673 	if (!wbuf) {
674 		ret = -ENOMEM;
675 		goto error_1;
676 	}
677 
678 	/* Get row and column index to program register */
679 	col_index = sdw_find_col_index(bus->params.col);
680 	row_index = sdw_find_row_index(bus->params.row);
681 	wbuf[0] = col_index | (row_index << 3);
682 
683 	if (bus->params.next_bank)
684 		addr = SDW_SCP_FRAMECTRL_B1;
685 	else
686 		addr = SDW_SCP_FRAMECTRL_B0;
687 
688 	sdw_fill_msg(wr_msg, NULL, addr, 1, SDW_BROADCAST_DEV_NUM,
689 		     SDW_MSG_FLAG_WRITE, wbuf);
690 	wr_msg->ssp_sync = true;
691 
692 	/*
693 	 * Set the multi_link flag only when both the hardware supports
694 	 * and hardware-based sync is required
695 	 */
696 	multi_link = bus->multi_link && (m_rt_count >= bus->hw_sync_min_links);
697 
698 	if (multi_link)
699 		ret = sdw_transfer_defer(bus, wr_msg, &bus->defer_msg);
700 	else
701 		ret = sdw_transfer(bus, wr_msg);
702 
703 	if (ret < 0 && ret != -ENODATA) {
704 		dev_err(bus->dev, "Slave frame_ctrl reg write failed\n");
705 		goto error;
706 	}
707 
708 	if (!multi_link) {
709 		kfree(wr_msg);
710 		kfree(wbuf);
711 		bus->defer_msg.msg = NULL;
712 		bus->params.curr_bank = !bus->params.curr_bank;
713 		bus->params.next_bank = !bus->params.next_bank;
714 	}
715 
716 	return 0;
717 
718 error:
719 	kfree(wbuf);
720 error_1:
721 	kfree(wr_msg);
722 	bus->defer_msg.msg = NULL;
723 	return ret;
724 }
725 
726 /**
727  * sdw_ml_sync_bank_switch: Multilink register bank switch
728  *
729  * @bus: SDW bus instance
730  *
731  * Caller function should free the buffers on error
732  */
733 static int sdw_ml_sync_bank_switch(struct sdw_bus *bus)
734 {
735 	unsigned long time_left;
736 
737 	if (!bus->multi_link)
738 		return 0;
739 
740 	/* Wait for completion of transfer */
741 	time_left = wait_for_completion_timeout(&bus->defer_msg.complete,
742 						bus->bank_switch_timeout);
743 
744 	if (!time_left) {
745 		dev_err(bus->dev, "Controller Timed out on bank switch\n");
746 		return -ETIMEDOUT;
747 	}
748 
749 	bus->params.curr_bank = !bus->params.curr_bank;
750 	bus->params.next_bank = !bus->params.next_bank;
751 
752 	if (bus->defer_msg.msg) {
753 		kfree(bus->defer_msg.msg->buf);
754 		kfree(bus->defer_msg.msg);
755 	}
756 
757 	return 0;
758 }
759 
760 static int do_bank_switch(struct sdw_stream_runtime *stream)
761 {
762 	struct sdw_master_runtime *m_rt;
763 	const struct sdw_master_ops *ops;
764 	struct sdw_bus *bus;
765 	bool multi_link = false;
766 	int m_rt_count;
767 	int ret = 0;
768 
769 	m_rt_count = stream->m_rt_count;
770 
771 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
772 		bus = m_rt->bus;
773 		ops = bus->ops;
774 
775 		if (bus->multi_link && m_rt_count >= bus->hw_sync_min_links) {
776 			multi_link = true;
777 			mutex_lock(&bus->msg_lock);
778 		}
779 
780 		/* Pre-bank switch */
781 		if (ops->pre_bank_switch) {
782 			ret = ops->pre_bank_switch(bus);
783 			if (ret < 0) {
784 				dev_err(bus->dev,
785 					"Pre bank switch op failed: %d\n", ret);
786 				goto msg_unlock;
787 			}
788 		}
789 
790 		/*
791 		 * Perform Bank switch operation.
792 		 * For multi link cases, the actual bank switch is
793 		 * synchronized across all Masters and happens later as a
794 		 * part of post_bank_switch ops.
795 		 */
796 		ret = sdw_bank_switch(bus, m_rt_count);
797 		if (ret < 0) {
798 			dev_err(bus->dev, "Bank switch failed: %d\n", ret);
799 			goto error;
800 		}
801 	}
802 
803 	/*
804 	 * For multi link cases, it is expected that the bank switch is
805 	 * triggered by the post_bank_switch for the first Master in the list
806 	 * and for the other Masters the post_bank_switch() should return doing
807 	 * nothing.
808 	 */
809 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
810 		bus = m_rt->bus;
811 		ops = bus->ops;
812 
813 		/* Post-bank switch */
814 		if (ops->post_bank_switch) {
815 			ret = ops->post_bank_switch(bus);
816 			if (ret < 0) {
817 				dev_err(bus->dev,
818 					"Post bank switch op failed: %d\n",
819 					ret);
820 				goto error;
821 			}
822 		} else if (multi_link) {
823 			dev_err(bus->dev,
824 				"Post bank switch ops not implemented\n");
825 			goto error;
826 		}
827 
828 		/* Set the bank switch timeout to default, if not set */
829 		if (!bus->bank_switch_timeout)
830 			bus->bank_switch_timeout = DEFAULT_BANK_SWITCH_TIMEOUT;
831 
832 		/* Check if bank switch was successful */
833 		ret = sdw_ml_sync_bank_switch(bus);
834 		if (ret < 0) {
835 			dev_err(bus->dev,
836 				"multi link bank switch failed: %d\n", ret);
837 			goto error;
838 		}
839 
840 		if (multi_link)
841 			mutex_unlock(&bus->msg_lock);
842 	}
843 
844 	return ret;
845 
846 error:
847 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
848 		bus = m_rt->bus;
849 		if (bus->defer_msg.msg) {
850 			kfree(bus->defer_msg.msg->buf);
851 			kfree(bus->defer_msg.msg);
852 		}
853 	}
854 
855 msg_unlock:
856 
857 	if (multi_link) {
858 		list_for_each_entry(m_rt, &stream->master_list, stream_node) {
859 			bus = m_rt->bus;
860 			if (mutex_is_locked(&bus->msg_lock))
861 				mutex_unlock(&bus->msg_lock);
862 		}
863 	}
864 
865 	return ret;
866 }
867 
868 static struct sdw_port_runtime *sdw_port_alloc(struct list_head *port_list)
869 {
870 	struct sdw_port_runtime *p_rt;
871 
872 	p_rt = kzalloc(sizeof(*p_rt), GFP_KERNEL);
873 	if (!p_rt)
874 		return NULL;
875 
876 	list_add_tail(&p_rt->port_node, port_list);
877 
878 	return p_rt;
879 }
880 
881 static int sdw_port_config(struct sdw_port_runtime *p_rt,
882 			   struct sdw_port_config *port_config,
883 			   int port_index)
884 {
885 	p_rt->ch_mask = port_config[port_index].ch_mask;
886 	p_rt->num = port_config[port_index].num;
887 
888 	/*
889 	 * TODO: Check port capabilities for requested configuration
890 	 */
891 
892 	return 0;
893 }
894 
895 static void sdw_port_free(struct sdw_port_runtime *p_rt)
896 {
897 	list_del(&p_rt->port_node);
898 	kfree(p_rt);
899 }
900 
901 static void sdw_slave_port_free(struct sdw_slave *slave,
902 				struct sdw_stream_runtime *stream)
903 {
904 	struct sdw_port_runtime *p_rt, *_p_rt;
905 	struct sdw_master_runtime *m_rt;
906 	struct sdw_slave_runtime *s_rt;
907 
908 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
909 		list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
910 			if (s_rt->slave != slave)
911 				continue;
912 
913 			list_for_each_entry_safe(p_rt, _p_rt,
914 						 &s_rt->port_list, port_node) {
915 				sdw_port_free(p_rt);
916 			}
917 		}
918 	}
919 }
920 
921 static int sdw_slave_port_alloc(struct sdw_slave *slave,
922 				struct sdw_slave_runtime *s_rt,
923 				unsigned int num_config)
924 {
925 	struct sdw_port_runtime *p_rt;
926 	int i;
927 
928 	/* Iterate for number of ports to perform initialization */
929 	for (i = 0; i < num_config; i++) {
930 		p_rt = sdw_port_alloc(&s_rt->port_list);
931 		if (!p_rt)
932 			return -ENOMEM;
933 	}
934 
935 	return 0;
936 }
937 
938 static int sdw_slave_port_is_valid_range(struct device *dev, int num)
939 {
940 	if (!SDW_VALID_PORT_RANGE(num)) {
941 		dev_err(dev, "SoundWire: Invalid port number :%d\n", num);
942 		return -EINVAL;
943 	}
944 
945 	return 0;
946 }
947 
948 static int sdw_slave_port_config(struct sdw_slave *slave,
949 				 struct sdw_slave_runtime *s_rt,
950 				 struct sdw_port_config *port_config)
951 {
952 	struct sdw_port_runtime *p_rt;
953 	int ret;
954 	int i;
955 
956 	i = 0;
957 	list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
958 		/*
959 		 * TODO: Check valid port range as defined by DisCo/
960 		 * slave
961 		 */
962 		ret = sdw_slave_port_is_valid_range(&slave->dev, port_config[i].num);
963 		if (ret < 0)
964 			return ret;
965 
966 		ret = sdw_port_config(p_rt, port_config, i);
967 		if (ret < 0)
968 			return ret;
969 		i++;
970 	}
971 
972 	return 0;
973 }
974 
975 static void sdw_master_port_free(struct sdw_master_runtime *m_rt)
976 {
977 	struct sdw_port_runtime *p_rt, *_p_rt;
978 
979 	list_for_each_entry_safe(p_rt, _p_rt, &m_rt->port_list, port_node) {
980 		sdw_port_free(p_rt);
981 	}
982 }
983 
984 static int sdw_master_port_alloc(struct sdw_master_runtime *m_rt,
985 				 unsigned int num_ports)
986 {
987 	struct sdw_port_runtime *p_rt;
988 	int i;
989 
990 	/* Iterate for number of ports to perform initialization */
991 	for (i = 0; i < num_ports; i++) {
992 		p_rt = sdw_port_alloc(&m_rt->port_list);
993 		if (!p_rt)
994 			return -ENOMEM;
995 	}
996 
997 	return 0;
998 }
999 
1000 static int sdw_master_port_config(struct sdw_master_runtime *m_rt,
1001 				  struct sdw_port_config *port_config)
1002 {
1003 	struct sdw_port_runtime *p_rt;
1004 	int ret;
1005 	int i;
1006 
1007 	i = 0;
1008 	list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
1009 		ret = sdw_port_config(p_rt, port_config, i);
1010 		if (ret < 0)
1011 			return ret;
1012 		i++;
1013 	}
1014 
1015 	return 0;
1016 }
1017 
1018 /**
1019  * sdw_release_stream() - Free the assigned stream runtime
1020  *
1021  * @stream: SoundWire stream runtime
1022  *
1023  * sdw_release_stream should be called only once per stream
1024  */
1025 void sdw_release_stream(struct sdw_stream_runtime *stream)
1026 {
1027 	kfree(stream);
1028 }
1029 EXPORT_SYMBOL(sdw_release_stream);
1030 
1031 /**
1032  * sdw_alloc_stream() - Allocate and return stream runtime
1033  *
1034  * @stream_name: SoundWire stream name
1035  *
1036  * Allocates a SoundWire stream runtime instance.
1037  * sdw_alloc_stream should be called only once per stream. Typically
1038  * invoked from ALSA/ASoC machine/platform driver.
1039  */
1040 struct sdw_stream_runtime *sdw_alloc_stream(const char *stream_name)
1041 {
1042 	struct sdw_stream_runtime *stream;
1043 
1044 	stream = kzalloc(sizeof(*stream), GFP_KERNEL);
1045 	if (!stream)
1046 		return NULL;
1047 
1048 	stream->name = stream_name;
1049 	INIT_LIST_HEAD(&stream->master_list);
1050 	stream->state = SDW_STREAM_ALLOCATED;
1051 	stream->m_rt_count = 0;
1052 
1053 	return stream;
1054 }
1055 EXPORT_SYMBOL(sdw_alloc_stream);
1056 
1057 static struct sdw_master_runtime
1058 *sdw_find_master_rt(struct sdw_bus *bus,
1059 		    struct sdw_stream_runtime *stream)
1060 {
1061 	struct sdw_master_runtime *m_rt;
1062 
1063 	/* Retrieve Bus handle if already available */
1064 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1065 		if (m_rt->bus == bus)
1066 			return m_rt;
1067 	}
1068 
1069 	return NULL;
1070 }
1071 
1072 /**
1073  * sdw_alloc_master_rt() - Allocates and initialize Master runtime handle
1074  *
1075  * @bus: SDW bus instance
1076  * @stream_config: Stream configuration
1077  * @stream: Stream runtime handle.
1078  *
1079  * This function is to be called with bus_lock held.
1080  */
1081 static struct sdw_master_runtime
1082 *sdw_alloc_master_rt(struct sdw_bus *bus,
1083 		     struct sdw_stream_config *stream_config,
1084 		     struct sdw_stream_runtime *stream)
1085 {
1086 	struct sdw_master_runtime *m_rt;
1087 
1088 	/*
1089 	 * check if Master is already allocated (as a result of Slave adding
1090 	 * it first), if so skip allocation and go to configure
1091 	 */
1092 	m_rt = sdw_find_master_rt(bus, stream);
1093 	if (m_rt)
1094 		goto stream_config;
1095 
1096 	m_rt = kzalloc(sizeof(*m_rt), GFP_KERNEL);
1097 	if (!m_rt)
1098 		return NULL;
1099 
1100 	/* Initialization of Master runtime handle */
1101 	INIT_LIST_HEAD(&m_rt->port_list);
1102 	INIT_LIST_HEAD(&m_rt->slave_rt_list);
1103 	list_add_tail(&m_rt->stream_node, &stream->master_list);
1104 
1105 	list_add_tail(&m_rt->bus_node, &bus->m_rt_list);
1106 
1107 stream_config:
1108 	m_rt->ch_count = stream_config->ch_count;
1109 	m_rt->bus = bus;
1110 	m_rt->stream = stream;
1111 	m_rt->direction = stream_config->direction;
1112 
1113 	return m_rt;
1114 }
1115 
1116 /**
1117  * sdw_alloc_slave_rt() - Allocate and initialize Slave runtime handle.
1118  *
1119  * @slave: Slave handle
1120  * @stream_config: Stream configuration
1121  *
1122  * This function is to be called with bus_lock held.
1123  */
1124 static struct sdw_slave_runtime
1125 *sdw_alloc_slave_rt(struct sdw_slave *slave,
1126 		    struct sdw_stream_config *stream_config)
1127 {
1128 	struct sdw_slave_runtime *s_rt;
1129 
1130 	s_rt = kzalloc(sizeof(*s_rt), GFP_KERNEL);
1131 	if (!s_rt)
1132 		return NULL;
1133 
1134 	INIT_LIST_HEAD(&s_rt->port_list);
1135 	s_rt->ch_count = stream_config->ch_count;
1136 	s_rt->direction = stream_config->direction;
1137 	s_rt->slave = slave;
1138 
1139 	return s_rt;
1140 }
1141 
1142 /**
1143  * sdw_release_slave_stream() - Free Slave(s) runtime handle
1144  *
1145  * @slave: Slave handle.
1146  * @stream: Stream runtime handle.
1147  *
1148  * This function is to be called with bus_lock held.
1149  */
1150 static void sdw_release_slave_stream(struct sdw_slave *slave,
1151 				     struct sdw_stream_runtime *stream)
1152 {
1153 	struct sdw_slave_runtime *s_rt, *_s_rt;
1154 	struct sdw_master_runtime *m_rt;
1155 
1156 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1157 		/* Retrieve Slave runtime handle */
1158 		list_for_each_entry_safe(s_rt, _s_rt,
1159 					 &m_rt->slave_rt_list, m_rt_node) {
1160 			if (s_rt->slave == slave) {
1161 				list_del(&s_rt->m_rt_node);
1162 				kfree(s_rt);
1163 				return;
1164 			}
1165 		}
1166 	}
1167 }
1168 
1169 /**
1170  * sdw_release_master_stream() - Free Master runtime handle
1171  *
1172  * @m_rt: Master runtime node
1173  * @stream: Stream runtime handle.
1174  *
1175  * This function is to be called with bus_lock held
1176  * It frees the Master runtime handle and associated Slave(s) runtime
1177  * handle. If this is called first then sdw_release_slave_stream() will have
1178  * no effect as Slave(s) runtime handle would already be freed up.
1179  */
1180 static void sdw_release_master_stream(struct sdw_master_runtime *m_rt,
1181 				      struct sdw_stream_runtime *stream)
1182 {
1183 	struct sdw_slave_runtime *s_rt, *_s_rt;
1184 
1185 	list_for_each_entry_safe(s_rt, _s_rt, &m_rt->slave_rt_list, m_rt_node) {
1186 		sdw_slave_port_free(s_rt->slave, stream);
1187 		sdw_release_slave_stream(s_rt->slave, stream);
1188 	}
1189 
1190 	list_del(&m_rt->stream_node);
1191 	list_del(&m_rt->bus_node);
1192 	kfree(m_rt);
1193 }
1194 
1195 /**
1196  * sdw_stream_remove_master() - Remove master from sdw_stream
1197  *
1198  * @bus: SDW Bus instance
1199  * @stream: SoundWire stream
1200  *
1201  * This removes and frees port_rt and master_rt from a stream
1202  */
1203 int sdw_stream_remove_master(struct sdw_bus *bus,
1204 			     struct sdw_stream_runtime *stream)
1205 {
1206 	struct sdw_master_runtime *m_rt, *_m_rt;
1207 
1208 	mutex_lock(&bus->bus_lock);
1209 
1210 	list_for_each_entry_safe(m_rt, _m_rt,
1211 				 &stream->master_list, stream_node) {
1212 		if (m_rt->bus != bus)
1213 			continue;
1214 
1215 		sdw_master_port_free(m_rt);
1216 		sdw_release_master_stream(m_rt, stream);
1217 		stream->m_rt_count--;
1218 	}
1219 
1220 	if (list_empty(&stream->master_list))
1221 		stream->state = SDW_STREAM_RELEASED;
1222 
1223 	mutex_unlock(&bus->bus_lock);
1224 
1225 	return 0;
1226 }
1227 EXPORT_SYMBOL(sdw_stream_remove_master);
1228 
1229 /**
1230  * sdw_stream_remove_slave() - Remove slave from sdw_stream
1231  *
1232  * @slave: SDW Slave instance
1233  * @stream: SoundWire stream
1234  *
1235  * This removes and frees port_rt and slave_rt from a stream
1236  */
1237 int sdw_stream_remove_slave(struct sdw_slave *slave,
1238 			    struct sdw_stream_runtime *stream)
1239 {
1240 	mutex_lock(&slave->bus->bus_lock);
1241 
1242 	sdw_slave_port_free(slave, stream);
1243 	sdw_release_slave_stream(slave, stream);
1244 
1245 	mutex_unlock(&slave->bus->bus_lock);
1246 
1247 	return 0;
1248 }
1249 EXPORT_SYMBOL(sdw_stream_remove_slave);
1250 
1251 /**
1252  * sdw_config_stream() - Configure the allocated stream
1253  *
1254  * @dev: SDW device
1255  * @stream: SoundWire stream
1256  * @stream_config: Stream configuration for audio stream
1257  * @is_slave: is API called from Slave or Master
1258  *
1259  * This function is to be called with bus_lock held.
1260  */
1261 static int sdw_config_stream(struct device *dev,
1262 			     struct sdw_stream_runtime *stream,
1263 			     struct sdw_stream_config *stream_config,
1264 			     bool is_slave)
1265 {
1266 	/*
1267 	 * Update the stream rate, channel and bps based on data
1268 	 * source. For more than one data source (multilink),
1269 	 * match the rate, bps, stream type and increment number of channels.
1270 	 *
1271 	 * If rate/bps is zero, it means the values are not set, so skip
1272 	 * comparison and allow the value to be set and stored in stream
1273 	 */
1274 	if (stream->params.rate &&
1275 	    stream->params.rate != stream_config->frame_rate) {
1276 		dev_err(dev, "rate not matching, stream:%s\n", stream->name);
1277 		return -EINVAL;
1278 	}
1279 
1280 	if (stream->params.bps &&
1281 	    stream->params.bps != stream_config->bps) {
1282 		dev_err(dev, "bps not matching, stream:%s\n", stream->name);
1283 		return -EINVAL;
1284 	}
1285 
1286 	stream->type = stream_config->type;
1287 	stream->params.rate = stream_config->frame_rate;
1288 	stream->params.bps = stream_config->bps;
1289 
1290 	/* TODO: Update this check during Device-device support */
1291 	if (is_slave)
1292 		stream->params.ch_count += stream_config->ch_count;
1293 
1294 	return 0;
1295 }
1296 
1297 /**
1298  * sdw_stream_add_master() - Allocate and add master runtime to a stream
1299  *
1300  * @bus: SDW Bus instance
1301  * @stream_config: Stream configuration for audio stream
1302  * @port_config: Port configuration for audio stream
1303  * @num_ports: Number of ports
1304  * @stream: SoundWire stream
1305  */
1306 int sdw_stream_add_master(struct sdw_bus *bus,
1307 			  struct sdw_stream_config *stream_config,
1308 			  struct sdw_port_config *port_config,
1309 			  unsigned int num_ports,
1310 			  struct sdw_stream_runtime *stream)
1311 {
1312 	struct sdw_master_runtime *m_rt;
1313 	int ret;
1314 
1315 	mutex_lock(&bus->bus_lock);
1316 
1317 	/*
1318 	 * For multi link streams, add the second master only if
1319 	 * the bus supports it.
1320 	 * Check if bus->multi_link is set
1321 	 */
1322 	if (!bus->multi_link && stream->m_rt_count > 0) {
1323 		dev_err(bus->dev,
1324 			"Multilink not supported, link %d\n", bus->link_id);
1325 		ret = -EINVAL;
1326 		goto unlock;
1327 	}
1328 
1329 	m_rt = sdw_alloc_master_rt(bus, stream_config, stream);
1330 	if (!m_rt) {
1331 		dev_err(bus->dev,
1332 			"Master runtime config failed for stream:%s\n",
1333 			stream->name);
1334 		ret = -ENOMEM;
1335 		goto unlock;
1336 	}
1337 
1338 	ret = sdw_config_stream(bus->dev, stream, stream_config, false);
1339 	if (ret)
1340 		goto stream_error;
1341 
1342 	ret = sdw_master_port_alloc(m_rt, num_ports);
1343 	if (ret)
1344 		goto stream_error;
1345 
1346 	ret = sdw_master_port_config(m_rt, port_config);
1347 	if (ret)
1348 		goto stream_error;
1349 
1350 	stream->m_rt_count++;
1351 
1352 	goto unlock;
1353 
1354 stream_error:
1355 	sdw_release_master_stream(m_rt, stream);
1356 unlock:
1357 	mutex_unlock(&bus->bus_lock);
1358 	return ret;
1359 }
1360 EXPORT_SYMBOL(sdw_stream_add_master);
1361 
1362 /**
1363  * sdw_stream_add_slave() - Allocate and add master/slave runtime to a stream
1364  *
1365  * @slave: SDW Slave instance
1366  * @stream_config: Stream configuration for audio stream
1367  * @stream: SoundWire stream
1368  * @port_config: Port configuration for audio stream
1369  * @num_ports: Number of ports
1370  *
1371  * It is expected that Slave is added before adding Master
1372  * to the Stream.
1373  *
1374  */
1375 int sdw_stream_add_slave(struct sdw_slave *slave,
1376 			 struct sdw_stream_config *stream_config,
1377 			 struct sdw_port_config *port_config,
1378 			 unsigned int num_ports,
1379 			 struct sdw_stream_runtime *stream)
1380 {
1381 	struct sdw_slave_runtime *s_rt;
1382 	struct sdw_master_runtime *m_rt;
1383 	int ret;
1384 
1385 	mutex_lock(&slave->bus->bus_lock);
1386 
1387 	/*
1388 	 * If this API is invoked by Slave first then m_rt is not valid.
1389 	 * So, allocate m_rt and add Slave to it.
1390 	 */
1391 	m_rt = sdw_alloc_master_rt(slave->bus, stream_config, stream);
1392 	if (!m_rt) {
1393 		dev_err(&slave->dev,
1394 			"alloc master runtime failed for stream:%s\n",
1395 			stream->name);
1396 		ret = -ENOMEM;
1397 		goto error;
1398 	}
1399 
1400 	s_rt = sdw_alloc_slave_rt(slave, stream_config);
1401 	if (!s_rt) {
1402 		dev_err(&slave->dev,
1403 			"Slave runtime config failed for stream:%s\n",
1404 			stream->name);
1405 		ret = -ENOMEM;
1406 		goto stream_error;
1407 	}
1408 	list_add_tail(&s_rt->m_rt_node, &m_rt->slave_rt_list);
1409 
1410 	ret = sdw_config_stream(&slave->dev, stream, stream_config, true);
1411 	if (ret)
1412 		goto stream_error;
1413 
1414 	ret = sdw_slave_port_alloc(slave, s_rt, num_ports);
1415 	if (ret)
1416 		goto stream_error;
1417 
1418 	ret = sdw_slave_port_config(slave, s_rt, port_config);
1419 	if (ret)
1420 		goto stream_error;
1421 
1422 	/*
1423 	 * Change stream state to CONFIGURED on first Slave add.
1424 	 * Bus is not aware of number of Slave(s) in a stream at this
1425 	 * point so cannot depend on all Slave(s) to be added in order to
1426 	 * change stream state to CONFIGURED.
1427 	 */
1428 	stream->state = SDW_STREAM_CONFIGURED;
1429 	goto error;
1430 
1431 stream_error:
1432 	/*
1433 	 * we hit error so cleanup the stream, release all Slave(s) and
1434 	 * Master runtime
1435 	 */
1436 	sdw_release_master_stream(m_rt, stream);
1437 error:
1438 	mutex_unlock(&slave->bus->bus_lock);
1439 	return ret;
1440 }
1441 EXPORT_SYMBOL(sdw_stream_add_slave);
1442 
1443 /**
1444  * sdw_get_slave_dpn_prop() - Get Slave port capabilities
1445  *
1446  * @slave: Slave handle
1447  * @direction: Data direction.
1448  * @port_num: Port number
1449  */
1450 struct sdw_dpn_prop *sdw_get_slave_dpn_prop(struct sdw_slave *slave,
1451 					    enum sdw_data_direction direction,
1452 					    unsigned int port_num)
1453 {
1454 	struct sdw_dpn_prop *dpn_prop;
1455 	u8 num_ports;
1456 	int i;
1457 
1458 	if (direction == SDW_DATA_DIR_TX) {
1459 		num_ports = hweight32(slave->prop.source_ports);
1460 		dpn_prop = slave->prop.src_dpn_prop;
1461 	} else {
1462 		num_ports = hweight32(slave->prop.sink_ports);
1463 		dpn_prop = slave->prop.sink_dpn_prop;
1464 	}
1465 
1466 	for (i = 0; i < num_ports; i++) {
1467 		if (dpn_prop[i].num == port_num)
1468 			return &dpn_prop[i];
1469 	}
1470 
1471 	return NULL;
1472 }
1473 
1474 /**
1475  * sdw_acquire_bus_lock: Acquire bus lock for all Master runtime(s)
1476  *
1477  * @stream: SoundWire stream
1478  *
1479  * Acquire bus_lock for each of the master runtime(m_rt) part of this
1480  * stream to reconfigure the bus.
1481  * NOTE: This function is called from SoundWire stream ops and is
1482  * expected that a global lock is held before acquiring bus_lock.
1483  */
1484 static void sdw_acquire_bus_lock(struct sdw_stream_runtime *stream)
1485 {
1486 	struct sdw_master_runtime *m_rt;
1487 	struct sdw_bus *bus;
1488 
1489 	/* Iterate for all Master(s) in Master list */
1490 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1491 		bus = m_rt->bus;
1492 
1493 		mutex_lock(&bus->bus_lock);
1494 	}
1495 }
1496 
1497 /**
1498  * sdw_release_bus_lock: Release bus lock for all Master runtime(s)
1499  *
1500  * @stream: SoundWire stream
1501  *
1502  * Release the previously held bus_lock after reconfiguring the bus.
1503  * NOTE: This function is called from SoundWire stream ops and is
1504  * expected that a global lock is held before releasing bus_lock.
1505  */
1506 static void sdw_release_bus_lock(struct sdw_stream_runtime *stream)
1507 {
1508 	struct sdw_master_runtime *m_rt;
1509 	struct sdw_bus *bus;
1510 
1511 	/* Iterate for all Master(s) in Master list */
1512 	list_for_each_entry_reverse(m_rt, &stream->master_list, stream_node) {
1513 		bus = m_rt->bus;
1514 		mutex_unlock(&bus->bus_lock);
1515 	}
1516 }
1517 
1518 static int _sdw_prepare_stream(struct sdw_stream_runtime *stream,
1519 			       bool update_params)
1520 {
1521 	struct sdw_master_runtime *m_rt;
1522 	struct sdw_bus *bus = NULL;
1523 	struct sdw_master_prop *prop;
1524 	struct sdw_bus_params params;
1525 	int ret;
1526 
1527 	/* Prepare  Master(s) and Slave(s) port(s) associated with stream */
1528 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1529 		bus = m_rt->bus;
1530 		prop = &bus->prop;
1531 		memcpy(&params, &bus->params, sizeof(params));
1532 
1533 		/* TODO: Support Asynchronous mode */
1534 		if ((prop->max_clk_freq % stream->params.rate) != 0) {
1535 			dev_err(bus->dev, "Async mode not supported\n");
1536 			return -EINVAL;
1537 		}
1538 
1539 		if (!update_params)
1540 			goto program_params;
1541 
1542 		/* Increment cumulative bus bandwidth */
1543 		/* TODO: Update this during Device-Device support */
1544 		bus->params.bandwidth += m_rt->stream->params.rate *
1545 			m_rt->ch_count * m_rt->stream->params.bps;
1546 
1547 		/* Compute params */
1548 		if (bus->compute_params) {
1549 			ret = bus->compute_params(bus);
1550 			if (ret < 0) {
1551 				dev_err(bus->dev, "Compute params failed: %d\n",
1552 					ret);
1553 				return ret;
1554 			}
1555 		}
1556 
1557 program_params:
1558 		/* Program params */
1559 		ret = sdw_program_params(bus, true);
1560 		if (ret < 0) {
1561 			dev_err(bus->dev, "Program params failed: %d\n", ret);
1562 			goto restore_params;
1563 		}
1564 	}
1565 
1566 	if (!bus) {
1567 		pr_err("Configuration error in %s\n", __func__);
1568 		return -EINVAL;
1569 	}
1570 
1571 	ret = do_bank_switch(stream);
1572 	if (ret < 0) {
1573 		dev_err(bus->dev, "Bank switch failed: %d\n", ret);
1574 		goto restore_params;
1575 	}
1576 
1577 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1578 		bus = m_rt->bus;
1579 
1580 		/* Prepare port(s) on the new clock configuration */
1581 		ret = sdw_prep_deprep_ports(m_rt, true);
1582 		if (ret < 0) {
1583 			dev_err(bus->dev, "Prepare port(s) failed ret = %d\n",
1584 				ret);
1585 			return ret;
1586 		}
1587 	}
1588 
1589 	stream->state = SDW_STREAM_PREPARED;
1590 
1591 	return ret;
1592 
1593 restore_params:
1594 	memcpy(&bus->params, &params, sizeof(params));
1595 	return ret;
1596 }
1597 
1598 /**
1599  * sdw_prepare_stream() - Prepare SoundWire stream
1600  *
1601  * @stream: Soundwire stream
1602  *
1603  * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1604  */
1605 int sdw_prepare_stream(struct sdw_stream_runtime *stream)
1606 {
1607 	bool update_params = true;
1608 	int ret;
1609 
1610 	if (!stream) {
1611 		pr_err("SoundWire: Handle not found for stream\n");
1612 		return -EINVAL;
1613 	}
1614 
1615 	sdw_acquire_bus_lock(stream);
1616 
1617 	if (stream->state == SDW_STREAM_PREPARED) {
1618 		ret = 0;
1619 		goto state_err;
1620 	}
1621 
1622 	if (stream->state != SDW_STREAM_CONFIGURED &&
1623 	    stream->state != SDW_STREAM_DEPREPARED &&
1624 	    stream->state != SDW_STREAM_DISABLED) {
1625 		pr_err("%s: %s: inconsistent state state %d\n",
1626 		       __func__, stream->name, stream->state);
1627 		ret = -EINVAL;
1628 		goto state_err;
1629 	}
1630 
1631 	/*
1632 	 * when the stream is DISABLED, this means sdw_prepare_stream()
1633 	 * is called as a result of an underflow or a resume operation.
1634 	 * In this case, the bus parameters shall not be recomputed, but
1635 	 * still need to be re-applied
1636 	 */
1637 	if (stream->state == SDW_STREAM_DISABLED)
1638 		update_params = false;
1639 
1640 	ret = _sdw_prepare_stream(stream, update_params);
1641 
1642 state_err:
1643 	sdw_release_bus_lock(stream);
1644 	return ret;
1645 }
1646 EXPORT_SYMBOL(sdw_prepare_stream);
1647 
1648 static int _sdw_enable_stream(struct sdw_stream_runtime *stream)
1649 {
1650 	struct sdw_master_runtime *m_rt;
1651 	struct sdw_bus *bus = NULL;
1652 	int ret;
1653 
1654 	/* Enable Master(s) and Slave(s) port(s) associated with stream */
1655 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1656 		bus = m_rt->bus;
1657 
1658 		/* Program params */
1659 		ret = sdw_program_params(bus, false);
1660 		if (ret < 0) {
1661 			dev_err(bus->dev, "Program params failed: %d\n", ret);
1662 			return ret;
1663 		}
1664 
1665 		/* Enable port(s) */
1666 		ret = sdw_enable_disable_ports(m_rt, true);
1667 		if (ret < 0) {
1668 			dev_err(bus->dev,
1669 				"Enable port(s) failed ret: %d\n", ret);
1670 			return ret;
1671 		}
1672 	}
1673 
1674 	if (!bus) {
1675 		pr_err("Configuration error in %s\n", __func__);
1676 		return -EINVAL;
1677 	}
1678 
1679 	ret = do_bank_switch(stream);
1680 	if (ret < 0) {
1681 		dev_err(bus->dev, "Bank switch failed: %d\n", ret);
1682 		return ret;
1683 	}
1684 
1685 	stream->state = SDW_STREAM_ENABLED;
1686 	return 0;
1687 }
1688 
1689 /**
1690  * sdw_enable_stream() - Enable SoundWire stream
1691  *
1692  * @stream: Soundwire stream
1693  *
1694  * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1695  */
1696 int sdw_enable_stream(struct sdw_stream_runtime *stream)
1697 {
1698 	int ret;
1699 
1700 	if (!stream) {
1701 		pr_err("SoundWire: Handle not found for stream\n");
1702 		return -EINVAL;
1703 	}
1704 
1705 	sdw_acquire_bus_lock(stream);
1706 
1707 	if (stream->state != SDW_STREAM_PREPARED &&
1708 	    stream->state != SDW_STREAM_DISABLED) {
1709 		pr_err("%s: %s: inconsistent state state %d\n",
1710 		       __func__, stream->name, stream->state);
1711 		ret = -EINVAL;
1712 		goto state_err;
1713 	}
1714 
1715 	ret = _sdw_enable_stream(stream);
1716 
1717 state_err:
1718 	sdw_release_bus_lock(stream);
1719 	return ret;
1720 }
1721 EXPORT_SYMBOL(sdw_enable_stream);
1722 
1723 static int _sdw_disable_stream(struct sdw_stream_runtime *stream)
1724 {
1725 	struct sdw_master_runtime *m_rt;
1726 	int ret;
1727 
1728 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1729 		struct sdw_bus *bus = m_rt->bus;
1730 
1731 		/* Disable port(s) */
1732 		ret = sdw_enable_disable_ports(m_rt, false);
1733 		if (ret < 0) {
1734 			dev_err(bus->dev, "Disable port(s) failed: %d\n", ret);
1735 			return ret;
1736 		}
1737 	}
1738 	stream->state = SDW_STREAM_DISABLED;
1739 
1740 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1741 		struct sdw_bus *bus = m_rt->bus;
1742 
1743 		/* Program params */
1744 		ret = sdw_program_params(bus, false);
1745 		if (ret < 0) {
1746 			dev_err(bus->dev, "Program params failed: %d\n", ret);
1747 			return ret;
1748 		}
1749 	}
1750 
1751 	ret = do_bank_switch(stream);
1752 	if (ret < 0) {
1753 		pr_err("Bank switch failed: %d\n", ret);
1754 		return ret;
1755 	}
1756 
1757 	/* make sure alternate bank (previous current) is also disabled */
1758 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1759 		struct sdw_bus *bus = m_rt->bus;
1760 
1761 		/* Disable port(s) */
1762 		ret = sdw_enable_disable_ports(m_rt, false);
1763 		if (ret < 0) {
1764 			dev_err(bus->dev, "Disable port(s) failed: %d\n", ret);
1765 			return ret;
1766 		}
1767 	}
1768 
1769 	return 0;
1770 }
1771 
1772 /**
1773  * sdw_disable_stream() - Disable SoundWire stream
1774  *
1775  * @stream: Soundwire stream
1776  *
1777  * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1778  */
1779 int sdw_disable_stream(struct sdw_stream_runtime *stream)
1780 {
1781 	int ret;
1782 
1783 	if (!stream) {
1784 		pr_err("SoundWire: Handle not found for stream\n");
1785 		return -EINVAL;
1786 	}
1787 
1788 	sdw_acquire_bus_lock(stream);
1789 
1790 	if (stream->state != SDW_STREAM_ENABLED) {
1791 		pr_err("%s: %s: inconsistent state state %d\n",
1792 		       __func__, stream->name, stream->state);
1793 		ret = -EINVAL;
1794 		goto state_err;
1795 	}
1796 
1797 	ret = _sdw_disable_stream(stream);
1798 
1799 state_err:
1800 	sdw_release_bus_lock(stream);
1801 	return ret;
1802 }
1803 EXPORT_SYMBOL(sdw_disable_stream);
1804 
1805 static int _sdw_deprepare_stream(struct sdw_stream_runtime *stream)
1806 {
1807 	struct sdw_master_runtime *m_rt;
1808 	struct sdw_bus *bus;
1809 	int ret = 0;
1810 
1811 	list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1812 		bus = m_rt->bus;
1813 		/* De-prepare port(s) */
1814 		ret = sdw_prep_deprep_ports(m_rt, false);
1815 		if (ret < 0) {
1816 			dev_err(bus->dev,
1817 				"De-prepare port(s) failed: %d\n", ret);
1818 			return ret;
1819 		}
1820 
1821 		/* TODO: Update this during Device-Device support */
1822 		bus->params.bandwidth -= m_rt->stream->params.rate *
1823 			m_rt->ch_count * m_rt->stream->params.bps;
1824 
1825 		/* Compute params */
1826 		if (bus->compute_params) {
1827 			ret = bus->compute_params(bus);
1828 			if (ret < 0) {
1829 				dev_err(bus->dev, "Compute params failed: %d\n",
1830 					ret);
1831 				return ret;
1832 			}
1833 		}
1834 
1835 		/* Program params */
1836 		ret = sdw_program_params(bus, false);
1837 		if (ret < 0) {
1838 			dev_err(bus->dev, "Program params failed: %d\n", ret);
1839 			return ret;
1840 		}
1841 	}
1842 
1843 	stream->state = SDW_STREAM_DEPREPARED;
1844 	return do_bank_switch(stream);
1845 }
1846 
1847 /**
1848  * sdw_deprepare_stream() - Deprepare SoundWire stream
1849  *
1850  * @stream: Soundwire stream
1851  *
1852  * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1853  */
1854 int sdw_deprepare_stream(struct sdw_stream_runtime *stream)
1855 {
1856 	int ret;
1857 
1858 	if (!stream) {
1859 		pr_err("SoundWire: Handle not found for stream\n");
1860 		return -EINVAL;
1861 	}
1862 
1863 	sdw_acquire_bus_lock(stream);
1864 
1865 	if (stream->state != SDW_STREAM_PREPARED &&
1866 	    stream->state != SDW_STREAM_DISABLED) {
1867 		pr_err("%s: %s: inconsistent state state %d\n",
1868 		       __func__, stream->name, stream->state);
1869 		ret = -EINVAL;
1870 		goto state_err;
1871 	}
1872 
1873 	ret = _sdw_deprepare_stream(stream);
1874 
1875 state_err:
1876 	sdw_release_bus_lock(stream);
1877 	return ret;
1878 }
1879 EXPORT_SYMBOL(sdw_deprepare_stream);
1880 
1881 static int set_stream(struct snd_pcm_substream *substream,
1882 		      struct sdw_stream_runtime *sdw_stream)
1883 {
1884 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
1885 	struct snd_soc_dai *dai;
1886 	int ret = 0;
1887 	int i;
1888 
1889 	/* Set stream pointer on all DAIs */
1890 	for_each_rtd_dais(rtd, i, dai) {
1891 		ret = snd_soc_dai_set_stream(dai, sdw_stream, substream->stream);
1892 		if (ret < 0) {
1893 			dev_err(rtd->dev, "failed to set stream pointer on dai %s\n", dai->name);
1894 			break;
1895 		}
1896 	}
1897 
1898 	return ret;
1899 }
1900 
1901 /**
1902  * sdw_startup_stream() - Startup SoundWire stream
1903  *
1904  * @sdw_substream: Soundwire stream
1905  *
1906  * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1907  */
1908 int sdw_startup_stream(void *sdw_substream)
1909 {
1910 	struct snd_pcm_substream *substream = sdw_substream;
1911 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
1912 	struct sdw_stream_runtime *sdw_stream;
1913 	char *name;
1914 	int ret;
1915 
1916 	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1917 		name = kasprintf(GFP_KERNEL, "%s-Playback", substream->name);
1918 	else
1919 		name = kasprintf(GFP_KERNEL, "%s-Capture", substream->name);
1920 
1921 	if (!name)
1922 		return -ENOMEM;
1923 
1924 	sdw_stream = sdw_alloc_stream(name);
1925 	if (!sdw_stream) {
1926 		dev_err(rtd->dev, "alloc stream failed for substream DAI %s\n", substream->name);
1927 		ret = -ENOMEM;
1928 		goto error;
1929 	}
1930 
1931 	ret = set_stream(substream, sdw_stream);
1932 	if (ret < 0)
1933 		goto release_stream;
1934 	return 0;
1935 
1936 release_stream:
1937 	sdw_release_stream(sdw_stream);
1938 	set_stream(substream, NULL);
1939 error:
1940 	kfree(name);
1941 	return ret;
1942 }
1943 EXPORT_SYMBOL(sdw_startup_stream);
1944 
1945 /**
1946  * sdw_shutdown_stream() - Shutdown SoundWire stream
1947  *
1948  * @sdw_substream: Soundwire stream
1949  *
1950  * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1951  */
1952 void sdw_shutdown_stream(void *sdw_substream)
1953 {
1954 	struct snd_pcm_substream *substream = sdw_substream;
1955 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
1956 	struct sdw_stream_runtime *sdw_stream;
1957 	struct snd_soc_dai *dai;
1958 
1959 	/* Find stream from first CPU DAI */
1960 	dai = asoc_rtd_to_cpu(rtd, 0);
1961 
1962 	sdw_stream = snd_soc_dai_get_stream(dai, substream->stream);
1963 
1964 	if (IS_ERR(sdw_stream)) {
1965 		dev_err(rtd->dev, "no stream found for DAI %s\n", dai->name);
1966 		return;
1967 	}
1968 
1969 	/* release memory */
1970 	kfree(sdw_stream->name);
1971 	sdw_release_stream(sdw_stream);
1972 
1973 	/* clear DAI data */
1974 	set_stream(substream, NULL);
1975 }
1976 EXPORT_SYMBOL(sdw_shutdown_stream);
1977