mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
b1f4bf058f
PD#SWPL-135783 Problem: 1. need use regulator to delay dvfs voltage set; 2. for boot to kernel vddcpu/vddee voltage change to max problem; Solution: 1. (add dvfs delay time at s7 pxp) at 374414; 2. add init voltage at txhd2 trunk; Verify: build pass Change-Id: I8d5a2750d3ab5df2d949be710db5f1adf3659cb7 Signed-off-by: chengbing.wu <chengbing.wu@amlogic.com>
28 lines
657 B
Plaintext
28 lines
657 B
Plaintext
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
if REGULATOR
|
|
|
|
config AMLOGIC_REGULATOR
|
|
tristate "Amlogic regulator devices support"
|
|
default n
|
|
help
|
|
regulator devices support
|
|
select y for built-in
|
|
select m for ko
|
|
select n for disable
|
|
|
|
if AMLOGIC_REGULATOR
|
|
source "$(COMMON_DRIVERS_DIR)/drivers/regulator/meson_pmic6b/Kconfig"
|
|
endif
|
|
|
|
config AMLOGIC_PWM_REGULATOR
|
|
bool "PWM voltage regulator for AMLOGIC define"
|
|
depends on REGULATOR_PWM
|
|
help
|
|
This driver supports some feature of PWM regulators.
|
|
such as:
|
|
1. need use regulator to delay dvfs voltage setting;
|
|
2. deal with problem of voltage by changed to max booting to kernel;
|
|
|
|
endif
|