Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a05888d authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] SMTC: The MT ASE requires to initialize c0_pagemask and c0_wired.

parent 8e8a52ed
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1384,6 +1384,13 @@ void __init per_cpu_trap_init(void)
		cpu_cache_init();
		tlb_init();
#ifdef CONFIG_MIPS_MT_SMTC
	} else if (!secondaryTC) {
		/*
		 * First TC in non-boot VPE must do subset of tlb_init()
		 * for MMU countrol registers.
		 */
		write_c0_pagemask(PM_DEFAULT_MASK);
		write_c0_wired(0);
	}
#endif /* CONFIG_MIPS_MT_SMTC */
}