]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
Tegra186: clean CPU wake times from L2 cache
authorMustafa Yigit Bilgen <mbilgen@nvidia.com>
Sat, 3 Sep 2016 02:30:22 +0000 (19:30 -0700)
committerVarun Wadekar <vwadekar@nvidia.com>
Wed, 5 Apr 2017 21:09:51 +0000 (14:09 -0700)
When entering C7, ATF disables caches and flushes the L1 cache. However,
wake_time[cpu] can still remain in the L2 cache, causing later reads to it
to fetch from DRAM. This will read stale values.

Fix this by aligning wake_time[cpu] to cache lines, and explicitly cleaning it
before disabling caches.

Change-Id: Id73d095b479677595a6b3dd0abb240a1fef5f311
Signed-off-by: Mustafa Yigit Bilgen <mbilgen@nvidia.com>
Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
plat/nvidia/tegra/soc/t186/plat_psci_handlers.c

index 3582878708890f0759489a396ab122515a978d20..8485e04452ebf0950d212099e0201f994e2b1bae 100644 (file)
@@ -63,7 +63,9 @@ extern uint32_t __tegra186_cpu_reset_handler_data,
 #define TEGRA186_SE_CONTEXT_SIZE       3
 
 static uint32_t se_regs[TEGRA186_SE_CONTEXT_SIZE];
-static unsigned int wake_time[PLATFORM_CORE_COUNT];
+static struct t18x_psci_percpu_data {
+       unsigned int wake_time;
+} __aligned(CACHE_WRITEBACK_GRANULE) percpu_data[PLATFORM_CORE_COUNT];
 
 /* System power down state */
 uint32_t tegra186_system_powerdn_state = TEGRA_ARI_MISC_CCPLEX_SHUTDOWN_POWER_OFF;
@@ -75,9 +77,19 @@ int32_t tegra_soc_validate_power_state(unsigned int power_state,
        int cpu = plat_my_core_pos();
 
        /* save the core wake time (us) */
-       wake_time[cpu] = (power_state  >> TEGRA186_WAKE_TIME_SHIFT) &
+       percpu_data[cpu].wake_time = (power_state >> TEGRA186_WAKE_TIME_SHIFT) &
                         TEGRA186_WAKE_TIME_MASK;
 
+       /*
+        * Clean percpu_data[cpu] to DRAM. This needs to be done to ensure that
+        * the correct value is read in tegra_soc_pwr_domain_suspend(), which
+        * is called with caches disabled. It is possible to read a stale value
+        * from DRAM in that function, because the L2 cache is not flushed
+        * unless the cluster is entering CC6/CC7.
+        */
+       clean_dcache_range((uint64_t)&percpu_data[cpu],
+                       sizeof(percpu_data[cpu]));
+
        /* Sanity check the requested state id */
        switch (state_id) {
        case PSTATE_ID_CORE_IDLE:
@@ -121,7 +133,7 @@ int tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state)
                val = (stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ?
                        TEGRA_ARI_CORE_C6 : TEGRA_ARI_CORE_C7;
                (void)mce_command_handler(MCE_CMD_ENTER_CSTATE, val,
-                               wake_time[cpu], 0);
+                               percpu_data[cpu].wake_time, 0);
 
        } else if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
 
@@ -193,7 +205,8 @@ plat_local_state_t tegra_soc_get_target_pwr_state(unsigned int lvl,
 
                /* Check if CCx state is allowed. */
                ret = mce_command_handler(MCE_CMD_IS_CCX_ALLOWED,
-                               TEGRA_ARI_CORE_C7, wake_time[cpu], 0);
+                               TEGRA_ARI_CORE_C7, percpu_data[cpu].wake_time,
+                               0);
                if (ret)
                        return PSTATE_ID_CORE_POWERDN;
        }