mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-17 20:40:33 -05:00
While the GCC and Clang compilers already define __ASSEMBLER__ automatically when compiling assembler code, __ASSEMBLY__ is a macro that only gets defined by the Makefiles in the kernel. This is bad since macros starting with two underscores are names that are reserved by the C language. It can also be very confusing for the developers when switching between userspace and kernelspace coding, or when dealing with uapi headers that rather should use __ASSEMBLER__ instead. So let's standardize now on the __ASSEMBLER__ macro that is provided by the compilers. This is almost a completely mechanical patch (done with a simple "sed -i" statement), apart from tweaking two comments manually in arch/powerpc/include/asm/bug.h and arch/powerpc/include/asm/kasan.h (which did not have proper underscores at the end) and fixing a checkpatch error about spaces in arch/powerpc/include/asm/spu_csa.h. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com> Link: https://patch.msgid.link/20250801082007.32904-3-thuth@redhat.com
68 lines
2.1 KiB
C
68 lines
2.1 KiB
C
/*
|
|
* The PowerPC (32/64) specific defines / externs for KGDB. Based on
|
|
* the previous 32bit and 64bit specific files, which had the following
|
|
* copyrights:
|
|
*
|
|
* PPC64 Mods (C) 2005 Frank Rowand (frowand@mvista.com)
|
|
* PPC Mods (C) 2004 Tom Rini (trini@mvista.com)
|
|
* PPC Mods (C) 2003 John Whitney (john.whitney@timesys.com)
|
|
* PPC Mods (C) 1998 Michael Tesch (tesch@cs.wisc.edu)
|
|
*
|
|
*
|
|
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
|
|
* Author: Tom Rini <trini@kernel.crashing.org>
|
|
*
|
|
* 2006 (c) MontaVista Software, Inc. This file is licensed under
|
|
* the terms of the GNU General Public License version 2. This program
|
|
* is licensed "as is" without any warranty of any kind, whether express
|
|
* or implied.
|
|
*/
|
|
#ifdef __KERNEL__
|
|
#ifndef __POWERPC_KGDB_H__
|
|
#define __POWERPC_KGDB_H__
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
#define BREAK_INSTR_SIZE 4
|
|
#define BUFMAX ((NUMREGBYTES * 2) + 512)
|
|
#define OUTBUFMAX ((NUMREGBYTES * 2) + 512)
|
|
|
|
#define BREAK_INSTR 0x7d821008 /* twge r2, r2 */
|
|
|
|
static inline void arch_kgdb_breakpoint(void)
|
|
{
|
|
asm(stringify_in_c(.long BREAK_INSTR));
|
|
}
|
|
#define CACHE_FLUSH_IS_SAFE 1
|
|
#define DBG_MAX_REG_NUM 70
|
|
|
|
/* The number bytes of registers we have to save depends on a few
|
|
* things. For 64bit we default to not including vector registers and
|
|
* vector state registers. */
|
|
#ifdef CONFIG_PPC64
|
|
/*
|
|
* 64 bit (8 byte) registers:
|
|
* 32 gpr, 32 fpr, nip, msr, link, ctr
|
|
* 32 bit (4 byte) registers:
|
|
* ccr, xer, fpscr
|
|
*/
|
|
#define NUMREGBYTES ((68 * 8) + (3 * 4))
|
|
#define NUMCRITREGBYTES 184
|
|
#else /* CONFIG_PPC32 */
|
|
/* On non-E500 family PPC32 we determine the size by picking the last
|
|
* register we need, but on E500 we skip sections so we list what we
|
|
* need to store, and add it up. */
|
|
#ifndef CONFIG_PPC_E500
|
|
#define MAXREG (PT_FPSCR+1)
|
|
#else
|
|
/* 32 GPRs (8 bytes), nip, msr, ccr, link, ctr, xer, acc (8 bytes), spefscr*/
|
|
#define MAXREG ((32*2)+6+2+1)
|
|
#endif
|
|
#define NUMREGBYTES (MAXREG * sizeof(int))
|
|
/* CR/LR, R1, R2, R13-R31 inclusive. */
|
|
#define NUMCRITREGBYTES (23 * sizeof(int))
|
|
#endif /* 32/64 */
|
|
#endif /* !(__ASSEMBLER__) */
|
|
#endif /* !__POWERPC_KGDB_H__ */
|
|
#endif /* __KERNEL__ */
|