mbox series

[0/2] w1: Add 1-wire master driver for AMD programmable logic IP Core

Message ID 20231013093109.37165-1-kris.chaplin@amd.com
Headers show
Series w1: Add 1-wire master driver for AMD programmable logic IP Core | expand

Message

Kris Chaplin Oct. 13, 2023, 9:30 a.m. UTC
Add a master driver to support the AMD 1-Wire programmable logic IP block.
This block guarantees protocol timing for driving off-board devices such as thermal sensors, proms, etc.

Kris Chaplin (2):
  dt-bindings: w1: Add YAML DT Schema for AMD w1 master and MAINTAINERS
    entry
  w1: Add 1-wire master driver for AMD programmable logic IP Core

 .../bindings/w1/amd,axi-1wire-master.yaml     |  44 ++
 MAINTAINERS                                   |   8 +
 drivers/w1/masters/Kconfig                    |  11 +
 drivers/w1/masters/Makefile                   |   1 +
 drivers/w1/masters/amd_w1.c                   | 422 ++++++++++++++++++
 5 files changed, 486 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/w1/amd,axi-1wire-master.yaml
 create mode 100644 drivers/w1/masters/amd_w1.c