Home
last modified time | relevance | path

Searched +full:excitation +full:- +full:current +full:- +full:0 +full:- +full:nanoamp (Results 1 – 6 of 6) sorted by relevance

/linux-6.12.1/Documentation/devicetree/bindings/iio/adc/
Dadi,ad4130.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Cosmin Tanislav <cosmin.tanislav@analog.com>
15 https://www.analog.com/media/en/technical-documentation/data-sheets/AD4130-8.pdf
20 - adi,ad4130
29 clock-names:
31 - const: mclk
36 interrupt-names:
42 - int
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/iio/temperature/
Dadi,ltc2983.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Analog Devices LTC2983, LTC2986, LTM2985 Multi-sensor Temperature system
10 - Nuno Sá <nuno.sa@analog.com>
13 Analog Devices LTC2983, LTC2984, LTC2986, LTM2985 Multi-Sensor Digital
16 https://www.analog.com/media/en/technical-documentation/data-sheets/2983fc.pdf
17 https://www.analog.com/media/en/technical-documentation/data-sheets/2984fb.pdf
18 https://www.analog.com/media/en/technical-documentation/data-sheets/29861fa.pdf
19 https://www.analog.com/media/en/technical-documentation/data-sheets/ltm2985.pdf
[all …]
/linux-6.12.1/Documentation/devicetree/bindings/iio/addac/
Dadi,ad74115.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Cosmin Tanislav <cosmin.tanislav@analog.com>
13 The AD74115H is a single-channel software configurable input/output
17 chip solution with an SPI interface. The device features a 16-bit ADC and a
18 14-bit DAC.
25 - adi,ad74115h
30 spi-max-frequency:
33 spi-cpol: true
[all …]
/linux-6.12.1/drivers/iio/adc/
Dad4130.c1 // SPDX-License-Identifier: GPL-2.0+
10 #include <linux/clk-provider.h>
37 #define AD4130_STATUS_REG 0x00
39 #define AD4130_ADC_CONTROL_REG 0x01
47 #define AD4130_ADC_CONTROL_MCLK_SEL_MASK GENMASK(1, 0)
51 #define AD4130_DATA_REG 0x02
53 #define AD4130_IO_CONTROL_REG 0x03
56 #define AD4130_IO_CONTROL_GPIO_CTRL_MASK GENMASK(3, 0)
58 #define AD4130_VBIAS_REG 0x04
60 #define AD4130_ID_REG 0x05
[all …]
/linux-6.12.1/drivers/iio/temperature/
Dltc2983.c1 // SPDX-License-Identifier: GPL-2.0
3 * Analog Devices LTC2983 Multi-Sensor Digital Temperature Measurement System
28 #define LTC2983_STATUS_REG 0x0000
29 #define LTC2983_TEMP_RES_START_REG 0x0010
30 #define LTC2983_TEMP_RES_END_REG 0x005F
31 #define LTC2983_EEPROM_KEY_REG 0x00B0
32 #define LTC2983_EEPROM_READ_STATUS_REG 0x00D0
33 #define LTC2983_GLOBAL_CONFIG_REG 0x00F0
34 #define LTC2983_MULT_CHANNEL_START_REG 0x00F4
35 #define LTC2983_MULT_CHANNEL_END_REG 0x00F7
[all …]
/linux-6.12.1/drivers/iio/addac/
Dad74115.c1 // SPDX-License-Identifier: GPL-2.0
29 #define AD74115_CH_FUNC_SETUP_REG 0x01
31 #define AD74115_ADC_CONFIG_REG 0x02
37 #define AD74115_PWR_OPTIM_CONFIG_REG 0x03
39 #define AD74115_DIN_CONFIG1_REG 0x04
42 #define AD74115_DIN_DEBOUNCE_MASK GENMASK(4, 0)
44 #define AD74115_DIN_CONFIG2_REG 0x05
45 #define AD74115_COMP_THRESH_MASK GENMASK(6, 0)
47 #define AD74115_OUTPUT_CONFIG_REG 0x06
52 #define AD74115_RTD3W4W_CONFIG_REG 0x07
[all …]