c-r4k.c 52.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
6
 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
L
Linus Torvalds 已提交
7 8 9
 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Ralf Baechle (ralf@gnu.org)
 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
 */
10
#include <linux/cpu_pm.h>
11
#include <linux/hardirq.h>
L
Linus Torvalds 已提交
12
#include <linux/init.h>
R
Ralf Baechle 已提交
13
#include <linux/highmem.h>
L
Linus Torvalds 已提交
14
#include <linux/kernel.h>
15
#include <linux/linkage.h>
16
#include <linux/preempt.h>
L
Linus Torvalds 已提交
17
#include <linux/sched.h>
18
#include <linux/smp.h>
L
Linus Torvalds 已提交
19
#include <linux/mm.h>
20
#include <linux/module.h>
L
Linus Torvalds 已提交
21 22 23 24
#include <linux/bitops.h>

#include <asm/bcache.h>
#include <asm/bootinfo.h>
R
Ralf Baechle 已提交
25
#include <asm/cache.h>
L
Linus Torvalds 已提交
26 27 28
#include <asm/cacheops.h>
#include <asm/cpu.h>
#include <asm/cpu-features.h>
29
#include <asm/cpu-type.h>
L
Linus Torvalds 已提交
30 31 32 33
#include <asm/io.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/r4kcache.h>
34
#include <asm/sections.h>
L
Linus Torvalds 已提交
35 36
#include <asm/mmu_context.h>
#include <asm/war.h>
37
#include <asm/cacheflush.h> /* for run_uncached() */
38
#include <asm/traps.h>
39
#include <asm/dma-coherence.h>
40
#include <asm/mips-cm.h>
41

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/*
 * Bits describing what cache ops an SMP callback function may perform.
 *
 * R4K_HIT   -	Virtual user or kernel address based cache operations. The
 *		active_mm must be checked before using user addresses, falling
 *		back to kmap.
 * R4K_INDEX -	Index based cache operations.
 */

#define R4K_HIT		BIT(0)
#define R4K_INDEX	BIT(1)

/**
 * r4k_op_needs_ipi() - Decide if a cache op needs to be done on every core.
 * @type:	Type of cache operations (R4K_HIT or R4K_INDEX).
 *
 * Decides whether a cache op needs to be performed on every core in the system.
59 60 61
 * This may change depending on the @type of cache operation, as well as the set
 * of online CPUs, so preemption should be disabled by the caller to prevent CPU
 * hotplug from changing the result.
62 63 64 65 66 67 68 69 70
 *
 * Returns:	1 if the cache operation @type should be done on every core in
 *		the system.
 *		0 if the cache operation @type is globalized and only needs to
 *		be performed on a simple CPU.
 */
static inline bool r4k_op_needs_ipi(unsigned int type)
{
	/* The MIPS Coherence Manager (CM) globalizes address-based cache ops */
71
	if (type == R4K_HIT && mips_cm_present())
72 73 74 75
		return false;

	/*
	 * Hardware doesn't globalize the required cache ops, so SMP calls may
76 77
	 * be needed, but only if there are foreign CPUs (non-siblings with
	 * separate caches).
78
	 */
79 80 81 82 83 84
	/* cpu_foreign_map[] undeclared when !CONFIG_SMP */
#ifdef CONFIG_SMP
	return !cpumask_empty(&cpu_foreign_map[0]);
#else
	return false;
#endif
85 86
}

87 88 89 90 91 92 93
/*
 * Special Variant of smp_call_function for use by cache functions:
 *
 *  o No return value
 *  o collapses to normal function call on UP kernels
 *  o collapses to normal function call on systems with a single shared
 *    primary cache.
94
 *  o doesn't disable interrupts on the local CPU
95
 */
96 97
static inline void r4k_on_each_cpu(unsigned int type,
				   void (*func)(void *info), void *info)
98 99
{
	preempt_disable();
100
	if (r4k_op_needs_ipi(type))
101 102
		smp_call_function_many(&cpu_foreign_map[smp_processor_id()],
				       func, info, 1);
103 104 105 106
	func(info);
	preempt_enable();
}

R
Ralf Baechle 已提交
107 108 109 110 111
/*
 * Must die.
 */
static unsigned long icache_size __read_mostly;
static unsigned long dcache_size __read_mostly;
112
static unsigned long vcache_size __read_mostly;
R
Ralf Baechle 已提交
113
static unsigned long scache_size __read_mostly;
L
Linus Torvalds 已提交
114 115 116 117

/*
 * Dummy cache handling routines for machines without boardcaches
 */
118
static void cache_noop(void) {}
L
Linus Torvalds 已提交
119 120

static struct bcache_ops no_sc_ops = {
121 122 123 124
	.bc_enable = (void *)cache_noop,
	.bc_disable = (void *)cache_noop,
	.bc_wback_inv = (void *)cache_noop,
	.bc_inv = (void *)cache_noop
L
Linus Torvalds 已提交
125 126 127 128
};

struct bcache_ops *bcops = &no_sc_ops;

129 130
#define cpu_is_r4600_v1_x()	((read_c0_prid() & 0xfffffff0) == 0x00002010)
#define cpu_is_r4600_v2_x()	((read_c0_prid() & 0xfffffff0) == 0x00002020)
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

#define R4600_HIT_CACHEOP_WAR_IMPL					\
do {									\
	if (R4600_V2_HIT_CACHEOP_WAR && cpu_is_r4600_v2_x())		\
		*(volatile unsigned long *)CKSEG1;			\
	if (R4600_V1_HIT_CACHEOP_WAR)					\
		__asm__ __volatile__("nop;nop;nop;nop");		\
} while (0)

static void (*r4k_blast_dcache_page)(unsigned long addr);

static inline void r4k_blast_dcache_page_dc32(unsigned long addr)
{
	R4600_HIT_CACHEOP_WAR_IMPL;
	blast_dcache32_page(addr);
}

148 149 150 151 152
static inline void r4k_blast_dcache_page_dc64(unsigned long addr)
{
	blast_dcache64_page(addr);
}

153 154 155 156 157
static inline void r4k_blast_dcache_page_dc128(unsigned long addr)
{
	blast_dcache128_page(addr);
}

158
static void r4k_blast_dcache_page_setup(void)
L
Linus Torvalds 已提交
159 160 161
{
	unsigned long  dc_lsize = cpu_dcache_line_size();

162 163
	switch (dc_lsize) {
	case 0:
164
		r4k_blast_dcache_page = (void *)cache_noop;
165 166
		break;
	case 16:
L
Linus Torvalds 已提交
167
		r4k_blast_dcache_page = blast_dcache16_page;
168 169
		break;
	case 32:
L
Linus Torvalds 已提交
170
		r4k_blast_dcache_page = r4k_blast_dcache_page_dc32;
171 172
		break;
	case 64:
173
		r4k_blast_dcache_page = r4k_blast_dcache_page_dc64;
174 175 176 177 178 179 180
		break;
	case 128:
		r4k_blast_dcache_page = r4k_blast_dcache_page_dc128;
		break;
	default:
		break;
	}
L
Linus Torvalds 已提交
181 182
}

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
#ifndef CONFIG_EVA
#define r4k_blast_dcache_user_page  r4k_blast_dcache_page
#else

static void (*r4k_blast_dcache_user_page)(unsigned long addr);

static void r4k_blast_dcache_user_page_setup(void)
{
	unsigned long  dc_lsize = cpu_dcache_line_size();

	if (dc_lsize == 0)
		r4k_blast_dcache_user_page = (void *)cache_noop;
	else if (dc_lsize == 16)
		r4k_blast_dcache_user_page = blast_dcache16_user_page;
	else if (dc_lsize == 32)
		r4k_blast_dcache_user_page = blast_dcache32_user_page;
	else if (dc_lsize == 64)
		r4k_blast_dcache_user_page = blast_dcache64_user_page;
}

#endif

L
Linus Torvalds 已提交
205 206
static void (* r4k_blast_dcache_page_indexed)(unsigned long addr);

207
static void r4k_blast_dcache_page_indexed_setup(void)
L
Linus Torvalds 已提交
208 209 210
{
	unsigned long dc_lsize = cpu_dcache_line_size();

211 212 213
	if (dc_lsize == 0)
		r4k_blast_dcache_page_indexed = (void *)cache_noop;
	else if (dc_lsize == 16)
L
Linus Torvalds 已提交
214 215 216
		r4k_blast_dcache_page_indexed = blast_dcache16_page_indexed;
	else if (dc_lsize == 32)
		r4k_blast_dcache_page_indexed = blast_dcache32_page_indexed;
217 218
	else if (dc_lsize == 64)
		r4k_blast_dcache_page_indexed = blast_dcache64_page_indexed;
219 220
	else if (dc_lsize == 128)
		r4k_blast_dcache_page_indexed = blast_dcache128_page_indexed;
L
Linus Torvalds 已提交
221 222
}

223 224
void (* r4k_blast_dcache)(void);
EXPORT_SYMBOL(r4k_blast_dcache);
L
Linus Torvalds 已提交
225

226
static void r4k_blast_dcache_setup(void)
L
Linus Torvalds 已提交
227 228 229
{
	unsigned long dc_lsize = cpu_dcache_line_size();

230 231 232
	if (dc_lsize == 0)
		r4k_blast_dcache = (void *)cache_noop;
	else if (dc_lsize == 16)
L
Linus Torvalds 已提交
233 234 235
		r4k_blast_dcache = blast_dcache16;
	else if (dc_lsize == 32)
		r4k_blast_dcache = blast_dcache32;
236 237
	else if (dc_lsize == 64)
		r4k_blast_dcache = blast_dcache64;
238 239
	else if (dc_lsize == 128)
		r4k_blast_dcache = blast_dcache128;
L
Linus Torvalds 已提交
240 241 242 243 244 245 246 247 248 249
}

/* force code alignment (used for TX49XX_ICACHE_INDEX_INV_WAR) */
#define JUMP_TO_ALIGN(order) \
	__asm__ __volatile__( \
		"b\t1f\n\t" \
		".align\t" #order "\n\t" \
		"1:\n\t" \
		)
#define CACHE32_UNROLL32_ALIGN	JUMP_TO_ALIGN(10) /* 32 * 32 = 1024 */
R
Ralf Baechle 已提交
250
#define CACHE32_UNROLL32_ALIGN2 JUMP_TO_ALIGN(11)
L
Linus Torvalds 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

