2005-04-16 15:20:36 -07:00
|
|
|
/*
|
2007-09-17 17:11:07 +01:00
|
|
|
* Copyright (C) 2004, 2007 Maciej W. Rozycki
|
2005-04-16 15:20:36 -07:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#ifndef _ASM_COMPILER_H
|
|
|
|
#define _ASM_COMPILER_H
|
|
|
|
|
MIPS: Workaround GCC __builtin_unreachable reordering bug
Some versions of GCC for the MIPS architecture suffer from a bug which
can lead to instructions from beyond an unreachable statement being
incorrectly reordered into earlier branch delay slots if the unreachable
statement is the only content of a case in a switch statement. This can
lead to seemingly random behaviour, such as invalid memory accesses from
incorrectly reordered loads or stores, and link failures on microMIPS
builds.
See this potential GCC fix for details:
https://gcc.gnu.org/ml/gcc-patches/2015-09/msg00360.html
Runtime problems resulting from this bug were initially observed using a
maltasmvp_defconfig v4.4 kernel built using GCC 4.9.2 (from a Codescape
SDK 2015.06-05 toolchain), with the result being an address exception
taken after log messages about the L1 caches (during probe of the L2
cache):
Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
VPE topology {2,2} total 4
Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
Primary data cache 64kB, 4-way, PIPT, no aliases, linesize 32 bytes
<AdEL exception here>
This is early enough that the kernel exception vectors are not in use,
so any further output depends upon the bootloader. This is reproducible
in QEMU where no further output occurs - ie. the system hangs here.
Given the nature of the bug it may potentially be hit with differing
symptoms. The bug is known to affect GCC versions as recent as 7.3, and
it is unclear whether GCC 8 fixed it or just happens not to encounter
the bug in the testcase found at the link above due to differing
optimizations.
This bug can be worked around by placing a volatile asm statement, which
GCC is prevented from reordering past, prior to the
__builtin_unreachable call.
That was actually done already for other reasons by commit 173a3efd3edb
("bug.h: work around GCC PR82365 in BUG()"), but creates problems for
microMIPS builds due to the lack of a .insn directive. The microMIPS ISA
allows for interlinking with regular MIPS32 code by repurposing bit 0 of
the program counter as an ISA mode bit. To switch modes one changes the
value of this bit in the PC. However typical branch instructions encode
their offsets as multiples of 2-byte instruction halfwords, which means
they cannot change ISA mode - this must be done using either an indirect
branch (a jump-register in MIPS terminology) or a dedicated jalx
instruction. In order to ensure that regular branches don't attempt to
target code in a different ISA which they can't actually switch to, the
linker will check that branch targets are code in the same ISA as the
branch.
Unfortunately our empty asm volatile statements don't qualify as code,
and the link for microMIPS builds fails with errors such as:
arch/mips/mm/dma-default.s:3265: Error: branch to a symbol in another ISA mode
arch/mips/mm/dma-default.s:5027: Error: branch to a symbol in another ISA mode
Resolve this by adding a .insn directive within the asm statement which
declares that what comes next is code. This may or may not be true,
since we don't really know what comes next, but as this code is in an
unreachable path anyway that doesn't matter since we won't execute it.
We do this in asm/compiler.h & select CONFIG_HAVE_ARCH_COMPILER_H in
order to have this included by linux/compiler_types.h after
linux/compiler-gcc.h. This will result in asm/compiler.h being included
in all C compilations via the -include linux/compiler_types.h argument
in c_flags, which should be harmless.
Signed-off-by: Paul Burton <paul.burton@mips.com>
Fixes: 173a3efd3edb ("bug.h: work around GCC PR82365 in BUG()")
Patchwork: https://patchwork.linux-mips.org/patch/20270/
Cc: James Hogan <jhogan@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: linux-mips@linux-mips.org
2018-08-20 15:36:18 -07:00
|
|
|
/*
|
|
|
|
* With GCC 4.5 onwards we can use __builtin_unreachable to indicate to the
|
|
|
|
* compiler that a particular code path will never be hit. This allows it to be
|
|
|
|
* optimised out of the generated binary.
|
|
|
|
*
|
|
|
|
* Unfortunately at least GCC 4.6.3 through 7.3.0 inclusive suffer from a bug
|
|
|
|
* that can lead to instructions from beyond an unreachable statement being
|
|
|
|
* incorrectly reordered into earlier delay slots if the unreachable statement
|
|
|
|
* is the only content of a case in a switch statement. This can lead to
|
|
|
|
* seemingly random behaviour, such as invalid memory accesses from incorrectly
|
|
|
|
* reordered loads or stores. See this potential GCC fix for details:
|
|
|
|
*
|
|
|
|
* https://gcc.gnu.org/ml/gcc-patches/2015-09/msg00360.html
|
|
|
|
*
|
|
|
|
* It is unclear whether GCC 8 onwards suffer from the same issue - nothing
|
|
|
|
* relevant is mentioned in GCC 8 release notes and nothing obviously relevant
|
|
|
|
* stands out in GCC commit logs, but these newer GCC versions generate very
|
|
|
|
* different code for the testcase which doesn't exhibit the bug.
|
|
|
|
*
|
|
|
|
* GCC also handles stack allocation suboptimally when calling noreturn
|
|
|
|
* functions or calling __builtin_unreachable():
|
|
|
|
*
|
|
|
|
* https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82365
|
|
|
|
*
|
|
|
|
* We work around both of these issues by placing a volatile asm statement,
|
|
|
|
* which GCC is prevented from reordering past, prior to __builtin_unreachable
|
|
|
|
* calls.
|
|
|
|
*
|
|
|
|
* The .insn statement is required to ensure that any branches to the
|
|
|
|
* statement, which sadly must be kept due to the asm statement, are known to
|
|
|
|
* be branches to code and satisfy linker requirements for microMIPS kernels.
|
|
|
|
*/
|
|
|
|
#undef barrier_before_unreachable
|
|
|
|
#define barrier_before_unreachable() asm volatile(".insn")
|
|
|
|
|
2018-11-07 23:05:46 +00:00
|
|
|
#if !defined(CONFIG_CC_IS_GCC) || \
|
|
|
|
(__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)
|
|
|
|
# define GCC_OFF_SMALL_ASM() "ZC"
|
|
|
|
#elif defined(CONFIG_CPU_MICROMIPS)
|
|
|
|
# error "microMIPS compilation unsupported with GCC older than 4.9"
|
2014-11-15 22:08:48 +00:00
|
|
|
#else
|
2018-11-07 23:05:46 +00:00
|
|
|
# define GCC_OFF_SMALL_ASM() "R"
|
|
|
|
#endif
|
2014-11-15 22:08:48 +00:00
|
|
|
|
2014-11-18 15:02:32 +00:00
|
|
|
#ifdef CONFIG_CPU_MIPSR6
|
|
|
|
#define MIPS_ISA_LEVEL "mips64r6"
|
|
|
|
#define MIPS_ISA_ARCH_LEVEL MIPS_ISA_LEVEL
|
|
|
|
#define MIPS_ISA_LEVEL_RAW mips64r6
|
|
|
|
#define MIPS_ISA_ARCH_LEVEL_RAW MIPS_ISA_LEVEL_RAW
|
mips: Add MIPS Release 5 support
There are five MIPS32/64 architecture releases currently available:
from 1 to 6 except fourth one, which was intentionally skipped.
Three of them can be called as major: 1st, 2nd and 6th, that not only
have some system level alterations, but also introduced significant
core/ISA level updates. The rest of the MIPS architecture releases are
minor.
Even though they don't have as much ISA/system/core level changes
as the major ones with respect to the previous releases, they still
provide a set of updates (I'd say they were intended to be the
intermediate releases before a major one) that might be useful for the
kernel and user-level code, when activated by the kernel or compiler.
In particular the following features were introduced or ended up being
available at/after MIPS32/64 Release 5 architecture:
+ the last release of the misaligned memory access instructions,
+ virtualisation - VZ ASE - is optional component of the arch,
+ SIMD - MSA ASE - is optional component of the arch,
+ DSP ASE is optional component of the arch,
+ CP0.Status.FR=1 for CP1.FIR.F64=1 (pure 64-bit FPU general registers)
must be available if FPU is implemented,
+ CP1.FIR.Has2008 support is required so CP1.FCSR.{ABS2008,NAN2008} bits
are available.
+ UFR/UNFR aliases to access CP0.Status.FR from user-space by means of
ctc1/cfc1 instructions (enabled by CP0.Config5.UFR),
+ CP0.COnfig5.LLB=1 and eretnc instruction are implemented to without
accidentally clearing LL-bit when returning from an interrupt,
exception, or error trap,
+ XPA feature together with extended versions of CPx registers is
introduced, which needs to have mfhc0/mthc0 instructions available.
So due to these changes GNU GCC provides an extended instructions set
support for MIPS32/64 Release 5 by default like eretnc/mfhc0/mthc0. Even
though the architecture alteration isn't that big, it still worth to be
taken into account by the kernel software. Finally we can't deny that
some optimization/limitations might be found in future and implemented
on some level in kernel or compiler. In this case having even
intermediate MIPS architecture releases support would be more than
useful.
So the most of the changes provided by this commit can be split into
either compile- or runtime configs related. The compile-time related
changes are caused by adding the new CONFIG_CPU_MIPS32_R5/CONFIG_CPU_MIPSR5
configs and concern the code activating MIPSR2 or MIPSR6 already
implemented features (like eretnc/LLbit, mthc0/mfhc0). In addition
CPU_HAS_MSA can be now freely enabled for MIPS32/64 release 5 based
platforms as this is done for CPU_MIPS32_R6 CPUs. The runtime changes
concerns the features which are handled with respect to the MIPS ISA
revision detected at run-time by means of CP0.Config.{AT,AR} bits. Alas
these fields can be used to detect either r1 or r2 or r6 releases.
But since we know which CPUs in fact support the R5 arch, we can manually
set MIPS_CPU_ISA_M32R5/MIPS_CPU_ISA_M64R5 bit of c->isa_level and then
use cpu_has_mips32r5/cpu_has_mips64r5 where it's appropriate.
Since XPA/EVA provide too complex alterationss and to have them used with
MIPS32 Release 2 charged kernels (for compatibility with current platform
configs) they are left to be setup as a separate kernel configs.
Co-developed-by: Alexey Malahov <Alexey.Malahov@baikalelectronics.ru>
Signed-off-by: Alexey Malahov <Alexey.Malahov@baikalelectronics.ru>
Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: Paul Burton <paulburton@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: devicetree@vger.kernel.org
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
2020-05-21 17:07:14 +03:00
|
|
|
#elif defined(CONFIG_CPU_MIPSR5)
|
|
|
|
#define MIPS_ISA_LEVEL "mips64r5"
|
|
|
|
#define MIPS_ISA_ARCH_LEVEL MIPS_ISA_LEVEL
|
|
|
|
#define MIPS_ISA_LEVEL_RAW mips64r5
|
|
|
|
#define MIPS_ISA_ARCH_LEVEL_RAW MIPS_ISA_LEVEL_RAW
|
2014-11-18 15:02:32 +00:00
|
|
|
#else
|
|
|
|
/* MIPS64 is a superset of MIPS32 */
|
|
|
|
#define MIPS_ISA_LEVEL "mips64r2"
|
|
|
|
#define MIPS_ISA_ARCH_LEVEL "arch=r4000"
|
|
|
|
#define MIPS_ISA_LEVEL_RAW mips64r2
|
|
|
|
#define MIPS_ISA_ARCH_LEVEL_RAW MIPS_ISA_LEVEL_RAW
|
|
|
|
#endif /* CONFIG_CPU_MIPSR6 */
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif /* _ASM_COMPILER_H */
|