Path: blob/master/Documentation/devicetree/bindings/iio/temperature/maxim,max31855k.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/temperature/maxim,max31855k.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Maxim MAX31855 and similar thermocouples78maintainers:9- Matt Ranostay <matt.ranostay@konsulko.com>1011description: |12https://datasheets.maximintegrated.com/en/ds/MAX6675.pdf13https://datasheets.maximintegrated.com/en/ds/MAX31855.pdf1415properties:16compatible:17description:18The generic maxim,max31855 compatible is deprecated in favour of19the thermocouple type specific variants.20enum:21- maxim,max667522- maxim,max3185523- maxim,max31855k24- maxim,max31855j25- maxim,max31855n26- maxim,max31855s27- maxim,max31855t28- maxim,max31855e29- maxim,max31855r3031reg:32maxItems: 13334spi-cpha: true3536required:37- compatible38- reg3940allOf:41- $ref: /schemas/spi/spi-peripheral-props.yaml#42- if:43properties:44compatible:45contains:46enum:47- maxim,max667548then:49required:50- spi-cpha51else:52properties:53spi-cpha: false5455unevaluatedProperties: false5657examples:58- |59spi {60#address-cells = <1>;61#size-cells = <0>;6263temp-sensor@0 {64compatible = "maxim,max31855k";65reg = <0>;66spi-max-frequency = <4300000>;67};68temp-sensor@1 {69compatible = "maxim,max6675";70reg = <1>;71spi-max-frequency = <4300000>;72spi-cpha;73};74};75...767778