1 /***************************************************************************
2 * Copyright (C) 2006-2010 by Marin Mitov *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 /* DT3155 header file */
27 #include <linux/pci.h>
28 #include <linux/interrupt.h>
30 #define DT3155_NAME "dt3155"
31 #define DT3155_VER_MAJ 1
32 #define DT3155_VER_MIN 1
33 #define DT3155_VER_EXT 0
34 #define DT3155_VERSION __stringify(DT3155_VER_MAJ) "." \
35 __stringify(DT3155_VER_MIN) "." \
36 __stringify(DT3155_VER_EXT)
38 /* DT3155 Base Register offsets (memory mapped) */
39 #define EVEN_DMA_START 0x00
40 #define ODD_DMA_START 0x0C
41 #define EVEN_DMA_STRIDE 0x18
42 #define ODD_DMA_STRIDE 0x24
43 #define EVEN_PIXEL_FMT 0x30
44 #define ODD_PIXEL_FMT 0x34
45 #define FIFO_TRIGER 0x38
46 #define XFER_MODE 0x3C
48 #define RETRY_WAIT_CNT 0x44
50 #define EVEN_FLD_MASK 0x4C
51 #define ODD_FLD_MASK 0x50
52 #define MASK_LENGTH 0x54
53 #define FIFO_FLAG_CNT 0x58
54 #define IIC_CLK_DUR 0x5C
58 /* DT3155 Internal Registers indexes (i2c/IIC mapped) */
64 #define X_CLIP_START 0x20
65 #define Y_CLIP_START 0x22
66 #define X_CLIP_END 0x24
67 #define Y_CLIP_END 0x26
72 #define PM_LUT_ADDR 0x50
73 #define PM_LUT_DATA 0x51
75 /* AD command register values */
76 #define AD_CMD_REG 0x00
77 #define AD_POS_REF 0x01
78 #define AD_NEG_REF 0x02
81 #define CRPT_DIS 0x00004000
82 #define FLD_CRPT_ODD 0x00000200
83 #define FLD_CRPT_EVEN 0x00000100
84 #define FIFO_EN 0x00000080
85 #define SRST 0x00000040
86 #define FLD_DN_ODD 0x00000020
87 #define FLD_DN_EVEN 0x00000010
88 /* These should not be used.
89 * Use CAP_CONT_ODD/EVEN instead
90 #define CAP_SNGL_ODD 0x00000008
91 #define CAP_SNGL_EVEN 0x00000004
93 #define CAP_CONT_ODD 0x00000002
94 #define CAP_CONT_EVEN 0x00000001
96 /* INT_CSR bit masks */
97 #define FLD_START_EN 0x00000400
98 #define FLD_END_ODD_EN 0x00000200
99 #define FLD_END_EVEN_EN 0x00000100
100 #define FLD_START 0x00000004
101 #define FLD_END_ODD 0x00000002
102 #define FLD_END_EVEN 0x00000001
104 /* IIC_CSR1 bit masks */
105 #define DIRECT_ABORT 0x00000200
107 /* IIC_CSR2 bit masks */
108 #define NEW_CYCLE 0x01000000
109 #define DIR_RD 0x00010000
110 #define IIC_READ 0x01010000
111 #define IIC_WRITE 0x01000000
114 #define DISP_PASS 0x40
115 #define BUSY_ODD 0x20
116 #define BUSY_EVEN 0x10
117 #define SYNC_PRESENT 0x08
119 #define SYNC_SNTL 0x02
120 #define CHROM_FILT 0x01
123 /* CSR_EVEN/ODD bit masks */
124 #define CSR_ERROR 0x04
125 #define CSR_SNGL 0x02
126 #define CSR_DONE 0x01
128 /* CONFIG bit masks */
129 #define PM_LUT_PGM 0x80
130 #define PM_LUT_SEL 0x40
132 #define HSCALE_EN 0x10
133 #define EXT_TRIG_UP 0x0C
134 #define EXT_TRIG_DOWN 0x04
135 #define ACQ_MODE_NEXT 0x02
136 #define ACQ_MODE_ODD 0x01
137 #define ACQ_MODE_EVEN 0x00
139 /* AD_CMD bit masks */
140 #define VIDEO_CNL_1 0x00
141 #define VIDEO_CNL_2 0x40
142 #define VIDEO_CNL_3 0x80
143 #define VIDEO_CNL_4 0xC0
144 #define SYNC_CNL_1 0x00
145 #define SYNC_CNL_2 0x10
146 #define SYNC_CNL_3 0x20
147 #define SYNC_CNL_4 0x30
148 #define SYNC_LVL_1 0x00
149 #define SYNC_LVL_2 0x04
150 #define SYNC_LVL_3 0x08
151 #define SYNC_LVL_4 0x0C
153 /* DT3155 identificator */
154 #define DT3155_ID 0x20
156 #ifdef CONFIG_DT3155_CCIR
157 #define DMA_STRIDE 768
159 #define DMA_STRIDE 640
163 * struct dt3155_stats - statistics structure
165 * @free_bufs_empty: no free image buffers
166 * @corrupted_fields: corrupted fields
167 * @dma_map_failed: dma mapping failed
168 * @start_before_end: new started before old ended
170 struct dt3155_stats
{
172 int corrupted_fields
;
174 int start_before_end
;
177 /* per board private data structure */
179 * struct dt3155_priv - private data structure
181 * @vdev: pointer to video_device structure
182 * @pdev: pointer to pci_dev structure
183 * @q pointer to vb2_queue structure
184 * @curr_buf: pointer to curren buffer
185 * @mux: mutex to protect the instance
186 * @irq_handler: irq handler for the driver
187 * @dmaq queue for dma buffers
188 * @lock spinlock for dma queue
189 * @field_count fields counter
190 * @stats: statistics structure
192 * @regs: local copy of mmio base register
193 * @csr2: local copy of csr2 register
194 * @config: local copy of config register
197 struct video_device
*vdev
;
198 struct pci_dev
*pdev
;
200 struct vb2_buffer
*curr_buf
;
202 irq_handler_t irq_handler
;
203 struct list_head dmaq
;
205 unsigned int field_count
;
206 struct dt3155_stats stats
;
212 #endif /* __KERNEL__ */
214 #endif /* _DT3155_H_ */