mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 10:36:48 +07:00
6a611d149a
Compiling the DT file with W=1, DTC warns like follows: Warning (unit_address_vs_reg): Node /opp_table0/opp@1000000000 has a unit name, but no reg property Fix this by replacing '@' with '-' as the OPP nodes will never have a "reg" property. Reported-by: Krzysztof Kozlowski <krzk@kernel.org> Reported-by: Masahiro Yamada <yamada.masahiro@socionext.com> Suggested-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com> Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org> Acked-by: Rob Herring <robh@kernel.org> [k.kozlowski: Split patch per ARM and ARM64] Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
42 lines
916 B
Plaintext
42 lines
916 B
Plaintext
/*
|
|
* Samsung's Exynos4412 Prime SoC device tree source
|
|
*
|
|
* Copyright (c) 2016 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
/*
|
|
* Exynos4412 Prime SoC revision supports higher CPU frequencies than
|
|
* non-Prime version. Therefore we need to update OPPs table and
|
|
* thermal maps accordingly.
|
|
*/
|
|
|
|
&cpu0_opp_1500 {
|
|
/delete-property/turbo-mode;
|
|
};
|
|
|
|
&cpu0_opp_table {
|
|
opp-1600000000 {
|
|
opp-hz = /bits/ 64 <1600000000>;
|
|
opp-microvolt = <1350000>;
|
|
clock-latency-ns = <200000>;
|
|
};
|
|
opp-1704000000 {
|
|
opp-hz = /bits/ 64 <1704000000>;
|
|
opp-microvolt = <1350000>;
|
|
clock-latency-ns = <200000>;
|
|
};
|
|
};
|
|
|
|
&cooling_map0 {
|
|
cooling-device = <&cpu0 9 9>;
|
|
};
|
|
|
|
&cooling_map1 {
|
|
cooling-device = <&cpu0 15 15>;
|
|
};
|