[GIT PULL] w1: drivers for v6.8

From: Krzysztof Kozlowski
Date: Thu Dec 21 2023 - 05:16:24 EST


The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-w1.git tags/w1-drv-6.8

for you to fetch changes up to 93c4bb3666a3d463c73a66ab3cc78a4c4b83631a:

w1: ds2433: add support for ds28ec20 eeprom (2023-12-20 09:25:25 +0100)

----------------------------------------------------------------
1-Wire bus drivers for v6.8

1. Add new AMD AXI 1-wire host driver for AMD programmable logic IP
core.
2. Add support for Analog Devices DS28EC20 EEPROM to existing DS2433
driver.
3. Few cleanups in W1 GPIO driver.

----------------------------------------------------------------
Kris Chaplin (2):
dt-bindings: w1: Add AMD AXI w1 host and MAINTAINERS entry
w1: Add AXI 1-wire host driver for AMD programmable logic IP core

Marc Ferland (5):
w1: ds2490: support block sizes larger than 128 bytes in ds_read_block
w1: ds2433: remove unused definitions
w1: ds2433: introduce a configuration structure
w1: ds2433: use the kernel bitmap implementation
w1: ds2433: add support for ds28ec20 eeprom

Rob Herring (1):
w1: amd_axi_w1: Explicitly include correct DT includes

Uwe Kleine-König (3):
w1: gpio: Don't use platform data for driver data
w1: gpio: Drop unused enable_external_pullup from driver data
w1: gpio: rename pointer to driver data from pdata to ddata

.../devicetree/bindings/w1/amd,axi-1wire-host.yaml | 44 +++
MAINTAINERS | 8 +
drivers/w1/masters/Kconfig | 11 +
drivers/w1/masters/Makefile | 1 +
drivers/w1/masters/amd_axi_w1.c | 396 +++++++++++++++++++++
drivers/w1/masters/ds2490.c | 25 +-
drivers/w1/masters/w1-gpio.c | 118 +++---
drivers/w1/slaves/w1_ds2433.c | 162 +++++++--
include/linux/w1-gpio.h | 22 --
9 files changed, 659 insertions(+), 128 deletions(-)
create mode 100644 Documentation/devicetree/bindings/w1/amd,axi-1wire-host.yaml
create mode 100644 drivers/w1/masters/amd_axi_w1.c
delete mode 100644 include/linux/w1-gpio.h