Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-arm / arch-sa1100 / uncompress.h
blob43453501ee6688b56c47b7859b0079d671940485
1 /*
2 * linux/include/asm-arm/arch-brutus/uncompress.h
4 * (C) 1999 Nicolas Pitre <nico@cam.org>
6 * Reorganised to be machine independent.
7 */
9 #include "hardware.h"
12 * The following code assumes the serial port has already been
13 * initialized by the bootloader. We search for the first enabled
14 * port in the most probable order. If you didn't setup a port in
15 * your bootloader then nothing will appear (which might be desired).
18 #define UART(x) (*(volatile unsigned long *)(serial_port + (x)))
20 static void putstr( const char *s )
22 unsigned long serial_port;
24 do {
25 serial_port = _Ser3UTCR0;
26 if (UART(UTCR3) & UTCR3_TXE) break;
27 serial_port = _Ser1UTCR0;
28 if (UART(UTCR3) & UTCR3_TXE) break;
29 serial_port = _Ser2UTCR0;
30 if (UART(UTCR3) & UTCR3_TXE) break;
31 return;
32 } while (0);
34 for (; *s; s++) {
35 /* wait for space in the UART's transmitter */
36 while (!(UART(UTSR1) & UTSR1_TNF));
38 /* send the character out. */
39 UART(UTDR) = *s;
41 /* if a LF, also do CR... */
42 if (*s == 10) {
43 while (!(UART(UTSR1) & UTSR1_TNF));
44 UART(UTDR) = 13;
50 * Nothing to do for these
52 #define arch_decomp_setup()
53 #define arch_decomp_wdog()