mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Emails to stefan.popa@analog.com and alexandru.tachici@analog.com bounce permanently: Remote Server returned '550 5.1.10 RESOLVER.ADR.RecipientNotFound; Recipient not found by SMTP address lookup' so replace them with Marcelo Schmitt and Nuno Sá (listed alphabetically by first name) from Analog where appropriate. Acked-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Nuno Sá <nuno.sa@analog.com> Acked-by: Marcelo Schmitt <marcelo.schmitt@analog.com> Link: https://patch.msgid.link/20250812132445.75398-2-krzysztof.kozlowski@linaro.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/accel/adi,adxl372.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Analog Devices ADXL372 3-Axis, +/-(200g) Digital Accelerometer
|
|
|
|
maintainers:
|
|
- Marcelo Schmitt <marcelo.schmitt@analog.com>
|
|
- Nuno Sá <nuno.sa@analog.com>
|
|
|
|
description: |
|
|
Analog Devices ADXL372 3-Axis, +/-(200g) Digital Accelerometer that supports
|
|
both I2C & SPI interfaces
|
|
https://www.analog.com/en/products/adxl372.html
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- adi,adxl372
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
|
|
allOf:
|
|
- $ref: /schemas/spi/spi-peripheral-props.yaml#
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
/* Example for a I2C device node */
|
|
accelerometer@53 {
|
|
compatible = "adi,adxl372";
|
|
reg = <0x53>;
|
|
interrupt-parent = <&gpio>;
|
|
interrupts = <25 IRQ_TYPE_EDGE_FALLING>;
|
|
};
|
|
};
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
spi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
accelerometer@0 {
|
|
compatible = "adi,adxl372";
|
|
reg = <0>;
|
|
spi-max-frequency = <1000000>;
|
|
interrupt-parent = <&gpio>;
|
|
interrupts = <25 IRQ_TYPE_EDGE_FALLING>;
|
|
};
|
|
};
|