blob: a23fc506f0f236d2469abe0a71163c395616a0e7 [file] [log] [blame]
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02001/*
2 * Copyright (c) 2018, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __ARM_DEF_H__
8#define __ARM_DEF_H__
9
10/******************************************************************************
11 * Definitions common to all ARM standard platforms
12 *****************************************************************************/
13
14/*******************************************************************************
15 * Location of the memory buffer shared between Normal World (i.e. TFTF) and the
16 * Secure Partition (e.g. Cactus) to pass data associated to secure service
17 * requests.
18 * Note: This address has to match the one used in TF (see ARM_SP_IMAGE_NS_BUF_*
19 * macros).
20 ******************************************************************************/
21#define ARM_SECURE_SERVICE_BUFFER_BASE 0xff600000ull
22#define ARM_SECURE_SERVICE_BUFFER_SIZE 0x10000ull
23
24#endif /* __ARM_DEF_H__ */