2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/include/asm-arm/arch-pxa/uncompress.h
|
|
|
|
*
|
|
|
|
* Author: Nicolas Pitre
|
|
|
|
* Copyright: (C) 2001 MontaVista Software Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FFUART ((volatile unsigned long *)0x40100000)
|
|
|
|
#define BTUART ((volatile unsigned long *)0x40200000)
|
|
|
|
#define STUART ((volatile unsigned long *)0x40700000)
|
2005-10-28 17:25:02 +02:00
|
|
|
#define HWUART ((volatile unsigned long *)0x41600000)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define UART FFUART
|
|
|
|
|
|
|
|
|
2006-03-28 11:24:33 +02:00
|
|
|
static inline void putc(char c)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2006-03-28 11:24:33 +02:00
|
|
|
while (!(UART[5] & 0x20))
|
|
|
|
barrier();
|
2005-04-17 00:20:36 +02:00
|
|
|
UART[0] = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This does not append a newline
|
|
|
|
*/
|
2006-03-28 11:24:33 +02:00
|
|
|
static inline void flush(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nothing to do
|
|
|
|
*/
|
|
|
|
#define arch_decomp_setup()
|
|
|
|
#define arch_decomp_wdog()
|