2 * Copyright (C) 2016 Broadcom
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 #include <linux/serial_reg.h>
15 /* Physical register offset and virtual register offset */
16 #define REG_PHYS_BASE 0xf0000000
17 #define REG_VIRT_BASE 0xfc000000
18 #define REG_PHYS_ADDR(x) ((x) + REG_PHYS_BASE)
20 /* Product id can be read from here */
21 #define SUN_TOP_CTRL_BASE REG_PHYS_ADDR(0x404000)
23 #define UARTA_3390 REG_PHYS_ADDR(0x40a900)
24 #define UARTA_7250 REG_PHYS_ADDR(0x40b400)
25 #define UARTA_7260 REG_PHYS_ADDR(0x40c000)
26 #define UARTA_7268 UARTA_7260
27 #define UARTA_7271 UARTA_7268
28 #define UARTA_7364 REG_PHYS_ADDR(0x40b000)
29 #define UARTA_7366 UARTA_7364
30 #define UARTA_74371 REG_PHYS_ADDR(0x406b00)
31 #define UARTA_7439 REG_PHYS_ADDR(0x40a900)
32 #define UARTA_7445 REG_PHYS_ADDR(0x40ab00)
36 #define checkuart(rp, rv, family_id, family) \
37 /* Load family id */ \
38 ldr rp, =family_id ; \
39 /* Compare SUN_TOP_CTRL value against it */ \
41 /* Passed test, load address */ \
42 ldreq rp, =UARTA_##family ; \
43 /* Jump to save UART address */ \
46 .macro addruart, rp, rv, tmp
47 adr \rp, 99f @ actual addr of 99f
48 ldr \rv, [\rp] @ linked addr is stored there
49 sub \rv, \rv, \rp @ offset between the two
50 ldr \rp, [\rp, #4] @ linked brcmstb_uart_config
51 sub \tmp, \rp, \rv @ actual brcmstb_uart_config
52 ldr \rp, [\tmp] @ Load brcmstb_uart_config
53 cmp \rp, #1 @ needs initialization?
54 bne 100f @ no; go load the addresses
55 mov \rv, #0 @ yes; record init is done
58 /* Check SUN_TOP_CTRL base */
59 ldr \rp, =SUN_TOP_CTRL_BASE @ load SUN_TOP_CTRL PA
60 ldr \rv, [\rp, #0] @ get register contents
61 ARM_BE8( rev \rv, \rv )
62 and \rv, \rv, #0xffffff00 @ strip revision bits [7:0]
64 /* Chip specific detection starts here */
65 20: checkuart(\rp, \rv, 0x33900000, 3390)
66 21: checkuart(\rp, \rv, 0x72500000, 7250)
67 22: checkuart(\rp, \rv, 0x72600000, 7260)
68 23: checkuart(\rp, \rv, 0x72680000, 7268)
69 24: checkuart(\rp, \rv, 0x72710000, 7271)
70 25: checkuart(\rp, \rv, 0x73640000, 7364)
71 26: checkuart(\rp, \rv, 0x73660000, 7366)
72 27: checkuart(\rp, \rv, 0x07437100, 74371)
73 28: checkuart(\rp, \rv, 0x74390000, 7439)
74 29: checkuart(\rp, \rv, 0x74450000, 7445)
76 /* No valid UART found */
80 /* Record whichever UART we chose */
81 91: str \rp, [\tmp, #4] @ Store in brcmstb_uart_phys
82 cmp \rp, #0 @ Valid UART address?
83 bne 92f @ Yes, go process it
84 str \rp, [\tmp, #8] @ Store 0 in brcmstb_uart_virt
86 92: and \rv, \rp, #0xffffff @ offset within 16MB section
87 add \rv, \rv, #REG_VIRT_BASE
88 str \rv, [\tmp, #8] @ Store in brcmstb_uart_virt
93 .word brcmstb_uart_config
96 /* Load previously selected UART address */
97 100: ldr \rp, [\tmp, #4] @ Load brcmstb_uart_phys
98 ldr \rv, [\tmp, #8] @ Load brcmstb_uart_virt
101 .macro store, rd, rx:vararg
102 ARM_BE8( rev \rd, \rd )
106 .macro load, rd, rx:vararg
108 ARM_BE8( rev \rd, \rd )
111 .macro senduart,rd,rx
112 store \rd, [\rx, #UART_TX << UART_SHIFT]
115 .macro busyuart,rd,rx
116 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT]
117 and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE
118 teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
122 .macro waituart,rd,rx
126 * Storage for the state maintained by the macros above.
128 * In the kernel proper, this data is located in arch/arm/mach-bcm/brcmstb.c.
129 * That's because this header is included from multiple files, and we only
130 * want a single copy of the data. In particular, the UART probing code above
131 * assumes it's running using physical addresses. This is true when this file
132 * is included from head.o, but not when included from debug.o. So we need
133 * to share the probe results between the two copies, rather than having
134 * to re-run the probing again later.
136 * In the decompressor, we put the symbol/storage right here, since common.c
137 * isn't included in the decompressor build. This symbol gets put in .text
138 * even though it's really data, since .data is discarded from the
139 * decompressor. Luckily, .text is writeable in the decompressor, unless
140 * CONFIG_ZBOOT_ROM. That dependency is handled in arch/arm/Kconfig.debug.
144 /* Debug UART initialization required */
146 /* Debug UART physical address */
148 /* Debug UART virtual address */