summaryrefslogtreecommitdiff
path: root/big-little/virtualisor/cache_geom.c
blob: 1f248827c0f2a99ea927eb368e56dc4d1118b763 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*
 * Copyright (c) 2012, ARM Limited. All rights reserved.
 *       
 * Redistribution and use in source and binary forms, with
 * or without modification, are permitted provided that the
 * following conditions are met:
 *     
 * Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the 
 * following disclaimer.
 *
 * Redistributions in binary form must reproduce the
 * above copyright notice, this list of conditions and 
 * the following disclaimer in the documentation 
 * and/or other materials provided with the distribution.
 *      
 * Neither the name of ARM nor the names of its
 * contributors may be used to endorse or promote products
 * derived from this software without specific prior written
 * permission.                        
 */

#include "virtualisor.h"
#include "virt_helpers.h"
#include "misc.h"
#include "context.h"
#include "cache_geom.h"
#include "events.h"

unsigned cmop_debug = CMOP_DEBUG;
cache_stats cm_op_stats[NUM_CPUS][MAX_CACHE_LEVELS];
static unsigned tc_prev_line[NUM_CPUS][MAX_CACHE_LEVELS] = { 0 };
static unsigned cm_line_cnt[NUM_CPUS][MAX_CACHE_LEVELS] = { 0xffffffff };
static unsigned hc_line_cnt[NUM_CPUS][MAX_CACHE_LEVELS] = { 0 };
static unsigned cm_ignline_cnt[NUM_CPUS][MAX_CACHE_LEVELS] = { 0 };
static unsigned cm_extline_cnt[NUM_CPUS][MAX_CACHE_LEVELS] = { 0 };

/*
 * Iterate through all the implemented cache levels and save the geometry at
 * each level.
 *
 */
void find_cache_geometry(cache_geometry * cg_ptr)
{
	unsigned ctr, csselr;

	/* Save cache size selection register */
	csselr = read_csselr();

	cg_ptr->clidr = read_clidr();

	for (ctr = 0; ctr < MAX_CACHE_LEVELS; ctr++) {
		unsigned cache_type = get_cache_type(cg_ptr->clidr, ctr);

		if (cache_type == 0x03) {
			/* instruction cache */
			write_csselr((ctr << 1) | CIND_INST);
			isb();
			cg_ptr->ccsidr[ctr][CIND_INST] = read_ccsidr();
			/* data cache */
			write_csselr(ctr << 1);
			isb();
			cg_ptr->ccsidr[ctr][CIND_DATA] = read_ccsidr();
		} else if (cache_type == 0x04) {
			/* unified cache */
			write_csselr(ctr << 1);
			isb();
			cg_ptr->ccsidr[ctr][CIND_UNIF] = read_ccsidr();
		} else {
			/*
			 * Stop scanning at the first invalid/unsupported cache
			 * level
			 */
			break;
		}

	}

	/* Restore cache size selection register */
	write_csselr(csselr);
	return;
}

/*
 * Given two cache geometries, find out how they differ 
 */
void find_cache_diff(cache_geometry * hcg_ptr, cache_geometry * tcg_ptr,
		     cache_diff * cd_ptr)
{
	unsigned tc_size = 0, hc_size = 0, tc_linelen = 0, hc_linelen = 0;
	unsigned tc_assoc = 0, hc_assoc = 0, tc_numsets = 0, hc_numsets = 0;
	unsigned ctr;

	for (ctr = 0; ctr < MAX_CACHE_LEVELS; ctr++) {

		/* Break at the first unimplemented cache level */
		if (get_cache_type(hcg_ptr->clidr, ctr) == 0)
			break;

		/* Cache associativity */
		tc_assoc = get_cache_assoc(tcg_ptr, ctr) + 1;
		hc_assoc = get_cache_assoc(hcg_ptr, ctr) + 1;

		/* Number of the sets in the cache */
		tc_numsets = get_cache_numsets(tcg_ptr, ctr) + 1;
		hc_numsets = get_cache_numsets(hcg_ptr, ctr) + 1;

		/* Cache line length in words */
		tc_linelen = 1 << (get_cache_linesz(tcg_ptr, ctr) + 2);
		hc_linelen = 1 << (get_cache_linesz(hcg_ptr, ctr) + 2);

		/* Cache size in words */
		tc_size = tc_assoc * tc_numsets * tc_linelen;
		hc_size = hc_assoc * hc_numsets * hc_linelen;

		/* 
		 * Find the factor by which the cache line sizes differ. 
		 * If so, then the target cacheline will have to be
		 * multiplied or divided by the factor to get the absolute
		 * cache line number. Then, find the number of absolute 
		 * cache lines in each cache
		 */
		if (tc_linelen >= hc_linelen) {
			cd_ptr[ctr].tcline_factor = tc_linelen / hc_linelen;
			cd_ptr[ctr].tnumabs_clines =
			    tc_assoc * tc_numsets * cd_ptr[ctr].tcline_factor;
			cd_ptr[ctr].hnumabs_clines = hc_assoc * hc_numsets;
		} else {
			cd_ptr[ctr].hcline_factor = hc_linelen / tc_linelen;
			cd_ptr[ctr].hnumabs_clines =
			    hc_assoc * hc_numsets * cd_ptr[ctr].hcline_factor;
			cd_ptr[ctr].tnumabs_clines = tc_assoc * tc_numsets;
		}

		/*
		 * Find if the cache sizes differ. If so, then set a flag 
		 * to indicate whether some set/way operations need to be
		 * extended on the host cpu or ignored on the target cpu
		 */
		if (tc_size > hc_size) {
			cd_ptr[ctr].csize_diff = TCSZ_BIG;
		}

		if (tc_size == hc_size) {
			cd_ptr[ctr].csize_diff = TCSZ_EQUAL;
		}

		if (tc_size < hc_size) {
			cd_ptr[ctr].csize_diff = TCSZ_SMALL;
		}
	}

	return;
}

