mirror of
https://github.com/torvalds/linux.git
synced 2025-04-12 16:47:42 +00:00

With ARCH_HAS_DECOMP_WDOG removed from arch/arm/boot/compressed/decompress.c, all the arch_decomp_wdog() definition at platform level is unneeded. Remmove it. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Nicolas Pitre <nico@linaro.org> Acked-by: Jason Cooper <jason@lakedaemon.net>
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2010 Broadcom
|
|
* Copyright (C) 2003 ARM Limited
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <linux/io.h>
|
|
#include <linux/amba/serial.h>
|
|
#include <mach/bcm2835_soc.h>
|
|
|
|
#define UART0_BASE BCM2835_DEBUG_PHYS
|
|
|
|
#define BCM2835_UART_DR IOMEM(UART0_BASE + UART01x_DR)
|
|
#define BCM2835_UART_FR IOMEM(UART0_BASE + UART01x_FR)
|
|
#define BCM2835_UART_CR IOMEM(UART0_BASE + UART011_CR)
|
|
|
|
static inline void putc(int c)
|
|
{
|
|
while (__raw_readl(BCM2835_UART_FR) & UART01x_FR_TXFF)
|
|
barrier();
|
|
|
|
__raw_writel(c, BCM2835_UART_DR);
|
|
}
|
|
|
|
static inline void flush(void)
|
|
{
|
|
int fr;
|
|
|
|
do {
|
|
fr = __raw_readl(BCM2835_UART_FR);
|
|
barrier();
|
|
} while ((fr & (UART011_FR_TXFE | UART01x_FR_BUSY)) != UART011_FR_TXFE);
|
|
}
|
|
|
|
#define arch_decomp_setup()
|