]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/media/pci/cx25821/cx25821.h
[media] cx25821: setup output nodes correctly
[karo-tx-linux.git] / drivers / media / pci / cx25821 / cx25821.h
1 /*
2  *  Driver for the Conexant CX25821 PCIe bridge
3  *
4  *  Copyright (C) 2009 Conexant Systems Inc.
5  *  Authors  <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
6  *  Based on Steven Toth <stoth@linuxtv.org> cx23885 driver
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #ifndef CX25821_H_
25 #define CX25821_H_
26
27 #include <linux/pci.h>
28 #include <linux/i2c.h>
29 #include <linux/interrupt.h>
30 #include <linux/delay.h>
31 #include <linux/sched.h>
32 #include <linux/kdev_t.h>
33
34 #include <media/v4l2-common.h>
35 #include <media/v4l2-device.h>
36 #include <media/v4l2-ctrls.h>
37 #include <media/videobuf-dma-sg.h>
38
39 #include "btcx-risc.h"
40 #include "cx25821-reg.h"
41 #include "cx25821-medusa-reg.h"
42 #include "cx25821-sram.h"
43 #include "cx25821-audio.h"
44
45 #include <linux/version.h>
46 #include <linux/mutex.h>
47
48 #define CX25821_VERSION_CODE KERNEL_VERSION(0, 0, 106)
49
50 #define UNSET (-1U)
51 #define NO_SYNC_LINE (-1U)
52
53 #define CX25821_MAXBOARDS 2
54
55 #define LINE_SIZE_D1    1440
56
57 /* Number of decoders and encoders */
58 #define MAX_DECODERS            8
59 #define MAX_ENCODERS            2
60 #define QUAD_DECODERS           4
61 #define MAX_CAMERAS             16
62
63 /* Max number of inputs by card */
64 #define MAX_CX25821_INPUT     8
65 #define RESOURCE_VIDEO0       1
66 #define RESOURCE_VIDEO1       2
67 #define RESOURCE_VIDEO2       4
68 #define RESOURCE_VIDEO3       8
69 #define RESOURCE_VIDEO4       16
70 #define RESOURCE_VIDEO5       32
71 #define RESOURCE_VIDEO6       64
72 #define RESOURCE_VIDEO7       128
73 #define RESOURCE_VIDEO8       256
74 #define RESOURCE_VIDEO9       512
75 #define RESOURCE_VIDEO10      1024
76 #define RESOURCE_VIDEO11      2048
77
78 #define BUFFER_TIMEOUT     (HZ) /* 0.5 seconds */
79
80 #define UNKNOWN_BOARD        0
81 #define CX25821_BOARD        1
82
83 /* Currently supported by the driver */
84 #define CX25821_NORMS (\
85         V4L2_STD_NTSC_M |  V4L2_STD_NTSC_M_JP | V4L2_STD_NTSC_M_KR | \
86         V4L2_STD_PAL_BG |  V4L2_STD_PAL_DK    |  V4L2_STD_PAL_I    | \
87         V4L2_STD_PAL_M  |  V4L2_STD_PAL_N     |  V4L2_STD_PAL_H    | \
88         V4L2_STD_PAL_Nc)
89
90 #define CX25821_BOARD_CONEXANT_ATHENA10 1
91 #define MAX_VID_CHANNEL_NUM     12
92 #define VID_CHANNEL_NUM 8
93
94 struct cx25821_fmt {
95         char *name;
96         u32 fourcc;             /* v4l2 format id */
97         int depth;
98         int flags;
99         u32 cxformat;
100 };
101
102 struct cx25821_tvnorm {
103         char *name;
104         v4l2_std_id id;
105         u32 cxiformat;
106         u32 cxoformat;
107 };
108
109 enum cx25821_src_sel_type {
110         CX25821_SRC_SEL_EXT_656_VIDEO = 0,
111         CX25821_SRC_SEL_PARALLEL_MPEG_VIDEO
112 };
113
114 /* buffer for one video frame */
115 struct cx25821_buffer {
116         /* common v4l buffer stuff -- must be first */
117         struct videobuf_buffer vb;
118
119         /* cx25821 specific */
120         unsigned int bpl;
121         struct btcx_riscmem risc;
122         const struct cx25821_fmt *fmt;
123         u32 count;
124 };
125
126 enum port {
127         CX25821_UNDEFINED = 0,
128         CX25821_RAW,
129         CX25821_264
130 };
131
132 struct cx25821_board {
133         const char *name;
134         enum port porta;
135         enum port portb;
136         enum port portc;
137
138         u32 clk_freq;
139 };
140
141 struct cx25821_i2c {
142         struct cx25821_dev *dev;
143
144         int nr;
145
146         /* i2c i/o */
147         struct i2c_adapter i2c_adap;
148         struct i2c_client i2c_client;
149         u32 i2c_rc;
150
151         /* cx25821 registers used for raw addess */
152         u32 i2c_period;
153         u32 reg_ctrl;
154         u32 reg_stat;
155         u32 reg_addr;
156         u32 reg_rdata;
157         u32 reg_wdata;
158 };
159
160 struct cx25821_dmaqueue {
161         struct list_head active;
162         struct list_head queued;
163         struct timer_list timeout;
164         struct btcx_riscmem stopper;
165         u32 count;
166 };
167
168 struct cx25821_data {
169         struct cx25821_dev *dev;
170         const struct sram_channel *channel;
171 };
172
173 struct cx25821_dev;
174
175 struct cx25821_channel {
176         unsigned id;
177         struct cx25821_dev *dev;
178         struct v4l2_fh *streaming_fh;
179
180         struct v4l2_ctrl_handler hdl;
181         struct cx25821_data timeout_data;
182
183         struct video_device vdev;
184         struct cx25821_dmaqueue dma_vidq;
185         struct videobuf_queue vidq;
186
187         const struct sram_channel *sram_channels;
188
189         const struct cx25821_fmt *fmt;
190         unsigned int width, height;
191         int pixel_formats;
192         int use_cif_resolution;
193         int cif_width;
194 };
195
196 struct snd_card;
197
198 struct cx25821_dev {
199         struct v4l2_device v4l2_dev;
200
201         /* pci stuff */
202         struct pci_dev *pci;
203         unsigned char pci_rev, pci_lat;
204         int pci_bus, pci_slot;
205         u32 base_io_addr;
206         u32 __iomem *lmmio;
207         u8 __iomem *bmmio;
208         int pci_irqmask;
209         int hwrevision;
210         /* used by cx25821-alsa */
211         struct snd_card *card;
212
213         u32 clk_freq;
214
215         /* I2C adapters: Master 1 & 2 (External) & Master 3 (Internal only) */
216         struct cx25821_i2c i2c_bus[3];
217
218         int nr;
219         struct mutex lock;
220
221         struct cx25821_channel channels[MAX_VID_CHANNEL_NUM];
222
223         /* board details */
224         unsigned int board;
225         char name[32];
226
227         /* Analog video */
228         unsigned int input;
229         v4l2_std_id tvnorm;
230         unsigned short _max_num_decoders;
231
232         /* Analog Audio Upstream */
233         int _audio_is_running;
234         int _audiopixel_format;
235         int _is_first_audio_frame;
236         int _audiofile_status;
237         int _audio_lines_count;
238         int _audioframe_count;
239         int _audio_upstream_channel;
240         int _last_index_irq;    /* The last interrupt index processed. */
241
242         __le32 *_risc_audio_jmp_addr;
243         __le32 *_risc_virt_start_addr;
244         __le32 *_risc_virt_addr;
245         dma_addr_t _risc_phys_addr;
246         dma_addr_t _risc_phys_start_addr;
247
248         unsigned int _audiorisc_size;
249         unsigned int _audiodata_buf_size;
250         __le32 *_audiodata_buf_virt_addr;
251         dma_addr_t _audiodata_buf_phys_addr;
252         char *_audiofilename;
253
254         /* V4l */
255         spinlock_t slock;
256
257         /* Video Upstream */
258         int _line_size;
259         int _prog_cnt;
260         int _pixel_format;
261         int _is_first_frame;
262         int _is_running;
263         int _file_status;
264         int _lines_count;
265         int _frame_count;
266         int _channel_upstream_select;
267         unsigned int _risc_size;
268
269         __le32 *_dma_virt_start_addr;
270         __le32 *_dma_virt_addr;
271         dma_addr_t _dma_phys_addr;
272         dma_addr_t _dma_phys_start_addr;
273
274         unsigned int _data_buf_size;
275         __le32 *_data_buf_virt_addr;
276         dma_addr_t _data_buf_phys_addr;
277         char *_filename;
278         char *_defaultname;
279
280         int _line_size_ch2;
281         int _prog_cnt_ch2;
282         int _pixel_format_ch2;
283         int _is_first_frame_ch2;
284         int _is_running_ch2;
285         int _file_status_ch2;
286         int _lines_count_ch2;
287         int _frame_count_ch2;
288         int _channel2_upstream_select;
289         unsigned int _risc_size_ch2;
290
291         __le32 *_dma_virt_start_addr_ch2;
292         __le32 *_dma_virt_addr_ch2;
293         dma_addr_t _dma_phys_addr_ch2;
294         dma_addr_t _dma_phys_start_addr_ch2;
295
296         unsigned int _data_buf_size_ch2;
297         __le32 *_data_buf_virt_addr_ch2;
298         dma_addr_t _data_buf_phys_addr_ch2;
299         char *_filename_ch2;
300         char *_defaultname_ch2;
301
302         u32 upstream_riscbuf_size;
303         u32 upstream_databuf_size;
304         u32 upstream_riscbuf_size_ch2;
305         u32 upstream_databuf_size_ch2;
306         u32 audio_upstream_riscbuf_size;
307         u32 audio_upstream_databuf_size;
308         int _isNTSC;
309         int _frame_index;
310         int _audioframe_index;
311         struct workqueue_struct *_irq_queues;
312         struct work_struct _irq_work_entry;
313         struct workqueue_struct *_irq_queues_ch2;
314         struct work_struct _irq_work_entry_ch2;
315         struct workqueue_struct *_irq_audio_queues;
316         struct work_struct _audio_work_entry;
317         char *input_filename;
318         char *input_filename_ch2;
319         int _frame_index_ch2;
320         int _isNTSC_ch2;
321         char *vid_stdname_ch2;
322         int pixel_format_ch2;
323         int channel_select_ch2;
324         int command_ch2;
325         char *input_audiofilename;
326         char *vid_stdname;
327         int pixel_format;
328         int channel_select;
329         int command;
330 };
331
332 static inline struct cx25821_dev *get_cx25821(struct v4l2_device *v4l2_dev)
333 {
334         return container_of(v4l2_dev, struct cx25821_dev, v4l2_dev);
335 }
336
337 extern struct cx25821_board cx25821_boards[];
338
339 #define SRAM_CH00  0            /* Video A */
340 #define SRAM_CH01  1            /* Video B */
341 #define SRAM_CH02  2            /* Video C */
342 #define SRAM_CH03  3            /* Video D */
343 #define SRAM_CH04  4            /* Video E */
344 #define SRAM_CH05  5            /* Video F */
345 #define SRAM_CH06  6            /* Video G */
346 #define SRAM_CH07  7            /* Video H */
347
348 #define SRAM_CH08  8            /* Audio A */
349 #define SRAM_CH09  9            /* Video Upstream I */
350 #define SRAM_CH10  10           /* Video Upstream J */
351 #define SRAM_CH11  11           /* Audio Upstream AUD_CHANNEL_B */
352
353 #define VID_UPSTREAM_SRAM_CHANNEL_I     SRAM_CH09
354 #define VID_UPSTREAM_SRAM_CHANNEL_J     SRAM_CH10
355 #define AUDIO_UPSTREAM_SRAM_CHANNEL_B   SRAM_CH11
356
357 struct sram_channel {
358         char *name;
359         u32 i;
360         u32 cmds_start;
361         u32 ctrl_start;
362         u32 cdt;
363         u32 fifo_start;
364         u32 fifo_size;
365         u32 ptr1_reg;
366         u32 ptr2_reg;
367         u32 cnt1_reg;
368         u32 cnt2_reg;
369         u32 int_msk;
370         u32 int_stat;
371         u32 int_mstat;
372         u32 dma_ctl;
373         u32 gpcnt_ctl;
374         u32 gpcnt;
375         u32 aud_length;
376         u32 aud_cfg;
377         u32 fld_aud_fifo_en;
378         u32 fld_aud_risc_en;
379
380         /* For Upstream Video */
381         u32 vid_fmt_ctl;
382         u32 vid_active_ctl1;
383         u32 vid_active_ctl2;
384         u32 vid_cdt_size;
385
386         u32 vip_ctl;
387         u32 pix_frmt;
388         u32 jumponly;
389         u32 irq_bit;
390 };
391
392 extern const struct sram_channel cx25821_sram_channels[];
393
394 #define cx_read(reg)             readl(dev->lmmio + ((reg)>>2))
395 #define cx_write(reg, value)     writel((value), dev->lmmio + ((reg)>>2))
396
397 #define cx_andor(reg, mask, value) \
398         writel((readl(dev->lmmio+((reg)>>2)) & ~(mask)) |\
399         ((value) & (mask)), dev->lmmio+((reg)>>2))
400
401 #define cx_set(reg, bit)          cx_andor((reg), (bit), (bit))
402 #define cx_clear(reg, bit)        cx_andor((reg), (bit), 0)
403
404 #define Set_GPIO_Bit(Bit)                       (1 << Bit)
405 #define Clear_GPIO_Bit(Bit)                     (~(1 << Bit))
406
407 #define CX25821_ERR(fmt, args...)                       \
408         pr_err("(%d): " fmt, dev->board, ##args)
409 #define CX25821_WARN(fmt, args...)                      \
410         pr_warn("(%d): " fmt, dev->board, ##args)
411 #define CX25821_INFO(fmt, args...)                      \
412         pr_info("(%d): " fmt, dev->board, ##args)
413
414 extern int cx25821_i2c_register(struct cx25821_i2c *bus);
415 extern int cx25821_i2c_read(struct cx25821_i2c *bus, u16 reg_addr, int *value);
416 extern int cx25821_i2c_write(struct cx25821_i2c *bus, u16 reg_addr, int value);
417 extern int cx25821_i2c_unregister(struct cx25821_i2c *bus);
418 extern void cx25821_gpio_init(struct cx25821_dev *dev);
419 extern void cx25821_set_gpiopin_direction(struct cx25821_dev *dev,
420                                           int pin_number, int pin_logic_value);
421
422 extern int medusa_video_init(struct cx25821_dev *dev);
423 extern int medusa_set_videostandard(struct cx25821_dev *dev);
424 extern void medusa_set_resolution(struct cx25821_dev *dev, int width,
425                                   int decoder_select);
426 extern int medusa_set_brightness(struct cx25821_dev *dev, int brightness,
427                                  int decoder);
428 extern int medusa_set_contrast(struct cx25821_dev *dev, int contrast,
429                                int decoder);
430 extern int medusa_set_hue(struct cx25821_dev *dev, int hue, int decoder);
431 extern int medusa_set_saturation(struct cx25821_dev *dev, int saturation,
432                                  int decoder);
433
434 extern int cx25821_sram_channel_setup(struct cx25821_dev *dev,
435                                       const struct sram_channel *ch, unsigned int bpl,
436                                       u32 risc);
437
438 extern int cx25821_risc_buffer(struct pci_dev *pci, struct btcx_riscmem *risc,
439                                struct scatterlist *sglist,
440                                unsigned int top_offset,
441                                unsigned int bottom_offset,
442                                unsigned int bpl,
443                                unsigned int padding, unsigned int lines);
444 extern int cx25821_risc_databuffer_audio(struct pci_dev *pci,
445                                          struct btcx_riscmem *risc,
446                                          struct scatterlist *sglist,
447                                          unsigned int bpl,
448                                          unsigned int lines, unsigned int lpi);
449 extern void cx25821_free_buffer(struct videobuf_queue *q,
450                                 struct cx25821_buffer *buf);
451 extern int cx25821_risc_stopper(struct pci_dev *pci, struct btcx_riscmem *risc,
452                                 u32 reg, u32 mask, u32 value);
453 extern void cx25821_sram_channel_dump(struct cx25821_dev *dev,
454                                       const struct sram_channel *ch);
455 extern void cx25821_sram_channel_dump_audio(struct cx25821_dev *dev,
456                                             const struct sram_channel *ch);
457
458 extern struct cx25821_dev *cx25821_dev_get(struct pci_dev *pci);
459 extern void cx25821_print_irqbits(char *name, char *tag, char **strings,
460                                   int len, u32 bits, u32 mask);
461 extern void cx25821_dev_unregister(struct cx25821_dev *dev);
462 extern int cx25821_sram_channel_setup_audio(struct cx25821_dev *dev,
463                                             const struct sram_channel *ch,
464                                             unsigned int bpl, u32 risc);
465
466 extern int cx25821_vidupstream_init_ch1(struct cx25821_dev *dev,
467                                         int channel_select, int pixel_format);
468 extern int cx25821_vidupstream_init_ch2(struct cx25821_dev *dev,
469                                         int channel_select, int pixel_format);
470 extern int cx25821_audio_upstream_init(struct cx25821_dev *dev,
471                                        int channel_select);
472 extern void cx25821_free_mem_upstream_ch1(struct cx25821_dev *dev);
473 extern void cx25821_free_mem_upstream_ch2(struct cx25821_dev *dev);
474 extern void cx25821_free_mem_upstream_audio(struct cx25821_dev *dev);
475 extern void cx25821_stop_upstream_video_ch1(struct cx25821_dev *dev);
476 extern void cx25821_stop_upstream_video_ch2(struct cx25821_dev *dev);
477 extern void cx25821_stop_upstream_audio(struct cx25821_dev *dev);
478 extern int cx25821_sram_channel_setup_upstream(struct cx25821_dev *dev,
479                                                const struct sram_channel *ch,
480                                                unsigned int bpl, u32 risc);
481 extern void cx25821_set_pixel_format(struct cx25821_dev *dev, int channel,
482                                      u32 format);
483
484 #endif