Lines Matching refs:sdev

21 #define sof_ops(sdev) \  argument
22 ((sdev)->pdata->desc->ops)
27 static inline int snd_sof_probe(struct snd_sof_dev *sdev) in snd_sof_probe() argument
29 return sof_ops(sdev)->probe(sdev); in snd_sof_probe()
32 static inline int snd_sof_remove(struct snd_sof_dev *sdev) in snd_sof_remove() argument
34 if (sof_ops(sdev)->remove) in snd_sof_remove()
35 return sof_ops(sdev)->remove(sdev); in snd_sof_remove()
46 static inline int snd_sof_dsp_run(struct snd_sof_dev *sdev) in snd_sof_dsp_run() argument
48 return sof_ops(sdev)->run(sdev); in snd_sof_dsp_run()
51 static inline int snd_sof_dsp_stall(struct snd_sof_dev *sdev) in snd_sof_dsp_stall() argument
53 if (sof_ops(sdev)->stall) in snd_sof_dsp_stall()
54 return sof_ops(sdev)->stall(sdev); in snd_sof_dsp_stall()
59 static inline int snd_sof_dsp_reset(struct snd_sof_dev *sdev) in snd_sof_dsp_reset() argument
61 if (sof_ops(sdev)->reset) in snd_sof_dsp_reset()
62 return sof_ops(sdev)->reset(sdev); in snd_sof_dsp_reset()
68 static inline int snd_sof_dsp_core_power_up(struct snd_sof_dev *sdev, in snd_sof_dsp_core_power_up() argument
71 if (sof_ops(sdev)->core_power_up) in snd_sof_dsp_core_power_up()
72 return sof_ops(sdev)->core_power_up(sdev, core_mask); in snd_sof_dsp_core_power_up()
77 static inline int snd_sof_dsp_core_power_down(struct snd_sof_dev *sdev, in snd_sof_dsp_core_power_down() argument
80 if (sof_ops(sdev)->core_power_down) in snd_sof_dsp_core_power_down()
81 return sof_ops(sdev)->core_power_down(sdev, core_mask); in snd_sof_dsp_core_power_down()
87 static inline int snd_sof_dsp_pre_fw_run(struct snd_sof_dev *sdev) in snd_sof_dsp_pre_fw_run() argument
89 if (sof_ops(sdev)->pre_fw_run) in snd_sof_dsp_pre_fw_run()
90 return sof_ops(sdev)->pre_fw_run(sdev); in snd_sof_dsp_pre_fw_run()
95 static inline int snd_sof_dsp_post_fw_run(struct snd_sof_dev *sdev) in snd_sof_dsp_post_fw_run() argument
97 if (sof_ops(sdev)->post_fw_run) in snd_sof_dsp_post_fw_run()
98 return sof_ops(sdev)->post_fw_run(sdev); in snd_sof_dsp_post_fw_run()
114 static inline int snd_sof_dsp_get_bar_index(struct snd_sof_dev *sdev, u32 type) in snd_sof_dsp_get_bar_index() argument
116 if (sof_ops(sdev)->get_bar_index) in snd_sof_dsp_get_bar_index()
117 return sof_ops(sdev)->get_bar_index(sdev, type); in snd_sof_dsp_get_bar_index()
119 return sdev->mmio_bar; in snd_sof_dsp_get_bar_index()
122 static inline int snd_sof_dsp_get_mailbox_offset(struct snd_sof_dev *sdev) in snd_sof_dsp_get_mailbox_offset() argument
124 if (sof_ops(sdev)->get_mailbox_offset) in snd_sof_dsp_get_mailbox_offset()
125 return sof_ops(sdev)->get_mailbox_offset(sdev); in snd_sof_dsp_get_mailbox_offset()
127 dev_err(sdev->dev, "error: %s not defined\n", __func__); in snd_sof_dsp_get_mailbox_offset()
131 static inline int snd_sof_dsp_get_window_offset(struct snd_sof_dev *sdev, in snd_sof_dsp_get_window_offset() argument
134 if (sof_ops(sdev)->get_window_offset) in snd_sof_dsp_get_window_offset()
135 return sof_ops(sdev)->get_window_offset(sdev, id); in snd_sof_dsp_get_window_offset()
137 dev_err(sdev->dev, "error: %s not defined\n", __func__); in snd_sof_dsp_get_window_offset()
141 static inline int snd_sof_dsp_resume(struct snd_sof_dev *sdev) in snd_sof_dsp_resume() argument
143 if (sof_ops(sdev)->resume) in snd_sof_dsp_resume()
144 return sof_ops(sdev)->resume(sdev); in snd_sof_dsp_resume()
149 static inline int snd_sof_dsp_suspend(struct snd_sof_dev *sdev, in snd_sof_dsp_suspend() argument
152 if (sof_ops(sdev)->suspend) in snd_sof_dsp_suspend()
153 return sof_ops(sdev)->suspend(sdev, target_state); in snd_sof_dsp_suspend()
158 static inline int snd_sof_dsp_runtime_resume(struct snd_sof_dev *sdev) in snd_sof_dsp_runtime_resume() argument
160 if (sof_ops(sdev)->runtime_resume) in snd_sof_dsp_runtime_resume()
161 return sof_ops(sdev)->runtime_resume(sdev); in snd_sof_dsp_runtime_resume()
166 static inline int snd_sof_dsp_runtime_suspend(struct snd_sof_dev *sdev) in snd_sof_dsp_runtime_suspend() argument
168 if (sof_ops(sdev)->runtime_suspend) in snd_sof_dsp_runtime_suspend()
169 return sof_ops(sdev)->runtime_suspend(sdev); in snd_sof_dsp_runtime_suspend()
174 static inline int snd_sof_dsp_runtime_idle(struct snd_sof_dev *sdev) in snd_sof_dsp_runtime_idle() argument
176 if (sof_ops(sdev)->runtime_idle) in snd_sof_dsp_runtime_idle()
177 return sof_ops(sdev)->runtime_idle(sdev); in snd_sof_dsp_runtime_idle()
182 static inline int snd_sof_dsp_hw_params_upon_resume(struct snd_sof_dev *sdev) in snd_sof_dsp_hw_params_upon_resume() argument
184 if (sof_ops(sdev)->set_hw_params_upon_resume) in snd_sof_dsp_hw_params_upon_resume()
185 return sof_ops(sdev)->set_hw_params_upon_resume(sdev); in snd_sof_dsp_hw_params_upon_resume()
189 static inline int snd_sof_dsp_set_clk(struct snd_sof_dev *sdev, u32 freq) in snd_sof_dsp_set_clk() argument
191 if (sof_ops(sdev)->set_clk) in snd_sof_dsp_set_clk()
192 return sof_ops(sdev)->set_clk(sdev, freq); in snd_sof_dsp_set_clk()
198 snd_sof_dsp_set_power_state(struct snd_sof_dev *sdev, in snd_sof_dsp_set_power_state() argument
201 if (sof_ops(sdev)->set_power_state) in snd_sof_dsp_set_power_state()
202 return sof_ops(sdev)->set_power_state(sdev, target_state); in snd_sof_dsp_set_power_state()
209 static inline void snd_sof_dsp_dbg_dump(struct snd_sof_dev *sdev, u32 flags) in snd_sof_dsp_dbg_dump() argument
211 if (sof_ops(sdev)->dbg_dump) in snd_sof_dsp_dbg_dump()
212 return sof_ops(sdev)->dbg_dump(sdev, flags); in snd_sof_dsp_dbg_dump()
215 static inline void snd_sof_ipc_dump(struct snd_sof_dev *sdev) in snd_sof_ipc_dump() argument
217 if (sof_ops(sdev)->ipc_dump) in snd_sof_ipc_dump()
218 return sof_ops(sdev)->ipc_dump(sdev); in snd_sof_ipc_dump()
222 static inline void snd_sof_dsp_write(struct snd_sof_dev *sdev, u32 bar, in snd_sof_dsp_write() argument
225 if (sof_ops(sdev)->write) { in snd_sof_dsp_write()
226 sof_ops(sdev)->write(sdev, sdev->bar[bar] + offset, value); in snd_sof_dsp_write()
230 dev_err_ratelimited(sdev->dev, "error: %s not defined\n", __func__); in snd_sof_dsp_write()
233 static inline void snd_sof_dsp_write64(struct snd_sof_dev *sdev, u32 bar, in snd_sof_dsp_write64() argument
236 if (sof_ops(sdev)->write64) { in snd_sof_dsp_write64()
237 sof_ops(sdev)->write64(sdev, sdev->bar[bar] + offset, value); in snd_sof_dsp_write64()
241 dev_err_ratelimited(sdev->dev, "error: %s not defined\n", __func__); in snd_sof_dsp_write64()
244 static inline u32 snd_sof_dsp_read(struct snd_sof_dev *sdev, u32 bar, in snd_sof_dsp_read() argument
247 if (sof_ops(sdev)->read) in snd_sof_dsp_read()
248 return sof_ops(sdev)->read(sdev, sdev->bar[bar] + offset); in snd_sof_dsp_read()
250 dev_err(sdev->dev, "error: %s not defined\n", __func__); in snd_sof_dsp_read()
254 static inline u64 snd_sof_dsp_read64(struct snd_sof_dev *sdev, u32 bar, in snd_sof_dsp_read64() argument
257 if (sof_ops(sdev)->read64) in snd_sof_dsp_read64()
258 return sof_ops(sdev)->read64(sdev, sdev->bar[bar] + offset); in snd_sof_dsp_read64()
260 dev_err(sdev->dev, "error: %s not defined\n", __func__); in snd_sof_dsp_read64()
265 static inline void snd_sof_dsp_block_read(struct snd_sof_dev *sdev, u32 bar, in snd_sof_dsp_block_read() argument
268 sof_ops(sdev)->block_read(sdev, bar, offset, dest, bytes); in snd_sof_dsp_block_read()
271 static inline void snd_sof_dsp_block_write(struct snd_sof_dev *sdev, u32 bar, in snd_sof_dsp_block_write() argument
274 sof_ops(sdev)->block_write(sdev, bar, offset, src, bytes); in snd_sof_dsp_block_write()
278 static inline int snd_sof_dsp_send_msg(struct snd_sof_dev *sdev, in snd_sof_dsp_send_msg() argument
281 return sof_ops(sdev)->send_msg(sdev, msg); in snd_sof_dsp_send_msg()
285 static inline int snd_sof_dma_trace_init(struct snd_sof_dev *sdev, in snd_sof_dma_trace_init() argument
288 if (sof_ops(sdev)->trace_init) in snd_sof_dma_trace_init()
289 return sof_ops(sdev)->trace_init(sdev, stream_tag); in snd_sof_dma_trace_init()
294 static inline int snd_sof_dma_trace_release(struct snd_sof_dev *sdev) in snd_sof_dma_trace_release() argument
296 if (sof_ops(sdev)->trace_release) in snd_sof_dma_trace_release()
297 return sof_ops(sdev)->trace_release(sdev); in snd_sof_dma_trace_release()
302 static inline int snd_sof_dma_trace_trigger(struct snd_sof_dev *sdev, int cmd) in snd_sof_dma_trace_trigger() argument
304 if (sof_ops(sdev)->trace_trigger) in snd_sof_dma_trace_trigger()
305 return sof_ops(sdev)->trace_trigger(sdev, cmd); in snd_sof_dma_trace_trigger()
312 snd_sof_pcm_platform_open(struct snd_sof_dev *sdev, in snd_sof_pcm_platform_open() argument
315 if (sof_ops(sdev) && sof_ops(sdev)->pcm_open) in snd_sof_pcm_platform_open()
316 return sof_ops(sdev)->pcm_open(sdev, substream); in snd_sof_pcm_platform_open()
323 snd_sof_pcm_platform_close(struct snd_sof_dev *sdev, in snd_sof_pcm_platform_close() argument
326 if (sof_ops(sdev) && sof_ops(sdev)->pcm_close) in snd_sof_pcm_platform_close()
327 return sof_ops(sdev)->pcm_close(sdev, substream); in snd_sof_pcm_platform_close()
334 snd_sof_pcm_platform_hw_params(struct snd_sof_dev *sdev, in snd_sof_pcm_platform_hw_params() argument
339 if (sof_ops(sdev) && sof_ops(sdev)->pcm_hw_params) in snd_sof_pcm_platform_hw_params()
340 return sof_ops(sdev)->pcm_hw_params(sdev, substream, in snd_sof_pcm_platform_hw_params()
348 snd_sof_pcm_platform_hw_free(struct snd_sof_dev *sdev, in snd_sof_pcm_platform_hw_free() argument
351 if (sof_ops(sdev) && sof_ops(sdev)->pcm_hw_free) in snd_sof_pcm_platform_hw_free()
352 return sof_ops(sdev)->pcm_hw_free(sdev, substream); in snd_sof_pcm_platform_hw_free()
359 snd_sof_pcm_platform_trigger(struct snd_sof_dev *sdev, in snd_sof_pcm_platform_trigger() argument
362 if (sof_ops(sdev) && sof_ops(sdev)->pcm_trigger) in snd_sof_pcm_platform_trigger()
363 return sof_ops(sdev)->pcm_trigger(sdev, substream, cmd); in snd_sof_pcm_platform_trigger()
369 static inline void snd_sof_ipc_msg_data(struct snd_sof_dev *sdev, in snd_sof_ipc_msg_data() argument
373 sof_ops(sdev)->ipc_msg_data(sdev, substream, p, sz); in snd_sof_ipc_msg_data()
378 snd_sof_ipc_pcm_params(struct snd_sof_dev *sdev, in snd_sof_ipc_pcm_params() argument
382 return sof_ops(sdev)->ipc_pcm_params(sdev, substream, reply); in snd_sof_ipc_pcm_params()
387 snd_sof_pcm_platform_pointer(struct snd_sof_dev *sdev, in snd_sof_pcm_platform_pointer() argument
390 if (sof_ops(sdev) && sof_ops(sdev)->pcm_pointer) in snd_sof_pcm_platform_pointer()
391 return sof_ops(sdev)->pcm_pointer(sdev, substream); in snd_sof_pcm_platform_pointer()
398 snd_sof_probe_compr_assign(struct snd_sof_dev *sdev, in snd_sof_probe_compr_assign() argument
401 return sof_ops(sdev)->probe_assign(sdev, cstream, dai); in snd_sof_probe_compr_assign()
405 snd_sof_probe_compr_free(struct snd_sof_dev *sdev, in snd_sof_probe_compr_free() argument
408 return sof_ops(sdev)->probe_free(sdev, cstream, dai); in snd_sof_probe_compr_free()
412 snd_sof_probe_compr_set_params(struct snd_sof_dev *sdev, in snd_sof_probe_compr_set_params() argument
416 return sof_ops(sdev)->probe_set_params(sdev, cstream, params, dai); in snd_sof_probe_compr_set_params()
420 snd_sof_probe_compr_trigger(struct snd_sof_dev *sdev, in snd_sof_probe_compr_trigger() argument
424 return sof_ops(sdev)->probe_trigger(sdev, cstream, cmd, dai); in snd_sof_probe_compr_trigger()
428 snd_sof_probe_compr_pointer(struct snd_sof_dev *sdev, in snd_sof_probe_compr_pointer() argument
432 if (sof_ops(sdev) && sof_ops(sdev)->probe_pointer) in snd_sof_probe_compr_pointer()
433 return sof_ops(sdev)->probe_pointer(sdev, cstream, tstamp, dai); in snd_sof_probe_compr_pointer()
441 snd_sof_machine_register(struct snd_sof_dev *sdev, void *pdata) in snd_sof_machine_register() argument
443 if (sof_ops(sdev) && sof_ops(sdev)->machine_register) in snd_sof_machine_register()
444 return sof_ops(sdev)->machine_register(sdev, pdata); in snd_sof_machine_register()
450 snd_sof_machine_unregister(struct snd_sof_dev *sdev, void *pdata) in snd_sof_machine_unregister() argument
452 if (sof_ops(sdev) && sof_ops(sdev)->machine_unregister) in snd_sof_machine_unregister()
453 sof_ops(sdev)->machine_unregister(sdev, pdata); in snd_sof_machine_unregister()
457 snd_sof_machine_select(struct snd_sof_dev *sdev) in snd_sof_machine_select() argument
459 if (sof_ops(sdev) && sof_ops(sdev)->machine_select) in snd_sof_machine_select()
460 sof_ops(sdev)->machine_select(sdev); in snd_sof_machine_select()
467 struct snd_sof_dev *sdev = dev_get_drvdata(dev); in snd_sof_set_mach_params() local
469 if (sof_ops(sdev) && sof_ops(sdev)->set_mach_params) in snd_sof_set_mach_params()
470 sof_ops(sdev)->set_mach_params(mach, dev); in snd_sof_set_mach_params()
506 #define snd_sof_dsp_read_poll_timeout(sdev, bar, offset, val, cond, sleep_us, timeout_us) \ argument
513 (val) = snd_sof_dsp_read(sdev, bar, offset); \
515 dev_dbg(sdev->dev, \
521 (val) = snd_sof_dsp_read(sdev, bar, offset); \
522 dev_dbg(sdev->dev, \
533 bool snd_sof_pci_update_bits(struct snd_sof_dev *sdev, u32 offset,
536 bool snd_sof_dsp_update_bits_unlocked(struct snd_sof_dev *sdev, u32 bar,
539 bool snd_sof_dsp_update_bits64_unlocked(struct snd_sof_dev *sdev, u32 bar,
542 bool snd_sof_dsp_update_bits(struct snd_sof_dev *sdev, u32 bar, u32 offset,
545 bool snd_sof_dsp_update_bits64(struct snd_sof_dev *sdev, u32 bar,
548 void snd_sof_dsp_update_bits_forced(struct snd_sof_dev *sdev, u32 bar,
551 int snd_sof_dsp_register_poll(struct snd_sof_dev *sdev, u32 bar, u32 offset,
555 void snd_sof_dsp_panic(struct snd_sof_dev *sdev, u32 offset);