static inline void blast_r4600_v1_icache32(void)
{
	unsigned long flags;

	local_irq_save(flags);
	blast_icache32();
	local_irq_restore(flags);
}

static inline void tx49_blast_icache32(void)
{
	unsigned long start = INDEX_BASE;
	unsigned long end = start + current_cpu_data.icache.waysize;
	unsigned long ws_inc = 1UL << current_cpu_data.icache.waybit;
	unsigned long ws_end = current_cpu_data.icache.ways <<
R
Ralf Baechle 已提交
267
			       current_cpu_data.icache.waybit;
L
Linus Torvalds 已提交
268 269 270 271
	unsigned long ws, addr;

	CACHE32_UNROLL32_ALIGN2;
	/* I'm in even chunk.  blast odd chunks */
272 273
	for (ws = 0; ws < ws_end; ws += ws_inc)
		for (addr = start + 0x400; addr < end; addr += 0x400 * 2)
274
			cache32_unroll32(addr|ws, Index_Invalidate_I);
L
Linus Torvalds 已提交
275 276
	CACHE32_UNROLL32_ALIGN;
	/* I'm in odd chunk.  blast even chunks */
277 278
	for (ws = 0; ws < ws_end; ws += ws_inc)
		for (addr = start; addr < end; addr += 0x400 * 2)
279
			cache32_unroll32(addr|ws, Index_Invalidate_I);
L
Linus Torvalds 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292
}

static inline void blast_icache32_r4600_v1_page_indexed(unsigned long page)
{
	unsigned long flags;

	local_irq_save(flags);
	blast_icache32_page_indexed(page);
	local_irq_restore(flags);
}

static inline void tx49_blast_icache32_page_indexed(unsigned long page)
{
293 294
	unsigned long indexmask = current_cpu_data.icache.waysize - 1;
	unsigned long start = INDEX_BASE + (page & indexmask);
L
Linus Torvalds 已提交
295 296 297
	unsigned long end = start + PAGE_SIZE;
	unsigned long ws_inc = 1UL << current_cpu_data.icache.waybit;
	unsigned long ws_end = current_cpu_data.icache.ways <<
R
Ralf Baechle 已提交
298
			       current_cpu_data.icache.waybit;
L
Linus Torvalds 已提交
299 300 301 302
	unsigned long ws, addr;

	CACHE32_UNROLL32_ALIGN2;
	/* I'm in even chunk.  blast odd chunks */
303 304
	for (ws = 0; ws < ws_end; ws += ws_inc)
		for (addr = start + 0x400; addr < end; addr += 0x400 * 2)
305
			cache32_unroll32(addr|ws, Index_Invalidate_I);
L
Linus Torvalds 已提交
306 307
	CACHE32_UNROLL32_ALIGN;
	/* I'm in odd chunk.  blast even chunks */
308 309
	for (ws = 0; ws < ws_end; ws += ws_inc)
		for (addr = start; addr < end; addr += 0x400 * 2)
310
			cache32_unroll32(addr|ws, Index_Invalidate_I);
L
Linus Torvalds 已提交
311 312 313 314
}

static void (* r4k_blast_icache_page)(unsigned long addr);

315
static void r4k_blast_icache_page_setup(void)
L
Linus Torvalds 已提交
316 317 318
{
	unsigned long ic_lsize = cpu_icache_line_size();

319 320 321
	if (ic_lsize == 0)
		r4k_blast_icache_page = (void *)cache_noop;
	else if (ic_lsize == 16)
L
Linus Torvalds 已提交
322
		r4k_blast_icache_page = blast_icache16_page;
323 324
	else if (ic_lsize == 32 && current_cpu_type() == CPU_LOONGSON2)
		r4k_blast_icache_page = loongson2_blast_icache32_page;
L
Linus Torvalds 已提交
325 326 327 328
	else if (ic_lsize == 32)
		r4k_blast_icache_page = blast_icache32_page;
	else if (ic_lsize == 64)
		r4k_blast_icache_page = blast_icache64_page;
329 330
	else if (ic_lsize == 128)
		r4k_blast_icache_page = blast_icache128_page;
L
Linus Torvalds 已提交
331 332
}

333 334 335 336 337 338
#ifndef CONFIG_EVA
#define r4k_blast_icache_user_page  r4k_blast_icache_page
#else

static void (*r4k_blast_icache_user_page)(unsigned long addr);

339
static void r4k_blast_icache_user_page_setup(void)
340 341 342 343 344 345 346 347 348 349 350 351 352 353
{
	unsigned long ic_lsize = cpu_icache_line_size();

	if (ic_lsize == 0)
		r4k_blast_icache_user_page = (void *)cache_noop;
	else if (ic_lsize == 16)
		r4k_blast_icache_user_page = blast_icache16_user_page;
	else if (ic_lsize == 32)
		r4k_blast_icache_user_page = blast_icache32_user_page;
	else if (ic_lsize == 64)
		r4k_blast_icache_user_page = blast_icache64_user_page;
}

#endif
L
Linus Torvalds 已提交
354 355 356

static void (* r4k_blast_icache_page_indexed)(unsigned long addr);

357
static void r4k_blast_icache_page_indexed_setup(void)
L
Linus Torvalds 已提交
358 359 360
{
	unsigned long ic_lsize = cpu_icache_line_size();

361 362 363
	if (ic_lsize == 0)
		r4k_blast_icache_page_indexed = (void *)cache_noop;
	else if (ic_lsize == 16)
L
Linus Torvalds 已提交
364 365
		r4k_blast_icache_page_indexed = blast_icache16_page_indexed;
	else if (ic_lsize == 32) {
T
Thiemo Seufer 已提交
366
		if (R4600_V1_INDEX_ICACHEOP_WAR && cpu_is_r4600_v1_x())
L
Linus Torvalds 已提交
367 368
			r4k_blast_icache_page_indexed =
				blast_icache32_r4600_v1_page_indexed;
T
Thiemo Seufer 已提交
369 370 371
		else if (TX49XX_ICACHE_INDEX_INV_WAR)
			r4k_blast_icache_page_indexed =
				tx49_blast_icache32_page_indexed;
372 373 374
		else if (current_cpu_type() == CPU_LOONGSON2)
			r4k_blast_icache_page_indexed =
				loongson2_blast_icache32_page_indexed;
L
Linus Torvalds 已提交
375 376 377 378 379 380 381
		else
			r4k_blast_icache_page_indexed =
				blast_icache32_page_indexed;
	} else if (ic_lsize == 64)
		r4k_blast_icache_page_indexed = blast_icache64_page_indexed;
}

382 383
void (* r4k_blast_icache)(void);
EXPORT_SYMBOL(r4k_blast_icache);
L
Linus Torvalds 已提交
384

385
static void r4k_blast_icache_setup(void)
L
Linus Torvalds 已提交
386 387 388
{
	unsigned long ic_lsize = cpu_icache_line_size();

389 390 391
	if (ic_lsize == 0)
		r4k_blast_icache = (void *)cache_noop;
	else if (ic_lsize == 16)
L
Linus Torvalds 已提交
392 393 394 395 396 397
		r4k_blast_icache = blast_icache16;
	else if (ic_lsize == 32) {
		if (R4600_V1_INDEX_ICACHEOP_WAR && cpu_is_r4600_v1_x())
			r4k_blast_icache = blast_r4600_v1_icache32;
		else if (TX49XX_ICACHE_INDEX_INV_WAR)
			r4k_blast_icache = tx49_blast_icache32;
398 399
		else if (current_cpu_type() == CPU_LOONGSON2)
			r4k_blast_icache = loongson2_blast_icache32;
L
Linus Torvalds 已提交
400 401 402 403
		else
			r4k_blast_icache = blast_icache32;
	} else if (ic_lsize == 64)
		r4k_blast_icache = blast_icache64;
404 405
	else if (ic_lsize == 128)
		r4k_blast_icache = blast_icache128;
L
Linus Torvalds 已提交
406 407 408 409
}

static void (* r4k_blast_scache_page)(unsigned long addr);

410
static void r4k_blast_scache_page_setup(void)
L
Linus Torvalds 已提交
411 412 413
{
	unsigned long sc_lsize = cpu_scache_line_size();

414
	if (scache_size == 0)
415
		r4k_blast_scache_page = (void *)cache_noop;
416
	else if (sc_lsize == 16)
L
Linus Torvalds 已提交
417 418 419 420 421 422 423 424 425 426 427
		r4k_blast_scache_page = blast_scache16_page;
	else if (sc_lsize == 32)
		r4k_blast_scache_page = blast_scache32_page;
	else if (sc_lsize == 64)
		r4k_blast_scache_page = blast_scache64_page;
	else if (sc_lsize == 128)
		r4k_blast_scache_page = blast_scache128_page;
}

static void (* r4k_blast_scache_page_indexed)(unsigned long addr);

428
static void r4k_blast_scache_page_indexed_setup(void)
L
Linus Torvalds 已提交
429 430 431
{
	unsigned long sc_lsize = cpu_scache_line_size();

432
	if (scache_size == 0)
433
		r4k_blast_scache_page_indexed = (void *)cache_noop;
434
	else if (sc_lsize == 16)
L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442 443 444 445
		r4k_blast_scache_page_indexed = blast_scache16_page_indexed;
	else if (sc_lsize == 32)
		r4k_blast_scache_page_indexed = blast_scache32_page_indexed;
	else if (sc_lsize == 64)
		r4k_blast_scache_page_indexed = blast_scache64_page_indexed;
	else if (sc_lsize == 128)
		r4k_blast_scache_page_indexed = blast_scache128_page_indexed;
}

static void (* r4k_blast_scache)(void);

446
static void r4k_blast_scache_setup(void)
L
Linus Torvalds 已提交
447 448 449
{
	unsigned long sc_lsize = cpu_scache_line_size();

450
	if (scache_size == 0)
451
		r4k_blast_scache = (void *)cache_noop;
452
	else if (sc_lsize == 16)
L
Linus Torvalds 已提交
453 454 455 456 457 458 459 460 461 462 463
		r4k_blast_scache = blast_scache16;
	else if (sc_lsize == 32)
		r4k_blast_scache = blast_scache32;
	else if (sc_lsize == 64)
		r4k_blast_scache = blast_scache64;
	else if (sc_lsize == 128)
		r4k_blast_scache = blast_scache128;
}

