Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 1 | /* |
Janne Grunau | e86da6f | 2009-03-19 19:00:35 -0300 | [diff] [blame] | 2 | * Hauppauge HD PVR USB driver |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2008 Janne Grunau (j@jannau.net) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation, version 2. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #include <linux/usb.h> |
| 13 | #include <linux/i2c.h> |
| 14 | #include <linux/mutex.h> |
| 15 | #include <linux/workqueue.h> |
| 16 | #include <linux/videodev2.h> |
| 17 | |
Janne Grunau | 06630aec9 | 2009-03-27 20:01:40 -0300 | [diff] [blame] | 18 | #include <media/v4l2-device.h> |
Hans Verkuil | 99c77aa | 2013-03-19 09:30:50 -0300 | [diff] [blame] | 19 | #include <media/v4l2-ctrls.h> |
Andy Walls | ea6c060 | 2010-12-28 22:46:13 -0300 | [diff] [blame] | 20 | #include <media/ir-kbd-i2c.h> |
Janne Grunau | 06630aec9 | 2009-03-27 20:01:40 -0300 | [diff] [blame] | 21 | |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 22 | #define HDPVR_MAX 8 |
Jarod Wilson | 559d162 | 2011-01-14 16:40:32 -0300 | [diff] [blame] | 23 | #define HDPVR_I2C_MAX_SIZE 128 |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 24 | |
| 25 | /* Define these values to match your devices */ |
| 26 | #define HD_PVR_VENDOR_ID 0x2040 |
| 27 | #define HD_PVR_PRODUCT_ID 0x4900 |
| 28 | #define HD_PVR_PRODUCT_ID1 0x4901 |
| 29 | #define HD_PVR_PRODUCT_ID2 0x4902 |
Janne Grunau | e902a68 | 2010-10-11 10:29:36 -0300 | [diff] [blame] | 30 | #define HD_PVR_PRODUCT_ID4 0x4903 |
Janne Grunau | c22425f | 2010-02-03 15:51:23 +0100 | [diff] [blame] | 31 | #define HD_PVR_PRODUCT_ID3 0x4982 |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 32 | |
| 33 | #define UNSET (-1U) |
| 34 | |
| 35 | #define NUM_BUFFERS 64 |
| 36 | |
Janne Grunau | 35b5366 | 2010-07-27 11:03:35 -0300 | [diff] [blame] | 37 | #define HDPVR_FIRMWARE_VERSION 0x08 |
| 38 | #define HDPVR_FIRMWARE_VERSION_AC3 0x0d |
| 39 | #define HDPVR_FIRMWARE_VERSION_0X12 0x12 |
| 40 | #define HDPVR_FIRMWARE_VERSION_0X15 0x15 |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 41 | |
| 42 | /* #define HDPVR_DEBUG */ |
| 43 | |
| 44 | extern int hdpvr_debug; |
| 45 | |
| 46 | #define MSG_INFO 1 |
| 47 | #define MSG_BUFFER 2 |
| 48 | |
| 49 | struct hdpvr_options { |
| 50 | u8 video_std; |
| 51 | u8 video_input; |
| 52 | u8 audio_input; |
| 53 | u8 bitrate; /* in 100kbps */ |
| 54 | u8 peak_bitrate; /* in 100kbps */ |
| 55 | u8 bitrate_mode; |
| 56 | u8 gop_mode; |
| 57 | enum v4l2_mpeg_audio_encoding audio_codec; |
| 58 | u8 brightness; |
| 59 | u8 contrast; |
| 60 | u8 hue; |
| 61 | u8 saturation; |
| 62 | u8 sharpness; |
| 63 | }; |
| 64 | |
| 65 | /* Structure to hold all of our device specific stuff */ |
| 66 | struct hdpvr_device { |
| 67 | /* the v4l device for this device */ |
| 68 | struct video_device *video_dev; |
Hans Verkuil | 99c77aa | 2013-03-19 09:30:50 -0300 | [diff] [blame] | 69 | /* the control handler for this device */ |
| 70 | struct v4l2_ctrl_handler hdl; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 71 | /* the usb device for this device */ |
| 72 | struct usb_device *udev; |
Janne Grunau | 06630aec9 | 2009-03-27 20:01:40 -0300 | [diff] [blame] | 73 | /* v4l2-device unused */ |
| 74 | struct v4l2_device v4l2_dev; |
Hans Verkuil | 99c77aa | 2013-03-19 09:30:50 -0300 | [diff] [blame] | 75 | struct { /* video mode/bitrate control cluster */ |
| 76 | struct v4l2_ctrl *video_mode; |
| 77 | struct v4l2_ctrl *video_bitrate; |
| 78 | struct v4l2_ctrl *video_bitrate_peak; |
| 79 | }; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 80 | |
| 81 | /* the max packet size of the bulk endpoint */ |
| 82 | size_t bulk_in_size; |
| 83 | /* the address of the bulk in endpoint */ |
| 84 | __u8 bulk_in_endpointAddr; |
| 85 | |
| 86 | /* holds the current device status */ |
| 87 | __u8 status; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 88 | |
| 89 | /* holds the cureent set options */ |
| 90 | struct hdpvr_options options; |
| 91 | |
| 92 | uint flags; |
| 93 | |
| 94 | /* synchronize I/O */ |
| 95 | struct mutex io_mutex; |
| 96 | /* available buffers */ |
| 97 | struct list_head free_buff_list; |
| 98 | /* in progress buffers */ |
| 99 | struct list_head rec_buff_list; |
| 100 | /* waitqueue for buffers */ |
| 101 | wait_queue_head_t wait_buffer; |
| 102 | /* waitqueue for data */ |
| 103 | wait_queue_head_t wait_data; |
| 104 | /**/ |
| 105 | struct workqueue_struct *workqueue; |
| 106 | /**/ |
| 107 | struct work_struct worker; |
Hans Verkuil | ede197a | 2013-04-06 06:00:17 -0300 | [diff] [blame] | 108 | /* current stream owner */ |
| 109 | struct v4l2_fh *owner; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 110 | |
| 111 | /* I2C adapter */ |
Jarod Wilson | 324b04b | 2011-01-14 16:25:21 -0300 | [diff] [blame] | 112 | struct i2c_adapter i2c_adapter; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 113 | /* I2C lock */ |
| 114 | struct mutex i2c_mutex; |
Jarod Wilson | 559d162 | 2011-01-14 16:40:32 -0300 | [diff] [blame] | 115 | /* I2C message buffer space */ |
| 116 | char i2c_buf[HDPVR_I2C_MAX_SIZE]; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 117 | |
Andy Walls | ea6c060 | 2010-12-28 22:46:13 -0300 | [diff] [blame] | 118 | /* For passing data to ir-kbd-i2c */ |
| 119 | struct IR_i2c_init_data ir_i2c_init_data; |
| 120 | |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 121 | /* usb control transfer buffer and lock */ |
| 122 | struct mutex usbc_mutex; |
| 123 | u8 *usbc_buf; |
Taylor Ralph | 8423c0c | 2011-10-20 23:33:23 -0300 | [diff] [blame] | 124 | u8 fw_ver; |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 125 | }; |
| 126 | |
Hans Verkuil | f2b305c | 2010-05-02 08:01:04 -0300 | [diff] [blame] | 127 | static inline struct hdpvr_device *to_hdpvr_dev(struct v4l2_device *v4l2_dev) |
| 128 | { |
| 129 | return container_of(v4l2_dev, struct hdpvr_device, v4l2_dev); |
| 130 | } |
| 131 | |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 132 | |
| 133 | /* buffer one bulk urb of data */ |
| 134 | struct hdpvr_buffer { |
| 135 | struct list_head buff_list; |
| 136 | |
| 137 | struct urb *urb; |
| 138 | |
| 139 | struct hdpvr_device *dev; |
| 140 | |
| 141 | uint pos; |
| 142 | |
| 143 | __u8 status; |
| 144 | }; |
| 145 | |
| 146 | /* */ |
| 147 | |
| 148 | struct hdpvr_video_info { |
| 149 | u16 width; |
| 150 | u16 height; |
| 151 | u8 fps; |
| 152 | }; |
| 153 | |
| 154 | enum { |
| 155 | STATUS_UNINITIALIZED = 0, |
| 156 | STATUS_IDLE, |
| 157 | STATUS_STARTING, |
| 158 | STATUS_SHUTTING_DOWN, |
| 159 | STATUS_STREAMING, |
| 160 | STATUS_ERROR, |
| 161 | STATUS_DISCONNECTED, |
| 162 | }; |
| 163 | |
| 164 | enum { |
| 165 | HDPVR_FLAG_AC3_CAP = 1, |
| 166 | }; |
| 167 | |
| 168 | enum { |
| 169 | BUFSTAT_UNINITIALIZED = 0, |
| 170 | BUFSTAT_AVAILABLE, |
| 171 | BUFSTAT_INPROGRESS, |
| 172 | BUFSTAT_READY, |
| 173 | }; |
| 174 | |
| 175 | #define CTRL_START_STREAMING_VALUE 0x0700 |
| 176 | #define CTRL_STOP_STREAMING_VALUE 0x0800 |
| 177 | #define CTRL_BITRATE_VALUE 0x1000 |
| 178 | #define CTRL_BITRATE_MODE_VALUE 0x1200 |
| 179 | #define CTRL_GOP_MODE_VALUE 0x1300 |
| 180 | #define CTRL_VIDEO_INPUT_VALUE 0x1500 |
| 181 | #define CTRL_VIDEO_STD_TYPE 0x1700 |
| 182 | #define CTRL_AUDIO_INPUT_VALUE 0x2500 |
| 183 | #define CTRL_BRIGHTNESS 0x2900 |
| 184 | #define CTRL_CONTRAST 0x2a00 |
| 185 | #define CTRL_HUE 0x2b00 |
| 186 | #define CTRL_SATURATION 0x2c00 |
| 187 | #define CTRL_SHARPNESS 0x2d00 |
| 188 | #define CTRL_LOW_PASS_FILTER_VALUE 0x3100 |
| 189 | |
| 190 | #define CTRL_DEFAULT_INDEX 0x0003 |
| 191 | |
| 192 | |
| 193 | /* :0 s 38 01 1000 0003 0004 4 = 0a00ca00 |
| 194 | * BITRATE SETTING |
| 195 | * 1st and 2nd byte (little endian): average bitrate in 100 000 bit/s |
| 196 | * min: 1 mbit/s, max: 13.5 mbit/s |
| 197 | * 3rd and 4th byte (little endian): peak bitrate in 100 000 bit/s |
| 198 | * min: average + 100kbit/s, |
| 199 | * max: 20.2 mbit/s |
| 200 | */ |
| 201 | |
| 202 | /* :0 s 38 01 1200 0003 0001 1 = 02 |
| 203 | * BIT RATE MODE |
| 204 | * constant = 1, variable (peak) = 2, variable (average) = 3 |
| 205 | */ |
| 206 | |
| 207 | /* :0 s 38 01 1300 0003 0001 1 = 03 |
| 208 | * GOP MODE (2 bit) |
| 209 | * low bit 0/1: advanced/simple GOP |
| 210 | * high bit 0/1: IDR(4/32/128) / no IDR (4/32/0) |
| 211 | */ |
| 212 | |
| 213 | /* :0 s 38 01 1700 0003 0001 1 = 00 |
| 214 | * VIDEO STANDARD or FREQUNCY 0 = 60hz, 1 = 50hz |
| 215 | */ |
| 216 | |
| 217 | /* :0 s 38 01 3100 0003 0004 4 = 03030000 |
| 218 | * FILTER CONTROL |
| 219 | * 1st byte luma low pass filter strength, |
| 220 | * 2nd byte chroma low pass filter strength, |
| 221 | * 3rd byte MF enable chroma, min=0, max=1 |
| 222 | * 4th byte n |
| 223 | */ |
| 224 | |
| 225 | |
| 226 | /* :0 s 38 b9 0001 0000 0000 0 */ |
| 227 | |
| 228 | |
| 229 | |
| 230 | /* :0 s 38 d3 0000 0000 0001 1 = 00 */ |
| 231 | /* ret = usb_control_msg(dev->udev, */ |
| 232 | /* usb_sndctrlpipe(dev->udev, 0), */ |
| 233 | /* 0xd3, 0x38, */ |
| 234 | /* 0, 0, */ |
| 235 | /* "\0", 1, */ |
| 236 | /* 1000); */ |
| 237 | |
| 238 | /* info("control request returned %d", ret); */ |
| 239 | /* msleep(5000); */ |
| 240 | |
| 241 | |
| 242 | /* :0 s b8 81 1400 0003 0005 5 < |
| 243 | * :0 0 5 = d0024002 19 |
| 244 | * QUERY FRAME SIZE AND RATE |
| 245 | * 1st and 2nd byte (little endian): horizontal resolution |
| 246 | * 3rd and 4th byte (little endian): vertical resolution |
| 247 | * 5th byte: frame rate |
| 248 | */ |
| 249 | |
| 250 | /* :0 s b8 81 1800 0003 0003 3 < |
| 251 | * :0 0 3 = 030104 |
| 252 | * QUERY SIGNAL AND DETECTED LINES, maybe INPUT |
| 253 | */ |
| 254 | |
| 255 | enum hdpvr_video_std { |
| 256 | HDPVR_60HZ = 0, |
| 257 | HDPVR_50HZ, |
| 258 | }; |
| 259 | |
| 260 | enum hdpvr_video_input { |
| 261 | HDPVR_COMPONENT = 0, |
| 262 | HDPVR_SVIDEO, |
| 263 | HDPVR_COMPOSITE, |
| 264 | HDPVR_VIDEO_INPUTS |
| 265 | }; |
| 266 | |
| 267 | enum hdpvr_audio_inputs { |
| 268 | HDPVR_RCA_BACK = 0, |
| 269 | HDPVR_RCA_FRONT, |
| 270 | HDPVR_SPDIF, |
| 271 | HDPVR_AUDIO_INPUTS |
| 272 | }; |
| 273 | |
| 274 | enum hdpvr_bitrate_mode { |
| 275 | HDPVR_CONSTANT = 1, |
| 276 | HDPVR_VARIABLE_PEAK, |
| 277 | HDPVR_VARIABLE_AVERAGE, |
| 278 | }; |
| 279 | |
| 280 | enum hdpvr_gop_mode { |
| 281 | HDPVR_ADVANCED_IDR_GOP = 0, |
| 282 | HDPVR_SIMPLE_IDR_GOP, |
| 283 | HDPVR_ADVANCED_NOIDR_GOP, |
| 284 | HDPVR_SIMPLE_NOIDR_GOP, |
| 285 | }; |
| 286 | |
| 287 | void hdpvr_delete(struct hdpvr_device *dev); |
| 288 | |
| 289 | /*========================================================================*/ |
| 290 | /* hardware control functions */ |
| 291 | int hdpvr_set_options(struct hdpvr_device *dev); |
| 292 | |
| 293 | int hdpvr_set_bitrate(struct hdpvr_device *dev); |
| 294 | |
| 295 | int hdpvr_set_audio(struct hdpvr_device *dev, u8 input, |
| 296 | enum v4l2_mpeg_audio_encoding codec); |
| 297 | |
| 298 | int hdpvr_config_call(struct hdpvr_device *dev, uint value, |
| 299 | unsigned char valbuf); |
| 300 | |
| 301 | struct hdpvr_video_info *get_video_info(struct hdpvr_device *dev); |
| 302 | |
| 303 | /* :0 s b8 81 1800 0003 0003 3 < */ |
| 304 | /* :0 0 3 = 0301ff */ |
| 305 | int get_input_lines_info(struct hdpvr_device *dev); |
| 306 | |
| 307 | |
| 308 | /*========================================================================*/ |
| 309 | /* v4l2 registration */ |
Janne Grunau | a50ab29 | 2009-03-26 14:40:55 -0300 | [diff] [blame] | 310 | int hdpvr_register_videodev(struct hdpvr_device *dev, struct device *parent, |
| 311 | int devnumber); |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 312 | |
| 313 | int hdpvr_cancel_queue(struct hdpvr_device *dev); |
| 314 | |
| 315 | /*========================================================================*/ |
| 316 | /* i2c adapter registration */ |
| 317 | int hdpvr_register_i2c_adapter(struct hdpvr_device *dev); |
| 318 | |
Jarod Wilson | 7f2a06d | 2011-01-19 18:10:14 -0300 | [diff] [blame] | 319 | struct i2c_client *hdpvr_register_ir_rx_i2c(struct hdpvr_device *dev); |
| 320 | struct i2c_client *hdpvr_register_ir_tx_i2c(struct hdpvr_device *dev); |
Andy Walls | ea6c060 | 2010-12-28 22:46:13 -0300 | [diff] [blame] | 321 | |
Janne Grunau | 9aba42e | 2009-03-18 18:10:04 -0300 | [diff] [blame] | 322 | /*========================================================================*/ |
| 323 | /* buffer management */ |
| 324 | int hdpvr_free_buffers(struct hdpvr_device *dev); |
| 325 | int hdpvr_alloc_buffers(struct hdpvr_device *dev, uint count); |