unsigned map_cache_geometries(cache_geometry * hcg_ptr,
			      cache_geometry * tcg_ptr, cache_diff * cd_ptr)
{
	unsigned rc = 0, cpu_id = read_cpuid();
	unsigned hcr = 0, cluster_id = read_clusterid(), sibling_cpuid = 0;
	unsigned abs_cpuid = 0;

	if (!switcher) {
		sibling_cpuid = abs_cpuid(cpu_id, !cluster_id);
		abs_cpuid = abs_cpuid(cpu_id, cluster_id);
	}

	if (cluster_id == host_cluster) {

		/* Find host cache topology */
		find_cache_geometry(hcg_ptr);

		/*
		 * Wait for the target cpu to send an event indicating that
		 * its discovered its cache topology.
		 */
		if (!switcher) {
			wait_for_event(CACHE_GEOM_DONE, abs_cpuid);
			reset_event(CACHE_GEOM_DONE, abs_cpuid);
		}

		/*
		 * Assuming that only no. of sets, ways and cache line
		 * size will be different across the target and host
		 * cpu caches. Hence the CLIDRs should look the same
		 * Support for absence of cache levels and memory 
		 * Also this check ensures that the target cpu is 
		 * always run before the host else the cache geometry
		 * will have to be hardcoded.
		 * mapped caches will be added later.
		 */
		if (hcg_ptr->clidr != tcg_ptr->clidr) {
			printf("%s: Host CLIDR=0x%x : Target CLIDR=0x%x \n",
			       __FUNCTION__, hcg_ptr->clidr, tcg_ptr->clidr);
			rc = 1;
			goto out;
		}

		find_cache_diff(hcg_ptr, tcg_ptr, cd_ptr);

		/* 
		 * Enable bit for trapping set/way operations & 
		 * cache identification registers
		 */
		hcr = read_hcr();
		hcr |= HCR_TSW | HCR_TID2;
		write_hcr(hcr);
		dsb();
		isb();

	} else {
		/* Find the cache geometry on the target cpu */
		find_cache_geometry(tcg_ptr);

		/*
		 * Send an event to the host cpu indicating that we have
		 * discovered our cache topology
		 */
		if (!switcher) {
			set_event(CACHE_GEOM_DONE, sibling_cpuid);
		}
	}
 out:
	return rc;
}

/* 
 * Given two cache geometries and the difference between them
 * handle a cache maintenance operation by set/way
 */
