Home
last modified time | relevance | path

Searched +full:npcm750 +full:- +full:adc (Results 1 – 6 of 6) sorted by relevance

/kernel/linux/linux-5.10/Documentation/devicetree/bindings/iio/adc/
Dnuvoton,npcm750-adc.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/iio/adc/nuvoton,npcm750-adc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Nuvoton NPCM BMC Analog to Digital Converter (ADC)
10 - Tomer Maimon <tmaimon77@gmail.com>
13 The NPCM ADC is a 10-bit converter for eight channel inputs.
17 const: nuvoton,npcm750-adc
24 description: ADC interrupt, should be set for falling edge.
31 description: If not provided the defulat ADC sample rate will be used.
[all …]
/kernel/linux/linux-5.10/Documentation/hwmon/
Dindex.rst8 hwmon-kernel-api
9 pmbus-core
10 inspur-ipsps1
11 submitting-patches
12 sysfs-interface
13 userspace-tools
46 aspeed-pwm-tacho
48 bel-pfe
49 bt1-pvt
51 corsair-cpro
[all …]
/kernel/linux/linux-5.10/drivers/iio/adc/
Dnpcm_adc.c1 // SPDX-License-Identifier: GPL-2.0
30 /* ADC registers */
50 /* ADC General Definition */
80 regtemp = ioread32(info->regs + NPCM_ADCCON); in npcm_adc_isr()
82 iowrite32(regtemp, info->regs + NPCM_ADCCON); in npcm_adc_isr()
83 wake_up_interruptible(&info->wq); in npcm_adc_isr()
84 info->int_status = true; in npcm_adc_isr()
95 /* Select ADC channel */ in npcm_adc_read()
96 regtemp = ioread32(info->regs + NPCM_ADCCON); in npcm_adc_read()
98 info->int_status = false; in npcm_adc_read()
[all …]
/kernel/linux/linux-5.10/drivers/hwmon/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
20 sensors-detect script from the lm_sensors package. Read
21 <file:Documentation/hwmon/userspace-tools.rst> for details.
52 will be called abx500-temp.
267 will be called as370-hwmon.
290 will be called axi-fan-control
299 lm-sensors 2.10.1 for proper userspace support.
348 Only Intel-based Apple's computers are supported (MacBook Pro,
355 the laptop to act as a pinball machine-esque joystick.
370 will be called scmi-hwmon.
[all …]
DMakefile1 # SPDX-License-Identifier: GPL-2.0
6 obj-$(CONFIG_HWMON) += hwmon.o
7 obj-$(CONFIG_HWMON_VID) += hwmon-vid.o
10 obj-$(CONFIG_SENSORS_ACPI_POWER) += acpi_power_meter.o
11 obj-$(CONFIG_SENSORS_ATK0110) += asus_atk0110.o
15 obj-$(CONFIG_SENSORS_ASB100) += asb100.o
16 obj-$(CONFIG_SENSORS_W83627HF) += w83627hf.o
17 obj-$(CONFIG_SENSORS_W83773G) += w83773g.o
18 obj-$(CONFIG_SENSORS_W83792D) += w83792d.o
19 obj-$(CONFIG_SENSORS_W83793) += w83793.o
[all …]
/kernel/linux/linux-5.10/drivers/clk/
Dclk-npcm7xx.c1 // SPDX-License-Identifier: GPL-2.0
11 #include <linux/clk-provider.h>
20 #include <dt-bindings/clock/nuvoton,npcm7xx-clock.h>
51 val = readl_relaxed(pll->pllcon); in npcm7xx_clk_pll_recalc_rate()
79 return ERR_PTR(-ENOMEM); in npcm7xx_clk_register_pll()
89 pll->pllcon = pllcon; in npcm7xx_clk_register_pll()
90 pll->hw.init = &init; in npcm7xx_clk_register_pll()
92 hw = &pll->hw; in npcm7xx_clk_register_pll()
140 * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
141 * this specific clock. Otherwise, set to -1.
[all …]