diff options
author | James Bottomley <jejb@titanic.(none)> | 2005-11-10 09:29:07 -0500 |
---|---|---|
committer | James Bottomley <jejb@titanic.(none)> | 2005-11-10 09:29:07 -0500 |
commit | 8a87a0b6313109d2fea87b1271d497c954ce2ca8 (patch) | |
tree | 1b7ae51ff681e27118590e9cab4bf0ce38f5d80e /drivers/media/video/saa7134/saa7134.h | |
parent | e6a04466ba965875a6132700fabb2f2c0249c41a (diff) | |
parent | 3b44f137b9a846c5452d9e6e1271b79b1dbcc942 (diff) |
Merge by hand (whitespace conflicts in libata.h)
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/media/video/saa7134/saa7134.h')
-rw-r--r-- | drivers/media/video/saa7134/saa7134.h | 62 |
1 files changed, 50 insertions, 12 deletions
diff --git a/drivers/media/video/saa7134/saa7134.h b/drivers/media/video/saa7134/saa7134.h index 860b89530e2a..fb9727471661 100644 --- a/drivers/media/video/saa7134/saa7134.h +++ b/drivers/media/video/saa7134/saa7134.h | |||
@@ -24,16 +24,18 @@ | |||
24 | 24 | ||
25 | #include <linux/pci.h> | 25 | #include <linux/pci.h> |
26 | #include <linux/i2c.h> | 26 | #include <linux/i2c.h> |
27 | #include <linux/videodev.h> | 27 | #include <linux/videodev2.h> |
28 | #include <linux/kdev_t.h> | 28 | #include <linux/kdev_t.h> |
29 | #include <linux/input.h> | 29 | #include <linux/input.h> |
30 | #include <linux/notifier.h> | ||
31 | #include <linux/delay.h> | ||
30 | 32 | ||
31 | #include <asm/io.h> | 33 | #include <asm/io.h> |
32 | 34 | ||
33 | #include <media/tuner.h> | 35 | #include <media/tuner.h> |
34 | #include <media/audiochip.h> | 36 | #include <media/audiochip.h> |
35 | #include <media/id.h> | ||
36 | #include <media/ir-common.h> | 37 | #include <media/ir-common.h> |
38 | #include <media/ir-kbd-i2c.h> | ||
37 | #include <media/video-buf.h> | 39 | #include <media/video-buf.h> |
38 | #include <media/video-buf-dvb.h> | 40 | #include <media/video-buf-dvb.h> |
39 | 41 | ||
@@ -45,6 +47,10 @@ | |||
45 | #endif | 47 | #endif |
46 | #define UNSET (-1U) | 48 | #define UNSET (-1U) |
47 | 49 | ||
50 | #include <sound/driver.h> | ||
51 | #include <sound/core.h> | ||
52 | #include <sound/pcm.h> | ||
53 | |||
48 | /* ----------------------------------------------------------- */ | 54 | /* ----------------------------------------------------------- */ |
49 | /* enums */ | 55 | /* enums */ |
50 | 56 | ||
@@ -187,10 +193,39 @@ struct saa7134_format { | |||
187 | #define SAA7134_BOARD_FLYTV_DIGIMATRIX 64 | 193 | #define SAA7134_BOARD_FLYTV_DIGIMATRIX 64 |
188 | #define SAA7134_BOARD_KWORLD_TERMINATOR 65 | 194 | #define SAA7134_BOARD_KWORLD_TERMINATOR 65 |
189 | #define SAA7134_BOARD_YUAN_TUN900 66 | 195 | #define SAA7134_BOARD_YUAN_TUN900 66 |
196 | #define SAA7134_BOARD_BEHOLD_409FM 67 | ||
197 | #define SAA7134_BOARD_GOTVIEW_7135 68 | ||
198 | #define SAA7134_BOARD_PHILIPS_EUROPA 69 | ||
199 | #define SAA7134_BOARD_VIDEOMATE_DVBT_300 70 | ||
200 | #define SAA7134_BOARD_VIDEOMATE_DVBT_200 71 | ||
201 | #define SAA7134_BOARD_RTD_VFG7350 72 | ||
202 | #define SAA7134_BOARD_RTD_VFG7330 73 | ||
203 | #define SAA7134_BOARD_FLYTVPLATINUM_MINI2 74 | ||
204 | #define SAA7134_BOARD_AVERMEDIA_AVERTVHD_A180 75 | ||
205 | #define SAA7134_BOARD_MONSTERTV_MOBILE 76 | ||
206 | #define SAA7134_BOARD_PINNACLE_PCTV_110i 77 | ||
207 | #define SAA7134_BOARD_ASUSTeK_P7131_DUAL 78 | ||
208 | #define SAA7134_BOARD_SEDNA_PC_TV_CARDBUS 79 | ||
209 | #define SAA7134_BOARD_ASUSTEK_DIGIMATRIX_TV 80 | ||
210 | #define SAA7134_BOARD_PHILIPS_TIGER 81 | ||
190 | 211 | ||
191 | #define SAA7134_MAXBOARDS 8 | 212 | #define SAA7134_MAXBOARDS 8 |
192 | #define SAA7134_INPUT_MAX 8 | 213 | #define SAA7134_INPUT_MAX 8 |
193 | 214 | ||
215 | /* ----------------------------------------------------------- */ | ||
216 | /* Since we support 2 remote types, lets tell them apart */ | ||
217 | |||
218 | #define SAA7134_REMOTE_GPIO 1 | ||
219 | #define SAA7134_REMOTE_I2C 2 | ||
220 | |||
221 | /* ----------------------------------------------------------- */ | ||
222 | /* Video Output Port Register Initialization Options */ | ||
223 | |||
224 | #define SET_T_CODE_POLARITY_NON_INVERTED (1 << 0) | ||
225 | #define SET_CLOCK_NOT_DELAYED (1 << 1) | ||
226 | #define SET_CLOCK_INVERTED (1 << 2) | ||
227 | #define SET_VSYNC_OFF (1 << 3) | ||
228 | |||
194 | struct saa7134_input { | 229 | struct saa7134_input { |
195 | char *name; | 230 | char *name; |
196 | unsigned int vmux; | 231 | unsigned int vmux; |
@@ -226,6 +261,7 @@ struct saa7134_board { | |||
226 | /* peripheral I/O */ | 261 | /* peripheral I/O */ |
227 | enum saa7134_video_out video_out; | 262 | enum saa7134_video_out video_out; |
228 | enum saa7134_mpeg_type mpeg; | 263 | enum saa7134_mpeg_type mpeg; |
264 | unsigned int vid_port_opts; | ||
229 | }; | 265 | }; |
230 | 266 | ||
231 | #define card_has_radio(dev) (NULL != saa7134_boards[dev->board].radio.name) | 267 | #define card_has_radio(dev) (NULL != saa7134_boards[dev->board].radio.name) |
@@ -319,9 +355,9 @@ struct saa7134_fh { | |||
319 | struct saa7134_pgtable pt_vbi; | 355 | struct saa7134_pgtable pt_vbi; |
320 | }; | 356 | }; |
321 | 357 | ||
322 | /* oss dsp status */ | 358 | /* dmasound dsp status */ |
323 | struct saa7134_oss { | 359 | struct saa7134_dmasound { |
324 | struct semaphore lock; | 360 | struct semaphore lock; |
325 | int minor_mixer; | 361 | int minor_mixer; |
326 | int minor_dsp; | 362 | int minor_dsp; |
327 | unsigned int users_dsp; | 363 | unsigned int users_dsp; |
@@ -347,6 +383,7 @@ struct saa7134_oss { | |||
347 | unsigned int dma_blk; | 383 | unsigned int dma_blk; |
348 | unsigned int read_offset; | 384 | unsigned int read_offset; |
349 | unsigned int read_count; | 385 | unsigned int read_count; |
386 | snd_pcm_substream_t *substream; | ||
350 | }; | 387 | }; |
351 | 388 | ||
352 | /* IR input */ | 389 | /* IR input */ |
@@ -358,9 +395,9 @@ struct saa7134_ir { | |||
358 | u32 mask_keycode; | 395 | u32 mask_keycode; |
359 | u32 mask_keydown; | 396 | u32 mask_keydown; |
360 | u32 mask_keyup; | 397 | u32 mask_keyup; |
361 | int polling; | 398 | int polling; |
362 | u32 last_gpio; | 399 | u32 last_gpio; |
363 | struct timer_list timer; | 400 | struct timer_list timer; |
364 | }; | 401 | }; |
365 | 402 | ||
366 | /* ts/mpeg status */ | 403 | /* ts/mpeg status */ |
@@ -383,8 +420,8 @@ struct saa7134_mpeg_ops { | |||
383 | /* global device status */ | 420 | /* global device status */ |
384 | struct saa7134_dev { | 421 | struct saa7134_dev { |
385 | struct list_head devlist; | 422 | struct list_head devlist; |
386 | struct semaphore lock; | 423 | struct semaphore lock; |
387 | spinlock_t slock; | 424 | spinlock_t slock; |
388 | #ifdef VIDIOC_G_PRIORITY | 425 | #ifdef VIDIOC_G_PRIORITY |
389 | struct v4l2_prio_state prio; | 426 | struct v4l2_prio_state prio; |
390 | #endif | 427 | #endif |
@@ -394,7 +431,7 @@ struct saa7134_dev { | |||
394 | struct video_device *video_dev; | 431 | struct video_device *video_dev; |
395 | struct video_device *radio_dev; | 432 | struct video_device *radio_dev; |
396 | struct video_device *vbi_dev; | 433 | struct video_device *vbi_dev; |
397 | struct saa7134_oss oss; | 434 | struct saa7134_dmasound dmasound; |
398 | 435 | ||
399 | /* infrared remote */ | 436 | /* infrared remote */ |
400 | int has_remote; | 437 | int has_remote; |
@@ -421,7 +458,7 @@ struct saa7134_dev { | |||
421 | /* i2c i/o */ | 458 | /* i2c i/o */ |
422 | struct i2c_adapter i2c_adap; | 459 | struct i2c_adapter i2c_adap; |
423 | struct i2c_client i2c_client; | 460 | struct i2c_client i2c_client; |
424 | unsigned char eedata[64]; | 461 | unsigned char eedata[128]; |
425 | 462 | ||
426 | /* video overlay */ | 463 | /* video overlay */ |
427 | struct v4l2_framebuffer ovbuf; | 464 | struct v4l2_framebuffer ovbuf; |
@@ -626,6 +663,7 @@ void saa7134_irq_oss_done(struct saa7134_dev *dev, unsigned long status); | |||
626 | int saa7134_input_init1(struct saa7134_dev *dev); | 663 | int saa7134_input_init1(struct saa7134_dev *dev); |
627 | void saa7134_input_fini(struct saa7134_dev *dev); | 664 | void saa7134_input_fini(struct saa7134_dev *dev); |
628 | void saa7134_input_irq(struct saa7134_dev *dev); | 665 | void saa7134_input_irq(struct saa7134_dev *dev); |
666 | void saa7134_set_i2c_ir(struct saa7134_dev *dev, struct IR_i2c *ir); | ||
629 | 667 | ||
630 | /* | 668 | /* |
631 | * Local variables: | 669 | * Local variables: |