void handle_cm_op(unsigned reg,
		  void (*op_handler) (unsigned),
		  cache_geometry * hcg_ptr,
		  cache_geometry * tcg_ptr, cache_diff * cd_ptr)
{
	unsigned clvl = 0, cpu_id = read_cpuid();
	unsigned tc_assoc = 0, tc_numsets = 0, tc_linesz = 0;
	unsigned hc_assoc = 0, hc_numsets = 0, hc_linesz = 0;
	unsigned lineno = 0, setno = 0, wayno = 0, abs_lineno = 0;

	/*
	 * If target cache line size is greater than the host then
	 * each maintenance op has to be performed on two lines on
	 * host. Does not matter is the line size if equal
	 */
	unsigned ctr = cd_ptr[clvl].tcline_factor;

	/* 
	 * Find out the cache level for which the set/way operation has invoked.
	 * Use this to find the cache geometry in target cache to ascertain the 
	 * set & way number from the argument. Use this info to calculate the 
	 * target cache line number.
	 */
	clvl = get_cache_level(reg);
	tc_linesz = get_cache_linesz(tcg_ptr, clvl);
	tc_assoc = get_cache_assoc(tcg_ptr, clvl);
	tc_numsets = get_cache_numsets(tcg_ptr, clvl);

	wayno = (reg >> __clz(tc_assoc)) & tc_assoc;
	setno = (reg >> (tc_linesz + 4)) & tc_numsets;
	lineno = (setno * (tc_assoc + 1)) + wayno;

	if (cmop_debug) {
		/*
		 * tc_prev_line is initialised to -1 (unsigned). We can never have so many 
		 * cache lines. Helps determining when to record the start of a cm op.
		 * If count != lineno then either we are not counting or have been counting
		 * and now are out of sync. In either case, a new cm op is started
		 */
		if (tc_prev_line[cpu_id][clvl] != lineno) {
			tc_prev_line[cpu_id][clvl] = lineno;
			/* All ops start out as partial ops */
			cm_op_stats[cpu_id][clvl].part_cmop_cnt++;

			/* Reset all our counters */
			cm_ignline_cnt[cpu_id][clvl] = 0;
			cm_extline_cnt[cpu_id][clvl] = 0;
			hc_line_cnt[cpu_id][clvl] = 0;
			cm_line_cnt[cpu_id][clvl] = 0;
		}

		tc_prev_line[cpu_id][clvl]--;
		cm_line_cnt[cpu_id][clvl]++;
	}

	/* Convert target cache line no. to absolute cache line no. */
	if (cd_ptr[clvl].tcline_factor)
		abs_lineno = lineno * cd_ptr[clvl].tcline_factor;

	/* Convert absolute cache line no. to host cache line no. */
	if (cd_ptr[clvl].hcline_factor)
		lineno = abs_lineno / cd_ptr[clvl].hcline_factor;

	/*
	 * Find out the set & way no. on the host cache corresponding to the 
	 * cache line no. calculated on the target cache.
	 */
	hc_linesz = get_cache_linesz(hcg_ptr, clvl);
	hc_assoc = get_cache_assoc(hcg_ptr, clvl);
	hc_numsets = get_cache_numsets(hcg_ptr, clvl);

	switch (cd_ptr[clvl].csize_diff) {
	case TCSZ_BIG:
		{
			if (abs_lineno < cd_ptr[clvl].hnumabs_clines) {
				while (ctr) {
					setno = lineno / (hc_assoc + 1);
					wayno = lineno % (hc_assoc + 1);
					reg =
					    get_setway_reg(wayno, hc_assoc,
							   setno, hc_linesz,
							   clvl);;
					op_handler(reg);
					lineno++;
					ctr--;

					if (cmop_debug)
						hc_line_cnt[cpu_id][clvl]++;

				}
			} else {
				/* Ignore */
				if (cmop_debug)
					cm_ignline_cnt[cpu_id][clvl]++;

			}
		}
		break;
	case TCSZ_EQUAL:
		{
			while (ctr) {
				setno = lineno / (hc_assoc + 1);
				wayno = lineno % (hc_assoc + 1);
				reg =
				    get_setway_reg(wayno, hc_assoc, setno,
						   hc_linesz, clvl);;
				op_handler(reg);
				lineno++;
				ctr--;

				if (cmop_debug)
					hc_line_cnt[cpu_id][clvl]++;

			}
		}
		break;

	case TCSZ_SMALL:
		{
			while (ctr) {
				setno = lineno / (hc_assoc + 1);
				wayno = lineno % (hc_assoc + 1);
				reg =
				    get_setway_reg(wayno, hc_assoc, setno,
						   hc_linesz, clvl);;
				op_handler(reg);
				lineno++;
				ctr--;

				if (cmop_debug)
					hc_line_cnt[cpu_id][clvl]++;

			}

			/*
			 * If the target cache is smaller than the host cache then we
			 * need to extend the maintenance operation to rest of the host
			 * cache. 
			 */
			if ((abs_lineno +
			     (1 * cd_ptr[clvl].tcline_factor)) ==
			    cd_ptr[clvl].tnumabs_clines) {

				/*
				 * TODO: Temp hack. Due to the cache line factor we end up incrementing
				 * the lineno and miss one line.
				 */
				lineno--;
				for (lineno++;
				     lineno < (hc_numsets + 1) * (hc_assoc + 1);
				     lineno++) {
					setno = lineno / (hc_assoc + 1);
					wayno = lineno % (hc_assoc + 1);

					/* Create new register value for operation on host cache */
					reg =
					    get_setway_reg(wayno, hc_assoc,
							   setno, hc_linesz,
							   clvl);;
					/* Perform the operation */
					op_handler(reg);

					if (cmop_debug)
						cm_extline_cnt[cpu_id][clvl]++;

				}
			} else {
				/* Ignore */
			}
			break;
		}
	}

	if (cmop_debug) {
		/*
		 * If the op cnt has reached the maximum cache line number then
		 * print the statistics collected so far
		 *
		 * NOTE: We don't reset the counter. It will done at the start
		 * of the next cm op automatically. Its value now is one more
		 * than the maximum valid target cache line number.
		 */
		if (cm_line_cnt[cpu_id][clvl] ==
		    (tc_assoc + 1) * (tc_numsets + 1)) {

			printf("%s", __FUNCTION__);
			printf(" : TC Lines=0x%x ", cm_line_cnt[cpu_id][clvl]);
			printf(" : HC Lines=0x%x ", hc_line_cnt[cpu_id][clvl]);
			printf(" : Ign Lines=0x%x ",
			       cm_ignline_cnt[cpu_id][clvl]);
			printf(" : Extra Lines=0x%x ",
			       cm_extline_cnt[cpu_id][clvl]);
			printf("\n");

			/* Register this as a complete set/way operation */
			cm_op_stats[cpu_id][clvl].part_cmop_cnt--;
			cm_op_stats[cpu_id][clvl].cmpl_cmop_cnt++;
		}
	}

	return;
}