/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/arm/mach-iop32x/include/mach/uncompress.h */ #include <asm/types.h> #include <asm/mach-types.h> #include <linux/serial_reg.h> #include <mach/hardware.h> volatile u8 *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_iq80321()) uart_base = (volatile u8 *)IQ80321_UART; else if (machine_is_iq31244() || machine_is_em7210()) uart_base = (volatile u8 *)IQ31244_UART; else uart_base = (volatile u8 *)0xfe800000; } /* * nothing to do */ #define arch_decomp_setup() __arch_decomp_setup(arch_id)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
adma.h | File | 129 B | 0644 |
|
entry-macro.S | File | 943 B | 0644 |
|
glantank.h | File | 232 B | 0644 |
|
hardware.h | File | 770 B | 0644 |
|
iop32x.h | File | 942 B | 0644 |
|
iq31244.h | File | 468 B | 0644 |
|
iq80321.h | File | 468 B | 0644 |
|
irqs.h | File | 1.22 KB | 0644 |
|
n2100.h | File | 453 B | 0644 |
|
time.h | File | 135 B | 0644 |
|
uncompress.h | File | 811 B | 0644 |
|