~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/driver-api/soundwire/stream.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/driver-api/soundwire/stream.rst (Version linux-6.12-rc7) and /Documentation/driver-api/soundwire/stream.rst (Version linux-5.5.19)


  1 =========================                           1 =========================
  2 Audio Stream in SoundWire                           2 Audio Stream in SoundWire
  3 =========================                           3 =========================
  4                                                     4 
  5 An audio stream is a logical or virtual connec      5 An audio stream is a logical or virtual connection created between
  6                                                     6 
  7   (1) System memory buffer(s) and Codec(s)          7   (1) System memory buffer(s) and Codec(s)
  8                                                     8 
  9   (2) DSP memory buffer(s) and Codec(s)             9   (2) DSP memory buffer(s) and Codec(s)
 10                                                    10 
 11   (3) FIFO(s) and Codec(s)                         11   (3) FIFO(s) and Codec(s)
 12                                                    12 
 13   (4) Codec(s) and Codec(s)                        13   (4) Codec(s) and Codec(s)
 14                                                    14 
 15 which is typically driven by a DMA(s) channel      15 which is typically driven by a DMA(s) channel through the data link. An
 16 audio stream contains one or more channels of      16 audio stream contains one or more channels of data. All channels within
 17 stream must have same sample rate and same sam     17 stream must have same sample rate and same sample size.
 18                                                    18 
 19 Assume a stream with two channels (Left & Righ     19 Assume a stream with two channels (Left & Right) is opened using SoundWire
 20 interface. Below are some ways a stream can be     20 interface. Below are some ways a stream can be represented in SoundWire.
 21                                                    21 
 22 Stream Sample in memory (System memory, DSP me     22 Stream Sample in memory (System memory, DSP memory or FIFOs) ::
 23                                                    23 
 24         -------------------------                  24         -------------------------
 25         | L | R | L | R | L | R |                  25         | L | R | L | R | L | R |
 26         -------------------------                  26         -------------------------
 27                                                    27 
 28 Example 1: Stereo Stream with L and R channels     28 Example 1: Stereo Stream with L and R channels is rendered from Master to
 29 Slave. Both Master and Slave is using single p     29 Slave. Both Master and Slave is using single port. ::
 30                                                    30 
 31         +---------------+                    C     31         +---------------+                    Clock Signal  +---------------+
 32         |    Master     +---------------------     32         |    Master     +----------------------------------+     Slave     |
 33         |   Interface   |                          33         |   Interface   |                                  |   Interface   |
 34         |               |                          34         |               |                                  |       1       |
 35         |               |                          35         |               |                     Data Signal  |               |
 36         |    L  +  R    +---------------------     36         |    L  +  R    +----------------------------------+    L  +  R    |
 37         |     (Data)    |     Data Direction       37         |     (Data)    |     Data Direction               |     (Data)    |
 38         +---------------+  +------------------     38         +---------------+  +----------------------->       +---------------+
 39                                                    39 
 40                                                    40 
 41 Example 2: Stereo Stream with L and R channels     41 Example 2: Stereo Stream with L and R channels is captured from Slave to
 42 Master. Both Master and Slave is using single      42 Master. Both Master and Slave is using single port. ::
 43                                                    43 
 44                                                    44 
 45         +---------------+                    C     45         +---------------+                    Clock Signal  +---------------+
 46         |    Master     +---------------------     46         |    Master     +----------------------------------+     Slave     |
 47         |   Interface   |                          47         |   Interface   |                                  |   Interface   |
 48         |               |                          48         |               |                                  |       1       |
 49         |               |                          49         |               |                     Data Signal  |               |
 50         |    L  +  R    +---------------------     50         |    L  +  R    +----------------------------------+    L  +  R    |
 51         |     (Data)    |     Data Direction       51         |     (Data)    |     Data Direction               |     (Data)    |
 52         +---------------+  <------------------     52         +---------------+  <-----------------------+       +---------------+
 53                                                    53 
 54                                                    54 
 55 Example 3: Stereo Stream with L and R channels     55 Example 3: Stereo Stream with L and R channels is rendered by Master. Each
 56 of the L and R channel is received by two diff     56 of the L and R channel is received by two different Slaves. Master and both
 57 Slaves are using single port. ::                   57 Slaves are using single port. ::
 58                                                    58 
 59         +---------------+                    C     59         +---------------+                    Clock Signal  +---------------+
 60         |    Master     +---------+-----------     60         |    Master     +---------+------------------------+     Slave     |
 61         |   Interface   |         |                61         |   Interface   |         |                        |   Interface   |
 62         |               |         |                62         |               |         |                        |       1       |
 63         |               |         |                63         |               |         |           Data Signal  |               |
 64         |    L  +  R    +---+-----------------     64         |    L  +  R    +---+------------------------------+       L       |
 65         |     (Data)    |   |     |    Data Di     65         |     (Data)    |   |     |    Data Direction      |     (Data)    |
 66         +---------------+   |     |   +-------     66         +---------------+   |     |   +------------->      +---------------+
 67                             |     |                67                             |     |
 68                             |     |                68                             |     |
 69                             |     |                69                             |     |                        +---------------+
 70                             |     +-----------     70                             |     +----------------------> |     Slave     |
 71                             |                      71                             |                              |   Interface   |
 72                             |                      72                             |                              |       2       |
 73                             |                      73                             |                              |               |
 74                             +-----------------     74                             +----------------------------> |       R       |
 75                                                    75                                                            |     (Data)    |
 76                                                    76                                                            +---------------+
 77                                                    77 
 78 Example 4: Stereo Stream with L and R channels << 
 79 Master. Both of the L and R channels are recei << 
 80 Slaves. Master and both Slaves are using singl << 
 81 L+R. Each Slave device processes the L + R dat << 
 82 based on static configuration or dynamic orien << 
 83 one or more speakers. ::                       << 
 84                                                    78 
 85         +---------------+                    C !!  79 Example 4: Stereo Stream with L and R channel is rendered by two different
 86         |    Master     +---------+----------- << 
 87         |   Interface   |         |            << 
 88         |               |         |            << 
 89         |               |         |            << 
 90         |    L  +  R    +---+----------------- << 
 91         |     (Data)    |   |     |    Data Di << 
 92         +---------------+   |     |   +------- << 
 93                             |     |            << 
 94                             |     |            << 
 95                             |     |            << 
 96                             |     +----------- << 
 97                             |                  << 
 98                             |                  << 
 99                             |                  << 
100                             +----------------- << 
101                                                << 
102                                                << 
103                                                << 
104 Example 5: Stereo Stream with L and R channel  << 
105 Ports of the Master and is received by only si     80 Ports of the Master and is received by only single Port of the Slave
106 interface. ::                                      81 interface. ::
107                                                    82 
108         +--------------------+                     83         +--------------------+
109         |                    |                     84         |                    |
110         |     +--------------+                     85         |     +--------------+                             +----------------+
111         |     |             ||                     86         |     |             ||                             |                |
112         |     |  Data Port  ||  L Channel          87         |     |  Data Port  ||  L Channel                  |                |
113         |     |      1      |------------+         88         |     |      1      |------------+                 |                |
114         |     |  L Channel  ||           |         89         |     |  L Channel  ||           |                 +-----+----+     |
115         |     |   (Data)    ||           |   L     90         |     |   (Data)    ||           |   L + R Channel ||    Data |     |
116         | Master  +----------+           | +--     91         | Master  +----------+           | +---+---------> ||    Port |     |
117         | Interface          |           |         92         | Interface          |           |                 ||     1   |     |
118         |     +--------------+           |         93         |     +--------------+           |                 ||         |     |
119         |     |             ||           |         94         |     |             ||           |                 +----------+     |
120         |     |  Data Port  |------------+         95         |     |  Data Port  |------------+                 |                |
121         |     |      2      ||  R Channel          96         |     |      2      ||  R Channel                  |     Slave      |
122         |     |  R Channel  ||                     97         |     |  R Channel  ||                             |   Interface    |
123         |     |   (Data)    ||                     98         |     |   (Data)    ||                             |       1        |
124         |     +--------------+         Clock S     99         |     +--------------+         Clock Signal        |     L  +  R    |
125         |                    +----------------    100         |                    +---------------------------> |      (Data)    |
126         +--------------------+                    101         +--------------------+                             |                |
127                                                   102                                                            +----------------+
128                                                   103 
129 Example 6: Stereo Stream with L and R channel  !! 104 Example 5: Stereo Stream with L and R channel is rendered by 2 Masters, each
130 rendering one channel, and is received by two     105 rendering one channel, and is received by two different Slaves, each
131 receiving one channel. Both Masters and both S    106 receiving one channel. Both Masters and both Slaves are using single port. ::
132                                                   107 
133         +---------------+                    C    108         +---------------+                    Clock Signal  +---------------+
134         |    Master     +---------------------    109         |    Master     +----------------------------------+     Slave     |
135         |   Interface   |                         110         |   Interface   |                                  |   Interface   |
136         |       1       |                         111         |       1       |                                  |       1       |
137         |               |                         112         |               |                     Data Signal  |               |
138         |       L       +---------------------    113         |       L       +----------------------------------+       L       |
139         |     (Data)    |     Data Direction      114         |     (Data)    |     Data Direction               |     (Data)    |
140         +---------------+  +------------------    115         +---------------+  +----------------------->       +---------------+
141                                                   116 
142         +---------------+                    C    117         +---------------+                    Clock Signal  +---------------+
143         |    Master     +---------------------    118         |    Master     +----------------------------------+     Slave     |
144         |   Interface   |                         119         |   Interface   |                                  |   Interface   |
145         |       2       |                         120         |       2       |                                  |       2       |
146         |               |                         121         |               |                     Data Signal  |               |
147         |       R       +---------------------    122         |       R       +----------------------------------+       R       |
148         |     (Data)    |     Data Direction      123         |     (Data)    |     Data Direction               |     (Data)    |
149         +---------------+  +------------------    124         +---------------+  +----------------------->       +---------------+
150                                                   125 
151 Example 7: Stereo Stream with L and R channel  !! 126 Note: In multi-link cases like above, to lock, one would acquire a global
152 Masters, each rendering both channels. Each Sl << 
153 is the same application as Example 4 but with  << 
154 separate links. ::                             << 
155                                                << 
156         +---------------+                    C << 
157         |    Master     +--------------------- << 
158         |   Interface   |                      << 
159         |       1       |                      << 
160         |               |                      << 
161         |     L + R     +--------------------- << 
162         |     (Data)    |     Data Direction   << 
163         +---------------+  +------------------ << 
164                                                << 
165         +---------------+                    C << 
166         |    Master     +--------------------- << 
167         |   Interface   |                      << 
168         |       2       |                      << 
169         |               |                      << 
170         |     L + R     +--------------------- << 
171         |     (Data)    |     Data Direction   << 
172         +---------------+  +------------------ << 
173                                                << 
174 Example 8: 4-channel Stream is rendered by 2 M << 
175 2 channels. Each Slave receives 2 channels. :: << 
176                                                << 
177         +---------------+                    C << 
178         |    Master     +--------------------- << 
179         |   Interface   |                      << 
180         |       1       |                      << 
181         |               |                      << 
182         |    L1 + R1    +--------------------- << 
183         |     (Data)    |     Data Direction   << 
184         +---------------+  +------------------ << 
185                                                << 
186         +---------------+                    C << 
187         |    Master     +--------------------- << 
188         |   Interface   |                      << 
189         |       2       |                      << 
190         |               |                      << 
191         |     L2 + R2   +--------------------- << 
192         |     (Data)    |     Data Direction   << 
193         +---------------+  +------------------ << 
194                                                << 
195 Note1: In multi-link cases like above, to lock << 
196 lock and then go on locking bus instances. But    127 lock and then go on locking bus instances. But, in this case the caller
197 framework(ASoC DPCM) guarantees that stream op    128 framework(ASoC DPCM) guarantees that stream operations on a card are
198 always serialized. So, there is no race condit    129 always serialized. So, there is no race condition and hence no need for
199 global lock.                                      130 global lock.
200                                                   131 
201 Note2: A Slave device may be configured to rec << 
202 transmitted on a link for a given Stream (Exam << 
203 of the data (Example 3). The configuration of  << 
204 handled by a SoundWire subsystem API, but inst << 
205 snd_soc_dai_set_tdm_slot() API. The platform o << 
206 typically configure which of the slots are use << 
207 same slots would be used by all Devices, while << 
208 Device1 would use e.g. Slot 0 and Slave device << 
209                                                << 
210 Note3: Multiple Sink ports can extract the sam << 
211 same bitSlots in the SoundWire frame, however  << 
212 shall be configured with different bitSlot con << 
213 same limitation as with I2S/PCM TDM usages.    << 
214                                                << 
215 SoundWire Stream Management flow                  132 SoundWire Stream Management flow
216 ================================                  133 ================================
217                                                   134 
218 Stream definitions                                135 Stream definitions
219 ------------------                                136 ------------------
220                                                   137 
221   (1) Current stream: This is classified as th    138   (1) Current stream: This is classified as the stream on which operation has
222       to be performed like prepare, enable, di    139       to be performed like prepare, enable, disable, de-prepare etc.
223                                                   140 
224   (2) Active stream: This is classified as the    141   (2) Active stream: This is classified as the stream which is already active
225       on Bus other than current stream. There     142       on Bus other than current stream. There can be multiple active streams
226       on the Bus.                                 143       on the Bus.
227                                                   144 
228 SoundWire Bus manages stream operations for ea    145 SoundWire Bus manages stream operations for each stream getting
229 rendered/captured on the SoundWire Bus. This s    146 rendered/captured on the SoundWire Bus. This section explains Bus operations
230 done for each of the stream allocated/released    147 done for each of the stream allocated/released on Bus. Following are the
231 stream states maintained by the Bus for each o    148 stream states maintained by the Bus for each of the audio stream.
232                                                   149 
233                                                   150 
234 SoundWire stream states                           151 SoundWire stream states
235 -----------------------                           152 -----------------------
236                                                   153 
237 Below shows the SoundWire stream states and st    154 Below shows the SoundWire stream states and state transition diagram. ::
238                                                   155 
239         +-----------+     +------------+     +    156         +-----------+     +------------+     +----------+     +----------+
240         | ALLOCATED +---->| CONFIGURED +---->|    157         | ALLOCATED +---->| CONFIGURED +---->| PREPARED +---->| ENABLED  |
241         |   STATE   |     |    STATE   |     |    158         |   STATE   |     |    STATE   |     |  STATE   |     |  STATE   |
242         +-----------+     +------------+     + !! 159         +-----------+     +------------+     +----------+     +----+-----+
243                                                !! 160                                                                    ^
244                                                !! 161                                                                    |
245                                                !! 162                                                                    |
246                                                !! 163                                                                    v
247                                                !! 164                  +----------+           +------------+        +----+-----+
248                  +----------+           +----- << 
249                  | RELEASED |<----------+ DEPR    165                  | RELEASED |<----------+ DEPREPARED |<-------+ DISABLED |
250                  |  STATE   |           |   ST    166                  |  STATE   |           |   STATE    |        |  STATE   |
251                  +----------+           +-----    167                  +----------+           +------------+        +----------+
252                                                   168 
253 NOTE: State transitions between ``SDW_STREAM_E !! 169 NOTE: State transition between prepare and deprepare is supported in Spec
254 ``SDW_STREAM_DISABLED`` are only relevant when !! 170 but not in the software (subsystem)
255 supported at the ALSA/ASoC level. Likewise the !! 171 
256 ``SDW_DISABLED_STATE`` and ``SDW_PREPARED_STAT !! 172 NOTE2: Stream state transition checks need to be handled by caller
257 INFO_RESUME flag.                              !! 173 framework, for example ALSA/ASoC. No checks for stream transition exist in
258                                                !! 174 SoundWire subsystem.
259 NOTE2: The framework implements basic state tr << 
260 does not e.g. check if a transition from DISAB << 
261 on a specific platform. Such tests need to be  << 
262 level.                                         << 
263                                                   175 
264 Stream State Operations                           176 Stream State Operations
265 -----------------------                           177 -----------------------
266                                                   178 
267 Below section explains the operations done by     179 Below section explains the operations done by the Bus on Master(s) and
268 Slave(s) as part of stream state transitions.     180 Slave(s) as part of stream state transitions.
269                                                   181 
270 SDW_STREAM_ALLOCATED                              182 SDW_STREAM_ALLOCATED
271 ~~~~~~~~~~~~~~~~~~~~                              183 ~~~~~~~~~~~~~~~~~~~~
272                                                   184 
273 Allocation state for stream. This is the entry    185 Allocation state for stream. This is the entry state
274 of the stream. Operations performed before ent    186 of the stream. Operations performed before entering in this state:
275                                                   187 
276   (1) A stream runtime is allocated for the st    188   (1) A stream runtime is allocated for the stream. This stream
277       runtime is used as a reference for all t    189       runtime is used as a reference for all the operations performed
278       on the stream.                              190       on the stream.
279                                                   191 
280   (2) The resources required for holding strea    192   (2) The resources required for holding stream runtime information are
281       allocated and initialized. This holds al    193       allocated and initialized. This holds all stream related information
282       such as stream type (PCM/PDM) and parame    194       such as stream type (PCM/PDM) and parameters, Master and Slave
283       interface associated with the stream, st    195       interface associated with the stream, stream state etc.
284                                                   196 
285 After all above operations are successful, str    197 After all above operations are successful, stream state is set to
286 ``SDW_STREAM_ALLOCATED``.                         198 ``SDW_STREAM_ALLOCATED``.
287                                                   199 
288 Bus implements below API for allocate a stream    200 Bus implements below API for allocate a stream which needs to be called once
289 per stream. From ASoC DPCM framework, this str    201 per stream. From ASoC DPCM framework, this stream state maybe linked to
290 .startup() operation.                             202 .startup() operation.
291                                                   203 
292 .. code-block:: c                                 204 .. code-block:: c
293                                                   205 
294   int sdw_alloc_stream(char * stream_name);       206   int sdw_alloc_stream(char * stream_name);
295                                                   207 
296 The SoundWire core provides a sdw_startup_stre << 
297 typically called during a dailink .startup() c << 
298 stream allocation and sets the stream pointer  << 
299 connected to a stream.                         << 
300                                                   208 
301 SDW_STREAM_CONFIGURED                             209 SDW_STREAM_CONFIGURED
302 ~~~~~~~~~~~~~~~~~~~~~                             210 ~~~~~~~~~~~~~~~~~~~~~
303                                                   211 
304 Configuration state of stream. Operations perf    212 Configuration state of stream. Operations performed before entering in
305 this state:                                       213 this state:
306                                                   214 
307   (1) The resources allocated for stream infor    215   (1) The resources allocated for stream information in SDW_STREAM_ALLOCATED
308       state are updated here. This includes st    216       state are updated here. This includes stream parameters, Master(s)
309       and Slave(s) runtime information associa    217       and Slave(s) runtime information associated with current stream.
310                                                   218 
311   (2) All the Master(s) and Slave(s) associate    219   (2) All the Master(s) and Slave(s) associated with current stream provide
312       the port information to Bus which includ    220       the port information to Bus which includes port numbers allocated by
313       Master(s) and Slave(s) for current strea    221       Master(s) and Slave(s) for current stream and their channel mask.
314                                                   222 
315 After all above operations are successful, str    223 After all above operations are successful, stream state is set to
316 ``SDW_STREAM_CONFIGURED``.                        224 ``SDW_STREAM_CONFIGURED``.
317                                                   225 
318 Bus implements below APIs for CONFIG state whi    226 Bus implements below APIs for CONFIG state which needs to be called by
319 the respective Master(s) and Slave(s) associat    227 the respective Master(s) and Slave(s) associated with stream. These APIs can
320 only be invoked once by respective Master(s) a    228 only be invoked once by respective Master(s) and Slave(s). From ASoC DPCM
321 framework, this stream state is linked to .hw_    229 framework, this stream state is linked to .hw_params() operation.
322                                                   230 
323 .. code-block:: c                                 231 .. code-block:: c
324                                                   232 
325   int sdw_stream_add_master(struct sdw_bus * b    233   int sdw_stream_add_master(struct sdw_bus * bus,
326                 struct sdw_stream_config * str    234                 struct sdw_stream_config * stream_config,
327                 const struct sdw_ports_config  !! 235                 struct sdw_ports_config * ports_config,
328                 struct sdw_stream_runtime * st    236                 struct sdw_stream_runtime * stream);
329                                                   237 
330   int sdw_stream_add_slave(struct sdw_slave *     238   int sdw_stream_add_slave(struct sdw_slave * slave,
331                 struct sdw_stream_config * str    239                 struct sdw_stream_config * stream_config,
332                 const struct sdw_ports_config  !! 240                 struct sdw_ports_config * ports_config,
333                 struct sdw_stream_runtime * st    241                 struct sdw_stream_runtime * stream);
334                                                   242 
335                                                   243 
336 SDW_STREAM_PREPARED                               244 SDW_STREAM_PREPARED
337 ~~~~~~~~~~~~~~~~~~~                               245 ~~~~~~~~~~~~~~~~~~~
338                                                   246 
339 Prepare state of stream. Operations performed     247 Prepare state of stream. Operations performed before entering in this state:
340                                                   248 
341   (0) Steps 1 and 2 are omitted in the case of << 
342       where the bus bandwidth is known.        << 
343                                                << 
344   (1) Bus parameters such as bandwidth, frame     249   (1) Bus parameters such as bandwidth, frame shape, clock frequency,
345       are computed based on current stream as     250       are computed based on current stream as well as already active
346       stream(s) on Bus. Re-computation is requ    251       stream(s) on Bus. Re-computation is required to accommodate current
347       stream on the Bus.                          252       stream on the Bus.
348                                                   253 
349   (2) Transport and port parameters of all Mas    254   (2) Transport and port parameters of all Master(s) and Slave(s) port(s) are
350       computed for the current as well as alre    255       computed for the current as well as already active stream based on frame
351       shape and clock frequency computed in st    256       shape and clock frequency computed in step 1.
352                                                   257 
353   (3) Computed Bus and transport parameters ar    258   (3) Computed Bus and transport parameters are programmed in Master(s) and
354       Slave(s) registers. The banked registers    259       Slave(s) registers. The banked registers programming is done on the
355       alternate bank (bank currently unused).     260       alternate bank (bank currently unused). Port(s) are enabled for the
356       already active stream(s) on the alternat    261       already active stream(s) on the alternate bank (bank currently unused).
357       This is done in order to not disrupt alr    262       This is done in order to not disrupt already active stream(s).
358                                                   263 
359   (4) Once all the values are programmed, Bus     264   (4) Once all the values are programmed, Bus initiates switch to alternate
360       bank where all new values programmed get    265       bank where all new values programmed gets into effect.
361                                                   266 
362   (5) Ports of Master(s) and Slave(s) for curr    267   (5) Ports of Master(s) and Slave(s) for current stream are prepared by
363       programming PrepareCtrl register.           268       programming PrepareCtrl register.
364                                                   269 
365 After all above operations are successful, str    270 After all above operations are successful, stream state is set to
366 ``SDW_STREAM_PREPARED``.                          271 ``SDW_STREAM_PREPARED``.
367                                                   272 
368 Bus implements below API for PREPARE state whi !! 273 Bus implements below API for PREPARE state which needs to be called once per
369 once per stream. From ASoC DPCM framework, thi !! 274 stream. From ASoC DPCM framework, this stream state is linked to
370 to .prepare() operation. Since the .trigger()  !! 275 .prepare() operation.
371 follow the .prepare(), a direct transition fro << 
372 ``SDW_STREAM_PREPARED`` to ``SDW_STREAM_DEPREP << 
373                                                   276 
374 .. code-block:: c                                 277 .. code-block:: c
375                                                   278 
376   int sdw_prepare_stream(struct sdw_stream_run    279   int sdw_prepare_stream(struct sdw_stream_runtime * stream);
377                                                   280 
378                                                   281 
379 SDW_STREAM_ENABLED                                282 SDW_STREAM_ENABLED
380 ~~~~~~~~~~~~~~~~~~                                283 ~~~~~~~~~~~~~~~~~~
381                                                   284 
382 Enable state of stream. The data port(s) are e    285 Enable state of stream. The data port(s) are enabled upon entering this state.
383 Operations performed before entering in this s    286 Operations performed before entering in this state:
384                                                   287 
385   (1) All the values computed in SDW_STREAM_PR    288   (1) All the values computed in SDW_STREAM_PREPARED state are programmed
386       in alternate bank (bank currently unused    289       in alternate bank (bank currently unused). It includes programming of
387       already active stream(s) as well.           290       already active stream(s) as well.
388                                                   291 
389   (2) All the Master(s) and Slave(s) port(s) f    292   (2) All the Master(s) and Slave(s) port(s) for the current stream are
390       enabled on alternate bank (bank currentl    293       enabled on alternate bank (bank currently unused) by programming
391       ChannelEn register.                         294       ChannelEn register.
392                                                   295 
393   (3) Once all the values are programmed, Bus     296   (3) Once all the values are programmed, Bus initiates switch to alternate
394       bank where all new values programmed get    297       bank where all new values programmed gets into effect and port(s)
395       associated with current stream are enabl    298       associated with current stream are enabled.
396                                                   299 
397 After all above operations are successful, str    300 After all above operations are successful, stream state is set to
398 ``SDW_STREAM_ENABLED``.                           301 ``SDW_STREAM_ENABLED``.
399                                                   302 
400 Bus implements below API for ENABLE state whic    303 Bus implements below API for ENABLE state which needs to be called once per
401 stream. From ASoC DPCM framework, this stream     304 stream. From ASoC DPCM framework, this stream state is linked to
402 .trigger() start operation.                       305 .trigger() start operation.
403                                                   306 
404 .. code-block:: c                                 307 .. code-block:: c
405                                                   308 
406   int sdw_enable_stream(struct sdw_stream_runt    309   int sdw_enable_stream(struct sdw_stream_runtime * stream);
407                                                   310 
408 SDW_STREAM_DISABLED                               311 SDW_STREAM_DISABLED
409 ~~~~~~~~~~~~~~~~~~~                               312 ~~~~~~~~~~~~~~~~~~~
410                                                   313 
411 Disable state of stream. The data port(s) are     314 Disable state of stream. The data port(s) are disabled upon exiting this state.
412 Operations performed before entering in this s    315 Operations performed before entering in this state:
413                                                   316 
414   (1) All the Master(s) and Slave(s) port(s) f    317   (1) All the Master(s) and Slave(s) port(s) for the current stream are
415       disabled on alternate bank (bank current    318       disabled on alternate bank (bank currently unused) by programming
416       ChannelEn register.                         319       ChannelEn register.
417                                                   320 
418   (2) All the current configuration of Bus and    321   (2) All the current configuration of Bus and active stream(s) are programmed
419       into alternate bank (bank currently unus    322       into alternate bank (bank currently unused).
420                                                   323 
421   (3) Once all the values are programmed, Bus     324   (3) Once all the values are programmed, Bus initiates switch to alternate
422       bank where all new values programmed get    325       bank where all new values programmed gets into effect and port(s) associated
423       with current stream are disabled.           326       with current stream are disabled.
424                                                   327 
425 After all above operations are successful, str    328 After all above operations are successful, stream state is set to
426 ``SDW_STREAM_DISABLED``.                          329 ``SDW_STREAM_DISABLED``.
427                                                   330 
428 Bus implements below API for DISABLED state wh    331 Bus implements below API for DISABLED state which needs to be called once
429 per stream. From ASoC DPCM framework, this str    332 per stream. From ASoC DPCM framework, this stream state is linked to
430 .trigger() stop operation.                        333 .trigger() stop operation.
431                                                   334 
432 When the INFO_PAUSE flag is supported, a direc << 
433 ``SDW_STREAM_ENABLED`` is allowed.             << 
434                                                << 
435 For resume operations where ASoC will use the  << 
436 stream can transition from ``SDW_STREAM_DISABL << 
437 ``SDW_STREAM_PREPARED``, with all required set << 
438 without updating the bandwidth and bit allocat << 
439                                                << 
440 .. code-block:: c                                 335 .. code-block:: c
441                                                   336 
442   int sdw_disable_stream(struct sdw_stream_run    337   int sdw_disable_stream(struct sdw_stream_runtime * stream);
443                                                   338 
444                                                   339 
445 SDW_STREAM_DEPREPARED                             340 SDW_STREAM_DEPREPARED
446 ~~~~~~~~~~~~~~~~~~~~~                             341 ~~~~~~~~~~~~~~~~~~~~~
447                                                   342 
448 De-prepare state of stream. Operations perform    343 De-prepare state of stream. Operations performed before entering in this
449 state:                                            344 state:
450                                                   345 
451   (1) All the port(s) of Master(s) and Slave(s    346   (1) All the port(s) of Master(s) and Slave(s) for current stream are
452       de-prepared by programming PrepareCtrl r    347       de-prepared by programming PrepareCtrl register.
453                                                   348 
454   (2) The payload bandwidth of current stream     349   (2) The payload bandwidth of current stream is reduced from the total
455       bandwidth requirement of bus and new par    350       bandwidth requirement of bus and new parameters calculated and
456       applied by performing bank switch etc.      351       applied by performing bank switch etc.
457                                                   352 
458 After all above operations are successful, str    353 After all above operations are successful, stream state is set to
459 ``SDW_STREAM_DEPREPARED``.                        354 ``SDW_STREAM_DEPREPARED``.
460                                                   355 
461 Bus implements below API for DEPREPARED state  !! 356 Bus implements below API for DEPREPARED state which needs to be called once
462 once per stream. ALSA/ASoC do not have a conce !! 357 per stream. From ASoC DPCM framework, this stream state is linked to
463 the mapping from this stream state to ALSA/ASo !! 358 .trigger() stop operation.
464 implementation specific.                       << 
465                                                << 
466 When the INFO_PAUSE flag is supported, the str << 
467 the .hw_free() operation - the stream is not d << 
468 TRIGGER_STOP.                                  << 
469                                                << 
470 Other implementations may transition to the `` << 
471 state on TRIGGER_STOP, should they require a t << 
472 ``SDW_STREAM_PREPARED`` state.                 << 
473                                                   359 
474 .. code-block:: c                                 360 .. code-block:: c
475                                                   361 
476   int sdw_deprepare_stream(struct sdw_stream_r    362   int sdw_deprepare_stream(struct sdw_stream_runtime * stream);
477                                                   363 
478                                                   364 
479 SDW_STREAM_RELEASED                               365 SDW_STREAM_RELEASED
480 ~~~~~~~~~~~~~~~~~~~                               366 ~~~~~~~~~~~~~~~~~~~
481                                                   367 
482 Release state of stream. Operations performed     368 Release state of stream. Operations performed before entering in this state:
483                                                   369 
484   (1) Release port resources for all Master(s)    370   (1) Release port resources for all Master(s) and Slave(s) port(s)
485       associated with current stream.             371       associated with current stream.
486                                                   372 
487   (2) Release Master(s) and Slave(s) runtime r    373   (2) Release Master(s) and Slave(s) runtime resources associated with
488       current stream.                             374       current stream.
489                                                   375 
490   (3) Release stream runtime resources associa    376   (3) Release stream runtime resources associated with current stream.
491                                                   377 
492 After all above operations are successful, str    378 After all above operations are successful, stream state is set to
493 ``SDW_STREAM_RELEASED``.                          379 ``SDW_STREAM_RELEASED``.
494                                                   380 
495 Bus implements below APIs for RELEASE state wh    381 Bus implements below APIs for RELEASE state which needs to be called by
496 all the Master(s) and Slave(s) associated with    382 all the Master(s) and Slave(s) associated with stream. From ASoC DPCM
497 framework, this stream state is linked to .hw_    383 framework, this stream state is linked to .hw_free() operation.
498                                                   384 
499 .. code-block:: c                                 385 .. code-block:: c
500                                                   386 
501   int sdw_stream_remove_master(struct sdw_bus     387   int sdw_stream_remove_master(struct sdw_bus * bus,
502                 struct sdw_stream_runtime * st    388                 struct sdw_stream_runtime * stream);
503   int sdw_stream_remove_slave(struct sdw_slave    389   int sdw_stream_remove_slave(struct sdw_slave * slave,
504                 struct sdw_stream_runtime * st    390                 struct sdw_stream_runtime * stream);
505                                                   391 
506                                                   392 
507 The .shutdown() ASoC DPCM operation calls belo    393 The .shutdown() ASoC DPCM operation calls below Bus API to release
508 stream assigned as part of ALLOCATED state.       394 stream assigned as part of ALLOCATED state.
509                                                   395 
510 In .shutdown() the data structure maintaining     396 In .shutdown() the data structure maintaining stream state are freed up.
511                                                   397 
512 .. code-block:: c                                 398 .. code-block:: c
513                                                   399 
514   void sdw_release_stream(struct sdw_stream_ru    400   void sdw_release_stream(struct sdw_stream_runtime * stream);
515                                                   401 
516 The SoundWire core provides a sdw_shutdown_str << 
517 typically called during a dailink .shutdown()  << 
518 the stream pointer for all DAIS connected to a << 
519 memory allocated for the stream.               << 
520                                                << 
521 Not Supported                                     402 Not Supported
522 =============                                     403 =============
523                                                   404 
524 1. A single port with multiple channels suppor    405 1. A single port with multiple channels supported cannot be used between two
525    streams or across stream. For example a por !! 406 streams or across stream. For example a port with 4 channels cannot be used
526    to handle 2 independent stereo streams even !! 407 to handle 2 independent stereo streams even though it's possible in theory
527    in SoundWire.                               !! 408 in SoundWire.
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php