forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuffer.h
More file actions
290 lines (233 loc) · 8.99 KB
/
buffer.h
File metadata and controls
290 lines (233 loc) · 8.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2017 Intel Corporation. All rights reserved.
*
* Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
*/
#ifndef __SOF_AUDIO_BUFFER_H__
#define __SOF_AUDIO_BUFFER_H__
#include <sof/audio/audio_stream.h>
#include <sof/audio/pipeline.h>
#include <sof/math/numbers.h>
#include <sof/common.h>
#include <rtos/panic.h>
#include <rtos/alloc.h>
#include <rtos/cache.h>
#include <sof/lib/uuid.h>
#include <sof/list.h>
#include <sof/coherent.h>
#include <sof/math/numbers.h>
#include <rtos/spinlock.h>
#include <rtos/string.h>
#include <sof/trace/trace.h>
#include <ipc/stream.h>
#include <ipc/topology.h>
#include <user/trace.h>
#include <sof/audio/format.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
struct comp_dev;
/** \name Trace macros
* @{
*/
/* buffer tracing */
extern struct tr_ctx buffer_tr;
/** \brief Retrieves trace context from the buffer */
#define trace_buf_get_tr_ctx(buf_ptr) (&(buf_ptr)->tctx)
/** \brief Retrieves id (pipe id) from the buffer */
#define trace_buf_get_id(buf_ptr) ((buf_ptr)->pipeline_id)
/** \brief Retrieves subid (comp id) from the buffer */
#define trace_buf_get_subid(buf_ptr) ((buf_ptr)->id)
#if defined(__ZEPHYR__) && defined(CONFIG_ZEPHYR_LOG)
#if CONFIG_IPC_MAJOR_4
#define __BUF_FMT "buf:%u %#x "
#else
#define __BUF_FMT "buf:%u.%u "
#endif
#define buf_err(buf_ptr, __e, ...) LOG_ERR(__BUF_FMT __e, trace_buf_get_id(buf_ptr), \
trace_buf_get_subid(buf_ptr), ##__VA_ARGS__)
#define buf_warn(buf_ptr, __e, ...) LOG_WRN(__BUF_FMT __e, trace_buf_get_id(buf_ptr), \
trace_buf_get_subid(buf_ptr), ##__VA_ARGS__)
#define buf_info(buf_ptr, __e, ...) LOG_INF(__BUF_FMT __e, trace_buf_get_id(buf_ptr), \
trace_buf_get_subid(buf_ptr), ##__VA_ARGS__)
#define buf_dbg(buf_ptr, __e, ...) LOG_DBG(__BUF_FMT __e, trace_buf_get_id(buf_ptr), \
trace_buf_get_subid(buf_ptr), ##__VA_ARGS__)
#else
/** \brief Trace error message from buffer */
#define buf_err(buf_ptr, __e, ...) \
trace_dev_err(trace_buf_get_tr_ctx, trace_buf_get_id, \
trace_buf_get_subid, \
(__sparse_force const struct comp_buffer *)buf_ptr, \
__e, ##__VA_ARGS__)
/** \brief Trace warning message from buffer */
#define buf_warn(buf_ptr, __e, ...) \
trace_dev_warn(trace_buf_get_tr_ctx, trace_buf_get_id, \
trace_buf_get_subid, \
(__sparse_force const struct comp_buffer *)buf_ptr, \
__e, ##__VA_ARGS__)
/** \brief Trace info message from buffer */
#define buf_info(buf_ptr, __e, ...) \
trace_dev_info(trace_buf_get_tr_ctx, trace_buf_get_id, \
trace_buf_get_subid, \
(__sparse_force const struct comp_buffer *)buf_ptr, \
__e, ##__VA_ARGS__)
/** \brief Trace debug message from buffer */
#if defined(CONFIG_LIBRARY)
#define buf_dbg(buf_ptr, __e, ...)
#else
#define buf_dbg(buf_ptr, __e, ...) \
trace_dev_dbg(trace_buf_get_tr_ctx, trace_buf_get_id, \
trace_buf_get_subid, \
(__sparse_force const struct comp_buffer *)buf_ptr, \
__e, ##__VA_ARGS__)
#endif
#endif /* #if defined(__ZEPHYR__) && defined(CONFIG_ZEPHYR_LOG) */
/** @}*/
/* buffer callback types */
#define BUFF_CB_TYPE_PRODUCE BIT(0)
#define BUFF_CB_TYPE_CONSUME BIT(1)
#define BUFFER_UPDATE_IF_UNSET 0
#define BUFFER_UPDATE_FORCE 1
/* buffer parameters */
#define BUFF_PARAMS_FRAME_FMT BIT(0)
#define BUFF_PARAMS_BUFFER_FMT BIT(1)
#define BUFF_PARAMS_RATE BIT(2)
#define BUFF_PARAMS_CHANNELS BIT(3)
/*
* audio component buffer - connects 2 audio components together in pipeline.
*
* The buffer is a hot structure that must be shared on certain cache
* incoherent architectures.
*
* Access flow (on cache incoherent architectures only)
* 1) buffer acquired by using uncache cache coherent pointer.
* 2) buffer is invalidated after lock acquired.
* 3) buffer is safe to use cached pointer for access.
* 4) release buffer cached pointer
* 5) write back cached data and release lock using uncache pointer.
*/
struct comp_buffer {
struct coherent c;
/* data buffer */
struct audio_stream stream;
/* configuration */
uint32_t id;
uint32_t pipeline_id;
uint32_t caps;
uint32_t core;
struct tr_ctx tctx; /* trace settings */
/* connected components */
struct comp_dev *source; /* source component */
struct comp_dev *sink; /* sink component */
/* lists */
struct list_item source_list; /* list in comp buffers */
struct list_item sink_list; /* list in comp buffers */
/* runtime stream params */
uint32_t buffer_fmt; /**< enum sof_ipc_buffer_format */
uint16_t chmap[SOF_IPC_MAX_CHANNELS]; /**< channel map - SOF_CHMAP_ */
bool hw_params_configured; /**< indicates whether hw params were set */
bool walking; /**< indicates if the buffer is being walked */
};
/* Only to be used for synchronous same-core notifications! */
struct buffer_cb_transact {
struct comp_buffer __sparse_cache *buffer;
uint32_t transaction_amount;
void *transaction_begin_address;
};
struct buffer_cb_free {
struct comp_buffer *buffer;
};
#define buffer_comp_list(buffer, dir) \
((dir) == PPL_DIR_DOWNSTREAM ? &buffer->source_list : \
&buffer->sink_list)
#define buffer_from_list(ptr, dir) \
((dir) == PPL_DIR_DOWNSTREAM ? \
container_of(ptr, struct comp_buffer, source_list) : \
container_of(ptr, struct comp_buffer, sink_list))
#define buffer_set_cb(buffer, func, data, type) \
do { \
buffer->cb = func; \
buffer->cb_data = data; \
buffer->cb_type = type; \
} while (0)
/* pipeline buffer creation and destruction */
struct comp_buffer *buffer_alloc(uint32_t size, uint32_t caps, uint32_t flags, uint32_t align);
struct comp_buffer *buffer_new(const struct sof_ipc_buffer *desc);
int buffer_set_size(struct comp_buffer __sparse_cache *buffer, uint32_t size, uint32_t alignment);
void buffer_free(struct comp_buffer *buffer);
void buffer_zero(struct comp_buffer __sparse_cache *buffer);
/* called by a component after producing data into this buffer */
void comp_update_buffer_produce(struct comp_buffer __sparse_cache *buffer, uint32_t bytes);
/* called by a component after consuming data from this buffer */
void comp_update_buffer_consume(struct comp_buffer __sparse_cache *buffer, uint32_t bytes);
int buffer_set_params(struct comp_buffer __sparse_cache *buffer,
struct sof_ipc_stream_params *params, bool force_update);
bool buffer_params_match(struct comp_buffer __sparse_cache *buffer,
struct sof_ipc_stream_params *params, uint32_t flag);
static inline void buffer_stream_invalidate(struct comp_buffer __sparse_cache *buffer,
uint32_t bytes)
{
if (!is_coherent_shared(buffer, c))
return;
audio_stream_invalidate(&buffer->stream, bytes);
}
static inline void buffer_stream_writeback(struct comp_buffer __sparse_cache *buffer,
uint32_t bytes)
{
if (!is_coherent_shared(buffer, c))
return;
audio_stream_writeback(&buffer->stream, bytes);
}
__must_check static inline struct comp_buffer __sparse_cache *buffer_acquire(
struct comp_buffer *buffer)
{
struct coherent __sparse_cache *c = coherent_acquire_thread(&buffer->c, sizeof(*buffer));
return attr_container_of(c, struct comp_buffer __sparse_cache, c, __sparse_cache);
}
static inline void buffer_release(struct comp_buffer __sparse_cache *buffer)
{
coherent_release_thread(&buffer->c, sizeof(*buffer));
}
/*
* Attach a new buffer at the beginning of the list. Note, that "head" must
* really be the head of the list, not a list head within another buffer. We
* don't synchronise its cache, so it must not be embedded in an object, using
* the coherent API. The caller takes care to protect list heads.
*/
void buffer_attach(struct comp_buffer *buffer, struct list_item *head, int dir);
/*
* Detach a buffer from anywhere in the list. "head" is again the head of the
* list, we need it to verify, whether this buffer was the first or the last on
* the list. Again it is assumed that the head's cache doesn't need to be
* synchronized. The caller takes care to protect list heads.
*/
void buffer_detach(struct comp_buffer *buffer, struct list_item *head, int dir);
static inline struct comp_dev *buffer_get_comp(struct comp_buffer *buffer, int dir)
{
struct comp_buffer __sparse_cache *buffer_c = buffer_acquire(buffer);
struct comp_dev *comp = dir == PPL_DIR_DOWNSTREAM ? buffer_c->sink :
buffer_c->source;
buffer_release(buffer_c);
return comp;
}
static inline void buffer_reset_pos(struct comp_buffer __sparse_cache *buffer, void *data)
{
/* reset rw pointers and avail/free bytes counters */
audio_stream_reset(&buffer->stream);
/* clear buffer contents */
buffer_zero(buffer);
}
/* Run-time buffer re-configuration calls this too, so it must use cached access */
static inline void buffer_init(struct comp_buffer __sparse_cache *buffer,
uint32_t size, uint32_t caps)
{
buffer->caps = caps;
/* addr should be set in alloc function */
audio_stream_init(&buffer->stream, buffer->stream.addr, size);
}
static inline void buffer_reset_params(struct comp_buffer __sparse_cache *buffer, void *data)
{
buffer->hw_params_configured = false;
}
#endif /* __SOF_AUDIO_BUFFER_H__ */