em28xx.h 13 KB

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