m5602_mt9m111.c 6.4 KB
Newer Older
1 2 3
/*
 * Driver for the mt9m111 sensor
 *
4
 * Copyright (C) 2008 Erik Andrén
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright (C) 2007 Ilyes Gouta. Based on the m5603x Linux Driver Project.
 * Copyright (C) 2005 m5603x Linux Driver Project <m5602@x3ng.com.br>
 *
 * Portions of code to USB interface and ALi driver software,
 * Copyright (c) 2006 Willem Duinker
 * v4l2 interface modeled after the V4L2 driver
 * for SN9C10x PC Camera Controllers
 *
 * 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, version 2.
 *
 */

#include "m5602_mt9m111.h"

21 22
static void mt9m111_dump_registers(struct sd *sd);

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
int mt9m111_probe(struct sd *sd)
{
	u8 data[2] = {0x00, 0x00};
	int i;

	if (force_sensor) {
		if (force_sensor == MT9M111_SENSOR) {
			info("Forcing a %s sensor", mt9m111.name);
			goto sensor_found;
		}
		/* If we want to force another sensor, don't try to probe this
		 * one */
		return -ENODEV;
	}

	info("Probing for a mt9m111 sensor");

	/* Do the preinit */
	for (i = 0; i < ARRAY_SIZE(preinit_mt9m111); i++) {
		if (preinit_mt9m111[i][0] == BRIDGE) {
			m5602_write_bridge(sd,
				preinit_mt9m111[i][1],
				preinit_mt9m111[i][2]);
		} else {
			data[0] = preinit_mt9m111[i][2];
			data[1] = preinit_mt9m111[i][3];
49
			m5602_write_sensor(sd,
50 51 52 53
				preinit_mt9m111[i][1], data, 2);
		}
	}

54
	if (m5602_read_sensor(sd, MT9M111_SC_CHIPVER, data, 2))
55 56 57 58 59 60 61 62 63 64 65 66
		return -ENODEV;

	if ((data[0] == 0x14) && (data[1] == 0x3a)) {
		info("Detected a mt9m111 sensor");
		goto sensor_found;
	}

	return -ENODEV;

sensor_found:
	sd->gspca_dev.cam.cam_mode = mt9m111.modes;
	sd->gspca_dev.cam.nmodes = mt9m111.nmodes;
67 68
	sd->desc->ctrls = mt9m111.ctrls;
	sd->desc->nctrls = mt9m111.nctrls;
69 70 71 72 73
	return 0;
}

int mt9m111_init(struct sd *sd)
{
74
	int i, err = 0;
75 76

	/* Init the sensor */
77
	for (i = 0; i < ARRAY_SIZE(init_mt9m111) && !err; i++) {
78 79 80 81 82 83 84 85 86
		u8 data[2];

		if (init_mt9m111[i][0] == BRIDGE) {
			err = m5602_write_bridge(sd,
				init_mt9m111[i][1],
				init_mt9m111[i][2]);
		} else {
			data[0] = init_mt9m111[i][2];
			data[1] = init_mt9m111[i][3];
87
			err = m5602_write_sensor(sd,
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
				init_mt9m111[i][1], data, 2);
		}
	}

	if (dump_sensor)
		mt9m111_dump_registers(sd);

	return (err < 0) ? err : 0;
}

int mt9m111_power_down(struct sd *sd)
{
	return 0;
}

int mt9m111_get_vflip(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 data[2] = {0x00, 0x00};
	struct sd *sd = (struct sd *) gspca_dev;

109
	err = m5602_read_sensor(sd, MT9M111_SC_R_MODE_CONTEXT_B,
110 111
				  data, 2);
	*val = data[0] & MT9M111_RMB_MIRROR_ROWS;
112
	PDEBUG(D_V4L2, "Read vertical flip %d", *val);
113

114
	return err;
115 116 117 118 119 120 121 122
}

int mt9m111_set_vflip(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 data[2] = {0x00, 0x00};
	struct sd *sd = (struct sd *) gspca_dev;

123
	PDEBUG(D_V4L2, "Set vertical flip to %d", val);
124 125

	/* Set the correct page map */
126
	err = m5602_write_sensor(sd, MT9M111_PAGE_MAP, data, 2);
127 128 129
	if (err < 0)
		goto out;

130
	err = m5602_read_sensor(sd, MT9M111_SC_R_MODE_CONTEXT_B, data, 2);
131 132 133 134
	if (err < 0)
		goto out;

	data[0] = (data[0] & 0xfe) | val;
135
	err = m5602_write_sensor(sd, MT9M111_SC_R_MODE_CONTEXT_B,
136 137
				   data, 2);
out:
138
	return err;
139 140 141 142 143 144 145 146
}

int mt9m111_get_hflip(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err;
	u8 data[2] = {0x00, 0x00};
	struct sd *sd = (struct sd *) gspca_dev;

147
	err = m5602_read_sensor(sd, MT9M111_SC_R_MODE_CONTEXT_B,
148 149
				  data, 2);
	*val = data[0] & MT9M111_RMB_MIRROR_COLS;
150
	PDEBUG(D_V4L2, "Read horizontal flip %d", *val);
151

152
	return err;
153 154 155 156 157 158 159 160
}

