Skip to content

Commit eb6022d

Browse files
committed
arm: dts: overlay: add Vanxoak HD-RK3506G-EVB all-opp overlay
The device defaults shipped with a LDO which only provides 960mV by default (told by vendor support), and it will only activate OPPs up to 1512MHz. This commit adds an overlay to fake the LDO to 1100mV to activate the full OPP table including 1608MHz.
1 parent 826efd6 commit eb6022d

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

arch/arm/boot/dts/overlay/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ dtbo-$(CONFIG_ARCH_ROCKCHIP) += \
1717
rockchip-luckfox-lyra-zero-w-spi1-1cs-spidev.dtbo \
1818
rockchip-luckfox-lyra-zero-w-spi1-2cs-spidev.dtbo \
1919
rockchip-rk3506-disable-ethernet0.dtbo \
20-
rockchip-rk3506-disable-ethernet1.dtbo
20+
rockchip-rk3506-disable-ethernet1.dtbo \
21+
rockchip-vanxoak-hd-rk3506g-evb-all-opp.dtbo
2122

2223
dtbotxt-$(CONFIG_ARCH_ROCKCHIP) += \
2324
README.rockchip-overlays
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2+
/dts-v1/;
3+
/plugin/;
4+
5+
/ {
6+
metadata {
7+
title = "Enable all CPU OPPs";
8+
compatible = "vanxoak,hd-rk3506g-evb", "rockchip,rk3506";
9+
category = "misc";
10+
description = "Fake vdd_arm LDO to 1100mV to activate all CPU OPPs.";
11+
};
12+
};
13+
14+
&vdd_arm {
15+
regulator-min-microvolt = <1100000>;
16+
regulator-max-microvolt = <1100000>;
17+
};

0 commit comments

Comments
 (0)