uncompress.h 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Serial port stubs for kernel decompress status messages
  3. *
  4. * Author: Anant Gole
  5. * (C) Copyright (C) 2006, Texas Instruments, Inc
  6. *
  7. * This file is licensed under the terms of the GNU General Public License
  8. * version 2. This program is licensed "as is" without any warranty of any
  9. * kind, whether express or implied.
  10. */
  11. #include <linux/types.h>
  12. #include <linux/serial_reg.h>
  13. #include <mach/serial.h>
  14. #include <asm/mach-types.h>
  15. extern unsigned int __machine_arch_type;
  16. static u32 *uart;
  17. static u32 *get_uart_base(void)
  18. {
  19. /* Add logic here for new platforms, using __macine_arch_type */
  20. return (u32 *)DAVINCI_UART0_BASE;
  21. }
  22. /* PORT_16C550A, in polled non-fifo mode */
  23. static void putc(char c)
  24. {
  25. if (!uart)
  26. uart = get_uart_base();
  27. while (!(uart[UART_LSR] & UART_LSR_THRE))
  28. barrier();
  29. uart[UART_TX] = c;
  30. }
  31. static inline void flush(void)
  32. {
  33. if (!uart)
  34. uart = get_uart_base();
  35. while (!(uart[UART_LSR] & UART_LSR_THRE))
  36. barrier();
  37. }
  38. #define arch_decomp_setup()
  39. #define arch_decomp_wdog()