PageRenderTime 56ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 1ms

/drivers/staging/tm6000/tm6000.h

https://github.com/genesi/linux-shortbus
C Header | 357 lines | 223 code | 75 blank | 59 comment | 3 complexity | ba26e31ee484602bd139a59e0333bacb MD5 | raw file
  1. /*
  2. * tm6000.h - driver for TM5600/TM6000/TM6010 USB video capture devices
  3. *
  4. * Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
  5. *
  6. * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
  7. * - DVB-T support
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation version 2
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. /* Use the tm6000-hack, instead of the proper initialization code i*/
  23. /* #define HACK 1 */
  24. #include <linux/videodev2.h>
  25. #include <media/v4l2-common.h>
  26. #include <media/videobuf-vmalloc.h>
  27. #include "tm6000-usb-isoc.h"
  28. #include <linux/i2c.h>
  29. #include <linux/mutex.h>
  30. #include <media/v4l2-device.h>
  31. #include <linux/dvb/frontend.h>
  32. #include "dvb_demux.h"
  33. #include "dvb_frontend.h"
  34. #include "dmxdev.h"
  35. #define TM6000_VERSION KERNEL_VERSION(0, 0, 2)
  36. /* Inputs */
  37. enum tm6000_itype {
  38. TM6000_INPUT_TV = 0,
  39. TM6000_INPUT_COMPOSITE,
  40. TM6000_INPUT_SVIDEO,
  41. };
  42. enum tm6000_devtype {
  43. TM6000 = 0,
  44. TM5600,
  45. TM6010,
  46. };
  47. /* ------------------------------------------------------------------
  48. * Basic structures
  49. * ------------------------------------------------------------------
  50. */
  51. struct tm6000_fmt {
  52. char *name;
  53. u32 fourcc; /* v4l2 format id */
  54. int depth;
  55. };
  56. /* buffer for one video frame */
  57. struct tm6000_buffer {
  58. /* common v4l buffer stuff -- must be first */
  59. struct videobuf_buffer vb;
  60. struct tm6000_fmt *fmt;
  61. };
  62. struct tm6000_dmaqueue {
  63. struct list_head active;
  64. struct list_head queued;
  65. /* thread for generating video stream*/
  66. struct task_struct *kthread;
  67. wait_queue_head_t wq;
  68. /* Counters to control fps rate */
  69. int frame;
  70. int ini_jiffies;
  71. };
  72. /* device states */
  73. enum tm6000_core_state {
  74. DEV_INITIALIZED = 0x01,
  75. DEV_DISCONNECTED = 0x02,
  76. DEV_MISCONFIGURED = 0x04,
  77. };
  78. /* io methods */
  79. enum tm6000_io_method {
  80. IO_NONE,
  81. IO_READ,
  82. IO_MMAP,
  83. };
  84. enum tm6000_mode {
  85. TM6000_MODE_UNKNOWN = 0,
  86. TM6000_MODE_ANALOG,
  87. TM6000_MODE_DIGITAL,
  88. };
  89. struct tm6000_gpio {
  90. int tuner_reset;
  91. int tuner_on;
  92. int demod_reset;
  93. int demod_on;
  94. int power_led;
  95. int dvb_led;
  96. int ir;
  97. };
  98. struct tm6000_capabilities {
  99. unsigned int has_tuner:1;
  100. unsigned int has_tda9874:1;
  101. unsigned int has_dvb:1;
  102. unsigned int has_zl10353:1;
  103. unsigned int has_eeprom:1;
  104. unsigned int has_remote:1;
  105. };
  106. struct tm6000_dvb {
  107. struct dvb_adapter adapter;
  108. struct dvb_demux demux;
  109. struct dvb_frontend *frontend;
  110. struct dmxdev dmxdev;
  111. unsigned int streams;
  112. struct urb *bulk_urb;
  113. struct mutex mutex;
  114. };
  115. struct snd_tm6000_card {
  116. struct snd_card *card;
  117. spinlock_t reg_lock;
  118. struct tm6000_core *core;
  119. struct snd_pcm_substream *substream;
  120. /* temporary data for buffer fill processing */
  121. unsigned buf_pos;
  122. unsigned period_pos;
  123. };
  124. struct tm6000_endpoint {
  125. struct usb_host_endpoint *endp;
  126. __u8 bInterfaceNumber;
  127. __u8 bAlternateSetting;
  128. unsigned maxsize;
  129. };
  130. struct tm6000_core {
  131. /* generic device properties */
  132. char name[30]; /* name (including minor) of the device */
  133. int model; /* index in the device_data struct */
  134. int devno; /* marks the number of this device */
  135. enum tm6000_devtype dev_type; /* type of device */
  136. v4l2_std_id norm; /* Current norm */
  137. int width, height; /* Selected resolution */
  138. enum tm6000_core_state state;
  139. /* Device Capabilities*/
  140. struct tm6000_capabilities caps;
  141. /* Tuner configuration */
  142. int tuner_type; /* type of the tuner */
  143. int tuner_addr; /* tuner address */
  144. struct tm6000_gpio gpio;
  145. char *ir_codes;
  146. /* Demodulator configuration */
  147. int demod_addr; /* demodulator address */
  148. int audio_bitrate;
  149. /* i2c i/o */
  150. struct i2c_adapter i2c_adap;
  151. struct i2c_client i2c_client;
  152. /* extension */
  153. struct list_head devlist;
  154. /* video for linux */
  155. int users;
  156. /* various device info */
  157. struct tm6000_fh *resources; /* Points to fh that is streaming */
  158. bool is_res_read;
  159. struct video_device *vfd;
  160. struct tm6000_dmaqueue vidq;
  161. struct v4l2_device v4l2_dev;
  162. int input;
  163. int freq;
  164. unsigned int fourcc;
  165. enum tm6000_mode mode;
  166. /* DVB-T support */
  167. struct tm6000_dvb *dvb;
  168. /* audio support */
  169. struct snd_tm6000_card *adev;
  170. struct work_struct wq_trigger; /* Trigger to start/stop audio for alsa module */
  171. atomic_t stream_started; /* stream should be running if true */
  172. struct tm6000_IR *ir;
  173. /* locks */
  174. struct mutex lock;
  175. /* usb transfer */
  176. struct usb_device *udev; /* the usb device */
  177. struct tm6000_endpoint bulk_in, bulk_out, isoc_in, isoc_out;
  178. struct tm6000_endpoint int_in, int_out;
  179. /* scaler!=0 if scaler is active*/
  180. int scaler;
  181. /* Isoc control struct */
  182. struct usb_isoc_ctl isoc_ctl;
  183. spinlock_t slock;
  184. };
  185. enum tm6000_ops_type {
  186. TM6000_AUDIO = 0x10,
  187. TM6000_DVB = 0x20,
  188. };
  189. struct tm6000_ops {
  190. struct list_head next;
  191. char *name;
  192. enum tm6000_ops_type type;
  193. int (*init)(struct tm6000_core *);
  194. int (*fini)(struct tm6000_core *);
  195. int (*fillbuf)(struct tm6000_core *, char *buf, int size);
  196. };
  197. struct tm6000_fh {
  198. struct tm6000_core *dev;
  199. /* video capture */
  200. struct tm6000_fmt *fmt;
  201. unsigned int width, height;
  202. struct videobuf_queue vb_vidq;
  203. enum v4l2_buf_type type;
  204. };
  205. #define TM6000_STD (V4L2_STD_PAL|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc| \
  206. V4L2_STD_PAL_M|V4L2_STD_PAL_60|V4L2_STD_NTSC_M| \
  207. V4L2_STD_NTSC_M_JP|V4L2_STD_SECAM)
  208. /* In tm6000-cards.c */
  209. int tm6000_tuner_callback(void *ptr, int component, int command, int arg);
  210. int tm6000_xc5000_callback(void *ptr, int component, int command, int arg);
  211. int tm6000_cards_setup(struct tm6000_core *dev);
  212. void tm6000_flash_led(struct tm6000_core *dev, u8 state);
  213. /* In tm6000-core.c */
  214. int tm6000_read_write_usb(struct tm6000_core *dev, u8 reqtype, u8 req,
  215. u16 value, u16 index, u8 *buf, u16 len);
  216. int tm6000_get_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index);
  217. int tm6000_get_reg16(struct tm6000_core *dev, u8 req, u16 value, u16 index);
  218. int tm6000_get_reg32(struct tm6000_core *dev, u8 req, u16 value, u16 index);
  219. int tm6000_set_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index);
  220. int tm6000_i2c_reset(struct tm6000_core *dev, u16 tsleep);
  221. int tm6000_init(struct tm6000_core *dev);
  222. int tm6000_init_analog_mode(struct tm6000_core *dev);
  223. int tm6000_init_digital_mode(struct tm6000_core *dev);
  224. int tm6000_set_audio_bitrate(struct tm6000_core *dev, int bitrate);
  225. int tm6000_v4l2_register(struct tm6000_core *dev);
  226. int tm6000_v4l2_unregister(struct tm6000_core *dev);
  227. int tm6000_v4l2_exit(void);
  228. void tm6000_set_fourcc_format(struct tm6000_core *dev);
  229. void tm6000_remove_from_devlist(struct tm6000_core *dev);
  230. void tm6000_add_into_devlist(struct tm6000_core *dev);
  231. int tm6000_register_extension(struct tm6000_ops *ops);
  232. void tm6000_unregister_extension(struct tm6000_ops *ops);
  233. void tm6000_init_extension(struct tm6000_core *dev);
  234. void tm6000_close_extension(struct tm6000_core *dev);
  235. int tm6000_call_fillbuf(struct tm6000_core *dev, enum tm6000_ops_type type,
  236. char *buf, int size);
  237. /* In tm6000-stds.c */
  238. void tm6000_get_std_res(struct tm6000_core *dev);
  239. int tm6000_set_standard(struct tm6000_core *dev, v4l2_std_id *norm);
  240. /* In tm6000-i2c.c */
  241. int tm6000_i2c_register(struct tm6000_core *dev);
  242. int tm6000_i2c_unregister(struct tm6000_core *dev);
  243. /* In tm6000-queue.c */
  244. int tm6000_v4l2_mmap(struct file *filp, struct vm_area_struct *vma);
  245. int tm6000_vidioc_streamon(struct file *file, void *priv,
  246. enum v4l2_buf_type i);
  247. int tm6000_vidioc_streamoff(struct file *file, void *priv,
  248. enum v4l2_buf_type i);
  249. int tm6000_vidioc_reqbufs(struct file *file, void *priv,
  250. struct v4l2_requestbuffers *rb);
  251. int tm6000_vidioc_querybuf(struct file *file, void *priv,
  252. struct v4l2_buffer *b);
  253. int tm6000_vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b);
  254. int tm6000_vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b);
  255. ssize_t tm6000_v4l2_read(struct file *filp, char __user * buf, size_t count,
  256. loff_t *f_pos);
  257. unsigned int tm6000_v4l2_poll(struct file *file,
  258. struct poll_table_struct *wait);
  259. int tm6000_queue_init(struct tm6000_core *dev);
  260. /* In tm6000-alsa.c */
  261. /*int tm6000_audio_init(struct tm6000_core *dev, int idx);*/
  262. /* In tm6000-input.c */
  263. int tm6000_ir_init(struct tm6000_core *dev);
  264. int tm6000_ir_fini(struct tm6000_core *dev);
  265. void tm6000_ir_wait(struct tm6000_core *dev, u8 state);
  266. int tm6000_ir_int_start(struct tm6000_core *dev);
  267. void tm6000_ir_int_stop(struct tm6000_core *dev);
  268. /* Debug stuff */
  269. extern int tm6000_debug;
  270. #define dprintk(dev, level, fmt, arg...) do {\
  271. if (tm6000_debug & level) \
  272. printk(KERN_INFO "(%lu) %s %s :"fmt, jiffies, \
  273. dev->name, __FUNCTION__ , ##arg); } while (0)
  274. #define V4L2_DEBUG_REG 0x0004
  275. #define V4L2_DEBUG_I2C 0x0008
  276. #define V4L2_DEBUG_QUEUE 0x0010
  277. #define V4L2_DEBUG_ISOC 0x0020
  278. #define V4L2_DEBUG_RES_LOCK 0x0040 /* Resource locking */
  279. #define V4L2_DEBUG_OPEN 0x0080 /* video open/close debug */
  280. #define tm6000_err(fmt, arg...) do {\
  281. printk(KERN_ERR "tm6000 %s :"fmt, \
  282. __FUNCTION__ , ##arg); } while (0)