Commit 0982db20 authored by Volokh Konstantin's avatar Volokh Konstantin Committed by Mauro Carvalho Chehab

[media] staging: media: go7007: Adlink MPG24 board issues

This issuses applyed only for Adlink MPG24 board with go7007
 & wis2804, all whese changes was tested for continuos
 load&restart mode

This is minimal changes needed for start up go7007&wis2804 to work correctly
  in 3.4 branch

Changes:
  - When go7007 reset device, i2c was not worked (need rewrite GPIO5)
  - As wis2804 has i2c_addr=0x00/*really*/, so Need set I2C_CLIENT_TEN flag for validity
  - some main nonzero initialization, rewrites with kzalloc instead kmalloc
  - STATUS_SHUTDOWN was placed in incorrect place, so if firmware wasn`t loaded, we
    failed v4l2_device_unregister with kernel panic (OOPS)
  - some new v4l2 style features as call_all(...s_stream...) for using subdev calls
  - wis-tw2804.ko module code was incompatible with 3.4 branch in initialization v4l2_subdev parts.
    now i2c_get_clientdata(...) contains v4l2_subdev struct instead non standart wis_tw2804 struct

Adds:
  - Additional chipset tw2804 controls with: gain,auto gain,inputs[0,1],color kill,chroma gain,gain balances,
    for all 4 channels (from tw2804.pdf)
  - Power control for each 4 ADC (tw2804) up when s_stream(...,1), down otherwise
Signed-off-by: default avatarVolokh Konstantin <volokh84@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ccb5cf9b
...@@ -5,6 +5,24 @@ Todo: ...@@ -5,6 +5,24 @@ Todo:
and added to the build. and added to the build.
- testing? - testing?
- handle churn in v4l layer. - handle churn in v4l layer.
- Some features for wis-tw2804 subdev control (comb filter,motion detector sensitive & mask,more over...)
- go7007-v4l2.c need rewrite with new v4l2 style without nonstandart IO controls (set detector & bitrate)
05/05/2012 3.4.0-rc+:
Changes:
- When go7007 reset device, i2c was not worked (need rewrite GPIO5)
- As wis2804 has i2c_addr=0x00/*really*/, so Need set I2C_CLIENT_TEN flag for validity
- Some main nonzero initialization, rewrites with kzalloc instead kmalloc
- STATUS_SHUTDOWN was placed in incorrect place, so if firmware wasn`t loaded, we
failed v4l2_device_unregister with kernel panic (OOPS)
- Some new v4l2 style features as call_all(...s_stream...) for using subdev calls
- wis-tw2804.ko module code was incompatible with 3.4.x branch in initialization v4l2_subdev parts.
now i2c_get_clientdata(...) contains v4l2_subdev struct instead non standart wis_tw2804 struct
Adds:
- Additional chipset wis2804 controls with: gain,auto gain,inputs[0,1],color kill,chroma gain,gain balances,
for all 4 channels (from tw2804.pdf)
- Power control for each 4 ADC up when s_stream(...,1), down otherwise in wis-tw2804 module
Please send patchs to Greg Kroah-Hartman <greg@kroah.com> and Cc: Ross Please send patchs to Greg Kroah-Hartman <greg@kroah.com> and Cc: Ross
Cohen <rcohen@snurgle.org> as well. Cohen <rcohen@snurgle.org> as well.
......
...@@ -173,6 +173,11 @@ static int go7007_init_encoder(struct go7007 *go) ...@@ -173,6 +173,11 @@ static int go7007_init_encoder(struct go7007 *go)
go7007_write_addr(go, 0x3c82, 0x0001); go7007_write_addr(go, 0x3c82, 0x0001);
go7007_write_addr(go, 0x3c80, 0x00fe); go7007_write_addr(go, 0x3c80, 0x00fe);
} }
if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) {
/* set GPIO5 to be an output, currently low */
go7007_write_addr(go, 0x3c82, 0x0000);
go7007_write_addr(go, 0x3c80, 0x00df);
}
return 0; return 0;
} }
...@@ -192,17 +197,23 @@ int go7007_reset_encoder(struct go7007 *go) ...@@ -192,17 +197,23 @@ int go7007_reset_encoder(struct go7007 *go)
/* /*
* Attempt to instantiate an I2C client by ID, probably loading a module. * Attempt to instantiate an I2C client by ID, probably loading a module.
*/ */
static int init_i2c_module(struct i2c_adapter *adapter, const char *type, static int init_i2c_module(struct i2c_adapter *adapter, const struct go_i2c *const i2c)
int addr)
{ {
struct go7007 *go = i2c_get_adapdata(adapter); struct go7007 *go = i2c_get_adapdata(adapter);
struct v4l2_device *v4l2_dev = &go->v4l2_dev; struct v4l2_device *v4l2_dev = &go->v4l2_dev;
struct i2c_board_info info;
memset(&info, 0, sizeof(info));
strlcpy(info.type, i2c->type, sizeof(info.type));
info.addr = i2c->addr;
if (v4l2_i2c_new_subdev(v4l2_dev, adapter, type, addr, NULL)) if (i2c->id == I2C_DRIVERID_WIS_TW2804)
info.flags |= I2C_CLIENT_TEN;
if (v4l2_i2c_new_subdev_board(v4l2_dev, adapter, &info, NULL))
return 0; return 0;
printk(KERN_INFO "go7007: probing for module i2c:%s failed\n", type); printk(KERN_INFO "go7007: probing for module i2c:%s failed\n", i2c->type);
return -1; return -EINVAL;
} }
/* /*
...@@ -238,9 +249,7 @@ int go7007_register_encoder(struct go7007 *go) ...@@ -238,9 +249,7 @@ int go7007_register_encoder(struct go7007 *go)
} }
if (go->i2c_adapter_online) { if (go->i2c_adapter_online) {
for (i = 0; i < go->board_info->num_i2c_devs; ++i) for (i = 0; i < go->board_info->num_i2c_devs; ++i)
init_i2c_module(&go->i2c_adapter, init_i2c_module(&go->i2c_adapter, &go->board_info->i2c_devs[i]);
go->board_info->i2c_devs[i].type,
go->board_info->i2c_devs[i].addr);
if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) if (go->board_id == GO7007_BOARDID_ADLINK_MPG24)
i2c_clients_command(&go->i2c_adapter, i2c_clients_command(&go->i2c_adapter,
DECODER_SET_CHANNEL, &go->channel_number); DECODER_SET_CHANNEL, &go->channel_number);
...@@ -571,7 +580,7 @@ struct go7007 *go7007_alloc(struct go7007_board_info *board, struct device *dev) ...@@ -571,7 +580,7 @@ struct go7007 *go7007_alloc(struct go7007_board_info *board, struct device *dev)
struct go7007 *go; struct go7007 *go;
int i; int i;
go = kmalloc(sizeof(struct go7007), GFP_KERNEL); go = kzalloc(sizeof(struct go7007), GFP_KERNEL);
if (go == NULL) if (go == NULL)
return NULL; return NULL;
go->dev = dev; go->dev = dev;
......
...@@ -88,7 +88,7 @@ struct go7007_board_info { ...@@ -88,7 +88,7 @@ struct go7007_board_info {
int audio_bclk_div; int audio_bclk_div;
int audio_main_div; int audio_main_div;
int num_i2c_devs; int num_i2c_devs;
struct { struct go_i2c {
const char *type; const char *type;
int id; int id;
int addr; int addr;
......
...@@ -1110,9 +1110,6 @@ static int go7007_usb_probe(struct usb_interface *intf, ...@@ -1110,9 +1110,6 @@ static int go7007_usb_probe(struct usb_interface *intf,
} else { } else {
u16 channel; u16 channel;
/* set GPIO5 to be an output, currently low */
go7007_write_addr(go, 0x3c82, 0x0000);
go7007_write_addr(go, 0x3c80, 0x00df);
/* read channel number from GPIO[1:0] */ /* read channel number from GPIO[1:0] */
go7007_read_addr(go, 0x3c81, &channel); go7007_read_addr(go, 0x3c81, &channel);
channel &= 0x3; channel &= 0x3;
...@@ -1245,7 +1242,6 @@ static void go7007_usb_disconnect(struct usb_interface *intf) ...@@ -1245,7 +1242,6 @@ static void go7007_usb_disconnect(struct usb_interface *intf)
struct urb *vurb, *aurb; struct urb *vurb, *aurb;
int i; int i;
go->status = STATUS_SHUTDOWN;
usb_kill_urb(usb->intr_urb); usb_kill_urb(usb->intr_urb);
/* Free USB-related structs */ /* Free USB-related structs */
...@@ -1269,6 +1265,7 @@ static void go7007_usb_disconnect(struct usb_interface *intf) ...@@ -1269,6 +1265,7 @@ static void go7007_usb_disconnect(struct usb_interface *intf)
kfree(go->hpi_context); kfree(go->hpi_context);
go7007_remove(go); go7007_remove(go);
go->status = STATUS_SHUTDOWN;
} }
static struct usb_driver go7007_usb_driver = { static struct usb_driver go7007_usb_driver = {
......
...@@ -98,7 +98,7 @@ static int go7007_open(struct file *file) ...@@ -98,7 +98,7 @@ static int go7007_open(struct file *file)
if (go->status != STATUS_ONLINE) if (go->status != STATUS_ONLINE)
return -EBUSY; return -EBUSY;
gofh = kmalloc(sizeof(struct go7007_file), GFP_KERNEL); gofh = kzalloc(sizeof(struct go7007_file), GFP_KERNEL);
if (gofh == NULL) if (gofh == NULL)
return -ENOMEM; return -ENOMEM;
++go->ref_count; ++go->ref_count;
...@@ -953,6 +953,7 @@ static int vidioc_streamon(struct file *file, void *priv, ...@@ -953,6 +953,7 @@ static int vidioc_streamon(struct file *file, void *priv,
} }
mutex_unlock(&go->hw_lock); mutex_unlock(&go->hw_lock);
mutex_unlock(&gofh->lock); mutex_unlock(&gofh->lock);
call_all(&go->v4l2_dev, video, s_stream, 1);
return retval; return retval;
} }
...@@ -968,6 +969,7 @@ static int vidioc_streamoff(struct file *file, void *priv, ...@@ -968,6 +969,7 @@ static int vidioc_streamoff(struct file *file, void *priv,
mutex_lock(&gofh->lock); mutex_lock(&gofh->lock);
go7007_streamoff(go); go7007_streamoff(go);
mutex_unlock(&gofh->lock); mutex_unlock(&gofh->lock);
call_all(&go->v4l2_dev, video, s_stream, 0);
return 0; return 0;
} }
...@@ -1832,5 +1834,6 @@ void go7007_v4l2_remove(struct go7007 *go) ...@@ -1832,5 +1834,6 @@ void go7007_v4l2_remove(struct go7007 *go)
mutex_unlock(&go->hw_lock); mutex_unlock(&go->hw_lock);
if (go->video_dev) if (go->video_dev)
video_unregister_device(go->video_dev); video_unregister_device(go->video_dev);
v4l2_device_unregister(&go->v4l2_dev); if (go->status != STATUS_SHUTDOWN)
v4l2_device_unregister(&go->v4l2_dev);
} }
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