static inline void local_r4k___flush_cache_all(void * args)
{
464
	switch (current_cpu_type()) {
465
	case CPU_LOONGSON2:
466
	case CPU_LOONGSON3:
L
Linus Torvalds 已提交
467 468 469 470 471 472
	case CPU_R4000SC:
	case CPU_R4000MC:
	case CPU_R4400SC:
	case CPU_R4400MC:
	case CPU_R10000:
	case CPU_R12000:
K
Kumba 已提交
473
	case CPU_R14000:
J
Joshua Kinard 已提交
474
	case CPU_R16000:
475 476 477 478 479
		/*
		 * These caches are inclusive caches, that is, if something
		 * is not cached in the S-cache, we know it also won't be
		 * in one of the primary caches.
		 */
L
Linus Torvalds 已提交
480
		r4k_blast_scache();
481 482
		break;

483 484 485 486 487
	case CPU_BMIPS5000:
		r4k_blast_scache();
		__sync();
		break;

488 489 490 491
	default:
		r4k_blast_dcache();
		r4k_blast_icache();
		break;
L
Linus Torvalds 已提交
492 493 494 495 496
	}
}

static void r4k___flush_cache_all(void)
{
497
	r4k_on_each_cpu(R4K_INDEX, local_r4k___flush_cache_all, NULL);
L
Linus Torvalds 已提交
498 499
}

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
/**
 * has_valid_asid() - Determine if an mm already has an ASID.
 * @mm:		Memory map.
 * @type:	R4K_HIT or R4K_INDEX, type of cache op.
 *
 * Determines whether @mm already has an ASID on any of the CPUs which cache ops
 * of type @type within an r4k_on_each_cpu() call will affect. If
 * r4k_on_each_cpu() does an SMP call to a single VPE in each core, then the
 * scope of the operation is confined to sibling CPUs, otherwise all online CPUs
 * will need to be checked.
 *
 * Must be called in non-preemptive context.
 *
 * Returns:	1 if the CPUs affected by @type cache ops have an ASID for @mm.
 *		0 otherwise.
 */
static inline int has_valid_asid(const struct mm_struct *mm, unsigned int type)
517
{
518 519
	unsigned int i;
	const cpumask_t *mask = cpu_present_mask;
520

521 522 523 524 525 526 527 528 529 530 531
	/* cpu_sibling_map[] undeclared when !CONFIG_SMP */
#ifdef CONFIG_SMP
	/*
	 * If r4k_on_each_cpu does SMP calls, it does them to a single VPE in
	 * each foreign core, so we only need to worry about siblings.
	 * Otherwise we need to worry about all present CPUs.
	 */
	if (r4k_op_needs_ipi(type))
		mask = &cpu_sibling_map[smp_processor_id()];
#endif
	for_each_cpu(i, mask)
532 533 534 535 536
		if (cpu_context(i, mm))
			return 1;
	return 0;
}

537 538 539 540 541 542 543 544 545 546
static void r4k__flush_cache_vmap(void)
{
	r4k_blast_dcache();
}

static void r4k__flush_cache_vunmap(void)
{
	r4k_blast_dcache();
}

547 548 549 550
/*
 * Note: flush_tlb_range() assumes flush_cache_range() sufficiently flushes
 * whole caches when vma is executable.
 */
L
Linus Torvalds 已提交
551 552 553
static inline void local_r4k_flush_cache_range(void * args)
{
	struct vm_area_struct *vma = args;
554
	int exec = vma->vm_flags & VM_EXEC;
L
Linus Torvalds 已提交
555

556
	if (!has_valid_asid(vma->vm_mm, R4K_INDEX))
L
Linus Torvalds 已提交
557 558
		return;

559 560 561 562 563 564 565 566
	/*
	 * If dcache can alias, we must blast it since mapping is changing.
	 * If executable, we must ensure any dirty lines are written back far
	 * enough to be visible to icache.
	 */
	if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc))
		r4k_blast_dcache();
	/* If executable, blast stale lines from icache */
567 568
	if (exec)
		r4k_blast_icache();
L
Linus Torvalds 已提交
569 570 571 572 573
}

static void r4k_flush_cache_range(struct vm_area_struct *vma,
	unsigned long start, unsigned long end)
{
574
	int exec = vma->vm_flags & VM_EXEC;
575

576
	if (cpu_has_dc_aliases || exec)
577
		r4k_on_each_cpu(R4K_INDEX, local_r4k_flush_cache_range, vma);
L
Linus Torvalds 已提交
578 579 580 581 582 583
}

static inline void local_r4k_flush_cache_mm(void * args)
{
	struct mm_struct *mm = args;

584
	if (!has_valid_asid(mm, R4K_INDEX))
L
Linus Torvalds 已提交
585 586 587 588
		return;

	/*
	 * Kludge alert.  For obscure reasons R4000SC and R4400SC go nuts if we
J
Joshua Kinard 已提交
589
	 * only flush the primary caches but R1x000 behave sane ...
590 591
	 * R4000SC and R4400SC indexed S-cache ops also invalidate primary
	 * caches, so we can bail out early.
L
Linus Torvalds 已提交
592
	 */
593 594 595 596
	if (current_cpu_type() == CPU_R4000SC ||
	    current_cpu_type() == CPU_R4000MC ||
	    current_cpu_type() == CPU_R4400SC ||
	    current_cpu_type() == CPU_R4400MC) {
L
Linus Torvalds 已提交
597
		r4k_blast_scache();
598 599 600 601
		return;
	}

	r4k_blast_dcache();
L
Linus Torvalds 已提交
602 603 604 605 606 607 608
}

static void r4k_flush_cache_mm(struct mm_struct *mm)
{
	if (!cpu_has_dc_aliases)
		return;

609
	r4k_on_each_cpu(R4K_INDEX, local_r4k_flush_cache_mm, mm);
L
Linus Torvalds 已提交
610 611 612 613
}

struct flush_cache_page_args {
	struct vm_area_struct *vma;
614
	unsigned long addr;
615
	unsigned long pfn;
L
Linus Torvalds 已提交
616 617 618 619 620 621
};

static inline void local_r4k_flush_cache_page(void *args)
{
	struct flush_cache_page_args *fcp_args = args;
	struct vm_area_struct *vma = fcp_args->vma;
622
	unsigned long addr = fcp_args->addr;
R
Ralf Baechle 已提交
623
	struct page *page = pfn_to_page(fcp_args->pfn);
L
Linus Torvalds 已提交
624 625
	int exec = vma->vm_flags & VM_EXEC;
	struct mm_struct *mm = vma->vm_mm;
626
	int map_coherent = 0;
L
Linus Torvalds 已提交
627
	pgd_t *pgdp;
628
	pud_t *pudp;
L
Linus Torvalds 已提交
629 630
	pmd_t *pmdp;
	pte_t *ptep;
R
Ralf Baechle 已提交
631
	void *vaddr;
L
Linus Torvalds 已提交
632

633
	/*
634
	 * If owns no valid ASID yet, cannot possibly have gotten
635 636
	 * this page into the cache.
	 */
637
	if (!has_valid_asid(mm, R4K_HIT))
638 639
		return;

640 641 642 643 644
	addr &= PAGE_MASK;
	pgdp = pgd_offset(mm, addr);
	pudp = pud_offset(pgdp, addr);
	pmdp = pmd_offset(pudp, addr);
	ptep = pte_offset(pmdp, addr);
L
Linus Torvalds 已提交
645 646 647 648 649

	/*
	 * If the page isn't marked valid, the page cannot possibly be
	 * in the cache.
	 */
650
	if (!(pte_present(*ptep)))
L
Linus Torvalds 已提交
651 652
		return;

R
Ralf Baechle 已提交
653 654 655 656 657 658 659
	if ((mm == current->active_mm) && (pte_val(*ptep) & _PAGE_VALID))
		vaddr = NULL;
	else {
		/*
		 * Use kmap_coherent or kmap_atomic to do flushes for
		 * another ASID than the current one.
		 */
660
		map_coherent = (cpu_has_dc_aliases &&
661 662
				page_mapcount(page) &&
				!Page_dcache_dirty(page));
663
		if (map_coherent)
R
Ralf Baechle 已提交
664 665
			vaddr = kmap_coherent(page, addr);
		else
666
			vaddr = kmap_atomic(page);
R
Ralf Baechle 已提交
667
		addr = (unsigned long)vaddr;
L
Linus Torvalds 已提交
668 669 670
	}

	if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) {
671 672
		vaddr ? r4k_blast_dcache_page(addr) :
			r4k_blast_dcache_user_page(addr);
673 674
		if (exec && !cpu_icache_snoops_remote_store)
			r4k_blast_scache_page(addr);
L
Linus Torvalds 已提交
675 676
	}
	if (exec) {
R
Ralf Baechle 已提交
677
		if (vaddr && cpu_has_vtag_icache && mm == current->active_mm) {
L
Linus Torvalds 已提交
678 679
			int cpu = smp_processor_id();

T
Thiemo Seufer 已提交
680 681
			if (cpu_context(cpu, mm) != 0)
				drop_mmu_context(mm, cpu);
L
Linus Torvalds 已提交
682
		} else
683 684
			vaddr ? r4k_blast_icache_page(addr) :
				r4k_blast_icache_user_page(addr);
R
Ralf Baechle 已提交
685 686 687
	}

	if (vaddr) {
688
		if (map_coherent)
R
Ralf Baechle 已提交
689 690
			kunmap_coherent();
		else
691
			kunmap_atomic(vaddr);
L
Linus Torvalds 已提交
692 693 694
	}
}

695 696
static void r4k_flush_cache_page(struct vm_area_struct *vma,
	unsigned long addr, unsigned long pfn)
L
Linus Torvalds 已提交
697 698 699 700
{
	struct flush_cache_page_args args;

	args.vma = vma;
701
	args.addr = addr;
702
	args.pfn = pfn;
L
Linus Torvalds 已提交
703

704
	r4k_on_each_cpu(R4K_HIT, local_r4k_flush_cache_page, &args);
L
Linus Torvalds 已提交
705 706 707 708 709 710 711 712 713
}

static inline void local_r4k_flush_data_cache_page(void * addr)
{
	r4k_blast_dcache_page((unsigned long) addr);
}

static void r4k_flush_data_cache_page(unsigned long addr)
{
714 715 716
	if (in_atomic())
		local_r4k_flush_data_cache_page((void *)addr);
	else
717 718
		r4k_on_each_cpu(R4K_HIT, local_r4k_flush_data_cache_page,
				(void *) addr);
L
Linus Torvalds 已提交
719 720 721
}

