blob: a62eab476d58c838c74e8530f9099966cd26f9ac (
plain)
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2016 Pengutronix
*/
#ifndef IMX_VDOA_H
#define IMX_VDOA_H
struct vdoa_data;
struct vdoa_ctx;
#if (defined CONFIG_VIDEO_IMX_VDOA || defined CONFIG_VIDEO_IMX_VDOA_MODULE)
struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa);
int vdoa_context_configure(struct vdoa_ctx *ctx,
unsigned int width, unsigned int height,
u32 pixelformat);
void vdoa_context_destroy(struct vdoa_ctx *ctx);
void vdoa_device_run(struct vdoa_ctx *ctx, dma_addr_t dst, dma_addr_t src);
int vdoa_wait_for_completion(struct vdoa_ctx *ctx);
#else
static inline struct vdoa_ctx *vdoa_context_create(struct vdoa_data *vdoa)
{
return NULL;
}
static inline int vdoa_context_configure(struct vdoa_ctx *ctx,
unsigned int width,
unsigned int height,
u32 pixelformat)
{
return 0;
}
static inline void vdoa_context_destroy(struct vdoa_ctx *ctx) { };
static inline void vdoa_device_run(struct vdoa_ctx *ctx,
dma_addr_t dst, dma_addr_t src) { };
static inline int vdoa_wait_for_completion(struct vdoa_ctx *ctx)
{
return 0;
};
#endif
#endif /* IMX_VDOA_H */
|