mbox series

[GIT,PULL] Immutable branch with INT3472 ACPI/i2c + pdx86 patches

Message ID 20211215215212.321235-1-hdegoede@redhat.com
State New
Headers show
Series [GIT,PULL] Immutable branch with INT3472 ACPI/i2c + pdx86 patches | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git tags/platform-drivers-x86-int3472-1

Message

Hans de Goede Dec. 15, 2021, 9:52 p.m. UTC
Hello clk, regulator and media maintainers,

As discussed here is a pull-req from an immutable branch based on 5.16-rc1
with the ACPI/i2c, tps68470 and pdx86/INT3472 changes necessary as a base
to merge the remaining clk / regulator / media changes from my
[PATCH v7 00/14] Add support for X86/ACPI camera sensor/PMIC setup with clk and regulator platform data
series. The remaining changes are:

[PATCH v7 05/14] regulator: Introduce tps68470-regulator driver
[PATCH v7 06/14] clk: Introduce clk-tps68470 driver
[PATCH v7 12/14] media: ipu3-cio2: Defer probing until the PMIC is fully setup
[PATCH v7 13/14] media: ipu3-cio2: Call cio2_bridge_init() before anything else
[PATCH v7 14/14] media: ipu3-cio2: Add support for instantiating i2c-clients for VCMs

Please pull this immutable branch into your tree and then merge the
remaining patches relevant for your tree on top.

Regards,

Hans


The following changes since commit fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf:

  Linux 5.16-rc1 (2021-11-14 13:56:52 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git tags/platform-drivers-x86-int3472-1

for you to fetch changes up to 97c2259ec7757ec24a90f0ef8fc5ea7fa1c6acca:

  platform/x86: int3472: Deal with probe ordering issues (2021-12-13 11:44:51 +0100)

----------------------------------------------------------------
Signed tag for the immutable platform-drivers-x86-int3472 branch

This branch contains 5.16-rc1 + the pending ACPI/i2c, tps68570 platform_data
and INT3472 driver patches.

----------------------------------------------------------------
Hans de Goede (9):
      ACPI: delay enumeration of devices with a _DEP pointing to an INT3472 device
      i2c: acpi: Use acpi_dev_ready_for_enumeration() helper
      i2c: acpi: Add i2c_acpi_new_device_by_fwnode() function
      platform_data: Add linux/platform_data/tps68470.h file
      platform/x86: int3472: Split into 2 drivers
      platform/x86: int3472: Add get_sensor_adev_and_name() helper
      platform/x86: int3472: Pass tps68470_clk_platform_data to the tps68470-regulator MFD-cell
      platform/x86: int3472: Pass tps68470_regulator_platform_data to the tps68470-regulator MFD-cell
      platform/x86: int3472: Deal with probe ordering issues

 drivers/acpi/scan.c                                |  37 +++++-
 drivers/i2c/i2c-core-acpi.c                        |  22 +++-
 drivers/platform/x86/intel/int3472/Makefile        |   9 +-
 ...472_clk_and_regulator.c => clk_and_regulator.c} |   2 +-
 drivers/platform/x86/intel/int3472/common.c        |  82 ++++++++++++
 .../{intel_skl_int3472_common.h => common.h}       |   6 +-
 .../{intel_skl_int3472_discrete.c => discrete.c}   |  51 +++++---
 .../x86/intel/int3472/intel_skl_int3472_common.c   | 106 ---------------
 .../{intel_skl_int3472_tps68470.c => tps68470.c}   |  92 +++++++++++--
 drivers/platform/x86/intel/int3472/tps68470.h      |  25 ++++
 .../x86/intel/int3472/tps68470_board_data.c        | 145 +++++++++++++++++++++
 include/acpi/acpi_bus.h                            |   5 +-
 include/linux/i2c.h                                |  17 ++-
 include/linux/platform_data/tps68470.h             |  35 +++++
 14 files changed, 473 insertions(+), 161 deletions(-)
 rename drivers/platform/x86/intel/int3472/{intel_skl_int3472_clk_and_regulator.c => clk_and_regulator.c} (99%)
 create mode 100644 drivers/platform/x86/intel/int3472/common.c
 rename drivers/platform/x86/intel/int3472/{intel_skl_int3472_common.h => common.h} (94%)
 rename drivers/platform/x86/intel/int3472/{intel_skl_int3472_discrete.c => discrete.c} (91%)
 delete mode 100644 drivers/platform/x86/intel/int3472/intel_skl_int3472_common.c
 rename drivers/platform/x86/intel/int3472/{intel_skl_int3472_tps68470.c => tps68470.c} (56%)
 create mode 100644 drivers/platform/x86/intel/int3472/tps68470.h
 create mode 100644 drivers/platform/x86/intel/int3472/tps68470_board_data.c
 create mode 100644 include/linux/platform_data/tps68470.h