Release 4.7 drivers/media/i2c/bt856.c
/*
* bt856 - BT856A Digital Video Encoder (Rockwell Part)
*
* Copyright (C) 1999 Mike Bernson <mike@mlb.org>
* Copyright (C) 1998 Dave Perks <dperks@ibm.net>
*
* Modifications for LML33/DC10plus unified driver
* Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
*
* This code was modify/ported from the saa7111 driver written
* by Dave Perks.
*
* Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
* - moved over to linux>=2.4.x i2c protocol (9/9/2002)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <linux/module.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/ioctl.h>
#include <asm/uaccess.h>
#include <linux/i2c.h>
#include <linux/videodev2.h>
#include <media/v4l2-device.h>
MODULE_DESCRIPTION("Brooktree-856A video encoder driver");
MODULE_AUTHOR("Mike Bernson & Dave Perks");
MODULE_LICENSE("GPL");
static int debug;
module_param(debug, int, 0);
MODULE_PARM_DESC(debug, "Debug level (0-1)");
/* ----------------------------------------------------------------------- */
#define BT856_REG_OFFSET 0xDA
#define BT856_NR_REG 6
struct bt856 {
struct v4l2_subdev sd;
unsigned char reg[BT856_NR_REG];
v4l2_std_id norm;
};
static inline struct bt856 *to_bt856(struct v4l2_subdev *sd)
{
return container_of(sd, struct bt856, sd);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hans verkuil | hans verkuil | 25 | 100.00% | 1 | 100.00% |
| Total | 25 | 100.00% | 1 | 100.00% |
/* ----------------------------------------------------------------------- */
static inline int bt856_write(struct bt856 *encoder, u8 reg, u8 value)
{
struct i2c_client *client = v4l2_get_subdevdata(&encoder->sd);
encoder->reg[reg - BT856_REG_OFFSET] = value;
return i2c_smbus_write_byte_data(client, reg, value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ronald bultje | ronald bultje | 28 | 53.85% | 1 | 25.00% |
linus torvalds | linus torvalds | 14 | 26.92% | 1 | 25.00% |
hans verkuil | hans verkuil | 10 | 19.23% | 2 | 50.00% |
| Total | 52 | 100.00% | 4 | 100.00% |
static inline int bt856_setbit(struct bt856 *encoder, u8 reg, u8 bit, u8 value)
{
return bt856_write(encoder, reg,
(encoder->reg[reg - BT856_REG_OFFSET] & ~(1 << bit)) |
(value ? (1 << bit) : 0));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ronald bultje | ronald bultje | 42 | 71.19% | 1 | 25.00% |
linus torvalds | linus torvalds | 13 | 22.03% | 1 | 25.00% |
hans verkuil | hans verkuil | 4 | 6.78% | 2 | 50.00% |
| Total | 59 | 100.00% | 4 | 100.00% |
static void bt856_dump(struct bt856 *encoder)
{
int i;
v4l2_info(&encoder->sd, "register dump:\n");
for (i = 0; i < BT856_NR_REG; i += 2)
printk(KERN_CONT " %02x", encoder->reg[i]);
printk(KERN_CONT "\n");
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ronald bultje | ronald bultje | 28 | 49.12% | 1 | 14.29% |
hans verkuil | hans verkuil | 11 | 19.30% | 2 | 28.57% |
linus torvalds | linus torvalds | 6 | 10.53% | 1 | 14.29% |
frank davis | frank davis | 6 | 10.53% | 1 | 14.29% |
greg kroah-hartman | greg kroah-hartman | 3 | 5.26% | 1 | 14.29% |
jean delvare | jean delvare | 3 | 5.26% | 1 | 14.29% |
| Total | 57 | 100.00% | 7 | 100.00% |
/* ----------------------------------------------------------------------- */
static int bt856_init(struct v4l2_subdev *sd, u32 arg)
{
struct bt856 *encoder = to_bt856(sd);
/* This is just for testing!!! */
v4l2_dbg(1, debug, sd, "init\n");
bt856_write(encoder, 0xdc, 0x18);
bt856_write(encoder, 0xda, 0);
bt856_write(encoder, 0xde, 0);
bt856_setbit(encoder, 0xdc, 3, 1);
/*bt856_setbit(encoder, 0xdc, 6, 0);*/
bt856_setbit(encoder, 0xdc, 4, 1);
if (encoder->norm & V4L2_STD_NTSC)
bt856_setbit(encoder, 0xdc, 2, 0);
else
bt856_setbit(encoder, 0xdc, 2, 1);
bt856_setbit(encoder, 0xdc, 1, 1);
bt856_setbit(encoder, 0xde, 4, 0);
bt856_setbit(encoder, 0xde, 3, 1);
if (debug != 0)
bt856_dump(encoder);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 70 | 42.68% | 1 | 14.29% |
ronald bultje | ronald bultje | 54 | 32.93% | 1 | 14.29% |
hans verkuil | hans verkuil | 32 | 19.51% | 3 | 42.86% |
frank davis | frank davis | 4 | 2.44% | 1 | 14.29% |
greg kroah-hartman | greg kroah-hartman | 4 | 2.44% | 1 | 14.29% |
| Total | 164 | 100.00% | 7 | 100.00% |
static int bt856_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std)
{
struct bt856 *encoder = to_bt856(sd);
v4l2_dbg(1, debug, sd, "set norm %llx\n", (unsigned long long)std);
if (std & V4L2_STD_NTSC) {
bt856_setbit(encoder, 0xdc, 2, 0);
} else if (std & V4L2_STD_PAL) {
bt856_setbit(encoder, 0xdc, 2, 1);
bt856_setbit(encoder, 0xda, 0, 0);
/*bt856_setbit(encoder, 0xda, 0, 1);*/
} else {
return -EINVAL;
}
encoder->norm = std;
if (debug != 0)
bt856_dump(encoder);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hans verkuil | hans verkuil | 57 | 47.50% | 4 | 66.67% |
linus torvalds | linus torvalds | 51 | 42.50% | 1 | 16.67% |
ronald bultje | ronald bultje | 12 | 10.00% | 1 | 16.67% |
| Total | 120 | 100.00% | 6 | 100.00% |
static int bt856_s_routing(struct v4l2_subdev *sd,
u32 input, u32 output, u32 config)
{
struct bt856 *encoder = to_bt856(sd);
v4l2_dbg(1, debug, sd, "set input %d\n", input);
/* We only have video bus.
* input= 0: input is from bt819
* input= 1: input is from ZR36060 */
switch (input) {
case 0:
bt856_setbit(encoder, 0xde, 4, 0);
bt856_setbit(encoder, 0xde, 3, 1);
bt856_setbit(encoder, 0xdc, 3, 1);
bt856_setbit(encoder, 0xdc, 6, 0);
break;
case 1:
bt856_setbit(encoder, 0xde, 4, 0);
bt856_setbit(encoder, 0xde, 3, 1);
bt856_setbit(encoder, 0xdc, 3, 1);
bt856_setbit(encoder, 0xdc, 6, 1);
break;
case 2: /* Color bar */
bt856_setbit(encoder, 0xdc, 3, 0);
bt856_setbit(encoder, 0xde, 4, 1);
break;
default:
return -EINVAL;
}
if (debug != 0)
bt856_dump(encoder);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ronald bultje | ronald bultje | 125 | 65.10% | 1 | 16.67% |
hans verkuil | hans verkuil | 48 | 25.00% | 4 | 66.67% |
linus torvalds | linus torvalds | 19 | 9.90% | 1 | 16.67% |
| Total | 192 | 100.00% | 6 | 100.00% |
/* ----------------------------------------------------------------------- */
static const struct v4l2_subdev_core_ops bt856_core_ops = {
.init = bt856_init,
};
static const struct v4l2_subdev_video_ops bt856_video_ops = {
.s_std_output = bt856_s_std_output,
.s_routing = bt856_s_routing,
};
static const struct v4l2_subdev_ops bt856_ops = {
.core = &bt856_core_ops,
.video = &bt856_video_ops,
};
/* ----------------------------------------------------------------------- */
static int bt856_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
struct bt856 *encoder;
struct v4l2_subdev *sd;
/* Check if the adapter supports the needed features */
if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
return -ENODEV;
v4l_info(client, "chip found @ 0x%x (%s)\n",
client->addr << 1, client->adapter->name);
encoder = devm_kzalloc(&client->dev, sizeof(*encoder), GFP_KERNEL);
if (encoder == NULL)
return -ENOMEM;
sd = &encoder->sd;
v4l2_i2c_subdev_init(sd, client, &bt856_ops);
encoder->norm = V4L2_STD_NTSC;
bt856_write(encoder, 0xdc, 0x18);
bt856_write(encoder, 0xda, 0);
bt856_write(encoder, 0xde, 0);
bt856_setbit(encoder, 0xdc, 3, 1);
/*bt856_setbit(encoder, 0xdc, 6, 0);*/
bt856_setbit(encoder, 0xdc, 4, 1);
if (encoder->norm & V4L2_STD_NTSC)
bt856_setbit(encoder, 0xdc, 2, 0);
else
bt856_setbit(encoder, 0xdc, 2, 1);
bt856_setbit(encoder, 0xdc, 1, 1);
bt856_setbit(encoder, 0xde, 4, 0);
bt856_setbit(encoder, 0xde, 3, 1);
if (debug != 0)
bt856_dump(encoder);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ronald bultje | ronald bultje | 106 | 43.80% | 1 | 16.67% |
linus torvalds | linus torvalds | 72 | 29.75% | 1 | 16.67% |
hans verkuil | hans verkuil | 56 | 23.14% | 3 | 50.00% |
laurent pinchart | laurent pinchart | 8 | 3.31% | 1 | 16.67% |
| Total | 242 | 100.00% | 6 | 100.00% |
static int bt856_remove(struct i2c_client *client)
{
struct v4l2_subdev *sd = i2c_get_clientdata(client);
v4l2_device_unregister_subdev(sd);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hans verkuil | hans verkuil | 17 | 58.62% | 2 | 50.00% |
ronald bultje | ronald bultje | 6 | 20.69% | 1 | 25.00% |
linus torvalds | linus torvalds | 6 | 20.69% | 1 | 25.00% |
| Total | 29 | 100.00% | 4 | 100.00% |
static const struct i2c_device_id bt856_id[] = {
{ "bt856", 0 },
{ }
};
MODULE_DEVICE_TABLE(i2c, bt856_id);
static struct i2c_driver bt856_driver = {
.driver = {
.name = "bt856",
},
.probe = bt856_probe,
.remove = bt856_remove,
.id_table = bt856_id,
};
module_i2c_driver(bt856_driver);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ronald bultje | ronald bultje | 445 | 38.90% | 1 | 5.26% |
hans verkuil | hans verkuil | 354 | 30.94% | 7 | 36.84% |
linus torvalds | linus torvalds | 289 | 25.26% | 1 | 5.26% |
frank davis | frank davis | 20 | 1.75% | 2 | 10.53% |
jean delvare | jean delvare | 9 | 0.79% | 1 | 5.26% |
greg kroah-hartman | greg kroah-hartman | 8 | 0.70% | 1 | 5.26% |
laurent pinchart | laurent pinchart | 8 | 0.70% | 1 | 5.26% |
andrew morton | andrew morton | 4 | 0.35% | 1 | 5.26% |
tejun heo | tejun heo | 3 | 0.26% | 1 | 5.26% |
mauro carvalho chehab | mauro carvalho chehab | 2 | 0.17% | 2 | 10.53% |
axel lin | axel lin | 2 | 0.17% | 1 | 5.26% |
| Total | 1144 | 100.00% | 19 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.