* [PATCH v3] media: radio: Critical v4l2 registration bugfix for si470x over i2c
@ 2018-02-26 23:22 Douglas Fischer
0 siblings, 0 replies; 3+ messages in thread
From: Douglas Fischer @ 2018-02-26 23:22 UTC (permalink / raw)
To: hverkuil, linux-media
Added the call to v4l2_device_register() required to add a new radio device.
Without this patch, it is impossible for the driver to load. This does not
affect USB devices.
Fixed cleanup order from v2.
Signed-off-by: Douglas Fischer <fischerdouglasc@gmail.com>
---
diff -uprN linux.orig/drivers/media/radio/si470x/radio-si470x-i2c.c linux/drivers/media/radio/si470x/radio-si470x-i2c.c
--- linux.orig/drivers/media/radio/si470x/radio-si470x-i2c.c 2018-01-15 21:58:10.675620432 -0500
+++ linux/drivers/media/radio/si470x/radio-si470x-i2c.c 2018-02-25 19:19:13.796927568 -0500
@@ -43,7 +43,6 @@ static const struct i2c_device_id si470x
MODULE_DEVICE_TABLE(i2c, si470x_i2c_id);
-
/**************************************************************************
* Module Parameters
**************************************************************************/
@@ -362,22 +361,43 @@ static int si470x_i2c_probe(struct i2c_c
mutex_init(&radio->lock);
init_completion(&radio->completion);
+ retval = v4l2_device_register(&client->dev, &radio->v4l2_dev);
+ if (retval < 0) {
+ dev_err(&client->dev, "couldn't register v4l2_device\n");
+ goto err_radio;
+ }
+
+ v4l2_ctrl_handler_init(&radio->hdl, 2);
+ v4l2_ctrl_new_std(&radio->hdl, &si470x_ctrl_ops,
+ V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
+ v4l2_ctrl_new_std(&radio->hdl, &si470x_ctrl_ops,
+ V4L2_CID_AUDIO_VOLUME, 0, 15, 1, 15);
+ if (radio->hdl.error) {
+ retval = radio->hdl.error;
+ dev_err(&client->dev, "couldn't register control\n");
+ goto err_dev;
+ }
+
/* video device initialization */
radio->videodev = si470x_viddev_template;
+ radio->videodev.ctrl_handler = &radio->hdl;
+ radio->videodev.lock = &radio->lock;
+ radio->videodev.v4l2_dev = &radio->v4l2_dev;
+ radio->videodev.release = video_device_release_empty;
video_set_drvdata(&radio->videodev, radio);
/* power up : need 110ms */
radio->registers[POWERCFG] = POWERCFG_ENABLE;
if (si470x_set_register(radio, POWERCFG) < 0) {
retval = -EIO;
- goto err_radio;
+ goto err_ctrl;
}
msleep(110);
/* get device and chip versions */
if (si470x_get_all_registers(radio) < 0) {
retval = -EIO;
- goto err_radio;
+ goto err_ctrl;
}
dev_info(&client->dev, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
radio->registers[DEVICEID], radio->registers[SI_CHIPID]);
@@ -407,7 +427,7 @@ static int si470x_i2c_probe(struct i2c_c
radio->buffer = kmalloc(radio->buf_size, GFP_KERNEL);
if (!radio->buffer) {
retval = -EIO;
- goto err_radio;
+ goto err_ctrl;
}
/* rds buffer configuration */
@@ -437,6 +457,10 @@ err_all:
free_irq(client->irq, radio);
err_rds:
kfree(radio->buffer);
+err_ctrl:
+ v4l2_ctrl_handler_free(&radio->hdl);
+err_dev:
+ v4l2_device_unregister(&radio->v4l2_dev);
err_radio:
kfree(radio);
err_initial:
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH v3] media: radio: Critical v4l2 registration bugfix for si470x over i2c
@ 2018-02-26 2:25 Douglas Fischer
2018-02-26 11:09 ` Hans Verkuil
0 siblings, 1 reply; 3+ messages in thread
From: Douglas Fischer @ 2018-02-26 2:25 UTC (permalink / raw)
To: hverkuil, linux-media
Added the call to v4l2_device_register() required to add a new radio
device. Without this patch, it is impossible for the driver to load.
This does not affect USB devices.
Fixed cleanup order from v2.
Signed-off-by: Douglas Fischer <fischerdouglasc@gmail.com>
---
diff -uprN linux.orig/drivers/media/radio/si470x/radio-si470x-i2c.c
linux/drivers/media/radio/si470x/radio-si470x-i2c.c ---
linux.orig/drivers/media/radio/si470x/radio-si470x-i2c.c
2018-01-15 21:58:10.675620432 -0500 +++
linux/drivers/media/radio/si470x/radio-si470x-i2c.c 2018-02-25
19:19:13.796927568 -0500 @@ -43,7 +43,6 @@ static const struct
i2c_device_id si470x MODULE_DEVICE_TABLE(i2c, si470x_i2c_id);
-
/**************************************************************************
* Module Parameters
**************************************************************************/
@@ -362,22 +361,43 @@ static int si470x_i2c_probe(struct i2c_c
mutex_init(&radio->lock);
init_completion(&radio->completion);
+ retval = v4l2_device_register(&client->dev, &radio->v4l2_dev);
+ if (retval < 0) {
+ dev_err(&client->dev, "couldn't register
v4l2_device\n");
+ goto err_radio;
+ }
+
+ v4l2_ctrl_handler_init(&radio->hdl, 2);
+ v4l2_ctrl_new_std(&radio->hdl, &si470x_ctrl_ops,
+ V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
+ v4l2_ctrl_new_std(&radio->hdl, &si470x_ctrl_ops,
+ V4L2_CID_AUDIO_VOLUME, 0, 15, 1, 15);
+ if (radio->hdl.error) {
+ retval = radio->hdl.error;
+ dev_err(&client->dev, "couldn't register control\n");
+ goto err_dev;
+ }
+
/* video device initialization */
radio->videodev = si470x_viddev_template;
+ radio->videodev.ctrl_handler = &radio->hdl;
+ radio->videodev.lock = &radio->lock;
+ radio->videodev.v4l2_dev = &radio->v4l2_dev;
+ radio->videodev.release = video_device_release_empty;
video_set_drvdata(&radio->videodev, radio);
/* power up : need 110ms */
radio->registers[POWERCFG] = POWERCFG_ENABLE;
if (si470x_set_register(radio, POWERCFG) < 0) {
retval = -EIO;
- goto err_radio;
+ goto err_ctrl;
}
msleep(110);
/* get device and chip versions */
if (si470x_get_all_registers(radio) < 0) {
retval = -EIO;
- goto err_radio;
+ goto err_ctrl;
}
dev_info(&client->dev, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
radio->registers[DEVICEID],
radio->registers[SI_CHIPID]); @@ -407,7 +427,7 @@ static int
si470x_i2c_probe(struct i2c_c radio->buffer = kmalloc(radio->buf_size,
GFP_KERNEL); if (!radio->buffer) {
retval = -EIO;
- goto err_radio;
+ goto err_ctrl;
}
/* rds buffer configuration */
@@ -437,6 +457,10 @@ err_all:
free_irq(client->irq, radio);
err_rds:
kfree(radio->buffer);
+err_ctrl:
+ v4l2_ctrl_handler_free(&radio->hdl);
+err_dev:
+ v4l2_device_unregister(&radio->v4l2_dev);
err_radio:
kfree(radio);
err_initial:
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v3] media: radio: Critical v4l2 registration bugfix for si470x over i2c
2018-02-26 2:25 Douglas Fischer
@ 2018-02-26 11:09 ` Hans Verkuil
0 siblings, 0 replies; 3+ messages in thread
From: Hans Verkuil @ 2018-02-26 11:09 UTC (permalink / raw)
To: Douglas Fischer, linux-media
On 02/26/2018 03:25 AM, Douglas Fischer wrote:
> Added the call to v4l2_device_register() required to add a new radio
> device. Without this patch, it is impossible for the driver to load.
> This does not affect USB devices.
>
> Fixed cleanup order from v2.
>
> Signed-off-by: Douglas Fischer <fischerdouglasc@gmail.com>
> ---
>
> diff -uprN linux.orig/drivers/media/radio/si470x/radio-si470x-i2c.c
> linux/drivers/media/radio/si470x/radio-si470x-i2c.c ---
> linux.orig/drivers/media/radio/si470x/radio-si470x-i2c.c
> 2018-01-15 21:58:10.675620432 -0500 +++
> linux/drivers/media/radio/si470x/radio-si470x-i2c.c 2018-02-25
> 19:19:13.796927568 -0500 @@ -43,7 +43,6 @@ static const struct
> i2c_device_id si470x MODULE_DEVICE_TABLE(i2c, si470x_i2c_id);
This patch is still corrupt (wrap around). The other two are fine though.
Can you repost this one?
Regards,
Hans
> -
> /**************************************************************************
> * Module Parameters
> **************************************************************************/
> @@ -362,22 +361,43 @@ static int si470x_i2c_probe(struct i2c_c
> mutex_init(&radio->lock);
> init_completion(&radio->completion);
>
> + retval = v4l2_device_register(&client->dev, &radio->v4l2_dev);
> + if (retval < 0) {
> + dev_err(&client->dev, "couldn't register
> v4l2_device\n");
> + goto err_radio;
> + }
> +
> + v4l2_ctrl_handler_init(&radio->hdl, 2);
> + v4l2_ctrl_new_std(&radio->hdl, &si470x_ctrl_ops,
> + V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1);
> + v4l2_ctrl_new_std(&radio->hdl, &si470x_ctrl_ops,
> + V4L2_CID_AUDIO_VOLUME, 0, 15, 1, 15);
> + if (radio->hdl.error) {
> + retval = radio->hdl.error;
> + dev_err(&client->dev, "couldn't register control\n");
> + goto err_dev;
> + }
> +
> /* video device initialization */
> radio->videodev = si470x_viddev_template;
> + radio->videodev.ctrl_handler = &radio->hdl;
> + radio->videodev.lock = &radio->lock;
> + radio->videodev.v4l2_dev = &radio->v4l2_dev;
> + radio->videodev.release = video_device_release_empty;
> video_set_drvdata(&radio->videodev, radio);
>
> /* power up : need 110ms */
> radio->registers[POWERCFG] = POWERCFG_ENABLE;
> if (si470x_set_register(radio, POWERCFG) < 0) {
> retval = -EIO;
> - goto err_radio;
> + goto err_ctrl;
> }
> msleep(110);
>
> /* get device and chip versions */
> if (si470x_get_all_registers(radio) < 0) {
> retval = -EIO;
> - goto err_radio;
> + goto err_ctrl;
> }
> dev_info(&client->dev, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
> radio->registers[DEVICEID],
> radio->registers[SI_CHIPID]); @@ -407,7 +427,7 @@ static int
> si470x_i2c_probe(struct i2c_c radio->buffer = kmalloc(radio->buf_size,
> GFP_KERNEL); if (!radio->buffer) {
> retval = -EIO;
> - goto err_radio;
> + goto err_ctrl;
> }
>
> /* rds buffer configuration */
> @@ -437,6 +457,10 @@ err_all:
> free_irq(client->irq, radio);
> err_rds:
> kfree(radio->buffer);
> +err_ctrl:
> + v4l2_ctrl_handler_free(&radio->hdl);
> +err_dev:
> + v4l2_device_unregister(&radio->v4l2_dev);
> err_radio:
> kfree(radio);
> err_initial:
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-02-26 23:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-26 23:22 [PATCH v3] media: radio: Critical v4l2 registration bugfix for si470x over i2c Douglas Fischer
-- strict thread matches above, loose matches on Subject: below --
2018-02-26 2:25 Douglas Fischer
2018-02-26 11:09 ` Hans Verkuil
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox