drivers/soundwire/stream.c | 100 +++++++++++++++++++++++++++++-------- 1 file changed, 80 insertions(+), 20 deletions(-)
Issue DP prepare to all ports that use full CP_SM. Then wait for the
prepare to complete. This allow all the DP to prepare in parallel to
reduce the latency of starting an audio stream.
On a system with six CS35L56 amps, this reduces the startup latency,
from runtime_resume to all amps ready to play, from ~160 ms to ~60 ms.
(Test hardware: UpXtreme i14, BIOS v1.2, Core Ultra 7 155H, 3x CS35L56
on link 0, 3x CS35L56 on link 1).
An initial read of DPn_PREPARESTATUS is done before dropping into the wait,
so that a quick exit can be made if the port is already prepared. Currently
this is essential because the wait deadlocks - the stream setup takes
bus_lock, which blocks the interrupt handler - so the wait for completion
will always timeout.
However, an experiment of removing the bus_lock from stream setup, so that
the interrupt will work, shows that wait for completion takes ~700..800 us
but the quick-exit read takes 50..200 us. So the quick exit is still
valuable even if the stream.c code was rewritten to allow the completion
interrupt to work. Rewriting the code so it doesn't take bus_lock is risky.
The deadlock only lasts until the wait times out so it's not a serious
problem now that the DP prepare happens in parallel.
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
---
drivers/soundwire/stream.c | 100 +++++++++++++++++++++++++++++--------
1 file changed, 80 insertions(+), 20 deletions(-)
diff --git a/drivers/soundwire/stream.c b/drivers/soundwire/stream.c
index 38c9dbd35606..cc469a4a0bb6 100644
--- a/drivers/soundwire/stream.c
+++ b/drivers/soundwire/stream.c
@@ -443,14 +443,12 @@ static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
struct sdw_port_runtime *p_rt,
bool prep)
{
- struct completion *port_ready;
struct sdw_dpn_prop *dpn_prop;
struct sdw_prepare_ch prep_ch;
u32 imp_def_interrupts;
bool simple_ch_prep_sm;
- u32 ch_prep_timeout;
bool intr = false;
- int ret = 0, val;
+ int ret = 0;
u32 addr;
prep_ch.num = p_rt->num;
@@ -466,7 +464,6 @@ static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
imp_def_interrupts = dpn_prop->imp_def_interrupts;
simple_ch_prep_sm = dpn_prop->simple_ch_prep_sm;
- ch_prep_timeout = dpn_prop->ch_prep_timeout;
} else {
struct sdw_dp0_prop *dp0_prop = s_rt->slave->prop.dp0_prop;
@@ -477,7 +474,6 @@ static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
}
imp_def_interrupts = dp0_prop->imp_def_interrupts;
simple_ch_prep_sm = dp0_prop->simple_ch_prep_sm;
- ch_prep_timeout = dp0_prop->ch_prep_timeout;
}
prep_ch.prepare = prep;
@@ -518,23 +514,16 @@ static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
return ret;
}
- /* Wait for completion on port ready */
- port_ready = &s_rt->slave->port_ready[prep_ch.num];
- wait_for_completion_timeout(port_ready,
- msecs_to_jiffies(ch_prep_timeout));
-
- val = sdw_read_no_pm(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
- if ((val < 0) || (val & p_rt->ch_mask)) {
- ret = (val < 0) ? val : -ETIMEDOUT;
- dev_err(&s_rt->slave->dev,
- "Chn prep failed for port %d: %d\n", prep_ch.num, ret);
- return ret;
- }
+ /*
+ * Defer wait for completion to allow all peripherals to
+ * prepare in parallel.
+ */
+ } else {
+ /* Inform slaves about ports prepared */
+ sdw_do_port_prep(s_rt, prep_ch,
+ prep ? SDW_OPS_PORT_POST_PREP : SDW_OPS_PORT_POST_DEPREP);
}
- /* Inform slaves about ports prepared */
- sdw_do_port_prep(s_rt, prep_ch, prep ? SDW_OPS_PORT_POST_PREP : SDW_OPS_PORT_POST_DEPREP);
-
/* Disable interrupt after Port de-prepare */
if (!prep && intr)
ret = sdw_configure_dpn_intr(s_rt->slave, p_rt->num, prep,
@@ -543,6 +532,66 @@ static int sdw_prep_deprep_slave_ports(struct sdw_bus *bus,
return ret;
}
+static int sdw_wait_prep_slave_ports(struct sdw_bus *bus,
+ struct sdw_slave_runtime *s_rt,
+ struct sdw_port_runtime *p_rt)
+{
+ struct completion *port_ready;
+ struct sdw_dpn_prop *dpn_prop;
+ struct sdw_dp0_prop *dp0_prop;
+ struct sdw_prepare_ch prep_ch;
+ bool simple_ch_prep_sm;
+ u32 ch_prep_timeout;
+ int ret, val;
+
+ if (p_rt->num) {
+ dpn_prop = sdw_get_slave_dpn_prop(s_rt->slave, s_rt->direction, p_rt->num);
+ simple_ch_prep_sm = dpn_prop->simple_ch_prep_sm;
+ ch_prep_timeout = dpn_prop->ch_prep_timeout;
+ } else {
+ simple_ch_prep_sm = s_rt->slave->prop.dp0_prop->simple_ch_prep_sm;
+ ch_prep_timeout = dp0_prop->ch_prep_timeout;
+ }
+
+ if (simple_ch_prep_sm)
+ return 0;
+
+ /*
+ * Check if already prepared. Avoid overhead of waiting for interrupt
+ * and port_ready completion if we don't need to.
+ */
+ val = sdw_read_no_pm(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
+ if (val < 0) {
+ ret = val;
+ goto err;
+ }
+
+ if (val & p_rt->ch_mask) {
+ /* Wait for completion on port ready */
+ port_ready = &s_rt->slave->port_ready[p_rt->num];
+ wait_for_completion_timeout(port_ready, msecs_to_jiffies(ch_prep_timeout));
+ val = sdw_read_no_pm(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
+ if ((val < 0) || (val & p_rt->ch_mask)) {
+ ret = (val < 0) ? val : -ETIMEDOUT;
+ goto err;
+ }
+ }
+
+ /* Inform slaves about ports prepared */
+ prep_ch.num = p_rt->num;
+ prep_ch.ch_mask = p_rt->ch_mask;
+ prep_ch.prepare = true;
+ prep_ch.bank = bus->params.next_bank;
+ sdw_do_port_prep(s_rt, prep_ch, SDW_OPS_PORT_POST_PREP);
+
+ return 0;
+
+err:
+ dev_err(&s_rt->slave->dev, "Chn prep failed for port %d: %d\n", p_rt->num, ret);
+
+ return ret;
+}
+
static int sdw_prep_deprep_master_ports(struct sdw_master_runtime *m_rt,
struct sdw_port_runtime *p_rt,
bool prep)
@@ -594,6 +643,17 @@ static int sdw_prep_deprep_ports(struct sdw_master_runtime *m_rt, bool prep)
}
}
+ /* Wait for parallel CP_SM prepare completion */
+ if (prep) {
+ list_for_each_entry(s_rt, &m_rt->slave_rt_list, m_rt_node) {
+ list_for_each_entry(p_rt, &s_rt->port_list, port_node) {
+ ret = sdw_wait_prep_slave_ports(m_rt->bus, s_rt, p_rt);
+ if (ret < 0)
+ return ret;
+ }
+ }
+ }
+
/* Prepare/De-prepare Master port(s) */
list_for_each_entry(p_rt, &m_rt->port_list, port_node) {
ret = sdw_prep_deprep_master_ports(m_rt, p_rt, prep);
--
2.47.3
Hi Richard,
kernel test robot noticed the following build warnings:
[auto build test WARNING on linus/master]
[also build test WARNING on v6.18-rc7 next-20251124]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Richard-Fitzgerald/soundwire-stream-Prepare-ports-in-parallel-to-reduce-stream-start-latency/20251124-233421
base: linus/master
patch link: https://lore.kernel.org/r/20251124152956.2293218-1-rf%40opensource.cirrus.com
patch subject: [PATCH] soundwire: stream: Prepare ports in parallel to reduce stream start latency
config: arm-randconfig-r052-20251125 (https://download.01.org/0day-ci/archive/20251125/202511251336.5gGRd3hJ-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 9e9fe08b16ea2c4d9867fb4974edf2a3776d6ece)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251125/202511251336.5gGRd3hJ-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202511251336.5gGRd3hJ-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/soundwire/stream.c:553:21: warning: variable 'dp0_prop' is uninitialized when used here [-Wuninitialized]
553 | ch_prep_timeout = dp0_prop->ch_prep_timeout;
| ^~~~~~~~
drivers/soundwire/stream.c:541:31: note: initialize the variable 'dp0_prop' to silence this warning
541 | struct sdw_dp0_prop *dp0_prop;
| ^
| = NULL
1 warning generated.
vim +/dp0_prop +553 drivers/soundwire/stream.c
534
535 static int sdw_wait_prep_slave_ports(struct sdw_bus *bus,
536 struct sdw_slave_runtime *s_rt,
537 struct sdw_port_runtime *p_rt)
538 {
539 struct completion *port_ready;
540 struct sdw_dpn_prop *dpn_prop;
541 struct sdw_dp0_prop *dp0_prop;
542 struct sdw_prepare_ch prep_ch;
543 bool simple_ch_prep_sm;
544 u32 ch_prep_timeout;
545 int ret, val;
546
547 if (p_rt->num) {
548 dpn_prop = sdw_get_slave_dpn_prop(s_rt->slave, s_rt->direction, p_rt->num);
549 simple_ch_prep_sm = dpn_prop->simple_ch_prep_sm;
550 ch_prep_timeout = dpn_prop->ch_prep_timeout;
551 } else {
552 simple_ch_prep_sm = s_rt->slave->prop.dp0_prop->simple_ch_prep_sm;
> 553 ch_prep_timeout = dp0_prop->ch_prep_timeout;
554 }
555
556 if (simple_ch_prep_sm)
557 return 0;
558
559 /*
560 * Check if already prepared. Avoid overhead of waiting for interrupt
561 * and port_ready completion if we don't need to.
562 */
563 val = sdw_read_no_pm(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
564 if (val < 0) {
565 ret = val;
566 goto err;
567 }
568
569 if (val & p_rt->ch_mask) {
570 /* Wait for completion on port ready */
571 port_ready = &s_rt->slave->port_ready[p_rt->num];
572 wait_for_completion_timeout(port_ready, msecs_to_jiffies(ch_prep_timeout));
573 val = sdw_read_no_pm(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num));
574 if ((val < 0) || (val & p_rt->ch_mask)) {
575 ret = (val < 0) ? val : -ETIMEDOUT;
576 goto err;
577 }
578 }
579
580 /* Inform slaves about ports prepared */
581 prep_ch.num = p_rt->num;
582 prep_ch.ch_mask = p_rt->ch_mask;
583 prep_ch.prepare = true;
584 prep_ch.bank = bus->params.next_bank;
585 sdw_do_port_prep(s_rt, prep_ch, SDW_OPS_PORT_POST_PREP);
586
587 return 0;
588
589 err:
590 dev_err(&s_rt->slave->dev, "Chn prep failed for port %d: %d\n", p_rt->num, ret);
591
592 return ret;
593 }
594
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
© 2016 - 2025 Red Hat, Inc.