2010-04-01 18:30:42 +07:00
|
|
|
/*
|
|
|
|
* arch/arm/plat-spear/include/plat/uncompress.h
|
|
|
|
*
|
|
|
|
* Serial port stubs for kernel decompress status messages
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 ST Microelectronics
|
2015-07-18 06:23:50 +07:00
|
|
|
* Viresh Kumar <vireshk@kernel.org>
|
2010-04-01 18:30:42 +07:00
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/amba/serial.h>
|
2012-04-12 00:30:11 +07:00
|
|
|
#include <mach/spear.h>
|
2010-04-01 18:30:42 +07:00
|
|
|
|
|
|
|
#ifndef __PLAT_UNCOMPRESS_H
|
|
|
|
#define __PLAT_UNCOMPRESS_H
|
|
|
|
/*
|
|
|
|
* This does not append a newline
|
|
|
|
*/
|
|
|
|
static inline void putc(int c)
|
|
|
|
{
|
|
|
|
void __iomem *base = (void __iomem *)SPEAR_DBG_UART_BASE;
|
|
|
|
|
2011-02-16 13:41:06 +07:00
|
|
|
while (readl_relaxed(base + UART01x_FR) & UART01x_FR_TXFF)
|
2010-04-01 18:30:42 +07:00
|
|
|
barrier();
|
|
|
|
|
2011-02-16 13:41:06 +07:00
|
|
|
writel_relaxed(c, base + UART01x_DR);
|
2010-04-01 18:30:42 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void flush(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nothing to do
|
|
|
|
*/
|
|
|
|
#define arch_decomp_setup()
|
|
|
|
|
|
|
|
#endif /* __PLAT_UNCOMPRESS_H */
|