1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 bttv - Bt848 frame grabber driver
6 bttv's *private* header file -- nobody other than bttv itself
7 should ever include this file.
9 (c) 2000-2002 Gerd Knorr <kraxel@bytesex.org>
16 #include <linux/types.h>
17 #include <linux/wait.h>
18 #include <linux/i2c.h>
19 #include <linux/i2c-algo-bit.h>
20 #include <linux/pci.h>
21 #include <linux/input.h>
22 #include <linux/mutex.h>
23 #include <linux/scatterlist.h>
24 #include <linux/device.h>
26 #include <media/v4l2-common.h>
27 #include <media/v4l2-ctrls.h>
28 #include <media/v4l2-fh.h>
29 #include <media/videobuf2-dma-sg.h>
30 #include <media/tveeprom.h>
31 #include <media/rc-core.h>
32 #include <media/i2c/ir-kbd-i2c.h>
33 #include <media/drv-intf/tea575x.h>
37 #include "btcx-risc.h"
41 #define FORMAT_FLAGS_DITHER 0x01
42 #define FORMAT_FLAGS_PACKED 0x02
43 #define FORMAT_FLAGS_PLANAR 0x04
44 #define FORMAT_FLAGS_RAW 0x08
45 #define FORMAT_FLAGS_CrCb 0x10
47 #define RISC_SLOT_O_VBI 4
48 #define RISC_SLOT_O_FIELD 6
49 #define RISC_SLOT_E_VBI 10
50 #define RISC_SLOT_E_FIELD 12
51 #define RISC_SLOT_LOOP 14
53 #define RESOURCE_VIDEO_STREAM 2
54 #define RESOURCE_VBI 4
55 #define RESOURCE_VIDEO_READ 8
62 /* Min. value in VDELAY register. */
64 /* Even to get Cb first, odd for Cr. */
65 #define MAX_HDELAY (0x3FF & -2)
66 /* Limits scaled width, which must be a multiple of 4. */
67 #define MAX_HACTIVE (0x3FF & -4)
70 V4L2_STD_PAL | V4L2_STD_PAL_N | \
71 V4L2_STD_PAL_Nc | V4L2_STD_SECAM | \
72 V4L2_STD_NTSC | V4L2_STD_PAL_M | \
74 /* ---------------------------------------------------------- */
80 u16 swidth
, sheight
; /* scaled standard width, height */
82 u8 adelay
, bdelay
, iform
;
84 u16 hdelayx1
, hactivex1
;
89 /* ITU-R frame line number of the first VBI line we can
90 capture, of the first and second field. The last possible line
91 is determined by cropcap.bounds. */
93 /* Horizontally this counts fCLKx1 samples following the leading
94 edge of the horizontal sync pulse, vertically ITU-R frame line
95 numbers of the first field times two (2, 4, 6, ... 524 or 624). */
96 struct v4l2_cropcap cropcap
;
98 extern const struct bttv_tvnorm bttv_tvnorms
[];
101 int fourcc
; /* video4linux 2 */
102 int btformat
; /* BT848_COLOR_FMT_* */
103 int btswap
; /* BT848_COLOR_CTL_* */
104 int depth
; /* bit/pixel */
106 int hshift
,vshift
; /* for planar modes */
112 struct timer_list timer
;
117 /* Usual gpio signalling */
127 bool rc5_gpio
; /* Is RC5 legacy GPIO enabled? */
128 u32 last_bit
; /* last raw bit seen */
129 u32 code
; /* raw code under construction */
130 ktime_t base_time
; /* time of last seen code */
131 bool active
; /* building raw code */
135 /* ---------------------------------------------------------- */
137 struct bttv_geometry
{
139 u16 width
,hscale
,hdelay
;
140 u16 sheight
,vscale
,vdelay
,vtotal
;
144 /* common v4l buffer stuff -- must be first */
145 struct vb2_v4l2_buffer vbuf
;
146 struct list_head list
;
151 struct bttv_geometry geo
;
152 struct btcx_riscmem top
;
153 struct btcx_riscmem bottom
;
156 struct bttv_buffer_set
{
157 struct bttv_buffer
*top
; /* top field buffer */
158 struct bttv_buffer
*bottom
; /* bottom field buffer */
159 unsigned int top_irq
;
160 unsigned int frame_irq
;
163 struct bttv_vbi_fmt
{
164 struct v4l2_vbi_format fmt
;
166 /* fmt.start[] and count[] refer to this video standard. */
167 const struct bttv_tvnorm
*tvnorm
;
169 /* Earliest possible start of video capturing with this
170 v4l2_vbi_format, in struct bttv_crop.rect units. */
175 extern const struct vb2_ops bttv_vbi_qops
;
177 void bttv_vbi_fmt_reset(struct bttv_vbi_fmt
*f
, unsigned int norm
);
180 /* A cropping rectangle in struct bttv_tvnorm.cropcap units. */
181 struct v4l2_rect rect
;
183 /* Scaled image size limits with this crop rect. Divide
184 max_height, but not min_height, by two when capturing
185 single fields. See also bttv_crop_reset() and
186 bttv_crop_adjust() in bttv-driver.c. */
187 __s32 min_scaled_width
;
188 __s32 min_scaled_height
;
189 __s32 max_scaled_width
;
190 __s32 max_scaled_height
;
193 /* ---------------------------------------------------------- */
196 /* risc code generators - capture */
197 int bttv_risc_packed(struct bttv
*btv
, struct btcx_riscmem
*risc
,
198 struct scatterlist
*sglist
,
199 unsigned int offset
, unsigned int bpl
,
200 unsigned int pitch
, unsigned int skip_lines
,
201 unsigned int store_lines
);
203 /* control dma register + risc main loop */
204 void bttv_set_dma(struct bttv
*btv
, int override
);
205 int bttv_risc_init_main(struct bttv
*btv
);
206 int bttv_risc_hook(struct bttv
*btv
, int slot
, struct btcx_riscmem
*risc
,
209 /* capture buffer handling */
210 int bttv_buffer_risc(struct bttv
*btv
, struct bttv_buffer
*buf
);
211 int bttv_buffer_activate_video(struct bttv
*btv
,
212 struct bttv_buffer_set
*set
);
213 int bttv_buffer_risc_vbi(struct bttv
*btv
, struct bttv_buffer
*buf
);
214 int bttv_buffer_activate_vbi(struct bttv
*btv
,
215 struct bttv_buffer
*vbi
);
217 /* ---------------------------------------------------------- */
221 * 2048 for compatibility with earlier driver versions. The driver really
222 * stores 1024 + tvnorm->vbipack * 4 samples per line in the buffer. Note
223 * tvnorm->vbipack is <= 0xFF (limit of VBIPACK_LO + HI is 0x1FF DWORDs) and
224 * VBI read()s store a frame counter in the last four bytes of the VBI image.
228 #define VBI_DEFLINES 16
230 int bttv_try_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*f
);
231 int bttv_g_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*f
);
232 int bttv_s_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*f
);
234 /* ---------------------------------------------------------- */
237 extern const struct bus_type bttv_sub_bus_type
;
238 int bttv_sub_add_device(struct bttv_core
*core
, char *name
);
239 int bttv_sub_del_devices(struct bttv_core
*core
);
241 /* ---------------------------------------------------------- */
244 extern void init_bttv_i2c_ir(struct bttv
*btv
);
246 /* ---------------------------------------------------------- */
248 extern int init_bttv_i2c(struct bttv
*btv
);
249 extern int fini_bttv_i2c(struct bttv
*btv
);
251 /* ---------------------------------------------------------- */
255 extern unsigned int bttv_verbose
;
256 extern unsigned int bttv_debug
;
257 extern unsigned int bttv_gpio
;
258 int check_alloc_btres_lock(struct bttv
*btv
, int bit
);
259 void free_btres_lock(struct bttv
*btv
, int bits
);
260 extern void bttv_gpio_tracking(struct bttv
*btv
, char *comment
);
262 #define dprintk(fmt, ...) \
264 if (bttv_debug >= 1) \
265 pr_debug(fmt, ##__VA_ARGS__); \
267 #define dprintk_cont(fmt, ...) \
269 if (bttv_debug >= 1) \
270 pr_cont(fmt, ##__VA_ARGS__); \
272 #define d2printk(fmt, ...) \
274 if (bttv_debug >= 2) \
275 printk(fmt, ##__VA_ARGS__); \
278 #define BTTV_MAX_FBUF 0x208000
279 #define BTTV_TIMEOUT msecs_to_jiffies(500) /* 0.5 seconds */
280 #define BTTV_FREE_IDLE msecs_to_jiffies(1000) /* one second */
283 struct bttv_pll_info
{
284 unsigned int pll_ifreq
; /* PLL input frequency */
285 unsigned int pll_ofreq
; /* PLL output frequency */
286 unsigned int pll_crystal
; /* Crystal used for input */
287 unsigned int pll_current
; /* Currently programmed ofreq */
290 /* for gpio-connected remote control */
292 struct input_dev
*dev
;
299 struct bttv_suspend_state
{
304 struct bttv_buffer_set video
;
305 struct bttv_buffer
*vbi
;
308 struct bttv_tea575x_gpio
{
309 u8 data
, clk
, wren
, most
;
315 /* pci device config */
317 unsigned char revision
;
318 unsigned char __iomem
*bt848_mmio
; /* pointer to mmio */
320 /* card configuration info */
321 unsigned int cardid
; /* pci subsystem id (bt878 based ones) */
322 unsigned int tuner_type
; /* tuner chip type */
323 unsigned int tda9887_conf
;
324 unsigned int svhs
, dig
;
325 unsigned int has_saa6588
:1;
326 struct bttv_pll_info pll
;
332 /* old gpio interface */
335 void (*volume_gpio
)(struct bttv
*btv
, __u16 volume
);
336 void (*audio_mode_gpio
)(struct bttv
*btv
, struct v4l2_tuner
*tuner
, int set
);
338 /* new gpio interface */
339 spinlock_t gpio_lock
;
342 struct i2c_algo_bit_data i2c_algo
;
343 struct i2c_client i2c_client
;
344 int i2c_state
, i2c_rc
;
346 wait_queue_head_t i2c_queue
;
347 struct v4l2_subdev
*sd_msp34xx
;
348 struct v4l2_subdev
*sd_tvaudio
;
349 struct v4l2_subdev
*sd_tda7432
;
351 /* video4linux (1) */
352 struct video_device video_dev
;
353 struct video_device radio_dev
;
354 struct video_device vbi_dev
;
357 struct v4l2_ctrl_handler ctrl_handler
;
358 struct v4l2_ctrl_handler radio_ctrl_handler
;
360 /* infrared remote */
362 struct bttv_ir
*remote
;
364 /* I2C remote data */
365 struct IR_i2c_init_data init_data
;
374 unsigned int audio_input
;
376 unsigned long tv_freq
;
379 int hue
, contrast
, bright
, saturation
;
380 struct v4l2_framebuffer fbuf
;
383 /* various options */
389 /* radio data/state */
393 int radio_uses_msp_demodulator
;
394 unsigned long radio_freq
;
396 /* miro/pinnacle + Aimslab VHX
397 philips matchbox (tea5757 radio tuner) support */
399 struct bttv_tea575x_gpio tea_gpio
;
400 struct snd_tea575x tea
;
402 /* ISA stuff (Terratec Active Radio Upgrade) */
407 /* switch status for multi-controller cards */
410 /* risc memory management data
411 - must acquire s_lock before changing these
412 - only the irq handler is supported to touch top + bottom + vcurr */
413 struct btcx_riscmem main
;
414 struct list_head capture
; /* video capture queue */
415 struct list_head vcapture
; /* vbi capture queue */
416 struct bttv_buffer_set curr
; /* active buffers */
417 struct bttv_buffer
*cvbi
; /* active vbi buffer */
421 unsigned long dma_on
;
422 struct timer_list timeout
;
423 struct bttv_suspend_state state
;
427 unsigned int framedrop
;
428 unsigned int irq_total
;
433 enum v4l2_buf_type type
;
435 enum v4l2_field field
;
439 struct vb2_queue capq
;
440 const struct bttv_format
*fmt
;
445 struct vb2_queue vbiq
;
446 struct bttv_vbi_fmt vbi_fmt
;
447 unsigned int vbi_count
[2];
449 /* Application called VIDIOC_S_SELECTION. */
452 /* used to make dvb-bt8xx autoloadable */
453 struct work_struct request_module_wk
;
455 /* Default (0) and current (1) video capturing
456 cropping parameters in bttv_tvnorm.cropcap units. Protected
458 struct bttv_crop crop
[2];
460 /* Earliest possible start of video capturing in
461 bttv_tvnorm.cropcap line units. Set by check_alloc_btres()
462 and free_btres(). Protected by bttv.lock. */
465 /* Latest possible end of VBI capturing (= crop[x].rect.top when
466 VIDEO_RESOURCES are locked). Set by check_alloc_btres()
467 and free_btres(). Protected by bttv.lock. */
471 static inline struct bttv
*to_bttv(struct v4l2_device
*v4l2_dev
)
473 return container_of(v4l2_dev
, struct bttv
, c
.v4l2_dev
);
478 extern unsigned int bttv_num
;
479 extern struct bttv
*bttvs
[BTTV_MAX
];
481 static inline unsigned int bttv_muxsel(const struct bttv
*btv
,
484 return (bttv_tvcards
[btv
->c
.type
].muxsel
>> (input
* 2)) & 3;
489 void init_irqreg(struct bttv
*btv
);
491 #define btwrite(dat,adr) writel((dat), btv->bt848_mmio+(adr))
492 #define btread(adr) readl(btv->bt848_mmio+(adr))
494 #define btand(dat,adr) btwrite((dat) & btread(adr), adr)
495 #define btor(dat,adr) btwrite((dat) | btread(adr), adr)
496 #define btaor(dat,mask,adr) btwrite((dat) | ((mask) & btread(adr)), adr)
498 #endif /* _BTTVP_H_ */