int mt9m111_set_hflip(struct gspca_dev *gspca_dev, __s32 val)
{
	int err;
	u8 data[2] = {0x00, 0x00};
	struct sd *sd = (struct sd *) gspca_dev;

161
	PDEBUG(D_V4L2, "Set horizontal flip to %d", val);
162 163

	/* Set the correct page map */
164
	err = m5602_write_sensor(sd, MT9M111_PAGE_MAP, data, 2);
165 166 167
	if (err < 0)
		goto out;

168
	err = m5602_read_sensor(sd, MT9M111_SC_R_MODE_CONTEXT_B, data, 2);
169 170 171 172
	if (err < 0)
		goto out;

	data[0] = (data[0] & 0xfd) | ((val << 1) & 0x02);
173
	err = m5602_write_sensor(sd, MT9M111_SC_R_MODE_CONTEXT_B,
174 175
					data, 2);
out:
176
	return err;
177 178 179 180 181 182 183 184
}

int mt9m111_get_gain(struct gspca_dev *gspca_dev, __s32 *val)
{
	int err, tmp;
	u8 data[2] = {0x00, 0x00};
	struct sd *sd = (struct sd *) gspca_dev;

185
	err = m5602_read_sensor(sd, MT9M111_SC_GLOBAL_GAIN, data, 2);
186 187 188 189 190 191 192
	tmp = ((data[1] << 8) | data[0]);

	*val = ((tmp & (1 << 10)) * 2) |
	      ((tmp & (1 <<  9)) * 2) |
	      ((tmp & (1 <<  8)) * 2) |
	       (tmp & 0x7f);

193
	PDEBUG(D_V4L2, "Read gain %d", *val);
194

195
	return err;
196 197 198 199 200 201 202 203 204
}

int mt9m111_set_gain(struct gspca_dev *gspca_dev, __s32 val)
{
	int err, tmp;
	u8 data[2] = {0x00, 0x00};
	struct sd *sd = (struct sd *) gspca_dev;

	/* Set the correct page map */
205
	err = m5602_write_sensor(sd, MT9M111_PAGE_MAP, data, 2);
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
	if (err < 0)
		goto out;

	if (val >= INITIAL_MAX_GAIN * 2 * 2 * 2)
		return -EINVAL;

	if ((val >= INITIAL_MAX_GAIN * 2 * 2) &&
	    (val < (INITIAL_MAX_GAIN - 1) * 2 * 2 * 2))
		tmp = (1 << 10) | (val << 9) |
				(val << 8) | (val / 8);
	else if ((val >= INITIAL_MAX_GAIN * 2) &&
		 (val <  INITIAL_MAX_GAIN * 2 * 2))
		tmp = (1 << 9) | (1 << 8) | (val / 4);
	else if ((val >= INITIAL_MAX_GAIN) &&
		 (val < INITIAL_MAX_GAIN * 2))
		tmp = (1 << 8) | (val / 2);
	else
		tmp = val;

	data[1] = (tmp & 0xff00) >> 8;
	data[0] = (tmp & 0xff);
227
	PDEBUG(D_V4L2, "tmp=%d, data[1]=%d, data[0]=%d", tmp,
228 229
	       data[1], data[0]);

230
	err = m5602_write_sensor(sd, MT9M111_SC_GLOBAL_GAIN,
231 232
				   data, 2);
out:
233
	return err;
234 235
}

236
static void mt9m111_dump_registers(struct sd *sd)
237 238 239 240 241 242 243
{
	u8 address, value[2] = {0x00, 0x00};

	info("Dumping the mt9m111 register state");

	info("Dumping the mt9m111 sensor core registers");
	value[1] = MT9M111_SENSOR_CORE;
244
	m5602_write_sensor(sd, MT9M111_PAGE_MAP, value, 2);
245
	for (address = 0; address < 0xff; address++) {
246
		m5602_read_sensor(sd, address, value, 2);
247 248 249 250 251 252
		info("register 0x%x contains 0x%x%x",
		     address, value[0], value[1]);
	}

	info("Dumping the mt9m111 color pipeline registers");
	value[1] = MT9M111_COLORPIPE;
253
	m5602_write_sensor(sd, MT9M111_PAGE_MAP, value, 2);
254
	for (address = 0; address < 0xff; address++) {
255
		m5602_read_sensor(sd, address, value, 2);
256 257 258 259 260 261
		info("register 0x%x contains 0x%x%x",
		     address, value[0], value[1]);
	}

	info("Dumping the mt9m111 camera control registers");
	value[1] = MT9M111_CAMERA_CONTROL;
262
	m5602_write_sensor(sd, MT9M111_PAGE_MAP, value, 2);
263
	for (address = 0; address < 0xff; address++) {
264
		m5602_read_sensor(sd, address, value, 2);
265 266 267 268 269 270
		info("register 0x%x contains 0x%x%x",
		     address, value[0], value[1]);
	}

	info("mt9m111 register state dump complete");
}