summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRoberto Vargas <roberto.vargas@arm.com>2017-10-13 12:24:09 +0100
committerRoberto Vargas <roberto.vargas@arm.com>2017-10-13 12:39:47 +0100
commit8e923323ce21f761a950f13b7479fb72927f2882 (patch)
treecc4ad97c7ac110c9912a6fc28ac783e0cd8c2677 /docs
parent829e97d73821639f46866ea3028fe38016f6f774 (diff)
Add missed fields in documentation of plat_psci_ops
Change-Id: Ie4ee8aa2627573c95549927c9ac4e8a963035359 Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/platform-migration-guide.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/platform-migration-guide.rst b/docs/platform-migration-guide.rst
index 638033e4..57fce17b 100644
--- a/docs/platform-migration-guide.rst
+++ b/docs/platform-migration-guide.rst
@@ -158,6 +158,12 @@ for the ``plat_psci_ops`` structure which is declared as :
int (*validate_ns_entrypoint)(unsigned long ns_entrypoint);
void (*get_sys_suspend_power_state)(
psci_power_state_t *req_state);
+ int (*get_pwr_lvl_state_idx)(plat_local_state_t pwr_domain_state,
+ int pwrlvl);
+ int (*translate_power_state_by_mpidr)(u_register_t mpidr,
+ unsigned int power_state,
+ psci_power_state_t *output_state);
+ int (*get_node_hw_state)(u_register_t mpidr, unsigned int power_level);
} plat_psci_ops_t;
The description of these handlers can be found in the `Porting Guide <porting-guide.rst#user-content-function--plat_setup_psci_ops-mandatory>`__.