summaryrefslogtreecommitdiffstats
path: root/drivers/nxp/console/console_pl011.c
blob: 93f2fc2fcd62d551cd1aed7f3da3d7ad3dec27fe (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 2021 NXP
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#include <assert.h>

#include <common/debug.h>
#include <dcfg.h>
#include <drivers/arm/pl011.h>
#include <drivers/console.h>
#include <lib/utils.h>

/*
 * Perform Arm specific early platform setup. At this moment we only initialize
 * the console and the memory layout.
 */
void plat_console_init(uintptr_t nxp_console_addr, uint32_t uart_clk_div,
			uint32_t baud)
{
	struct sysinfo sys;
	static console_t nxp_console;

	zeromem(&sys, sizeof(sys));
	if (get_clocks(&sys)) {
		ERROR("System clocks are not set\n");
		panic();
	}

	console_pl011_register(nxp_console_addr,
			      (sys.freq_platform/uart_clk_div),
			       baud, &nxp_console);
}