mbox series

[00/16] media: rkisp1: Misc bug fixes and cleanups

Message ID 20220227160116.18556-1-laurent.pinchart@ideasonboard.com (mailing list archive)
Headers show
Series media: rkisp1: Misc bug fixes and cleanups | expand

Message

Laurent Pinchart Feb. 27, 2022, 4:01 p.m. UTC
Hello,

This series fixes multiple issues and performs further cleanups for the
rkisp1 driver.

Patches 01/16 to 07/16 fix issues in the error paths at probe time that
lead to kernel crashes in case of errors. The .remove() path is also
improved as a result.

Patches 08/16 and 09/16 then clean up register definitions, and patch
10/16 simplifies access to the resizer registers.

Patches 11/16 to 15/16 move on to improving debugfs support, with code
first moved to a separate file (11/16) that can be conditionally
compiled (12/16), support for collecting statistics on the input
interface (13/16, very useful to check if the ISP actually receives
data) and for dumping core and ISP registers (14/16). Patch 15/16
completes that rework by moving the resizer register dumps support to
debugfs too.

Finally, patch 16/16 simplifies the V4L2 querycap implementation on
video nodes.

More fixes and improvements should follow, so I'd like to merge sooner
than latter if possible, to avoid having to rebase large series.

Laurent Pinchart (15):
  media: rkisp1: capture: Initialize entity before video device
  media: rkisp1: capture: Fix and simplify (un)registration
  media: rkisp1: isp: Fix and simplify (un)registration
  media: rkisp1: resizer: Fix and simplify (un)registration
  media: rkisp1: params: Fix and simplify (un)registration
  media: rkisp1: stats: Simplify (un)registration
  media: rkisp1: Simplify rkisp1_entities_register() error path
  media: rkisp1: regs: Don't use BIT() macro for multi-bit register
    fields
  media: rkisp1: regs: Rename CCL, ICCL and IRCL registers with VI_
    prefix
  media: rkisp1: resizer: Simplify register access
  media: rkisp1: Move debugfs code to a separate file
  media: rkisp1: Compile debugfs support conditionally
  media: rkisp1: debug: Collect input status by sampling ISP_FLAGS_SHD
  media: rkisp1: debug: Add debugfs files to dump core and ISP registers
  media: rkisp1: debug: Move resizer register dump to debugfs

Paul Elder (1):
  media: rkisp1: capture: Bypass the main device for handling querycap

 .../media/platform/rockchip/rkisp1/Makefile   |  18 +-
 .../platform/rockchip/rkisp1/rkisp1-capture.c |  52 ++---
 .../platform/rockchip/rkisp1/rkisp1-common.h  |  16 ++
 .../platform/rockchip/rkisp1/rkisp1-debug.c   | 209 ++++++++++++++++++
 .../platform/rockchip/rkisp1/rkisp1-dev.c     |  73 ++----
 .../platform/rockchip/rkisp1/rkisp1-isp.c     |  39 ++--
 .../platform/rockchip/rkisp1/rkisp1-params.c  |  23 +-
 .../platform/rockchip/rkisp1/rkisp1-regs.h    | 188 ++++++++--------
 .../platform/rockchip/rkisp1/rkisp1-resizer.c | 192 ++++------------
 .../platform/rockchip/rkisp1/rkisp1-stats.c   |  11 +-
 10 files changed, 464 insertions(+), 357 deletions(-)
 create mode 100644 drivers/media/platform/rockchip/rkisp1/rkisp1-debug.c