summaryrefslogtreecommitdiffstats
path: root/plat/marvell/armada/a3k/common/plat_cci.c
blob: 56f091fef4270e5d45b11b66728348a5f51155cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright (C) 2021 Marek Behun <marek.behun@nic.cz>
 *
 * Based on plat/marvell/armada/common/marvell_cci.c
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 * https://spdx.org/licenses
 */

#include <drivers/arm/cci.h>
#include <lib/mmio.h>

#include <plat_marvell.h>

static const int cci_map[] = {
	PLAT_MARVELL_CCI_CLUSTER0_SL_IFACE_IX,
	PLAT_MARVELL_CCI_CLUSTER1_SL_IFACE_IX
};

/*
 * This redefines the weak definition in
 * plat/marvell/armada/common/marvell_cci.c
 */
void plat_marvell_interconnect_init(void)
{
	/*
	 * To better utilize the address space, we remap CCI base address from
	 * the default (0xD8000000) to MVEBU_CCI_BASE.
	 * This has to be done here, rather than in cpu_wins_init(), because
	 * cpu_wins_init() is called later.
	 */
	mmio_write_32(CPU_DEC_CCI_BASE_REG, MVEBU_CCI_BASE >> 20);

	cci_init(PLAT_MARVELL_CCI_BASE, cci_map, ARRAY_SIZE(cci_map));
}