mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
8e2c0ee3ba
Sync the devicetree files from the Linux kernel repo, v6.2-rc2. This is covering the 64-bit SoCs, from arch/arm64/boot/dts/allwinner. This enables GPU power management in the kernel for the H6, enables Bluetooth on the Pinebook, and adds USB to the H616 devices (just for newer Linux kernels at the moment, U-Boot support is pending). As before, this omits the non-backwards compatible changes to the R_INTC controller, to remain compatible with older kernels. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
87 lines
1.7 KiB
Text
87 lines
1.7 KiB
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
// Copyright (C) 2022 Clément Péron <peron.clem@gmail.com>
|
|
|
|
/ {
|
|
gpu_opp_table: opp-table-gpu {
|
|
compatible = "operating-points-v2";
|
|
|
|
opp-216000000 {
|
|
opp-hz = /bits/ 64 <216000000>;
|
|
opp-microvolt = <810000 810000 1200000>;
|
|
};
|
|
|
|
opp-264000000 {
|
|
opp-hz = /bits/ 64 <264000000>;
|
|
opp-microvolt = <810000 810000 1200000>;
|
|
};
|
|
|
|
opp-312000000 {
|
|
opp-hz = /bits/ 64 <312000000>;
|
|
opp-microvolt = <810000 810000 1200000>;
|
|
};
|
|
|
|
opp-336000000 {
|
|
opp-hz = /bits/ 64 <336000000>;
|
|
opp-microvolt = <810000 810000 1200000>;
|
|
};
|
|
|
|
opp-360000000 {
|
|
opp-hz = /bits/ 64 <360000000>;
|
|
opp-microvolt = <820000 820000 1200000>;
|
|
};
|
|
|
|
opp-384000000 {
|
|
opp-hz = /bits/ 64 <384000000>;
|
|
opp-microvolt = <830000 830000 1200000>;
|
|
};
|
|
|
|
opp-408000000 {
|
|
opp-hz = /bits/ 64 <408000000>;
|
|
opp-microvolt = <840000 840000 1200000>;
|
|
};
|
|
|
|
opp-420000000 {
|
|
opp-hz = /bits/ 64 <420000000>;
|
|
opp-microvolt = <850000 850000 1200000>;
|
|
};
|
|
|
|
opp-432000000 {
|
|
opp-hz = /bits/ 64 <432000000>;
|
|
opp-microvolt = <860000 860000 1200000>;
|
|
};
|
|
|
|
opp-456000000 {
|
|
opp-hz = /bits/ 64 <456000000>;
|
|
opp-microvolt = <870000 870000 1200000>;
|
|
};
|
|
|
|
opp-504000000 {
|
|
opp-hz = /bits/ 64 <504000000>;
|
|
opp-microvolt = <890000 890000 1200000>;
|
|
};
|
|
|
|
opp-540000000 {
|
|
opp-hz = /bits/ 64 <540000000>;
|
|
opp-microvolt = <910000 910000 1200000>;
|
|
};
|
|
|
|
opp-576000000 {
|
|
opp-hz = /bits/ 64 <576000000>;
|
|
opp-microvolt = <930000 930000 1200000>;
|
|
};
|
|
|
|
opp-624000000 {
|
|
opp-hz = /bits/ 64 <624000000>;
|
|
opp-microvolt = <950000 950000 1200000>;
|
|
};
|
|
|
|
opp-756000000 {
|
|
opp-hz = /bits/ 64 <756000000>;
|
|
opp-microvolt = <1040000 1040000 1200000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&gpu {
|
|
operating-points-v2 = <&gpu_opp_table>;
|
|
};
|