blob: 16c1110f2304c1a08d72adcca3cedc90e054f1c5 [file] [log] [blame]
Lennert Buytenhekc4713072006-03-28 21:18:54 +01001/*
2 * include/asm-arm/arch-ixp23xx/uncompress.h
3 *
4 * Copyright (C) 2002-2004 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __ASM_ARCH_UNCOMPRESS_H
12#define __ASM_ARCH_UNCOMPRESS_H
13
Lennert Buytenhek02c42932006-06-27 22:56:16 +010014#include <asm/arch/ixp23xx.h>
Lennert Buytenhekc4713072006-03-28 21:18:54 +010015#include <linux/serial_reg.h>
16
17#define UART_BASE ((volatile u32 *)IXP23XX_UART1_PHYS)
18
Lennert Buytenhekcc3d48d2006-03-30 10:51:44 +010019static inline void putc(char c)
Lennert Buytenhekc4713072006-03-28 21:18:54 +010020{
21 int j;
22
23 for (j = 0; j < 0x1000; j++) {
24 if (UART_BASE[UART_LSR] & UART_LSR_THRE)
25 break;
Lennert Buytenhekcc3d48d2006-03-30 10:51:44 +010026 barrier();
Lennert Buytenhekc4713072006-03-28 21:18:54 +010027 }
28
29 UART_BASE[UART_TX] = c;
30}
31
Lennert Buytenhekcc3d48d2006-03-30 10:51:44 +010032static inline void flush(void)
Lennert Buytenhekc4713072006-03-28 21:18:54 +010033{
Lennert Buytenhekc4713072006-03-28 21:18:54 +010034}
35
36#define arch_decomp_setup()
37#define arch_decomp_wdog()
38
39
40#endif