Merge branch 'next' of git://selinuxproject.org/~jmorris/linux-security
[linux-btrfs-devel.git] / arch / arm / plat-tcc / include / mach / uncompress.h
blob7a3e33a27a30de4152fcb4e78bfaa917988ed169
1 /*
2 * Copyright (C) 2009 Hans J. Koch <hjk@linutronix.de>
4 * This file is licensed under the terms of the GPL version 2.
5 */
7 #include <linux/serial_reg.h>
8 #include <linux/types.h>
10 #include <mach/tcc8k-regs.h>
12 unsigned int system_rev;
14 #define ID_MASK 0x7fff
16 static void putc(int c)
18 u32 *uart_lsr = (u32 *)(UART_BASE_PHYS + (UART_LSR << 2));
19 u32 *uart_tx = (u32 *)(UART_BASE_PHYS + (UART_TX << 2));
21 while (!(*uart_lsr & UART_LSR_THRE))
22 barrier();
23 *uart_tx = c;
26 static inline void flush(void)
31 * nothing to do
33 #define arch_decomp_setup()
34 #define arch_decomp_wdog()