blob: da2fb2c2155a2ac84d242ad76c4de2842aa33d31 [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
2 * Serial port stubs for kernel decompress status messages
3 *
Cyril Chemparathydc2eb762010-05-18 12:51:17 -04004 * Initially based on:
5 * arch/arm/plat-omap/include/mach/uncompress.h
6 *
7 * Original copyrights follow.
8 *
9 * Copyright (C) 2000 RidgeRun, Inc.
10 * Author: Greg Lonnon <glonnon@ridgerun.com>
11 *
12 * Rewritten by:
13 * Author: <source@mvista.com>
14 * 2004 (c) MontaVista Software, Inc.
Russell Kinga09e64f2008-08-05 16:14:15 +010015 *
16 * This file is licensed under the terms of the GNU General Public License
17 * version 2. This program is licensed "as is" without any warranty of any
18 * kind, whether express or implied.
19 */
20
21#include <linux/types.h>
22#include <linux/serial_reg.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010023
Mark A. Greer27428e32009-02-18 14:00:36 -070024#include <asm/mach-types.h>
25
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040026#include <mach/serial.h>
Mark A. Greer27428e32009-02-18 14:00:36 -070027
Rob Herring6f6f6a72012-03-10 10:30:31 -060028#define IOMEM(x) ((void __force __iomem *)(x))
29
Nicolas Pitre8ea0de42011-04-28 17:00:17 -040030u32 *uart;
Mark A. Greer27428e32009-02-18 14:00:36 -070031
Russell Kinga09e64f2008-08-05 16:14:15 +010032/* PORT_16C550A, in polled non-fifo mode */
Russell Kinga09e64f2008-08-05 16:14:15 +010033static void putc(char c)
34{
Russell Kinga09e64f2008-08-05 16:14:15 +010035 while (!(uart[UART_LSR] & UART_LSR_THRE))
36 barrier();
37 uart[UART_TX] = c;
38}
39
40static inline void flush(void)
41{
Russell Kinga09e64f2008-08-05 16:14:15 +010042 while (!(uart[UART_LSR] & UART_LSR_THRE))
43 barrier();
44}
45
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040046static inline void set_uart_info(u32 phys, void * __iomem virt)
47{
Nicolas Pitree020fe32011-09-01 20:32:21 -040048 /*
49 * Get address of some.bss variable and round it down
50 * a la CONFIG_AUTO_ZRELADDR.
51 */
52 u32 ram_start = (u32)&uart & 0xf8000000;
53 u32 *uart_info = (u32 *)(ram_start + DAVINCI_UART_INFO_OFS);
Nicolas Pitre8ea0de42011-04-28 17:00:17 -040054
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040055 uart = (u32 *)phys;
56 uart_info[0] = phys;
57 uart_info[1] = (u32)virt;
58}
59
60#define _DEBUG_LL_ENTRY(machine, phys, virt) \
61 if (machine_is_##machine()) { \
62 set_uart_info(phys, virt); \
63 break; \
64 }
65
66#define DEBUG_LL_DAVINCI(machine, port) \
67 _DEBUG_LL_ENTRY(machine, DAVINCI_UART##port##_BASE, \
68 IO_ADDRESS(DAVINCI_UART##port##_BASE))
69
70#define DEBUG_LL_DA8XX(machine, port) \
71 _DEBUG_LL_ENTRY(machine, DA8XX_UART##port##_BASE, \
72 IO_ADDRESS(DA8XX_UART##port##_BASE))
73
Cyril Chemparathy38db0502010-05-18 12:51:18 -040074#define DEBUG_LL_TNETV107X(machine, port) \
75 _DEBUG_LL_ENTRY(machine, TNETV107X_UART##port##_BASE, \
76 TNETV107X_UART##port##_VIRT)
77
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040078static inline void __arch_decomp_setup(unsigned long arch_id)
79{
80 /*
81 * Initialize the port based on the machine ID from the bootloader.
82 * Note that we're using macros here instead of switch statement
83 * as machine_is functions are optimized out for the boards that
84 * are not selected.
85 */
86 do {
87 /* Davinci boards */
88 DEBUG_LL_DAVINCI(davinci_evm, 0);
89 DEBUG_LL_DAVINCI(sffsdr, 0);
90 DEBUG_LL_DAVINCI(neuros_osd2, 0);
91 DEBUG_LL_DAVINCI(davinci_dm355_evm, 0);
92 DEBUG_LL_DAVINCI(dm355_leopard, 0);
93 DEBUG_LL_DAVINCI(davinci_dm6467_evm, 0);
94 DEBUG_LL_DAVINCI(davinci_dm365_evm, 0);
95
96 /* DA8xx boards */
97 DEBUG_LL_DA8XX(davinci_da830_evm, 2);
98 DEBUG_LL_DA8XX(davinci_da850_evm, 2);
Michael Williamsonf2dbb6d2010-09-02 13:58:07 -040099 DEBUG_LL_DA8XX(mityomapl138, 1);
Victor Rodriguez6c18c912010-09-23 11:28:40 -0500100 DEBUG_LL_DA8XX(omapl138_hawkboard, 2);
Cyril Chemparathy38db0502010-05-18 12:51:18 -0400101
102 /* TNETV107x boards */
103 DEBUG_LL_TNETV107X(tnetv107x, 1);
Cyril Chemparathydc2eb762010-05-18 12:51:17 -0400104 } while (0);
105}
106
107#define arch_decomp_setup() __arch_decomp_setup(arch_id)
Russell Kinga09e64f2008-08-05 16:14:15 +0100108#define arch_decomp_wdog()