arch/powerpc/platforms/chrp/smp.c
Source file repositories/reference/linux-study-clean/arch/powerpc/platforms/chrp/smp.c
File Facts
- System
- Linux kernel
- Corpus path
arch/powerpc/platforms/chrp/smp.c- Extension
.c- Size
- 1206 bytes
- Lines
- 55
- Domain
- Architecture Layer
- Bucket
- arch/powerpc
- 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/kernel.hlinux/sched.hlinux/smp.hlinux/interrupt.hlinux/kernel_stat.hlinux/delay.hlinux/spinlock.hlinux/pgtable.hasm/ptrace.hlinux/atomic.hasm/irq.hasm/page.hasm/sections.hasm/io.hasm/smp.hasm/machdep.hasm/mpic.hasm/rtas.h
Detected Declarations
function Douganfunction smp_chrp_setup_cpu
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/*
* Smp support for CHRP machines.
*
* Written by Cort Dougan (cort@cs.nmt.edu) borrowing a great
* deal of code from the sparc and intel versions.
*
* Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
*
*/
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/interrupt.h>
#include <linux/kernel_stat.h>
#include <linux/delay.h>
#include <linux/spinlock.h>
#include <linux/pgtable.h>
#include <asm/ptrace.h>
#include <linux/atomic.h>
#include <asm/irq.h>
#include <asm/page.h>
#include <asm/sections.h>
#include <asm/io.h>
#include <asm/smp.h>
#include <asm/machdep.h>
#include <asm/mpic.h>
#include <asm/rtas.h>
static int smp_chrp_kick_cpu(int nr)
{
*(unsigned long *)KERNELBASE = nr;
asm volatile("dcbf 0,%0"::"r"(KERNELBASE):"memory");
return 0;
}
static void smp_chrp_setup_cpu(int cpu_nr)
{
mpic_setup_this_cpu();
}
/* CHRP with openpic */
struct smp_ops_t chrp_smp_ops = {
.cause_nmi_ipi = NULL,
.message_pass = smp_mpic_message_pass,
.probe = smp_mpic_probe,
.kick_cpu = smp_chrp_kick_cpu,
.setup_cpu = smp_chrp_setup_cpu,
.give_timebase = rtas_give_timebase,
.take_timebase = rtas_take_timebase,
};
Annotation
- Immediate include surface: `linux/kernel.h`, `linux/sched.h`, `linux/smp.h`, `linux/interrupt.h`, `linux/kernel_stat.h`, `linux/delay.h`, `linux/spinlock.h`, `linux/pgtable.h`.
- Detected declarations: `function Dougan`, `function smp_chrp_setup_cpu`.
- Atlas domain: Architecture Layer / arch/powerpc.
- 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.