From: Markos Chandras <markos.chandras@imgtec.com>
Date: Thu, 9 Jan 2014 16:04:51 +0000 (+0000)
Subject: MIPS: kernel: cpu-probe: Enable EVA option on supported cores
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=49016748ec45408ad89d10308ac903a2202ff305;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git

MIPS: kernel: cpu-probe: Enable EVA option on supported cores

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
---

diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index ee5de360636d..e225b0d369e8 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -386,6 +386,9 @@ static inline unsigned int decode_config5(struct cpuinfo_mips *c)
 	config5 &= ~MIPS_CONF5_UFR;
 	write_c0_config5(config5);
 
+	if (config5 & MIPS_CONF5_EVA)
+		c->options |= MIPS_CPU_EVA;
+
 	return config5 & MIPS_CONF_M;
 }