struct flush_icache_range_args {
722 723
	unsigned long start;
	unsigned long end;
724
	unsigned int type;
L
Linus Torvalds 已提交
725 726
};

727 728 729
static inline void __local_r4k_flush_icache_range(unsigned long start,
						  unsigned long end,
						  unsigned int type)
L
Linus Torvalds 已提交
730 731
{
	if (!cpu_has_ic_fills_f_dc) {
732 733
		if (type == R4K_INDEX ||
		    (type & R4K_INDEX && end - start >= dcache_size)) {
L
Linus Torvalds 已提交
734 735
			r4k_blast_dcache();
		} else {
736
			R4600_HIT_CACHEOP_WAR_IMPL;
737
			protected_blast_dcache_range(start, end);
L
Linus Torvalds 已提交
738 739 740
		}
	}

741 742
	if (type == R4K_INDEX ||
	    (type & R4K_INDEX && end - start > icache_size))
L
Linus Torvalds 已提交
743
		r4k_blast_icache();
744 745 746
	else {
		switch (boot_cpu_type()) {
		case CPU_LOONGSON2:
747
			protected_loongson2_blast_icache_range(start, end);
748 749 750
			break;

		default:
751
			protected_blast_icache_range(start, end);
752 753 754
			break;
		}
	}
L
Linus Torvalds 已提交
755 756
}

757 758 759 760 761 762
static inline void local_r4k_flush_icache_range(unsigned long start,
						unsigned long end)
{
	__local_r4k_flush_icache_range(start, end, R4K_HIT | R4K_INDEX);
}

763 764 765 766 767
static inline void local_r4k_flush_icache_range_ipi(void *args)
{
	struct flush_icache_range_args *fir_args = args;
	unsigned long start = fir_args->start;
	unsigned long end = fir_args->end;
768
	unsigned int type = fir_args->type;
769

770
	__local_r4k_flush_icache_range(start, end, type);
771 772
}

773
static void r4k_flush_icache_range(unsigned long start, unsigned long end)
L
Linus Torvalds 已提交
774 775
{
	struct flush_icache_range_args args;
776
	unsigned long size, cache_size;
L
Linus Torvalds 已提交
777 778 779

	args.start = start;
	args.end = end;
780
	args.type = R4K_HIT | R4K_INDEX;
L
Linus Torvalds 已提交
781

782 783 784 785 786 787 788 789 790 791
	/*
	 * Indexed cache ops require an SMP call.
	 * Consider if that can or should be avoided.
	 */
	preempt_disable();
	if (r4k_op_needs_ipi(R4K_INDEX) && !r4k_op_needs_ipi(R4K_HIT)) {
		/*
		 * If address-based cache ops don't require an SMP call, then
		 * use them exclusively for small flushes.
		 */
792
		size = end - start;
793 794 795 796 797 798 799 800
		cache_size = icache_size;
		if (!cpu_has_ic_fills_f_dc) {
			size *= 2;
			cache_size += dcache_size;
		}
		if (size <= cache_size)
			args.type &= ~R4K_INDEX;
	}
801
	r4k_on_each_cpu(args.type, local_r4k_flush_icache_range_ipi, &args);
802
	preempt_enable();
803
	instruction_hazard();
L
Linus Torvalds 已提交
804 805
}

806
#if defined(CONFIG_DMA_NONCOHERENT) || defined(CONFIG_DMA_MAYBE_COHERENT)
L
Linus Torvalds 已提交
807 808 809 810 811 812

static void r4k_dma_cache_wback_inv(unsigned long addr, unsigned long size)
{
	/* Catch bad driver code */
	BUG_ON(size == 0);

813
	preempt_disable();
814
	if (cpu_has_inclusive_pcaches) {
815
		if (size >= scache_size)
L
Linus Torvalds 已提交
816
			r4k_blast_scache();
817 818
		else
			blast_scache_range(addr, addr + size);
819
		preempt_enable();
K
Kevin Cernekee 已提交
820
		__sync();
L
Linus Torvalds 已提交
821 822 823 824 825 826 827 828
		return;
	}

	/*
	 * Either no secondary cache or the available caches don't have the
	 * subset property so we have to flush the primary caches
	 * explicitly
	 */
829
	if (size >= dcache_size) {
L
Linus Torvalds 已提交
830 831 832
		r4k_blast_dcache();
	} else {
		R4600_HIT_CACHEOP_WAR_IMPL;
833
		blast_dcache_range(addr, addr + size);
L
Linus Torvalds 已提交
834
	}
835
	preempt_enable();
L
Linus Torvalds 已提交
836 837

	bc_wback_inv(addr, size);
K
Kevin Cernekee 已提交
838
	__sync();
L
Linus Torvalds 已提交
839 840 841 842 843 844 845
}

static void r4k_dma_cache_inv(unsigned long addr, unsigned long size)
{
	/* Catch bad driver code */
	BUG_ON(size == 0);

846
	preempt_disable();
847
	if (cpu_has_inclusive_pcaches) {
848
		if (size >= scache_size)
L
Linus Torvalds 已提交
849
			r4k_blast_scache();
850 851 852 853 854 855
		else {
			/*
			 * There is no clearly documented alignment requirement
			 * for the cache instruction on MIPS processors and
			 * some processors, among them the RM5200 and RM7000
			 * QED processors will throw an address error for cache
R
Ralf Baechle 已提交
856
			 * hit ops with insufficient alignment.	 Solved by
857 858
			 * aligning the address to cache line size.
			 */
859
			blast_inv_scache_range(addr, addr + size);
860
		}
861
		preempt_enable();
K
Kevin Cernekee 已提交
862
		__sync();
L
Linus Torvalds 已提交
863 864 865
		return;
	}

866
	if (size >= dcache_size) {
L
Linus Torvalds 已提交
867 868 869
		r4k_blast_dcache();
	} else {
		R4600_HIT_CACHEOP_WAR_IMPL;
870
		blast_inv_dcache_range(addr, addr + size);
L
Linus Torvalds 已提交
871
	}
872
	preempt_enable();
L
Linus Torvalds 已提交
873 874

	bc_inv(addr, size);
K
Kevin Cernekee 已提交
875
	__sync();
L
Linus Torvalds 已提交
876
}
877
#endif /* CONFIG_DMA_NONCOHERENT || CONFIG_DMA_MAYBE_COHERENT */
L
Linus Torvalds 已提交
878

879 880 881 882 883 884
struct flush_cache_sigtramp_args {
	struct mm_struct *mm;
	struct page *page;
	unsigned long addr;
};

L
Linus Torvalds 已提交
885 886 887 888 889
/*
 * While we're protected against bad userland addresses we don't care
 * very much about what happens in that case.  Usually a segmentation
 * fault will dump the process later on anyway ...
 */
890
static void local_r4k_flush_cache_sigtramp(void *args)
L
Linus Torvalds 已提交
891
{
892 893 894 895 896 897 898
	struct flush_cache_sigtramp_args *fcs_args = args;
	unsigned long addr = fcs_args->addr;
	struct page *page = fcs_args->page;
	struct mm_struct *mm = fcs_args->mm;
	int map_coherent = 0;
	void *vaddr;

T
Thiemo Seufer 已提交
899 900 901
	unsigned long ic_lsize = cpu_icache_line_size();
	unsigned long dc_lsize = cpu_dcache_line_size();
	unsigned long sc_lsize = cpu_scache_line_size();
902 903 904 905 906

	/*
	 * If owns no valid ASID yet, cannot possibly have gotten
	 * this page into the cache.
	 */
907
	if (!has_valid_asid(mm, R4K_HIT))
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
		return;

	if (mm == current->active_mm) {
		vaddr = NULL;
	} else {
		/*
		 * Use kmap_coherent or kmap_atomic to do flushes for
		 * another ASID than the current one.
		 */
		map_coherent = (cpu_has_dc_aliases &&
				page_mapcount(page) &&
				!Page_dcache_dirty(page));
		if (map_coherent)
			vaddr = kmap_coherent(page, addr);
		else
			vaddr = kmap_atomic(page);
		addr = (unsigned long)vaddr + (addr & ~PAGE_MASK);
	}
L
Linus Torvalds 已提交
926 927

	R4600_HIT_CACHEOP_WAR_IMPL;
928 929 930 931 932 933 934 935 936 937
	if (!cpu_has_ic_fills_f_dc) {
		if (dc_lsize)
			vaddr ? flush_dcache_line(addr & ~(dc_lsize - 1))
			      : protected_writeback_dcache_line(
							addr & ~(dc_lsize - 1));
		if (!cpu_icache_snoops_remote_store && scache_size)
			vaddr ? flush_scache_line(addr & ~(sc_lsize - 1))
			      : protected_writeback_scache_line(
							addr & ~(sc_lsize - 1));
	}
938
	if (ic_lsize)
939 940 941 942 943 944 945 946 947 948
		vaddr ? flush_icache_line(addr & ~(ic_lsize - 1))
		      : protected_flush_icache_line(addr & ~(ic_lsize - 1));

	if (vaddr) {
		if (map_coherent)
			kunmap_coherent();
		else
			kunmap_atomic(vaddr);
	}

L
Linus Torvalds 已提交
949 950 951 952
	if (MIPS4K_ICACHE_REFILL_WAR) {
		__asm__ __volatile__ (
			".set push\n\t"
			".set noat\n\t"
953
			".set "MIPS_ISA_LEVEL"\n\t"
954
#ifdef CONFIG_32BIT
L
Linus Torvalds 已提交
955 956
			"la	$at,1f\n\t"
#endif
957
#ifdef CONFIG_64BIT
L
Linus Torvalds 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
			"dla	$at,1f\n\t"
#endif
			"cache	%0,($at)\n\t"
			"nop; nop; nop\n"
			"1:\n\t"
			".set pop"
			:
			: "i" (Hit_Invalidate_I));
	}
	if (MIPS_CACHE_SYNC_WAR)
		__asm__ __volatile__ ("sync");
}

static void r4k_flush_cache_sigtramp(unsigned long addr)
{
973 974 975 976 977 978 979 980 981 982 983 984
	struct flush_cache_sigtramp_args args;
	int npages;

	down_read(&current->mm->mmap_sem);

	npages = get_user_pages_fast(addr, 1, 0, &args.page);
	if (npages < 1)
		goto out;

	args.mm = current->mm;
	args.addr = addr;

985
	r4k_on_each_cpu(R4K_HIT, local_r4k_flush_cache_sigtramp, &args);
986 987 988 989

	put_page(args.page);
out:
	up_read(&current->mm->mmap_sem);
L
Linus Torvalds 已提交
990 991 992 993 994 995 996 997
}

