arch/arm/mach-s3c/pm-common.h

Source file repositories/reference/linux-study-clean/arch/arm/mach-s3c/pm-common.h

File Facts

System
Linux kernel
Corpus path
arch/arm/mach-s3c/pm-common.h
Extension
.h
Size
1105 bytes
Lines
41
Domain
Architecture Layer
Bucket
arch/arm
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

struct sleep_save {
	void __iomem	*reg;
	unsigned long	val;
};

#define SAVE_ITEM(x) \
	{ .reg = (x) }

/* helper functions to save/restore lists of registers. */

extern void s3c_pm_do_save(struct sleep_save *ptr, int count);
extern void s3c_pm_do_restore(const struct sleep_save *ptr, int count);
extern void s3c_pm_do_restore_core(const struct sleep_save *ptr, int count);

#endif

Annotation

Implementation Notes