[PATCH v3 00/19] media: i2c: ds90ub9xx: Error handling, UB9702 improvements

Jai Luthra posted 19 patches 9 months, 3 weeks ago
.../bindings/media/i2c/ti,ds90ub953.yaml           |   77 +-
.../bindings/media/i2c/ti,ds90ub960.yaml           |   16 +-
drivers/media/i2c/ds90ub913.c                      |   82 +-
drivers/media/i2c/ds90ub953.c                      |  242 ++-
drivers/media/i2c/ds90ub953.h                      |  104 +
drivers/media/i2c/ds90ub960.c                      | 2166 +++++++++++++++-----
6 files changed, 1966 insertions(+), 721 deletions(-)
[PATCH v3 00/19] media: i2c: ds90ub9xx: Error handling, UB9702 improvements
Posted by Jai Luthra 9 months, 3 weeks ago
Hi,

This series has two main parts: 1) add error handling all around, and 2)
update the drivers according to latest (mostly non-public) information
from TI.

Signed-off-by: Jai Luthra <jai.luthra@ideasonboard.com>
---
Changes in v3:
- Now that this series is closer to being merged, squash "Remove old
  ub9702 RX port init code (SQUASH)" and "Update UB9702 init sequences"
  as they were only split to ease review.
- Drop SSCG bindings and driver changes.
- Fix Sakari's minor review comments on "Speed-up I2C watchdog timer".
- Link to v2: https://lore.kernel.org/r/20250124-ub9xx-improvements-v2-0-f7075c99ea20@ideasonboard.com

---
Jai Luthra (4):
      media: i2c: ds90ub953: Speed-up I2C watchdog timer
      media: dt-bindings: ti,ds90ub960: Allow setting serializer address
      media: i2c: ds90ub960: Configure serializer using back-channel
      media: i2c: ds90ub9xx: Set serializer temperature ramp

Tomi Valkeinen (15):
      media: i2c: ds90ub953: Fix error prints
      media: i2c: ds90ub913: Fix returned fmt from .set_fmt()
      media: i2c: ds90ub913: Align ub913_read() with other similar functions
      media: i2c: ds90ub9xx: Add err parameter to read/write funcs
      media: i2c: ds90ub960: Add error handling to multiple places
      media: i2c: ds90ub953: Add error handling to ub953_log_status()
      media: i2c: ds90ub913: Add error handling to ub913_log_status()
      media: i2c: ds90ub960: Move UB9702 registers to a separate section
      media: i2c: ds90ub960: Add UB9702 specific registers
      media: i2c: ds90ub960: Split ub960_init_tx_ports()
      media: i2c: ds90ub960: Refresh ub960_init_tx_ports_ub9702()
      media: i2c: ds90ub960: Add RX port iteration support
      media: i2c: ds90ub960: Move all RX port init code into ub960_init_rx_ports()
      media: i2c: ds90ub960: Update UB9702 init sequences
      media: i2c: ds90ub953: Move reg defines to a header file

 .../bindings/media/i2c/ti,ds90ub953.yaml           |   77 +-
 .../bindings/media/i2c/ti,ds90ub960.yaml           |   16 +-
 drivers/media/i2c/ds90ub913.c                      |   82 +-
 drivers/media/i2c/ds90ub953.c                      |  242 ++-
 drivers/media/i2c/ds90ub953.h                      |  104 +
 drivers/media/i2c/ds90ub960.c                      | 2166 +++++++++++++++-----
 6 files changed, 1966 insertions(+), 721 deletions(-)
---
base-commit: 2014c95afecee3e76ca4a56956a936e23283f05b
change-id: 20250303-b4-ub9xx-err-handling-57a89508ea5e

Best regards,
-- 
Jai Luthra <jai.luthra@ideasonboard.com>
Re: [PATCH v3 00/19] media: i2c: ds90ub9xx: Error handling, UB9702 improvements
Posted by Tomi Valkeinen 9 months, 3 weeks ago
Hi,

On 03/03/2025 18:02, Jai Luthra wrote:
> Hi,
> 
> This series has two main parts: 1) add error handling all around, and 2)
> update the drivers according to latest (mostly non-public) information
> from TI.
> 
> Signed-off-by: Jai Luthra <jai.luthra@ideasonboard.com>
> ---
> Changes in v3:
> - Now that this series is closer to being merged, squash "Remove old
>    ub9702 RX port init code (SQUASH)" and "Update UB9702 init sequences"
>    as they were only split to ease review.
> - Drop SSCG bindings and driver changes.
> - Fix Sakari's minor review comments on "Speed-up I2C watchdog timer".
> - Link to v2: https://lore.kernel.org/r/20250124-ub9xx-improvements-v2-0-f7075c99ea20@ideasonboard.com
> 

Thanks Jai for sending this. Looks good to me.

  Tomi