cpufreq: Add T6021 clusters

Signed-off-by: Mario Hros <git@reversity.org>
This commit is contained in:
Mario Hros 2023-02-06 23:19:07 +01:00 committed by Hector Martin
parent 69012c0702
commit da03138eec

View file

@ -70,6 +70,13 @@ static const struct cluster_t t6000_clusters[] = {
{},
};
static const struct cluster_t t6021_clusters[] = {
{"ECPU0", 0x210e20000, false, 5},
{"PCPU0", 0x211e20000, false, 6},
{"PCPU1", 0x212e20000, false, 6},
{},
};
static const struct cluster_t t6002_clusters[] = {
{"ECPU0", 0x0210e20000, false, 5},
{"PCPU0", 0x0211e20000, false, 7},
@ -103,6 +110,9 @@ int cpufreq_init(void)
case T6002:
cluster = t6002_clusters;
break;
case T6021:
cluster = t6021_clusters;
break;
case T8112:
cluster = t8112_clusters;
break;