Adding new optional PSCI hook pwr_domain_on_finish_late
[project/bcm63xx/atf.git] / docs / getting_started / porting-guide.rst
index 5786dd38495f69323dd3ff6ee4a9ee5c9a8c4ce3..af36b6a5f208bbdc8b27a36b35195ed2e1e6907f 100644 (file)
@@ -2202,6 +2202,19 @@ immediately before the CPU was turned on. It indicates which power domains
 above the CPU might require initialization due to having previously been in
 low power states. The generic code expects the handler to succeed.
 
+plat_psci_ops.pwr_domain_on_finish_late() [optional]
+...........................................................
+
+This optional function is called by the PSCI implementation after the calling
+CPU is fully powered on with respective data caches enabled. The calling CPU and
+the associated cluster are guaranteed to be participating in coherency. This
+function gives the flexibility to perform any platform-specific actions safely,
+such as initialization or modification of shared data structures, without the
+overhead of explicit cache maintainace operations.
+
+The ``target_state`` has a similar meaning as described in the ``pwr_domain_on_finish()``
+operation. The generic code expects the handler to succeed.
+
 plat_psci_ops.pwr_domain_suspend_finish()
 .........................................