static void r4k_flush_icache_all(void)
{
	if (cpu_has_vtag_icache)
		r4k_blast_icache();
}

998 999 1000 1001 1002
struct flush_kernel_vmap_range_args {
	unsigned long	vaddr;
	int		size;
};

1003 1004 1005 1006 1007 1008 1009 1010 1011
static inline void local_r4k_flush_kernel_vmap_range_index(void *args)
{
	/*
	 * Aliases only affect the primary caches so don't bother with
	 * S-caches or T-caches.
	 */
	r4k_blast_dcache();
}

1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
static inline void local_r4k_flush_kernel_vmap_range(void *args)
{
	struct flush_kernel_vmap_range_args *vmra = args;
	unsigned long vaddr = vmra->vaddr;
	int size = vmra->size;

	/*
	 * Aliases only affect the primary caches so don't bother with
	 * S-caches or T-caches.
	 */
1022 1023
	R4600_HIT_CACHEOP_WAR_IMPL;
	blast_dcache_range(vaddr, vaddr + size);
1024 1025 1026 1027 1028 1029 1030 1031 1032
}

static void r4k_flush_kernel_vmap_range(unsigned long vaddr, int size)
{
	struct flush_kernel_vmap_range_args args;

	args.vaddr = (unsigned long) vaddr;
	args.size = size;

1033 1034 1035 1036 1037 1038
	if (size >= dcache_size)
		r4k_on_each_cpu(R4K_INDEX,
				local_r4k_flush_kernel_vmap_range_index, NULL);
	else
		r4k_on_each_cpu(R4K_HIT, local_r4k_flush_kernel_vmap_range,
				&args);
1039 1040
}

L
Linus Torvalds 已提交
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
static inline void rm7k_erratum31(void)
{
	const unsigned long ic_lsize = 32;
	unsigned long addr;

	/* RM7000 erratum #31. The icache is screwed at startup. */
	write_c0_taglo(0);
	write_c0_taghi(0);

	for (addr = INDEX_BASE; addr <= INDEX_BASE + 4096; addr += ic_lsize) {
		__asm__ __volatile__ (
T
Thiemo Seufer 已提交
1052
			".set push\n\t"
L
Linus Torvalds 已提交
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
			".set noreorder\n\t"
			".set mips3\n\t"
			"cache\t%1, 0(%0)\n\t"
			"cache\t%1, 0x1000(%0)\n\t"
			"cache\t%1, 0x2000(%0)\n\t"
			"cache\t%1, 0x3000(%0)\n\t"
			"cache\t%2, 0(%0)\n\t"
			"cache\t%2, 0x1000(%0)\n\t"
			"cache\t%2, 0x2000(%0)\n\t"
			"cache\t%2, 0x3000(%0)\n\t"
			"cache\t%1, 0(%0)\n\t"
			"cache\t%1, 0x1000(%0)\n\t"
			"cache\t%1, 0x2000(%0)\n\t"
			"cache\t%1, 0x3000(%0)\n\t"
T
Thiemo Seufer 已提交
1067
			".set pop\n"
L
Linus Torvalds 已提交
1068 1069 1070 1071 1072
			:
			: "r" (addr), "i" (Index_Store_Tag_I), "i" (Fill));
	}
}

1073
static inline int alias_74k_erratum(struct cpuinfo_mips *c)
1074
{
1075 1076
	unsigned int imp = c->processor_id & PRID_IMP_MASK;
	unsigned int rev = c->processor_id & PRID_REV_MASK;
1077
	int present = 0;
1078

1079 1080 1081
	/*
	 * Early versions of the 74K do not update the cache tags on a
	 * vtag miss/ptag hit which can occur in the case of KSEG0/KUSEG
1082 1083 1084 1085 1086
	 * aliases.  In this case it is better to treat the cache as always
	 * having aliases.  Also disable the synonym tag update feature
	 * where available.  In this case no opportunistic tag update will
	 * happen where a load causes a virtual address miss but a physical
	 * address hit during a D-cache look-up.
1087
	 */
1088 1089 1090
	switch (imp) {
	case PRID_IMP_74K:
		if (rev <= PRID_REV_ENCODE_332(2, 4, 0))
1091
			present = 1;
1092 1093 1094 1095 1096
		if (rev == PRID_REV_ENCODE_332(2, 4, 0))
			write_c0_config6(read_c0_config6() | MIPS_CONF6_SYND);
		break;
	case PRID_IMP_1074K:
		if (rev <= PRID_REV_ENCODE_332(1, 1, 0)) {
1097
			present = 1;
1098 1099 1100 1101 1102
			write_c0_config6(read_c0_config6() | MIPS_CONF6_SYND);
		}
		break;
	default:
		BUG();
1103
	}
1104 1105

	return present;
1106 1107
}

1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
static void b5k_instruction_hazard(void)
{
	__sync();
	__sync();
	__asm__ __volatile__(
	"       nop; nop; nop; nop; nop; nop; nop; nop\n"
	"       nop; nop; nop; nop; nop; nop; nop; nop\n"
	"       nop; nop; nop; nop; nop; nop; nop; nop\n"
	"       nop; nop; nop; nop; nop; nop; nop; nop\n"
	: : : "memory");
}

1120
static char *way_string[] = { NULL, "direct mapped", "2-way",
1121 1122 1123
	"3-way", "4-way", "5-way", "6-way", "7-way", "8-way",
	"9-way", "10-way", "11-way", "12-way",
	"13-way", "14-way", "15-way", "16-way",
L
Linus Torvalds 已提交
1124 1125
};

