Home
last modified time | relevance | path

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

/Linux-v6.1/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 …]
/Linux-v6.1/arch/arm/boot/dts/
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 …]
/Linux-v6.1/drivers/mfd/
Datc260x-core.c1 // SPDX-License-Identifier: GPL-2.0+
36 * internally protected by a mutex which is acquired non-atomically. in regmap_lock_mutex()
98 .name = "atc2603c",
126 { .name = "atc260x-regulator" },
127 { .name = "atc260x-pwrc" },
129 .name = "atc260x-onkey",
136 { .name = "atc260x-regulator" },
137 { .name = "atc260x-pwrc" },
139 .name = "atc260x-onkey",
163 const struct atc260x_init_regs *regs = atc260x->init_regs; in atc260x_cmu_reset()
[all …]
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
44 tristate "Active-semi ACT8945A"
49 Support for the ACT8945A PMIC from Active-semi. This device
50 features three step-down DC/DC converters and four low-dropout
66 sun4i-gpadc-iio and the hwmon driver iio_hwmon.
69 called sun4i-gpadc.
88 tablets etc. It has 4 DC/DC step-down regulators, 3 DC/DC step-down
119 over at91-usart-serial driver and usart-spi-driver. Only one function
135 tristate "Atmel HLCDC (High-end LCD Controller)"
165 voltage regulator, voltage sampling units, GPIO block and
[all …]
/Linux-v6.1/drivers/regulator/
Datc260x-regulator.c1 // SPDX-License-Identifier: GPL-2.0+
3 // Regulator driver for ATC260x PMICs
12 #include <linux/regulator/driver.h>
50 return data->voltage_time_dcdc; in atc260x_dcdc_set_voltage_time_sel()
62 return data->voltage_time_ldo; in atc260x_ldo_set_voltage_time_sel()
151 * in the vendor's driver implementation (xapp-le-kernel).
474 struct atc260x *atc260x = dev_get_drvdata(pdev->dev.parent); in atc260x_regulator_probe()
475 struct device *dev = atc260x->dev; in atc260x_regulator_probe()
483 atc260x_data = devm_kzalloc(&pdev->dev, sizeof(*atc260x_data), GFP_KERNEL); in atc260x_regulator_probe()
485 return -ENOMEM; in atc260x_regulator_probe()
[all …]