mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Define ptdesc_t type which describes the basic page table descriptor layout on arm64 platform. Subsequently all level specific pxxval_t descriptors are derived from ptdesc_t thus establishing a common original format, which can also be appropriate for page table entries, masks and protection values etc which are used at all page table levels. Link: https://lkml.kernel.org/r/20250407053113.746295-4-anshuman.khandual@arm.com Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Suggested-by: Ryan Roberts <ryan.roberts@arm.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will@kernel.org> Cc: Ard Biesheuvel <ardb@kernel.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: Gerald Schaefer <gerald.schaefer@linux.ibm.com> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
87 lines
2.7 KiB
C
87 lines
2.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2014 ARM Ltd.
|
|
*/
|
|
#ifndef __ASM_PTDUMP_H
|
|
#define __ASM_PTDUMP_H
|
|
|
|
#include <linux/ptdump.h>
|
|
|
|
#ifdef CONFIG_PTDUMP
|
|
|
|
#include <linux/mm_types.h>
|
|
#include <linux/seq_file.h>
|
|
|
|
struct addr_marker {
|
|
unsigned long start_address;
|
|
char *name;
|
|
};
|
|
|
|
struct ptdump_info {
|
|
struct mm_struct *mm;
|
|
const struct addr_marker *markers;
|
|
unsigned long base_addr;
|
|
};
|
|
|
|
struct ptdump_prot_bits {
|
|
ptdesc_t mask;
|
|
ptdesc_t val;
|
|
const char *set;
|
|
const char *clear;
|
|
};
|
|
|
|
struct ptdump_pg_level {
|
|
const struct ptdump_prot_bits *bits;
|
|
char name[4];
|
|
int num;
|
|
ptdesc_t mask;
|
|
};
|
|
|
|
/*
|
|
* The page dumper groups page table entries of the same type into a single
|
|
* description. It uses pg_state to track the range information while
|
|
* iterating over the pte entries. When the continuity is broken it then
|
|
* dumps out a description of the range.
|
|
*/
|
|
struct ptdump_pg_state {
|
|
struct ptdump_state ptdump;
|
|
struct ptdump_pg_level *pg_level;
|
|
struct seq_file *seq;
|
|
const struct addr_marker *marker;
|
|
const struct mm_struct *mm;
|
|
unsigned long start_address;
|
|
int level;
|
|
ptdesc_t current_prot;
|
|
bool check_wx;
|
|
unsigned long wx_pages;
|
|
unsigned long uxn_pages;
|
|
};
|
|
|
|
void ptdump_walk(struct seq_file *s, struct ptdump_info *info);
|
|
void note_page(struct ptdump_state *pt_st, unsigned long addr, int level,
|
|
pteval_t val);
|
|
void note_page_pte(struct ptdump_state *st, unsigned long addr, pte_t pte);
|
|
void note_page_pmd(struct ptdump_state *st, unsigned long addr, pmd_t pmd);
|
|
void note_page_pud(struct ptdump_state *st, unsigned long addr, pud_t pud);
|
|
void note_page_p4d(struct ptdump_state *st, unsigned long addr, p4d_t p4d);
|
|
void note_page_pgd(struct ptdump_state *st, unsigned long addr, pgd_t pgd);
|
|
void note_page_flush(struct ptdump_state *st);
|
|
#ifdef CONFIG_PTDUMP_DEBUGFS
|
|
#define EFI_RUNTIME_MAP_END DEFAULT_MAP_WINDOW_64
|
|
void __init ptdump_debugfs_register(struct ptdump_info *info, const char *name);
|
|
#else
|
|
static inline void ptdump_debugfs_register(struct ptdump_info *info,
|
|
const char *name) { }
|
|
#endif /* CONFIG_PTDUMP_DEBUGFS */
|
|
#else
|
|
static inline void note_page(struct ptdump_state *pt_st, unsigned long addr,
|
|
int level, pteval_t val) { }
|
|
static inline void note_page_pte(struct ptdump_state *st, unsigned long addr, pte_t pte) { }
|
|
static inline void note_page_pmd(struct ptdump_state *st, unsigned long addr, pmd_t pmd) { }
|
|
static inline void note_page_pud(struct ptdump_state *st, unsigned long addr, pud_t pud) { }
|
|
static inline void note_page_p4d(struct ptdump_state *st, unsigned long addr, p4d_t p4d) { }
|
|
static inline void note_page_pgd(struct ptdump_state *st, unsigned long addr, pgd_t pgd) { }
|
|
static inline void note_page_flush(struct ptdump_state *st) { }
|
|
#endif /* CONFIG_PTDUMP */
|
|
|
|
#endif /* __ASM_PTDUMP_H */
|