aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/arm32/debug-pl011.inc
blob: 6954aeb66096d19d45236e2faf50b4fba9db65a3 (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
/*
 * xen/arch/arm/arm32/debug-pl011.inc
 *
 * PL011 specific debug code
 *
 * Copyright (c) 2013 Citrix Systems.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#define EARLY_UART_BASE_ADDRESS 0x1c090000

/* PL011 UART initialization
 * rb: register which contains the UART base address
 * rc: scratch register 1
 * rd: scratch register 2 (unused here) */
.macro early_uart_init rb, rc, rd
        mov   \rc, #0x0
        str   \rc, [\rb, #0x28]     /* -> UARTFBRD (Baud divisor fraction) */
        mov   \rc, #0x4             /* 7.3728MHz / 0x4 == 16 * 115200 */
        str   \rc, [\rb, #0x24]     /* -> UARTIBRD (Baud divisor integer) */
        mov   \rc, #0x60            /* 8n1 */
        str   \rc, [\rb, #0x2C]     /* -> UARTLCR_H (Line control) */
        ldr   \rc, =0x00000301      /* RXE | TXE | UARTEN */
        str   \rc, [\rb, #0x30]     /* -> UARTCR (Control Register) */
.endm

/* PL011 UART wait UART to be ready to transmit
 * rb: register which contains the UART base address
 * rc: scratch register */
.macro early_uart_ready rb, rc
1:
        ldr   \rc, [\rb, #0x18]     /* <- UARTFR (Flag register) */
        tst   \rc, #0x8             /* Check BUSY bit */
        bne   1b                    /* Wait for the UART to be ready */
.endm

/* PL011 UART transmit character
 * rb: register which contains the UART base address
 * rt: register which contains the character to transmit */
.macro early_uart_transmit rb, rt
        str   \rt, [\rb]            /* -> UARTDR (Data Register) */
.endm

/*
 * Local variables:
 * mode: ASM
 * indent-tabs-mode: nil
 * End:
 */