mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-22 21:25:25 -04: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. Defining such a macro was necessary in the early days of the kernel, since GCC only started providing __ASSEMBLER__ since version 3.0 in 2000 (see https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=f8f769ea4e69 ). However, having two macros can be very confusing nowadays for the developers when switching between userspace and kernelspace coding, or when dealing with uapi headers that should use __ASSEMBLER__ instead. So let's now standardize on the __ASSEMBLER__ macro that is provided by the compilers. This is almost a completely mechanical patch (done with a simple "sed -i" statement), with just one comment tweaked manually in arch/mips/include/asm/cpu.h (that was missing some underscores). Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: linux-mips@vger.kernel.org Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Maciej W. Rozycki <macro@orcam.me.uk> Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
103 lines
2.4 KiB
C
103 lines
2.4 KiB
C
/*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* Copyright (C) 1994 - 1999, 2000, 03, 04 Ralf Baechle
|
|
* Copyright (C) 2000, 2002 Maciej W. Rozycki
|
|
* Copyright (C) 1990, 1999, 2000 Silicon Graphics, Inc.
|
|
*/
|
|
#ifndef _ASM_MACH_GENERIC_SPACES_H
|
|
#define _ASM_MACH_GENERIC_SPACES_H
|
|
|
|
#include <linux/const.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
#ifndef IO_SPACE_LIMIT
|
|
#define IO_SPACE_LIMIT 0xffff
|
|
#endif
|
|
|
|
/*
|
|
* This gives the physical RAM offset.
|
|
*/
|
|
#ifndef __ASSEMBLER__
|
|
# if defined(CONFIG_MIPS_AUTO_PFN_OFFSET)
|
|
# define PHYS_OFFSET ((unsigned long)PFN_PHYS(ARCH_PFN_OFFSET))
|
|
# elif !defined(PHYS_OFFSET)
|
|
# define PHYS_OFFSET _AC(0, UL)
|
|
# endif
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#ifdef CONFIG_32BIT
|
|
#define CAC_BASE _AC(0x80000000, UL)
|
|
#ifndef IO_BASE
|
|
#define IO_BASE _AC(0xa0000000, UL)
|
|
#endif
|
|
#ifndef UNCAC_BASE
|
|
#define UNCAC_BASE _AC(0xa0000000, UL)
|
|
#endif
|
|
|
|
#ifndef MAP_BASE
|
|
#define MAP_BASE _AC(0xc0000000, UL)
|
|
#endif
|
|
|
|
/*
|
|
* Memory above this physical address will be considered highmem.
|
|
*/
|
|
#ifndef HIGHMEM_START
|
|
#define HIGHMEM_START _AC(0x20000000, UL)
|
|
#endif
|
|
|
|
#define CKSEG0ADDR_OR_64BIT(x) CKSEG0ADDR(x)
|
|
#define CKSEG1ADDR_OR_64BIT(x) CKSEG1ADDR(x)
|
|
#endif /* CONFIG_32BIT */
|
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
#ifndef CAC_BASE
|
|
#define CAC_BASE PHYS_TO_XKPHYS(read_c0_config() & CONF_CM_CMASK, 0)
|
|
#endif
|
|
|
|
#ifndef IO_BASE
|
|
#define IO_BASE _AC(0x9000000000000000, UL)
|
|
#endif
|
|
|
|
#ifndef UNCAC_BASE
|
|
#define UNCAC_BASE _AC(0x9000000000000000, UL)
|
|
#endif
|
|
|
|
#ifndef MAP_BASE
|
|
#define MAP_BASE _AC(0xc000000000000000, UL)
|
|
#endif
|
|
|
|
/*
|
|
* Memory above this physical address will be considered highmem.
|
|
* Fixme: 59 bits is a fictive number and makes assumptions about processors
|
|
* in the distant future. Nobody will care for a few years :-)
|
|
*/
|
|
#ifndef HIGHMEM_START
|
|
#define HIGHMEM_START (_AC(1, UL) << _AC(59, UL))
|
|
#endif
|
|
|
|
#define TO_PHYS(x) ( ((x) & TO_PHYS_MASK))
|
|
#define TO_CAC(x) (CAC_BASE | ((x) & TO_PHYS_MASK))
|
|
#define TO_UNCAC(x) (UNCAC_BASE | ((x) & TO_PHYS_MASK))
|
|
|
|
#define CKSEG0ADDR_OR_64BIT(x) TO_CAC(x)
|
|
#define CKSEG1ADDR_OR_64BIT(x) TO_UNCAC(x)
|
|
#endif /* CONFIG_64BIT */
|
|
|
|
/*
|
|
* This handles the memory map.
|
|
*/
|
|
#ifndef PAGE_OFFSET
|
|
#define PAGE_OFFSET (CAC_BASE + PHYS_OFFSET)
|
|
#endif
|
|
|
|
#ifndef FIXADDR_TOP
|
|
#define FIXADDR_TOP ((unsigned long)(long)(int)0xfffe0000)
|
|
#endif
|
|
|
|
#endif /* __ASM_MACH_GENERIC_SPACES_H */
|