1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*
* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <asm/cputype.h>
#include <soc/qcom/avs.h>
#include <soc/qcom/spm.h>
u32 avs_get_avscsr(void)
{
u32 val = 0;
asm volatile ("mrc p15, 7, %[avscsr], c15, c1, 7\n\t"
: [avscsr]"=r" (val)
);
return val;
}
EXPORT_SYMBOL(avs_get_avscsr);
void avs_set_avscsr(u32 avscsr)
{
asm volatile ("mcr p15, 7, %[avscsr], c15, c1, 7\n\t"
"isb\n\t"
:
: [avscsr]"r" (avscsr)
);
}
EXPORT_SYMBOL(avs_set_avscsr);
u32 avs_get_avsdscr(void)
{
u32 val = 0;
asm volatile ("mrc p15, 7, %[avsdscr], c15, c0, 6\n\t"
: [avsdscr]"=r" (val)
);
return val;
}
EXPORT_SYMBOL(avs_get_avsdscr);
void avs_set_avsdscr(u32 avsdscr)
{
asm volatile("mcr p15, 7, %[avsdscr], c15, c0, 6\n\t"
"isb\n\t"
:
: [avsdscr]"r" (avsdscr)
);
}
EXPORT_SYMBOL(avs_set_avsdscr);
static void avs_enable_local(void *data)
{
u32 avsdscr = (u32) data;
u32 avscsr_enable = 0x61;
avs_set_avsdscr(avsdscr);
avs_set_avscsr(avscsr_enable);
}
static void avs_disable_local(void *data)
{
int cpu = smp_processor_id();
avs_set_avscsr(0);
msm_spm_set_vdd(cpu, msm_spm_get_vdd(cpu));
}
void avs_enable(int cpu, u32 avsdscr)
{
int ret;
ret = smp_call_function_single(cpu, avs_enable_local,
(void *)avsdscr, true);
WARN_ON(ret);
}
EXPORT_SYMBOL(avs_enable);
void avs_disable(int cpu)
{
int ret;
ret = smp_call_function_single(cpu, avs_disable_local,
(void *) 0, true);
WARN_ON(ret);
}
EXPORT_SYMBOL(avs_disable);
|