blob: 53b456a5bbe03512275e674325a0533786a3fa6b [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 */
Arnd Bergmann4d2b7d42016-02-18 17:36:23 +010033static inline void putc(char c)
Russell Kinga09e64f2008-08-05 16:14:15 +010034{
Sekhar Nori09aaf992012-08-28 14:38:05 +053035 if (!uart)
36 return;
37
Russell Kinga09e64f2008-08-05 16:14:15 +010038 while (!(uart[UART_LSR] & UART_LSR_THRE))
39 barrier();
40 uart[UART_TX] = c;
41}
42
43static inline void flush(void)
44{
Sekhar Nori09aaf992012-08-28 14:38:05 +053045 if (!uart)
46 return;
47
Russell Kinga09e64f2008-08-05 16:14:15 +010048 while (!(uart[UART_LSR] & UART_LSR_THRE))
49 barrier();
50}
51
Uwe Kleine-König477099f2012-03-22 10:29:23 +010052static inline void set_uart_info(u32 phys)
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040053{
54 uart = (u32 *)phys;
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040055}
56
Uwe Kleine-König477099f2012-03-22 10:29:23 +010057#define _DEBUG_LL_ENTRY(machine, phys) \
58 { \
59 if (machine_is_##machine()) { \
60 set_uart_info(phys); \
61 break; \
62 } \
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040063 }
64
65#define DEBUG_LL_DAVINCI(machine, port) \
Uwe Kleine-König477099f2012-03-22 10:29:23 +010066 _DEBUG_LL_ENTRY(machine, DAVINCI_UART##port##_BASE)
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040067
68#define DEBUG_LL_DA8XX(machine, port) \
Uwe Kleine-König477099f2012-03-22 10:29:23 +010069 _DEBUG_LL_ENTRY(machine, DA8XX_UART##port##_BASE)
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040070
71static inline void __arch_decomp_setup(unsigned long arch_id)
72{
73 /*
74 * Initialize the port based on the machine ID from the bootloader.
75 * Note that we're using macros here instead of switch statement
76 * as machine_is functions are optimized out for the boards that
77 * are not selected.
78 */
79 do {
80 /* Davinci boards */
81 DEBUG_LL_DAVINCI(davinci_evm, 0);
82 DEBUG_LL_DAVINCI(sffsdr, 0);
83 DEBUG_LL_DAVINCI(neuros_osd2, 0);
84 DEBUG_LL_DAVINCI(davinci_dm355_evm, 0);
85 DEBUG_LL_DAVINCI(dm355_leopard, 0);
86 DEBUG_LL_DAVINCI(davinci_dm6467_evm, 0);
87 DEBUG_LL_DAVINCI(davinci_dm365_evm, 0);
88
89 /* DA8xx boards */
90 DEBUG_LL_DA8XX(davinci_da830_evm, 2);
91 DEBUG_LL_DA8XX(davinci_da850_evm, 2);
Michael Williamsonf2dbb6d2010-09-02 13:58:07 -040092 DEBUG_LL_DA8XX(mityomapl138, 1);
Victor Rodriguez6c18c912010-09-23 11:28:40 -050093 DEBUG_LL_DA8XX(omapl138_hawkboard, 2);
Cyril Chemparathydc2eb762010-05-18 12:51:17 -040094 } while (0);
95}
96
97#define arch_decomp_setup() __arch_decomp_setup(arch_id)