2005-04-17 06:20:36 +08: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.
|
|
|
|
*
|
2007-07-28 07:49:58 +08:00
|
|
|
* Copyright (C) 2003, 04, 07 Ralf Baechle <ralf@linux-mips.org>
|
2006-03-14 00:16:29 +08:00
|
|
|
* Copyright (C) MIPS Technologies, Inc.
|
|
|
|
* written by Ralf Baechle <ralf@linux-mips.org>
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
#ifndef _ASM_HAZARDS_H
|
|
|
|
#define _ASM_HAZARDS_H
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#include <linux/stringify.h>
|
2014-11-13 19:52:22 +08:00
|
|
|
#include <asm/compiler.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define ___ssnop \
|
|
|
|
sll $0, $0, 1
|
2006-09-08 10:13:49 +08:00
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define ___ehb \
|
|
|
|
sll $0, $0, 3
|
2006-09-08 10:13:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2006-09-08 10:13:49 +08:00
|
|
|
* TLB hazards
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
MIPS: Loongson-3: Introduce CONFIG_LOONGSON3_ENHANCEMENT
New Loongson 3 CPU (since Loongson-3A R2, as opposed to Loongson-3A R1,
Loongson-3B R1 and Loongson-3B R2) has many enhancements, such as FTLB,
L1-VCache, EI/DI/Wait/Prefetch instruction, DSP/DSPv2 ASE, User Local
register, Read-Inhibit/Execute-Inhibit, SFB (Store Fill Buffer), Fast
TLB refill support, etc.
This patch introduce a config option, CONFIG_LOONGSON3_ENHANCEMENT, to
enable those enhancements which are not probed at run time. If you want
a generic kernel to run on all Loongson 3 machines, please say 'N'
here. If you want a high-performance kernel to run on new Loongson 3
machines only, please say 'Y' here.
Some additional explanations:
1) SFB locates between core and L1 cache, it causes memory access out
of order, so writel/outl (and other similar functions) need a I/O
reorder barrier.
2) Loongson 3 has a bug that di instruction can not save the irqflag,
so arch_local_irq_save() is modified. Since CPU_MIPSR2 is selected
by CONFIG_LOONGSON3_ENHANCEMENT, generic kernel doesn't use ei/di
at all.
3) CPU_HAS_PREFETCH is selected by CONFIG_LOONGSON3_ENHANCEMENT, so
MIPS_CPU_PREFETCH (used by uasm) probing is also put in this patch.
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Cc: Aurelien Jarno <aurelien@aurel32.net>
Cc: Steven J . Hill <sjhill@realitydiluted.com>
Cc: Fuxin Zhang <zhangfx@lemote.com>
Cc: Zhangjin Wu <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/12755/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2016-03-03 09:45:13 +08:00
|
|
|
#if (defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)) && \
|
|
|
|
!defined(CONFIG_CPU_CAVIUM_OCTEON) && !defined(CONFIG_LOONGSON3_ENHANCEMENT)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2006-09-08 10:13:49 +08:00
|
|
|
* MIPSR2 defines ehb for hazard avoidance
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __mtc0_tlbw_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __mtc0_tlbr_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlbw_use_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __tlb_read_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlb_probe_hazard \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __irq_enable_hazard \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __irq_disable_hazard \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __back_to_back_c0_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2006-09-08 10:13:49 +08:00
|
|
|
* gcc has a tradition of misscompiling the previous construct using the
|
2013-01-22 19:59:30 +08:00
|
|
|
* address of a label as argument to inline assembler. Gas otoh has the
|
2006-09-08 10:13:49 +08:00
|
|
|
* annoying difference between la and dla which are only usable for 32-bit
|
|
|
|
* rsp. 64-bit code, so can't be used without conditional compilation.
|
2016-05-21 19:59:48 +08:00
|
|
|
* The alternative is switching the assembler to 64-bit code which happens
|
|
|
|
* to work right even for 32-bit code...
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2006-09-08 10:13:49 +08:00
|
|
|
#define instruction_hazard() \
|
|
|
|
do { \
|
|
|
|
unsigned long tmp; \
|
|
|
|
\
|
|
|
|
__asm__ __volatile__( \
|
2018-11-09 04:14:38 +08:00
|
|
|
" .set push \n" \
|
2014-11-13 19:52:22 +08:00
|
|
|
" .set "MIPS_ISA_LEVEL" \n" \
|
2006-09-08 10:13:49 +08:00
|
|
|
" dla %0, 1f \n" \
|
|
|
|
" jr.hb %0 \n" \
|
2018-11-09 04:14:38 +08:00
|
|
|
" .set pop \n" \
|
2006-09-08 10:13:49 +08:00
|
|
|
"1: \n" \
|
|
|
|
: "=r" (tmp)); \
|
|
|
|
} while (0)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-11-16 09:25:40 +08:00
|
|
|
#elif (defined(CONFIG_CPU_MIPSR1) && !defined(CONFIG_MIPS_ALCHEMY)) || \
|
|
|
|
defined(CONFIG_CPU_BMIPS)
|
2007-09-21 20:05:44 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These are slightly complicated by the fact that we guarantee R1 kernels to
|
|
|
|
* run fine on R2 processors.
|
|
|
|
*/
|
2013-02-09 01:13:30 +08:00
|
|
|
|
|
|
|
#define __mtc0_tlbw_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __mtc0_tlbr_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlbw_use_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __tlb_read_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlb_probe_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __irq_enable_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __irq_disable_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __back_to_back_c0_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ehb
|
|
|
|
|
2007-09-21 20:05:44 +08:00
|
|
|
/*
|
|
|
|
* gcc has a tradition of misscompiling the previous construct using the
|
2013-01-22 19:59:30 +08:00
|
|
|
* address of a label as argument to inline assembler. Gas otoh has the
|
2007-09-21 20:05:44 +08:00
|
|
|
* annoying difference between la and dla which are only usable for 32-bit
|
|
|
|
* rsp. 64-bit code, so can't be used without conditional compilation.
|
2016-05-21 19:59:48 +08:00
|
|
|
* The alternative is switching the assembler to 64-bit code which happens
|
|
|
|
* to work right even for 32-bit code...
|
2007-09-21 20:05:44 +08:00
|
|
|
*/
|
|
|
|
#define __instruction_hazard() \
|
|
|
|
do { \
|
|
|
|
unsigned long tmp; \
|
|
|
|
\
|
|
|
|
__asm__ __volatile__( \
|
2018-11-09 04:14:38 +08:00
|
|
|
" .set push \n" \
|
2007-09-21 20:05:44 +08:00
|
|
|
" .set mips64r2 \n" \
|
|
|
|
" dla %0, 1f \n" \
|
|
|
|
" jr.hb %0 \n" \
|
2018-11-09 04:14:38 +08:00
|
|
|
" .set pop \n" \
|
2007-09-21 20:05:44 +08:00
|
|
|
"1: \n" \
|
|
|
|
: "=r" (tmp)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define instruction_hazard() \
|
|
|
|
do { \
|
2014-11-13 19:52:22 +08:00
|
|
|
if (cpu_has_mips_r2_r6) \
|
2007-09-21 20:05:44 +08:00
|
|
|
__instruction_hazard(); \
|
|
|
|
} while (0)
|
|
|
|
|
2010-07-16 03:45:04 +08:00
|
|
|
#elif defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_CPU_CAVIUM_OCTEON) || \
|
MIPS: Loongson-3: Introduce CONFIG_LOONGSON3_ENHANCEMENT
New Loongson 3 CPU (since Loongson-3A R2, as opposed to Loongson-3A R1,
Loongson-3B R1 and Loongson-3B R2) has many enhancements, such as FTLB,
L1-VCache, EI/DI/Wait/Prefetch instruction, DSP/DSPv2 ASE, User Local
register, Read-Inhibit/Execute-Inhibit, SFB (Store Fill Buffer), Fast
TLB refill support, etc.
This patch introduce a config option, CONFIG_LOONGSON3_ENHANCEMENT, to
enable those enhancements which are not probed at run time. If you want
a generic kernel to run on all Loongson 3 machines, please say 'N'
here. If you want a high-performance kernel to run on new Loongson 3
machines only, please say 'Y' here.
Some additional explanations:
1) SFB locates between core and L1 cache, it causes memory access out
of order, so writel/outl (and other similar functions) need a I/O
reorder barrier.
2) Loongson 3 has a bug that di instruction can not save the irqflag,
so arch_local_irq_save() is modified. Since CPU_MIPSR2 is selected
by CONFIG_LOONGSON3_ENHANCEMENT, generic kernel doesn't use ei/di
at all.
3) CPU_HAS_PREFETCH is selected by CONFIG_LOONGSON3_ENHANCEMENT, so
MIPS_CPU_PREFETCH (used by uasm) probing is also put in this patch.
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Cc: Aurelien Jarno <aurelien@aurel32.net>
Cc: Steven J . Hill <sjhill@realitydiluted.com>
Cc: Fuxin Zhang <zhangfx@lemote.com>
Cc: Zhangjin Wu <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/12755/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2016-03-03 09:45:13 +08:00
|
|
|
defined(CONFIG_CPU_LOONGSON2) || defined(CONFIG_LOONGSON3_ENHANCEMENT) || \
|
|
|
|
defined(CONFIG_CPU_R10000) || defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_XLR)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2006-09-08 10:13:49 +08:00
|
|
|
* R10000 rocks - all hazards handled in hardware, so this becomes a nobrainer.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __mtc0_tlbw_hazard
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __mtc0_tlbr_hazard
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlbw_use_hazard
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __tlb_read_hazard
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlb_probe_hazard
|
|
|
|
|
|
|
|
#define __irq_enable_hazard
|
|
|
|
|
|
|
|
#define __irq_disable_hazard
|
|
|
|
|
|
|
|
#define __back_to_back_c0_hazard
|
|
|
|
|
2006-09-08 10:13:49 +08:00
|
|
|
#define instruction_hazard() do { } while (0)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-09-08 10:13:49 +08:00
|
|
|
#elif defined(CONFIG_CPU_SB1)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/*
|
2006-09-08 10:13:49 +08:00
|
|
|
* Mostly like R4000 for historic reasons
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __mtc0_tlbw_hazard
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __mtc0_tlbr_hazard
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlbw_use_hazard
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __tlb_read_hazard
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlb_probe_hazard
|
|
|
|
|
|
|
|
#define __irq_enable_hazard
|
|
|
|
|
|
|
|
#define __irq_disable_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop
|
|
|
|
|
|
|
|
#define __back_to_back_c0_hazard
|
|
|
|
|
2006-09-08 10:13:49 +08:00
|
|
|
#define instruction_hazard() do { } while (0)
|
2005-03-02 02:12:06 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
/*
|
2006-09-08 10:13:49 +08:00
|
|
|
* Finally the catchall case for all other processors including R4000, R4400,
|
|
|
|
* R4600, R4700, R5000, RM7000, NEC VR41xx etc.
|
2006-03-14 00:16:29 +08:00
|
|
|
*
|
2006-09-08 10:13:49 +08:00
|
|
|
* The taken branch will result in a two cycle penalty for the two killed
|
|
|
|
* instructions on R4000 / R4400. Other processors only have a single cycle
|
|
|
|
* hazard so this is nice trick to have an optimal code for a range of
|
|
|
|
* processors.
|
2005-12-22 20:41:29 +08:00
|
|
|
*/
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __mtc0_tlbw_hazard \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __mtc0_tlbr_hazard \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlbw_use_hazard \
|
|
|
|
nop; \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define __tlb_read_hazard \
|
|
|
|
nop; \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define __tlb_probe_hazard \
|
|
|
|
nop; \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
|
|
|
#define __irq_enable_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop
|
|
|
|
|
|
|
|
#define __irq_disable_hazard \
|
|
|
|
nop; \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
|
|
|
#define __back_to_back_c0_hazard \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop; \
|
|
|
|
___ssnop
|
|
|
|
|
2005-07-13 02:35:38 +08:00
|
|
|
#define instruction_hazard() do { } while (0)
|
2006-04-05 16:45:45 +08:00
|
|
|
|
2006-09-08 10:13:49 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-05-08 23:09:13 +08:00
|
|
|
|
|
|
|
/* FPU hazards */
|
|
|
|
|
|
|
|
#if defined(CONFIG_CPU_SB1)
|
2013-02-09 01:13:30 +08:00
|
|
|
|
|
|
|
#define __enable_fpu_hazard \
|
|
|
|
.set push; \
|
|
|
|
.set mips64; \
|
|
|
|
.set noreorder; \
|
|
|
|
___ssnop; \
|
|
|
|
bnezl $0, .+4; \
|
|
|
|
___ssnop; \
|
|
|
|
.set pop
|
|
|
|
|
|
|
|
#define __disable_fpu_hazard
|
2007-05-08 23:09:13 +08:00
|
|
|
|
2014-11-13 19:52:22 +08:00
|
|
|
#elif defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
|
2013-02-09 01:13:30 +08:00
|
|
|
|
|
|
|
#define __enable_fpu_hazard \
|
|
|
|
___ehb
|
|
|
|
|
|
|
|
#define __disable_fpu_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2007-05-08 23:09:13 +08:00
|
|
|
#else
|
2013-02-09 01:13:30 +08:00
|
|
|
|
|
|
|
#define __enable_fpu_hazard \
|
|
|
|
nop; \
|
|
|
|
nop; \
|
|
|
|
nop; \
|
|
|
|
nop
|
|
|
|
|
|
|
|
#define __disable_fpu_hazard \
|
|
|
|
___ehb
|
|
|
|
|
2007-05-08 23:09:13 +08:00
|
|
|
#endif
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
|
|
|
|
#define _ssnop ___ssnop
|
|
|
|
#define _ehb ___ehb
|
|
|
|
#define mtc0_tlbw_hazard __mtc0_tlbw_hazard
|
2015-05-19 16:50:30 +08:00
|
|
|
#define mtc0_tlbr_hazard __mtc0_tlbr_hazard
|
2013-02-09 01:13:30 +08:00
|
|
|
#define tlbw_use_hazard __tlbw_use_hazard
|
2015-05-19 16:50:30 +08:00
|
|
|
#define tlb_read_hazard __tlb_read_hazard
|
2013-02-09 01:13:30 +08:00
|
|
|
#define tlb_probe_hazard __tlb_probe_hazard
|
|
|
|
#define irq_enable_hazard __irq_enable_hazard
|
|
|
|
#define irq_disable_hazard __irq_disable_hazard
|
|
|
|
#define back_to_back_c0_hazard __back_to_back_c0_hazard
|
|
|
|
#define enable_fpu_hazard __enable_fpu_hazard
|
|
|
|
#define disable_fpu_hazard __disable_fpu_hazard
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define _ssnop() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(___ssnop) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define _ehb() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(___ehb) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define mtc0_tlbw_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__mtc0_tlbw_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define mtc0_tlbr_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__mtc0_tlbr_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define tlbw_use_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__tlbw_use_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2015-05-19 16:50:30 +08:00
|
|
|
#define tlb_read_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__tlb_read_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2013-02-09 01:13:30 +08:00
|
|
|
#define tlb_probe_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__tlb_probe_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define irq_enable_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__irq_enable_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define irq_disable_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__irq_disable_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define back_to_back_c0_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__back_to_back_c0_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define enable_fpu_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__enable_fpu_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define disable_fpu_hazard() \
|
|
|
|
do { \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
__stringify(__disable_fpu_hazard) \
|
|
|
|
); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MIPS R2 instruction hazard barrier. Needs to be called as a subroutine.
|
|
|
|
*/
|
|
|
|
extern void mips_ihb(void);
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _ASM_HAZARDS_H */
|