mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-10-22 23:13:01 +02:00

Platforms subscribe into generic ptdump implementation via GENERIC_PTDUMP. But generic ptdump gets enabled via PTDUMP_CORE. These configs combination is confusing as they sound very similar and does not differentiate between platform's feature subscription and feature enablement for ptdump. Rename the configs as ARCH_HAS_PTDUMP and PTDUMP making it more clear and improve readability. Link: https://lkml.kernel.org/r/20250226122404.1927473-6-anshuman.khandual@arm.com Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu> (powerpc) Acked-by: Catalin Marinas <catalin.marinas@arm.com> [arm64] Cc: Will Deacon <will@kernel.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Marc Zyngier <maz@kernel.org> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Steven Price <steven.price@arm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
76 lines
1.8 KiB
C
76 lines
1.8 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 {
|
|
u64 mask;
|
|
u64 val;
|
|
const char *set;
|
|
const char *clear;
|
|
};
|
|
|
|
struct ptdump_pg_level {
|
|
const struct ptdump_prot_bits *bits;
|
|
char name[4];
|
|
int num;
|
|
u64 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;
|
|
u64 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,
|
|
u64 val);
|
|
#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, u64 val) { }
|
|
#endif /* CONFIG_PTDUMP */
|
|
|
|
#endif /* __ASM_PTDUMP_H */
|