summaryrefslogtreecommitdiffstats
path: root/plat/marvell/armada/a8k/common/plat_bl1_setup.c
blob: f9521c871e46c8b7f31d9c17b33e2ba6b1a19e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (C) 2018 Marvell International Ltd.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 * https://spdx.org/licenses
 */

#include <lib/mmio.h>

#include <plat_marvell.h>

void marvell_bl1_setup_mpps(void)
{
	/* Enable UART MPPs.
	 ** In a normal system, this is done by Bootrom.
	 */
	mmio_write_32(MVEBU_AP_MPP_REGS(1), 0x3000);
	mmio_write_32(MVEBU_AP_MPP_REGS(2), 0x3000);
}