blob: 134cad9e0e1e4f90861840e8ccf37db8aeeae165 [file] [log] [blame]
Soby Mathewb911cc72017-02-13 12:46:28 +00001/*
Antonio Nino Diaz3ce0e772018-07-16 17:32:37 +01002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathewb911cc72017-02-13 12:46:28 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewb911cc72017-02-13 12:46:28 +00005 */
6
Antonio Nino Diaz3ce0e772018-07-16 17:32:37 +01007#ifndef PSCI_LIB_H
8#define PSCI_LIB_H
Soby Mathewb911cc72017-02-13 12:46:28 +00009
10#include <ep_info.h>
11
12#ifndef __ASSEMBLY__
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010013#include <cdefs.h>
14#include <stdint.h>
Soby Mathewb911cc72017-02-13 12:46:28 +000015
16/*******************************************************************************
17 * Optional structure populated by the Secure Payload Dispatcher to be given a
18 * chance to perform any bookkeeping before PSCI executes a power management
19 * operation. It also allows PSCI to determine certain properties of the SP e.g.
20 * migrate capability etc.
21 ******************************************************************************/
22typedef struct spd_pm_ops {
23 void (*svc_on)(u_register_t target_cpu);
Antonio Nino Diaz3ce0e772018-07-16 17:32:37 +010024 int32_t (*svc_off)(u_register_t __unused unused);
Soby Mathewb911cc72017-02-13 12:46:28 +000025 void (*svc_suspend)(u_register_t max_off_pwrlvl);
Antonio Nino Diaz3ce0e772018-07-16 17:32:37 +010026 void (*svc_on_finish)(u_register_t __unused unused);
Soby Mathewb911cc72017-02-13 12:46:28 +000027 void (*svc_suspend_finish)(u_register_t max_off_pwrlvl);
28 int32_t (*svc_migrate)(u_register_t from_cpu, u_register_t to_cpu);
29 int32_t (*svc_migrate_info)(u_register_t *resident_cpu);
30 void (*svc_system_off)(void);
31 void (*svc_system_reset)(void);
32} spd_pm_ops_t;
33
34/*
35 * Function prototype for the warmboot entrypoint function which will be
36 * programmed in the mailbox by the platform.
37 */
38typedef void (*mailbox_entrypoint_t)(void);
39
40/******************************************************************************
41 * Structure to pass PSCI Library arguments.
42 *****************************************************************************/
43typedef struct psci_lib_args {
44 /* The version information of PSCI Library Interface */
45 param_header_t h;
46 /* The warm boot entrypoint function */
47 mailbox_entrypoint_t mailbox_ep;
48} psci_lib_args_t;
49
50/* Helper macro to set the psci_lib_args_t structure at runtime */
51#define SET_PSCI_LIB_ARGS_V1(_p, _entry) do { \
52 SET_PARAM_HEAD(_p, PARAM_PSCI_LIB_ARGS, VERSION_1, 0); \
53 (_p)->mailbox_ep = (_entry); \
54 } while (0)
55
56/* Helper macro to define the psci_lib_args_t statically */
57#define DEFINE_STATIC_PSCI_LIB_ARGS_V1(_name, _entry) \
58 static const psci_lib_args_t (_name) = { \
59 .h.type = (uint8_t)PARAM_PSCI_LIB_ARGS, \
60 .h.version = (uint8_t)VERSION_1, \
61 .h.size = (uint16_t)sizeof(_name), \
Antonio Nino Diaz78a95a62018-07-17 15:10:08 +010062 .h.attr = 0U, \
Soby Mathewb911cc72017-02-13 12:46:28 +000063 .mailbox_ep = (_entry) \
64 }
65
66/* Helper macro to verify the pointer to psci_lib_args_t structure */
Antonio Nino Diaz78a95a62018-07-17 15:10:08 +010067#define VERIFY_PSCI_LIB_ARGS_V1(_p) (((_p) != NULL) \
Soby Mathewb911cc72017-02-13 12:46:28 +000068 && ((_p)->h.type == PARAM_PSCI_LIB_ARGS) \
69 && ((_p)->h.version == VERSION_1) \
70 && ((_p)->h.size == sizeof(*(_p))) \
71 && ((_p)->h.attr == 0) \
Antonio Nino Diaz78a95a62018-07-17 15:10:08 +010072 && ((_p)->mailbox_ep != NULL))
Soby Mathewb911cc72017-02-13 12:46:28 +000073
74/******************************************************************************
75 * PSCI Library Interfaces
76 *****************************************************************************/
77u_register_t psci_smc_handler(uint32_t smc_fid,
78 u_register_t x1,
79 u_register_t x2,
80 u_register_t x3,
81 u_register_t x4,
82 void *cookie,
83 void *handle,
84 u_register_t flags);
85int psci_setup(const psci_lib_args_t *lib_args);
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000086int psci_secondaries_brought_up(void);
Soby Mathewb911cc72017-02-13 12:46:28 +000087void psci_warmboot_entrypoint(void);
88void psci_register_spd_pm_hook(const spd_pm_ops_t *pm);
89void psci_prepare_next_non_secure_ctx(
90 entry_point_info_t *next_image_info);
91#endif /* __ASSEMBLY__ */
92
Antonio Nino Diaz3ce0e772018-07-16 17:32:37 +010093#endif /* PSCI_LIB_H */