bt856.c 7.0 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 * 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>
32
#include <linux/types.h>
33
#include <linux/ioctl.h>
34
#include <asm/uaccess.h>
35 36
#include <linux/i2c.h>
#include <linux/i2c-id.h>
L
Linus Torvalds 已提交
37
#include <linux/videodev.h>
38 39 40
#include <linux/video_encoder.h>
#include <media/v4l2-common.h>
#include <media/v4l2-i2c-drv-legacy.h>
L
Linus Torvalds 已提交
41 42 43 44 45

MODULE_DESCRIPTION("Brooktree-856A video encoder driver");
MODULE_AUTHOR("Mike Bernson & Dave Perks");
MODULE_LICENSE("GPL");

46
static int debug;
L
Linus Torvalds 已提交
47 48 49 50 51
module_param(debug, int, 0);
MODULE_PARM_DESC(debug, "Debug level (0-1)");

/* ----------------------------------------------------------------------- */

52 53
#define BT856_REG_OFFSET	0xDA
#define BT856_NR_REG		6
L
Linus Torvalds 已提交
54 55

struct bt856 {
56
	unsigned char reg[BT856_NR_REG];
L
Linus Torvalds 已提交
57 58 59 60 61 62 63

	int norm;
	int enable;
};

/* ----------------------------------------------------------------------- */

64
static inline int bt856_write(struct i2c_client *client, u8 reg, u8 value)
L
Linus Torvalds 已提交
65 66 67
{
	struct bt856 *encoder = i2c_get_clientdata(client);

68
	encoder->reg[reg - BT856_REG_OFFSET] = value;
L
Linus Torvalds 已提交
69 70 71
	return i2c_smbus_write_byte_data(client, reg, value);
}

72
static inline int bt856_setbit(struct i2c_client *client, u8 reg, u8 bit, u8 value)
L
Linus Torvalds 已提交
73 74 75 76
{
	struct bt856 *encoder = i2c_get_clientdata(client);

	return bt856_write(client, reg,
77 78
		(encoder->reg[reg - BT856_REG_OFFSET] & ~(1 << bit)) |
				(value ? (1 << bit) : 0));
L
Linus Torvalds 已提交
79 80
}

81
static void bt856_dump(struct i2c_client *client)
L
Linus Torvalds 已提交
82 83 84 85
{
	int i;
	struct bt856 *encoder = i2c_get_clientdata(client);

86
	v4l_info(client, "register dump:\n");
87
	for (i = 0; i < BT856_NR_REG; i += 2)
88 89
		printk(KERN_CONT " %02x", encoder->reg[i]);
	printk(KERN_CONT "\n");
L
Linus Torvalds 已提交
90 91 92 93
}

/* ----------------------------------------------------------------------- */

