2 * bt856 - BT856A Digital Video Encoder (Rockwell Part)
4 * Copyright (C) 1999 Mike Bernson <mike@mlb.org>
5 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
7 * Modifications for LML33/DC10plus unified driver
8 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
10 * This code was modify/ported from the saa7111 driver written
13 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
14 * - moved over to linux>=2.4.x i2c protocol (9/9/2002)
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.
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.
27 #include <linux/module.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/ioctl.h>
31 #include <linux/uaccess.h>
32 #include <linux/i2c.h>
33 #include <linux/videodev2.h>
34 #include <media/v4l2-device.h>
36 MODULE_DESCRIPTION("Brooktree-856A video encoder driver");
37 MODULE_AUTHOR("Mike Bernson & Dave Perks");
38 MODULE_LICENSE("GPL");
41 module_param(debug
, int, 0);
42 MODULE_PARM_DESC(debug
, "Debug level (0-1)");
45 /* ----------------------------------------------------------------------- */
47 #define BT856_REG_OFFSET 0xDA
48 #define BT856_NR_REG 6
51 struct v4l2_subdev sd
;
52 unsigned char reg
[BT856_NR_REG
];
57 static inline struct bt856
*to_bt856(struct v4l2_subdev
*sd
)
59 return container_of(sd
, struct bt856
, sd
);
62 /* ----------------------------------------------------------------------- */
64 static inline int bt856_write(struct bt856
*encoder
, u8 reg
, u8 value
)
66 struct i2c_client
*client
= v4l2_get_subdevdata(&encoder
->sd
);
68 encoder
->reg
[reg
- BT856_REG_OFFSET
] = value
;
69 return i2c_smbus_write_byte_data(client
, reg
, value
);
72 static inline int bt856_setbit(struct bt856
*encoder
, u8 reg
, u8 bit
, u8 value
)
74 return bt856_write(encoder
, reg
,
75 (encoder
->reg
[reg
- BT856_REG_OFFSET
] & ~(1 << bit
)) |
76 (value
? (1 << bit
) : 0));
79 static void bt856_dump(struct bt856
*encoder
)
83 v4l2_info(&encoder
->sd
, "register dump:\n");
84 for (i
= 0; i
< BT856_NR_REG
; i
+= 2)
85 printk(KERN_CONT
" %02x", encoder
->reg
[i
]);
86 printk(KERN_CONT
"\n");
89 /* ----------------------------------------------------------------------- */
91 static int bt856_init(struct v4l2_subdev
*sd
, u32 arg
)
93 struct bt856
*encoder
= to_bt856(sd
);
95 /* This is just for testing!!! */
96 v4l2_dbg(1, debug
, sd
, "init\n");
97 bt856_write(encoder
, 0xdc, 0x18);
98 bt856_write(encoder
, 0xda, 0);
99 bt856_write(encoder
, 0xde, 0);
101 bt856_setbit(encoder
, 0xdc, 3, 1);
102 /*bt856_setbit(encoder, 0xdc, 6, 0);*/
103 bt856_setbit(encoder
, 0xdc, 4, 1);
105 if (encoder
->norm
& V4L2_STD_NTSC
)
106 bt856_setbit(encoder
, 0xdc, 2, 0);
108 bt856_setbit(encoder
, 0xdc, 2, 1);
110 bt856_setbit(encoder
, 0xdc, 1, 1);
111 bt856_setbit(encoder
, 0xde, 4, 0);
112 bt856_setbit(encoder
, 0xde, 3, 1);
118 static int bt856_s_std_output(struct v4l2_subdev
*sd
, v4l2_std_id std
)
120 struct bt856
*encoder
= to_bt856(sd
);
122 v4l2_dbg(1, debug
, sd
, "set norm %llx\n", (unsigned long long)std
);
124 if (std
& V4L2_STD_NTSC
) {
125 bt856_setbit(encoder
, 0xdc, 2, 0);
126 } else if (std
& V4L2_STD_PAL
) {
127 bt856_setbit(encoder
, 0xdc, 2, 1);
128 bt856_setbit(encoder
, 0xda, 0, 0);
129 /*bt856_setbit(encoder, 0xda, 0, 1);*/
139 static int bt856_s_routing(struct v4l2_subdev
*sd
,
140 u32 input
, u32 output
, u32 config
)
142 struct bt856
*encoder
= to_bt856(sd
);
144 v4l2_dbg(1, debug
, sd
, "set input %d\n", input
);
146 /* We only have video bus.
147 * input= 0: input is from bt819
148 * input= 1: input is from ZR36060 */
151 bt856_setbit(encoder
, 0xde, 4, 0);
152 bt856_setbit(encoder
, 0xde, 3, 1);
153 bt856_setbit(encoder
, 0xdc, 3, 1);
154 bt856_setbit(encoder
, 0xdc, 6, 0);
157 bt856_setbit(encoder
, 0xde, 4, 0);
158 bt856_setbit(encoder
, 0xde, 3, 1);
159 bt856_setbit(encoder
, 0xdc, 3, 1);
160 bt856_setbit(encoder
, 0xdc, 6, 1);
162 case 2: /* Color bar */
163 bt856_setbit(encoder
, 0xdc, 3, 0);
164 bt856_setbit(encoder
, 0xde, 4, 1);
175 /* ----------------------------------------------------------------------- */
177 static const struct v4l2_subdev_core_ops bt856_core_ops
= {
181 static const struct v4l2_subdev_video_ops bt856_video_ops
= {
182 .s_std_output
= bt856_s_std_output
,
183 .s_routing
= bt856_s_routing
,
186 static const struct v4l2_subdev_ops bt856_ops
= {
187 .core
= &bt856_core_ops
,
188 .video
= &bt856_video_ops
,
191 /* ----------------------------------------------------------------------- */
193 static int bt856_probe(struct i2c_client
*client
,
194 const struct i2c_device_id
*id
)
196 struct bt856
*encoder
;
197 struct v4l2_subdev
*sd
;
199 /* Check if the adapter supports the needed features */
200 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
203 v4l_info(client
, "chip found @ 0x%x (%s)\n",
204 client
->addr
<< 1, client
->adapter
->name
);
206 encoder
= devm_kzalloc(&client
->dev
, sizeof(*encoder
), GFP_KERNEL
);
210 v4l2_i2c_subdev_init(sd
, client
, &bt856_ops
);
211 encoder
->norm
= V4L2_STD_NTSC
;
213 bt856_write(encoder
, 0xdc, 0x18);
214 bt856_write(encoder
, 0xda, 0);
215 bt856_write(encoder
, 0xde, 0);
217 bt856_setbit(encoder
, 0xdc, 3, 1);
218 /*bt856_setbit(encoder, 0xdc, 6, 0);*/
219 bt856_setbit(encoder
, 0xdc, 4, 1);
221 if (encoder
->norm
& V4L2_STD_NTSC
)
222 bt856_setbit(encoder
, 0xdc, 2, 0);
224 bt856_setbit(encoder
, 0xdc, 2, 1);
226 bt856_setbit(encoder
, 0xdc, 1, 1);
227 bt856_setbit(encoder
, 0xde, 4, 0);
228 bt856_setbit(encoder
, 0xde, 3, 1);
235 static int bt856_remove(struct i2c_client
*client
)
237 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
239 v4l2_device_unregister_subdev(sd
);
243 static const struct i2c_device_id bt856_id
[] = {
247 MODULE_DEVICE_TABLE(i2c
, bt856_id
);
249 static struct i2c_driver bt856_driver
= {
253 .probe
= bt856_probe
,
254 .remove
= bt856_remove
,
255 .id_table
= bt856_id
,
258 module_i2c_driver(bt856_driver
);