Mauro Carvalho Chehab | d56410e | 2006-03-25 09:19:53 -0300 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * adv7170 - adv7170, adv7171 video encoder driver version 0.0.1 |
| 3 | * |
| 4 | * Copyright (C) 2002 Maxim Yevtyushkin <max@linuxmedialabs.com> |
| 5 | * |
Mauro Carvalho Chehab | d56410e | 2006-03-25 09:19:53 -0300 | [diff] [blame] | 6 | * Based on adv7176 driver by: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * Copyright (C) 1998 Dave Perks <dperks@ibm.net> |
| 9 | * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net> |
| 10 | * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx> |
| 11 | * - some corrections for Pinnacle Systems Inc. DC10plus card. |
| 12 | * |
| 13 | * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net> |
| 14 | * - moved over to linux>=2.4.x i2c protocol (1/1/2003) |
| 15 | * |
| 16 | * This program is free software; you can redistribute it and/or modify |
| 17 | * it under the terms of the GNU General Public License as published by |
| 18 | * the Free Software Foundation; either version 2 of the License, or |
| 19 | * (at your option) any later version. |
| 20 | * |
| 21 | * This program is distributed in the hope that it will be useful, |
| 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | * GNU General Public License for more details. |
| 25 | * |
| 26 | * You should have received a copy of the GNU General Public License |
| 27 | * along with this program; if not, write to the Free Software |
| 28 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 29 | */ |
| 30 | |
| 31 | #include <linux/module.h> |
Mauro Carvalho Chehab | 18f3fa1 | 2007-07-02 15:39:57 -0300 | [diff] [blame] | 32 | #include <linux/types.h> |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 33 | #include <linux/ioctl.h> |
Mauro Carvalho Chehab | 18f3fa1 | 2007-07-02 15:39:57 -0300 | [diff] [blame] | 34 | #include <asm/uaccess.h> |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 35 | #include <linux/i2c.h> |
| 36 | #include <linux/i2c-id.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/videodev.h> |
Mauro Carvalho Chehab | 18f3fa1 | 2007-07-02 15:39:57 -0300 | [diff] [blame] | 38 | #include <linux/video_encoder.h> |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 39 | #include <media/v4l2-common.h> |
| 40 | #include <media/v4l2-i2c-drv-legacy.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | MODULE_DESCRIPTION("Analog Devices ADV7170 video encoder driver"); |
| 43 | MODULE_AUTHOR("Maxim Yevtyushkin"); |
| 44 | MODULE_LICENSE("GPL"); |
| 45 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 46 | static int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | module_param(debug, int, 0); |
| 48 | MODULE_PARM_DESC(debug, "Debug level (0-1)"); |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | /* ----------------------------------------------------------------------- */ |
| 51 | |
| 52 | struct adv7170 { |
| 53 | unsigned char reg[128]; |
| 54 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 55 | v4l2_std_id norm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | int input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | int bright; |
| 58 | int contrast; |
| 59 | int hue; |
| 60 | int sat; |
| 61 | }; |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | static char *inputs[] = { "pass_through", "play_back" }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | /* ----------------------------------------------------------------------- */ |
| 66 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 67 | static inline int adv7170_write(struct i2c_client *client, u8 reg, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
| 69 | struct adv7170 *encoder = i2c_get_clientdata(client); |
| 70 | |
| 71 | encoder->reg[reg] = value; |
| 72 | return i2c_smbus_write_byte_data(client, reg, value); |
| 73 | } |
| 74 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 75 | static inline int adv7170_read(struct i2c_client *client, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
| 77 | return i2c_smbus_read_byte_data(client, reg); |
| 78 | } |
| 79 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 80 | static int adv7170_write_block(struct i2c_client *client, |
| 81 | const u8 *data, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
| 83 | int ret = -1; |
| 84 | u8 reg; |
| 85 | |
| 86 | /* the adv7170 has an autoincrement function, use it if |
| 87 | * the adapter understands raw I2C */ |
| 88 | if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) { |
| 89 | /* do raw I2C, not smbus compatible */ |
| 90 | struct adv7170 *encoder = i2c_get_clientdata(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | u8 block_data[32]; |
Jean Delvare | 9aa45e3 | 2006-03-22 03:48:35 -0300 | [diff] [blame] | 92 | int block_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | while (len >= 2) { |
Jean Delvare | 9aa45e3 | 2006-03-22 03:48:35 -0300 | [diff] [blame] | 95 | block_len = 0; |
| 96 | block_data[block_len++] = reg = data[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | do { |
Jean Delvare | 9aa45e3 | 2006-03-22 03:48:35 -0300 | [diff] [blame] | 98 | block_data[block_len++] = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | encoder->reg[reg++] = data[1]; |
| 100 | len -= 2; |
| 101 | data += 2; |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 102 | } while (len >= 2 && data[0] == reg && block_len < 32); |
| 103 | ret = i2c_master_send(client, block_data, block_len); |
| 104 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | break; |
| 106 | } |
| 107 | } else { |
| 108 | /* do some slow I2C emulation kind of thing */ |
| 109 | while (len >= 2) { |
| 110 | reg = *data++; |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 111 | ret = adv7170_write(client, reg, *data++); |
| 112 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | break; |
| 114 | len -= 2; |
| 115 | } |
| 116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | return ret; |
| 118 | } |
| 119 | |
| 120 | /* ----------------------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | #define TR0MODE 0x4c |
| 123 | #define TR0RST 0x80 |
| 124 | |
| 125 | #define TR1CAPT 0x00 |
| 126 | #define TR1PLAY 0x00 |
| 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | static const unsigned char init_NTSC[] = { |
| 129 | 0x00, 0x10, // MR0 |
| 130 | 0x01, 0x20, // MR1 |
Mauro Carvalho Chehab | d56410e | 2006-03-25 09:19:53 -0300 | [diff] [blame] | 131 | 0x02, 0x0e, // MR2 RTC control: bits 2 and 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | 0x03, 0x80, // MR3 |
| 133 | 0x04, 0x30, // MR4 |
| 134 | 0x05, 0x00, // Reserved |
| 135 | 0x06, 0x00, // Reserved |
| 136 | 0x07, TR0MODE, // TM0 |
| 137 | 0x08, TR1CAPT, // TM1 |
| 138 | 0x09, 0x16, // Fsc0 |
| 139 | 0x0a, 0x7c, // Fsc1 |
| 140 | 0x0b, 0xf0, // Fsc2 |
| 141 | 0x0c, 0x21, // Fsc3 |
| 142 | 0x0d, 0x00, // Subcarrier Phase |
| 143 | 0x0e, 0x00, // Closed Capt. Ext 0 |
| 144 | 0x0f, 0x00, // Closed Capt. Ext 1 |
| 145 | 0x10, 0x00, // Closed Capt. 0 |
| 146 | 0x11, 0x00, // Closed Capt. 1 |
| 147 | 0x12, 0x00, // Pedestal Ctl 0 |
| 148 | 0x13, 0x00, // Pedestal Ctl 1 |
| 149 | 0x14, 0x00, // Pedestal Ctl 2 |
| 150 | 0x15, 0x00, // Pedestal Ctl 3 |
| 151 | 0x16, 0x00, // CGMS_WSS_0 |
| 152 | 0x17, 0x00, // CGMS_WSS_1 |
| 153 | 0x18, 0x00, // CGMS_WSS_2 |
Mauro Carvalho Chehab | d56410e | 2006-03-25 09:19:53 -0300 | [diff] [blame] | 154 | 0x19, 0x00, // Teletext Ctl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | static const unsigned char init_PAL[] = { |
| 158 | 0x00, 0x71, // MR0 |
| 159 | 0x01, 0x20, // MR1 |
| 160 | 0x02, 0x0e, // MR2 RTC control: bits 2 and 1 |
| 161 | 0x03, 0x80, // MR3 |
| 162 | 0x04, 0x30, // MR4 |
| 163 | 0x05, 0x00, // Reserved |
| 164 | 0x06, 0x00, // Reserved |
| 165 | 0x07, TR0MODE, // TM0 |
| 166 | 0x08, TR1CAPT, // TM1 |
| 167 | 0x09, 0xcb, // Fsc0 |
| 168 | 0x0a, 0x8a, // Fsc1 |
| 169 | 0x0b, 0x09, // Fsc2 |
| 170 | 0x0c, 0x2a, // Fsc3 |
| 171 | 0x0d, 0x00, // Subcarrier Phase |
| 172 | 0x0e, 0x00, // Closed Capt. Ext 0 |
| 173 | 0x0f, 0x00, // Closed Capt. Ext 1 |
| 174 | 0x10, 0x00, // Closed Capt. 0 |
| 175 | 0x11, 0x00, // Closed Capt. 1 |
| 176 | 0x12, 0x00, // Pedestal Ctl 0 |
| 177 | 0x13, 0x00, // Pedestal Ctl 1 |
| 178 | 0x14, 0x00, // Pedestal Ctl 2 |
| 179 | 0x15, 0x00, // Pedestal Ctl 3 |
| 180 | 0x16, 0x00, // CGMS_WSS_0 |
| 181 | 0x17, 0x00, // CGMS_WSS_1 |
| 182 | 0x18, 0x00, // CGMS_WSS_2 |
| 183 | 0x19, 0x00, // Teletext Ctl |
| 184 | }; |
| 185 | |
| 186 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 187 | static int adv7170_command(struct i2c_client *client, unsigned cmd, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
| 189 | struct adv7170 *encoder = i2c_get_clientdata(client); |
| 190 | |
| 191 | switch (cmd) { |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 192 | case VIDIOC_INT_INIT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | #if 0 |
| 194 | /* This is just for testing!!! */ |
| 195 | adv7170_write_block(client, init_common, |
| 196 | sizeof(init_common)); |
| 197 | adv7170_write(client, 0x07, TR0MODE | TR0RST); |
| 198 | adv7170_write(client, 0x07, TR0MODE); |
| 199 | #endif |
| 200 | break; |
| 201 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 202 | case VIDIOC_INT_S_STD_OUTPUT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 204 | v4l2_std_id iarg = *(v4l2_std_id *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 206 | v4l_dbg(1, debug, client, "set norm %llx\n", iarg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 208 | if (iarg & V4L2_STD_NTSC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | adv7170_write_block(client, init_NTSC, |
| 210 | sizeof(init_NTSC)); |
| 211 | if (encoder->input == 0) |
| 212 | adv7170_write(client, 0x02, 0x0e); // Enable genlock |
| 213 | adv7170_write(client, 0x07, TR0MODE | TR0RST); |
| 214 | adv7170_write(client, 0x07, TR0MODE); |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 215 | } else if (iarg & V4L2_STD_PAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | adv7170_write_block(client, init_PAL, |
| 217 | sizeof(init_PAL)); |
| 218 | if (encoder->input == 0) |
| 219 | adv7170_write(client, 0x02, 0x0e); // Enable genlock |
| 220 | adv7170_write(client, 0x07, TR0MODE | TR0RST); |
| 221 | adv7170_write(client, 0x07, TR0MODE); |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 222 | } else { |
| 223 | v4l_dbg(1, debug, client, "illegal norm: %llx\n", iarg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | } |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 226 | v4l_dbg(1, debug, client, "switched to %llx\n", iarg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | encoder->norm = iarg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | break; |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 231 | case VIDIOC_INT_S_VIDEO_ROUTING: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 233 | struct v4l2_routing *route = arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | /* RJ: *iarg = 0: input is from decoder |
| 236 | *iarg = 1: input is from ZR36060 |
| 237 | *iarg = 2: color bar */ |
| 238 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 239 | v4l_dbg(1, debug, client, "set input from %s\n", |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 240 | route->input == 0 ? "decoder" : "ZR36060"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 242 | switch (route->input) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | case 0: |
| 244 | adv7170_write(client, 0x01, 0x20); |
| 245 | adv7170_write(client, 0x08, TR1CAPT); /* TR1 */ |
| 246 | adv7170_write(client, 0x02, 0x0e); // Enable genlock |
| 247 | adv7170_write(client, 0x07, TR0MODE | TR0RST); |
| 248 | adv7170_write(client, 0x07, TR0MODE); |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 249 | /* udelay(10); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | break; |
| 251 | |
| 252 | case 1: |
| 253 | adv7170_write(client, 0x01, 0x00); |
| 254 | adv7170_write(client, 0x08, TR1PLAY); /* TR1 */ |
| 255 | adv7170_write(client, 0x02, 0x08); |
| 256 | adv7170_write(client, 0x07, TR0MODE | TR0RST); |
| 257 | adv7170_write(client, 0x07, TR0MODE); |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 258 | /* udelay(10); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | break; |
| 260 | |
| 261 | default: |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 262 | v4l_dbg(1, debug, client, "illegal input: %d\n", route->input); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 265 | v4l_dbg(1, debug, client, "switched to %s\n", inputs[route->input]); |
| 266 | encoder->input = route->input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | break; |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
| 270 | default: |
| 271 | return -EINVAL; |
| 272 | } |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /* ----------------------------------------------------------------------- */ |
| 278 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 279 | static unsigned short normal_i2c[] = { |
| 280 | 0xd4 >> 1, 0xd6 >> 1, /* adv7170 IDs */ |
| 281 | 0x54 >> 1, 0x56 >> 1, /* adv7171 IDs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | I2C_CLIENT_END |
| 283 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 285 | I2C_CLIENT_INSMOD; |
Mauro Carvalho Chehab | d56410e | 2006-03-25 09:19:53 -0300 | [diff] [blame] | 286 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 287 | static int adv7170_probe(struct i2c_client *client, |
| 288 | const struct i2c_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | struct adv7170 *encoder; |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 291 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
| 293 | /* Check if the adapter supports the needed features */ |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 294 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
| 295 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 297 | v4l_info(client, "chip found @ 0x%x (%s)\n", |
| 298 | client->addr << 1, client->adapter->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Panagiotis Issaris | 7408187 | 2006-01-11 19:40:56 -0200 | [diff] [blame] | 300 | encoder = kzalloc(sizeof(struct adv7170), GFP_KERNEL); |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 301 | if (encoder == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | return -ENOMEM; |
Hans Verkuil | 107063c | 2009-02-18 17:26:06 -0300 | [diff] [blame^] | 303 | encoder->norm = V4L2_STD_NTSC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | encoder->input = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | i2c_set_clientdata(client, encoder); |
| 306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | i = adv7170_write_block(client, init_NTSC, sizeof(init_NTSC)); |
| 308 | if (i >= 0) { |
| 309 | i = adv7170_write(client, 0x07, TR0MODE | TR0RST); |
| 310 | i = adv7170_write(client, 0x07, TR0MODE); |
| 311 | i = adv7170_read(client, 0x12); |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 312 | v4l_dbg(1, debug, client, "revision %d\n", i & 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 314 | if (i < 0) |
| 315 | v4l_dbg(1, debug, client, "init error 0x%x\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | return 0; |
| 317 | } |
| 318 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 319 | static int adv7170_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | { |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 321 | kfree(i2c_get_clientdata(client)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | /* ----------------------------------------------------------------------- */ |
| 326 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 327 | static const struct i2c_device_id adv7170_id[] = { |
| 328 | { "adv7170", 0 }, |
| 329 | { "adv7171", 0 }, |
| 330 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | }; |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 332 | MODULE_DEVICE_TABLE(i2c, adv7170_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Hans Verkuil | b9a21f8 | 2008-09-07 07:58:20 -0300 | [diff] [blame] | 334 | static struct v4l2_i2c_driver_data v4l2_i2c_data = { |
| 335 | .name = "adv7170", |
| 336 | .driverid = I2C_DRIVERID_ADV7170, |
| 337 | .command = adv7170_command, |
| 338 | .probe = adv7170_probe, |
| 339 | .remove = adv7170_remove, |
| 340 | .id_table = adv7170_id, |
| 341 | }; |