Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1302640
| From | Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe |
| Date | 2016-01-06 12:10 +0100 |
| Message-ID | <qNU8z-jS-35@gated-at.bofh.it> (permalink) |
| References | <qNcqR-3qh-3@gated-at.bofh.it> <qNcqT-3qh-53@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Javier,
Thankk you for the patch.
On Monday 04 January 2016 09:25:31 Javier Martinez Canillas wrote:
> After power-up, the tvp5150 decoder is in a unknown state until the
> RESETB pin is driven LOW which reset all the registers and restarts
> the chip's internal state machine.
>
> The init sequence has some timing constraints and the RESETB signal
> can only be used if the PDN (Power-down) pin is first released.
>
> So, the initialization sequence is as follows:
>
> 1- PDN (active-low) is driven HIGH so the chip is power-up
> 2- A 20 ms delay is needed before sending a RESETB (active-low) signal.
> 3- The RESETB pulse duration is 500 ns.
> 4- A 200 us delay is needed for the I2C client to be active after reset.
>
> This patch used as a reference the logic in the IGEPv2 board file from
> the ISEE 2.6.37 vendor tree.
>
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> ---
>
> drivers/media/i2c/tvp5150.c | 35 +++++++++++++++++++++++++++++++++++
> 1 file changed, 35 insertions(+)
>
> diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c
> index caac96a577f8..fed89a811ab7 100644
> --- a/drivers/media/i2c/tvp5150.c
> +++ b/drivers/media/i2c/tvp5150.c
> @@ -5,6 +5,7 @@
> * This code is placed under the terms of the GNU General Public License v2
> */
>
> +#include <linux/of_gpio.h>
Let's keep the headers sorted alphabetically if you don't mind :-)
> #include <linux/i2c.h>
> #include <linux/slab.h>
> #include <linux/videodev2.h>
> @@ -1197,6 +1198,36 @@ static int tvp5150_detect_version(struct tvp5150
> *core) return 0;
> }
>
> +static inline int tvp5150_init(struct i2c_client *c)
> +{
> + struct gpio_desc *pdn_gpio;
> + struct gpio_desc *reset_gpio;
> +
> + pdn_gpio = devm_gpiod_get_optional(&c->dev, "powerdown", GPIOD_OUT_HIGH);
> + if (IS_ERR(pdn_gpio))
> + return PTR_ERR(pdn_gpio);
> +
> + if (pdn_gpio) {
> + gpiod_set_value_cansleep(pdn_gpio, 0);
> + /* Delay time between power supplies active and reset */
> + msleep(20);
How about usleep_range() instead ?
> + }
> +
> + reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
> + if (IS_ERR(reset_gpio))
> + return PTR_ERR(reset_gpio);
> +
> + if (reset_gpio) {
> + /* RESETB pulse duration */
> + ndelay(500);
Is the timing so sensitive that we need a delay, or could we use
usleep_range() ?
> + gpiod_set_value_cansleep(reset_gpio, 0);
> + /* Delay time between end of reset to I2C active */
> + usleep_range(200, 250);
> + }
> +
> + return 0;
> +}
> +
> static int tvp5150_probe(struct i2c_client *c,
> const struct i2c_device_id *id)
> {
> @@ -1209,6 +1240,10 @@ static int tvp5150_probe(struct i2c_client *c,
> I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
> return -EIO;
>
> + res = tvp5150_init(c);
> + if (res)
> + return res;
> +
> core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
> if (!core)
> return -ENOMEM;
--
Regards,
Laurent Pinchart
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 00/10] [media] tvp5150: add MC and DT support Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-04 13:30 +0100
[PATCH 02/10] [media] tvp5150: Add tvp5151 support Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-04 13:30 +0100
[PATCH 09/10] [media] tvp5150: Initialize the chip on probe Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-04 13:30 +0100
Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe kbuild test robot <lkp@intel.com> - 2016-01-04 13:50 +0100
Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-04 14:00 +0100
Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2016-01-06 12:10 +0100
Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-06 12:40 +0100
[PATCH 05/10] [media] tvp5150: Add s_stream subdev operation support Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-04 13:30 +0100
[PATCH 03/10] [media] tvp5150: Add pad-level subdev operations Javier Martinez Canillas <javier@osg.samsung.com> - 2016-01-04 13:30 +0100
csiph-web