lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <zzuyemsikzpbntvmgxm2fu7p4vs7uwkawyd5rd732p5ralx2fg@wnqvjg2mi7vu>
Date: Fri, 5 Dec 2025 00:35:57 +0100
From: Andi Shyti <andi.shyti@...nel.org>
To: Wolfram Sang <wsa+renesas@...g-engineering.com>
Cc: linux-i2c <linux-i2c@...r.kernel.org>, 
	lkml <linux-kernel@...r.kernel.org>, Andi Shyti <andi.shyti@...nel.org>
Subject: i2c-host for v6.18

Hi Wolfram,

here is the pull request for this cycle. I was hoping it would be
more substantial, but I ran into a nasty issue with my gpg setup
that blocked me from pushing to kernel.org for several weeks. The
kernel.org helpdesk helped me sort it out, but unfortunately a
bit too late, so this is all I managed to gather in time.

I am sorry for the disruption. I will set up a backup solution so
that I can avoid this problem in the future.

Thanks and I wish you a great weekend,
Andi

The following changes since commit 7d0a66e4bb9081d75c82ec4957c50034cb0ea449:

  Linux 6.18 (2025-11-30 14:42:10 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux.git tags/i2c-host-6.19

for you to fetch changes up to 362e391005a98827a2d98b63f1e9001dd592bc63:

  dt-bindings: i2c: qcom-cci: Document SM8750 compatible (2025-12-03 21:50:26 +0100)

----------------------------------------------------------------
i2c-host for v6.19

- general cleanups in bcmi2835, designware, pcf8584 and stm32
- amd-mp2: fix device refcount
- bcm, pxa, rcar: fix void-pointer-to-enum-cast warning
- designware: avoid interrupt storms caused by bad firmware
- designware: use dedicated xfer function for AMD NAVI
- i801: fix supported features
- spacemit: fix device detection failures

New device support:
- Intel Diamond Rapids and Nova Lake-S (i801)
- Mobileye
- Rockchip RK3506
- Qualcomm Kaanapali, MSM8953 and SM8750

----------------------------------------------------------------
BenoƮt Monin (4):
      dt-bindings: i2c: dw: Add Mobileye I2C controllers
      i2c: designware: Optimize flag reading in i2c_dw_read()
      i2c: designware: Sort compatible strings in alphabetical order
      i2c: designware: Add dedicated algorithm for AMD NAVI

Brian Masney (1):
      i2c: busses: bcm2835: convert from round_rate() to determine_rate()

Cezar Chiru (5):
      i2c: pcf8584: Remove debug macros from i2c-algo-pcf.c
      i2c: pcf8584: Fix do not use assignment inside if conditional
      i2c: pcf8584: Move 'ret' variable inside for loop, goto out if ret < 0.
      i2c: pcf8584: Make pcf_doAddress() function void
      i2c: pcf8584: Change pcf_doAdress() to pcf_send_address()

Hangxiang Ma (2):
      dt-bindings: i2c: qcom-cci: Document Kaanapali compatible
      dt-bindings: i2c: qcom-cci: Document SM8750 compatible

Heikki Krogerus (1):
      i2c: i801: Fix the Intel Diamond Rapids features

Heiko Stuebner (1):
      dt-bindings: i2c: i2c-rk3x: Add compatible string for RK3506

Jarkko Nikula (1):
      i2c: i801: Add support for Intel Nova Lake-S

Jinhui Guo (1):
      i2c: designware: Disable SMBus interrupts to prevent storms from mis-configured firmware

Krzysztof Kozlowski (3):
      i2c: bcm-iproc: Fix Wvoid-pointer-to-enum-cast warning
      i2c: pxa: Fix Wvoid-pointer-to-enum-cast warning
      i2c: rcar: Fix Wvoid-pointer-to-enum-cast warning

Luca Weiss (1):
      dt-bindings: i2c: qcom-cci: Document msm8953 compatible

Ma Ke (1):
      i2c: fix reference leak in MP2 PCI device

Markus Elfring (2):
      i2c: designware: Omit a variable reassignment in dw_i2c_plat_probe()
      i2c: stm32: Omit two variable reassignments in stm32_i2c_dma_request()

Nathan Chancellor (1):
      i2c: designware: Remove i2c_dw_remove_lock_support()

Troy Mitchell (1):
      i2c: spacemit: fix detect issue

Zeng Guang (1):
      i2c: i801: Add support for Intel Diamond Rapids

 Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml            |   1 +
 Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml        |   6 ++++
 Documentation/devicetree/bindings/i2c/snps,designware-i2c.yaml |   7 +++++
 Documentation/i2c/busses/i2c-i801.rst                          |   2 ++
 drivers/i2c/algos/i2c-algo-pcf.c                               | 105 +++++++++++++++++----------------------------------------------------
 drivers/i2c/busses/Kconfig                                     |   2 ++
 drivers/i2c/busses/i2c-amd-mp2-pci.c                           |   5 +++-
 drivers/i2c/busses/i2c-bcm-iproc.c                             |   3 +-
 drivers/i2c/busses/i2c-bcm2835.c                               |  12 ++++----
 drivers/i2c/busses/i2c-designware-core.h                       |   2 +-
 drivers/i2c/busses/i2c-designware-master.c                     |  34 +++++++++++++++--------
 drivers/i2c/busses/i2c-designware-platdrv.c                    |  17 ++----------
 drivers/i2c/busses/i2c-i801.c                                  |   6 ++++
 drivers/i2c/busses/i2c-k1.c                                    |  19 +++++++++----
 drivers/i2c/busses/i2c-pxa.c                                   |   2 +-
 drivers/i2c/busses/i2c-rcar.c                                  |   2 +-
 drivers/i2c/busses/i2c-stm32.c                                 |   7 ++---
 17 files changed, 105 insertions(+), 127 deletions(-)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