Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-mips / war.h
blobc4a70412134327a586b46acc7f00b385b14d8f0f
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * Copyright (C) 2002, 2004 by Ralf Baechle
7 */
8 #ifndef _ASM_WAR_H
9 #define _ASM_WAR_H
11 #include <linux/config.h>
14 * Another R4600 erratum. Due to the lack of errata information the exact
15 * technical details aren't known. I've experimentally found that disabling
16 * interrupts during indexed I-cache flushes seems to be sufficient to deal
17 * with the issue.
19 * #define R4600_V1_INDEX_ICACHEOP_WAR 1
23 * Pleasures of the R4600 V1.x. Cite from the IDT R4600 V1.7 errata:
25 * 18. The CACHE instructions Hit_Writeback_Invalidate_D, Hit_Writeback_D,
26 * Hit_Invalidate_D and Create_Dirty_Excl_D should only be
27 * executed if there is no other dcache activity. If the dcache is
28 * accessed for another instruction immeidately preceding when these
29 * cache instructions are executing, it is possible that the dcache
30 * tag match outputs used by these cache instructions will be
31 * incorrect. These cache instructions should be preceded by at least
32 * four instructions that are not any kind of load or store
33 * instruction.
35 * This is not allowed: lw
36 * nop
37 * nop
38 * nop
39 * cache Hit_Writeback_Invalidate_D
41 * This is allowed: lw
42 * nop
43 * nop
44 * nop
45 * nop
46 * cache Hit_Writeback_Invalidate_D
48 * #define R4600_V1_HIT_CACHEOP_WAR 1
53 * Writeback and invalidate the primary cache dcache before DMA.
55 * R4600 v2.0 bug: "The CACHE instructions Hit_Writeback_Inv_D,
56 * Hit_Writeback_D, Hit_Invalidate_D and Create_Dirty_Exclusive_D will only
57 * operate correctly if the internal data cache refill buffer is empty. These
58 * CACHE instructions should be separated from any potential data cache miss
59 * by a load instruction to an uncached address to empty the response buffer."
60 * (Revision 2.0 device errata from IDT available on http://www.idt.com/
61 * in .pdf format.)
63 * #define R4600_V2_HIT_CACHEOP_WAR 1
67 * R4600 CPU modules for the Indy come with both V1.7 and V2.0 processors.
69 #ifdef CONFIG_SGI_IP22
71 #define R4600_V1_INDEX_ICACHEOP_WAR 1
72 #define R4600_V1_HIT_CACHEOP_WAR 1
73 #define R4600_V2_HIT_CACHEOP_WAR 1
75 #endif
78 * But the RM200C seems to have been shipped only with V2.0 R4600s
80 #ifdef CONFIG_SNI_RM200_PCI
82 #define R4600_V2_HIT_CACHEOP_WAR 1
84 #endif
86 #ifdef CONFIG_CPU_R5432
89 * When an interrupt happens on a CP0 register read instruction, CPU may
90 * lock up or read corrupted values of CP0 registers after it enters
91 * the exception handler.
93 * This workaround makes sure that we read a "safe" CP0 register as the
94 * first thing in the exception handler, which breaks one of the
95 * pre-conditions for this problem.
97 #define R5432_CP0_INTERRUPT_WAR 1
99 #endif
101 #if defined(CONFIG_SB1_PASS_1_WORKAROUNDS) || \
102 defined(CONFIG_SB1_PASS_2_WORKAROUNDS)
105 * Workaround for the Sibyte M3 errata the text of which can be found at
107 * http://sibyte.broadcom.com/hw/bcm1250/docs/pass2errata.txt
109 * This will enable the use of a special TLB refill handler which does a
110 * consistency check on the information in c0_badvaddr and c0_entryhi and
111 * will just return and take the exception again if the information was
112 * found to be inconsistent.
114 #define BCM1250_M3_WAR 1
117 * This is a DUART workaround related to glitches around register accesses
119 #define SIBYTE_1956_WAR 1
121 #endif
124 * Fill buffers not flushed on CACHE instructions
126 * Hit_Invalidate_I cacheops invalidate an icache line but the refill
127 * for that line can get stale data from the fill buffer instead of
128 * accessing memory if the previous icache miss was also to that line.
130 * Workaround: generate an icache refill from a different line
132 * Affects:
133 * MIPS 4K RTL revision <3.0, PRID revision <4
135 #if defined(CONFIG_MIPS_MALTA) || defined(CONFIG_MIPS_ATLAS) || \
136 defined(CONFIG_MIPS_SEAD)
137 #define MIPS4K_ICACHE_REFILL_WAR 1
138 #endif
141 * Missing implicit forced flush of evictions caused by CACHE
142 * instruction
144 * Evictions caused by a CACHE instructions are not forced on to the
145 * bus. The BIU gives higher priority to fetches than to the data from
146 * the eviction buffer and no collision detection is performed between
147 * fetches and pending data from the eviction buffer.
149 * Workaround: Execute a SYNC instruction after the cache instruction
151 * Affects:
152 * MIPS 5Kc,5Kf RTL revision <2.3, PRID revision <8
153 * MIPS 20Kc RTL revision <4.0, PRID revision <?
155 #if defined(CONFIG_MIPS_MALTA) || defined(CONFIG_MIPS_ATLAS) || \
156 defined(CONFIG_MIPS_SEAD)
157 #define MIPS_CACHE_SYNC_WAR 1
158 #endif
161 * From TX49/H2 manual: "If the instruction (i.e. CACHE) is issued for
162 * the line which this instruction itself exists, the following
163 * operation is not guaranteed."
165 * Workaround: do two phase flushing for Index_Invalidate_I
167 #ifdef CONFIG_CPU_TX49XX
168 #define TX49XX_ICACHE_INDEX_INV_WAR 1
169 #endif
172 * On the RM9000 there is a problem which makes the CreateDirtyExclusive
173 * cache operation unusable on SMP systems.
175 #if defined(CONFIG_MOMENCO_JAGUAR_ATX) || defined(CONFIG_PMC_YOSEMITE)
176 #define RM9000_CDEX_SMP_WAR 1
177 #endif
180 * ON the R10000 upto version 2.6 (not sure about 2.7) there is a bug that
181 * may cause ll / sc and lld / scd sequences to execute non-atomically.
183 #ifdef CONFIG_SGI_IP27
184 #define R10000_LLSC_WAR 1
185 #endif
188 * Workarounds default to off
190 #ifndef R4600_V1_INDEX_ICACHEOP_WAR
191 #define R4600_V1_INDEX_ICACHEOP_WAR 0
192 #endif
193 #ifndef R4600_V1_HIT_CACHEOP_WAR
194 #define R4600_V1_HIT_CACHEOP_WAR 0
195 #endif
196 #ifndef R4600_V2_HIT_CACHEOP_WAR
197 #define R4600_V2_HIT_CACHEOP_WAR 0
198 #endif
199 #ifndef R5432_CP0_INTERRUPT_WAR
200 #define R5432_CP0_INTERRUPT_WAR 0
201 #endif
202 #ifndef BCM1250_M3_WAR
203 #define BCM1250_M3_WAR 0
204 #endif
205 #ifndef SIBYTE_1956_WAR
206 #define SIBYTE_1956_WAR 0
207 #endif
208 #ifndef MIPS4K_ICACHE_REFILL_WAR
209 #define MIPS4K_ICACHE_REFILL_WAR 0
210 #endif
211 #ifndef MIPS_CACHE_SYNC_WAR
212 #define MIPS_CACHE_SYNC_WAR 0
213 #endif
214 #ifndef TX49XX_ICACHE_INDEX_INV_WAR
215 #define TX49XX_ICACHE_INDEX_INV_WAR 0
216 #endif
217 #ifndef RM9000_CDEX_SMP_WAR
218 #define RM9000_CDEX_SMP_WAR 0
219 #endif
220 #ifndef R10000_LLSC_WAR
221 #define R10000_LLSC_WAR 0
222 #endif
224 #endif /* _ASM_WAR_H */