blob: aca0adfef1b8da878ca3a499fbfea14e0e98a2f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/asm-arm/arch-omap/uncompress.h
3 *
4 * Serial port stubs for kernel decompress status messages
5 *
6 * Initially based on:
7 * linux-2.4.15-rmk1-dsplinux1.6/include/asm-arm/arch-omap1510/uncompress.h
8 * Copyright (C) 2000 RidgeRun, Inc.
9 * Author: Greg Lonnon <glonnon@ridgerun.com>
10 *
11 * Rewritten by:
12 * Author: <source@mvista.com>
13 * 2004 (c) MontaVista Software, Inc.
14 *
15 * This file is licensed under the terms of the GNU General Public License
16 * version 2. This program is licensed "as is" without any warranty of any
17 * kind, whether express or implied.
18 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/types.h>
21#include <linux/serial_reg.h>
Tony Lindgren9839c6b2005-09-07 17:20:27 +010022#include <asm/arch/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24unsigned int system_rev;
25
26#define UART_OMAP_MDR1 0x08 /* mode definition register */
27#define OMAP_ID_730 0x355F
28#define ID_MASK 0x7fff
29#define check_port(base, shift) ((base[UART_OMAP_MDR1 << shift] & 7) == 0)
30#define omap_get_id() ((*(volatile unsigned int *)(0xfffed404)) >> 12) & ID_MASK
31
Russell Kinga0815682006-03-28 10:24:33 +010032static void putc(int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 volatile u8 * uart = 0;
Tony Lindgren9839c6b2005-09-07 17:20:27 +010035 int shift = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Tony Lindgren9ad58972005-11-10 14:26:53 +000037#ifdef CONFIG_MACH_OMAP_PALMTE
38 return;
39#endif
40
Tony Lindgren9839c6b2005-09-07 17:20:27 +010041#ifdef CONFIG_ARCH_OMAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef CONFIG_OMAP_LL_DEBUG_UART3
43 uart = (volatile u8 *)(OMAP_UART3_BASE);
Tony Lindgren9ad58972005-11-10 14:26:53 +000044#elif defined(CONFIG_OMAP_LL_DEBUG_UART2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 uart = (volatile u8 *)(OMAP_UART2_BASE);
46#else
47 uart = (volatile u8 *)(OMAP_UART1_BASE);
48#endif
49
Tony Lindgren9839c6b2005-09-07 17:20:27 +010050#ifdef CONFIG_ARCH_OMAP1
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 /* Determine which serial port to use */
52 do {
53 /* MMU is not on, so cpu_is_omapXXXX() won't work here */
54 unsigned int omap_id = omap_get_id();
55
56 if (omap_id == OMAP_ID_730)
57 shift = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 if (check_port(uart, shift))
60 break;
61 /* Silent boot if no serial ports are enabled. */
62 return;
63 } while (0);
Tony Lindgren9839c6b2005-09-07 17:20:27 +010064#endif /* CONFIG_ARCH_OMAP1 */
65#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 /*
68 * Now, xmit each character
69 */
Russell Kinga0815682006-03-28 10:24:33 +010070 while (!(uart[UART_LSR << shift] & UART_LSR_THRE))
71 barrier();
72 uart[UART_TX << shift] = c;
73}
74
75static inline void flush(void)
76{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
80 * nothing to do
81 */
82#define arch_decomp_setup()
83#define arch_decomp_wdog()