summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-rockchip/rk_early_print.c
blob: a1c14b021049ef051bbe9cefeb6b2b62c8ad8efd (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * (C) Copyright 2015 Rockchip Electronics Co., Ltd
 *
 * SPDX-License-Identifier:     GPL-2.0+
 */

#include <asm/io.h>
#include <asm/arch/uart.h>
#include <common.h>

static struct rk_uart *uart_ptr;

static void uart_wrtie_byte(char byte)
{
	writel(byte, &uart_ptr->rbr);
	while (!(readl(&uart_ptr->lsr) & 0x40))
		;
}

void print(char *s)
{
	while (*s) {
		if (*s == '\n')
			uart_wrtie_byte('\r');
	    uart_wrtie_byte(*s);
	    s++;
	}
}

void print_hex(unsigned int n)
{
	int i;
	int temp;

	uart_wrtie_byte('0');
	uart_wrtie_byte('x');

	for (i = 8; i > 0; i--) {
		temp = (n >> (i - 1) * 4) & 0x0f;
		if (temp < 10)
			uart_wrtie_byte((char)(temp + '0'));
		else
			uart_wrtie_byte((char)(temp - 10 + 'a'));
	}
	uart_wrtie_byte('\n');
	uart_wrtie_byte('\r');
}

/*
 * TODO: since rk3036 only 4K sram to use in SPL, for saving space,
 * we implement uart driver this way, we should convert this to use
 * ns16550 driver in future, which support DEBUG_UART in the standard way
 */
void rk_uart_init(void *base)
{
	uart_ptr = (struct rk_uart *)base;
	writel(0x83, &uart_ptr->lcr);
	writel(0x0d, &uart_ptr->rbr);
	writel(0x03, &uart_ptr->lcr);

	/* fifo enable, sfe is shadow register of FCR[0] */
	writel(0x01, &uart_ptr->sfe);
}
OpenPOWER on IntegriCloud