aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2015-03-12 10:48:10 -0400
committerThierry Reding <treding@nvidia.com>2015-05-04 09:09:36 -0400
commit6f0a4d0c26f17e93f296e43c7b9f44733ea188ae (patch)
treebcc3426a5639d2837186adc3f8d52a09962f1a49
parent242b1d713386e8e2fd7f62cc1ed4681a12290848 (diff)
memory: tegra: Disable ARBITRATION_EMEM interrupt
As this interrupt is just for development purposes, as the TRM says, and the sheer amount of interrupts fired can seriously disrupt userspace when testing the lower frequencies supported by the EMC. From the TRM: "There is one performance warning type interrupt: ARBITRATION_EMEM. It fires when the MC detects that a request has been pending in the Row Sorter long enough to hit the DEADLOCK_PREVENTION_SLACK_THRESHOLD. In addition to true performance problems, this interrupt may fire in situations such as clock-change where the EMC backpressures pending traffic for long periods of time. This interrupt helps developers identify and debug performance issues and configuration issues." Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r--drivers/memory/tegra/mc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/memory/tegra/mc.c b/drivers/memory/tegra/mc.c
index 9b7c1645fd59..918236457c16 100644
--- a/drivers/memory/tegra/mc.c
+++ b/drivers/memory/tegra/mc.c
@@ -276,8 +276,8 @@ static int tegra_mc_probe(struct platform_device *pdev)
276 276
277 value = MC_INT_DECERR_MTS | MC_INT_SECERR_SEC | MC_INT_DECERR_VPR | 277 value = MC_INT_DECERR_MTS | MC_INT_SECERR_SEC | MC_INT_DECERR_VPR |
278 MC_INT_INVALID_APB_ASID_UPDATE | MC_INT_INVALID_SMMU_PAGE | 278 MC_INT_INVALID_APB_ASID_UPDATE | MC_INT_INVALID_SMMU_PAGE |
279 MC_INT_ARBITRATION_EMEM | MC_INT_SECURITY_VIOLATION | 279 MC_INT_SECURITY_VIOLATION | MC_INT_DECERR_EMEM;
280 MC_INT_DECERR_EMEM; 280
281 mc_writel(mc, value, MC_INTMASK); 281 mc_writel(mc, value, MC_INTMASK);
282 282
283 return 0; 283 return 0;