mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 14:50:15 +04:00
7c201ca77b
Replace patches with version accepted upstream.
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
Link: https://github.com/openwrt/openwrt/pull/21333
(cherry picked from commit f49b452cc0)
Link: https://github.com/openwrt/openwrt/pull/21838
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From 8640689f17fd550c3e89d2b47ecb02536c58baf3 Mon Sep 17 00:00:00 2001
|
|
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
Date: Sat, 9 Aug 2025 13:28:30 +0200
|
|
Subject: [PATCH] cpufreq: airoha: Add support for AN7583 SoC
|
|
|
|
New Airoha AN7583 SoC use the same exact logic to control the CPU
|
|
frequency. Add the Device compatible to the block list for
|
|
cpufreq-dt-plat and to the Airoha CPUFreq driver compatible list.
|
|
|
|
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
|
|
---
|
|
drivers/cpufreq/airoha-cpufreq.c | 1 +
|
|
drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
--- a/drivers/cpufreq/airoha-cpufreq.c
|
|
+++ b/drivers/cpufreq/airoha-cpufreq.c
|
|
@@ -121,6 +121,7 @@ static struct platform_driver airoha_cpu
|
|
};
|
|
|
|
static const struct of_device_id airoha_cpufreq_match_list[] __initconst = {
|
|
+ { .compatible = "airoha,an7583" },
|
|
{ .compatible = "airoha,en7581" },
|
|
{},
|
|
};
|
|
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
|
|
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
|
|
@@ -104,6 +104,7 @@ static const struct of_device_id allowli
|
|
* platforms using "operating-points-v2" property.
|
|
*/
|
|
static const struct of_device_id blocklist[] __initconst = {
|
|
+ { .compatible = "airoha,an7583", },
|
|
{ .compatible = "airoha,en7581", },
|
|
|
|
{ .compatible = "allwinner,sun50i-h6", },
|