94
static int bt856_command(struct i2c_client *client, unsigned cmd, void *arg)
L
Linus Torvalds 已提交
95 96 97 98 99 100
{
	struct bt856 *encoder = i2c_get_clientdata(client);

	switch (cmd) {
	case 0:
		/* This is just for testing!!! */
101
		v4l_dbg(1, debug, client, "init\n");
L
Linus Torvalds 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		bt856_write(client, 0xdc, 0x18);
		bt856_write(client, 0xda, 0);
		bt856_write(client, 0xde, 0);

		bt856_setbit(client, 0xdc, 3, 1);
		//bt856_setbit(client, 0xdc, 6, 0);
		bt856_setbit(client, 0xdc, 4, 1);

		switch (encoder->norm) {
		case VIDEO_MODE_NTSC:
			bt856_setbit(client, 0xdc, 2, 0);
			break;

		case VIDEO_MODE_PAL:
			bt856_setbit(client, 0xdc, 2, 1);
			break;
		}

		bt856_setbit(client, 0xdc, 1, 1);
		bt856_setbit(client, 0xde, 4, 0);
		bt856_setbit(client, 0xde, 3, 1);
		if (debug != 0)
			bt856_dump(client);
		break;

	case ENCODER_GET_CAPABILITIES:
	{
		struct video_encoder_capability *cap = arg;

131
		v4l_dbg(1, debug, client, "get capabilities\n");
L
Linus Torvalds 已提交
132 133 134 135 136 137 138

		cap->flags = VIDEO_ENCODER_PAL |
			     VIDEO_ENCODER_NTSC |
			     VIDEO_ENCODER_CCIR;
		cap->inputs = 2;
		cap->outputs = 1;
		break;
139
	}
L
Linus Torvalds 已提交
140 141 142 143 144

	case ENCODER_SET_NORM:
	{
		int *iarg = arg;

145
		v4l_dbg(1, debug, client, "set norm %d\n", *iarg);
L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164

		switch (*iarg) {
		case VIDEO_MODE_NTSC:
			bt856_setbit(client, 0xdc, 2, 0);
			break;

		case VIDEO_MODE_PAL:
			bt856_setbit(client, 0xdc, 2, 1);
			bt856_setbit(client, 0xda, 0, 0);
			//bt856_setbit(client, 0xda, 0, 1);
			break;

		default:
			return -EINVAL;
		}
		encoder->norm = *iarg;
		if (debug != 0)
			bt856_dump(client);
		break;
165
	}
L
Linus Torvalds 已提交
166 167 168 169 170

	case ENCODER_SET_INPUT:
	{
		int *iarg = arg;

171
		v4l_dbg(1, debug, client, "set input %d\n", *iarg);
L
Linus Torvalds 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199

		/* We only have video bus.
		 * iarg = 0: input is from bt819
		 * iarg = 1: input is from ZR36060 */
		switch (*iarg) {
		case 0:
			bt856_setbit(client, 0xde, 4, 0);
			bt856_setbit(client, 0xde, 3, 1);
			bt856_setbit(client, 0xdc, 3, 1);
			bt856_setbit(client, 0xdc, 6, 0);
			break;
		case 1:
			bt856_setbit(client, 0xde, 4, 0);
			bt856_setbit(client, 0xde, 3, 1);
			bt856_setbit(client, 0xdc, 3, 1);
			bt856_setbit(client, 0xdc, 6, 1);
			break;
		case 2:	// Color bar
			bt856_setbit(client, 0xdc, 3, 0);
			bt856_setbit(client, 0xde, 4, 1);
			break;
		default:
			return -EINVAL;
		}

		if (debug != 0)
			bt856_dump(client);
		break;
200
	}
L
Linus Torvalds 已提交
201 202 203 204 205

	case ENCODER_SET_OUTPUT:
	{
		int *iarg = arg;

206
		v4l_dbg(1, debug, client, "set output %d\n", *iarg);
L
Linus Torvalds 已提交
207 208

		/* not much choice of outputs */
209
		if (*iarg != 0)
L
Linus Torvalds 已提交
210 211
			return -EINVAL;
		break;
212
	}
L
Linus Torvalds 已提交
213 214 215 216 217 218 219

	case ENCODER_ENABLE_OUTPUT:
	{
		int *iarg = arg;

		encoder->enable = !!*iarg;

220
		v4l_dbg(1, debug, client, "enable output %d\n", encoder->enable);
L
Linus Torvalds 已提交
221
		break;
222
	}
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230 231 232

	default:
		return -EINVAL;
	}

	return 0;
}

/* ----------------------------------------------------------------------- */

233
static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END };
L
Linus Torvalds 已提交
234

235
I2C_CLIENT_INSMOD;
L
Linus Torvalds 已提交
236

237 238
static int bt856_probe(struct i2c_client *client,
			const struct i2c_device_id *id)
L
Linus Torvalds 已提交
239 240 241 242
{
	struct bt856 *encoder;

	/* Check if the adapter supports the needed features */
243 244
	if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
		return -ENODEV;
L
Linus Torvalds 已提交
245

246 247
	v4l_info(client, "chip found @ 0x%x (%s)\n",
			client->addr << 1, client->adapter->name);
L
Linus Torvalds 已提交
248

P
 
Panagiotis Issaris 已提交
249
	encoder = kzalloc(sizeof(struct bt856), GFP_KERNEL);
250
	if (encoder == NULL)
L
Linus Torvalds 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
		return -ENOMEM;
	encoder->norm = VIDEO_MODE_NTSC;
	encoder->enable = 1;
	i2c_set_clientdata(client, encoder);

	bt856_write(client, 0xdc, 0x18);
	bt856_write(client, 0xda, 0);
	bt856_write(client, 0xde, 0);

	bt856_setbit(client, 0xdc, 3, 1);
	//bt856_setbit(client, 0xdc, 6, 0);
	bt856_setbit(client, 0xdc, 4, 1);

	switch (encoder->norm) {

	case VIDEO_MODE_NTSC:
		bt856_setbit(client, 0xdc, 2, 0);
		break;

	case VIDEO_MODE_PAL:
		bt856_setbit(client, 0xdc, 2, 1);
		break;
	}

	bt856_setbit(client, 0xdc, 1, 1);
	bt856_setbit(client, 0xde, 4, 0);
	bt856_setbit(client, 0xde, 3, 1);

	if (debug != 0)
		bt856_dump(client);
	return 0;
}

284
static int bt856_remove(struct i2c_client *client)
L
Linus Torvalds 已提交
285
{
286
	kfree(i2c_get_clientdata(client));
L
Linus Torvalds 已提交
287 288 289
	return 0;
}

290 291 292 293 294
static const struct i2c_device_id bt856_id[] = {
	{ "bt856", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, bt856_id);
L
Linus Torvalds 已提交
295

296 297 298
static struct v4l2_i2c_driver_data v4l2_i2c_data = {
	.name = "bt856",
	.driverid = I2C_DRIVERID_BT856,
L
Linus Torvalds 已提交
299
	.command = bt856_command,
300 301 302
	.probe = bt856_probe,
	.remove = bt856_remove,
	.id_table = bt856_id,
L
Linus Torvalds 已提交
303
};