GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-cns3xxx / include / mach / uncompress.h
blobde8ead9b91f77086b100f9705dbca0a2f53645a1
1 /*
2 * Copyright 2003 ARM Limited
3 * Copyright 2008 Cavium Networks
5 * This file is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, Version 2, as
7 * published by the Free Software Foundation.
8 */
10 #include <asm/mach-types.h>
11 #include <mach/hardware.h>
12 #include <mach/cns3xxx.h>
14 #define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00))
15 #define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c))
16 #define AMBA_UART_CR(base) (*(volatile unsigned char *)((base) + 0x30))
17 #define AMBA_UART_FR(base) (*(volatile unsigned char *)((base) + 0x18))
20 * Return the UART base address
22 static inline unsigned long get_uart_base(void)
24 if (machine_is_cns3420vb())
25 return CNS3XXX_UART0_BASE;
26 else
27 return 0;
31 * This does not append a newline
33 static inline void putc(int c)
35 unsigned long base = get_uart_base();
37 while (AMBA_UART_FR(base) & (1 << 5))
38 barrier();
40 AMBA_UART_DR(base) = c;
43 static inline void flush(void)
45 unsigned long base = get_uart_base();
47 while (AMBA_UART_FR(base) & (1 << 3))
48 barrier();
52 * nothing to do
54 #define arch_decomp_setup()
55 #define arch_decomp_wdog()