pmf.h 1.85 KB
Newer Older
1
/*
2
 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
7
8
#ifndef PMF_H
#define PMF_H
9

10
11
12
#include <lib/cassert.h>
#include <lib/pmf/pmf_helpers.h>
#include <lib/utils_def.h>
13
14
15
16

/*
 * Constants used for/by PMF services.
 */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
17
#define PMF_ARM_TIF_IMPL_ID	U(0x41)
18
#define PMF_TID_SHIFT		0
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
19
#define PMF_TID_MASK		(U(0xFF) << PMF_TID_SHIFT)
20
#define PMF_SVC_ID_SHIFT	10
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
21
#define PMF_SVC_ID_MASK		(U(0x3F) << PMF_SVC_ID_SHIFT)
22
#define PMF_IMPL_ID_SHIFT	24
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
23
#define PMF_IMPL_ID_MASK	(U(0xFF) << PMF_IMPL_ID_SHIFT)
24
25
26
27
28
29
30
31
32
33
34

/*
 * Flags passed to PMF_REGISTER_SERVICE
 */
#define PMF_STORE_ENABLE	(1 << 0)
#define PMF_DUMP_ENABLE		(1 << 1)

/*
 * Flags passed to PMF_GET_TIMESTAMP_XXX
 * and PMF_CAPTURE_TIMESTAMP
 */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
35
36
#define PMF_CACHE_MAINT		(U(1) << 0)
#define PMF_NO_CACHE_MAINT	U(0)
37
38
39
40

/*
 * Defines for PMF SMC function ids.
 */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
41
42
#define PMF_SMC_GET_TIMESTAMP_32	U(0x82000010)
#define PMF_SMC_GET_TIMESTAMP_64	U(0xC2000010)
43
44
45
46
47
48
#define PMF_NUM_SMC_CALLS		2

/*
 * The macros below are used to identify
 * PMF calls from the SMC function ID.
 */
Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
49
50
#define PMF_FID_MASK	U(0xffe0)
#define PMF_FID_VALUE	U(0)
51
52
53
54
#define is_pmf_fid(_fid)	(((_fid) & PMF_FID_MASK) == PMF_FID_VALUE)

/* Following are the supported PMF service IDs */
#define PMF_PSCI_STAT_SVC_ID	0
dp-arm's avatar
dp-arm committed
55
#define PMF_RT_INSTR_SVC_ID	1
56
57
58
59
60
61
62
63

/*******************************************************************************
 * Function & variable prototypes
 ******************************************************************************/
/* PMF common functions */
int pmf_get_timestamp_smc(unsigned int tid,
		u_register_t mpidr,
		unsigned int flags,
64
		unsigned long long *ts_value);
65
66
67
68
69
70
71
72
73
74
int pmf_setup(void);
uintptr_t pmf_smc_handler(unsigned int smc_fid,
		u_register_t x1,
		u_register_t x2,
		u_register_t x3,
		u_register_t x4,
		void *cookie,
		void *handle,
		u_register_t flags);

Antonio Nino Diaz's avatar
Antonio Nino Diaz committed
75
#endif /* PMF_H */