1126
static void probe_pcache(void)
L
Linus Torvalds 已提交
1127 1128 1129 1130
{
	struct cpuinfo_mips *c = &current_cpu_data;
	unsigned int config = read_c0_config();
	unsigned int prid = read_c0_prid();
1131
	int has_74k_erratum = 0;
L
Linus Torvalds 已提交
1132 1133 1134
	unsigned long config1;
	unsigned int lsize;

1135
	switch (current_cpu_type()) {
L
Linus Torvalds 已提交
1136 1137 1138 1139 1140 1141 1142
	case CPU_R4600:			/* QED style two way caches? */
	case CPU_R4700:
	case CPU_R5000:
	case CPU_NEVADA:
		icache_size = 1 << (12 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 2;
1143
		c->icache.waybit = __ffs(icache_size/2);
L
Linus Torvalds 已提交
1144 1145 1146 1147

		dcache_size = 1 << (12 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 2;
1148
		c->dcache.waybit= __ffs(dcache_size/2);
L
Linus Torvalds 已提交
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164

		c->options |= MIPS_CPU_CACHE_CDEX_P;
		break;

	case CPU_R5432:
	case CPU_R5500:
		icache_size = 1 << (12 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 2;
		c->icache.waybit= 0;

		dcache_size = 1 << (12 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 2;
		c->dcache.waybit = 0;

1165
		c->options |= MIPS_CPU_CACHE_CDEX_P | MIPS_CPU_PREFETCH;
L
Linus Torvalds 已提交
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
		break;

	case CPU_TX49XX:
		icache_size = 1 << (12 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 4;
		c->icache.waybit= 0;

		dcache_size = 1 << (12 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 4;
		c->dcache.waybit = 0;

		c->options |= MIPS_CPU_CACHE_CDEX_P;
A
Atsushi Nemoto 已提交
1180
		c->options |= MIPS_CPU_PREFETCH;
L
Linus Torvalds 已提交
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
		break;

	case CPU_R4000PC:
	case CPU_R4000SC:
	case CPU_R4000MC:
	case CPU_R4400PC:
	case CPU_R4400SC:
	case CPU_R4400MC:
	case CPU_R4300:
		icache_size = 1 << (12 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 1;
R
Ralf Baechle 已提交
1193
		c->icache.waybit = 0;	/* doesn't matter */
L
Linus Torvalds 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204

		dcache_size = 1 << (12 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 1;
		c->dcache.waybit = 0;	/* does not matter */

		c->options |= MIPS_CPU_CACHE_CDEX_P;
		break;

	case CPU_R10000:
	case CPU_R12000:
K
Kumba 已提交
1205
	case CPU_R14000:
J
Joshua Kinard 已提交
1206
	case CPU_R16000:
L
Linus Torvalds 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
		icache_size = 1 << (12 + ((config & R10K_CONF_IC) >> 29));
		c->icache.linesz = 64;
		c->icache.ways = 2;
		c->icache.waybit = 0;

		dcache_size = 1 << (12 + ((config & R10K_CONF_DC) >> 26));
		c->dcache.linesz = 32;
		c->dcache.ways = 2;
		c->dcache.waybit = 0;

		c->options |= MIPS_CPU_PREFETCH;
		break;

	case CPU_VR4133:
1221
		write_c0_config(config & ~VR41_CONF_P4K);
L
Linus Torvalds 已提交
1222 1223 1224 1225
	case CPU_VR4131:
		/* Workaround for cache instruction bug of VR4131 */
		if (c->processor_id == 0x0c80U || c->processor_id == 0x0c81U ||
		    c->processor_id == 0x0c82U) {
1226 1227 1228
			config |= 0x00400000U;
			if (c->processor_id == 0x0c80U)
				config |= VR41_CONF_BP;
L
Linus Torvalds 已提交
1229
			write_c0_config(config);
1230 1231 1232
		} else
			c->options |= MIPS_CPU_CACHE_CDEX_P;

L
Linus Torvalds 已提交
1233 1234 1235
		icache_size = 1 << (10 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 2;
1236
		c->icache.waybit = __ffs(icache_size/2);
L
Linus Torvalds 已提交
1237 1238 1239 1240

		dcache_size = 1 << (10 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 2;
1241
		c->dcache.waybit = __ffs(dcache_size/2);
L
Linus Torvalds 已提交
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
		break;

	case CPU_VR41XX:
	case CPU_VR4111:
	case CPU_VR4121:
	case CPU_VR4122:
	case CPU_VR4181:
	case CPU_VR4181A:
		icache_size = 1 << (10 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 1;
R
Ralf Baechle 已提交
1253
		c->icache.waybit = 0;	/* doesn't matter */
L
Linus Torvalds 已提交
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268

		dcache_size = 1 << (10 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 1;
		c->dcache.waybit = 0;	/* does not matter */

		c->options |= MIPS_CPU_CACHE_CDEX_P;
		break;

	case CPU_RM7000:
		rm7k_erratum31();

		icache_size = 1 << (12 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		c->icache.ways = 4;
1269
		c->icache.waybit = __ffs(icache_size / c->icache.ways);
L
Linus Torvalds 已提交
1270 1271 1272 1273

		dcache_size = 1 << (12 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		c->dcache.ways = 4;
1274
		c->dcache.waybit = __ffs(dcache_size / c->dcache.ways);
L
Linus Torvalds 已提交
1275 1276 1277 1278 1279

		c->options |= MIPS_CPU_CACHE_CDEX_P;
		c->options |= MIPS_CPU_PREFETCH;
		break;

1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
	case CPU_LOONGSON2:
		icache_size = 1 << (12 + ((config & CONF_IC) >> 9));
		c->icache.linesz = 16 << ((config & CONF_IB) >> 5);
		if (prid & 0x3)
			c->icache.ways = 4;
		else
			c->icache.ways = 2;
		c->icache.waybit = 0;

		dcache_size = 1 << (12 + ((config & CONF_DC) >> 6));
		c->dcache.linesz = 16 << ((config & CONF_DB) >> 4);
		if (prid & 0x3)
			c->dcache.ways = 4;
		else
			c->dcache.ways = 2;
		c->dcache.waybit = 0;
		break;

1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
	case CPU_LOONGSON3:
		config1 = read_c0_config1();
		lsize = (config1 >> 19) & 7;
		if (lsize)
			c->icache.linesz = 2 << lsize;
		else
			c->icache.linesz = 0;
		c->icache.sets = 64 << ((config1 >> 22) & 7);
		c->icache.ways = 1 + ((config1 >> 16) & 7);
		icache_size = c->icache.sets *
					  c->icache.ways *
					  c->icache.linesz;
		c->icache.waybit = 0;

		lsize = (config1 >> 10) & 7;
		if (lsize)
			c->dcache.linesz = 2 << lsize;
		else
			c->dcache.linesz = 0;
		c->dcache.sets = 64 << ((config1 >> 13) & 7);
		c->dcache.ways = 1 + ((config1 >> 7) & 7);
		dcache_size = c->dcache.sets *
					  c->dcache.ways *
					  c->dcache.linesz;
		c->dcache.waybit = 0;
1323 1324
		if ((prid & PRID_REV_MASK) >= PRID_REV_LOONGSON3A_R2)
			c->options |= MIPS_CPU_PREFETCH;
1325 1326
		break;

1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
	case CPU_CAVIUM_OCTEON3:
		/* For now lie about the number of ways. */
		c->icache.linesz = 128;
		c->icache.sets = 16;
		c->icache.ways = 8;
		c->icache.flags |= MIPS_CACHE_VTAG;
		icache_size = c->icache.sets * c->icache.ways * c->icache.linesz;

		c->dcache.linesz = 128;
		c->dcache.ways = 8;
		c->dcache.sets = 8;
		dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz;
		c->options |= MIPS_CPU_PREFETCH;
		break;

L
Linus Torvalds 已提交
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
	default:
		if (!(config & MIPS_CONF_M))
			panic("Don't know how to probe P-caches on this cpu.");

		/*
		 * So we seem to be a MIPS32 or MIPS64 CPU
		 * So let's probe the I-cache ...
		 */
		config1 = read_c0_config1();

1352 1353 1354 1355 1356 1357 1358 1359
		lsize = (config1 >> 19) & 7;

		/* IL == 7 is reserved */
		if (lsize == 7)
			panic("Invalid icache line size");

		c->icache.linesz = lsize ? 2 << lsize : 0;

1360
		c->icache.sets = 32 << (((config1 >> 22) + 1) & 7);
L
Linus Torvalds 已提交
1361 1362 1363
		c->icache.ways = 1 + ((config1 >> 16) & 7);

		icache_size = c->icache.sets *
R
Ralf Baechle 已提交
1364 1365
			      c->icache.ways *
			      c->icache.linesz;
1366
		c->icache.waybit = __ffs(icache_size/c->icache.ways);
L
Linus Torvalds 已提交
1367

1368
		if (config & MIPS_CONF_VI)
L
Linus Torvalds 已提交
1369 1370 1371 1372 1373 1374 1375
			c->icache.flags |= MIPS_CACHE_VTAG;

		/*
		 * Now probe the MIPS32 / MIPS64 data cache.
		 */
		c->dcache.flags = 0;

1376 1377 1378 1379 1380 1381 1382 1383
		lsize = (config1 >> 10) & 7;

		/* DL == 7 is reserved */
		if (lsize == 7)
			panic("Invalid dcache line size");

		c->dcache.linesz = lsize ? 2 << lsize : 0;

1384
		c->dcache.sets = 32 << (((config1 >> 13) + 1) & 7);
L
Linus Torvalds 已提交
1385 1386 1387
		c->dcache.ways = 1 + ((config1 >> 7) & 7);

		dcache_size = c->dcache.sets *
R
Ralf Baechle 已提交
1388 1389
			      c->dcache.ways *
			      c->dcache.linesz;
1390
		c->dcache.waybit = __ffs(dcache_size/c->dcache.ways);
L
Linus Torvalds 已提交
1391 1392 1393 1394 1395 1396 1397

		c->options |= MIPS_CPU_PREFETCH;
		break;
	}

	/*
	 * Processor configuration sanity check for the R4000SC erratum
R
Ralf Baechle 已提交
1398
	 * #5.	With page sizes larger than 32kB there is no possibility
L
Linus Torvalds 已提交
1399 1400 1401 1402 1403
	 * to get a VCE exception anymore so we don't care about this
	 * misconfiguration.  The case is rather theoretical anyway;
	 * presumably no vendor is shipping his hardware in the "bad"
	 * configuration.
	 */
1404 1405
	if ((prid & PRID_IMP_MASK) == PRID_IMP_R4000 &&
	    (prid & PRID_REV_MASK) < PRID_REV_R4400 &&
L
Linus Torvalds 已提交
1406 1407 1408 1409 1410 1411 1412 1413
	    !(config & CONF_SC) && c->icache.linesz != 16 &&
	    PAGE_SIZE <= 0x8000)
		panic("Improper R4000SC processor configuration detected");

	/* compute a couple of other cache variables */
	c->icache.waysize = icache_size / c->icache.ways;
	c->dcache.waysize = dcache_size / c->dcache.ways;

1414 1415 1416 1417
	c->icache.sets = c->icache.linesz ?
		icache_size / (c->icache.linesz * c->icache.ways) : 0;
	c->dcache.sets = c->dcache.linesz ?
		dcache_size / (c->dcache.linesz * c->dcache.ways) : 0;
L
Linus Torvalds 已提交
1418 1419

	/*
J
Joshua Kinard 已提交
1420 1421
	 * R1x000 P-caches are odd in a positive way.  They're 32kB 2-way
	 * virtually indexed so normally would suffer from aliases.  So
L
Linus Torvalds 已提交
1422 1423 1424
	 * normally they'd suffer from aliases but magic in the hardware deals
	 * with that for us so we don't need to take care ourselves.
	 */
1425
	switch (current_cpu_type()) {
1426
	case CPU_20KC:
R
Ralf Baechle 已提交
1427
	case CPU_25KF:
1428 1429
	case CPU_SB1:
	case CPU_SB1A:
1430
	case CPU_XLR:
1431
		c->dcache.flags |= MIPS_CACHE_PINDEX;
1432 1433
		break;

1434 1435
	case CPU_R10000:
	case CPU_R12000:
K
Kumba 已提交
1436
	case CPU_R14000:
J
Joshua Kinard 已提交
1437
	case CPU_R16000:
1438
		break;
1439

1440 1441
	case CPU_74K:
	case CPU_1074K:
1442
		has_74k_erratum = alias_74k_erratum(c);
1443
		/* Fall through. */
1444
	case CPU_M14KC:
1445
	case CPU_M14KEC:
1446
	case CPU_24K:
1447
	case CPU_34K:
1448
	case CPU_1004K:
1449
	case CPU_INTERAPTIV:
J
James Hogan 已提交
1450
	case CPU_P5600:
1451
	case CPU_PROAPTIV:
1452
	case CPU_M5150:
1453
	case CPU_QEMU_GENERIC:
M
Markos Chandras 已提交
1454
	case CPU_I6400:
1455
	case CPU_P6600:
1456
	case CPU_M6250:
1457 1458 1459
		if (!(read_c0_config7() & MIPS_CONF7_IAR) &&
		    (c->icache.waysize > PAGE_SIZE))
			c->icache.flags |= MIPS_CACHE_ALIASES;
1460
		if (!has_74k_erratum && (read_c0_config7() & MIPS_CONF7_AR)) {
1461 1462 1463 1464
			/*
			 * Effectively physically indexed dcache,
			 * thus no virtual aliases.
			*/
1465 1466 1467
			c->dcache.flags |= MIPS_CACHE_PINDEX;
			break;
		}
1468
	default:
1469
		if (has_74k_erratum || c->dcache.waysize > PAGE_SIZE)
1470
			c->dcache.flags |= MIPS_CACHE_ALIASES;
1471
	}
L
Linus Torvalds 已提交
1472

1473
	switch (current_cpu_type()) {
L
Linus Torvalds 已提交
1474 1475 1476 1477 1478 1479 1480 1481
	case CPU_20KC:
		/*
		 * Some older 20Kc chips doesn't have the 'VI' bit in
		 * the config register.
		 */
		c->icache.flags |= MIPS_CACHE_VTAG;
		break;

1482
	case CPU_ALCHEMY:
1483
	case CPU_I6400:
L
Linus Torvalds 已提交
1484 1485 1486
		c->icache.flags |= MIPS_CACHE_IC_F_DC;
		break;

1487 1488
	case CPU_BMIPS5000:
		c->icache.flags |= MIPS_CACHE_IC_F_DC;
1489 1490
		/* Cache aliases are handled in hardware; allow HIGHMEM */
		c->dcache.flags &= ~MIPS_CACHE_ALIASES;
1491 1492
		break;

1493 1494 1495 1496 1497 1498 1499
	case CPU_LOONGSON2:
		/*
		 * LOONGSON2 has 4 way icache, but when using indexed cache op,
		 * one op will act on all 4 ways
		 */
		c->icache.ways = 1;
	}
1500

L
Linus Torvalds 已提交
1501 1502
	printk("Primary instruction cache %ldkB, %s, %s, linesize %d bytes.\n",
	       icache_size >> 10,
1503
	       c->icache.flags & MIPS_CACHE_VTAG ? "VIVT" : "VIPT",
L
Linus Torvalds 已提交
1504 1505
	       way_string[c->icache.ways], c->icache.linesz);

1506 1507 1508 1509 1510 1511
	printk("Primary data cache %ldkB, %s, %s, %s, linesize %d bytes\n",
	       dcache_size >> 10, way_string[c->dcache.ways],
	       (c->dcache.flags & MIPS_CACHE_PINDEX) ? "PIPT" : "VIPT",
	       (c->dcache.flags & MIPS_CACHE_ALIASES) ?
			"cache aliases" : "no aliases",
	       c->dcache.linesz);
L
Linus Torvalds 已提交
1512 1513
}

1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
static void probe_vcache(void)
{
	struct cpuinfo_mips *c = &current_cpu_data;
	unsigned int config2, lsize;

	if (current_cpu_type() != CPU_LOONGSON3)
		return;

	config2 = read_c0_config2();
	if ((lsize = ((config2 >> 20) & 15)))
		c->vcache.linesz = 2 << lsize;
	else
		c->vcache.linesz = lsize;

	c->vcache.sets = 64 << ((config2 >> 24) & 15);
	c->vcache.ways = 1 + ((config2 >> 16) & 15);

	vcache_size = c->vcache.sets * c->vcache.ways * c->vcache.linesz;

	c->vcache.waybit = 0;

	pr_info("Unified victim cache %ldkB %s, linesize %d bytes.\n",
		vcache_size >> 10, way_string[c->vcache.ways], c->vcache.linesz);
}

L
Linus Torvalds 已提交
1539 1540 1541 1542 1543 1544
/*
 * If you even _breathe_ on this function, look at the gcc output and make sure
 * it does not pop things on and off the stack for the cache sizing loop that
 * executes in KSEG1 space or else you will crash and burn badly.  You have
 * been warned.
 */
1545
static int probe_scache(void)
L
Linus Torvalds 已提交
1546 1547 1548 1549 1550 1551 1552 1553
{
	unsigned long flags, addr, begin, end, pow2;
	unsigned int config = read_c0_config();
	struct cpuinfo_mips *c = &current_cpu_data;

	if (config & CONF_SC)
		return 0;

1554
	begin = (unsigned long) &_stext;
L
Linus Torvalds 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
	begin &= ~((4 * 1024 * 1024) - 1);
	end = begin + (4 * 1024 * 1024);

	/*
	 * This is such a bitch, you'd think they would make it easy to do
	 * this.  Away you daemons of stupidity!
	 */
	local_irq_save(flags);

	/* Fill each size-multiple cache line with a valid tag. */
	pow2 = (64 * 1024);
	for (addr = begin; addr < end; addr = (begin + pow2)) {
		unsigned long *p = (unsigned long *) addr;
		__asm__ __volatile__("nop" : : "r" (*p)); /* whee... */
		pow2 <<= 1;
	}

	/* Load first line with zero (therefore invalid) tag. */
	write_c0_taglo(0);
	write_c0_taghi(0);
	__asm__ __volatile__("nop; nop; nop; nop;"); /* avoid the hazard */
	cache_op(Index_Store_Tag_I, begin);
	cache_op(Index_Store_Tag_D, begin);
	cache_op(Index_Store_Tag_SD, begin);

	/* Now search for the wrap around point. */
	pow2 = (128 * 1024);
	for (addr = begin + (128 * 1024); addr < end; addr = begin + pow2) {
		cache_op(Index_Load_Tag_SD, addr);
		__asm__ __volatile__("nop; nop; nop; nop;"); /* hazard... */
		if (!read_c0_taglo())
			break;
		pow2 <<= 1;
	}
	local_irq_restore(flags);
	addr -= begin;

	scache_size = addr;
	c->scache.linesz = 16 << ((config & R4K_CONF_SB) >> 22);
	c->scache.ways = 1;
1595
	c->scache.waybit = 0;		/* does not matter */
L
Linus Torvalds 已提交
1596 1597 1598 1599

	return 1;
}

1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
static void __init loongson2_sc_init(void)
{
	struct cpuinfo_mips *c = &current_cpu_data;

	scache_size = 512*1024;
	c->scache.linesz = 32;
	c->scache.ways = 4;
	c->scache.waybit = 0;
	c->scache.waysize = scache_size / (c->scache.ways);
	c->scache.sets = scache_size / (c->scache.linesz * c->scache.ways);
	pr_info("Unified secondary cache %ldkB %s, linesize %d bytes.\n",
	       scache_size >> 10, way_string[c->scache.ways], c->scache.linesz);

	c->options |= MIPS_CPU_INCLUSIVE_CACHES;
}

1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642
static void __init loongson3_sc_init(void)
{
	struct cpuinfo_mips *c = &current_cpu_data;
	unsigned int config2, lsize;

	config2 = read_c0_config2();
	lsize = (config2 >> 4) & 15;
	if (lsize)
		c->scache.linesz = 2 << lsize;
	else
		c->scache.linesz = 0;
	c->scache.sets = 64 << ((config2 >> 8) & 15);
	c->scache.ways = 1 + (config2 & 15);

	scache_size = c->scache.sets *
				  c->scache.ways *
				  c->scache.linesz;
	/* Loongson-3 has 4 cores, 1MB scache for each. scaches are shared */
	scache_size *= 4;
	c->scache.waybit = 0;
	pr_info("Unified secondary cache %ldkB %s, linesize %d bytes.\n",
	       scache_size >> 10, way_string[c->scache.ways], c->scache.linesz);
	if (scache_size)
		c->options |= MIPS_CPU_INCLUSIVE_CACHES;
	return;
}

L
Linus Torvalds 已提交
1643 1644
extern int r5k_sc_init(void);
extern int rm7k_sc_init(void);
1645
extern int mips_sc_init(void);
L
Linus Torvalds 已提交
1646

1647
static void setup_scache(void)
L
Linus Torvalds 已提交
1648 1649 1650 1651 1652 1653 1654 1655
{
	struct cpuinfo_mips *c = &current_cpu_data;
	unsigned int config = read_c0_config();
	int sc_present = 0;

	/*
	 * Do the probing thing on R4000SC and R4400SC processors.  Other
	 * processors don't have a S-cache that would be relevant to the
J
Joe Perches 已提交
1656
	 * Linux memory management.
L
Linus Torvalds 已提交
1657
	 */
1658
	switch (current_cpu_type()) {
L
Linus Torvalds 已提交
1659 1660 1661 1662
	case CPU_R4000SC:
	case CPU_R4000MC:
	case CPU_R4400SC:
	case CPU_R4400MC:
1663
		sc_present = run_uncached(probe_scache);
L
Linus Torvalds 已提交
1664 1665 1666 1667 1668 1669
		if (sc_present)
			c->options |= MIPS_CPU_CACHE_CDEX_S;
		break;

	case CPU_R10000:
	case CPU_R12000:
K
Kumba 已提交
1670
	case CPU_R14000:
J
Joshua Kinard 已提交
1671
	case CPU_R16000:
L
Linus Torvalds 已提交
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
		scache_size = 0x80000 << ((config & R10K_CONF_SS) >> 16);
		c->scache.linesz = 64 << ((config >> 13) & 1);
		c->scache.ways = 2;
		c->scache.waybit= 0;
		sc_present = 1;
		break;

	case CPU_R5000:
	case CPU_NEVADA:
#ifdef CONFIG_R5000_CPU_SCACHE
		r5k_sc_init();
#endif
R
Ralf Baechle 已提交
1684
		return;
L
Linus Torvalds 已提交
1685 1686 1687 1688 1689 1690 1691

	case CPU_RM7000:
#ifdef CONFIG_RM7000_CPU_SCACHE
		rm7k_sc_init();
#endif
		return;

1692 1693 1694
	case CPU_LOONGSON2:
		loongson2_sc_init();
		return;
1695

1696 1697 1698 1699
	case CPU_LOONGSON3:
		loongson3_sc_init();
		return;

1700
	case CPU_CAVIUM_OCTEON3:
J
Jayachandran C 已提交
1701 1702 1703
	case CPU_XLP:
		/* don't need to worry about L2, fully coherent */
		return;
1704

L
Linus Torvalds 已提交
1705
	default:
1706
		if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M32R2 |
1707 1708
				    MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R1 |
				    MIPS_CPU_ISA_M64R2 | MIPS_CPU_ISA_M64R6)) {
1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
#ifdef CONFIG_MIPS_CPU_SCACHE
			if (mips_sc_init ()) {
				scache_size = c->scache.ways * c->scache.sets * c->scache.linesz;
				printk("MIPS secondary cache %ldkB, %s, linesize %d bytes.\n",
				       scache_size >> 10,
				       way_string[c->scache.ways], c->scache.linesz);
			}
#else
			if (!(c->scache.flags & MIPS_CACHE_NOT_PRESENT))
				panic("Dunno how to handle MIPS32 / MIPS64 second level cache");
#endif
			return;
		}
L
Linus Torvalds 已提交
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
		sc_present = 0;
	}

	if (!sc_present)
		return;

	/* compute a couple of other cache variables */
	c->scache.waysize = scache_size / c->scache.ways;

	c->scache.sets = scache_size / (c->scache.linesz * c->scache.ways);

	printk("Unified secondary cache %ldkB %s, linesize %d bytes.\n",
	       scache_size >> 10, way_string[c->scache.ways], c->scache.linesz);

1736
	c->options |= MIPS_CPU_INCLUSIVE_CACHES;
L
Linus Torvalds 已提交
1737 1738
}

1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
void au1x00_fixup_config_od(void)
{
	/*
	 * c0_config.od (bit 19) was write only (and read as 0)
	 * on the early revisions of Alchemy SOCs.  It disables the bus
	 * transaction overlapping and needs to be set to fix various errata.
	 */
	switch (read_c0_prid()) {
	case 0x00030100: /* Au1000 DA */
	case 0x00030201: /* Au1000 HA */
	case 0x00030202: /* Au1000 HB */
	case 0x01030200: /* Au1500 AB */
	/*
	 * Au1100 errata actually keeps silence about this bit, so we set it
	 * just in case for those revisions that require it to be set according
1754
	 * to the (now gone) cpu table.
1755 1756 1757 1758 1759 1760 1761 1762 1763
	 */
	case 0x02030200: /* Au1100 AB */
	case 0x02030201: /* Au1100 BA */
	case 0x02030202: /* Au1100 BC */
		set_c0_config(1 << 19);
		break;
	}
}

1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
/* CP0 hazard avoidance. */
#define NXP_BARRIER()							\
	 __asm__ __volatile__(						\
	".set noreorder\n\t"						\
	"nop; nop; nop; nop; nop; nop;\n\t"				\
	".set reorder\n\t")

static void nxp_pr4450_fixup_config(void)
{
	unsigned long config0;

	config0 = read_c0_config();

	/* clear all three cache coherency fields */
	config0 &= ~(0x7 | (7 << 25) | (7 << 28));
	config0 |= (((_page_cachable_default >> _CACHE_SHIFT) <<  0) |
		    ((_page_cachable_default >> _CACHE_SHIFT) << 25) |
		    ((_page_cachable_default >> _CACHE_SHIFT) << 28));
	write_c0_config(config0);
	NXP_BARRIER();
}

1786
static int cca = -1;
1787 1788 1789 1790 1791

static int __init cca_setup(char *str)
{
	get_option(&str, &cca);

1792
	return 0;
1793 1794
}

1795
early_param("cca", cca_setup);
1796

1797
static void coherency_setup(void)
L
Linus Torvalds 已提交
1798
{
1799 1800 1801 1802 1803 1804
	if (cca < 0 || cca > 7)
		cca = read_c0_config() & CONF_CM_CMASK;
	_page_cachable_default = cca << _CACHE_SHIFT;

	pr_debug("Using cache attribute %d\n", cca);
	change_c0_config(CONF_CM_CMASK, cca);
L
Linus Torvalds 已提交
1805 1806 1807 1808 1809 1810 1811 1812

	/*
	 * c0_status.cu=0 specifies that updates by the sc instruction use
	 * the coherency mode specified by the TLB; 1 means cachable
	 * coherent update on write will be used.  Not all processors have
	 * this bit and; some wire it to zero, others like Toshiba had the
	 * silly idea of putting something else there ...
	 */
1813
	switch (current_cpu_type()) {
L
Linus Torvalds 已提交
1814 1815 1816 1817 1818 1819 1820 1821
	case CPU_R4000PC:
	case CPU_R4000SC:
	case CPU_R4000MC:
	case CPU_R4400PC:
	case CPU_R4400SC:
	case CPU_R4400MC:
		clear_c0_config(CONF_CU);
		break;
1822
	/*
R
Ralf Baechle 已提交
1823
	 * We need to catch the early Alchemy SOCs with
1824 1825
	 * the write-only co_config.od bit and set it back to one on:
	 * Au1000 rev DA, HA, HB;  Au1100 AB, BA, BC, Au1500 AB
1826
	 */
1827
	case CPU_ALCHEMY:
1828 1829
		au1x00_fixup_config_od();
		break;
1830 1831 1832 1833

	case PRID_IMP_PR4450:
		nxp_pr4450_fixup_config();
		break;
L
Linus Torvalds 已提交
1834 1835 1836
	}
}

1837
static void r4k_cache_error_setup(void)
L
Linus Torvalds 已提交
1838
{
1839 1840
	extern char __weak except_vec2_generic;
	extern char __weak except_vec2_sb1;
L
Linus Torvalds 已提交
1841

1842
	switch (current_cpu_type()) {
1843 1844 1845 1846 1847 1848 1849 1850 1851
	case CPU_SB1:
	case CPU_SB1A:
		set_uncached_handler(0x100, &except_vec2_sb1, 0x80);
		break;

	default:
		set_uncached_handler(0x100, &except_vec2_generic, 0x80);
		break;
	}
1852 1853
}

1854
void r4k_cache_init(void)
1855 1856 1857 1858
{
	extern void build_clear_page(void);
	extern void build_copy_page(void);
	struct cpuinfo_mips *c = &current_cpu_data;
L
Linus Torvalds 已提交
1859 1860

	probe_pcache();
1861
	probe_vcache();
L
Linus Torvalds 已提交
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
	setup_scache();

	r4k_blast_dcache_page_setup();
	r4k_blast_dcache_page_indexed_setup();
	r4k_blast_dcache_setup();
	r4k_blast_icache_page_setup();
	r4k_blast_icache_page_indexed_setup();
	r4k_blast_icache_setup();
	r4k_blast_scache_page_setup();
	r4k_blast_scache_page_indexed_setup();
	r4k_blast_scache_setup();
1873 1874 1875 1876
#ifdef CONFIG_EVA
	r4k_blast_dcache_user_page_setup();
	r4k_blast_icache_user_page_setup();
#endif
L
Linus Torvalds 已提交
1877 1878 1879 1880 1881 1882

	/*
	 * Some MIPS32 and MIPS64 processors have physically indexed caches.
	 * This code supports virtually indexed processors and will be
	 * unnecessarily inefficient on physically indexed processors.
	 */
1883
	if (c->dcache.linesz && cpu_has_dc_aliases)
1884 1885 1886 1887 1888
		shm_align_mask = max_t( unsigned long,
					c->dcache.sets * c->dcache.linesz - 1,
					PAGE_SIZE - 1);
	else
		shm_align_mask = PAGE_SIZE-1;
1889 1890 1891 1892

	__flush_cache_vmap	= r4k__flush_cache_vmap;
	__flush_cache_vunmap	= r4k__flush_cache_vunmap;

R
Ralf Baechle 已提交
1893
	flush_cache_all		= cache_noop;
L
Linus Torvalds 已提交
1894 1895 1896 1897 1898
	__flush_cache_all	= r4k___flush_cache_all;
	flush_cache_mm		= r4k_flush_cache_mm;
	flush_cache_page	= r4k_flush_cache_page;
	flush_cache_range	= r4k_flush_cache_range;

1899 1900
	__flush_kernel_vmap_range = r4k_flush_kernel_vmap_range;

L
Linus Torvalds 已提交
1901 1902
	flush_cache_sigtramp	= r4k_flush_cache_sigtramp;
	flush_icache_all	= r4k_flush_icache_all;
1903
	local_flush_data_cache_page	= local_r4k_flush_data_cache_page;
L
Linus Torvalds 已提交
1904 1905
	flush_data_cache_page	= r4k_flush_data_cache_page;
	flush_icache_range	= r4k_flush_icache_range;
1906
	local_flush_icache_range	= local_r4k_flush_icache_range;
1907 1908
	__flush_icache_user_range	= r4k_flush_icache_range;
	__local_flush_icache_user_range	= local_r4k_flush_icache_range;
L
Linus Torvalds 已提交
1909

1910
#if defined(CONFIG_DMA_NONCOHERENT) || defined(CONFIG_DMA_MAYBE_COHERENT)
1911 1912 1913 1914 1915 1916 1917 1918 1919
	if (coherentio) {
		_dma_cache_wback_inv	= (void *)cache_noop;
		_dma_cache_wback	= (void *)cache_noop;
		_dma_cache_inv		= (void *)cache_noop;
	} else {
		_dma_cache_wback_inv	= r4k_dma_cache_wback_inv;
		_dma_cache_wback	= r4k_dma_cache_wback_inv;
		_dma_cache_inv		= r4k_dma_cache_inv;
	}
L
Linus Torvalds 已提交
1920 1921 1922 1923
#endif

	build_clear_page();
	build_copy_page();
1924 1925 1926 1927 1928 1929

	/*
	 * We want to run CMP kernels on core with and without coherent
	 * caches. Therefore, do not use CONFIG_MIPS_CMP to decide whether
	 * or not to flush caches.
	 */
1930
	local_r4k___flush_cache_all(NULL);
1931

1932
	coherency_setup();
1933
	board_cache_error_setup = r4k_cache_error_setup;
1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961

	/*
	 * Per-CPU overrides
	 */
	switch (current_cpu_type()) {
	case CPU_BMIPS4350:
	case CPU_BMIPS4380:
		/* No IPI is needed because all CPUs share the same D$ */
		flush_data_cache_page = r4k_blast_dcache_page;
		break;
	case CPU_BMIPS5000:
		/* We lose our superpowers if L2 is disabled */
		if (c->scache.flags & MIPS_CACHE_NOT_PRESENT)
			break;

		/* I$ fills from D$ just by emptying the write buffers */
		flush_cache_page = (void *)b5k_instruction_hazard;
		flush_cache_range = (void *)b5k_instruction_hazard;
		flush_cache_sigtramp = (void *)b5k_instruction_hazard;
		local_flush_data_cache_page = (void *)b5k_instruction_hazard;
		flush_data_cache_page = (void *)b5k_instruction_hazard;
		flush_icache_range = (void *)b5k_instruction_hazard;
		local_flush_icache_range = (void *)b5k_instruction_hazard;


		/* Optimization: an L2 flush implicitly flushes the L1 */
		current_cpu_data.options |= MIPS_CPU_INCLUSIVE_CACHES;
		break;
1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975
	case CPU_LOONGSON3:
		/* Loongson-3 maintains cache coherency by hardware */
		__flush_cache_all	= cache_noop;
		__flush_cache_vmap	= cache_noop;
		__flush_cache_vunmap	= cache_noop;
		__flush_kernel_vmap_range = (void *)cache_noop;
		flush_cache_mm		= (void *)cache_noop;
		flush_cache_page	= (void *)cache_noop;
		flush_cache_range	= (void *)cache_noop;
		flush_cache_sigtramp	= (void *)cache_noop;
		flush_icache_all	= (void *)cache_noop;
		flush_data_cache_page	= (void *)cache_noop;
		local_flush_data_cache_page	= (void *)cache_noop;
		break;
1976
	}
L
Linus Torvalds 已提交
1977
}
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000

static int r4k_cache_pm_notifier(struct notifier_block *self, unsigned long cmd,
			       void *v)
{
	switch (cmd) {
	case CPU_PM_ENTER_FAILED:
	case CPU_PM_EXIT:
		coherency_setup();
		break;
	}

	return NOTIFY_OK;
}

static struct notifier_block r4k_cache_pm_notifier_block = {
	.notifier_call = r4k_cache_pm_notifier,
};

int __init r4k_cache_init_pm(void)
{
	return cpu_pm_register_notifier(&r4k_cache_pm_notifier_block);
}
arch_initcall(r4k_cache_init_pm);