Path: blob/master/Documentation/devicetree/bindings/iio/health/ti,afe4403.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/health/ti,afe4403.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Texas Instruments AFE4403 Heart rate and Pulse Oximeter78maintainers:9- Jonathan Cameron <jic23@kernel.org>1011properties:12compatible:13const: ti,afe44031415reg:16maxItems: 11718tx-supply:19description: Supply to transmitting LEDs.2021interrupts:22maxItems: 123description: Connected to ADC_RDY pin.2425reset-gpios:26maxItems: 12728required:29- compatible30- reg3132allOf:33- $ref: /schemas/spi/spi-peripheral-props.yaml#3435unevaluatedProperties: false3637examples:38- |39#include <dt-bindings/gpio/gpio.h>40#include <dt-bindings/interrupt-controller/irq.h>41spi {42#address-cells = <1>;43#size-cells = <0>;4445heart-mon@0 {46compatible = "ti,afe4403";47reg = <0>;48spi-max-frequency = <10000000>;49tx-supply = <&vbat>;50interrupt-parent = <&gpio1>;51interrupts = <28 IRQ_TYPE_EDGE_RISING>;52reset-gpios = <&gpio1 16 GPIO_ACTIVE_LOW>;53};54};55...565758