arch/mips/loongson64/pm.c
Source file repositories/reference/linux-study-clean/arch/mips/loongson64/pm.c
File Facts
- System
- Linux kernel
- Corpus path
arch/mips/loongson64/pm.c- Extension
.c- Size
- 1052 bytes
- Lines
- 53
- 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.
- 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/suspend.hlinux/pm.hasm/mipsregs.hloongson.h
Detected Declarations
function lefi_pm_enterfunction lefi_pm_valid_statefunction loongson_pm_init
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* loongson-specific suspend support
*
* Copyright (C) 2009 Lemote Inc.
* Author: Wu Zhangjin <wuzhangjin@gmail.com>
*/
#include <linux/suspend.h>
#include <linux/pm.h>
#include <asm/mipsregs.h>
#include <loongson.h>
asmlinkage void loongson_lefi_sleep(unsigned long sleep_addr);
static int lefi_pm_enter(suspend_state_t state)
{
switch (state) {
case PM_SUSPEND_MEM:
pm_set_suspend_via_firmware();
loongson_lefi_sleep(loongson_sysconf.suspend_addr);
pm_set_resume_via_firmware();
return 0;
default:
return -EINVAL;
}
}
static int lefi_pm_valid_state(suspend_state_t state)
{
switch (state) {
case PM_SUSPEND_MEM:
return !!loongson_sysconf.suspend_addr;
default:
return 0;
}
}
static const struct platform_suspend_ops lefi_pm_ops = {
.valid = lefi_pm_valid_state,
.enter = lefi_pm_enter,
};
static int __init loongson_pm_init(void)
{
if (loongson_sysconf.fw_interface == LOONGSON_LEFI)
suspend_set_ops(&lefi_pm_ops);
return 0;
}
arch_initcall(loongson_pm_init);
Annotation
- Immediate include surface: `linux/suspend.h`, `linux/pm.h`, `asm/mipsregs.h`, `loongson.h`.
- Detected declarations: `function lefi_pm_enter`, `function lefi_pm_valid_state`, `function loongson_pm_init`.
- Atlas domain: Architecture Layer / arch/mips.
- 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.