em28xx.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. /*
  2. em28xx.h - driver for Empia EM2800/EM2820/2840 USB video capture devices
  3. Copyright (C) 2005 Markus Rechberger <mrechberger@gmail.com>
  4. Ludovico Cavedon <cavedon@sssup.it>
  5. Mauro Carvalho Chehab <mchehab@infradead.org>
  6. Based on the em2800 driver from Sascha Sommer <saschasommer@freenet.de>
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. 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 Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #ifndef _EM28XX_H
  20. #define _EM28XX_H
  21. #include <linux/videodev.h>
  22. #include <linux/i2c.h>
  23. #include <linux/mutex.h>
  24. #include <media/ir-kbd-i2c.h>
  25. /* Boards supported by driver */
  26. #define EM2800_BOARD_UNKNOWN 0
  27. #define EM2820_BOARD_UNKNOWN 1
  28. #define EM2820_BOARD_TERRATEC_CINERGY_250 2
  29. #define EM2820_BOARD_PINNACLE_USB_2 3
  30. #define EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 4
  31. #define EM2820_BOARD_MSI_VOX_USB_2 5
  32. #define EM2800_BOARD_TERRATEC_CINERGY_200 6
  33. #define EM2800_BOARD_LEADTEK_WINFAST_USBII 7
  34. #define EM2800_BOARD_KWORLD_USB2800 8
  35. #define EM2820_BOARD_PINNACLE_DVC_90 9
  36. #define EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900 10
  37. #define EM2880_BOARD_TERRATEC_HYBRID_XS 11
  38. #define EM2820_BOARD_KWORLD_PVRTV2800RF 12
  39. #define EM2880_BOARD_TERRATEC_PRODIGY_XS 13
  40. #define EM2820_BOARD_PROLINK_PLAYTV_USB2 14
  41. #define EM2800_BOARD_VGEAR_POCKETTV 15
  42. #define UNSET -1
  43. /* maximum number of em28xx boards */
  44. #define EM28XX_MAXBOARDS 1 /*FIXME: should be bigger */
  45. /* maximum number of frames that can be queued */
  46. #define EM28XX_NUM_FRAMES 5
  47. /* number of frames that get used for v4l2_read() */
  48. #define EM28XX_NUM_READ_FRAMES 2
  49. /* number of buffers for isoc transfers */
  50. #define EM28XX_NUM_BUFS 5
  51. /* number of packets for each buffer
  52. windows requests only 40 packets .. so we better do the same
  53. this is what I found out for all alternate numbers there!
  54. */
  55. #define EM28XX_NUM_PACKETS 40
  56. /* default alternate; 0 means choose the best */
  57. #define EM28XX_PINOUT 0
  58. #define EM28XX_INTERLACED_DEFAULT 1
  59. /*
  60. #define (use usbview if you want to get the other alternate number infos)
  61. #define
  62. #define alternate number 2
  63. #define Endpoint Address: 82
  64. Direction: in
  65. Attribute: 1
  66. Type: Isoc
  67. Max Packet Size: 1448
  68. Interval: 125us
  69. alternate number 7
  70. Endpoint Address: 82
  71. Direction: in
  72. Attribute: 1
  73. Type: Isoc
  74. Max Packet Size: 3072
  75. Interval: 125us
  76. */
  77. /* time to wait when stopping the isoc transfer */
  78. #define EM28XX_URB_TIMEOUT msecs_to_jiffies(EM28XX_NUM_BUFS * EM28XX_NUM_PACKETS)
  79. /* time in msecs to wait for i2c writes to finish */
  80. #define EM2800_I2C_WRITE_TIMEOUT 20
  81. /* the various frame states */
  82. enum em28xx_frame_state {
  83. F_UNUSED = 0,
  84. F_QUEUED,
  85. F_GRABBING,
  86. F_DONE,
  87. F_ERROR,
  88. };
  89. /* stream states */
  90. enum em28xx_stream_state {
  91. STREAM_OFF,
  92. STREAM_INTERRUPT,
  93. STREAM_ON,
  94. };
  95. /* frames */
  96. struct em28xx_frame_t {
  97. void *bufmem;
  98. struct v4l2_buffer buf;
  99. enum em28xx_frame_state state;
  100. struct list_head frame;
  101. unsigned long vma_use_count;
  102. int top_field;
  103. int fieldbytesused;
  104. };
  105. /* io methods */
  106. enum em28xx_io_method {
  107. IO_NONE,
  108. IO_READ,
  109. IO_MMAP,
  110. };
  111. /* inputs */
  112. #define MAX_EM28XX_INPUT 4
  113. enum enum28xx_itype {
  114. EM28XX_VMUX_COMPOSITE1 = 1,
  115. EM28XX_VMUX_COMPOSITE2,
  116. EM28XX_VMUX_COMPOSITE3,
  117. EM28XX_VMUX_COMPOSITE4,
  118. EM28XX_VMUX_SVIDEO,
  119. EM28XX_VMUX_TELEVISION,
  120. EM28XX_VMUX_CABLE,
  121. EM28XX_VMUX_DVB,
  122. EM28XX_VMUX_DEBUG,
  123. EM28XX_RADIO,
  124. };
  125. struct em28xx_input {
  126. enum enum28xx_itype type;
  127. unsigned int vmux;
  128. unsigned int amux;
  129. };
  130. #define INPUT(nr) (&em28xx_boards[dev->model].input[nr])
  131. enum em28xx_decoder {
  132. EM28XX_TVP5150,
  133. EM28XX_SAA7113,
  134. EM28XX_SAA7114
  135. };
  136. struct em28xx_board {
  137. char *name;
  138. int vchannels;
  139. int norm;
  140. int tuner_type;
  141. /* i2c flags */
  142. unsigned int is_em2800;
  143. unsigned int tda9887_conf;
  144. unsigned int has_tuner:1;
  145. unsigned int has_msp34xx:1;
  146. enum em28xx_decoder decoder;
  147. struct em28xx_input input[MAX_EM28XX_INPUT];
  148. };
  149. struct em28xx_eeprom {
  150. u32 id; /* 0x9567eb1a */
  151. u16 vendor_ID;
  152. u16 product_ID;
  153. u16 chip_conf;
  154. u16 board_conf;
  155. u16 string1, string2, string3;
  156. u8 string_idx_table;
  157. };
  158. /* device states */
  159. enum em28xx_dev_state {
  160. DEV_INITIALIZED = 0x01,
  161. DEV_DISCONNECTED = 0x02,
  162. DEV_MISCONFIGURED = 0x04,
  163. };
  164. /* tvnorms */
  165. struct em28xx_tvnorm {
  166. char *name;
  167. v4l2_std_id id;
  168. /* mode for saa7113h */
  169. int mode;
  170. };
  171. /* main device struct */
  172. struct em28xx {
  173. /* generic device properties */
  174. char name[30]; /* name (including minor) of the device */
  175. int model; /* index in the device_data struct */
  176. int devno; /* marks the number of this device */
  177. unsigned int is_em2800;
  178. int video_inputs; /* number of video inputs */
  179. struct list_head devlist;
  180. unsigned int has_tuner:1;
  181. unsigned int has_msp34xx:1;
  182. unsigned int has_tda9887:1;
  183. u32 i2s_speed; /* I2S speed for audio digital stream */
  184. enum em28xx_decoder decoder;
  185. int tuner_type; /* type of the tuner */
  186. int tuner_addr; /* tuner address */
  187. int tda9887_conf;
  188. /* i2c i/o */
  189. struct i2c_adapter i2c_adap;
  190. struct i2c_client i2c_client;
  191. /* video for linux */
  192. int users; /* user count for exclusive use */
  193. struct video_device *vdev; /* video for linux device struct */
  194. struct video_picture vpic; /* picture settings only used to init saa7113h */
  195. struct em28xx_tvnorm *tvnorm; /* selected tv norm */
  196. int ctl_freq; /* selected frequency */
  197. unsigned int ctl_input; /* selected input */
  198. unsigned int ctl_ainput; /* slected audio input */
  199. int mute;
  200. int volume;
  201. /* frame properties */
  202. struct em28xx_frame_t frame[EM28XX_NUM_FRAMES]; /* list of frames */
  203. int num_frames; /* number of frames currently in use */
  204. unsigned int frame_count; /* total number of transfered frames */
  205. struct em28xx_frame_t *frame_current; /* the frame that is being filled */
  206. int width; /* current frame width */
  207. int height; /* current frame height */
  208. int frame_size; /* current frame size */
  209. int field_size; /* current field size */
  210. int bytesperline;
  211. int hscale; /* horizontal scale factor (see datasheet) */
  212. int vscale; /* vertical scale factor (see datasheet) */
  213. int interlaced; /* 1=interlace fileds, 0=just top fileds */
  214. int type;
  215. unsigned int reader:1;
  216. unsigned long hash; /* eeprom hash - for boards with generic ID */
  217. unsigned long i2c_hash; /* i2c devicelist hash - for boards with generic ID */
  218. /* states */
  219. enum em28xx_dev_state state;
  220. enum em28xx_stream_state stream;
  221. enum em28xx_io_method io;
  222. /* locks */
  223. struct mutex lock;
  224. spinlock_t queue_lock;
  225. struct list_head inqueue, outqueue;
  226. wait_queue_head_t open, wait_frame, wait_stream;
  227. struct video_device *vbi_dev;
  228. unsigned char eedata[256];
  229. /* usb transfer */
  230. struct usb_device *udev; /* the usb device */
  231. int alt; /* alternate */
  232. int max_pkt_size; /* max packet size of isoc transaction */
  233. int num_alt; /* Number of alternative settings */
  234. unsigned int *alt_max_pkt_size; /* array of wMaxPacketSize */
  235. struct urb *urb[EM28XX_NUM_BUFS]; /* urb for isoc transfers */
  236. char *transfer_buffer[EM28XX_NUM_BUFS]; /* transfer buffers for isoc transfer */
  237. /* helper funcs that call usb_control_msg */
  238. int (*em28xx_write_regs) (struct em28xx * dev, u16 reg, char *buf,
  239. int len);
  240. int (*em28xx_read_reg) (struct em28xx * dev, u16 reg);
  241. int (*em28xx_read_reg_req_len) (struct em28xx * dev, u8 req, u16 reg,
  242. char *buf, int len);
  243. int (*em28xx_write_regs_req) (struct em28xx * dev, u8 req, u16 reg,
  244. char *buf, int len);
  245. int (*em28xx_read_reg_req) (struct em28xx * dev, u8 req, u16 reg);
  246. };
  247. struct em28xx_fh {
  248. struct em28xx *dev;
  249. unsigned int reader:1;
  250. };
  251. /* Provided by em28xx-i2c.c */
  252. void em28xx_i2c_call_clients(struct em28xx *dev, unsigned int cmd, void *arg);
  253. void em28xx_do_i2c_scan(struct em28xx *dev);
  254. int em28xx_i2c_register(struct em28xx *dev);
  255. int em28xx_i2c_unregister(struct em28xx *dev);
  256. /* Provided by em28xx-input.c */
  257. void em28xx_set_ir(struct em28xx * dev,struct IR_i2c *ir);
  258. /* Provided by em28xx-core.c */
  259. u32 em28xx_request_buffers(struct em28xx *dev, u32 count);
  260. void em28xx_queue_unusedframes(struct em28xx *dev);
  261. void em28xx_release_buffers(struct em28xx *dev);
  262. int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
  263. char *buf, int len);
  264. int em28xx_read_reg_req(struct em28xx *dev, u8 req, u16 reg);
  265. int em28xx_read_reg(struct em28xx *dev, u16 reg);
  266. int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,
  267. int len);
  268. int em28xx_write_regs(struct em28xx *dev, u16 reg, char *buf, int len);
  269. int em28xx_write_reg_bits(struct em28xx *dev, u16 reg, u8 val,
  270. u8 bitmask);
  271. int em28xx_write_ac97(struct em28xx *dev, u8 reg, u8 * val);
  272. int em28xx_audio_analog_set(struct em28xx *dev);
  273. int em28xx_colorlevels_set_default(struct em28xx *dev);
  274. int em28xx_capture_start(struct em28xx *dev, int start);
  275. int em28xx_outfmt_set_yuv422(struct em28xx *dev);
  276. int em28xx_resolution_set(struct em28xx *dev);
  277. int em28xx_init_isoc(struct em28xx *dev);
  278. void em28xx_uninit_isoc(struct em28xx *dev);
  279. int em28xx_set_alternate(struct em28xx *dev);
  280. /* Provided by em28xx-cards.c */
  281. extern int em2800_variant_detect(struct usb_device* udev,int model);
  282. extern void em28xx_pre_card_setup(struct em28xx *dev);
  283. extern void em28xx_card_setup(struct em28xx *dev);
  284. extern struct em28xx_board em28xx_boards[];
  285. extern struct usb_device_id em28xx_id_table[];
  286. extern const unsigned int em28xx_bcount;
  287. /* em2800 registers */
  288. #define EM2800_AUDIOSRC_REG 0x08
  289. /* em28xx registers */
  290. #define CHIPID_REG 0x0a
  291. #define USBSUSP_REG 0x0c /* */
  292. #define AUDIOSRC_REG 0x0e
  293. #define XCLK_REG 0x0f
  294. #define VINMODE_REG 0x10
  295. #define VINCTRL_REG 0x11
  296. #define VINENABLE_REG 0x12 /* */
  297. #define GAMMA_REG 0x14
  298. #define RGAIN_REG 0x15
  299. #define GGAIN_REG 0x16
  300. #define BGAIN_REG 0x17
  301. #define ROFFSET_REG 0x18
  302. #define GOFFSET_REG 0x19
  303. #define BOFFSET_REG 0x1a
  304. #define OFLOW_REG 0x1b
  305. #define HSTART_REG 0x1c
  306. #define VSTART_REG 0x1d
  307. #define CWIDTH_REG 0x1e
  308. #define CHEIGHT_REG 0x1f
  309. #define YGAIN_REG 0x20
  310. #define YOFFSET_REG 0x21
  311. #define UVGAIN_REG 0x22
  312. #define UOFFSET_REG 0x23
  313. #define VOFFSET_REG 0x24
  314. #define SHARPNESS_REG 0x25
  315. #define COMPR_REG 0x26
  316. #define OUTFMT_REG 0x27
  317. #define XMIN_REG 0x28
  318. #define XMAX_REG 0x29
  319. #define YMIN_REG 0x2a
  320. #define YMAX_REG 0x2b
  321. #define HSCALELOW_REG 0x30
  322. #define HSCALEHIGH_REG 0x31
  323. #define VSCALELOW_REG 0x32
  324. #define VSCALEHIGH_REG 0x33
  325. #define AC97LSB_REG 0x40
  326. #define AC97MSB_REG 0x41
  327. #define AC97ADDR_REG 0x42
  328. #define AC97BUSY_REG 0x43
  329. /* em202 registers */
  330. #define MASTER_AC97 0x02
  331. #define VIDEO_AC97 0x14
  332. /* register settings */
  333. #define EM2800_AUDIO_SRC_TUNER 0x0d
  334. #define EM2800_AUDIO_SRC_LINE 0x0c
  335. #define EM28XX_AUDIO_SRC_TUNER 0xc0
  336. #define EM28XX_AUDIO_SRC_LINE 0x80
  337. /* printk macros */
  338. #define em28xx_err(fmt, arg...) do {\
  339. printk(KERN_ERR fmt , ##arg); } while (0)
  340. #define em28xx_errdev(fmt, arg...) do {\
  341. printk(KERN_ERR "%s: "fmt,\
  342. dev->name , ##arg); } while (0)
  343. #define em28xx_info(fmt, arg...) do {\
  344. printk(KERN_INFO "%s: "fmt,\
  345. dev->name , ##arg); } while (0)
  346. #define em28xx_warn(fmt, arg...) do {\
  347. printk(KERN_WARNING "%s: "fmt,\
  348. dev->name , ##arg); } while (0)
  349. inline static int em28xx_audio_source(struct em28xx *dev, int input)
  350. {
  351. if(dev->is_em2800){
  352. u8 tmp = EM2800_AUDIO_SRC_TUNER;
  353. if(input == EM28XX_AUDIO_SRC_LINE)
  354. tmp = EM2800_AUDIO_SRC_LINE;
  355. em28xx_write_regs(dev, EM2800_AUDIOSRC_REG, &tmp, 1);
  356. }
  357. return em28xx_write_reg_bits(dev, AUDIOSRC_REG, input, 0xc0);
  358. }
  359. inline static int em28xx_audio_usb_mute(struct em28xx *dev, int mute)
  360. {
  361. return em28xx_write_reg_bits(dev, XCLK_REG, mute ? 0x00 : 0x80, 0x80);
  362. }
  363. inline static int em28xx_audio_analog_setup(struct em28xx *dev)
  364. {
  365. /* unmute video mixer with default volume level */
  366. return em28xx_write_ac97(dev, VIDEO_AC97, "\x08\x08");
  367. }
  368. inline static int em28xx_compression_disable(struct em28xx *dev)
  369. {
  370. /* side effect of disabling scaler and mixer */
  371. return em28xx_write_regs(dev, COMPR_REG, "\x00", 1);
  372. }
  373. inline static int em28xx_contrast_get(struct em28xx *dev)
  374. {
  375. return em28xx_read_reg(dev, YGAIN_REG) & 0x1f;
  376. }
  377. inline static int em28xx_brightness_get(struct em28xx *dev)
  378. {
  379. return em28xx_read_reg(dev, YOFFSET_REG);
  380. }
  381. inline static int em28xx_saturation_get(struct em28xx *dev)
  382. {
  383. return em28xx_read_reg(dev, UVGAIN_REG) & 0x1f;
  384. }
  385. inline static int em28xx_u_balance_get(struct em28xx *dev)
  386. {
  387. return em28xx_read_reg(dev, UOFFSET_REG);
  388. }
  389. inline static int em28xx_v_balance_get(struct em28xx *dev)
  390. {
  391. return em28xx_read_reg(dev, VOFFSET_REG);
  392. }
  393. inline static int em28xx_gamma_get(struct em28xx *dev)
  394. {
  395. return em28xx_read_reg(dev, GAMMA_REG) & 0x3f;
  396. }
  397. inline static int em28xx_contrast_set(struct em28xx *dev, s32 val)
  398. {
  399. u8 tmp = (u8) val;
  400. return em28xx_write_regs(dev, YGAIN_REG, &tmp, 1);
  401. }
  402. inline static int em28xx_brightness_set(struct em28xx *dev, s32 val)
  403. {
  404. u8 tmp = (u8) val;
  405. return em28xx_write_regs(dev, YOFFSET_REG, &tmp, 1);
  406. }
  407. inline static int em28xx_saturation_set(struct em28xx *dev, s32 val)
  408. {
  409. u8 tmp = (u8) val;
  410. return em28xx_write_regs(dev, UVGAIN_REG, &tmp, 1);
  411. }
  412. inline static int em28xx_u_balance_set(struct em28xx *dev, s32 val)
  413. {
  414. u8 tmp = (u8) val;
  415. return em28xx_write_regs(dev, UOFFSET_REG, &tmp, 1);
  416. }
  417. inline static int em28xx_v_balance_set(struct em28xx *dev, s32 val)
  418. {
  419. u8 tmp = (u8) val;
  420. return em28xx_write_regs(dev, VOFFSET_REG, &tmp, 1);
  421. }
  422. inline static int em28xx_gamma_set(struct em28xx *dev, s32 val)
  423. {
  424. u8 tmp = (u8) val;
  425. return em28xx_write_regs(dev, GAMMA_REG, &tmp, 1);
  426. }
  427. /*FIXME: maxw should be dependent of alt mode */
  428. inline static unsigned int norm_maxw(struct em28xx *dev)
  429. {
  430. switch(dev->model){
  431. case (EM2820_BOARD_MSI_VOX_USB_2): return(640);
  432. default: return(720);
  433. }
  434. }
  435. inline static unsigned int norm_maxh(struct em28xx *dev)
  436. {
  437. switch(dev->model){
  438. case (EM2820_BOARD_MSI_VOX_USB_2): return(480);
  439. default: return (dev->tvnorm->id & V4L2_STD_625_50) ? 576 : 480;
  440. }
  441. }
  442. #endif