aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/arm32/debug-exynos4210.inc
blob: 39f2db360b14c1c18b49b35ec9ea494e91b17b51 (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
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * xen/arch/arm/arm32/debug-exynos4210.inc
 *
 * Exynos 5 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.
 */

#include <asm/exynos4210-uart.h>

/* Exynos 5 UART initialization
 * rb: register which contains the UART base address
 * rc: scratch register 1
 * rd: scratch register 2 */
.macro early_uart_init rb rc rd
        /* init clock */
        ldr   \rc, =0x10020000
        /* select MPLL (800MHz) source clock */
        ldr   \rd, [\rc, #0x250]
        and   \rd, \rd, #(~(0xf<<8))
        orr   \rd, \rd, #(0x6<<8)
        str   \rd, [\rc, #0x250]
        /* ratio 800/(7+1) */
        ldr   \rd, [\rc, #0x558]
        and   \rd, \rd, #(~(0xf<<8))
        orr   \rd, \rd, #(0x7<<8)
        str   \rd, [\rc, #0x558]

        mov   \rc, #(100000000 / EARLY_PRINTK_BAUD % 16)
        str   \rc, [\rb, #UFRACVAL]     /* -> UFRACVAL (Baud divisor fraction) */
        mov   \rc, #(100000000 / EARLY_PRINTK_BAUD / 16 - 1)
        str   \rc, [\rb, #UBRDIV]       /* -> UBRDIV (Baud divisor integer) */
        mov   \rc, #3                   /* 8n1 */
        str   \rc, [\rb, #ULCON]        /* -> (Line control) */
        ldr   \rc, =UCON_TX_IRQ         /* TX IRQMODE */
        str   \rc, [\rb, #UCON]         /* -> (Control Register) */
        mov   \rc, #0x0
        str   \rc, [\rb, #UFCON]        /* disable FIFO */
        mov   \rc, #0x0
        str   \rc, [\rb, #UMCON]        /* no auto flow control */
.endm

/* Exynos 5 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, #UTRSTAT]   /* <- UTRSTAT (Flag register) */
        tst   \rc, #UTRSTAT_TXFE     /* Check BUSY bit */
        beq   1b                     /* Wait for the UART to be ready */
.endm

/* Exynos 5 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, #UTXH]      /* -> UTXH (Data Register) */
.endm

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