mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 23:00:21 +00:00
media: si470x-i2c: Add optional reset-gpio support
If reset-gpio is defined, use it to bring device out of reset. Without this, it's not possible to access si470x registers. Signed-off-by: Pawe? Chmiel <pawel.mikolaj.chmiel@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
f86c51b66b
commit
1c64222be9
@ -28,6 +28,7 @@
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/gpio/consumer.h>
|
||||
#include <linux/interrupt.h>
|
||||
|
||||
#include "radio-si470x.h"
|
||||
@ -392,6 +393,17 @@ static int si470x_i2c_probe(struct i2c_client *client,
|
||||
radio->videodev.release = video_device_release_empty;
|
||||
video_set_drvdata(&radio->videodev, radio);
|
||||
|
||||
radio->gpio_reset = devm_gpiod_get_optional(&client->dev, "reset",
|
||||
GPIOD_OUT_LOW);
|
||||
if (IS_ERR(radio->gpio_reset)) {
|
||||
retval = PTR_ERR(radio->gpio_reset);
|
||||
dev_err(&client->dev, "Failed to request gpio: %d\n", retval);
|
||||
goto err_all;
|
||||
}
|
||||
|
||||
if (radio->gpio_reset)
|
||||
gpiod_set_value(radio->gpio_reset, 1);
|
||||
|
||||
/* power up : need 110ms */
|
||||
radio->registers[POWERCFG] = POWERCFG_ENABLE;
|
||||
if (si470x_set_register(radio, POWERCFG) < 0) {
|
||||
@ -478,6 +490,9 @@ static int si470x_i2c_remove(struct i2c_client *client)
|
||||
|
||||
video_unregister_device(&radio->videodev);
|
||||
|
||||
if (radio->gpio_reset)
|
||||
gpiod_set_value(radio->gpio_reset, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -189,6 +189,7 @@ struct si470x_device {
|
||||
|
||||
#if IS_ENABLED(CONFIG_I2C_SI470X)
|
||||
struct i2c_client *client;
|
||||
struct gpio_desc *gpio_reset;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user