arch/parisc/kernel/pdc_cons.c
Source file repositories/reference/linux-study-clean/arch/parisc/kernel/pdc_cons.c
File Facts
- System
- Linux kernel
- Corpus path
arch/parisc/kernel/pdc_cons.c- Extension
.c- Size
- 1544 bytes
- Lines
- 66
- Domain
- Architecture Layer
- Bucket
- arch/parisc
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/console.hlinux/init.hlinux/serial_core.hlinux/kgdb.hasm/page.hasm/pdc.h
Detected Declarations
function Copyrightfunction kgdb_pdc_read_charfunction kgdb_pdc_write_charfunction pdc_earlycon_setup
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* PDC early console support - use PDC firmware to dump text via boot console
*
* Copyright (C) 2001-2022 Helge Deller <deller@gmx.de>
*/
#include <linux/console.h>
#include <linux/init.h>
#include <linux/serial_core.h>
#include <linux/kgdb.h>
#include <asm/page.h> /* for PAGE0 */
#include <asm/pdc.h> /* for iodc_call() proto and friends */
static void pdc_console_write(struct console *co, const char *s, unsigned count)
{
int i = 0;
do {
i += pdc_iodc_print(s + i, count - i);
} while (i < count);
}
#ifdef CONFIG_KGDB
static int kgdb_pdc_read_char(void)
{
int c = pdc_iodc_getc();
return (c <= 0) ? NO_POLL_CHAR : c;
}
static void kgdb_pdc_write_char(u8 chr)
{
/* no need to print char as it's shown on standard console */
/* pdc_iodc_print(&chr, 1); */
}
static struct kgdb_io kgdb_pdc_io_ops = {
.name = "kgdb_pdc",
.read_char = kgdb_pdc_read_char,
.write_char = kgdb_pdc_write_char,
};
#endif
static int __init pdc_earlycon_setup(struct earlycon_device *device,
const char *opt)
{
struct console *earlycon_console;
/* If the console is duplex then copy the COUT parameters to CIN. */
if (PAGE0->mem_cons.cl_class == CL_DUPLEX)
memcpy(&PAGE0->mem_kbd, &PAGE0->mem_cons, sizeof(PAGE0->mem_cons));
earlycon_console = device->con;
earlycon_console->write = pdc_console_write;
device->port.iotype = UPIO_MEM32BE;
#ifdef CONFIG_KGDB
kgdb_register_io_module(&kgdb_pdc_io_ops);
#endif
return 0;
}
EARLYCON_DECLARE(pdc, pdc_earlycon_setup);
Annotation
- Immediate include surface: `linux/console.h`, `linux/init.h`, `linux/serial_core.h`, `linux/kgdb.h`, `asm/page.h`, `asm/pdc.h`.
- Detected declarations: `function Copyright`, `function kgdb_pdc_read_char`, `function kgdb_pdc_write_char`, `function pdc_earlycon_setup`.
- Atlas domain: Architecture Layer / arch/parisc.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.