Home
last modified time | relevance | path

Searched +full:atc2603c +full:- +full:regulator (Results 1 – 5 of 5) sorted by relevance

/kernel/linux/linux-6.6/Documentation/devicetree/bindings/mfd/
Dactions,atc260x.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11 - Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
16 (i.e. regulators and system power-off/reboot) for the ATC2603C and ATC2609A
18 ATC2603C includes 3 programmable DC-DC converters, 9 programmable LDO
19 regulators and 1 fixed LDO regulator.
20 ATC2609A includes 5 programmable DC-DC converters and 10 programmable LDO
24 - $ref: ../input/input.yaml
[all …]
/kernel/linux/linux-6.6/arch/arm/boot/dts/actions/
Dowl-s500-roseapplepi.dts1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
5 * Copyright (C) 2020-2021 Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
8 /dts-v1/;
10 #include "owl-s500.dtsi"
22 stdout-path = "serial2:115200n8";
30 syspwr: regulator-5v0 {
31 compatible = "regulator-fixed";
32 regulator-name = "SYSPWR";
33 regulator-min-microvolt = <5000000>;
34 regulator-max-microvolt = <5000000>;
[all …]
/kernel/linux/linux-6.6/drivers/mfd/
Datc260x-core.c1 // SPDX-License-Identifier: GPL-2.0+
35 * internally protected by a mutex which is acquired non-atomically. in regmap_lock_mutex()
97 .name = "atc2603c",
123 { .name = "atc260x-regulator" },
124 { .name = "atc260x-pwrc" },
126 .name = "atc260x-onkey",
133 { .name = "atc260x-regulator" },
134 { .name = "atc260x-pwrc" },
136 .name = "atc260x-onkey",
160 const struct atc260x_init_regs *regs = atc260x->init_regs; in atc260x_cmu_reset()
[all …]
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
45 tristate "Active-semi ACT8945A"
50 Support for the ACT8945A PMIC from Active-semi. This device
51 features three step-down DC/DC converters and four low-dropout
67 sun4i-gpadc-iio and the hwmon driver iio_hwmon.
70 called sun4i-gpadc.
101 tablets etc. It has 4 DC/DC step-down regulators, 3 DC/DC step-down
132 over at91-usart-serial driver and usart-spi-driver. Only one function
148 tristate "Atmel HLCDC (High-end LCD Controller)"
178 voltage regulator, voltage sampling units, GPIO block and
[all …]
/kernel/linux/linux-6.6/drivers/regulator/
Datc260x-regulator.c1 // SPDX-License-Identifier: GPL-2.0+
3 // Regulator driver for ATC260x PMICs
13 #include <linux/regulator/driver.h>
51 return data->voltage_time_dcdc; in atc260x_dcdc_set_voltage_time_sel()
63 return data->voltage_time_ldo; in atc260x_ldo_set_voltage_time_sel()
152 * in the vendor's driver implementation (xapp-le-kernel).
475 struct atc260x *atc260x = dev_get_drvdata(pdev->dev.parent); in atc260x_regulator_probe()
476 struct device *dev = atc260x->dev; in atc260x_regulator_probe()
484 atc260x_data = devm_kzalloc(&pdev->dev, sizeof(*atc260x_data), GFP_KERNEL); in atc260x_regulator_probe()
486 return -ENOMEM; in atc260x_regulator_probe()
[all …]