WIP FPC-III support
[linux/fpc-iii.git] / arch / arm / mach-spear / include / mach / uncompress.h
blob8439b9c12edb616834a6eeb74274e22e7d02ed04
1 /*
2 * arch/arm/plat-spear/include/plat/uncompress.h
4 * Serial port stubs for kernel decompress status messages
6 * Copyright (C) 2009 ST Microelectronics
7 * Viresh Kumar <vireshk@kernel.org>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <linux/io.h>
15 #include <linux/amba/serial.h>
16 #include <mach/spear.h>
18 #ifndef __PLAT_UNCOMPRESS_H
19 #define __PLAT_UNCOMPRESS_H
21 * This does not append a newline
23 static inline void putc(int c)
25 void __iomem *base = (void __iomem *)SPEAR_DBG_UART_BASE;
27 while (readl_relaxed(base + UART01x_FR) & UART01x_FR_TXFF)
28 barrier();
30 writel_relaxed(c, base + UART01x_DR);
33 static inline void flush(void)
38 * nothing to do
40 #define arch_decomp_setup()
42 #endif /* __PLAT_UNCOMPRESS_H */