404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.16.139.76: ~ $
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * arch/arm/mach-iop33x/include/mach/uncompress.h
 */

#include <asm/types.h>
#include <asm/mach-types.h>
#include <linux/serial_reg.h>
#include <mach/hardware.h>

volatile u32 *uart_base;

#define TX_DONE		(UART_LSR_TEMT | UART_LSR_THRE)

static inline void putc(char c)
{
	while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE)
		barrier();
	uart_base[UART_TX] = c;
}

static inline void flush(void)
{
}

static __inline__ void __arch_decomp_setup(unsigned long arch_id)
{
	if (machine_is_iq80331() || machine_is_iq80332())
		uart_base = (volatile u32 *)IOP33X_UART0_PHYS;
	else
		uart_base = (volatile u32 *)0xfe800000;
}

/*
 * nothing to do
 */
#define arch_decomp_setup()	__arch_decomp_setup(arch_id)

Filemanager

Name Type Size Permission Actions
adma.h File 129 B 0644
entry-macro.S File 1022 B 0644
hardware.h File 846 B 0644
iop33x.h File 1.16 KB 0644
iq80331.h File 421 B 0644
iq80332.h File 421 B 0644
irqs.h File 1.49 KB 0644
time.h File 135 B 0644
uncompress.h File 745 B 0644