forked from patjak/facetimehd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfthd_buffer.h
83 lines (75 loc) · 2.11 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
74
75
76
77
78
79
80
81
82
83
/*
* Broadcom PCIe 1570 webcam driver
*
* Copyright (C) 2015 Sven Schnelle <[email protected]>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation.
*
*/
#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