|
| 1 | +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) |
| 2 | +# Copyright 2025 Analog Devices Inc. |
| 3 | +%YAML 1.2 |
| 4 | +--- |
| 5 | +$id: http://devicetree.org/schemas/iio/adc/adi,ade9000.yaml# |
| 6 | +$schema: http://devicetree.org/meta-schemas/core.yaml# |
| 7 | + |
| 8 | +title: Analog Devices ADE9000 High Performance, Polyphase Energy Metering |
| 9 | + |
| 10 | +maintainers: |
| 11 | + - Antoniu Miclaus <antoniu.miclaus@analog.com> |
| 12 | + |
| 13 | +description: | |
| 14 | + The ADE9000 is a highly accurate, fully integrated, multiphase energy and power |
| 15 | + quality monitoring device. Superior analog performance and a digital signal |
| 16 | + processing (DSP) core enable accurate energy monitoring over a wide dynamic |
| 17 | + range. An integrated high end reference ensures low drift over temperature |
| 18 | + with a combined drift of less than ±25 ppm/°C maximum for the entire channel |
| 19 | + including a programmable gain amplifier (PGA) and an analog-to-digital |
| 20 | + converter (ADC). |
| 21 | +
|
| 22 | + https://www.analog.com/media/en/technical-documentation/data-sheets/ADE9000.pdf |
| 23 | +
|
| 24 | +$ref: /schemas/spi/spi-peripheral-props.yaml# |
| 25 | + |
| 26 | +properties: |
| 27 | + compatible: |
| 28 | + enum: |
| 29 | + - adi,ade9000 |
| 30 | + |
| 31 | + reg: |
| 32 | + maxItems: 1 |
| 33 | + |
| 34 | + spi-max-frequency: |
| 35 | + maximum: 20000000 |
| 36 | + |
| 37 | + interrupts: |
| 38 | + maxItems: 3 |
| 39 | + |
| 40 | + interrupt-names: |
| 41 | + items: |
| 42 | + enum: [irq0, irq1, dready] |
| 43 | + minItems: 1 |
| 44 | + maxItems: 3 |
| 45 | + |
| 46 | + reset-gpios: |
| 47 | + description: |
| 48 | + Must be the device tree identifier of the RESET pin. As the line is |
| 49 | + active low, it should be marked GPIO_ACTIVE_LOW. |
| 50 | + maxItems: 1 |
| 51 | + |
| 52 | + vdd-supply: true |
| 53 | + |
| 54 | + vref-supply: true |
| 55 | + |
| 56 | + clocks: |
| 57 | + description: External clock source when not using crystal |
| 58 | + maxItems: 1 |
| 59 | + |
| 60 | + |
| 61 | + "#clock-cells": |
| 62 | + description: |
| 63 | + ADE9000 can provide clock output via CLKOUT pin with external buffer. |
| 64 | + const: 0 |
| 65 | + |
| 66 | +required: |
| 67 | + - compatible |
| 68 | + - reg |
| 69 | + - vdd-supply |
| 70 | + |
| 71 | +unevaluatedProperties: false |
| 72 | + |
| 73 | +examples: |
| 74 | + - | |
| 75 | + #include <dt-bindings/gpio/gpio.h> |
| 76 | + #include <dt-bindings/interrupt-controller/irq.h> |
| 77 | +
|
| 78 | + spi { |
| 79 | + #address-cells = <1>; |
| 80 | + #size-cells = <0>; |
| 81 | +
|
| 82 | + adc@0 { |
| 83 | + compatible = "adi,ade9000"; |
| 84 | + reg = <0>; |
| 85 | + spi-max-frequency = <7000000>; |
| 86 | +
|
| 87 | + #clock-cells = <0>; |
| 88 | + reset-gpios = <&gpio 4 GPIO_ACTIVE_LOW>; |
| 89 | + interrupts = <2 IRQ_TYPE_EDGE_FALLING>, <3 IRQ_TYPE_EDGE_FALLING>, <4 IRQ_TYPE_EDGE_FALLING>; |
| 90 | + interrupt-names = "irq0", "irq1", "dready"; |
| 91 | + interrupt-parent = <&gpio>; |
| 92 | + clocks = <&ext_clock_24576khz>; |
| 93 | + vdd-supply = <&vdd_reg>; |
| 94 | + }; |
| 95 | + }; |
0 commit comments