mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-20 03:24:25 +00:00
Merge "feat(zynqmp): bump up version of query_data API" into integration
This commit is contained in:
commit
0069933a68
2 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright (c) 2013-2022, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2022-2023, Advanced Micro Devices Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -786,7 +787,7 @@ static enum pm_ret_status feature_check_atf(uint32_t api_id, uint32_t *version,
|
|||
{
|
||||
switch (api_id) {
|
||||
case PM_QUERY_DATA:
|
||||
*version = ATF_API_BASE_VERSION;
|
||||
*version = TFA_API_QUERY_DATA_VERSION;
|
||||
bit_mask[0] = (uint32_t)(PM_QUERY_FEATURE_BITMASK);
|
||||
bit_mask[1] = (uint32_t)(PM_QUERY_FEATURE_BITMASK >> 32);
|
||||
return PM_RET_SUCCESS;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright (c) 2013-2022, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2022-2023, Advanced Micro Devices Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -31,6 +32,9 @@
|
|||
#define FW_API_VERSION_2 (2U)
|
||||
/* Version of APIs implemented in ATF */
|
||||
#define ATF_API_BASE_VERSION (1U)
|
||||
/* Updating the QUERY_DATA API versioning as the bitmask functionality
|
||||
* support is added in the v2.*/
|
||||
#define TFA_API_QUERY_DATA_VERSION (2U)
|
||||
|
||||
/* Capabilities for RAM */
|
||||
#define PM_CAP_ACCESS 0x1U
|
||||
|
|
Loading…
Add table
Reference in a new issue