forked from patjak/facetimehd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fthd_buffer.h
73 lines (65 loc) · 1.57 KB
/
fthd_buffer.h
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
/*
* SPDX-License-Identifier: GPL-2.0-only
*
* FacetimeHD camera driver
*
* Copyright (C) 2015 Sven Schnelle <[email protected]>
*
*/
#ifndef FTHD_BUFFER_H
#define FTHD_BUFFER_H
#include <linux/scatterlist.h>
#include "fthd_buffer.h"
enum fthd_buffer_state {
BUF_FREE,
BUF_ALLOC,
BUF_DRV_QUEUED,
BUF_HW_QUEUED,
};
struct dma_descriptor {
u32 addr0;
u32 addr1;
u32 addr2;
u32 field_c;
u32 field_10;
u32 field_14;
u32 count;
u32 pool;
u64 tag;
} __attribute__((packed));
struct dma_descriptor_list {
u32 field0;
u32 count;
struct dma_descriptor desc[4];
char unknown[216];
} __attribute__((packed));
struct iommu_obj {
struct resource base;
int size;
int offset;
};
struct fthd_plane {
u8 *virt;
u64 phys;
dma_addr_t dma;
int len;
struct iommu_obj *iommu;
};
struct h2t_buf_ctx {
enum fthd_buffer_state state;
struct vb2_buffer *vb;
struct iommu_obj *plane[4];
struct isp_mem_obj *dma_desc_obj;
struct dma_descriptor_list dma_desc_list;
/* waitqueue for signaling buffer completion */
wait_queue_head_t wq;
int done;
};
extern int setup_buffers(struct fthd_private *dev_priv);
extern int fthd_buffer_init(struct fthd_private *dev_priv);
extern void fthd_buffer_exit(struct fthd_private *dev_priv);
extern void fthd_buffer_return_handler(struct fthd_private *dev_priv, u32 offset, int size);
extern void fthd_buffer_queued_handler(struct fthd_private *dev_priv, u32 offset);
extern struct iommu_obj *iommu_allocate_sgtable(struct fthd_private *dev_priv, struct sg_table *);
extern void iommu_free(struct fthd_private *dev_priv, struct iommu_obj *obj);
#endif