Commit f9a76156 authored by Jonathan Corbet's avatar Jonathan Corbet Committed by Mauro Carvalho Chehab

V4L/DVB (4842): Updated camera driver

A couple of Cafe driver fixes, and support for the hue and saturation
controls.
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 96389bf5
...@@ -505,6 +505,8 @@ static struct i2c_algorithm cafe_smbus_algo = { ...@@ -505,6 +505,8 @@ static struct i2c_algorithm cafe_smbus_algo = {
/* Somebody is on the bus */ /* Somebody is on the bus */
static int cafe_cam_init(struct cafe_camera *cam); static int cafe_cam_init(struct cafe_camera *cam);
static void cafe_ctlr_stop_dma(struct cafe_camera *cam);
static void cafe_ctlr_power_down(struct cafe_camera *cam);
static int cafe_smbus_attach(struct i2c_client *client) static int cafe_smbus_attach(struct i2c_client *client)
{ {
...@@ -513,7 +515,6 @@ static int cafe_smbus_attach(struct i2c_client *client) ...@@ -513,7 +515,6 @@ static int cafe_smbus_attach(struct i2c_client *client)
/* /*
* Don't talk to chips we don't recognize. * Don't talk to chips we don't recognize.
*/ */
cam_err(cam, "smbus_attach id = %d\n", client->driver->id);
if (client->driver->id == I2C_DRIVERID_OV7670) { if (client->driver->id == I2C_DRIVERID_OV7670) {
cam->sensor = client; cam->sensor = client;
return cafe_cam_init(cam); return cafe_cam_init(cam);
...@@ -525,8 +526,13 @@ static int cafe_smbus_detach(struct i2c_client *client) ...@@ -525,8 +526,13 @@ static int cafe_smbus_detach(struct i2c_client *client)
{ {
struct cafe_camera *cam = i2c_get_adapdata(client->adapter); struct cafe_camera *cam = i2c_get_adapdata(client->adapter);
if (cam->sensor == client) if (cam->sensor == client) {
cafe_ctlr_stop_dma(cam);
cafe_ctlr_power_down(cam);
cam_err(cam, "lost the sensor!\n");
cam->sensor = NULL; /* Bummer, no camera */ cam->sensor = NULL; /* Bummer, no camera */
cam->state = S_NOTREADY;
}
return 0; return 0;
} }
...@@ -774,7 +780,7 @@ static void cafe_ctlr_power_up(struct cafe_camera *cam) ...@@ -774,7 +780,7 @@ static void cafe_ctlr_power_up(struct cafe_camera *cam)
* wiring). Control 0 is reset - set to 1 to operate. * wiring). Control 0 is reset - set to 1 to operate.
* Control 1 is power down, set to 0 to operate. * Control 1 is power down, set to 0 to operate.
*/ */
cafe_reg_write(cam, REG_GPR, GPR_C1EN|GPR_C0EN|GPR_C1); cafe_reg_write(cam, REG_GPR, GPR_C1EN|GPR_C0EN); /* pwr up, reset */
mdelay(1); /* Marvell says 1ms will do it */ mdelay(1); /* Marvell says 1ms will do it */
cafe_reg_write(cam, REG_GPR, GPR_C1EN|GPR_C0EN|GPR_C0); cafe_reg_write(cam, REG_GPR, GPR_C1EN|GPR_C0EN|GPR_C0);
mdelay(1); /* Enough? */ mdelay(1); /* Enough? */
...@@ -1468,8 +1474,11 @@ static int cafe_v4l_release(struct inode *inode, struct file *filp) ...@@ -1468,8 +1474,11 @@ static int cafe_v4l_release(struct inode *inode, struct file *filp)
cafe_free_sio_buffers(cam); cafe_free_sio_buffers(cam);
cam->owner = NULL; cam->owner = NULL;
} }
if (cam->users == 0) if (cam->users == 0) {
cafe_ctlr_power_down(cam); cafe_ctlr_power_down(cam);
if (! alloc_bufs_at_load)
cafe_free_dma_bufs(cam);
}
mutex_unlock(&cam->s_mutex); mutex_unlock(&cam->s_mutex);
return 0; return 0;
} }
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment