1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2 // Copyright(c) 2015-18 Intel Corporation.
5 * stream.c - SoundWire Bus stream operations.
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 <linux/soundwire/sdw_type.h>
17 #include <sound/soc.h>
21 * Array of supported rows and columns as per MIPI SoundWire Specification 1.1
23 * The rows are arranged as per the array index value programmed
24 * in register. The index 15 has dummy value 0 in order to fill hole.
26 int sdw_rows[SDW_FRAME_ROWS] = {48, 50, 60, 64, 75, 80, 125, 147,
27 96, 100, 120, 128, 150, 160, 250, 0,
28 192, 200, 240, 256, 72, 144, 90, 180};
29 EXPORT_SYMBOL(sdw_rows);
31 int sdw_cols[SDW_FRAME_COLS] = {2, 4, 6, 8, 10, 12, 14, 16};
32 EXPORT_SYMBOL(sdw_cols);
34 int sdw_find_col_index(int col)
38 for (i = 0; i < SDW_FRAME_COLS; i++) {
39 if (sdw_cols[i] == col)
43 pr_warn("Requested column not found, selecting lowest column no: 2\n");
46 EXPORT_SYMBOL(sdw_find_col_index);
48 int sdw_find_row_index(int row)
52 for (i = 0; i < SDW_FRAME_ROWS; i++) {
53 if (sdw_rows[i] == row)
57 pr_warn("Requested row not found, selecting lowest row no: 48\n");
60 EXPORT_SYMBOL(sdw_find_row_index);
62 static int _sdw_program_slave_port_params(struct sdw_bus *bus,
63 struct sdw_slave *slave,
64 struct sdw_transport_params *t_params,
65 enum sdw_dpn_type type)
67 u32 addr1, addr2, addr3, addr4;
71 if (bus->params.next_bank) {
72 addr1 = SDW_DPN_OFFSETCTRL2_B1(t_params->port_num);
73 addr2 = SDW_DPN_BLOCKCTRL3_B1(t_params->port_num);
74 addr3 = SDW_DPN_SAMPLECTRL2_B1(t_params->port_num);
75 addr4 = SDW_DPN_HCTRL_B1(t_params->port_num);
77 addr1 = SDW_DPN_OFFSETCTRL2_B0(t_params->port_num);
78 addr2 = SDW_DPN_BLOCKCTRL3_B0(t_params->port_num);
79 addr3 = SDW_DPN_SAMPLECTRL2_B0(t_params->port_num);
80 addr4 = SDW_DPN_HCTRL_B0(t_params->port_num);
83 /* Program DPN_OffsetCtrl2 registers */
84 ret = sdw_write(slave, addr1, t_params->offset2);
86 dev_err(bus->dev, "DPN_OffsetCtrl2 register write failed\n");
90 /* Program DPN_BlockCtrl3 register */
91 ret = sdw_write(slave, addr2, t_params->blk_pkg_mode);
93 dev_err(bus->dev, "DPN_BlockCtrl3 register write failed\n");
98 * Data ports are FULL, SIMPLE and REDUCED. This function handles
99 * FULL and REDUCED only and beyond this point only FULL is
100 * handled, so bail out if we are not FULL data port type
102 if (type != SDW_DPN_FULL)
105 /* Program DPN_SampleCtrl2 register */
106 wbuf = FIELD_GET(SDW_DPN_SAMPLECTRL_HIGH, t_params->sample_interval - 1);
108 ret = sdw_write(slave, addr3, wbuf);
110 dev_err(bus->dev, "DPN_SampleCtrl2 register write failed\n");
114 /* Program DPN_HCtrl register */
115 wbuf = FIELD_PREP(SDW_DPN_HCTRL_HSTART, t_params->hstart);
116 wbuf |= FIELD_PREP(SDW_DPN_HCTRL_HSTOP, t_params->hstop);
118 ret = sdw_write(slave, addr4, wbuf);
120 dev_err(bus->dev, "DPN_HCtrl register write failed\n");
125 static int sdw_program_slave_port_params(struct sdw_bus *bus,
126 struct sdw_slave_runtime *s_rt,
127 struct sdw_port_runtime *p_rt)
129 struct sdw_transport_params *t_params = &p_rt->transport_params;
130 struct sdw_port_params *p_params = &p_rt->port_params;
131 struct sdw_slave_prop *slave_prop = &s_rt->slave->prop;
132 u32 addr1, addr2, addr3, addr4, addr5, addr6;
133 struct sdw_dpn_prop *dpn_prop;
137 if (s_rt->slave->is_mockup_device)
140 dpn_prop = sdw_get_slave_dpn_prop(s_rt->slave,
146 addr1 = SDW_DPN_PORTCTRL(t_params->port_num);
147 addr2 = SDW_DPN_BLOCKCTRL1(t_params->port_num);
149 if (bus->params.next_bank) {
150 addr3 = SDW_DPN_SAMPLECTRL1_B1(t_params->port_num);
151 addr4 = SDW_DPN_OFFSETCTRL1_B1(t_params->port_num);
152 addr5 = SDW_DPN_BLOCKCTRL2_B1(t_params->port_num);
153 addr6 = SDW_DPN_LANECTRL_B1(t_params->port_num);
156 addr3 = SDW_DPN_SAMPLECTRL1_B0(t_params->port_num);
157 addr4 = SDW_DPN_OFFSETCTRL1_B0(t_params->port_num);
158 addr5 = SDW_DPN_BLOCKCTRL2_B0(t_params->port_num);
159 addr6 = SDW_DPN_LANECTRL_B0(t_params->port_num);
162 /* Program DPN_PortCtrl register */
163 wbuf = FIELD_PREP(SDW_DPN_PORTCTRL_DATAMODE, p_params->data_mode);
164 wbuf |= FIELD_PREP(SDW_DPN_PORTCTRL_FLOWMODE, p_params->flow_mode);
166 ret = sdw_update(s_rt->slave, addr1, 0xF, wbuf);
168 dev_err(&s_rt->slave->dev,
169 "DPN_PortCtrl register write failed for port %d\n",
174 if (!dpn_prop->read_only_wordlength) {
175 /* Program DPN_BlockCtrl1 register */
176 ret = sdw_write(s_rt->slave, addr2, (p_params->bps - 1));
178 dev_err(&s_rt->slave->dev,
179 "DPN_BlockCtrl1 register write failed for port %d\n",
185 /* Program DPN_SampleCtrl1 register */
186 wbuf = (t_params->sample_interval - 1) & SDW_DPN_SAMPLECTRL_LOW;
187 ret = sdw_write(s_rt->slave, addr3, wbuf);
189 dev_err(&s_rt->slave->dev,
190 "DPN_SampleCtrl1 register write failed for port %d\n",
195 /* Program DPN_OffsetCtrl1 registers */
196 ret = sdw_write(s_rt->slave, addr4, t_params->offset1);
198 dev_err(&s_rt->slave->dev,
199 "DPN_OffsetCtrl1 register write failed for port %d\n",
204 /* Program DPN_BlockCtrl2 register*/
205 if (t_params->blk_grp_ctrl_valid) {
206 ret = sdw_write(s_rt->slave, addr5, t_params->blk_grp_ctrl);
208 dev_err(&s_rt->slave->dev,
209 "DPN_BlockCtrl2 reg write failed for port %d\n",
215 /* program DPN_LaneCtrl register */
216 if (slave_prop->lane_control_support) {
217 ret = sdw_write(s_rt->slave, addr6, t_params->lane_ctrl);
219 dev_err(&s_rt->slave->dev,
220 "DPN_LaneCtrl register write failed for port %d\n",
226 if (dpn_prop->type != SDW_DPN_SIMPLE) {
227 ret = _sdw_program_slave_port_params(bus, s_rt->slave,
228 t_params, dpn_prop->type);
230 dev_err(&s_rt->slave->dev,
231 "Transport reg write failed for port: %d\n",
238 static int sdw_program_master_port_params(struct sdw_bus *bus,
239 struct sdw_port_runtime *p_rt)
244 * we need to set transport and port parameters for the port.
245 * Transport parameters refers to the sample interval, offsets and
246 * hstart/stop etc of the data. Port parameters refers to word
247 * length, flow mode etc of the port
249 ret = bus->port_ops->dpn_set_port_transport_params(bus,
250 &p_rt->transport_params,
251 bus->params.next_bank);
255 return bus->port_ops->dpn_set_port_params(bus,
257 bus->params.next_bank);
261 * sdw_program_port_params() - Programs transport parameters of Master(s)
264 * @m_rt: Master stream runtime
266 static int sdw_program_port_params(struct sdw_master_runtime *m_rt)
268 struct sdw_slave_runtime *s_rt;
269 struct sdw_bus *bus = m_rt->bus;
270 struct sdw_port_runtime *p_rt;
273 /* Program transport & port parameters for Slave(s) */
274 list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
275 list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
276 ret = sdw_program_slave_port_params(bus, s_rt, p_rt);
282 /* Program transport & port parameters for Master(s) */
283 list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
284 ret = sdw_program_master_port_params(bus, p_rt);
293 * sdw_enable_disable_slave_ports: Enable/disable slave data port
296 * @s_rt: slave runtime
297 * @p_rt: port runtime
298 * @en: enable or disable operation
300 * This function only sets the enable/disable bits in the relevant bank, the
301 * actual enable/disable is done with a bank switch
303 static int sdw_enable_disable_slave_ports(struct sdw_bus *bus,
304 struct sdw_slave_runtime *s_rt,
305 struct sdw_port_runtime *p_rt,
308 struct sdw_transport_params *t_params = &p_rt->transport_params;
312 if (bus->params.next_bank)
313 addr = SDW_DPN_CHANNELEN_B1(p_rt->num);
315 addr = SDW_DPN_CHANNELEN_B0(p_rt->num);
318 * Since bus doesn't support sharing a port across two streams,
319 * it is safe to reset this register
322 ret = sdw_write(s_rt->slave, addr, p_rt->ch_mask);
324 ret = sdw_write(s_rt->slave, addr, 0x0);
327 dev_err(&s_rt->slave->dev,
328 "Slave chn_en reg write failed:%d port:%d\n",
329 ret, t_params->port_num);
334 static int sdw_enable_disable_master_ports(struct sdw_master_runtime *m_rt,
335 struct sdw_port_runtime *p_rt,
338 struct sdw_transport_params *t_params = &p_rt->transport_params;
339 struct sdw_bus *bus = m_rt->bus;
340 struct sdw_enable_ch enable_ch;
343 enable_ch.port_num = p_rt->num;
344 enable_ch.ch_mask = p_rt->ch_mask;
345 enable_ch.enable = en;
347 /* Perform Master port channel(s) enable/disable */
348 if (bus->port_ops->dpn_port_enable_ch) {
349 ret = bus->port_ops->dpn_port_enable_ch(bus,
351 bus->params.next_bank);
354 "Master chn_en write failed:%d port:%d\n",
355 ret, t_params->port_num);
360 "dpn_port_enable_ch not supported, %s failed\n",
361 en ? "enable" : "disable");
369 * sdw_enable_disable_ports() - Enable/disable port(s) for Master and
372 * @m_rt: Master stream runtime
373 * @en: mode (enable/disable)
375 static int sdw_enable_disable_ports(struct sdw_master_runtime *m_rt, bool en)
377 struct sdw_port_runtime *s_port, *m_port;
378 struct sdw_slave_runtime *s_rt;
381 /* Enable/Disable Slave port(s) */
382 list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
383 list_for_each_entry(s_port, &s_rt->port_list, port_node) {
384 ret = sdw_enable_disable_slave_ports(m_rt->bus, s_rt,
391 /* Enable/Disable Master port(s) */
392 list_for_each_entry(m_port, &m_rt->port_list, port_node) {
393 ret = sdw_enable_disable_master_ports(m_rt, m_port, en);
401 static int sdw_do_port_prep(struct sdw_slave_runtime *s_rt,
402 struct sdw_prepare_ch prep_ch,
403 enum sdw_port_prep_ops cmd)
406 struct sdw_slave *slave = s_rt->slave;
408 mutex_lock(&slave->sdw_dev_lock);
411 struct device *dev = &slave->dev;
412 struct sdw_driver *drv = drv_to_sdw_driver(dev->driver);
414 if (drv->ops && drv->ops->port_prep) {
415 ret = drv->ops->port_prep(slave, &prep_ch, cmd);
417 dev_err(dev, "Slave Port Prep cmd %d failed: %d\n",
422 mutex_unlock(&slave->sdw_dev_lock);
427 static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
428 struct sdw_slave_runtime *s_rt,
429 struct sdw_port_runtime *p_rt,
432 struct completion *port_ready;
433 struct sdw_dpn_prop *dpn_prop;
434 struct sdw_prepare_ch prep_ch;
439 prep_ch.num = p_rt->num;
440 prep_ch.ch_mask = p_rt->ch_mask;
442 dpn_prop = sdw_get_slave_dpn_prop(s_rt->slave,
447 "Slave Port:%d properties not found\n", prep_ch.num);
451 prep_ch.prepare = prep;
453 prep_ch.bank = bus->params.next_bank;
455 if (dpn_prop->imp_def_interrupts || !dpn_prop->simple_ch_prep_sm ||
456 bus->params.s_data_mode != SDW_PORT_DATA_MODE_NORMAL)
460 * Enable interrupt before Port prepare.
461 * For Port de-prepare, it is assumed that port
462 * was prepared earlier
465 ret = sdw_configure_dpn_intr(s_rt->slave, p_rt->num, prep,
466 dpn_prop->imp_def_interrupts);
471 /* Inform slave about the impending port prepare */
472 sdw_do_port_prep(s_rt, prep_ch, SDW_OPS_PORT_PRE_PREP);
474 /* Prepare Slave port implementing CP_SM */
475 if (!dpn_prop->simple_ch_prep_sm) {
476 addr = SDW_DPN_PREPARECTRL(p_rt->num);
479 ret = sdw_write(s_rt->slave, addr, p_rt->ch_mask);
481 ret = sdw_write(s_rt->slave, addr, 0x0);
484 dev_err(&s_rt->slave->dev,
485 "Slave prep_ctrl reg write failed\n");
489 /* Wait for completion on port ready */
490 port_ready = &s_rt->slave->port_ready[prep_ch.num];
491 wait_for_completion_timeout(port_ready,
492 msecs_to_jiffies(dpn_prop->ch_prep_timeout));
494 val = sdw_read(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
495 if ((val < 0) || (val & p_rt->ch_mask)) {
496 ret = (val < 0) ? val : -ETIMEDOUT;
497 dev_err(&s_rt->slave->dev,
498 "Chn prep failed for port %d: %d\n", prep_ch.num, ret);
503 /* Inform slaves about ports prepared */
504 sdw_do_port_prep(s_rt, prep_ch, SDW_OPS_PORT_POST_PREP);
506 /* Disable interrupt after Port de-prepare */
508 ret = sdw_configure_dpn_intr(s_rt->slave, p_rt->num, prep,
509 dpn_prop->imp_def_interrupts);
514 static int sdw_prep_deprep_master_ports(struct sdw_master_runtime *m_rt,
515 struct sdw_port_runtime *p_rt,
518 struct sdw_transport_params *t_params = &p_rt->transport_params;
519 struct sdw_bus *bus = m_rt->bus;
520 const struct sdw_master_port_ops *ops = bus->port_ops;
521 struct sdw_prepare_ch prep_ch;
524 prep_ch.num = p_rt->num;
525 prep_ch.ch_mask = p_rt->ch_mask;
526 prep_ch.prepare = prep; /* Prepare/De-prepare */
527 prep_ch.bank = bus->params.next_bank;
529 /* Pre-prepare/Pre-deprepare port(s) */
530 if (ops->dpn_port_prep) {
531 ret = ops->dpn_port_prep(bus, &prep_ch);
533 dev_err(bus->dev, "Port prepare failed for port:%d\n",
543 * sdw_prep_deprep_ports() - Prepare/De-prepare port(s) for Master(s) and
546 * @m_rt: Master runtime handle
547 * @prep: Prepare or De-prepare
549 static int sdw_prep_deprep_ports(struct sdw_master_runtime *m_rt, bool prep)
551 struct sdw_slave_runtime *s_rt;
552 struct sdw_port_runtime *p_rt;
555 /* Prepare/De-prepare Slave port(s) */
556 list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
557 list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
558 ret = sdw_prep_deprep_slave_ports(m_rt->bus, s_rt,
565 /* Prepare/De-prepare Master port(s) */
566 list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
567 ret = sdw_prep_deprep_master_ports(m_rt, p_rt, prep);
576 * sdw_notify_config() - Notify bus configuration
578 * @m_rt: Master runtime handle
580 * This function notifies the Master(s) and Slave(s) of the
581 * new bus configuration.
583 static int sdw_notify_config(struct sdw_master_runtime *m_rt)
585 struct sdw_slave_runtime *s_rt;
586 struct sdw_bus *bus = m_rt->bus;
587 struct sdw_slave *slave;
590 if (bus->ops->set_bus_conf) {
591 ret = bus->ops->set_bus_conf(bus, &bus->params);
596 list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
599 mutex_lock(&slave->sdw_dev_lock);
602 struct device *dev = &slave->dev;
603 struct sdw_driver *drv = drv_to_sdw_driver(dev->driver);
605 if (drv->ops && drv->ops->bus_config) {
606 ret = drv->ops->bus_config(slave, &bus->params);
608 dev_err(dev, "Notify Slave: %d failed\n",
610 mutex_unlock(&slave->sdw_dev_lock);
616 mutex_unlock(&slave->sdw_dev_lock);
623 * sdw_program_params() - Program transport and port parameters for Master(s)
626 * @bus: SDW bus instance
627 * @prepare: true if sdw_program_params() is called by _prepare.
629 static int sdw_program_params(struct sdw_bus *bus, bool prepare)
631 struct sdw_master_runtime *m_rt;
634 list_for_each_entry(m_rt, &bus->m_rt_list, bus_node) {
637 * this loop walks through all master runtimes for a
638 * bus, but the ports can only be configured while
639 * explicitly preparing a stream or handling an
640 * already-prepared stream otherwise.
643 m_rt->stream->state == SDW_STREAM_CONFIGURED)
646 ret = sdw_program_port_params(m_rt);
649 "Program transport params failed: %d\n", ret);
653 ret = sdw_notify_config(m_rt);
656 "Notify bus config failed: %d\n", ret);
660 /* Enable port(s) on alternate bank for all active streams */
661 if (m_rt->stream->state != SDW_STREAM_ENABLED)
664 ret = sdw_enable_disable_ports(m_rt, true);
666 dev_err(bus->dev, "Enable channel failed: %d\n", ret);
674 static int sdw_bank_switch(struct sdw_bus *bus, int m_rt_count)
676 int col_index, row_index;
678 struct sdw_msg *wr_msg;
683 wr_msg = kzalloc(sizeof(*wr_msg), GFP_KERNEL);
687 bus->defer_msg.msg = wr_msg;
689 wbuf = kzalloc(sizeof(*wbuf), GFP_KERNEL);
695 /* Get row and column index to program register */
696 col_index = sdw_find_col_index(bus->params.col);
697 row_index = sdw_find_row_index(bus->params.row);
698 wbuf[0] = col_index | (row_index << 3);
700 if (bus->params.next_bank)
701 addr = SDW_SCP_FRAMECTRL_B1;
703 addr = SDW_SCP_FRAMECTRL_B0;
705 sdw_fill_msg(wr_msg, NULL, addr, 1, SDW_BROADCAST_DEV_NUM,
706 SDW_MSG_FLAG_WRITE, wbuf);
707 wr_msg->ssp_sync = true;
710 * Set the multi_link flag only when both the hardware supports
711 * and hardware-based sync is required
713 multi_link = bus->multi_link && (m_rt_count >= bus->hw_sync_min_links);
716 ret = sdw_transfer_defer(bus, wr_msg, &bus->defer_msg);
718 ret = sdw_transfer(bus, wr_msg);
720 if (ret < 0 && ret != -ENODATA) {
721 dev_err(bus->dev, "Slave frame_ctrl reg write failed\n");
728 bus->defer_msg.msg = NULL;
729 bus->params.curr_bank = !bus->params.curr_bank;
730 bus->params.next_bank = !bus->params.next_bank;
739 bus->defer_msg.msg = NULL;
744 * sdw_ml_sync_bank_switch: Multilink register bank switch
746 * @bus: SDW bus instance
748 * Caller function should free the buffers on error
750 static int sdw_ml_sync_bank_switch(struct sdw_bus *bus)
752 unsigned long time_left;
754 if (!bus->multi_link)
757 /* Wait for completion of transfer */
758 time_left = wait_for_completion_timeout(&bus->defer_msg.complete,
759 bus->bank_switch_timeout);
762 dev_err(bus->dev, "Controller Timed out on bank switch\n");
766 bus->params.curr_bank = !bus->params.curr_bank;
767 bus->params.next_bank = !bus->params.next_bank;
769 if (bus->defer_msg.msg) {
770 kfree(bus->defer_msg.msg->buf);
771 kfree(bus->defer_msg.msg);
777 static int do_bank_switch(struct sdw_stream_runtime *stream)
779 struct sdw_master_runtime *m_rt;
780 const struct sdw_master_ops *ops;
782 bool multi_link = false;
786 m_rt_count = stream->m_rt_count;
788 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
792 if (bus->multi_link && m_rt_count >= bus->hw_sync_min_links) {
794 mutex_lock(&bus->msg_lock);
797 /* Pre-bank switch */
798 if (ops->pre_bank_switch) {
799 ret = ops->pre_bank_switch(bus);
802 "Pre bank switch op failed: %d\n", ret);
808 * Perform Bank switch operation.
809 * For multi link cases, the actual bank switch is
810 * synchronized across all Masters and happens later as a
811 * part of post_bank_switch ops.
813 ret = sdw_bank_switch(bus, m_rt_count);
815 dev_err(bus->dev, "Bank switch failed: %d\n", ret);
821 * For multi link cases, it is expected that the bank switch is
822 * triggered by the post_bank_switch for the first Master in the list
823 * and for the other Masters the post_bank_switch() should return doing
826 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
830 /* Post-bank switch */
831 if (ops->post_bank_switch) {
832 ret = ops->post_bank_switch(bus);
835 "Post bank switch op failed: %d\n",
839 } else if (multi_link) {
841 "Post bank switch ops not implemented\n");
846 /* Set the bank switch timeout to default, if not set */
847 if (!bus->bank_switch_timeout)
848 bus->bank_switch_timeout = DEFAULT_BANK_SWITCH_TIMEOUT;
850 /* Check if bank switch was successful */
851 ret = sdw_ml_sync_bank_switch(bus);
854 "multi link bank switch failed: %d\n", ret);
859 mutex_unlock(&bus->msg_lock);
865 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
867 if (bus->defer_msg.msg) {
868 kfree(bus->defer_msg.msg->buf);
869 kfree(bus->defer_msg.msg);
876 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
878 if (mutex_is_locked(&bus->msg_lock))
879 mutex_unlock(&bus->msg_lock);
886 static struct sdw_port_runtime *sdw_port_alloc(struct list_head *port_list)
888 struct sdw_port_runtime *p_rt;
890 p_rt = kzalloc(sizeof(*p_rt), GFP_KERNEL);
894 list_add_tail(&p_rt->port_node, port_list);
899 static int sdw_port_config(struct sdw_port_runtime *p_rt,
900 struct sdw_port_config *port_config,
903 p_rt->ch_mask = port_config[port_index].ch_mask;
904 p_rt->num = port_config[port_index].num;
907 * TODO: Check port capabilities for requested configuration
913 static void sdw_port_free(struct sdw_port_runtime *p_rt)
915 list_del(&p_rt->port_node);
919 static bool sdw_slave_port_allocated(struct sdw_slave_runtime *s_rt)
921 return !list_empty(&s_rt->port_list);
924 static void sdw_slave_port_free(struct sdw_slave *slave,
925 struct sdw_stream_runtime *stream)
927 struct sdw_port_runtime *p_rt, *_p_rt;
928 struct sdw_master_runtime *m_rt;
929 struct sdw_slave_runtime *s_rt;
931 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
932 list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
933 if (s_rt->slave != slave)
936 list_for_each_entry_safe(p_rt, _p_rt,
937 &s_rt->port_list, port_node) {
944 static int sdw_slave_port_alloc(struct sdw_slave *slave,
945 struct sdw_slave_runtime *s_rt,
946 unsigned int num_config)
948 struct sdw_port_runtime *p_rt;
951 /* Iterate for number of ports to perform initialization */
952 for (i = 0; i < num_config; i++) {
953 p_rt = sdw_port_alloc(&s_rt->port_list);
961 static int sdw_slave_port_is_valid_range(struct device *dev, int num)
963 if (!SDW_VALID_PORT_RANGE(num)) {
964 dev_err(dev, "SoundWire: Invalid port number :%d\n", num);
971 static int sdw_slave_port_config(struct sdw_slave *slave,
972 struct sdw_slave_runtime *s_rt,
973 struct sdw_port_config *port_config)
975 struct sdw_port_runtime *p_rt;
980 list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
982 * TODO: Check valid port range as defined by DisCo/
985 ret = sdw_slave_port_is_valid_range(&slave->dev, port_config[i].num);
989 ret = sdw_port_config(p_rt, port_config, i);
998 static bool sdw_master_port_allocated(struct sdw_master_runtime *m_rt)
1000 return !list_empty(&m_rt->port_list);
1003 static void sdw_master_port_free(struct sdw_master_runtime *m_rt)
1005 struct sdw_port_runtime *p_rt, *_p_rt;
1007 list_for_each_entry_safe(p_rt, _p_rt, &m_rt->port_list, port_node) {
1008 sdw_port_free(p_rt);
1012 static int sdw_master_port_alloc(struct sdw_master_runtime *m_rt,
1013 unsigned int num_ports)
1015 struct sdw_port_runtime *p_rt;
1018 /* Iterate for number of ports to perform initialization */
1019 for (i = 0; i < num_ports; i++) {
1020 p_rt = sdw_port_alloc(&m_rt->port_list);
1028 static int sdw_master_port_config(struct sdw_master_runtime *m_rt,
1029 struct sdw_port_config *port_config)
1031 struct sdw_port_runtime *p_rt;
1036 list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
1037 ret = sdw_port_config(p_rt, port_config, i);
1047 * sdw_slave_rt_alloc() - Allocate a Slave runtime handle.
1049 * @slave: Slave handle
1050 * @m_rt: Master runtime handle
1052 * This function is to be called with bus_lock held.
1054 static struct sdw_slave_runtime
1055 *sdw_slave_rt_alloc(struct sdw_slave *slave,
1056 struct sdw_master_runtime *m_rt)
1058 struct sdw_slave_runtime *s_rt;
1060 s_rt = kzalloc(sizeof(*s_rt), GFP_KERNEL);
1064 INIT_LIST_HEAD(&s_rt->port_list);
1065 s_rt->slave = slave;
1067 list_add_tail(&s_rt->m_rt_node, &m_rt->slave_rt_list);
1073 * sdw_slave_rt_config() - Configure a Slave runtime handle.
1075 * @s_rt: Slave runtime handle
1076 * @stream_config: Stream configuration
1078 * This function is to be called with bus_lock held.
1080 static int sdw_slave_rt_config(struct sdw_slave_runtime *s_rt,
1081 struct sdw_stream_config *stream_config)
1083 s_rt->ch_count = stream_config->ch_count;
1084 s_rt->direction = stream_config->direction;
1089 static struct sdw_slave_runtime *sdw_slave_rt_find(struct sdw_slave *slave,
1090 struct sdw_stream_runtime *stream)
1092 struct sdw_slave_runtime *s_rt, *_s_rt;
1093 struct sdw_master_runtime *m_rt;
1095 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1096 /* Retrieve Slave runtime handle */
1097 list_for_each_entry_safe(s_rt, _s_rt,
1098 &m_rt->slave_rt_list, m_rt_node) {
1099 if (s_rt->slave == slave)
1107 * sdw_slave_rt_free() - Free Slave(s) runtime handle
1109 * @slave: Slave handle.
1110 * @stream: Stream runtime handle.
1112 * This function is to be called with bus_lock held.
1114 static void sdw_slave_rt_free(struct sdw_slave *slave,
1115 struct sdw_stream_runtime *stream)
1117 struct sdw_slave_runtime *s_rt;
1119 s_rt = sdw_slave_rt_find(slave, stream);
1121 list_del(&s_rt->m_rt_node);
1126 static struct sdw_master_runtime
1127 *sdw_master_rt_find(struct sdw_bus *bus,
1128 struct sdw_stream_runtime *stream)
1130 struct sdw_master_runtime *m_rt;
1132 /* Retrieve Bus handle if already available */
1133 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1134 if (m_rt->bus == bus)
1142 * sdw_master_rt_alloc() - Allocates a Master runtime handle
1144 * @bus: SDW bus instance
1145 * @stream: Stream runtime handle.
1147 * This function is to be called with bus_lock held.
1149 static struct sdw_master_runtime
1150 *sdw_master_rt_alloc(struct sdw_bus *bus,
1151 struct sdw_stream_runtime *stream)
1153 struct sdw_master_runtime *m_rt;
1155 m_rt = kzalloc(sizeof(*m_rt), GFP_KERNEL);
1159 /* Initialization of Master runtime handle */
1160 INIT_LIST_HEAD(&m_rt->port_list);
1161 INIT_LIST_HEAD(&m_rt->slave_rt_list);
1162 list_add_tail(&m_rt->stream_node, &stream->master_list);
1164 list_add_tail(&m_rt->bus_node, &bus->m_rt_list);
1167 m_rt->stream = stream;
1173 * sdw_master_rt_config() - Configure Master runtime handle
1175 * @m_rt: Master runtime handle
1176 * @stream_config: Stream configuration
1178 * This function is to be called with bus_lock held.
1181 static int sdw_master_rt_config(struct sdw_master_runtime *m_rt,
1182 struct sdw_stream_config *stream_config)
1184 m_rt->ch_count = stream_config->ch_count;
1185 m_rt->direction = stream_config->direction;
1191 * sdw_master_rt_free() - Free Master runtime handle
1193 * @m_rt: Master runtime node
1194 * @stream: Stream runtime handle.
1196 * This function is to be called with bus_lock held
1197 * It frees the Master runtime handle and associated Slave(s) runtime
1198 * handle. If this is called first then sdw_slave_rt_free() will have
1199 * no effect as Slave(s) runtime handle would already be freed up.
1201 static void sdw_master_rt_free(struct sdw_master_runtime *m_rt,
1202 struct sdw_stream_runtime *stream)
1204 struct sdw_slave_runtime *s_rt, *_s_rt;
1206 list_for_each_entry_safe(s_rt, _s_rt, &m_rt->slave_rt_list, m_rt_node) {
1207 sdw_slave_port_free(s_rt->slave, stream);
1208 sdw_slave_rt_free(s_rt->slave, stream);
1211 list_del(&m_rt->stream_node);
1212 list_del(&m_rt->bus_node);
1217 * sdw_config_stream() - Configure the allocated stream
1220 * @stream: SoundWire stream
1221 * @stream_config: Stream configuration for audio stream
1222 * @is_slave: is API called from Slave or Master
1224 * This function is to be called with bus_lock held.
1226 static int sdw_config_stream(struct device *dev,
1227 struct sdw_stream_runtime *stream,
1228 struct sdw_stream_config *stream_config,
1232 * Update the stream rate, channel and bps based on data
1233 * source. For more than one data source (multilink),
1234 * match the rate, bps, stream type and increment number of channels.
1236 * If rate/bps is zero, it means the values are not set, so skip
1237 * comparison and allow the value to be set and stored in stream
1239 if (stream->params.rate &&
1240 stream->params.rate != stream_config->frame_rate) {
1241 dev_err(dev, "rate not matching, stream:%s\n", stream->name);
1245 if (stream->params.bps &&
1246 stream->params.bps != stream_config->bps) {
1247 dev_err(dev, "bps not matching, stream:%s\n", stream->name);
1251 stream->type = stream_config->type;
1252 stream->params.rate = stream_config->frame_rate;
1253 stream->params.bps = stream_config->bps;
1255 /* TODO: Update this check during Device-device support */
1257 stream->params.ch_count += stream_config->ch_count;
1263 * sdw_get_slave_dpn_prop() - Get Slave port capabilities
1265 * @slave: Slave handle
1266 * @direction: Data direction.
1267 * @port_num: Port number
1269 struct sdw_dpn_prop *sdw_get_slave_dpn_prop(struct sdw_slave *slave,
1270 enum sdw_data_direction direction,
1271 unsigned int port_num)
1273 struct sdw_dpn_prop *dpn_prop;
1277 if (direction == SDW_DATA_DIR_TX) {
1278 num_ports = hweight32(slave->prop.source_ports);
1279 dpn_prop = slave->prop.src_dpn_prop;
1281 num_ports = hweight32(slave->prop.sink_ports);
1282 dpn_prop = slave->prop.sink_dpn_prop;
1285 for (i = 0; i < num_ports; i++) {
1286 if (dpn_prop[i].num == port_num)
1287 return &dpn_prop[i];
1294 * sdw_acquire_bus_lock: Acquire bus lock for all Master runtime(s)
1296 * @stream: SoundWire stream
1298 * Acquire bus_lock for each of the master runtime(m_rt) part of this
1299 * stream to reconfigure the bus.
1300 * NOTE: This function is called from SoundWire stream ops and is
1301 * expected that a global lock is held before acquiring bus_lock.
1303 static void sdw_acquire_bus_lock(struct sdw_stream_runtime *stream)
1305 struct sdw_master_runtime *m_rt;
1306 struct sdw_bus *bus;
1308 /* Iterate for all Master(s) in Master list */
1309 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1312 mutex_lock(&bus->bus_lock);
1317 * sdw_release_bus_lock: Release bus lock for all Master runtime(s)
1319 * @stream: SoundWire stream
1321 * Release the previously held bus_lock after reconfiguring the bus.
1322 * NOTE: This function is called from SoundWire stream ops and is
1323 * expected that a global lock is held before releasing bus_lock.
1325 static void sdw_release_bus_lock(struct sdw_stream_runtime *stream)
1327 struct sdw_master_runtime *m_rt;
1328 struct sdw_bus *bus;
1330 /* Iterate for all Master(s) in Master list */
1331 list_for_each_entry_reverse(m_rt, &stream->master_list, stream_node) {
1333 mutex_unlock(&bus->bus_lock);
1337 static int _sdw_prepare_stream(struct sdw_stream_runtime *stream,
1340 struct sdw_master_runtime *m_rt;
1341 struct sdw_bus *bus = NULL;
1342 struct sdw_master_prop *prop;
1343 struct sdw_bus_params params;
1346 /* Prepare Master(s) and Slave(s) port(s) associated with stream */
1347 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1350 memcpy(¶ms, &bus->params, sizeof(params));
1352 /* TODO: Support Asynchronous mode */
1353 if ((prop->max_clk_freq % stream->params.rate) != 0) {
1354 dev_err(bus->dev, "Async mode not supported\n");
1359 goto program_params;
1361 /* Increment cumulative bus bandwidth */
1362 /* TODO: Update this during Device-Device support */
1363 bus->params.bandwidth += m_rt->stream->params.rate *
1364 m_rt->ch_count * m_rt->stream->params.bps;
1366 /* Compute params */
1367 if (bus->compute_params) {
1368 ret = bus->compute_params(bus);
1370 dev_err(bus->dev, "Compute params failed: %d\n",
1377 /* Program params */
1378 ret = sdw_program_params(bus, true);
1380 dev_err(bus->dev, "Program params failed: %d\n", ret);
1381 goto restore_params;
1386 pr_err("Configuration error in %s\n", __func__);
1390 ret = do_bank_switch(stream);
1392 dev_err(bus->dev, "Bank switch failed: %d\n", ret);
1393 goto restore_params;
1396 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1399 /* Prepare port(s) on the new clock configuration */
1400 ret = sdw_prep_deprep_ports(m_rt, true);
1402 dev_err(bus->dev, "Prepare port(s) failed ret = %d\n",
1408 stream->state = SDW_STREAM_PREPARED;
1413 memcpy(&bus->params, ¶ms, sizeof(params));
1418 * sdw_prepare_stream() - Prepare SoundWire stream
1420 * @stream: Soundwire stream
1422 * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1424 int sdw_prepare_stream(struct sdw_stream_runtime *stream)
1426 bool update_params = true;
1430 pr_err("SoundWire: Handle not found for stream\n");
1434 sdw_acquire_bus_lock(stream);
1436 if (stream->state == SDW_STREAM_PREPARED) {
1441 if (stream->state != SDW_STREAM_CONFIGURED &&
1442 stream->state != SDW_STREAM_DEPREPARED &&
1443 stream->state != SDW_STREAM_DISABLED) {
1444 pr_err("%s: %s: inconsistent state state %d\n",
1445 __func__, stream->name, stream->state);
1451 * when the stream is DISABLED, this means sdw_prepare_stream()
1452 * is called as a result of an underflow or a resume operation.
1453 * In this case, the bus parameters shall not be recomputed, but
1454 * still need to be re-applied
1456 if (stream->state == SDW_STREAM_DISABLED)
1457 update_params = false;
1459 ret = _sdw_prepare_stream(stream, update_params);
1462 sdw_release_bus_lock(stream);
1465 EXPORT_SYMBOL(sdw_prepare_stream);
1467 static int _sdw_enable_stream(struct sdw_stream_runtime *stream)
1469 struct sdw_master_runtime *m_rt;
1470 struct sdw_bus *bus = NULL;
1473 /* Enable Master(s) and Slave(s) port(s) associated with stream */
1474 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1477 /* Program params */
1478 ret = sdw_program_params(bus, false);
1480 dev_err(bus->dev, "Program params failed: %d\n", ret);
1484 /* Enable port(s) */
1485 ret = sdw_enable_disable_ports(m_rt, true);
1488 "Enable port(s) failed ret: %d\n", ret);
1494 pr_err("Configuration error in %s\n", __func__);
1498 ret = do_bank_switch(stream);
1500 dev_err(bus->dev, "Bank switch failed: %d\n", ret);
1504 stream->state = SDW_STREAM_ENABLED;
1509 * sdw_enable_stream() - Enable SoundWire stream
1511 * @stream: Soundwire stream
1513 * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1515 int sdw_enable_stream(struct sdw_stream_runtime *stream)
1520 pr_err("SoundWire: Handle not found for stream\n");
1524 sdw_acquire_bus_lock(stream);
1526 if (stream->state == SDW_STREAM_ENABLED) {
1531 if (stream->state != SDW_STREAM_PREPARED &&
1532 stream->state != SDW_STREAM_DISABLED) {
1533 pr_err("%s: %s: inconsistent state state %d\n",
1534 __func__, stream->name, stream->state);
1539 ret = _sdw_enable_stream(stream);
1542 sdw_release_bus_lock(stream);
1545 EXPORT_SYMBOL(sdw_enable_stream);
1547 static int _sdw_disable_stream(struct sdw_stream_runtime *stream)
1549 struct sdw_master_runtime *m_rt;
1552 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1553 struct sdw_bus *bus = m_rt->bus;
1555 /* Disable port(s) */
1556 ret = sdw_enable_disable_ports(m_rt, false);
1558 dev_err(bus->dev, "Disable port(s) failed: %d\n", ret);
1562 stream->state = SDW_STREAM_DISABLED;
1564 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1565 struct sdw_bus *bus = m_rt->bus;
1567 /* Program params */
1568 ret = sdw_program_params(bus, false);
1570 dev_err(bus->dev, "Program params failed: %d\n", ret);
1575 ret = do_bank_switch(stream);
1577 pr_err("Bank switch failed: %d\n", ret);
1581 /* make sure alternate bank (previous current) is also disabled */
1582 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1583 struct sdw_bus *bus = m_rt->bus;
1585 /* Disable port(s) */
1586 ret = sdw_enable_disable_ports(m_rt, false);
1588 dev_err(bus->dev, "Disable port(s) failed: %d\n", ret);
1597 * sdw_disable_stream() - Disable SoundWire stream
1599 * @stream: Soundwire stream
1601 * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1603 int sdw_disable_stream(struct sdw_stream_runtime *stream)
1608 pr_err("SoundWire: Handle not found for stream\n");
1612 sdw_acquire_bus_lock(stream);
1614 if (stream->state == SDW_STREAM_DISABLED) {
1619 if (stream->state != SDW_STREAM_ENABLED) {
1620 pr_err("%s: %s: inconsistent state state %d\n",
1621 __func__, stream->name, stream->state);
1626 ret = _sdw_disable_stream(stream);
1629 sdw_release_bus_lock(stream);
1632 EXPORT_SYMBOL(sdw_disable_stream);
1634 static int _sdw_deprepare_stream(struct sdw_stream_runtime *stream)
1636 struct sdw_master_runtime *m_rt;
1637 struct sdw_bus *bus;
1640 list_for_each_entry(m_rt, &stream->master_list, stream_node) {
1642 /* De-prepare port(s) */
1643 ret = sdw_prep_deprep_ports(m_rt, false);
1646 "De-prepare port(s) failed: %d\n", ret);
1650 /* TODO: Update this during Device-Device support */
1651 bus->params.bandwidth -= m_rt->stream->params.rate *
1652 m_rt->ch_count * m_rt->stream->params.bps;
1654 /* Compute params */
1655 if (bus->compute_params) {
1656 ret = bus->compute_params(bus);
1658 dev_err(bus->dev, "Compute params failed: %d\n",
1664 /* Program params */
1665 ret = sdw_program_params(bus, false);
1667 dev_err(bus->dev, "Program params failed: %d\n", ret);
1672 stream->state = SDW_STREAM_DEPREPARED;
1673 return do_bank_switch(stream);
1677 * sdw_deprepare_stream() - Deprepare SoundWire stream
1679 * @stream: Soundwire stream
1681 * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1683 int sdw_deprepare_stream(struct sdw_stream_runtime *stream)
1688 pr_err("SoundWire: Handle not found for stream\n");
1692 sdw_acquire_bus_lock(stream);
1694 if (stream->state == SDW_STREAM_DEPREPARED) {
1699 if (stream->state != SDW_STREAM_PREPARED &&
1700 stream->state != SDW_STREAM_DISABLED) {
1701 pr_err("%s: %s: inconsistent state state %d\n",
1702 __func__, stream->name, stream->state);
1707 ret = _sdw_deprepare_stream(stream);
1710 sdw_release_bus_lock(stream);
1713 EXPORT_SYMBOL(sdw_deprepare_stream);
1715 static int set_stream(struct snd_pcm_substream *substream,
1716 struct sdw_stream_runtime *sdw_stream)
1718 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1719 struct snd_soc_dai *dai;
1723 /* Set stream pointer on all DAIs */
1724 for_each_rtd_dais(rtd, i, dai) {
1725 ret = snd_soc_dai_set_stream(dai, sdw_stream, substream->stream);
1727 dev_err(rtd->dev, "failed to set stream pointer on dai %s\n", dai->name);
1736 * sdw_alloc_stream() - Allocate and return stream runtime
1738 * @stream_name: SoundWire stream name
1740 * Allocates a SoundWire stream runtime instance.
1741 * sdw_alloc_stream should be called only once per stream. Typically
1742 * invoked from ALSA/ASoC machine/platform driver.
1744 struct sdw_stream_runtime *sdw_alloc_stream(const char *stream_name)
1746 struct sdw_stream_runtime *stream;
1748 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
1752 stream->name = stream_name;
1753 INIT_LIST_HEAD(&stream->master_list);
1754 stream->state = SDW_STREAM_ALLOCATED;
1755 stream->m_rt_count = 0;
1759 EXPORT_SYMBOL(sdw_alloc_stream);
1762 * sdw_startup_stream() - Startup SoundWire stream
1764 * @sdw_substream: Soundwire stream
1766 * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1768 int sdw_startup_stream(void *sdw_substream)
1770 struct snd_pcm_substream *substream = sdw_substream;
1771 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1772 struct sdw_stream_runtime *sdw_stream;
1776 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1777 name = kasprintf(GFP_KERNEL, "%s-Playback", substream->name);
1779 name = kasprintf(GFP_KERNEL, "%s-Capture", substream->name);
1784 sdw_stream = sdw_alloc_stream(name);
1786 dev_err(rtd->dev, "alloc stream failed for substream DAI %s\n", substream->name);
1791 ret = set_stream(substream, sdw_stream);
1793 goto release_stream;
1797 sdw_release_stream(sdw_stream);
1798 set_stream(substream, NULL);
1803 EXPORT_SYMBOL(sdw_startup_stream);
1806 * sdw_shutdown_stream() - Shutdown SoundWire stream
1808 * @sdw_substream: Soundwire stream
1810 * Documentation/driver-api/soundwire/stream.rst explains this API in detail
1812 void sdw_shutdown_stream(void *sdw_substream)
1814 struct snd_pcm_substream *substream = sdw_substream;
1815 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1816 struct sdw_stream_runtime *sdw_stream;
1817 struct snd_soc_dai *dai;
1819 /* Find stream from first CPU DAI */
1820 dai = asoc_rtd_to_cpu(rtd, 0);
1822 sdw_stream = snd_soc_dai_get_stream(dai, substream->stream);
1824 if (IS_ERR(sdw_stream)) {
1825 dev_err(rtd->dev, "no stream found for DAI %s\n", dai->name);
1829 /* release memory */
1830 kfree(sdw_stream->name);
1831 sdw_release_stream(sdw_stream);
1833 /* clear DAI data */
1834 set_stream(substream, NULL);
1836 EXPORT_SYMBOL(sdw_shutdown_stream);
1839 * sdw_release_stream() - Free the assigned stream runtime
1841 * @stream: SoundWire stream runtime
1843 * sdw_release_stream should be called only once per stream
1845 void sdw_release_stream(struct sdw_stream_runtime *stream)
1849 EXPORT_SYMBOL(sdw_release_stream);
1852 * sdw_stream_add_master() - Allocate and add master runtime to a stream
1854 * @bus: SDW Bus instance
1855 * @stream_config: Stream configuration for audio stream
1856 * @port_config: Port configuration for audio stream
1857 * @num_ports: Number of ports
1858 * @stream: SoundWire stream
1860 int sdw_stream_add_master(struct sdw_bus *bus,
1861 struct sdw_stream_config *stream_config,
1862 struct sdw_port_config *port_config,
1863 unsigned int num_ports,
1864 struct sdw_stream_runtime *stream)
1866 struct sdw_master_runtime *m_rt;
1867 bool alloc_master_rt = true;
1870 mutex_lock(&bus->bus_lock);
1873 * For multi link streams, add the second master only if
1874 * the bus supports it.
1875 * Check if bus->multi_link is set
1877 if (!bus->multi_link && stream->m_rt_count > 0) {
1879 "Multilink not supported, link %d\n", bus->link_id);
1885 * check if Master is already allocated (e.g. as a result of Slave adding
1886 * it first), if so skip allocation and go to configuration
1888 m_rt = sdw_master_rt_find(bus, stream);
1890 alloc_master_rt = false;
1891 goto skip_alloc_master_rt;
1894 m_rt = sdw_master_rt_alloc(bus, stream);
1896 dev_err(bus->dev, "Master runtime alloc failed for stream:%s\n", stream->name);
1900 skip_alloc_master_rt:
1902 if (sdw_master_port_allocated(m_rt))
1903 goto skip_alloc_master_port;
1905 ret = sdw_master_port_alloc(m_rt, num_ports);
1909 stream->m_rt_count++;
1911 skip_alloc_master_port:
1913 ret = sdw_master_rt_config(m_rt, stream_config);
1917 ret = sdw_config_stream(bus->dev, stream, stream_config, false);
1921 ret = sdw_master_port_config(m_rt, port_config);
1927 * we only cleanup what was allocated in this routine
1929 if (alloc_master_rt)
1930 sdw_master_rt_free(m_rt, stream);
1932 mutex_unlock(&bus->bus_lock);
1935 EXPORT_SYMBOL(sdw_stream_add_master);
1938 * sdw_stream_remove_master() - Remove master from sdw_stream
1940 * @bus: SDW Bus instance
1941 * @stream: SoundWire stream
1943 * This removes and frees port_rt and master_rt from a stream
1945 int sdw_stream_remove_master(struct sdw_bus *bus,
1946 struct sdw_stream_runtime *stream)
1948 struct sdw_master_runtime *m_rt, *_m_rt;
1950 mutex_lock(&bus->bus_lock);
1952 list_for_each_entry_safe(m_rt, _m_rt,
1953 &stream->master_list, stream_node) {
1954 if (m_rt->bus != bus)
1957 sdw_master_port_free(m_rt);
1958 sdw_master_rt_free(m_rt, stream);
1959 stream->m_rt_count--;
1962 if (list_empty(&stream->master_list))
1963 stream->state = SDW_STREAM_RELEASED;
1965 mutex_unlock(&bus->bus_lock);
1969 EXPORT_SYMBOL(sdw_stream_remove_master);
1972 * sdw_stream_add_slave() - Allocate and add master/slave runtime to a stream
1974 * @slave: SDW Slave instance
1975 * @stream_config: Stream configuration for audio stream
1976 * @stream: SoundWire stream
1977 * @port_config: Port configuration for audio stream
1978 * @num_ports: Number of ports
1980 * It is expected that Slave is added before adding Master
1984 int sdw_stream_add_slave(struct sdw_slave *slave,
1985 struct sdw_stream_config *stream_config,
1986 struct sdw_port_config *port_config,
1987 unsigned int num_ports,
1988 struct sdw_stream_runtime *stream)
1990 struct sdw_slave_runtime *s_rt;
1991 struct sdw_master_runtime *m_rt;
1992 bool alloc_master_rt = true;
1993 bool alloc_slave_rt = true;
1997 mutex_lock(&slave->bus->bus_lock);
2000 * check if Master is already allocated, if so skip allocation
2001 * and go to configuration
2003 m_rt = sdw_master_rt_find(slave->bus, stream);
2005 alloc_master_rt = false;
2006 goto skip_alloc_master_rt;
2010 * If this API is invoked by Slave first then m_rt is not valid.
2011 * So, allocate m_rt and add Slave to it.
2013 m_rt = sdw_master_rt_alloc(slave->bus, stream);
2015 dev_err(&slave->dev, "Master runtime alloc failed for stream:%s\n", stream->name);
2020 skip_alloc_master_rt:
2021 s_rt = sdw_slave_rt_find(slave, stream);
2023 goto skip_alloc_slave_rt;
2025 s_rt = sdw_slave_rt_alloc(slave, m_rt);
2027 dev_err(&slave->dev, "Slave runtime alloc failed for stream:%s\n", stream->name);
2028 alloc_slave_rt = false;
2033 skip_alloc_slave_rt:
2034 if (sdw_slave_port_allocated(s_rt))
2035 goto skip_port_alloc;
2037 ret = sdw_slave_port_alloc(slave, s_rt, num_ports);
2042 ret = sdw_master_rt_config(m_rt, stream_config);
2046 ret = sdw_slave_rt_config(s_rt, stream_config);
2050 ret = sdw_config_stream(&slave->dev, stream, stream_config, true);
2054 ret = sdw_slave_port_config(slave, s_rt, port_config);
2059 * Change stream state to CONFIGURED on first Slave add.
2060 * Bus is not aware of number of Slave(s) in a stream at this
2061 * point so cannot depend on all Slave(s) to be added in order to
2062 * change stream state to CONFIGURED.
2064 stream->state = SDW_STREAM_CONFIGURED;
2069 * we only cleanup what was allocated in this routine. The 'else if'
2070 * is intentional, the 'master_rt_free' will call sdw_slave_rt_free()
2073 if (alloc_master_rt)
2074 sdw_master_rt_free(m_rt, stream);
2075 else if (alloc_slave_rt)
2076 sdw_slave_rt_free(slave, stream);
2078 mutex_unlock(&slave->bus->bus_lock);
2081 EXPORT_SYMBOL(sdw_stream_add_slave);
2084 * sdw_stream_remove_slave() - Remove slave from sdw_stream
2086 * @slave: SDW Slave instance
2087 * @stream: SoundWire stream
2089 * This removes and frees port_rt and slave_rt from a stream
2091 int sdw_stream_remove_slave(struct sdw_slave *slave,
2092 struct sdw_stream_runtime *stream)
2094 mutex_lock(&slave->bus->bus_lock);
2096 sdw_slave_port_free(slave, stream);
2097 sdw_slave_rt_free(slave, stream);
2099 mutex_unlock(&slave->bus->bus_lock);
2103 EXPORT_SYMBOL(sdw_stream_remove_slave);