Hi Mauro, Here's preliminary CCS support for the newly renamed CCS driver, including the CCS static data library. Additionally, I put in the two patches fixing SPDX line location as well as renaming the register description file from .txt to .asc. Please pull. The following changes since commit 1ed36ecd1459b653cced8929bfb37dba94b64c5d: media: i2c: imx219: Selection compliance fixes (2020-12-02 16:16:56 +0100) are available in the Git repository at: git://linuxtv.org/sailus/media_tree.git tags/ccs-v4-ccs-support-asc-signed for you to fetch changes up to c159d16bf5dbb3b8a80669da65d5a71db7f0eaab: ccs: Use all regulators (2020-12-02 17:17:18 +0200) ---------------------------------------------------------------- Preliminary CCS support for 5.11 ---------------------------------------------------------------- Sakari Ailus (32): Documentation: ccs: Rename ccs-regs.txt as ccs-regs.asc Documentation: ccs: Reorder SPDX and copyright notice lines ccs: Add MIPI CCS compatible strings ccs: Add device compatible identifiers for telling SMIA and CCS apart ccs: Add CCS ACPI device ID ccs: Remove the I²C ID table ccs: Remove remaining support for platform data ccs: Make hwcfg part of the device specific struct ccs: Fix obtaining bus information from firmware ccs: Add CCS static data parser library ccs: Combine revision number major and minor into one ccs: Read CCS static data from firmware binaries ccs: Stop reading arrays after the first zero ccs: The functions to get compose or crop rectangle never return NULL ccs: Replace somewhat harsh internal checks based on BUG with WARN_ON ccs: Refactor register reading a little ccs: Make real to integer number conversion optional ccs: Move limit value real to integer conversion from read to access time ccs: Read ireal numbers correctly smiapp-pll: Rename as ccs-pll ccs-pll: Fix MODULE_LICENSE ccs: Change my e-mail address ccs: Allow range in between I²C retries ccs: Add support for manufacturer regs from sensor and module files ccs: Use static data read-only registers ccs: Clean up runtime PM usage ccs: Wrap long lines, unwrap short ones ccs: Use longer pre-I²C sleep for CCS compliant devices ccs: Remove unnecessary delays from power-up sequence dt-bindings: mipi,ccs: Don't mention vana voltage dt-bindings: mipi,ccs: Add vcore and vio supplies ccs: Use all regulators .../devicetree/bindings/media/i2c/mipi-ccs.yaml | 11 +- .../drivers/ccs/{ccs-regs.txt => ccs-regs.asc} | 2 +- Documentation/driver-api/media/drivers/ccs/ccs.rst | 4 +- .../driver-api/media/drivers/ccs/mk-ccs-regs | 4 +- MAINTAINERS | 4 +- drivers/media/i2c/Kconfig | 2 +- drivers/media/i2c/Makefile | 2 +- drivers/media/i2c/{smiapp-pll.c => ccs-pll.c} | 66 +- drivers/media/i2c/{smiapp-pll.h => ccs-pll.h} | 42 +- drivers/media/i2c/ccs/Kconfig | 2 +- drivers/media/i2c/ccs/Makefile | 2 +- drivers/media/i2c/ccs/ccs-core.c | 396 +++++---- drivers/media/i2c/ccs/ccs-data-defs.h | 221 +++++ drivers/media/i2c/ccs/ccs-data.c | 953 +++++++++++++++++++++ drivers/media/i2c/ccs/ccs-data.h | 227 +++++ drivers/media/i2c/ccs/ccs-quirk.c | 10 +- drivers/media/i2c/ccs/ccs-quirk.h | 2 +- drivers/media/i2c/ccs/ccs-reg-access.c | 227 ++++- drivers/media/i2c/ccs/ccs-reg-access.h | 6 +- drivers/media/i2c/ccs/ccs.h | 24 +- 20 files changed, 1928 insertions(+), 279 deletions(-) rename Documentation/driver-api/media/drivers/ccs/{ccs-regs.txt => ccs-regs.asc} (100%) rename drivers/media/i2c/{smiapp-pll.c => ccs-pll.c} (89%) rename drivers/media/i2c/{smiapp-pll.h => ccs-pll.h} (66%) create mode 100644 drivers/media/i2c/ccs/ccs-data-defs.h create mode 100644 drivers/media/i2c/ccs/ccs-data.c create mode 100644 drivers/media/i2c/ccs/ccs-data.h -- Kind regards, Sakari Ailus