Lines Matching refs:device

190 typedef void (*dma_callback_t)(const struct device *dev, void *user_data,
315 typedef int (*dma_api_config)(const struct device *dev, uint32_t channel,
319 typedef int (*dma_api_reload)(const struct device *dev, uint32_t channel,
322 typedef int (*dma_api_reload)(const struct device *dev, uint32_t channel,
326 typedef int (*dma_api_start)(const struct device *dev, uint32_t channel);
328 typedef int (*dma_api_stop)(const struct device *dev, uint32_t channel);
330 typedef int (*dma_api_suspend)(const struct device *dev, uint32_t channel);
332 typedef int (*dma_api_resume)(const struct device *dev, uint32_t channel);
334 typedef int (*dma_api_get_status)(const struct device *dev, uint32_t channel,
337 typedef int (*dma_api_get_attribute)(const struct device *dev, uint32_t type, uint32_t *value);
352 typedef bool (*dma_api_chan_filter)(const struct device *dev,
366 typedef void (*dma_api_chan_release)(const struct device *dev,
396 static inline int dma_config(const struct device *dev, uint32_t channel, in dma_config()
419 static inline int dma_reload(const struct device *dev, uint32_t channel, in dma_reload()
422 static inline int dma_reload(const struct device *dev, uint32_t channel, in dma_reload()
455 __syscall int dma_start(const struct device *dev, uint32_t channel);
457 static inline int z_impl_dma_start(const struct device *dev, uint32_t channel) in z_impl_dma_start()
483 __syscall int dma_stop(const struct device *dev, uint32_t channel);
485 static inline int z_impl_dma_stop(const struct device *dev, uint32_t channel) in z_impl_dma_stop()
510 __syscall int dma_suspend(const struct device *dev, uint32_t channel);
512 static inline int z_impl_dma_suspend(const struct device *dev, uint32_t channel) in z_impl_dma_suspend()
538 __syscall int dma_resume(const struct device *dev, uint32_t channel);
540 static inline int z_impl_dma_resume(const struct device *dev, uint32_t channel) in z_impl_dma_resume()
566 __syscall int dma_request_channel(const struct device *dev,
569 static inline int z_impl_dma_request_channel(const struct device *dev, in z_impl_dma_request_channel()
611 __syscall void dma_release_channel(const struct device *dev,
614 static inline void z_impl_dma_release_channel(const struct device *dev, in z_impl_dma_release_channel()
647 __syscall int dma_chan_filter(const struct device *dev,
650 static inline int z_impl_dma_chan_filter(const struct device *dev, in z_impl_dma_chan_filter()
679 static inline int dma_get_status(const struct device *dev, uint32_t channel, in dma_get_status()
709 static inline int dma_get_attribute(const struct device *dev, uint32_t type, uint32_t *value) in dma_get_attribute()