Home
last modified time | relevance | path

Searched +full:excitation +full:- +full:current +full:- +full:1 +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
23 maxItems: 1
26 maxItems: 1
29 clock-names:
31 - const: mclk
[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
28 maxItems: 1
30 spi-max-frequency:
[all …]
/linux-6.12.1/drivers/iio/adc/
Dad4130.c1 // SPDX-License-Identifier: GPL-2.0+
10 #include <linux/clk-provider.h>
47 #define AD4130_ADC_CONTROL_MCLK_SEL_MASK GENMASK(1, 0)
83 #define AD4130_CONFIG_PGA_MASK GENMASK(3, 1)
88 #define AD4130_FILTER_SELECT_MIN 1
125 #define AD4130_INVALID_SLOT -1
128 [AD4130_STATUS_REG] = 1,
133 [AD4130_ID_REG] = 1,
136 [AD4130_MCLK_COUNT_REG] = 1,
137 [AD4130_CHANNEL_X_REG(0) ... AD4130_CHANNEL_X_REG(AD4130_MAX_CHANNELS - 1)] = 3,
[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
44 #define LTC2983_MIN_CHANNELS_NR 1
53 #define LTC2983_EEPROM_STATUS_FAILURE_MASK GENMASK(3, 1)
60 (((chan - 1) * 4) + LTC2983_CHAN_ASSIGN_START_REG)
62 (((chan - 1) * 4) + LTC2983_TEMP_RES_START_REG)
66 #define LTC2983_THERMOCOUPLE_OC_CURR_MASK GENMASK(1, 0)
76 #define LTC2983_THERMISTOR_R_SHARE_MASK BIT(1)
86 #define LTC2983_DIODE_3_CONV_CYCLE_MASK BIT(1)
94 #define LTC2983_RTD_ROTATION_MASK BIT(1)
[all …]
/linux-6.12.1/drivers/iio/addac/
Dad74115.c1 // SPDX-License-Identifier: GPL-2.0
50 #define AD74115_OUTPUT_SLEW_LIN_RATE_MASK GENMASK(2, 1)
189 AD74115_GPIO_MODE_LOGIC = 1,
204 * Synchronize consecutive operations when doing a one-shot
222 struct spi_transfer adc_samples_xfer[AD74115_ADC_CH_NUM + 1];
332 0, 0, 0, 1, 2, 3, 4, 5
353 [AD74115_ADC_CH_CONV2] = BIT(1),
376 [AD74115_ADC_RANGE_2_5V_BIPOLAR] = { 1, 1 },
377 [AD74115_ADC_RANGE_2_5V_NEG] = { 1, 1 },
378 [AD74115_ADC_RANGE_2_5V] = { 1, 1 },
[all …]