blob: fab8e0254bbc1c7ad7bbd76406df973c24622545 [file] [log] [blame]
Martin Samuelssonfbe60da2006-04-27 10:17:00 -03001/*
2 * Video Capture Driver (Video for Linux 1/2)
3 * for the Matrox Marvel G200,G400 and Rainbow Runner-G series
4 *
5 * This module is an interface to the KS0127 video decoder chip.
6 *
7 * Copyright (C) 1999 Ryan Drake <stiletto@mediaone.net>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *****************************************************************************
24 *
25 * Modified and extended by
26 * Mike Bernson <mike@mlb.org>
27 * Gerard v.d. Horst
28 * Leon van Stuivenberg <l.vanstuivenberg@chello.nl>
29 * Gernot Ziegler <gz@lysator.liu.se>
30 *
31 * Version History:
32 * V1.0 Ryan Drake Initial version by Ryan Drake
33 * V1.1 Gerard v.d. Horst Added some debugoutput, reset the video-standard
34 */
35
Martin Samuelssonfbe60da2006-04-27 10:17:00 -030036#include <linux/init.h>
37#include <linux/module.h>
38#include <linux/delay.h>
39#include <linux/errno.h>
40#include <linux/kernel.h>
Martin Samuelssonfbe60da2006-04-27 10:17:00 -030041#include <linux/i2c.h>
Hans Verkuil0750e972009-02-19 11:50:27 -030042#include <linux/videodev2.h>
43#include <media/v4l2-device.h>
44#include <media/v4l2-chip-ident.h>
Hans Verkuil2d266982009-02-19 17:41:19 -030045#include <media/v4l2-i2c-drv.h>
Hans Verkuil9875c0f2008-09-07 08:00:14 -030046#include "ks0127.h"
Martin Samuelssonfbe60da2006-04-27 10:17:00 -030047
Hans Verkuil9875c0f2008-09-07 08:00:14 -030048MODULE_DESCRIPTION("KS0127 video decoder driver");
49MODULE_AUTHOR("Ryan Drake");
50MODULE_LICENSE("GPL");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -030051
Hans Verkuil2d266982009-02-19 17:41:19 -030052/* Addresses */
Hans Verkuil0750e972009-02-19 11:50:27 -030053#define I2C_KS0127_ADDON 0xD8
54#define I2C_KS0127_ONBOARD 0xDA
55
Martin Samuelssonfbe60da2006-04-27 10:17:00 -030056
57/* ks0127 control registers */
58#define KS_STAT 0x00
59#define KS_CMDA 0x01
60#define KS_CMDB 0x02
61#define KS_CMDC 0x03
62#define KS_CMDD 0x04
63#define KS_HAVB 0x05
64#define KS_HAVE 0x06
65#define KS_HS1B 0x07
66#define KS_HS1E 0x08
67#define KS_HS2B 0x09
68#define KS_HS2E 0x0a
69#define KS_AGC 0x0b
70#define KS_HXTRA 0x0c
71#define KS_CDEM 0x0d
72#define KS_PORTAB 0x0e
73#define KS_LUMA 0x0f
74#define KS_CON 0x10
75#define KS_BRT 0x11
76#define KS_CHROMA 0x12
77#define KS_CHROMB 0x13
78#define KS_DEMOD 0x14
79#define KS_SAT 0x15
80#define KS_HUE 0x16
81#define KS_VERTIA 0x17
82#define KS_VERTIB 0x18
83#define KS_VERTIC 0x19
84#define KS_HSCLL 0x1a
85#define KS_HSCLH 0x1b
86#define KS_VSCLL 0x1c
87#define KS_VSCLH 0x1d
88#define KS_OFMTA 0x1e
89#define KS_OFMTB 0x1f
90#define KS_VBICTL 0x20
91#define KS_CCDAT2 0x21
92#define KS_CCDAT1 0x22
93#define KS_VBIL30 0x23
94#define KS_VBIL74 0x24
95#define KS_VBIL118 0x25
96#define KS_VBIL1512 0x26
97#define KS_TTFRAM 0x27
98#define KS_TESTA 0x28
99#define KS_UVOFFH 0x29
100#define KS_UVOFFL 0x2a
101#define KS_UGAIN 0x2b
102#define KS_VGAIN 0x2c
103#define KS_VAVB 0x2d
104#define KS_VAVE 0x2e
105#define KS_CTRACK 0x2f
106#define KS_POLCTL 0x30
107#define KS_REFCOD 0x31
108#define KS_INVALY 0x32
109#define KS_INVALU 0x33
110#define KS_INVALV 0x34
111#define KS_UNUSEY 0x35
112#define KS_UNUSEU 0x36
113#define KS_UNUSEV 0x37
114#define KS_USRSAV 0x38
115#define KS_USREAV 0x39
116#define KS_SHS1A 0x3a
117#define KS_SHS1B 0x3b
118#define KS_SHS1C 0x3c
119#define KS_CMDE 0x3d
120#define KS_VSDEL 0x3e
121#define KS_CMDF 0x3f
122#define KS_GAMMA0 0x40
123#define KS_GAMMA1 0x41
124#define KS_GAMMA2 0x42
125#define KS_GAMMA3 0x43
126#define KS_GAMMA4 0x44
127#define KS_GAMMA5 0x45
128#define KS_GAMMA6 0x46
129#define KS_GAMMA7 0x47
130#define KS_GAMMA8 0x48
131#define KS_GAMMA9 0x49
132#define KS_GAMMA10 0x4a
133#define KS_GAMMA11 0x4b
134#define KS_GAMMA12 0x4c
135#define KS_GAMMA13 0x4d
136#define KS_GAMMA14 0x4e
137#define KS_GAMMA15 0x4f
138#define KS_GAMMA16 0x50
139#define KS_GAMMA17 0x51
140#define KS_GAMMA18 0x52
141#define KS_GAMMA19 0x53
142#define KS_GAMMA20 0x54
143#define KS_GAMMA21 0x55
144#define KS_GAMMA22 0x56
145#define KS_GAMMA23 0x57
146#define KS_GAMMA24 0x58
147#define KS_GAMMA25 0x59
148#define KS_GAMMA26 0x5a
149#define KS_GAMMA27 0x5b
150#define KS_GAMMA28 0x5c
151#define KS_GAMMA29 0x5d
152#define KS_GAMMA30 0x5e
153#define KS_GAMMA31 0x5f
154#define KS_GAMMAD0 0x60
155#define KS_GAMMAD1 0x61
156#define KS_GAMMAD2 0x62
157#define KS_GAMMAD3 0x63
158#define KS_GAMMAD4 0x64
159#define KS_GAMMAD5 0x65
160#define KS_GAMMAD6 0x66
161#define KS_GAMMAD7 0x67
162#define KS_GAMMAD8 0x68
163#define KS_GAMMAD9 0x69
164#define KS_GAMMAD10 0x6a
165#define KS_GAMMAD11 0x6b
166#define KS_GAMMAD12 0x6c
167#define KS_GAMMAD13 0x6d
168#define KS_GAMMAD14 0x6e
169#define KS_GAMMAD15 0x6f
170#define KS_GAMMAD16 0x70
171#define KS_GAMMAD17 0x71
172#define KS_GAMMAD18 0x72
173#define KS_GAMMAD19 0x73
174#define KS_GAMMAD20 0x74
175#define KS_GAMMAD21 0x75
176#define KS_GAMMAD22 0x76
177#define KS_GAMMAD23 0x77
178#define KS_GAMMAD24 0x78
179#define KS_GAMMAD25 0x79
180#define KS_GAMMAD26 0x7a
181#define KS_GAMMAD27 0x7b
182#define KS_GAMMAD28 0x7c
183#define KS_GAMMAD29 0x7d
184#define KS_GAMMAD30 0x7e
185#define KS_GAMMAD31 0x7f
186
187
188/****************************************************************************
189* mga_dev : represents one ks0127 chip.
190****************************************************************************/
191
192struct adjust {
193 int contrast;
194 int bright;
195 int hue;
196 int ugain;
197 int vgain;
198};
199
200struct ks0127 {
Hans Verkuil0750e972009-02-19 11:50:27 -0300201 struct v4l2_subdev sd;
Hans Verkuil107063c2009-02-18 17:26:06 -0300202 v4l2_std_id norm;
Hans Verkuil0750e972009-02-19 11:50:27 -0300203 int ident;
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300204 u8 regs[256];
205};
206
Hans Verkuil0750e972009-02-19 11:50:27 -0300207static inline struct ks0127 *to_ks0127(struct v4l2_subdev *sd)
208{
209 return container_of(sd, struct ks0127, sd);
210}
211
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300212
213static int debug; /* insmod parameter */
214
215module_param(debug, int, 0);
216MODULE_PARM_DESC(debug, "Debug output");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300217
218static u8 reg_defaults[64];
219
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300220static void init_reg_defaults(void)
221{
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300222 static int initialized;
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300223 u8 *table = reg_defaults;
224
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300225 if (initialized)
226 return;
227 initialized = 1;
228
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300229 table[KS_CMDA] = 0x2c; /* VSE=0, CCIR 601, autodetect standard */
230 table[KS_CMDB] = 0x12; /* VALIGN=0, AGC control and input */
231 table[KS_CMDC] = 0x00; /* Test options */
232 /* clock & input select, write 1 to PORTA */
233 table[KS_CMDD] = 0x01;
234 table[KS_HAVB] = 0x00; /* HAV Start Control */
235 table[KS_HAVE] = 0x00; /* HAV End Control */
236 table[KS_HS1B] = 0x10; /* HS1 Start Control */
237 table[KS_HS1E] = 0x00; /* HS1 End Control */
238 table[KS_HS2B] = 0x00; /* HS2 Start Control */
239 table[KS_HS2E] = 0x00; /* HS2 End Control */
240 table[KS_AGC] = 0x53; /* Manual setting for AGC */
241 table[KS_HXTRA] = 0x00; /* Extra Bits for HAV and HS1/2 */
242 table[KS_CDEM] = 0x00; /* Chroma Demodulation Control */
243 table[KS_PORTAB] = 0x0f; /* port B is input, port A output GPPORT */
244 table[KS_LUMA] = 0x01; /* Luma control */
245 table[KS_CON] = 0x00; /* Contrast Control */
246 table[KS_BRT] = 0x00; /* Brightness Control */
247 table[KS_CHROMA] = 0x2a; /* Chroma control A */
248 table[KS_CHROMB] = 0x90; /* Chroma control B */
249 table[KS_DEMOD] = 0x00; /* Chroma Demodulation Control & Status */
250 table[KS_SAT] = 0x00; /* Color Saturation Control*/
251 table[KS_HUE] = 0x00; /* Hue Control */
252 table[KS_VERTIA] = 0x00; /* Vertical Processing Control A */
253 /* Vertical Processing Control B, luma 1 line delayed */
254 table[KS_VERTIB] = 0x12;
255 table[KS_VERTIC] = 0x0b; /* Vertical Processing Control C */
256 table[KS_HSCLL] = 0x00; /* Horizontal Scaling Ratio Low */
257 table[KS_HSCLH] = 0x00; /* Horizontal Scaling Ratio High */
258 table[KS_VSCLL] = 0x00; /* Vertical Scaling Ratio Low */
259 table[KS_VSCLH] = 0x00; /* Vertical Scaling Ratio High */
260 /* 16 bit YCbCr 4:2:2 output; I can't make the bt866 like 8 bit /Sam */
261 table[KS_OFMTA] = 0x30;
262 table[KS_OFMTB] = 0x00; /* Output Control B */
263 /* VBI Decoder Control; 4bit fmt: avoid Y overflow */
264 table[KS_VBICTL] = 0x5d;
265 table[KS_CCDAT2] = 0x00; /* Read Only register */
266 table[KS_CCDAT1] = 0x00; /* Read Only register */
267 table[KS_VBIL30] = 0xa8; /* VBI data decoding options */
268 table[KS_VBIL74] = 0xaa; /* VBI data decoding options */
269 table[KS_VBIL118] = 0x2a; /* VBI data decoding options */
270 table[KS_VBIL1512] = 0x00; /* VBI data decoding options */
271 table[KS_TTFRAM] = 0x00; /* Teletext frame alignment pattern */
272 table[KS_TESTA] = 0x00; /* test register, shouldn't be written */
273 table[KS_UVOFFH] = 0x00; /* UV Offset Adjustment High */
274 table[KS_UVOFFL] = 0x00; /* UV Offset Adjustment Low */
275 table[KS_UGAIN] = 0x00; /* U Component Gain Adjustment */
276 table[KS_VGAIN] = 0x00; /* V Component Gain Adjustment */
277 table[KS_VAVB] = 0x07; /* VAV Begin */
278 table[KS_VAVE] = 0x00; /* VAV End */
279 table[KS_CTRACK] = 0x00; /* Chroma Tracking Control */
280 table[KS_POLCTL] = 0x41; /* Timing Signal Polarity Control */
281 table[KS_REFCOD] = 0x80; /* Reference Code Insertion Control */
282 table[KS_INVALY] = 0x10; /* Invalid Y Code */
283 table[KS_INVALU] = 0x80; /* Invalid U Code */
284 table[KS_INVALV] = 0x80; /* Invalid V Code */
285 table[KS_UNUSEY] = 0x10; /* Unused Y Code */
286 table[KS_UNUSEU] = 0x80; /* Unused U Code */
287 table[KS_UNUSEV] = 0x80; /* Unused V Code */
288 table[KS_USRSAV] = 0x00; /* reserved */
289 table[KS_USREAV] = 0x00; /* reserved */
290 table[KS_SHS1A] = 0x00; /* User Defined SHS1 A */
291 /* User Defined SHS1 B, ALT656=1 on 0127B */
292 table[KS_SHS1B] = 0x80;
293 table[KS_SHS1C] = 0x00; /* User Defined SHS1 C */
294 table[KS_CMDE] = 0x00; /* Command Register E */
295 table[KS_VSDEL] = 0x00; /* VS Delay Control */
296 /* Command Register F, update -immediately- */
297 /* (there might come no vsync)*/
298 table[KS_CMDF] = 0x02;
299}
300
301
302/* We need to manually read because of a bug in the KS0127 chip.
303 *
304 * An explanation from kayork@mail.utexas.edu:
305 *
306 * During I2C reads, the KS0127 only samples for a stop condition
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300307 * during the place where the acknowledge bit should be. Any standard
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300308 * I2C implementation (correctly) throws in another clock transition
309 * at the 9th bit, and the KS0127 will not recognize the stop condition
310 * and will continue to clock out data.
311 *
312 * So we have to do the read ourself. Big deal.
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300313 * workaround in i2c-algo-bit
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300314 */
315
316
Hans Verkuil0750e972009-02-19 11:50:27 -0300317static u8 ks0127_read(struct v4l2_subdev *sd, u8 reg)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300318{
Hans Verkuil0750e972009-02-19 11:50:27 -0300319 struct i2c_client *client = v4l2_get_subdevdata(sd);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300320 char val = 0;
321 struct i2c_msg msgs[] = {
Hans Verkuil0750e972009-02-19 11:50:27 -0300322 { client->addr, 0, sizeof(reg), &reg },
323 { client->addr, I2C_M_RD | I2C_M_NO_RD_ACK, sizeof(val), &val }
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300324 };
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300325 int ret;
326
Hans Verkuil0750e972009-02-19 11:50:27 -0300327 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300328 if (ret != ARRAY_SIZE(msgs))
Hans Verkuil0750e972009-02-19 11:50:27 -0300329 v4l2_dbg(1, debug, sd, "read error\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300330
331 return val;
332}
333
334
Hans Verkuil0750e972009-02-19 11:50:27 -0300335static void ks0127_write(struct v4l2_subdev *sd, u8 reg, u8 val)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300336{
Hans Verkuil0750e972009-02-19 11:50:27 -0300337 struct i2c_client *client = v4l2_get_subdevdata(sd);
338 struct ks0127 *ks = to_ks0127(sd);
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300339 char msg[] = { reg, val };
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300340
Hans Verkuil0750e972009-02-19 11:50:27 -0300341 if (i2c_master_send(client, msg, sizeof(msg)) != sizeof(msg))
342 v4l2_dbg(1, debug, sd, "write error\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300343
344 ks->regs[reg] = val;
345}
346
347
348/* generic bit-twiddling */
Hans Verkuil0750e972009-02-19 11:50:27 -0300349static void ks0127_and_or(struct v4l2_subdev *sd, u8 reg, u8 and_v, u8 or_v)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300350{
Hans Verkuil0750e972009-02-19 11:50:27 -0300351 struct ks0127 *ks = to_ks0127(sd);
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300352
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300353 u8 val = ks->regs[reg];
354 val = (val & and_v) | or_v;
Hans Verkuil0750e972009-02-19 11:50:27 -0300355 ks0127_write(sd, reg, val);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300356}
357
358
359
360/****************************************************************************
361* ks0127 private api
362****************************************************************************/
Hans Verkuil0750e972009-02-19 11:50:27 -0300363static void ks0127_init(struct v4l2_subdev *sd)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300364{
Hans Verkuil0750e972009-02-19 11:50:27 -0300365 struct ks0127 *ks = to_ks0127(sd);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300366 u8 *table = reg_defaults;
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300367 int i;
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300368
Hans Verkuil0750e972009-02-19 11:50:27 -0300369 ks->ident = V4L2_IDENT_KS0127;
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300370
Hans Verkuil0750e972009-02-19 11:50:27 -0300371 v4l2_dbg(1, debug, sd, "reset\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300372 msleep(1);
373
374 /* initialize all registers to known values */
375 /* (except STAT, 0x21, 0x22, TEST and 0x38,0x39) */
376
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300377 for (i = 1; i < 33; i++)
Hans Verkuil0750e972009-02-19 11:50:27 -0300378 ks0127_write(sd, i, table[i]);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300379
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300380 for (i = 35; i < 40; i++)
Hans Verkuil0750e972009-02-19 11:50:27 -0300381 ks0127_write(sd, i, table[i]);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300382
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300383 for (i = 41; i < 56; i++)
Hans Verkuil0750e972009-02-19 11:50:27 -0300384 ks0127_write(sd, i, table[i]);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300385
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300386 for (i = 58; i < 64; i++)
Hans Verkuil0750e972009-02-19 11:50:27 -0300387 ks0127_write(sd, i, table[i]);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300388
389
Hans Verkuil0750e972009-02-19 11:50:27 -0300390 if ((ks0127_read(sd, KS_STAT) & 0x80) == 0) {
391 ks->ident = V4L2_IDENT_KS0122S;
392 v4l2_dbg(1, debug, sd, "ks0122s found\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300393 return;
394 }
395
Hans Verkuil0750e972009-02-19 11:50:27 -0300396 switch (ks0127_read(sd, KS_CMDE) & 0x0f) {
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300397 case 0:
Hans Verkuil0750e972009-02-19 11:50:27 -0300398 v4l2_dbg(1, debug, sd, "ks0127 found\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300399 break;
400
401 case 9:
Hans Verkuil0750e972009-02-19 11:50:27 -0300402 ks->ident = V4L2_IDENT_KS0127B;
403 v4l2_dbg(1, debug, sd, "ks0127B Revision A found\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300404 break;
405
406 default:
Hans Verkuil0750e972009-02-19 11:50:27 -0300407 v4l2_dbg(1, debug, sd, "unknown revision\n");
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300408 break;
409 }
410}
411
Hans Verkuil5325b422009-04-02 11:26:22 -0300412static int ks0127_s_routing(struct v4l2_subdev *sd,
413 u32 input, u32 output, u32 config)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300414{
Hans Verkuil0750e972009-02-19 11:50:27 -0300415 struct ks0127 *ks = to_ks0127(sd);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300416
Hans Verkuil5325b422009-04-02 11:26:22 -0300417 switch (input) {
Hans Verkuil0750e972009-02-19 11:50:27 -0300418 case KS_INPUT_COMPOSITE_1:
419 case KS_INPUT_COMPOSITE_2:
420 case KS_INPUT_COMPOSITE_3:
421 case KS_INPUT_COMPOSITE_4:
422 case KS_INPUT_COMPOSITE_5:
423 case KS_INPUT_COMPOSITE_6:
424 v4l2_dbg(1, debug, sd,
Hans Verkuil5325b422009-04-02 11:26:22 -0300425 "s_routing %d: Composite\n", input);
Hans Verkuil0750e972009-02-19 11:50:27 -0300426 /* autodetect 50/60 Hz */
427 ks0127_and_or(sd, KS_CMDA, 0xfc, 0x00);
428 /* VSE=0 */
429 ks0127_and_or(sd, KS_CMDA, ~0x40, 0x00);
430 /* set input line */
Hans Verkuil5325b422009-04-02 11:26:22 -0300431 ks0127_and_or(sd, KS_CMDB, 0xb0, input);
Hans Verkuil0750e972009-02-19 11:50:27 -0300432 /* non-freerunning mode */
433 ks0127_and_or(sd, KS_CMDC, 0x70, 0x0a);
434 /* analog input */
435 ks0127_and_or(sd, KS_CMDD, 0x03, 0x00);
436 /* enable chroma demodulation */
437 ks0127_and_or(sd, KS_CTRACK, 0xcf, 0x00);
438 /* chroma trap, HYBWR=1 */
439 ks0127_and_or(sd, KS_LUMA, 0x00,
440 (reg_defaults[KS_LUMA])|0x0c);
441 /* scaler fullbw, luma comb off */
442 ks0127_and_or(sd, KS_VERTIA, 0x08, 0x81);
443 /* manual chroma comb .25 .5 .25 */
444 ks0127_and_or(sd, KS_VERTIC, 0x0f, 0x90);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300445
Hans Verkuil0750e972009-02-19 11:50:27 -0300446 /* chroma path delay */
447 ks0127_and_or(sd, KS_CHROMB, 0x0f, 0x90);
448
449 ks0127_write(sd, KS_UGAIN, reg_defaults[KS_UGAIN]);
450 ks0127_write(sd, KS_VGAIN, reg_defaults[KS_VGAIN]);
451 ks0127_write(sd, KS_UVOFFH, reg_defaults[KS_UVOFFH]);
452 ks0127_write(sd, KS_UVOFFL, reg_defaults[KS_UVOFFL]);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300453 break;
454
Hans Verkuil0750e972009-02-19 11:50:27 -0300455 case KS_INPUT_SVIDEO_1:
456 case KS_INPUT_SVIDEO_2:
457 case KS_INPUT_SVIDEO_3:
458 v4l2_dbg(1, debug, sd,
Hans Verkuil5325b422009-04-02 11:26:22 -0300459 "s_routing %d: S-Video\n", input);
Hans Verkuil0750e972009-02-19 11:50:27 -0300460 /* autodetect 50/60 Hz */
461 ks0127_and_or(sd, KS_CMDA, 0xfc, 0x00);
462 /* VSE=0 */
463 ks0127_and_or(sd, KS_CMDA, ~0x40, 0x00);
464 /* set input line */
Hans Verkuil5325b422009-04-02 11:26:22 -0300465 ks0127_and_or(sd, KS_CMDB, 0xb0, input);
Hans Verkuil0750e972009-02-19 11:50:27 -0300466 /* non-freerunning mode */
467 ks0127_and_or(sd, KS_CMDC, 0x70, 0x0a);
468 /* analog input */
469 ks0127_and_or(sd, KS_CMDD, 0x03, 0x00);
470 /* enable chroma demodulation */
471 ks0127_and_or(sd, KS_CTRACK, 0xcf, 0x00);
472 ks0127_and_or(sd, KS_LUMA, 0x00,
473 reg_defaults[KS_LUMA]);
474 /* disable luma comb */
475 ks0127_and_or(sd, KS_VERTIA, 0x08,
476 (reg_defaults[KS_VERTIA]&0xf0)|0x01);
477 ks0127_and_or(sd, KS_VERTIC, 0x0f,
478 reg_defaults[KS_VERTIC]&0xf0);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300479
Hans Verkuil0750e972009-02-19 11:50:27 -0300480 ks0127_and_or(sd, KS_CHROMB, 0x0f,
481 reg_defaults[KS_CHROMB]&0xf0);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300482
Hans Verkuil0750e972009-02-19 11:50:27 -0300483 ks0127_write(sd, KS_UGAIN, reg_defaults[KS_UGAIN]);
484 ks0127_write(sd, KS_VGAIN, reg_defaults[KS_VGAIN]);
485 ks0127_write(sd, KS_UVOFFH, reg_defaults[KS_UVOFFH]);
486 ks0127_write(sd, KS_UVOFFL, reg_defaults[KS_UVOFFL]);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300487 break;
488
Hans Verkuil0750e972009-02-19 11:50:27 -0300489 case KS_INPUT_YUV656:
Hans Verkuilbccfa442009-03-30 06:55:27 -0300490 v4l2_dbg(1, debug, sd, "s_routing 15: YUV656\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300491 if (ks->norm & V4L2_STD_525_60)
492 /* force 60 Hz */
493 ks0127_and_or(sd, KS_CMDA, 0xfc, 0x03);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300494 else
Hans Verkuil0750e972009-02-19 11:50:27 -0300495 /* force 50 Hz */
496 ks0127_and_or(sd, KS_CMDA, 0xfc, 0x02);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300497
Hans Verkuil0750e972009-02-19 11:50:27 -0300498 ks0127_and_or(sd, KS_CMDA, 0xff, 0x40); /* VSE=1 */
499 /* set input line and VALIGN */
Hans Verkuil5325b422009-04-02 11:26:22 -0300500 ks0127_and_or(sd, KS_CMDB, 0xb0, (input | 0x40));
Hans Verkuil0750e972009-02-19 11:50:27 -0300501 /* freerunning mode, */
502 /* TSTGEN = 1 TSTGFR=11 TSTGPH=0 TSTGPK=0 VMEM=1*/
503 ks0127_and_or(sd, KS_CMDC, 0x70, 0x87);
504 /* digital input, SYNDIR = 0 INPSL=01 CLKDIR=0 EAV=0 */
505 ks0127_and_or(sd, KS_CMDD, 0x03, 0x08);
506 /* disable chroma demodulation */
507 ks0127_and_or(sd, KS_CTRACK, 0xcf, 0x30);
508 /* HYPK =01 CTRAP = 0 HYBWR=0 PED=1 RGBH=1 UNIT=1 */
509 ks0127_and_or(sd, KS_LUMA, 0x00, 0x71);
510 ks0127_and_or(sd, KS_VERTIC, 0x0f,
511 reg_defaults[KS_VERTIC]&0xf0);
512
513 /* scaler fullbw, luma comb off */
514 ks0127_and_or(sd, KS_VERTIA, 0x08, 0x81);
515
516 ks0127_and_or(sd, KS_CHROMB, 0x0f,
517 reg_defaults[KS_CHROMB]&0xf0);
518
519 ks0127_and_or(sd, KS_CON, 0x00, 0x00);
520 ks0127_and_or(sd, KS_BRT, 0x00, 32); /* spec: 34 */
521 /* spec: 229 (e5) */
522 ks0127_and_or(sd, KS_SAT, 0x00, 0xe8);
523 ks0127_and_or(sd, KS_HUE, 0x00, 0);
524
525 ks0127_and_or(sd, KS_UGAIN, 0x00, 238);
526 ks0127_and_or(sd, KS_VGAIN, 0x00, 0x00);
527
528 /*UOFF:0x30, VOFF:0x30, TSTCGN=1 */
529 ks0127_and_or(sd, KS_UVOFFH, 0x00, 0x4f);
530 ks0127_and_or(sd, KS_UVOFFL, 0x00, 0x00);
531 break;
532
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300533 default:
Hans Verkuil0750e972009-02-19 11:50:27 -0300534 v4l2_dbg(1, debug, sd,
Hans Verkuil5325b422009-04-02 11:26:22 -0300535 "s_routing: Unknown input %d\n", input);
Hans Verkuil0750e972009-02-19 11:50:27 -0300536 break;
537 }
538
539 /* hack: CDMLPF sometimes spontaneously switches on; */
540 /* force back off */
541 ks0127_write(sd, KS_DEMOD, reg_defaults[KS_DEMOD]);
542 return 0;
543}
544
545static int ks0127_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
546{
547 struct ks0127 *ks = to_ks0127(sd);
548
549 /* Set to automatic SECAM/Fsc mode */
550 ks0127_and_or(sd, KS_DEMOD, 0xf0, 0x00);
551
552 ks->norm = std;
553 if (std & V4L2_STD_NTSC) {
554 v4l2_dbg(1, debug, sd,
Hans Verkuilbccfa442009-03-30 06:55:27 -0300555 "s_std: NTSC_M\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300556 ks0127_and_or(sd, KS_CHROMA, 0x9f, 0x20);
557 } else if (std & V4L2_STD_PAL_N) {
558 v4l2_dbg(1, debug, sd,
Hans Verkuilbccfa442009-03-30 06:55:27 -0300559 "s_std: NTSC_N (fixme)\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300560 ks0127_and_or(sd, KS_CHROMA, 0x9f, 0x40);
561 } else if (std & V4L2_STD_PAL) {
562 v4l2_dbg(1, debug, sd,
Hans Verkuilbccfa442009-03-30 06:55:27 -0300563 "s_std: PAL_N\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300564 ks0127_and_or(sd, KS_CHROMA, 0x9f, 0x20);
565 } else if (std & V4L2_STD_PAL_M) {
566 v4l2_dbg(1, debug, sd,
Hans Verkuilbccfa442009-03-30 06:55:27 -0300567 "s_std: PAL_M (fixme)\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300568 ks0127_and_or(sd, KS_CHROMA, 0x9f, 0x40);
569 } else if (std & V4L2_STD_SECAM) {
570 v4l2_dbg(1, debug, sd,
Hans Verkuilbccfa442009-03-30 06:55:27 -0300571 "s_std: SECAM\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300572
573 /* set to secam autodetection */
574 ks0127_and_or(sd, KS_CHROMA, 0xdf, 0x20);
575 ks0127_and_or(sd, KS_DEMOD, 0xf0, 0x00);
576 schedule_timeout_interruptible(HZ/10+1);
577
578 /* did it autodetect? */
579 if (!(ks0127_read(sd, KS_DEMOD) & 0x40))
580 /* force to secam mode */
581 ks0127_and_or(sd, KS_DEMOD, 0xf0, 0x0f);
582 } else {
Hans Verkuilbccfa442009-03-30 06:55:27 -0300583 v4l2_dbg(1, debug, sd, "s_std: Unknown norm %llx\n",
Hans Verkuilcc5cef82009-03-06 10:15:01 -0300584 (unsigned long long)std);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300585 }
586 return 0;
587}
588
Hans Verkuil0750e972009-02-19 11:50:27 -0300589static int ks0127_s_stream(struct v4l2_subdev *sd, int enable)
590{
591 v4l2_dbg(1, debug, sd, "s_stream(%d)\n", enable);
592 if (enable) {
593 /* All output pins on */
594 ks0127_and_or(sd, KS_OFMTA, 0xcf, 0x30);
595 /* Obey the OEN pin */
596 ks0127_and_or(sd, KS_CDEM, 0x7f, 0x00);
597 } else {
598 /* Video output pins off */
599 ks0127_and_or(sd, KS_OFMTA, 0xcf, 0x00);
600 /* Ignore the OEN pin */
601 ks0127_and_or(sd, KS_CDEM, 0x7f, 0x80);
602 }
603 return 0;
604}
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300605
Hans Verkuil0750e972009-02-19 11:50:27 -0300606static int ks0127_status(struct v4l2_subdev *sd, u32 *pstatus, v4l2_std_id *pstd)
607{
608 int stat = V4L2_IN_ST_NO_SIGNAL;
609 u8 status;
610 v4l2_std_id std = V4L2_STD_ALL;
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300611
Hans Verkuil0750e972009-02-19 11:50:27 -0300612 status = ks0127_read(sd, KS_STAT);
613 if (!(status & 0x20)) /* NOVID not set */
614 stat = 0;
615 if (!(status & 0x01)) /* CLOCK set */
616 stat |= V4L2_IN_ST_NO_COLOR;
617 if ((status & 0x08)) /* PALDET set */
618 std = V4L2_STD_PAL;
619 else
620 std = V4L2_STD_NTSC;
621 if (pstd)
622 *pstd = std;
623 if (pstatus)
624 *pstatus = stat;
625 return 0;
626}
627
628static int ks0127_querystd(struct v4l2_subdev *sd, v4l2_std_id *std)
629{
Hans Verkuilbccfa442009-03-30 06:55:27 -0300630 v4l2_dbg(1, debug, sd, "querystd\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300631 return ks0127_status(sd, NULL, std);
632}
633
634static int ks0127_g_input_status(struct v4l2_subdev *sd, u32 *status)
635{
Hans Verkuilbccfa442009-03-30 06:55:27 -0300636 v4l2_dbg(1, debug, sd, "g_input_status\n");
Hans Verkuil0750e972009-02-19 11:50:27 -0300637 return ks0127_status(sd, status, NULL);
638}
639
640static int ks0127_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
641{
642 struct i2c_client *client = v4l2_get_subdevdata(sd);
643 struct ks0127 *ks = to_ks0127(sd);
644
645 return v4l2_chip_ident_i2c_client(client, chip, ks->ident, 0);
646}
647
Hans Verkuil0750e972009-02-19 11:50:27 -0300648/* ----------------------------------------------------------------------- */
649
650static const struct v4l2_subdev_core_ops ks0127_core_ops = {
651 .g_chip_ident = ks0127_g_chip_ident,
Hans Verkuil0750e972009-02-19 11:50:27 -0300652 .s_std = ks0127_s_std,
653};
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300654
Hans Verkuil0750e972009-02-19 11:50:27 -0300655static const struct v4l2_subdev_video_ops ks0127_video_ops = {
656 .s_routing = ks0127_s_routing,
657 .s_stream = ks0127_s_stream,
658 .querystd = ks0127_querystd,
659 .g_input_status = ks0127_g_input_status,
660};
661
662static const struct v4l2_subdev_ops ks0127_ops = {
663 .core = &ks0127_core_ops,
Hans Verkuil0750e972009-02-19 11:50:27 -0300664 .video = &ks0127_video_ops,
665};
666
667/* ----------------------------------------------------------------------- */
668
669
670static int ks0127_probe(struct i2c_client *client, const struct i2c_device_id *id)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300671{
672 struct ks0127 *ks;
Hans Verkuil0750e972009-02-19 11:50:27 -0300673 struct v4l2_subdev *sd;
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300674
Hans Verkuil0750e972009-02-19 11:50:27 -0300675 v4l_info(client, "%s chip found @ 0x%x (%s)\n",
676 client->addr == (I2C_KS0127_ADDON >> 1) ? "addon" : "on-board",
677 client->addr << 1, client->adapter->name);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300678
679 ks = kzalloc(sizeof(*ks), GFP_KERNEL);
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300680 if (ks == NULL)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300681 return -ENOMEM;
Hans Verkuil0750e972009-02-19 11:50:27 -0300682 sd = &ks->sd;
683 v4l2_i2c_subdev_init(sd, client, &ks0127_ops);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300684
685 /* power up */
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300686 init_reg_defaults();
Hans Verkuil0750e972009-02-19 11:50:27 -0300687 ks0127_write(sd, KS_CMDA, 0x2c);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300688 mdelay(10);
689
690 /* reset the device */
Hans Verkuil0750e972009-02-19 11:50:27 -0300691 ks0127_init(sd);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300692 return 0;
693}
694
Hans Verkuil0750e972009-02-19 11:50:27 -0300695static int ks0127_remove(struct i2c_client *client)
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300696{
Hans Verkuil0750e972009-02-19 11:50:27 -0300697 struct v4l2_subdev *sd = i2c_get_clientdata(client);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300698
Hans Verkuil0750e972009-02-19 11:50:27 -0300699 v4l2_device_unregister_subdev(sd);
700 ks0127_write(sd, KS_OFMTA, 0x20); /* tristate */
701 ks0127_write(sd, KS_CMDA, 0x2c | 0x80); /* power down */
702 kfree(to_ks0127(sd));
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300703 return 0;
704}
705
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300706static const struct i2c_device_id ks0127_id[] = {
707 { "ks0127", 0 },
Hans Verkuil18d135a2009-02-19 11:51:16 -0300708 { "ks0127b", 0 },
709 { "ks0122s", 0 },
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300710 { }
711};
712MODULE_DEVICE_TABLE(i2c, ks0127_id);
Martin Samuelssonfbe60da2006-04-27 10:17:00 -0300713
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300714static struct v4l2_i2c_driver_data v4l2_i2c_data = {
715 .name = "ks0127",
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300716 .probe = ks0127_probe,
717 .remove = ks0127_remove,
Hans Verkuil9875c0f2008-09-07 08:00:14 -0300718 .id_table = ks0127_id,
719};