Message ID | 20190111174141.12594-2-kieran.bingham+renesas@ideasonboard.com (mailing list archive) |
---|---|
State | Mainlined |
Delegated to: | Kieran Bingham |
Headers | show |
Series | media: i2c: adv748x: Refactor sw_reset handling | expand |
Hi Kieran, Thank you for the patch. On Friday, 11 January 2019 19:41:40 EET Kieran Bingham wrote: > The ADV748x is currently reset by writting a small table of registers to > the device. > > The table lacks documentation and contains magic values to perform the > actions, including using a fake register address to introduce a delay > loop. > > Remove the table, and convert to code, documenting the purpose of the > specific writes along the way. > > Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> > --- > drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- > drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ > 2 files changed, 38 insertions(+), 10 deletions(-) > > diff --git a/drivers/media/i2c/adv748x/adv748x-core.c > b/drivers/media/i2c/adv748x/adv748x-core.c index 02f9c440301c..252bdb28b18b > 100644 > --- a/drivers/media/i2c/adv748x/adv748x-core.c > +++ b/drivers/media/i2c/adv748x/adv748x-core.c > @@ -389,15 +389,6 @@ static const struct media_entity_operations > adv748x_media_ops = { * HW setup > */ > > -static const struct adv748x_reg_value adv748x_sw_reset[] = { > - > - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ > - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ > - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ > - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ > - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ > -}; > - > /* Initialize CP Core with RGB888 format. */ > static const struct adv748x_reg_value adv748x_init_hdmi[] = { > /* Disable chip powerdown & Enable HDMI Rx block */ > @@ -474,12 +465,33 @@ static const struct adv748x_reg_value > adv748x_init_afe[] = { {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register > table */ > }; > > +static int adv748x_sw_reset(struct adv748x_state *state) > +{ > + int ret; > + > + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); > + if (ret) > + return ret; > + > + usleep_range(5000, 6000); > + > + /* Disable CEC Wakeup from power-down mode */ > + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, > + ADV748X_IO_REG_01_PWRDNB); What's the reason for io_clrset() instead of io_write() ? Apart from this, Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > + if (ret) > + return ret; > + > + /* Enable I2C Read Auto-Increment for consecutive reads */ > + return io_write(state, ADV748X_IO_REG_F2, > + ADV748X_IO_REG_F2_READ_AUTO_INC); > +} > + > static int adv748x_reset(struct adv748x_state *state) > { > int ret; > u8 regval = 0; > > - ret = adv748x_write_regs(state, adv748x_sw_reset); > + ret = adv748x_sw_reset(state); > if (ret < 0) > return ret; > > diff --git a/drivers/media/i2c/adv748x/adv748x.h > b/drivers/media/i2c/adv748x/adv748x.h index b00c1995efb0..2f8d751cfbb0 > 100644 > --- a/drivers/media/i2c/adv748x/adv748x.h > +++ b/drivers/media/i2c/adv748x/adv748x.h > @@ -211,6 +211,11 @@ struct adv748x_state { > #define ADV748X_IO_PD 0x00 /* power down controls */ > #define ADV748X_IO_PD_RX_EN BIT(6) > > +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ > +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) > +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ > +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ > + > #define ADV748X_IO_REG_04 0x04 > #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ > > @@ -229,8 +234,19 @@ struct adv748x_state { > #define ADV748X_IO_CHIP_REV_ID_1 0xdf > #define ADV748X_IO_CHIP_REV_ID_2 0xe0 > > +#define ADV748X_IO_REG_F2 0xf2 > +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) > + > +/* For PAGE slave address offsets */ > #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 > > +/* > + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 > and + * 0xff as examples for performing a software reset. > + */ > +#define ADV748X_IO_REG_FF 0xff > +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff > + > /* HDMI RX Map */ > #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ > #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7)
Hi Laurent, Thanks for the review, On 11/01/2019 20:15, Laurent Pinchart wrote: > Hi Kieran, > > Thank you for the patch. > > On Friday, 11 January 2019 19:41:40 EET Kieran Bingham wrote: >> The ADV748x is currently reset by writting a small table of registers to >> the device. >> >> The table lacks documentation and contains magic values to perform the >> actions, including using a fake register address to introduce a delay >> loop. >> >> Remove the table, and convert to code, documenting the purpose of the >> specific writes along the way. >> >> Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> >> --- >> drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- >> drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ >> 2 files changed, 38 insertions(+), 10 deletions(-) >> >> diff --git a/drivers/media/i2c/adv748x/adv748x-core.c >> b/drivers/media/i2c/adv748x/adv748x-core.c index 02f9c440301c..252bdb28b18b >> 100644 >> --- a/drivers/media/i2c/adv748x/adv748x-core.c >> +++ b/drivers/media/i2c/adv748x/adv748x-core.c >> @@ -389,15 +389,6 @@ static const struct media_entity_operations >> adv748x_media_ops = { * HW setup >> */ >> >> -static const struct adv748x_reg_value adv748x_sw_reset[] = { >> - >> - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ >> - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ >> - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ >> - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ >> - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ >> -}; >> - >> /* Initialize CP Core with RGB888 format. */ >> static const struct adv748x_reg_value adv748x_init_hdmi[] = { >> /* Disable chip powerdown & Enable HDMI Rx block */ >> @@ -474,12 +465,33 @@ static const struct adv748x_reg_value >> adv748x_init_afe[] = { {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register >> table */ >> }; >> >> +static int adv748x_sw_reset(struct adv748x_state *state) >> +{ >> + int ret; >> + >> + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); >> + if (ret) >> + return ret; >> + >> + usleep_range(5000, 6000); >> + >> + /* Disable CEC Wakeup from power-down mode */ >> + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, >> + ADV748X_IO_REG_01_PWRDNB); > > What's the reason for io_clrset() instead of io_write() ? > The register is multi-purpose, and controls CEC Wakeup and *part* of the prog_xtal_freq clock parameters. The original table writes the default value of the clock parameter - but that itself is split over two registers I think - so I didn't want to be 'half setting' some parameter, which should already be at its default anyway. I felt it was cleaner to be precise and make this code perform only the actual *change* that was required (which is the adjustment of the cec powerdown mode control, as described by the comment). > Apart from this, > > Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Thanks -- Kieran > >> + if (ret) >> + return ret; >> + >> + /* Enable I2C Read Auto-Increment for consecutive reads */ >> + return io_write(state, ADV748X_IO_REG_F2, >> + ADV748X_IO_REG_F2_READ_AUTO_INC); >> +} >> + >> static int adv748x_reset(struct adv748x_state *state) >> { >> int ret; >> u8 regval = 0; >> >> - ret = adv748x_write_regs(state, adv748x_sw_reset); >> + ret = adv748x_sw_reset(state); >> if (ret < 0) >> return ret; >> >> diff --git a/drivers/media/i2c/adv748x/adv748x.h >> b/drivers/media/i2c/adv748x/adv748x.h index b00c1995efb0..2f8d751cfbb0 >> 100644 >> --- a/drivers/media/i2c/adv748x/adv748x.h >> +++ b/drivers/media/i2c/adv748x/adv748x.h >> @@ -211,6 +211,11 @@ struct adv748x_state { >> #define ADV748X_IO_PD 0x00 /* power down controls */ >> #define ADV748X_IO_PD_RX_EN BIT(6) >> >> +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ >> +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) >> +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ >> +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ >> + >> #define ADV748X_IO_REG_04 0x04 >> #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ >> >> @@ -229,8 +234,19 @@ struct adv748x_state { >> #define ADV748X_IO_CHIP_REV_ID_1 0xdf >> #define ADV748X_IO_CHIP_REV_ID_2 0xe0 >> >> +#define ADV748X_IO_REG_F2 0xf2 >> +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) >> + >> +/* For PAGE slave address offsets */ >> #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 >> >> +/* >> + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 >> and + * 0xff as examples for performing a software reset. >> + */ >> +#define ADV748X_IO_REG_FF 0xff >> +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff >> + >> /* HDMI RX Map */ >> #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ >> #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7) > >
Hi Kieran, Thanks for your work. On 2019-01-11 17:41:40 +0000, Kieran Bingham wrote: > The ADV748x is currently reset by writting a small table of registers to > the device. > > The table lacks documentation and contains magic values to perform the > actions, including using a fake register address to introduce a delay > loop. > > Remove the table, and convert to code, documenting the purpose of the > specific writes along the way. > > Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > --- > drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- > drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ > 2 files changed, 38 insertions(+), 10 deletions(-) > > diff --git a/drivers/media/i2c/adv748x/adv748x-core.c b/drivers/media/i2c/adv748x/adv748x-core.c > index 02f9c440301c..252bdb28b18b 100644 > --- a/drivers/media/i2c/adv748x/adv748x-core.c > +++ b/drivers/media/i2c/adv748x/adv748x-core.c > @@ -389,15 +389,6 @@ static const struct media_entity_operations adv748x_media_ops = { > * HW setup > */ > > -static const struct adv748x_reg_value adv748x_sw_reset[] = { > - > - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ > - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ > - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ > - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ > - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ > -}; > - > /* Initialize CP Core with RGB888 format. */ > static const struct adv748x_reg_value adv748x_init_hdmi[] = { > /* Disable chip powerdown & Enable HDMI Rx block */ > @@ -474,12 +465,33 @@ static const struct adv748x_reg_value adv748x_init_afe[] = { > {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ > }; > > +static int adv748x_sw_reset(struct adv748x_state *state) > +{ > + int ret; > + > + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); > + if (ret) > + return ret; > + > + usleep_range(5000, 6000); > + > + /* Disable CEC Wakeup from power-down mode */ > + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, > + ADV748X_IO_REG_01_PWRDNB); > + if (ret) > + return ret; > + > + /* Enable I2C Read Auto-Increment for consecutive reads */ > + return io_write(state, ADV748X_IO_REG_F2, > + ADV748X_IO_REG_F2_READ_AUTO_INC); > +} > + > static int adv748x_reset(struct adv748x_state *state) > { > int ret; > u8 regval = 0; > > - ret = adv748x_write_regs(state, adv748x_sw_reset); > + ret = adv748x_sw_reset(state); > if (ret < 0) > return ret; > > diff --git a/drivers/media/i2c/adv748x/adv748x.h b/drivers/media/i2c/adv748x/adv748x.h > index b00c1995efb0..2f8d751cfbb0 100644 > --- a/drivers/media/i2c/adv748x/adv748x.h > +++ b/drivers/media/i2c/adv748x/adv748x.h > @@ -211,6 +211,11 @@ struct adv748x_state { > #define ADV748X_IO_PD 0x00 /* power down controls */ > #define ADV748X_IO_PD_RX_EN BIT(6) > > +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ > +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) > +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ > +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ > + > #define ADV748X_IO_REG_04 0x04 > #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ > > @@ -229,8 +234,19 @@ struct adv748x_state { > #define ADV748X_IO_CHIP_REV_ID_1 0xdf > #define ADV748X_IO_CHIP_REV_ID_2 0xe0 > > +#define ADV748X_IO_REG_F2 0xf2 > +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) > + > +/* For PAGE slave address offsets */ > #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 > > +/* > + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 and > + * 0xff as examples for performing a software reset. > + */ > +#define ADV748X_IO_REG_FF 0xff > +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff > + > /* HDMI RX Map */ > #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ > #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7) > -- > 2.17.1 >
On 1/11/19 6:41 PM, Kieran Bingham wrote: > The ADV748x is currently reset by writting a small table of registers to > the device. > > The table lacks documentation and contains magic values to perform the > actions, including using a fake register address to introduce a delay > loop. > > Remove the table, and convert to code, documenting the purpose of the > specific writes along the way. > > Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Hmm, this patch doesn't apply to the master branch. Does it depend on other patches being merged first, or it is just out-of-date? Regards, Hans > --- > drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- > drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ > 2 files changed, 38 insertions(+), 10 deletions(-) > > diff --git a/drivers/media/i2c/adv748x/adv748x-core.c b/drivers/media/i2c/adv748x/adv748x-core.c > index 02f9c440301c..252bdb28b18b 100644 > --- a/drivers/media/i2c/adv748x/adv748x-core.c > +++ b/drivers/media/i2c/adv748x/adv748x-core.c > @@ -389,15 +389,6 @@ static const struct media_entity_operations adv748x_media_ops = { > * HW setup > */ > > -static const struct adv748x_reg_value adv748x_sw_reset[] = { > - > - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ > - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ > - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ > - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ > - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ > -}; > - > /* Initialize CP Core with RGB888 format. */ > static const struct adv748x_reg_value adv748x_init_hdmi[] = { > /* Disable chip powerdown & Enable HDMI Rx block */ > @@ -474,12 +465,33 @@ static const struct adv748x_reg_value adv748x_init_afe[] = { > {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ > }; > > +static int adv748x_sw_reset(struct adv748x_state *state) > +{ > + int ret; > + > + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); > + if (ret) > + return ret; > + > + usleep_range(5000, 6000); > + > + /* Disable CEC Wakeup from power-down mode */ > + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, > + ADV748X_IO_REG_01_PWRDNB); > + if (ret) > + return ret; > + > + /* Enable I2C Read Auto-Increment for consecutive reads */ > + return io_write(state, ADV748X_IO_REG_F2, > + ADV748X_IO_REG_F2_READ_AUTO_INC); > +} > + > static int adv748x_reset(struct adv748x_state *state) > { > int ret; > u8 regval = 0; > > - ret = adv748x_write_regs(state, adv748x_sw_reset); > + ret = adv748x_sw_reset(state); > if (ret < 0) > return ret; > > diff --git a/drivers/media/i2c/adv748x/adv748x.h b/drivers/media/i2c/adv748x/adv748x.h > index b00c1995efb0..2f8d751cfbb0 100644 > --- a/drivers/media/i2c/adv748x/adv748x.h > +++ b/drivers/media/i2c/adv748x/adv748x.h > @@ -211,6 +211,11 @@ struct adv748x_state { > #define ADV748X_IO_PD 0x00 /* power down controls */ > #define ADV748X_IO_PD_RX_EN BIT(6) > > +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ > +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) > +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ > +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ > + > #define ADV748X_IO_REG_04 0x04 > #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ > > @@ -229,8 +234,19 @@ struct adv748x_state { > #define ADV748X_IO_CHIP_REV_ID_1 0xdf > #define ADV748X_IO_CHIP_REV_ID_2 0xe0 > > +#define ADV748X_IO_REG_F2 0xf2 > +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) > + > +/* For PAGE slave address offsets */ > #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 > > +/* > + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 and > + * 0xff as examples for performing a software reset. > + */ > +#define ADV748X_IO_REG_FF 0xff > +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff > + > /* HDMI RX Map */ > #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ > #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7) >
Hi Kieran, On Sat, Jan 12, 2019 at 04:50:32PM +0000, Kieran Bingham wrote: > On 11/01/2019 20:15, Laurent Pinchart wrote: > > On Friday, 11 January 2019 19:41:40 EET Kieran Bingham wrote: > >> The ADV748x is currently reset by writting a small table of registers to > >> the device. > >> > >> The table lacks documentation and contains magic values to perform the > >> actions, including using a fake register address to introduce a delay > >> loop. > >> > >> Remove the table, and convert to code, documenting the purpose of the > >> specific writes along the way. > >> > >> Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> > >> --- > >> drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- > >> drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ > >> 2 files changed, 38 insertions(+), 10 deletions(-) > >> > >> diff --git a/drivers/media/i2c/adv748x/adv748x-core.c > >> b/drivers/media/i2c/adv748x/adv748x-core.c index 02f9c440301c..252bdb28b18b > >> 100644 > >> --- a/drivers/media/i2c/adv748x/adv748x-core.c > >> +++ b/drivers/media/i2c/adv748x/adv748x-core.c > >> @@ -389,15 +389,6 @@ static const struct media_entity_operations > >> adv748x_media_ops = { * HW setup > >> */ > >> > >> -static const struct adv748x_reg_value adv748x_sw_reset[] = { > >> - > >> - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ > >> - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ > >> - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ > >> - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ > >> - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ > >> -}; > >> - > >> /* Initialize CP Core with RGB888 format. */ > >> static const struct adv748x_reg_value adv748x_init_hdmi[] = { > >> /* Disable chip powerdown & Enable HDMI Rx block */ > >> @@ -474,12 +465,33 @@ static const struct adv748x_reg_value > >> adv748x_init_afe[] = { {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register > >> table */ > >> }; > >> > >> +static int adv748x_sw_reset(struct adv748x_state *state) > >> +{ > >> + int ret; > >> + > >> + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); > >> + if (ret) > >> + return ret; > >> + > >> + usleep_range(5000, 6000); > >> + > >> + /* Disable CEC Wakeup from power-down mode */ > >> + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, > >> + ADV748X_IO_REG_01_PWRDNB); > > > > What's the reason for io_clrset() instead of io_write() ? > > > > The register is multi-purpose, and controls CEC Wakeup and *part* of the > prog_xtal_freq clock parameters. > > The original table writes the default value of the clock parameter - but > that itself is split over two registers I think - so I didn't want to be > 'half setting' some parameter, which should already be at its default > anyway. > > I felt it was cleaner to be precise and make this code perform only the > actual *change* that was required (which is the adjustment of the cec > powerdown mode control, as described by the comment). I agree with you in general, but as the write comes just after a reset, I thought a full register write would be better. Up to you. > > Apart from this, > > > > Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > > > >> + if (ret) > >> + return ret; > >> + > >> + /* Enable I2C Read Auto-Increment for consecutive reads */ > >> + return io_write(state, ADV748X_IO_REG_F2, > >> + ADV748X_IO_REG_F2_READ_AUTO_INC); > >> +} > >> + > >> static int adv748x_reset(struct adv748x_state *state) > >> { > >> int ret; > >> u8 regval = 0; > >> > >> - ret = adv748x_write_regs(state, adv748x_sw_reset); > >> + ret = adv748x_sw_reset(state); > >> if (ret < 0) > >> return ret; > >> > >> diff --git a/drivers/media/i2c/adv748x/adv748x.h > >> b/drivers/media/i2c/adv748x/adv748x.h index b00c1995efb0..2f8d751cfbb0 > >> 100644 > >> --- a/drivers/media/i2c/adv748x/adv748x.h > >> +++ b/drivers/media/i2c/adv748x/adv748x.h > >> @@ -211,6 +211,11 @@ struct adv748x_state { > >> #define ADV748X_IO_PD 0x00 /* power down controls */ > >> #define ADV748X_IO_PD_RX_EN BIT(6) > >> > >> +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ > >> +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) > >> +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ > >> +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ > >> + > >> #define ADV748X_IO_REG_04 0x04 > >> #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ > >> > >> @@ -229,8 +234,19 @@ struct adv748x_state { > >> #define ADV748X_IO_CHIP_REV_ID_1 0xdf > >> #define ADV748X_IO_CHIP_REV_ID_2 0xe0 > >> > >> +#define ADV748X_IO_REG_F2 0xf2 > >> +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) > >> + > >> +/* For PAGE slave address offsets */ > >> #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 > >> > >> +/* > >> + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 > >> and + * 0xff as examples for performing a software reset. > >> + */ > >> +#define ADV748X_IO_REG_FF 0xff > >> +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff > >> + > >> /* HDMI RX Map */ > >> #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ > >> #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7)
Hi Hans, On 18/01/2019 12:09, Hans Verkuil wrote: > On 1/11/19 6:41 PM, Kieran Bingham wrote: >> The ADV748x is currently reset by writting a small table of registers to >> the device. s/writting/writing/ >> >> The table lacks documentation and contains magic values to perform the >> actions, including using a fake register address to introduce a delay >> loop. >> >> Remove the table, and convert to code, documenting the purpose of the >> specific writes along the way. >> >> Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> > > Hmm, this patch doesn't apply to the master branch. > > Does it depend on other patches being merged first, or it is just out-of-date? Hi Hans, Sorry - I should have specified - They are dependant upon Jacopo's series. -- Kieran > > Regards, > > Hans > >> --- >> drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- >> drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ >> 2 files changed, 38 insertions(+), 10 deletions(-) >> >> diff --git a/drivers/media/i2c/adv748x/adv748x-core.c b/drivers/media/i2c/adv748x/adv748x-core.c >> index 02f9c440301c..252bdb28b18b 100644 >> --- a/drivers/media/i2c/adv748x/adv748x-core.c >> +++ b/drivers/media/i2c/adv748x/adv748x-core.c >> @@ -389,15 +389,6 @@ static const struct media_entity_operations adv748x_media_ops = { >> * HW setup >> */ >> >> -static const struct adv748x_reg_value adv748x_sw_reset[] = { >> - >> - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ >> - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ >> - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ >> - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ >> - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ >> -}; >> - >> /* Initialize CP Core with RGB888 format. */ >> static const struct adv748x_reg_value adv748x_init_hdmi[] = { >> /* Disable chip powerdown & Enable HDMI Rx block */ >> @@ -474,12 +465,33 @@ static const struct adv748x_reg_value adv748x_init_afe[] = { >> {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ >> }; >> >> +static int adv748x_sw_reset(struct adv748x_state *state) >> +{ >> + int ret; >> + >> + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); >> + if (ret) >> + return ret; >> + >> + usleep_range(5000, 6000); >> + >> + /* Disable CEC Wakeup from power-down mode */ >> + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, >> + ADV748X_IO_REG_01_PWRDNB); >> + if (ret) >> + return ret; >> + >> + /* Enable I2C Read Auto-Increment for consecutive reads */ >> + return io_write(state, ADV748X_IO_REG_F2, >> + ADV748X_IO_REG_F2_READ_AUTO_INC); >> +} >> + >> static int adv748x_reset(struct adv748x_state *state) >> { >> int ret; >> u8 regval = 0; >> >> - ret = adv748x_write_regs(state, adv748x_sw_reset); >> + ret = adv748x_sw_reset(state); >> if (ret < 0) >> return ret; >> >> diff --git a/drivers/media/i2c/adv748x/adv748x.h b/drivers/media/i2c/adv748x/adv748x.h >> index b00c1995efb0..2f8d751cfbb0 100644 >> --- a/drivers/media/i2c/adv748x/adv748x.h >> +++ b/drivers/media/i2c/adv748x/adv748x.h >> @@ -211,6 +211,11 @@ struct adv748x_state { >> #define ADV748X_IO_PD 0x00 /* power down controls */ >> #define ADV748X_IO_PD_RX_EN BIT(6) >> >> +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ >> +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) >> +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ >> +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ >> + >> #define ADV748X_IO_REG_04 0x04 >> #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ >> >> @@ -229,8 +234,19 @@ struct adv748x_state { >> #define ADV748X_IO_CHIP_REV_ID_1 0xdf >> #define ADV748X_IO_CHIP_REV_ID_2 0xe0 >> >> +#define ADV748X_IO_REG_F2 0xf2 >> +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) >> + >> +/* For PAGE slave address offsets */ >> #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 >> >> +/* >> + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 and >> + * 0xff as examples for performing a software reset. >> + */ >> +#define ADV748X_IO_REG_FF 0xff >> +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff >> + >> /* HDMI RX Map */ >> #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ >> #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7) >> >
diff --git a/drivers/media/i2c/adv748x/adv748x-core.c b/drivers/media/i2c/adv748x/adv748x-core.c index 02f9c440301c..252bdb28b18b 100644 --- a/drivers/media/i2c/adv748x/adv748x-core.c +++ b/drivers/media/i2c/adv748x/adv748x-core.c @@ -389,15 +389,6 @@ static const struct media_entity_operations adv748x_media_ops = { * HW setup */ -static const struct adv748x_reg_value adv748x_sw_reset[] = { - - {ADV748X_PAGE_IO, 0xff, 0xff}, /* SW reset */ - {ADV748X_PAGE_WAIT, 0x00, 0x05},/* delay 5 */ - {ADV748X_PAGE_IO, 0x01, 0x76}, /* ADI Required Write */ - {ADV748X_PAGE_IO, 0xf2, 0x01}, /* Enable I2C Read Auto-Increment */ - {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ -}; - /* Initialize CP Core with RGB888 format. */ static const struct adv748x_reg_value adv748x_init_hdmi[] = { /* Disable chip powerdown & Enable HDMI Rx block */ @@ -474,12 +465,33 @@ static const struct adv748x_reg_value adv748x_init_afe[] = { {ADV748X_PAGE_EOR, 0xff, 0xff} /* End of register table */ }; +static int adv748x_sw_reset(struct adv748x_state *state) +{ + int ret; + + ret = io_write(state, ADV748X_IO_REG_FF, ADV748X_IO_REG_FF_MAIN_RESET); + if (ret) + return ret; + + usleep_range(5000, 6000); + + /* Disable CEC Wakeup from power-down mode */ + ret = io_clrset(state, ADV748X_IO_REG_01, ADV748X_IO_REG_01_PWRDN_MASK, + ADV748X_IO_REG_01_PWRDNB); + if (ret) + return ret; + + /* Enable I2C Read Auto-Increment for consecutive reads */ + return io_write(state, ADV748X_IO_REG_F2, + ADV748X_IO_REG_F2_READ_AUTO_INC); +} + static int adv748x_reset(struct adv748x_state *state) { int ret; u8 regval = 0; - ret = adv748x_write_regs(state, adv748x_sw_reset); + ret = adv748x_sw_reset(state); if (ret < 0) return ret; diff --git a/drivers/media/i2c/adv748x/adv748x.h b/drivers/media/i2c/adv748x/adv748x.h index b00c1995efb0..2f8d751cfbb0 100644 --- a/drivers/media/i2c/adv748x/adv748x.h +++ b/drivers/media/i2c/adv748x/adv748x.h @@ -211,6 +211,11 @@ struct adv748x_state { #define ADV748X_IO_PD 0x00 /* power down controls */ #define ADV748X_IO_PD_RX_EN BIT(6) +#define ADV748X_IO_REG_01 0x01 /* pwrdn{2}b, prog_xtal_freq */ +#define ADV748X_IO_REG_01_PWRDN_MASK (BIT(7) | BIT(6)) +#define ADV748X_IO_REG_01_PWRDN2B BIT(7) /* CEC Wakeup Support */ +#define ADV748X_IO_REG_01_PWRDNB BIT(6) /* CEC Wakeup Support */ + #define ADV748X_IO_REG_04 0x04 #define ADV748X_IO_REG_04_FORCE_FR BIT(0) /* Force CP free-run */ @@ -229,8 +234,19 @@ struct adv748x_state { #define ADV748X_IO_CHIP_REV_ID_1 0xdf #define ADV748X_IO_CHIP_REV_ID_2 0xe0 +#define ADV748X_IO_REG_F2 0xf2 +#define ADV748X_IO_REG_F2_READ_AUTO_INC BIT(0) + +/* For PAGE slave address offsets */ #define ADV748X_IO_SLAVE_ADDR_BASE 0xf2 +/* + * The ADV748x_Recommended_Settings_PrA_2014-08-20.pdf details both 0x80 and + * 0xff as examples for performing a software reset. + */ +#define ADV748X_IO_REG_FF 0xff +#define ADV748X_IO_REG_FF_MAIN_RESET 0xff + /* HDMI RX Map */ #define ADV748X_HDMI_LW1 0x07 /* line width_1 */ #define ADV748X_HDMI_LW1_VERT_FILTER BIT(7)
The ADV748x is currently reset by writting a small table of registers to the device. The table lacks documentation and contains magic values to perform the actions, including using a fake register address to introduce a delay loop. Remove the table, and convert to code, documenting the purpose of the specific writes along the way. Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> --- drivers/media/i2c/adv748x/adv748x-core.c | 32 ++++++++++++++++-------- drivers/media/i2c/adv748x/adv748x.h | 16 ++++++++++++ 2 files changed, 38 insertions(+), 10 deletions(-)