em28xx.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. /*
  2. em2820-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 _EM2820_H
  20. #define _EM2820_H
  21. #include <linux/videodev.h>
  22. #include <linux/i2c.h>
  23. /* Boards supported by driver */
  24. #define EM2800_BOARD_UNKNOWN 0
  25. #define EM2820_BOARD_UNKNOWN 1
  26. #define EM2820_BOARD_TERRATEC_CINERGY_250 2
  27. #define EM2820_BOARD_PINNACLE_USB_2 3
  28. #define EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 4
  29. #define EM2820_BOARD_MSI_VOX_USB_2 5
  30. #define EM2800_BOARD_TERRATEC_CINERGY_200 6
  31. #define EM2800_BOARD_LEADTEK_WINFAST_USBII 7
  32. #define EM2800_BOARD_KWORLD_USB2800 8
  33. #define UNSET -1
  34. /* maximum number of em28xx boards */
  35. #define EM2820_MAXBOARDS 1 /*FIXME: should be bigger */
  36. /* maximum number of frames that can be queued */
  37. #define EM2820_NUM_FRAMES 5
  38. /* number of frames that get used for v4l2_read() */
  39. #define EM2820_NUM_READ_FRAMES 2
  40. /* number of buffers for isoc transfers */
  41. #define EM2820_NUM_BUFS 5
  42. /* number of packets for each buffer */
  43. // windows requests only 40 packets .. so we better do the same
  44. // this is what I found out for all alternate numbers there!
  45. #define EM2820_NUM_PACKETS 40
  46. /* packet size for each packet */
  47. /* no longer needed: read from endpoint descriptor */
  48. //#define EM2820_MAX_PACKET_SIZE 3072 //7
  49. //#define EM2820_MAX_PACKET_SIZE 2892 //6
  50. //#define EM2820_MAX_PACKET_SIZE 2580 //5
  51. //#define EM2820_MAX_PACKET_SIZE 1448 //2
  52. /* default alternate; 0 means choose the best */
  53. #define EM2820_PINOUT 0
  54. #define EM2820_MAX_ALT 7
  55. #define EM2820_INTERLACED_DEFAULT 1
  56. /*
  57. #define (use usbview if you want to get the other alternate number infos)
  58. #define
  59. #define alternate number 2
  60. #define Endpoint Address: 82
  61. Direction: in
  62. Attribute: 1
  63. Type: Isoc
  64. Max Packet Size: 1448
  65. Interval: 125us
  66. alternate number 7
  67. Endpoint Address: 82
  68. Direction: in
  69. Attribute: 1
  70. Type: Isoc
  71. Max Packet Size: 3072
  72. Interval: 125us
  73. */
  74. /* time to wait when stopping the isoc transfer */
  75. #define EM2820_URB_TIMEOUT msecs_to_jiffies(EM2820_NUM_BUFS * EM2820_NUM_PACKETS)
  76. /* time in msecs to wait for i2c writes to finish */
  77. #define EM2800_I2C_WRITE_TIMEOUT 20
  78. /* the various frame states */
  79. enum em2820_frame_state {
  80. F_UNUSED = 0,
  81. F_QUEUED,
  82. F_GRABBING,
  83. F_DONE,
  84. F_ERROR,
  85. };
  86. /* stream states */
  87. enum em2820_stream_state {
  88. STREAM_OFF,
  89. STREAM_INTERRUPT,
  90. STREAM_ON,
  91. };
  92. /* frames */
  93. struct em2820_frame_t {
  94. void *bufmem;
  95. struct v4l2_buffer buf;
  96. enum em2820_frame_state state;
  97. struct list_head frame;
  98. unsigned long vma_use_count;
  99. int top_field;
  100. int fieldbytesused;
  101. };
  102. /* io methods */
  103. enum em2820_io_method {
  104. IO_NONE,
  105. IO_READ,
  106. IO_MMAP,
  107. };
  108. /* inputs */
  109. #define MAX_EM2820_INPUT 4
  110. enum enum2820_itype {
  111. EM2820_VMUX_COMPOSITE1 = 1,
  112. EM2820_VMUX_COMPOSITE2,
  113. EM2820_VMUX_COMPOSITE3,
  114. EM2820_VMUX_COMPOSITE4,
  115. EM2820_VMUX_SVIDEO,
  116. EM2820_VMUX_TELEVISION,
  117. EM2820_VMUX_CABLE,
  118. EM2820_VMUX_DVB,
  119. EM2820_VMUX_DEBUG,
  120. EM2820_RADIO,
  121. };
  122. struct em2820_input {
  123. enum enum2820_itype type;
  124. unsigned int vmux;
  125. unsigned int amux;
  126. };
  127. #define INPUT(nr) (&em2820_boards[dev->model].input[nr])
  128. enum em2820_decoder {
  129. EM2820_TVP5150,
  130. EM2820_SAA7113,
  131. EM2820_SAA7114
  132. };
  133. struct em2820_board {
  134. char *name;
  135. unsigned char chip_id;
  136. int vchannels;
  137. int norm;
  138. int tuner_type;
  139. /* i2c flags */
  140. unsigned int is_em2800;
  141. unsigned int tda9887_conf;
  142. unsigned int has_tuner:1;
  143. unsigned int has_msp34xx:1;
  144. enum em2820_decoder decoder;
  145. struct em2820_input input[MAX_EM2820_INPUT];
  146. };
  147. struct em2820_eeprom {
  148. u32 id; /* 0x9567eb1a */
  149. u16 vendor_ID;
  150. u16 product_ID;
  151. u16 chip_conf;
  152. u16 board_conf;
  153. u16 string1, string2, string3;
  154. u8 string_idx_table;
  155. };
  156. /* device states */
  157. enum em2820_dev_state {
  158. DEV_INITIALIZED = 0x01,
  159. DEV_DISCONNECTED = 0x02,
  160. DEV_MISCONFIGURED = 0x04,
  161. };
  162. /* tvnorms */
  163. struct em2820_tvnorm {
  164. char *name;
  165. v4l2_std_id id;
  166. /* mode for saa7113h */
  167. int mode;
  168. };
  169. /* main device struct */
  170. struct em2820 {
  171. /* generic device properties */
  172. char name[30]; /* name (including minor) of the device */
  173. int model; /* index in the device_data struct */
  174. unsigned int is_em2800;
  175. int video_inputs; /* number of video inputs */
  176. unsigned int has_tuner:1;
  177. unsigned int has_msp34xx:1;
  178. unsigned int has_tda9887:1;
  179. enum em2820_decoder decoder;
  180. int tuner_type; /* type of the tuner */
  181. int tuner_addr; /* tuner address */
  182. int tda9887_conf;
  183. /* i2c i/o */
  184. struct i2c_adapter i2c_adap;
  185. struct i2c_client i2c_client;
  186. /* video for linux */
  187. int users; /* user count for exclusive use */
  188. struct video_device *vdev; /* video for linux device struct */
  189. struct video_picture vpic; /* picture settings only used to init saa7113h */
  190. struct em2820_tvnorm *tvnorm; /* selected tv norm */
  191. int ctl_freq; /* selected frequency */
  192. unsigned int ctl_input; /* selected input */
  193. unsigned int ctl_ainput; /* slected audio input */
  194. int mute;
  195. int volume;
  196. /* frame properties */
  197. struct em2820_frame_t frame[EM2820_NUM_FRAMES]; /* list of frames */
  198. int num_frames; /* number of frames currently in use */
  199. unsigned int frame_count; /* total number of transfered frames */
  200. struct em2820_frame_t *frame_current; /* the frame that is being filled */
  201. int width; /* current frame width */
  202. int height; /* current frame height */
  203. int frame_size; /* current frame size */
  204. int field_size; /* current field size */
  205. int bytesperline;
  206. int hscale; /* horizontal scale factor (see datasheet) */
  207. int vscale; /* vertical scale factor (see datasheet) */
  208. int interlaced; /* 1=interlace fileds, 0=just top fileds */
  209. int type;
  210. /* states */
  211. enum em2820_dev_state state;
  212. enum em2820_stream_state stream;
  213. enum em2820_io_method io;
  214. /* locks */
  215. struct semaphore lock, fileop_lock;
  216. spinlock_t queue_lock;
  217. struct list_head inqueue, outqueue;
  218. wait_queue_head_t open, wait_frame, wait_stream;
  219. struct video_device *vbi_dev;
  220. unsigned char eedata[256];
  221. /* usb transfer */
  222. struct usb_device *udev; /* the usb device */
  223. int alt; /* alternate */
  224. int max_pkt_size; /* max packet size of isoc transaction */
  225. unsigned int alt_max_pkt_size[EM2820_MAX_ALT + 1]; /* array of wMaxPacketSize */
  226. struct urb *urb[EM2820_NUM_BUFS]; /* urb for isoc transfers */
  227. char *transfer_buffer[EM2820_NUM_BUFS]; /* transfer buffers for isoc transfer */
  228. /* helper funcs that call usb_control_msg */
  229. int (*em2820_write_regs) (struct em2820 * dev, u16 reg, char *buf,
  230. int len);
  231. int (*em2820_read_reg) (struct em2820 * dev, u16 reg);
  232. int (*em2820_read_reg_req_len) (struct em2820 * dev, u8 req, u16 reg,
  233. char *buf, int len);
  234. int (*em2820_write_regs_req) (struct em2820 * dev, u8 req, u16 reg,
  235. char *buf, int len);
  236. int (*em2820_read_reg_req) (struct em2820 * dev, u8 req, u16 reg);
  237. };
  238. /* Provided by em2820-i2c.c */
  239. void em2820_i2c_call_clients(struct em2820 *dev, unsigned int cmd, void *arg);
  240. int em2820_i2c_register(struct em2820 *dev);
  241. int em2820_i2c_unregister(struct em2820 *dev);
  242. /* Provided by em2820-core.c */
  243. void em2820_print_ioctl(char *name, unsigned int cmd);
  244. u32 em2820_request_buffers(struct em2820 *dev, u32 count);
  245. void em2820_queue_unusedframes(struct em2820 *dev);
  246. void em2820_release_buffers(struct em2820 *dev);
  247. int em2820_read_reg_req_len(struct em2820 *dev, u8 req, u16 reg,
  248. char *buf, int len);
  249. int em2820_read_reg_req(struct em2820 *dev, u8 req, u16 reg);
  250. int em2820_read_reg(struct em2820 *dev, u16 reg);
  251. int em2820_write_regs_req(struct em2820 *dev, u8 req, u16 reg, char *buf,
  252. int len);
  253. int em2820_write_regs(struct em2820 *dev, u16 reg, char *buf, int len);
  254. int em2820_write_reg_bits(struct em2820 *dev, u16 reg, u8 val,
  255. u8 bitmask);
  256. int em2820_write_ac97(struct em2820 *dev, u8 reg, u8 * val);
  257. int em2820_audio_analog_set(struct em2820 *dev);
  258. int em2820_colorlevels_set_default(struct em2820 *dev);
  259. int em2820_capture_start(struct em2820 *dev, int start);
  260. int em2820_outfmt_set_yuv422(struct em2820 *dev);
  261. int em2820_accumulator_set(struct em2820 *dev, u8 xmin, u8 xmax, u8 ymin,
  262. u8 ymax);
  263. int em2820_capture_area_set(struct em2820 *dev, u8 hstart, u8 vstart,
  264. u16 width, u16 height);
  265. int em2820_scaler_set(struct em2820 *dev, u16 h, u16 v);
  266. int em2820_resolution_set(struct em2820 *dev);
  267. void em2820_isocIrq(struct urb *urb, struct pt_regs *regs);
  268. int em2820_init_isoc(struct em2820 *dev);
  269. void em2820_uninit_isoc(struct em2820 *dev);
  270. int em2820_set_alternate(struct em2820 *dev);
  271. /* Provided by em2820-cards.c */
  272. extern int em2800_variant_detect(struct usb_device* udev,int model);
  273. extern void em2820_card_setup(struct em2820 *dev);
  274. extern struct em2820_board em2820_boards[];
  275. extern struct usb_device_id em2820_id_table[];
  276. extern const unsigned int em2820_bcount;
  277. /* em2820 registers */
  278. #define CHIPID_REG 0x0a
  279. #define USBSUSP_REG 0x0c /* */
  280. #define AUDIOSRC_REG 0x0e
  281. #define XCLK_REG 0x0f
  282. #define VINMODE_REG 0x10
  283. #define VINCTRL_REG 0x11
  284. #define VINENABLE_REG 0x12 /* */
  285. #define GAMMA_REG 0x14
  286. #define RGAIN_REG 0x15
  287. #define GGAIN_REG 0x16
  288. #define BGAIN_REG 0x17
  289. #define ROFFSET_REG 0x18
  290. #define GOFFSET_REG 0x19
  291. #define BOFFSET_REG 0x1a
  292. #define OFLOW_REG 0x1b
  293. #define HSTART_REG 0x1c
  294. #define VSTART_REG 0x1d
  295. #define CWIDTH_REG 0x1e
  296. #define CHEIGHT_REG 0x1f
  297. #define YGAIN_REG 0x20
  298. #define YOFFSET_REG 0x21
  299. #define UVGAIN_REG 0x22
  300. #define UOFFSET_REG 0x23
  301. #define VOFFSET_REG 0x24
  302. #define SHARPNESS_REG 0x25
  303. #define COMPR_REG 0x26
  304. #define OUTFMT_REG 0x27
  305. #define XMIN_REG 0x28
  306. #define XMAX_REG 0x29
  307. #define YMIN_REG 0x2a
  308. #define YMAX_REG 0x2b
  309. #define HSCALELOW_REG 0x30
  310. #define HSCALEHIGH_REG 0x31
  311. #define VSCALELOW_REG 0x32
  312. #define VSCALEHIGH_REG 0x33
  313. #define AC97LSB_REG 0x40
  314. #define AC97MSB_REG 0x41
  315. #define AC97ADDR_REG 0x42
  316. #define AC97BUSY_REG 0x43
  317. /* em202 registers */
  318. #define MASTER_AC97 0x02
  319. #define VIDEO_AC97 0x14
  320. /* register settings */
  321. #define EM2820_AUDIO_SRC_TUNER 0xc0
  322. #define EM2820_AUDIO_SRC_LINE 0x80
  323. /* printk macros */
  324. #define em2820_err(fmt, arg...) do {\
  325. printk(KERN_ERR fmt , ##arg); } while (0)
  326. #define em2820_errdev(fmt, arg...) do {\
  327. printk(KERN_ERR "%s: "fmt,\
  328. dev->name , ##arg); } while (0)
  329. #define em2820_info(fmt, arg...) do {\
  330. printk(KERN_INFO "%s: "fmt,\
  331. dev->name , ##arg); } while (0)
  332. #define em2820_warn(fmt, arg...) do {\
  333. printk(KERN_WARNING "%s: "fmt,\
  334. dev->name , ##arg); } while (0)
  335. inline static int em2820_audio_source(struct em2820 *dev, int input)
  336. {
  337. return em2820_write_reg_bits(dev, AUDIOSRC_REG, input, 0xc0);
  338. }
  339. inline static int em2820_audio_usb_mute(struct em2820 *dev, int mute)
  340. {
  341. return em2820_write_reg_bits(dev, XCLK_REG, mute ? 0x00 : 0x80, 0x80);
  342. }
  343. inline static int em2820_audio_analog_setup(struct em2820 *dev)
  344. {
  345. /* unmute video mixer with default volume level */
  346. return em2820_write_ac97(dev, VIDEO_AC97, "\x08\x08");
  347. }
  348. inline static int em2820_compression_disable(struct em2820 *dev)
  349. {
  350. /* side effect of disabling scaler and mixer */
  351. return em2820_write_regs(dev, COMPR_REG, "\x00", 1);
  352. }
  353. inline static int em2820_contrast_get(struct em2820 *dev)
  354. {
  355. return em2820_read_reg(dev, YGAIN_REG) & 0x1f;
  356. }
  357. inline static int em2820_brightness_get(struct em2820 *dev)
  358. {
  359. return em2820_read_reg(dev, YOFFSET_REG);
  360. }
  361. inline static int em2820_saturation_get(struct em2820 *dev)
  362. {
  363. return em2820_read_reg(dev, UVGAIN_REG) & 0x1f;
  364. }
  365. inline static int em2820_u_balance_get(struct em2820 *dev)
  366. {
  367. return em2820_read_reg(dev, UOFFSET_REG);
  368. }
  369. inline static int em2820_v_balance_get(struct em2820 *dev)
  370. {
  371. return em2820_read_reg(dev, VOFFSET_REG);
  372. }
  373. inline static int em2820_gamma_get(struct em2820 *dev)
  374. {
  375. return em2820_read_reg(dev, GAMMA_REG) & 0x3f;
  376. }
  377. inline static int em2820_contrast_set(struct em2820 *dev, s32 val)
  378. {
  379. u8 tmp = (u8) val;
  380. return em2820_write_regs(dev, YGAIN_REG, &tmp, 1);
  381. }
  382. inline static int em2820_brightness_set(struct em2820 *dev, s32 val)
  383. {
  384. u8 tmp = (u8) val;
  385. return em2820_write_regs(dev, YOFFSET_REG, &tmp, 1);
  386. }
  387. inline static int em2820_saturation_set(struct em2820 *dev, s32 val)
  388. {
  389. u8 tmp = (u8) val;
  390. return em2820_write_regs(dev, UVGAIN_REG, &tmp, 1);
  391. }
  392. inline static int em2820_u_balance_set(struct em2820 *dev, s32 val)
  393. {
  394. u8 tmp = (u8) val;
  395. return em2820_write_regs(dev, UOFFSET_REG, &tmp, 1);
  396. }
  397. inline static int em2820_v_balance_set(struct em2820 *dev, s32 val)
  398. {
  399. u8 tmp = (u8) val;
  400. return em2820_write_regs(dev, VOFFSET_REG, &tmp, 1);
  401. }
  402. inline static int em2820_gamma_set(struct em2820 *dev, s32 val)
  403. {
  404. u8 tmp = (u8) val;
  405. return em2820_write_regs(dev, GAMMA_REG, &tmp, 1);
  406. }
  407. /*FIXME: maxw should be dependent of alt mode */
  408. #define norm_maxw(dev) 720
  409. inline static unsigned int norm_maxh(struct em2820 *dev)
  410. {
  411. return (dev->tvnorm->id & V4L2_STD_625_50) ? 576 : 480;
  412. }
  413. #endif