Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Mauro Carvalho Chehab | d56410e | 2006-03-25 09:19:53 -0300 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * vpx3220a, vpx3216b & vpx3214c video decoder driver version 0.0.1 |
| 4 | * |
| 5 | * Copyright (C) 2001 Laurent Pinchart <lpinchart@freegates.be> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/delay.h> |
| 11 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 13 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/i2c.h> |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame] | 15 | #include <linux/videodev2.h> |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 16 | #include <media/v4l2-device.h> |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 17 | #include <media/v4l2-ctrls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 19 | MODULE_DESCRIPTION("vpx3220a/vpx3216b/vpx3214c video decoder driver"); |
| 20 | MODULE_AUTHOR("Laurent Pinchart"); |
| 21 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 23 | static int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | module_param(debug, int, 0); |
| 25 | MODULE_PARM_DESC(debug, "Debug level (0-1)"); |
| 26 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #define VPX_TIMEOUT_COUNT 10 |
| 29 | |
| 30 | /* ----------------------------------------------------------------------- */ |
| 31 | |
| 32 | struct vpx3220 { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 33 | struct v4l2_subdev sd; |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 34 | struct v4l2_ctrl_handler hdl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | unsigned char reg[255]; |
| 36 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame] | 37 | v4l2_std_id norm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | int input; |
| 39 | int enable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 42 | static inline struct vpx3220 *to_vpx3220(struct v4l2_subdev *sd) |
| 43 | { |
| 44 | return container_of(sd, struct vpx3220, sd); |
| 45 | } |
| 46 | |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 47 | static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl) |
| 48 | { |
| 49 | return &container_of(ctrl->handler, struct vpx3220, hdl)->sd; |
| 50 | } |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | static char *inputs[] = { "internal", "composite", "svideo" }; |
| 53 | |
| 54 | /* ----------------------------------------------------------------------- */ |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 55 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 56 | static inline int vpx3220_write(struct v4l2_subdev *sd, u8 reg, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 58 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct vpx3220 *decoder = i2c_get_clientdata(client); |
| 60 | |
| 61 | decoder->reg[reg] = value; |
| 62 | return i2c_smbus_write_byte_data(client, reg, value); |
| 63 | } |
| 64 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 65 | static inline int vpx3220_read(struct v4l2_subdev *sd, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 67 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return i2c_smbus_read_byte_data(client, reg); |
| 70 | } |
| 71 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 72 | static int vpx3220_fp_status(struct v4l2_subdev *sd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | unsigned char status; |
| 75 | unsigned int i; |
| 76 | |
| 77 | for (i = 0; i < VPX_TIMEOUT_COUNT; i++) { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 78 | status = vpx3220_read(sd, 0x29); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | if (!(status & 4)) |
| 81 | return 0; |
| 82 | |
| 83 | udelay(10); |
| 84 | |
| 85 | if (need_resched()) |
| 86 | cond_resched(); |
| 87 | } |
| 88 | |
| 89 | return -1; |
| 90 | } |
| 91 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 92 | static int vpx3220_fp_write(struct v4l2_subdev *sd, u8 fpaddr, u16 data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 94 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | /* Write the 16-bit address to the FPWR register */ |
| 97 | if (i2c_smbus_write_word_data(client, 0x27, swab16(fpaddr)) == -1) { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 98 | v4l2_dbg(1, debug, sd, "%s: failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | return -1; |
| 100 | } |
| 101 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 102 | if (vpx3220_fp_status(sd) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | return -1; |
| 104 | |
| 105 | /* Write the 16-bit data to the FPDAT register */ |
| 106 | if (i2c_smbus_write_word_data(client, 0x28, swab16(data)) == -1) { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 107 | v4l2_dbg(1, debug, sd, "%s: failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | return -1; |
| 109 | } |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
Dan Carpenter | 39de7d9 | 2016-01-06 08:05:52 -0200 | [diff] [blame] | 114 | static int vpx3220_fp_read(struct v4l2_subdev *sd, u16 fpaddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 116 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | s16 data; |
| 118 | |
| 119 | /* Write the 16-bit address to the FPRD register */ |
| 120 | if (i2c_smbus_write_word_data(client, 0x26, swab16(fpaddr)) == -1) { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 121 | v4l2_dbg(1, debug, sd, "%s: failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return -1; |
| 123 | } |
| 124 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 125 | if (vpx3220_fp_status(sd) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | return -1; |
| 127 | |
| 128 | /* Read the 16-bit data from the FPDAT register */ |
| 129 | data = i2c_smbus_read_word_data(client, 0x28); |
| 130 | if (data == -1) { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 131 | v4l2_dbg(1, debug, sd, "%s: failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | return -1; |
| 133 | } |
| 134 | |
| 135 | return swab16(data); |
| 136 | } |
| 137 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 138 | static int vpx3220_write_block(struct v4l2_subdev *sd, const u8 *data, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
| 140 | u8 reg; |
| 141 | int ret = -1; |
| 142 | |
| 143 | while (len >= 2) { |
| 144 | reg = *data++; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 145 | ret = vpx3220_write(sd, reg, *data++); |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 146 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | break; |
| 148 | len -= 2; |
| 149 | } |
| 150 | |
| 151 | return ret; |
| 152 | } |
| 153 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 154 | static int vpx3220_write_fp_block(struct v4l2_subdev *sd, |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 155 | const u16 *data, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
| 157 | u8 reg; |
| 158 | int ret = 0; |
| 159 | |
| 160 | while (len > 1) { |
| 161 | reg = *data++; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 162 | ret |= vpx3220_fp_write(sd, reg, *data++); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | len -= 2; |
| 164 | } |
| 165 | |
| 166 | return ret; |
| 167 | } |
| 168 | |
| 169 | /* ---------------------------------------------------------------------- */ |
| 170 | |
| 171 | static const unsigned short init_ntsc[] = { |
| 172 | 0x1c, 0x00, /* NTSC tint angle */ |
| 173 | 0x88, 17, /* Window 1 vertical */ |
| 174 | 0x89, 240, /* Vertical lines in */ |
| 175 | 0x8a, 240, /* Vertical lines out */ |
| 176 | 0x8b, 000, /* Horizontal begin */ |
| 177 | 0x8c, 640, /* Horizontal length */ |
| 178 | 0x8d, 640, /* Number of pixels */ |
| 179 | 0x8f, 0xc00, /* Disable window 2 */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 180 | 0xf0, 0x73, /* 13.5 MHz transport, Forced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | * mode, latch windows */ |
| 182 | 0xf2, 0x13, /* NTSC M, composite input */ |
| 183 | 0xe7, 0x1e1, /* Enable vertical standard |
| 184 | * locking @ 240 lines */ |
| 185 | }; |
| 186 | |
| 187 | static const unsigned short init_pal[] = { |
| 188 | 0x88, 23, /* Window 1 vertical begin */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 189 | 0x89, 288, /* Vertical lines in (16 lines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | * skipped by the VFE) */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 191 | 0x8a, 288, /* Vertical lines out (16 lines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | * skipped by the VFE) */ |
| 193 | 0x8b, 16, /* Horizontal begin */ |
| 194 | 0x8c, 768, /* Horizontal length */ |
Mauro Carvalho Chehab | 6e6a8b5 | 2018-01-04 13:08:56 -0500 | [diff] [blame] | 195 | 0x8d, 784, /* Number of pixels |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | * Must be >= Horizontal begin + Horizontal length */ |
| 197 | 0x8f, 0xc00, /* Disable window 2 */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 198 | 0xf0, 0x77, /* 13.5 MHz transport, Forced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | * mode, latch windows */ |
| 200 | 0xf2, 0x3d1, /* PAL B,G,H,I, composite input */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 201 | 0xe7, 0x241, /* PAL/SECAM set to 288 lines */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | }; |
| 203 | |
| 204 | static const unsigned short init_secam[] = { |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 205 | 0x88, 23, /* Window 1 vertical begin */ |
| 206 | 0x89, 288, /* Vertical lines in (16 lines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | * skipped by the VFE) */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 208 | 0x8a, 288, /* Vertical lines out (16 lines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | * skipped by the VFE) */ |
| 210 | 0x8b, 16, /* Horizontal begin */ |
| 211 | 0x8c, 768, /* Horizontal length */ |
| 212 | 0x8d, 784, /* Number of pixels |
| 213 | * Must be >= Horizontal begin + Horizontal length */ |
| 214 | 0x8f, 0xc00, /* Disable window 2 */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 215 | 0xf0, 0x77, /* 13.5 MHz transport, Forced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * mode, latch windows */ |
| 217 | 0xf2, 0x3d5, /* SECAM, composite input */ |
Ronald S. Bultje | 9b3acc2 | 2005-10-16 20:29:24 -0700 | [diff] [blame] | 218 | 0xe7, 0x241, /* PAL/SECAM set to 288 lines */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | }; |
| 220 | |
| 221 | static const unsigned char init_common[] = { |
| 222 | 0xf2, 0x00, /* Disable all outputs */ |
| 223 | 0x33, 0x0d, /* Luma : VIN2, Chroma : CIN |
| 224 | * (clamp off) */ |
| 225 | 0xd8, 0xa8, /* HREF/VREF active high, VREF |
| 226 | * pulse = 2, Odd/Even flag */ |
| 227 | 0x20, 0x03, /* IF compensation 0dB/oct */ |
| 228 | 0xe0, 0xff, /* Open up all comparators */ |
| 229 | 0xe1, 0x00, |
| 230 | 0xe2, 0x7f, |
| 231 | 0xe3, 0x80, |
| 232 | 0xe4, 0x7f, |
| 233 | 0xe5, 0x80, |
| 234 | 0xe6, 0x00, /* Brightness set to 0 */ |
| 235 | 0xe7, 0xe0, /* Contrast to 1.0, noise shaping |
| 236 | * 10 to 8 2-bit error diffusion */ |
| 237 | 0xe8, 0xf8, /* YUV422, CbCr binary offset, |
| 238 | * ... (p.32) */ |
| 239 | 0xea, 0x18, /* LLC2 connected, output FIFO |
| 240 | * reset with VACTintern */ |
| 241 | 0xf0, 0x8a, /* Half full level to 10, bus |
| 242 | * shuffler [7:0, 23:16, 15:8] */ |
| 243 | 0xf1, 0x18, /* Single clock, sync mode, no |
| 244 | * FE delay, no HLEN counter */ |
| 245 | 0xf8, 0x12, /* Port A, PIXCLK, HF# & FE# |
| 246 | * strength to 2 */ |
| 247 | 0xf9, 0x24, /* Port B, HREF, VREF, PREF & |
| 248 | * ALPHA strength to 4 */ |
| 249 | }; |
| 250 | |
| 251 | static const unsigned short init_fp[] = { |
| 252 | 0x59, 0, |
| 253 | 0xa0, 2070, /* ACC reference */ |
| 254 | 0xa3, 0, |
| 255 | 0xa4, 0, |
| 256 | 0xa8, 30, |
| 257 | 0xb2, 768, |
| 258 | 0xbe, 27, |
| 259 | 0x58, 0, |
| 260 | 0x26, 0, |
| 261 | 0x4b, 0x298, /* PLL gain */ |
| 262 | }; |
| 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 265 | static int vpx3220_init(struct v4l2_subdev *sd, u32 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 267 | struct vpx3220 *decoder = to_vpx3220(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 269 | vpx3220_write_block(sd, init_common, sizeof(init_common)); |
| 270 | vpx3220_write_fp_block(sd, init_fp, sizeof(init_fp) >> 1); |
| 271 | if (decoder->norm & V4L2_STD_NTSC) |
| 272 | vpx3220_write_fp_block(sd, init_ntsc, sizeof(init_ntsc) >> 1); |
| 273 | else if (decoder->norm & V4L2_STD_PAL) |
| 274 | vpx3220_write_fp_block(sd, init_pal, sizeof(init_pal) >> 1); |
| 275 | else if (decoder->norm & V4L2_STD_SECAM) |
| 276 | vpx3220_write_fp_block(sd, init_secam, sizeof(init_secam) >> 1); |
| 277 | else |
| 278 | vpx3220_write_fp_block(sd, init_pal, sizeof(init_pal) >> 1); |
| 279 | return 0; |
| 280 | } |
| 281 | |
| 282 | static int vpx3220_status(struct v4l2_subdev *sd, u32 *pstatus, v4l2_std_id *pstd) |
| 283 | { |
| 284 | int res = V4L2_IN_ST_NO_SIGNAL, status; |
Hans Verkuil | 32cb3b0 | 2013-05-29 10:19:01 -0300 | [diff] [blame] | 285 | v4l2_std_id std = pstd ? *pstd : V4L2_STD_ALL; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 286 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 287 | status = vpx3220_fp_read(sd, 0x0f3); |
| 288 | |
| 289 | v4l2_dbg(1, debug, sd, "status: 0x%04x\n", status); |
| 290 | |
| 291 | if (status < 0) |
| 292 | return status; |
| 293 | |
| 294 | if ((status & 0x20) == 0) { |
| 295 | res = 0; |
| 296 | |
| 297 | switch (status & 0x18) { |
| 298 | case 0x00: |
| 299 | case 0x10: |
| 300 | case 0x14: |
| 301 | case 0x18: |
Hans Verkuil | 32cb3b0 | 2013-05-29 10:19:01 -0300 | [diff] [blame] | 302 | std &= V4L2_STD_PAL; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 303 | break; |
| 304 | |
| 305 | case 0x08: |
Hans Verkuil | 32cb3b0 | 2013-05-29 10:19:01 -0300 | [diff] [blame] | 306 | std &= V4L2_STD_SECAM; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 307 | break; |
| 308 | |
| 309 | case 0x04: |
| 310 | case 0x0c: |
| 311 | case 0x1c: |
Hans Verkuil | 32cb3b0 | 2013-05-29 10:19:01 -0300 | [diff] [blame] | 312 | std &= V4L2_STD_NTSC; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 313 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
Hans Verkuil | 32cb3b0 | 2013-05-29 10:19:01 -0300 | [diff] [blame] | 315 | } else { |
| 316 | std = V4L2_STD_UNKNOWN; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 317 | } |
| 318 | if (pstd) |
| 319 | *pstd = std; |
| 320 | if (pstatus) |
Hans Verkuil | ba08831 | 2011-08-25 10:52:53 -0300 | [diff] [blame] | 321 | *pstatus = res; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | static int vpx3220_querystd(struct v4l2_subdev *sd, v4l2_std_id *std) |
| 326 | { |
Hans Verkuil | bccfa44 | 2009-03-30 06:55:27 -0300 | [diff] [blame] | 327 | v4l2_dbg(1, debug, sd, "querystd\n"); |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 328 | return vpx3220_status(sd, NULL, std); |
| 329 | } |
| 330 | |
| 331 | static int vpx3220_g_input_status(struct v4l2_subdev *sd, u32 *status) |
| 332 | { |
Hans Verkuil | bccfa44 | 2009-03-30 06:55:27 -0300 | [diff] [blame] | 333 | v4l2_dbg(1, debug, sd, "g_input_status\n"); |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 334 | return vpx3220_status(sd, status, NULL); |
| 335 | } |
| 336 | |
| 337 | static int vpx3220_s_std(struct v4l2_subdev *sd, v4l2_std_id std) |
| 338 | { |
| 339 | struct vpx3220 *decoder = to_vpx3220(sd); |
| 340 | int temp_input; |
| 341 | |
| 342 | /* Here we back up the input selection because it gets |
| 343 | overwritten when we fill the registers with the |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 344 | chosen video norm */ |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 345 | temp_input = vpx3220_fp_read(sd, 0xf2); |
| 346 | |
Hans Verkuil | bccfa44 | 2009-03-30 06:55:27 -0300 | [diff] [blame] | 347 | v4l2_dbg(1, debug, sd, "s_std %llx\n", (unsigned long long)std); |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 348 | if (std & V4L2_STD_NTSC) { |
| 349 | vpx3220_write_fp_block(sd, init_ntsc, sizeof(init_ntsc) >> 1); |
| 350 | v4l2_dbg(1, debug, sd, "norm switched to NTSC\n"); |
| 351 | } else if (std & V4L2_STD_PAL) { |
| 352 | vpx3220_write_fp_block(sd, init_pal, sizeof(init_pal) >> 1); |
| 353 | v4l2_dbg(1, debug, sd, "norm switched to PAL\n"); |
| 354 | } else if (std & V4L2_STD_SECAM) { |
| 355 | vpx3220_write_fp_block(sd, init_secam, sizeof(init_secam) >> 1); |
| 356 | v4l2_dbg(1, debug, sd, "norm switched to SECAM\n"); |
| 357 | } else { |
| 358 | return -EINVAL; |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 359 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 361 | decoder->norm = std; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 363 | /* And here we set the backed up video input again */ |
| 364 | vpx3220_fp_write(sd, 0xf2, temp_input | 0x0010); |
| 365 | udelay(10); |
| 366 | return 0; |
| 367 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 369 | static int vpx3220_s_routing(struct v4l2_subdev *sd, |
| 370 | u32 input, u32 output, u32 config) |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 371 | { |
| 372 | int data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 374 | /* RJ: input = 0: ST8 (PCTV) input |
| 375 | input = 1: COMPOSITE input |
| 376 | input = 2: SVHS input */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Colin Ian King | 9ecb671 | 2019-10-06 12:04:29 -0300 | [diff] [blame] | 378 | static const int input_vals[3][2] = { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 379 | {0x0c, 0}, |
| 380 | {0x0d, 0}, |
| 381 | {0x0e, 1} |
| 382 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
Roel Kluin | f14a297 | 2009-10-23 07:59:42 -0300 | [diff] [blame] | 384 | if (input > 2) |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 385 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 387 | v4l2_dbg(1, debug, sd, "input switched to %s\n", inputs[input]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 389 | vpx3220_write(sd, 0x33, input_vals[input][0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 391 | data = vpx3220_fp_read(sd, 0xf2) & ~(0x0020); |
| 392 | if (data < 0) |
| 393 | return data; |
| 394 | /* 0x0010 is required to latch the setting */ |
| 395 | vpx3220_fp_write(sd, 0xf2, |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 396 | data | (input_vals[input][1] << 5) | 0x0010); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 398 | udelay(10); |
| 399 | return 0; |
| 400 | } |
| 401 | |
| 402 | static int vpx3220_s_stream(struct v4l2_subdev *sd, int enable) |
| 403 | { |
Hans Verkuil | bccfa44 | 2009-03-30 06:55:27 -0300 | [diff] [blame] | 404 | v4l2_dbg(1, debug, sd, "s_stream %s\n", enable ? "on" : "off"); |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 405 | |
| 406 | vpx3220_write(sd, 0xf2, (enable ? 0x1b : 0x00)); |
| 407 | return 0; |
| 408 | } |
| 409 | |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 410 | static int vpx3220_s_ctrl(struct v4l2_ctrl *ctrl) |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 411 | { |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 412 | struct v4l2_subdev *sd = to_sd(ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 414 | switch (ctrl->id) { |
| 415 | case V4L2_CID_BRIGHTNESS: |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 416 | vpx3220_write(sd, 0xe6, ctrl->val); |
| 417 | return 0; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 418 | case V4L2_CID_CONTRAST: |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 419 | /* Bit 7 and 8 is for noise shaping */ |
| 420 | vpx3220_write(sd, 0xe7, ctrl->val + 192); |
| 421 | return 0; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 422 | case V4L2_CID_SATURATION: |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 423 | vpx3220_fp_write(sd, 0xa0, ctrl->val); |
| 424 | return 0; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 425 | case V4L2_CID_HUE: |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 426 | vpx3220_fp_write(sd, 0x1c, ctrl->val); |
| 427 | return 0; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 428 | } |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 429 | return -EINVAL; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 430 | } |
| 431 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 432 | /* ----------------------------------------------------------------------- */ |
| 433 | |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 434 | static const struct v4l2_ctrl_ops vpx3220_ctrl_ops = { |
| 435 | .s_ctrl = vpx3220_s_ctrl, |
| 436 | }; |
| 437 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 438 | static const struct v4l2_subdev_core_ops vpx3220_core_ops = { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 439 | .init = vpx3220_init, |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 440 | }; |
| 441 | |
| 442 | static const struct v4l2_subdev_video_ops vpx3220_video_ops = { |
Laurent Pinchart | 8774bed | 2014-04-28 16:53:01 -0300 | [diff] [blame] | 443 | .s_std = vpx3220_s_std, |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 444 | .s_routing = vpx3220_s_routing, |
| 445 | .s_stream = vpx3220_s_stream, |
| 446 | .querystd = vpx3220_querystd, |
| 447 | .g_input_status = vpx3220_g_input_status, |
| 448 | }; |
| 449 | |
| 450 | static const struct v4l2_subdev_ops vpx3220_ops = { |
| 451 | .core = &vpx3220_core_ops, |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 452 | .video = &vpx3220_video_ops, |
| 453 | }; |
| 454 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | /* ----------------------------------------------------------------------- |
Joe Perches | c84e603 | 2008-02-03 17:18:59 +0200 | [diff] [blame] | 456 | * Client management code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | */ |
| 458 | |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 459 | static int vpx3220_probe(struct i2c_client *client, |
| 460 | const struct i2c_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | struct vpx3220 *decoder; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 463 | struct v4l2_subdev *sd; |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 464 | const char *name = NULL; |
| 465 | u8 ver; |
| 466 | u16 pn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | /* Check if the adapter supports the needed features */ |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 469 | if (!i2c_check_functionality(client->adapter, |
| 470 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA)) |
| 471 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Laurent Pinchart | c02b211 | 2013-05-02 08:29:43 -0300 | [diff] [blame] | 473 | decoder = devm_kzalloc(&client->dev, sizeof(*decoder), GFP_KERNEL); |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 474 | if (decoder == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | return -ENOMEM; |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 476 | sd = &decoder->sd; |
| 477 | v4l2_i2c_subdev_init(sd, client, &vpx3220_ops); |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame] | 478 | decoder->norm = V4L2_STD_PAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | decoder->input = 0; |
| 480 | decoder->enable = 1; |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 481 | v4l2_ctrl_handler_init(&decoder->hdl, 4); |
| 482 | v4l2_ctrl_new_std(&decoder->hdl, &vpx3220_ctrl_ops, |
| 483 | V4L2_CID_BRIGHTNESS, -128, 127, 1, 0); |
| 484 | v4l2_ctrl_new_std(&decoder->hdl, &vpx3220_ctrl_ops, |
| 485 | V4L2_CID_CONTRAST, 0, 63, 1, 32); |
| 486 | v4l2_ctrl_new_std(&decoder->hdl, &vpx3220_ctrl_ops, |
| 487 | V4L2_CID_SATURATION, 0, 4095, 1, 2048); |
| 488 | v4l2_ctrl_new_std(&decoder->hdl, &vpx3220_ctrl_ops, |
| 489 | V4L2_CID_HUE, -512, 511, 1, 0); |
| 490 | sd->ctrl_handler = &decoder->hdl; |
| 491 | if (decoder->hdl.error) { |
| 492 | int err = decoder->hdl.error; |
| 493 | |
| 494 | v4l2_ctrl_handler_free(&decoder->hdl); |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 495 | return err; |
| 496 | } |
| 497 | v4l2_ctrl_handler_setup(&decoder->hdl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 499 | ver = i2c_smbus_read_byte_data(client, 0x00); |
| 500 | pn = (i2c_smbus_read_byte_data(client, 0x02) << 8) + |
| 501 | i2c_smbus_read_byte_data(client, 0x01); |
| 502 | if (ver == 0xec) { |
| 503 | switch (pn) { |
| 504 | case 0x4680: |
| 505 | name = "vpx3220a"; |
| 506 | break; |
| 507 | case 0x4260: |
| 508 | name = "vpx3216b"; |
| 509 | break; |
| 510 | case 0x4280: |
| 511 | name = "vpx3214c"; |
| 512 | break; |
| 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 515 | if (name) |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 516 | v4l2_info(sd, "%s found @ 0x%x (%s)\n", name, |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 517 | client->addr << 1, client->adapter->name); |
| 518 | else |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 519 | v4l2_info(sd, "chip (%02x:%04x) found @ 0x%x (%s)\n", |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 520 | ver, pn, client->addr << 1, client->adapter->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 522 | vpx3220_write_block(sd, init_common, sizeof(init_common)); |
| 523 | vpx3220_write_fp_block(sd, init_fp, sizeof(init_fp) >> 1); |
| 524 | /* Default to PAL */ |
| 525 | vpx3220_write_fp_block(sd, init_pal, sizeof(init_pal) >> 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | return 0; |
| 527 | } |
| 528 | |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 529 | static int vpx3220_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 531 | struct v4l2_subdev *sd = i2c_get_clientdata(client); |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 532 | struct vpx3220 *decoder = to_vpx3220(sd); |
Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 533 | |
| 534 | v4l2_device_unregister_subdev(sd); |
Hans Verkuil | 9a77532 | 2010-12-12 08:45:59 -0300 | [diff] [blame] | 535 | v4l2_ctrl_handler_free(&decoder->hdl); |
Laurent Pinchart | c02b211 | 2013-05-02 08:29:43 -0300 | [diff] [blame] | 536 | |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 537 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 540 | static const struct i2c_device_id vpx3220_id[] = { |
| 541 | { "vpx3220a", 0 }, |
| 542 | { "vpx3216b", 0 }, |
| 543 | { "vpx3214c", 0 }, |
| 544 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | }; |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 546 | MODULE_DEVICE_TABLE(i2c, vpx3220_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
Hans Verkuil | c2d999f | 2010-09-15 15:44:11 -0300 | [diff] [blame] | 548 | static struct i2c_driver vpx3220_driver = { |
| 549 | .driver = { |
Hans Verkuil | c2d999f | 2010-09-15 15:44:11 -0300 | [diff] [blame] | 550 | .name = "vpx3220", |
| 551 | }, |
| 552 | .probe = vpx3220_probe, |
| 553 | .remove = vpx3220_remove, |
| 554 | .id_table = vpx3220_id, |
Hans Verkuil | 23848b6 | 2008-09-07 08:01:39 -0300 | [diff] [blame] | 555 | }; |
Hans Verkuil | c2d999f | 2010-09-15 15:44:11 -0300 | [diff] [blame] | 556 | |
Axel Lin | c6e8d86 | 2012-02-12 06:56:32 -0300 | [diff] [blame] | 557 | module_i2c_driver(vpx3220_driver); |