blob: 4ff687cd8cce89a158a190707f3a80f9447d9a8a [file] [log] [blame]
Nishanth Menonf49cf9e2017-09-20 01:32:13 -05001/*
Deepika Bhavnanid51727e2019-12-13 10:53:34 -06002 * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
Nishanth Menonf49cf9e2017-09-20 01:32:13 -05003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +01007#ifndef BOARD_DEF_H
8#define BOARD_DEF_H
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/utils_def.h>
Nishanth Menonf49cf9e2017-09-20 01:32:13 -050011
12/* The ports must be in order and contiguous */
Deepika Bhavnanid51727e2019-12-13 10:53:34 -060013#define K3_CLUSTER0_CORE_COUNT U(2)
14#define K3_CLUSTER1_CORE_COUNT U(2)
15#define K3_CLUSTER2_CORE_COUNT U(2)
16#define K3_CLUSTER3_CORE_COUNT U(2)
Nishanth Menonf49cf9e2017-09-20 01:32:13 -050017
18/*
19 * This RAM will be used for the bootloader including code, bss, and stacks.
20 * It may need to be increased if BL31 grows in size.
Nishanth Menon20125262021-03-26 02:06:40 -050021 *
22 * The link addresses are determined by SEC_SRAM_BASE + offset.
23 * When ENABLE_PIE is set, the TF images can be loaded anywhere, so
24 * SEC_SRAM_BASE is really arbitrary.
25 *
26 * When ENABLE_PIE is unset, SEC_SRAM_BASE should be chosen so that
27 * it matches to the physical address where BL31 is loaded, that is,
28 * SEC_SRAM_BASE should be the base address of the RAM region.
29 *
30 * Lets make things explicit by mapping SRAM_BASE to 0x0 since ENABLE_PIE is
31 * defined as default for our platform.
Nishanth Menonf49cf9e2017-09-20 01:32:13 -050032 */
Nishanth Menon20125262021-03-26 02:06:40 -050033#define SEC_SRAM_BASE UL(0x00000000) /* PIE remapped on fly */
Nishanth Menonc36f7402021-03-26 02:01:38 -050034#define SEC_SRAM_SIZE UL(0x00020000) /* 128k */
Nishanth Menonf49cf9e2017-09-20 01:32:13 -050035
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010036#define PLAT_MAX_OFF_STATE U(2)
37#define PLAT_MAX_RET_STATE U(1)
Nishanth Menonf49cf9e2017-09-20 01:32:13 -050038
Nishanth Menonc36f7402021-03-26 02:01:38 -050039#define PLAT_PROC_START_ID U(32)
40#define PLAT_PROC_DEVICE_START_ID U(202)
41#define PLAT_CLUSTER_DEVICE_START_ID U(198)
Andrew F. Davis60541b12018-05-24 11:15:42 -050042
Antonio Nino Diaz6f3ccc52018-07-20 09:17:26 +010043#endif /* BOARD_DEF_H */