This source file includes following definitions.
- llcc_slice_getd
- llcc_slice_putd
- llcc_get_slice_id
- llcc_get_slice_size
- llcc_slice_activate
- llcc_slice_deactivate
- qcom_llcc_probe
- qcom_llcc_remove
1
2
3
4
5
6
7 #include <linux/platform_device.h>
8 #ifndef __LLCC_QCOM__
9 #define __LLCC_QCOM__
10
11 #define LLCC_CPUSS 1
12 #define LLCC_VIDSC0 2
13 #define LLCC_VIDSC1 3
14 #define LLCC_ROTATOR 4
15 #define LLCC_VOICE 5
16 #define LLCC_AUDIO 6
17 #define LLCC_MDMHPGRW 7
18 #define LLCC_MDM 8
19 #define LLCC_CMPT 10
20 #define LLCC_GPUHTW 11
21 #define LLCC_GPU 12
22 #define LLCC_MMUHWT 13
23 #define LLCC_CMPTDMA 15
24 #define LLCC_DISP 16
25 #define LLCC_VIDFW 17
26 #define LLCC_MDMHPFX 20
27 #define LLCC_MDMPNG 21
28 #define LLCC_AUDHW 22
29
30
31
32
33
34
35 struct llcc_slice_desc {
36 u32 slice_id;
37 size_t slice_size;
38 };
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55 struct llcc_slice_config {
56 u32 usecase_id;
57 u32 slice_id;
58 u32 max_cap;
59 u32 priority;
60 bool fixed_size;
61 u32 bonus_ways;
62 u32 res_ways;
63 u32 cache_mode;
64 u32 probe_target_ways;
65 bool dis_cap_alloc;
66 bool retain_on_pc;
67 bool activate_on_init;
68 };
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83 struct llcc_drv_data {
84 struct regmap *regmap;
85 struct regmap *bcast_regmap;
86 const struct llcc_slice_config *cfg;
87 struct mutex lock;
88 u32 cfg_size;
89 u32 max_slices;
90 u32 num_banks;
91 unsigned long *bitmap;
92 u32 *offsets;
93 int ecc_irq;
94 };
95
96
97
98
99
100
101
102
103
104
105
106
107
108 struct llcc_edac_reg_data {
109 char *name;
110 u64 synd_reg;
111 u64 count_status_reg;
112 u64 ways_status_reg;
113 u32 reg_cnt;
114 u32 count_mask;
115 u32 ways_mask;
116 u8 count_shift;
117 u8 ways_shift;
118 };
119
120 #if IS_ENABLED(CONFIG_QCOM_LLCC)
121
122
123
124
125 struct llcc_slice_desc *llcc_slice_getd(u32 uid);
126
127
128
129
130
131 void llcc_slice_putd(struct llcc_slice_desc *desc);
132
133
134
135
136
137 int llcc_get_slice_id(struct llcc_slice_desc *desc);
138
139
140
141
142
143 size_t llcc_get_slice_size(struct llcc_slice_desc *desc);
144
145
146
147
148
149 int llcc_slice_activate(struct llcc_slice_desc *desc);
150
151
152
153
154
155 int llcc_slice_deactivate(struct llcc_slice_desc *desc);
156
157
158
159
160
161
162
163 int qcom_llcc_probe(struct platform_device *pdev,
164 const struct llcc_slice_config *table, u32 sz);
165
166
167
168
169
170 int qcom_llcc_remove(struct platform_device *pdev);
171 #else
172 static inline struct llcc_slice_desc *llcc_slice_getd(u32 uid)
173 {
174 return NULL;
175 }
176
177 static inline void llcc_slice_putd(struct llcc_slice_desc *desc)
178 {
179
180 };
181
182 static inline int llcc_get_slice_id(struct llcc_slice_desc *desc)
183 {
184 return -EINVAL;
185 }
186
187 static inline size_t llcc_get_slice_size(struct llcc_slice_desc *desc)
188 {
189 return 0;
190 }
191 static inline int llcc_slice_activate(struct llcc_slice_desc *desc)
192 {
193 return -EINVAL;
194 }
195
196 static inline int llcc_slice_deactivate(struct llcc_slice_desc *desc)
197 {
198 return -EINVAL;
199 }
200 static inline int qcom_llcc_probe(struct platform_device *pdev,
201 const struct llcc_slice_config *table, u32 sz)
202 {
203 return -ENODEV;
204 }
205
206 static inline int qcom_llcc_remove(struct platform_device *pdev)
207 {
208 return -ENODEV;
209 }
210 #endif
211
212 #endif