mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
cpufreq: Add T6021 clusters
Signed-off-by: Mario Hros <git@reversity.org>
This commit is contained in:
parent
69012c0702
commit
da03138eec
1 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue