arch/mips/boot/compressed/uart-alchemy.c

Source file repositories/reference/linux-study-clean/arch/mips/boot/compressed/uart-alchemy.c

File Facts

System
Linux kernel
Corpus path
arch/mips/boot/compressed/uart-alchemy.c
Extension
.c
Size
170 bytes
Lines
10
Domain
Architecture Layer
Bucket
arch/mips
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
#include <asm/mach-au1x00/au1000.h>

#include "decompress.h"

void putc(char c)
{
	alchemy_uart_putchar(AU1000_UART0_PHYS_ADDR, c);
}

Annotation

Implementation Notes