我使用的Linux版本是:6.1.28,我的电源管理是分立式原件,"VDD_CORE"实际是1.212V,设备树中是这样的:
vddcore: regulator-vddcore {
compatible = "regulator-fixed";
regulator-name = "vddcore";
regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1350000>;
regulator-always-on;
regulator-boot-on;
};
如果按照上面这样设置我的/sys/devices/system/cpu/cpufreq/下面就是空的,但是我把"regulator-min-microvolt = <1200000>;"中的1200000改为1350000就正常了,这是为什么? |