cx231xx.h 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009
  1. /*
  2. cx231xx.h - driver for Conexant Cx23100/101/102 USB video capture devices
  3. Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
  4. Based on em28xx driver
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. #ifndef _CX231XX_H
  18. #define _CX231XX_H
  19. #include <linux/videodev2.h>
  20. #include <linux/types.h>
  21. #include <linux/ioctl.h>
  22. #include <linux/i2c.h>
  23. #include <linux/workqueue.h>
  24. #include <linux/mutex.h>
  25. #include <linux/usb.h>
  26. #include <media/drv-intf/cx2341x.h>
  27. #include <media/videobuf-vmalloc.h>
  28. #include <media/v4l2-device.h>
  29. #include <media/v4l2-ctrls.h>
  30. #include <media/v4l2-fh.h>
  31. #include <media/rc-core.h>
  32. #include <media/i2c/ir-kbd-i2c.h>
  33. #include <media/videobuf-dvb.h>
  34. #include "cx231xx-reg.h"
  35. #include "cx231xx-pcb-cfg.h"
  36. #include "cx231xx-conf-reg.h"
  37. #define DRIVER_NAME "cx231xx"
  38. #define PWR_SLEEP_INTERVAL 10
  39. /* I2C addresses for control block in Cx231xx */
  40. #define AFE_DEVICE_ADDRESS 0x60
  41. #define I2S_BLK_DEVICE_ADDRESS 0x98
  42. #define VID_BLK_I2C_ADDRESS 0x88
  43. #define VERVE_I2C_ADDRESS 0x40
  44. #define DIF_USE_BASEBAND 0xFFFFFFFF
  45. /* Boards supported by driver */
  46. #define CX231XX_BOARD_UNKNOWN 0
  47. #define CX231XX_BOARD_CNXT_CARRAERA 1
  48. #define CX231XX_BOARD_CNXT_SHELBY 2
  49. #define CX231XX_BOARD_CNXT_RDE_253S 3
  50. #define CX231XX_BOARD_CNXT_RDU_253S 4
  51. #define CX231XX_BOARD_CNXT_VIDEO_GRABBER 5
  52. #define CX231XX_BOARD_CNXT_RDE_250 6
  53. #define CX231XX_BOARD_CNXT_RDU_250 7
  54. #define CX231XX_BOARD_HAUPPAUGE_EXETER 8
  55. #define CX231XX_BOARD_HAUPPAUGE_USBLIVE2 9
  56. #define CX231XX_BOARD_PV_PLAYTV_USB_HYBRID 10
  57. #define CX231XX_BOARD_PV_XCAPTURE_USB 11
  58. #define CX231XX_BOARD_KWORLD_UB430_USB_HYBRID 12
  59. #define CX231XX_BOARD_ICONBIT_U100 13
  60. #define CX231XX_BOARD_HAUPPAUGE_USB2_FM_PAL 14
  61. #define CX231XX_BOARD_HAUPPAUGE_USB2_FM_NTSC 15
  62. #define CX231XX_BOARD_ELGATO_VIDEO_CAPTURE_V2 16
  63. #define CX231XX_BOARD_OTG102 17
  64. #define CX231XX_BOARD_KWORLD_UB445_USB_HYBRID 18
  65. #define CX231XX_BOARD_HAUPPAUGE_930C_HD_1113xx 19
  66. #define CX231XX_BOARD_HAUPPAUGE_930C_HD_1114xx 20
  67. #define CX231XX_BOARD_HAUPPAUGE_955Q 21
  68. #define CX231XX_BOARD_TERRATEC_GRABBY 22
  69. /* Limits minimum and default number of buffers */
  70. #define CX231XX_MIN_BUF 4
  71. #define CX231XX_DEF_BUF 12
  72. #define CX231XX_DEF_VBI_BUF 6
  73. #define VBI_LINE_COUNT 17
  74. #define VBI_LINE_LENGTH 1440
  75. /*Limits the max URB message size */
  76. #define URB_MAX_CTRL_SIZE 80
  77. /* Params for validated field */
  78. #define CX231XX_BOARD_NOT_VALIDATED 1
  79. #define CX231XX_BOARD_VALIDATED 0
  80. /* maximum number of cx231xx boards */
  81. #define CX231XX_MAXBOARDS 8
  82. /* maximum number of frames that can be queued */
  83. #define CX231XX_NUM_FRAMES 5
  84. /* number of buffers for isoc transfers */
  85. #define CX231XX_NUM_BUFS 8
  86. /* number of packets for each buffer
  87. windows requests only 40 packets .. so we better do the same
  88. this is what I found out for all alternate numbers there!
  89. */
  90. #define CX231XX_NUM_PACKETS 40
  91. /* default alternate; 0 means choose the best */
  92. #define CX231XX_PINOUT 0
  93. #define CX231XX_INTERLACED_DEFAULT 1
  94. /* time to wait when stopping the isoc transfer */
  95. #define CX231XX_URB_TIMEOUT \
  96. msecs_to_jiffies(CX231XX_NUM_BUFS * CX231XX_NUM_PACKETS)
  97. #define CX231xx_NORMS (\
  98. V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_JP | V4L2_STD_NTSC_443 | \
  99. V4L2_STD_PAL_BG | V4L2_STD_PAL_DK | V4L2_STD_PAL_I | \
  100. V4L2_STD_PAL_M | V4L2_STD_PAL_N | V4L2_STD_PAL_Nc | \
  101. V4L2_STD_PAL_60 | V4L2_STD_SECAM_L | V4L2_STD_SECAM_DK)
  102. #define SLEEP_S5H1432 30
  103. #define CX23417_OSC_EN 8
  104. #define CX23417_RESET 9
  105. struct cx23417_fmt {
  106. char *name;
  107. u32 fourcc; /* v4l2 format id */
  108. int depth;
  109. int flags;
  110. u32 cxformat;
  111. };
  112. enum cx231xx_mode {
  113. CX231XX_SUSPEND,
  114. CX231XX_ANALOG_MODE,
  115. CX231XX_DIGITAL_MODE,
  116. };
  117. enum cx231xx_std_mode {
  118. CX231XX_TV_AIR = 0,
  119. CX231XX_TV_CABLE
  120. };
  121. enum cx231xx_stream_state {
  122. STREAM_OFF,
  123. STREAM_INTERRUPT,
  124. STREAM_ON,
  125. };
  126. struct cx231xx;
  127. struct cx231xx_isoc_ctl {
  128. /* max packet size of isoc transaction */
  129. int max_pkt_size;
  130. /* number of allocated urbs */
  131. int num_bufs;
  132. /* urb for isoc transfers */
  133. struct urb **urb;
  134. /* transfer buffers for isoc transfer */
  135. char **transfer_buffer;
  136. /* Last buffer command and region */
  137. u8 cmd;
  138. int pos, size, pktsize;
  139. /* Last field: ODD or EVEN? */
  140. int field;
  141. /* Stores incomplete commands */
  142. u32 tmp_buf;
  143. int tmp_buf_len;
  144. /* Stores already requested buffers */
  145. struct cx231xx_buffer *buf;
  146. /* Stores the number of received fields */
  147. int nfields;
  148. /* isoc urb callback */
  149. int (*isoc_copy) (struct cx231xx *dev, struct urb *urb);
  150. };
  151. struct cx231xx_bulk_ctl {
  152. /* max packet size of bulk transaction */
  153. int max_pkt_size;
  154. /* number of allocated urbs */
  155. int num_bufs;
  156. /* urb for bulk transfers */
  157. struct urb **urb;
  158. /* transfer buffers for bulk transfer */
  159. char **transfer_buffer;
  160. /* Last buffer command and region */
  161. u8 cmd;
  162. int pos, size, pktsize;
  163. /* Last field: ODD or EVEN? */
  164. int field;
  165. /* Stores incomplete commands */
  166. u32 tmp_buf;
  167. int tmp_buf_len;
  168. /* Stores already requested buffers */
  169. struct cx231xx_buffer *buf;
  170. /* Stores the number of received fields */
  171. int nfields;
  172. /* bulk urb callback */
  173. int (*bulk_copy) (struct cx231xx *dev, struct urb *urb);
  174. };
  175. struct cx231xx_fmt {
  176. char *name;
  177. u32 fourcc; /* v4l2 format id */
  178. int depth;
  179. int reg;
  180. };
  181. /* buffer for one video frame */
  182. struct cx231xx_buffer {
  183. /* common v4l buffer stuff -- must be first */
  184. struct videobuf_buffer vb;
  185. struct list_head frame;
  186. int top_field;
  187. int receiving;
  188. };
  189. enum ps_package_head {
  190. CX231XX_NEED_ADD_PS_PACKAGE_HEAD = 0,
  191. CX231XX_NONEED_PS_PACKAGE_HEAD
  192. };
  193. struct cx231xx_dmaqueue {
  194. struct list_head active;
  195. struct list_head queued;
  196. wait_queue_head_t wq;
  197. /* Counters to control buffer fill */
  198. int pos;
  199. u8 is_partial_line;
  200. u8 partial_buf[8];
  201. u8 last_sav;
  202. int current_field;
  203. u32 bytes_left_in_line;
  204. u32 lines_completed;
  205. u8 field1_done;
  206. u32 lines_per_field;
  207. /*Mpeg2 control buffer*/
  208. u8 *p_left_data;
  209. u32 left_data_count;
  210. u8 mpeg_buffer_done;
  211. u32 mpeg_buffer_completed;
  212. enum ps_package_head add_ps_package_head;
  213. char ps_head[10];
  214. };
  215. /* inputs */
  216. #define MAX_CX231XX_INPUT 4
  217. enum cx231xx_itype {
  218. CX231XX_VMUX_COMPOSITE1 = 1,
  219. CX231XX_VMUX_SVIDEO,
  220. CX231XX_VMUX_TELEVISION,
  221. CX231XX_VMUX_CABLE,
  222. CX231XX_RADIO,
  223. CX231XX_VMUX_DVB,
  224. };
  225. enum cx231xx_v_input {
  226. CX231XX_VIN_1_1 = 0x1,
  227. CX231XX_VIN_2_1,
  228. CX231XX_VIN_3_1,
  229. CX231XX_VIN_4_1,
  230. CX231XX_VIN_1_2 = 0x01,
  231. CX231XX_VIN_2_2,
  232. CX231XX_VIN_3_2,
  233. CX231XX_VIN_1_3 = 0x1,
  234. CX231XX_VIN_2_3,
  235. CX231XX_VIN_3_3,
  236. };
  237. /* cx231xx has two audio inputs: tuner and line in */
  238. enum cx231xx_amux {
  239. /* This is the only entry for cx231xx tuner input */
  240. CX231XX_AMUX_VIDEO, /* cx231xx tuner */
  241. CX231XX_AMUX_LINE_IN, /* Line In */
  242. };
  243. struct cx231xx_reg_seq {
  244. unsigned char bit;
  245. unsigned char val;
  246. int sleep;
  247. };
  248. struct cx231xx_input {
  249. enum cx231xx_itype type;
  250. unsigned int vmux;
  251. enum cx231xx_amux amux;
  252. struct cx231xx_reg_seq *gpio;
  253. };
  254. #define INPUT(nr) (&cx231xx_boards[dev->model].input[nr])
  255. enum cx231xx_decoder {
  256. CX231XX_NODECODER,
  257. CX231XX_AVDECODER
  258. };
  259. enum CX231XX_I2C_MASTER_PORT {
  260. I2C_0 = 0, /* master 0 - internal connection */
  261. I2C_1 = 1, /* master 1 - used with mux */
  262. I2C_2 = 2, /* master 2 */
  263. I2C_1_MUX_1 = 3, /* master 1 - port 1 (I2C_DEMOD_EN = 0) */
  264. I2C_1_MUX_3 = 4 /* master 1 - port 3 (I2C_DEMOD_EN = 1) */
  265. };
  266. struct cx231xx_board {
  267. char *name;
  268. int vchannels;
  269. int tuner_type;
  270. int tuner_addr;
  271. v4l2_std_id norm; /* tv norm */
  272. /* demod related */
  273. int demod_addr;
  274. u8 demod_xfer_mode; /* 0 - Serial; 1 - parallel */
  275. /* GPIO Pins */
  276. struct cx231xx_reg_seq *dvb_gpio;
  277. struct cx231xx_reg_seq *suspend_gpio;
  278. struct cx231xx_reg_seq *tuner_gpio;
  279. /* Negative means don't use it */
  280. s8 tuner_sif_gpio;
  281. s8 tuner_scl_gpio;
  282. s8 tuner_sda_gpio;
  283. /* PIN ctrl */
  284. u32 ctl_pin_status_mask;
  285. u8 agc_analog_digital_select_gpio;
  286. u32 gpio_pin_status_mask;
  287. /* i2c masters */
  288. u8 tuner_i2c_master;
  289. u8 demod_i2c_master;
  290. u8 ir_i2c_master;
  291. /* for devices with I2C chips for IR */
  292. char *rc_map_name;
  293. unsigned int max_range_640_480:1;
  294. unsigned int has_dvb:1;
  295. unsigned int has_417:1;
  296. unsigned int valid:1;
  297. unsigned int no_alt_vanc:1;
  298. unsigned int external_av:1;
  299. unsigned char xclk, i2c_speed;
  300. enum cx231xx_decoder decoder;
  301. int output_mode;
  302. struct cx231xx_input input[MAX_CX231XX_INPUT];
  303. struct cx231xx_input radio;
  304. struct rc_map *ir_codes;
  305. };
  306. /* device states */
  307. enum cx231xx_dev_state {
  308. DEV_INITIALIZED = 0x01,
  309. DEV_DISCONNECTED = 0x02,
  310. };
  311. enum AFE_MODE {
  312. AFE_MODE_LOW_IF,
  313. AFE_MODE_BASEBAND,
  314. AFE_MODE_EU_HI_IF,
  315. AFE_MODE_US_HI_IF,
  316. AFE_MODE_JAPAN_HI_IF
  317. };
  318. enum AUDIO_INPUT {
  319. AUDIO_INPUT_MUTE,
  320. AUDIO_INPUT_LINE,
  321. AUDIO_INPUT_TUNER_TV,
  322. AUDIO_INPUT_SPDIF,
  323. AUDIO_INPUT_TUNER_FM
  324. };
  325. #define CX231XX_AUDIO_BUFS 5
  326. #define CX231XX_NUM_AUDIO_PACKETS 16
  327. #define CX231XX_ISO_NUM_AUDIO_PACKETS 64
  328. /* cx231xx extensions */
  329. #define CX231XX_AUDIO 0x10
  330. #define CX231XX_DVB 0x20
  331. struct cx231xx_audio {
  332. char name[50];
  333. char *transfer_buffer[CX231XX_AUDIO_BUFS];
  334. struct urb *urb[CX231XX_AUDIO_BUFS];
  335. struct usb_device *udev;
  336. unsigned int capture_transfer_done;
  337. struct snd_pcm_substream *capture_pcm_substream;
  338. unsigned int hwptr_done_capture;
  339. struct snd_card *sndcard;
  340. int users, shutdown;
  341. /* locks */
  342. spinlock_t slock;
  343. int alt; /* alternate */
  344. int max_pkt_size; /* max packet size of isoc transaction */
  345. int num_alt; /* Number of alternative settings */
  346. unsigned int *alt_max_pkt_size; /* array of wMaxPacketSize */
  347. u16 end_point_addr;
  348. };
  349. struct cx231xx;
  350. struct cx231xx_fh {
  351. struct v4l2_fh fh;
  352. struct cx231xx *dev;
  353. unsigned int stream_on:1; /* Locks streams */
  354. enum v4l2_buf_type type;
  355. struct videobuf_queue vb_vidq;
  356. /* vbi capture */
  357. struct videobuf_queue vidq;
  358. struct videobuf_queue vbiq;
  359. /* MPEG Encoder specifics ONLY */
  360. atomic_t v4l_reading;
  361. };
  362. /*****************************************************************/
  363. /* set/get i2c */
  364. /* 00--1Mb/s, 01-400kb/s, 10--100kb/s, 11--5Mb/s */
  365. #define I2C_SPEED_1M 0x0
  366. #define I2C_SPEED_400K 0x1
  367. #define I2C_SPEED_100K 0x2
  368. #define I2C_SPEED_5M 0x3
  369. /* 0-- STOP transaction */
  370. #define I2C_STOP 0x0
  371. /* 1-- do not transmit STOP at end of transaction */
  372. #define I2C_NOSTOP 0x1
  373. /* 1--allow slave to insert clock wait states */
  374. #define I2C_SYNC 0x1
  375. struct cx231xx_i2c {
  376. struct cx231xx *dev;
  377. int nr;
  378. /* i2c i/o */
  379. struct i2c_adapter i2c_adap;
  380. u32 i2c_rc;
  381. /* different settings for each bus */
  382. u8 i2c_period;
  383. u8 i2c_nostop;
  384. u8 i2c_reserve;
  385. };
  386. struct cx231xx_i2c_xfer_data {
  387. u8 dev_addr;
  388. u8 direction; /* 1 - IN, 0 - OUT */
  389. u8 saddr_len; /* sub address len */
  390. u16 saddr_dat; /* sub addr data */
  391. u8 buf_size; /* buffer size */
  392. u8 *p_buffer; /* pointer to the buffer */
  393. };
  394. struct VENDOR_REQUEST_IN {
  395. u8 bRequest;
  396. u16 wValue;
  397. u16 wIndex;
  398. u16 wLength;
  399. u8 direction;
  400. u8 bData;
  401. u8 *pBuff;
  402. };
  403. struct cx231xx_tvnorm {
  404. char *name;
  405. v4l2_std_id id;
  406. u32 cxiformat;
  407. u32 cxoformat;
  408. };
  409. enum TRANSFER_TYPE {
  410. Raw_Video = 0,
  411. Audio,
  412. Vbi, /* VANC */
  413. Sliced_cc, /* HANC */
  414. TS1_serial_mode,
  415. TS2,
  416. TS1_parallel_mode
  417. } ;
  418. struct cx231xx_video_mode {
  419. /* Isoc control struct */
  420. struct cx231xx_dmaqueue vidq;
  421. struct cx231xx_isoc_ctl isoc_ctl;
  422. struct cx231xx_bulk_ctl bulk_ctl;
  423. /* locks */
  424. spinlock_t slock;
  425. /* usb transfer */
  426. int alt; /* alternate */
  427. int max_pkt_size; /* max packet size of isoc transaction */
  428. int num_alt; /* Number of alternative settings */
  429. unsigned int *alt_max_pkt_size; /* array of wMaxPacketSize */
  430. u16 end_point_addr;
  431. };
  432. struct cx231xx_tsport {
  433. struct cx231xx *dev;
  434. int nr;
  435. int sram_chno;
  436. struct videobuf_dvb_frontends frontends;
  437. /* dma queues */
  438. u32 ts_packet_size;
  439. u32 ts_packet_count;
  440. int width;
  441. int height;
  442. /* locks */
  443. spinlock_t slock;
  444. /* registers */
  445. u32 reg_gpcnt;
  446. u32 reg_gpcnt_ctl;
  447. u32 reg_dma_ctl;
  448. u32 reg_lngth;
  449. u32 reg_hw_sop_ctrl;
  450. u32 reg_gen_ctrl;
  451. u32 reg_bd_pkt_status;
  452. u32 reg_sop_status;
  453. u32 reg_fifo_ovfl_stat;
  454. u32 reg_vld_misc;
  455. u32 reg_ts_clk_en;
  456. u32 reg_ts_int_msk;
  457. u32 reg_ts_int_stat;
  458. u32 reg_src_sel;
  459. /* Default register vals */
  460. int pci_irqmask;
  461. u32 dma_ctl_val;
  462. u32 ts_int_msk_val;
  463. u32 gen_ctrl_val;
  464. u32 ts_clk_en_val;
  465. u32 src_sel_val;
  466. u32 vld_misc_val;
  467. u32 hw_sop_ctrl_val;
  468. /* Allow a single tsport to have multiple frontends */
  469. u32 num_frontends;
  470. void *port_priv;
  471. };
  472. /* main device struct */
  473. struct cx231xx {
  474. /* generic device properties */
  475. char name[30]; /* name (including minor) of the device */
  476. int model; /* index in the device_data struct */
  477. int devno; /* marks the number of this device */
  478. struct device *dev; /* pointer to USB interface's dev */
  479. struct cx231xx_board board;
  480. /* For I2C IR support */
  481. struct IR_i2c_init_data init_data;
  482. struct i2c_client *ir_i2c_client;
  483. unsigned int stream_on:1; /* Locks streams */
  484. unsigned int vbi_stream_on:1; /* Locks streams for VBI */
  485. unsigned int has_audio_class:1;
  486. unsigned int has_alsa_audio:1;
  487. unsigned int i2c_scan_running:1; /* true only during i2c_scan */
  488. struct cx231xx_fmt *format;
  489. struct v4l2_device v4l2_dev;
  490. struct v4l2_subdev *sd_cx25840;
  491. struct v4l2_subdev *sd_tuner;
  492. struct v4l2_ctrl_handler ctrl_handler;
  493. struct v4l2_ctrl_handler radio_ctrl_handler;
  494. struct cx2341x_handler mpeg_ctrl_handler;
  495. struct work_struct wq_trigger; /* Trigger to start/stop audio for alsa module */
  496. atomic_t stream_started; /* stream should be running if true */
  497. struct list_head devlist;
  498. int tuner_type; /* type of the tuner */
  499. int tuner_addr; /* tuner address */
  500. /* I2C adapters: Master 1 & 2 (External) & Master 3 (Internal only) */
  501. struct cx231xx_i2c i2c_bus[3];
  502. struct i2c_mux_core *muxc;
  503. struct i2c_adapter *i2c_mux_adap[2];
  504. unsigned int xc_fw_load_done:1;
  505. unsigned int port_3_switch_enabled:1;
  506. /* locks */
  507. struct mutex gpio_i2c_lock;
  508. struct mutex i2c_lock;
  509. /* video for linux */
  510. int users; /* user count for exclusive use */
  511. struct video_device vdev; /* video for linux device struct */
  512. v4l2_std_id norm; /* selected tv norm */
  513. int ctl_freq; /* selected frequency */
  514. unsigned int ctl_ainput; /* selected audio input */
  515. /* frame properties */
  516. int width; /* current frame width */
  517. int height; /* current frame height */
  518. int interlaced; /* 1=interlace fileds, 0=just top fileds */
  519. struct cx231xx_audio adev;
  520. /* states */
  521. enum cx231xx_dev_state state;
  522. struct work_struct request_module_wk;
  523. /* locks */
  524. struct mutex lock;
  525. struct mutex ctrl_urb_lock; /* protects urb_buf */
  526. struct list_head inqueue, outqueue;
  527. wait_queue_head_t open, wait_frame, wait_stream;
  528. struct video_device vbi_dev;
  529. struct video_device radio_dev;
  530. #if defined(CONFIG_MEDIA_CONTROLLER)
  531. struct media_device *media_dev;
  532. struct media_pad video_pad, vbi_pad;
  533. struct media_entity input_ent[MAX_CX231XX_INPUT];
  534. struct media_pad input_pad[MAX_CX231XX_INPUT];
  535. #endif
  536. unsigned char eedata[256];
  537. struct cx231xx_video_mode video_mode;
  538. struct cx231xx_video_mode vbi_mode;
  539. struct cx231xx_video_mode sliced_cc_mode;
  540. struct cx231xx_video_mode ts1_mode;
  541. atomic_t devlist_count;
  542. struct usb_device *udev; /* the usb device */
  543. char urb_buf[URB_MAX_CTRL_SIZE]; /* urb control msg buffer */
  544. /* helper funcs that call usb_control_msg */
  545. int (*cx231xx_read_ctrl_reg) (struct cx231xx *dev, u8 req, u16 reg,
  546. char *buf, int len);
  547. int (*cx231xx_write_ctrl_reg) (struct cx231xx *dev, u8 req, u16 reg,
  548. char *buf, int len);
  549. int (*cx231xx_send_usb_command) (struct cx231xx_i2c *i2c_bus,
  550. struct cx231xx_i2c_xfer_data *req_data);
  551. int (*cx231xx_gpio_i2c_read) (struct cx231xx *dev, u8 dev_addr,
  552. u8 *buf, u8 len);
  553. int (*cx231xx_gpio_i2c_write) (struct cx231xx *dev, u8 dev_addr,
  554. u8 *buf, u8 len);
  555. int (*cx231xx_set_analog_freq) (struct cx231xx *dev, u32 freq);
  556. int (*cx231xx_reset_analog_tuner) (struct cx231xx *dev);
  557. enum cx231xx_mode mode;
  558. struct cx231xx_dvb *dvb;
  559. /* Cx231xx supported PCB config's */
  560. struct pcb_config current_pcb_config;
  561. u8 current_scenario_idx;
  562. u8 interface_count;
  563. u8 max_iad_interface_count;
  564. /* GPIO related register direction and values */
  565. u32 gpio_dir;
  566. u32 gpio_val;
  567. /* Power Modes */
  568. int power_mode;
  569. /* afe parameters */
  570. enum AFE_MODE afe_mode;
  571. u32 afe_ref_count;
  572. /* video related parameters */
  573. u32 video_input;
  574. u32 active_mode;
  575. u8 vbi_or_sliced_cc_mode; /* 0 - vbi ; 1 - sliced cc mode */
  576. enum cx231xx_std_mode std_mode; /* 0 - Air; 1 - cable */
  577. /*mode: digital=1 or analog=0*/
  578. u8 mode_tv;
  579. u8 USE_ISO;
  580. struct cx231xx_tvnorm encodernorm;
  581. struct cx231xx_tsport ts1, ts2;
  582. struct video_device v4l_device;
  583. atomic_t v4l_reader_count;
  584. u32 freq;
  585. unsigned int input;
  586. u32 cx23417_mailbox;
  587. u32 __iomem *lmmio;
  588. u8 __iomem *bmmio;
  589. };
  590. extern struct list_head cx231xx_devlist;
  591. #define cx25840_call(cx231xx, o, f, args...) \
  592. v4l2_subdev_call(cx231xx->sd_cx25840, o, f, ##args)
  593. #define tuner_call(cx231xx, o, f, args...) \
  594. v4l2_subdev_call(cx231xx->sd_tuner, o, f, ##args)
  595. #define call_all(dev, o, f, args...) \
  596. v4l2_device_call_until_err(&dev->v4l2_dev, 0, o, f, ##args)
  597. struct cx231xx_ops {
  598. struct list_head next;
  599. char *name;
  600. int id;
  601. int (*init) (struct cx231xx *);
  602. int (*fini) (struct cx231xx *);
  603. };
  604. /* call back functions in dvb module */
  605. int cx231xx_set_analog_freq(struct cx231xx *dev, u32 freq);
  606. int cx231xx_reset_analog_tuner(struct cx231xx *dev);
  607. /* Provided by cx231xx-i2c.c */
  608. void cx231xx_do_i2c_scan(struct cx231xx *dev, int i2c_port);
  609. int cx231xx_i2c_register(struct cx231xx_i2c *bus);
  610. int cx231xx_i2c_unregister(struct cx231xx_i2c *bus);
  611. int cx231xx_i2c_mux_create(struct cx231xx *dev);
  612. int cx231xx_i2c_mux_register(struct cx231xx *dev, int mux_no);
  613. void cx231xx_i2c_mux_unregister(struct cx231xx *dev);
  614. struct i2c_adapter *cx231xx_get_i2c_adap(struct cx231xx *dev, int i2c_port);
  615. /* Internal block control functions */
  616. int cx231xx_read_i2c_master(struct cx231xx *dev, u8 dev_addr, u16 saddr,
  617. u8 saddr_len, u32 *data, u8 data_len, int master);
  618. int cx231xx_write_i2c_master(struct cx231xx *dev, u8 dev_addr, u16 saddr,
  619. u8 saddr_len, u32 data, u8 data_len, int master);
  620. int cx231xx_read_i2c_data(struct cx231xx *dev, u8 dev_addr,
  621. u16 saddr, u8 saddr_len, u32 *data, u8 data_len);
  622. int cx231xx_write_i2c_data(struct cx231xx *dev, u8 dev_addr,
  623. u16 saddr, u8 saddr_len, u32 data, u8 data_len);
  624. int cx231xx_reg_mask_write(struct cx231xx *dev, u8 dev_addr, u8 size,
  625. u16 register_address, u8 bit_start, u8 bit_end,
  626. u32 value);
  627. int cx231xx_read_modify_write_i2c_dword(struct cx231xx *dev, u8 dev_addr,
  628. u16 saddr, u32 mask, u32 value);
  629. u32 cx231xx_set_field(u32 field_mask, u32 data);
  630. /*verve r/w*/
  631. void initGPIO(struct cx231xx *dev);
  632. void uninitGPIO(struct cx231xx *dev);
  633. /* afe related functions */
  634. int cx231xx_afe_init_super_block(struct cx231xx *dev, u32 ref_count);
  635. int cx231xx_afe_init_channels(struct cx231xx *dev);
  636. int cx231xx_afe_setup_AFE_for_baseband(struct cx231xx *dev);
  637. int cx231xx_afe_set_input_mux(struct cx231xx *dev, u32 input_mux);
  638. int cx231xx_afe_set_mode(struct cx231xx *dev, enum AFE_MODE mode);
  639. int cx231xx_afe_update_power_control(struct cx231xx *dev,
  640. enum AV_MODE avmode);
  641. int cx231xx_afe_adjust_ref_count(struct cx231xx *dev, u32 video_input);
  642. /* i2s block related functions */
  643. int cx231xx_i2s_blk_initialize(struct cx231xx *dev);
  644. int cx231xx_i2s_blk_update_power_control(struct cx231xx *dev,
  645. enum AV_MODE avmode);
  646. int cx231xx_i2s_blk_set_audio_input(struct cx231xx *dev, u8 audio_input);
  647. /* DIF related functions */
  648. int cx231xx_dif_configure_C2HH_for_low_IF(struct cx231xx *dev, u32 mode,
  649. u32 function_mode, u32 standard);
  650. void cx231xx_set_Colibri_For_LowIF(struct cx231xx *dev, u32 if_freq,
  651. u8 spectral_invert, u32 mode);
  652. u32 cx231xx_Get_Colibri_CarrierOffset(u32 mode, u32 standerd);
  653. void cx231xx_set_DIF_bandpass(struct cx231xx *dev, u32 if_freq,
  654. u8 spectral_invert, u32 mode);
  655. void cx231xx_Setup_AFE_for_LowIF(struct cx231xx *dev);
  656. void reset_s5h1432_demod(struct cx231xx *dev);
  657. void cx231xx_dump_HH_reg(struct cx231xx *dev);
  658. void update_HH_register_after_set_DIF(struct cx231xx *dev);
  659. int cx231xx_dif_set_standard(struct cx231xx *dev, u32 standard);
  660. int cx231xx_tuner_pre_channel_change(struct cx231xx *dev);
  661. int cx231xx_tuner_post_channel_change(struct cx231xx *dev);
  662. /* video parser functions */
  663. u8 cx231xx_find_next_SAV_EAV(u8 *p_buffer, u32 buffer_size,
  664. u32 *p_bytes_used);
  665. u8 cx231xx_find_boundary_SAV_EAV(u8 *p_buffer, u8 *partial_buf,
  666. u32 *p_bytes_used);
  667. int cx231xx_do_copy(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
  668. u8 *p_buffer, u32 bytes_to_copy);
  669. void cx231xx_reset_video_buffer(struct cx231xx *dev,
  670. struct cx231xx_dmaqueue *dma_q);
  671. u8 cx231xx_is_buffer_done(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q);
  672. u32 cx231xx_copy_video_line(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
  673. u8 *p_line, u32 length, int field_number);
  674. u32 cx231xx_get_video_line(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
  675. u8 sav_eav, u8 *p_buffer, u32 buffer_size);
  676. void cx231xx_swab(u16 *from, u16 *to, u16 len);
  677. /* Provided by cx231xx-core.c */
  678. u32 cx231xx_request_buffers(struct cx231xx *dev, u32 count);
  679. void cx231xx_queue_unusedframes(struct cx231xx *dev);
  680. void cx231xx_release_buffers(struct cx231xx *dev);
  681. /* read from control pipe */
  682. int cx231xx_read_ctrl_reg(struct cx231xx *dev, u8 req, u16 reg,
  683. char *buf, int len);
  684. /* write to control pipe */
  685. int cx231xx_write_ctrl_reg(struct cx231xx *dev, u8 req, u16 reg,
  686. char *buf, int len);
  687. int cx231xx_mode_register(struct cx231xx *dev, u16 address, u32 mode);
  688. int cx231xx_send_vendor_cmd(struct cx231xx *dev,
  689. struct VENDOR_REQUEST_IN *ven_req);
  690. int cx231xx_send_usb_command(struct cx231xx_i2c *i2c_bus,
  691. struct cx231xx_i2c_xfer_data *req_data);
  692. /* Gpio related functions */
  693. int cx231xx_send_gpio_cmd(struct cx231xx *dev, u32 gpio_bit, u8 *gpio_val,
  694. u8 len, u8 request, u8 direction);
  695. int cx231xx_set_gpio_value(struct cx231xx *dev, int pin_number, int pin_value);
  696. int cx231xx_set_gpio_direction(struct cx231xx *dev, int pin_number,
  697. int pin_value);
  698. int cx231xx_gpio_i2c_start(struct cx231xx *dev);
  699. int cx231xx_gpio_i2c_end(struct cx231xx *dev);
  700. int cx231xx_gpio_i2c_write_byte(struct cx231xx *dev, u8 data);
  701. int cx231xx_gpio_i2c_read_byte(struct cx231xx *dev, u8 *buf);
  702. int cx231xx_gpio_i2c_read_ack(struct cx231xx *dev);
  703. int cx231xx_gpio_i2c_write_ack(struct cx231xx *dev);
  704. int cx231xx_gpio_i2c_write_nak(struct cx231xx *dev);
  705. int cx231xx_gpio_i2c_read(struct cx231xx *dev, u8 dev_addr, u8 *buf, u8 len);
  706. int cx231xx_gpio_i2c_write(struct cx231xx *dev, u8 dev_addr, u8 *buf, u8 len);
  707. /* audio related functions */
  708. int cx231xx_set_audio_decoder_input(struct cx231xx *dev,
  709. enum AUDIO_INPUT audio_input);
  710. int cx231xx_capture_start(struct cx231xx *dev, int start, u8 media_type);
  711. int cx231xx_set_video_alternate(struct cx231xx *dev);
  712. int cx231xx_set_alt_setting(struct cx231xx *dev, u8 index, u8 alt);
  713. int is_fw_load(struct cx231xx *dev);
  714. int cx231xx_check_fw(struct cx231xx *dev);
  715. int cx231xx_init_isoc(struct cx231xx *dev, int max_packets,
  716. int num_bufs, int max_pkt_size,
  717. int (*isoc_copy) (struct cx231xx *dev,
  718. struct urb *urb));
  719. int cx231xx_init_bulk(struct cx231xx *dev, int max_packets,
  720. int num_bufs, int max_pkt_size,
  721. int (*bulk_copy) (struct cx231xx *dev,
  722. struct urb *urb));
  723. void cx231xx_stop_TS1(struct cx231xx *dev);
  724. void cx231xx_start_TS1(struct cx231xx *dev);
  725. void cx231xx_uninit_isoc(struct cx231xx *dev);
  726. void cx231xx_uninit_bulk(struct cx231xx *dev);
  727. int cx231xx_set_mode(struct cx231xx *dev, enum cx231xx_mode set_mode);
  728. int cx231xx_unmute_audio(struct cx231xx *dev);
  729. int cx231xx_ep5_bulkout(struct cx231xx *dev, u8 *firmware, u16 size);
  730. void cx231xx_disable656(struct cx231xx *dev);
  731. void cx231xx_enable656(struct cx231xx *dev);
  732. int cx231xx_demod_reset(struct cx231xx *dev);
  733. int cx231xx_gpio_set(struct cx231xx *dev, struct cx231xx_reg_seq *gpio);
  734. /* Device list functions */
  735. void cx231xx_release_resources(struct cx231xx *dev);
  736. void cx231xx_release_analog_resources(struct cx231xx *dev);
  737. int cx231xx_register_analog_devices(struct cx231xx *dev);
  738. void cx231xx_remove_from_devlist(struct cx231xx *dev);
  739. void cx231xx_add_into_devlist(struct cx231xx *dev);
  740. void cx231xx_init_extension(struct cx231xx *dev);
  741. void cx231xx_close_extension(struct cx231xx *dev);
  742. /* hardware init functions */
  743. int cx231xx_dev_init(struct cx231xx *dev);
  744. void cx231xx_dev_uninit(struct cx231xx *dev);
  745. void cx231xx_config_i2c(struct cx231xx *dev);
  746. int cx231xx_config(struct cx231xx *dev);
  747. /* Stream control functions */
  748. int cx231xx_start_stream(struct cx231xx *dev, u32 ep_mask);
  749. int cx231xx_stop_stream(struct cx231xx *dev, u32 ep_mask);
  750. int cx231xx_initialize_stream_xfer(struct cx231xx *dev, u32 media_type);
  751. /* Power control functions */
  752. int cx231xx_set_power_mode(struct cx231xx *dev, enum AV_MODE mode);
  753. int cx231xx_power_suspend(struct cx231xx *dev);
  754. /* chip specific control functions */
  755. int cx231xx_init_ctrl_pin_status(struct cx231xx *dev);
  756. int cx231xx_set_agc_analog_digital_mux_select(struct cx231xx *dev,
  757. u8 analog_or_digital);
  758. int cx231xx_enable_i2c_port_3(struct cx231xx *dev, bool is_port_3);
  759. /* video audio decoder related functions */
  760. void video_mux(struct cx231xx *dev, int index);
  761. int cx231xx_set_video_input_mux(struct cx231xx *dev, u8 input);
  762. int cx231xx_set_decoder_video_input(struct cx231xx *dev, u8 pin_type, u8 input);
  763. int cx231xx_do_mode_ctrl_overrides(struct cx231xx *dev);
  764. int cx231xx_set_audio_input(struct cx231xx *dev, u8 input);
  765. /* Provided by cx231xx-video.c */
  766. int cx231xx_register_extension(struct cx231xx_ops *dev);
  767. void cx231xx_unregister_extension(struct cx231xx_ops *dev);
  768. void cx231xx_init_extension(struct cx231xx *dev);
  769. void cx231xx_close_extension(struct cx231xx *dev);
  770. void cx231xx_v4l2_create_entities(struct cx231xx *dev);
  771. int cx231xx_querycap(struct file *file, void *priv,
  772. struct v4l2_capability *cap);
  773. int cx231xx_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t);
  774. int cx231xx_s_tuner(struct file *file, void *priv, const struct v4l2_tuner *t);
  775. int cx231xx_g_frequency(struct file *file, void *priv,
  776. struct v4l2_frequency *f);
  777. int cx231xx_s_frequency(struct file *file, void *priv,
  778. const struct v4l2_frequency *f);
  779. int cx231xx_enum_input(struct file *file, void *priv,
  780. struct v4l2_input *i);
  781. int cx231xx_g_input(struct file *file, void *priv, unsigned int *i);
  782. int cx231xx_s_input(struct file *file, void *priv, unsigned int i);
  783. int cx231xx_g_chip_info(struct file *file, void *fh, struct v4l2_dbg_chip_info *chip);
  784. int cx231xx_g_register(struct file *file, void *priv,
  785. struct v4l2_dbg_register *reg);
  786. int cx231xx_s_register(struct file *file, void *priv,
  787. const struct v4l2_dbg_register *reg);
  788. /* Provided by cx231xx-cards.c */
  789. extern void cx231xx_pre_card_setup(struct cx231xx *dev);
  790. extern void cx231xx_card_setup(struct cx231xx *dev);
  791. extern struct cx231xx_board cx231xx_boards[];
  792. extern struct usb_device_id cx231xx_id_table[];
  793. extern const unsigned int cx231xx_bcount;
  794. int cx231xx_tuner_callback(void *ptr, int component, int command, int arg);
  795. /* cx23885-417.c */
  796. extern int cx231xx_417_register(struct cx231xx *dev);
  797. extern void cx231xx_417_unregister(struct cx231xx *dev);
  798. /* cx23885-input.c */
  799. #if defined(CONFIG_VIDEO_CX231XX_RC)
  800. int cx231xx_ir_init(struct cx231xx *dev);
  801. void cx231xx_ir_exit(struct cx231xx *dev);
  802. #else
  803. static inline int cx231xx_ir_init(struct cx231xx *dev)
  804. {
  805. return 0;
  806. }
  807. static inline void cx231xx_ir_exit(struct cx231xx *dev) {}
  808. #endif
  809. static inline unsigned int norm_maxw(struct cx231xx *dev)
  810. {
  811. if (dev->board.max_range_640_480)
  812. return 640;
  813. else
  814. return 720;
  815. }
  816. static inline unsigned int norm_maxh(struct cx231xx *dev)
  817. {
  818. if (dev->board.max_range_640_480)
  819. return 480;
  820. else
  821. return (dev->norm & V4L2_STD_625_50) ? 576 : 480;
  822. }
  823. #endif