]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
soundwire: Add support to lock across bus instances
authorSanyog Kale <sanyog.r.kale@intel.com>
Fri, 27 Jul 2018 09:14:13 +0000 (14:44 +0530)
committerVinod Koul <vkoul@kernel.org>
Mon, 27 Aug 2018 04:19:48 +0000 (09:49 +0530)
Currently, the stream concept is limited to single Master and one
or more Codecs.

This patch extends the concept to support multiple Master(s)
sharing the same reference clock and synchronized in the hardware.
Modify sdw_stream_runtime to support a list of sdw_master_runtime
for the same. The existing reference to a single m_rt is removed
in the next patch.

Typically to lock, one would acquire a global lock and then lock
bus instances. In this case, the caller framework(ASoC DPCM)
guarantees that stream operations on a card are always serialized.
So, there is no race condition and hence no need for global lock.

Bus lock(s) are acquired to reconfigure the bus while the stream
is set-up.
So, we add sdw_acquire_bus_lock()/sdw_release_bus_lock() APIs which
are used only to reconfigure the bus.

Signed-off-by: Sanyog Kale <sanyog.r.kale@intel.com>
Signed-off-by: Shreyas NC <shreyas.nc@intel.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/soundwire/bus.h
drivers/soundwire/stream.c
include/linux/soundwire/sdw.h

index 3b15c4e25a3a7fb14207d7750d1dedbab0413dab..b6cfbdfc47d5bdfcb4152b09d4bdc776c8e5a9a0 100644 (file)
@@ -99,6 +99,7 @@ struct sdw_slave_runtime {
  * this stream, can be zero.
  * @slave_rt_list: Slave runtime list
  * @port_list: List of Master Ports configured for this stream, can be zero.
+ * @stream_node: sdw_stream_runtime master_list node
  * @bus_node: sdw_bus m_rt_list node
  */
 struct sdw_master_runtime {
@@ -108,6 +109,7 @@ struct sdw_master_runtime {
        unsigned int ch_count;
        struct list_head slave_rt_list;
        struct list_head port_list;
+       struct list_head stream_node;
        struct list_head bus_node;
 };
 
index e5c7e1ef63188914bfc655b1d187da5fa44166a1..b52903fe6f3173ab7b37ef61c97f86777f8b1def 100644 (file)
@@ -747,6 +747,7 @@ struct sdw_stream_runtime *sdw_alloc_stream(char *stream_name)
                return NULL;
 
        stream->name = stream_name;
+       INIT_LIST_HEAD(&stream->master_list);
        stream->state = SDW_STREAM_ALLOCATED;
 
        return stream;
@@ -1245,6 +1246,48 @@ struct sdw_dpn_prop *sdw_get_slave_dpn_prop(struct sdw_slave *slave,
        return NULL;
 }
 
+/**
+ * sdw_acquire_bus_lock: Acquire bus lock for all Master runtime(s)
+ *
+ * @stream: SoundWire stream
+ *
+ * Acquire bus_lock for each of the master runtime(m_rt) part of this
+ * stream to reconfigure the bus.
+ * NOTE: This function is called from SoundWire stream ops and is
+ * expected that a global lock is held before acquiring bus_lock.
+ */
+static void sdw_acquire_bus_lock(struct sdw_stream_runtime *stream)
+{
+       struct sdw_master_runtime *m_rt = NULL;
+       struct sdw_bus *bus = NULL;
+
+       /* Iterate for all Master(s) in Master list */
+       list_for_each_entry(m_rt, &stream->master_list, stream_node) {
+               bus = m_rt->bus;
+
+               mutex_lock(&bus->bus_lock);
+       }
+}
+
+/**
+ * sdw_release_bus_lock: Release bus lock for all Master runtime(s)
+ *
+ * @stream: SoundWire stream
+ *
+ * Release the previously held bus_lock after reconfiguring the bus.
+ */
+static void sdw_release_bus_lock(struct sdw_stream_runtime *stream)
+{
+       struct sdw_master_runtime *m_rt = NULL;
+       struct sdw_bus *bus = NULL;
+
+       /* Iterate for all Master(s) in Master list */
+       list_for_each_entry_reverse(m_rt, &stream->master_list, stream_node) {
+               bus = m_rt->bus;
+               mutex_unlock(&bus->bus_lock);
+       }
+}
+
 static int _sdw_prepare_stream(struct sdw_stream_runtime *stream)
 {
        struct sdw_master_runtime *m_rt = stream->m_rt;
index 962971e6a9c760e1311ddd6ea0141ca841583956..ccd8dcdf06ab8874d5bf40285beda0859fd6b339 100644 (file)
@@ -769,6 +769,9 @@ struct sdw_stream_params {
  * @state: Current state of the stream
  * @type: Stream type PCM or PDM
  * @m_rt: Master runtime
+ * @master_list: List of Master runtime(s) in this stream.
+ * master_list can contain only one m_rt per Master instance
+ * for a stream
  */
 struct sdw_stream_runtime {
        char *name;
@@ -776,6 +779,7 @@ struct sdw_stream_runtime {
        enum sdw_stream_state state;
        enum sdw_stream_type type;
        struct sdw_master_runtime *m_rt;
+       struct list_head master_list;
 };
 
 struct sdw_stream_runtime *sdw_alloc_stream(char *stream_name);