diff options
Diffstat (limited to 'docs/platform-migration-guide.rst')
-rw-r--r-- | docs/platform-migration-guide.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/platform-migration-guide.rst b/docs/platform-migration-guide.rst index 57fce17ba..ca7554693 100644 --- a/docs/platform-migration-guide.rst +++ b/docs/platform-migration-guide.rst @@ -164,6 +164,11 @@ for the ``plat_psci_ops`` structure which is declared as : unsigned int power_state, psci_power_state_t *output_state); int (*get_node_hw_state)(u_register_t mpidr, unsigned int power_level); + int (*mem_protect_chk)(uintptr_t base, u_register_t length); + int (*read_mem_protect)(int *val); + int (*write_mem_protect)(int val); + int (*system_reset2)(int is_vendor, + int reset_type, u_register_t cookie); } 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>`__. |