blob: a685c319dbf33573901ffa89d86fb386123d56f8 [file] [log] [blame]
Antonio Nino Diaz9c852aa2019-01-31 11:01:10 +00001/*
2 * Copyright (c) 2019, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <cdefs.h>
8#include <stdint.h>
9
10/*
11 * Instruction pointer authentication key A. The low 64-bit are at [0], and the
Sandrine Bailleux6369ded2019-03-13 18:02:09 +010012 * high bits at [1].
Antonio Nino Diaz9c852aa2019-01-31 11:01:10 +000013 */
Sandrine Bailleux6369ded2019-03-13 18:02:09 +010014uint64_t plat_apiakey[2];
Antonio Nino Diaz9c852aa2019-01-31 11:01:10 +000015
16/*
17 * This is only a toy implementation to generate a seemingly random 128-bit key
18 * from sp and x30 values. A production system must re-implement this function
19 * to generate keys from a reliable randomness source.
20 */
21uint64_t *plat_init_apiakey(void)
22{
23 uintptr_t return_addr = (uintptr_t)__builtin_return_address(0U);
24 uintptr_t frame_addr = (uintptr_t)__builtin_frame_address(0U);
25
26 plat_apiakey[0] = (return_addr << 13) ^ frame_addr;
27 plat_apiakey[1] = (frame_addr << 15) ^ return_addr;
28
29 return plat_apiakey;
30}