summaryrefslogtreecommitdiff
path: root/plat/ti
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2019-02-11 14:44:46 -0600
committerAndrew F. Davis <afd@ti.com>2019-02-11 16:13:30 -0600
commit34b3eb14c85122ec822c06e6b8f404ee30bd984c (patch)
tree484e4ae921a2e5633da8ad1420d2faac6b2fdff7 /plat/ti
parenta9ae424ed5a17819bf10f7e88d4c0b4ca5ac096c (diff)
ti: k3: common: Do not release processor control on startup
ATF should be the only host needing to control a processor that it has started. ATF will need this control to stop the core later. Do not relinquish control of a core after starting the core. Signed-off-by: Andrew F. Davis <afd@ti.com>
Diffstat (limited to 'plat/ti')
-rw-r--r--plat/ti/k3/common/k3_psci.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/plat/ti/k3/common/k3_psci.c b/plat/ti/k3/common/k3_psci.c
index afe465e5..f66f12a3 100644
--- a/plat/ti/k3/common/k3_psci.c
+++ b/plat/ti/k3/common/k3_psci.c
@@ -71,12 +71,6 @@ static int k3_pwr_domain_on(u_register_t mpidr)
return PSCI_E_INTERN_FAIL;
}
- ret = ti_sci_proc_release(proc);
- if (ret) {
- /* this is not fatal */
- WARN("Could not release processor control: %d\n", ret);
- }
-
return PSCI_E_SUCCESS;
}