source: trunk/libs/newlib/src/libgloss/bfin/include/sys/anomaly_macros_rtl.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 11.8 KB
Line 
1/*
2 * The authors hereby grant permission to use, copy, modify, distribute,
3 * and license this software and its documentation for any purpose, provided
4 * that existing copyright notices are retained in all copies and that this
5 * notice is included verbatim in any distributions. No written agreement,
6 * license, or royalty fee is required for any of the authorized uses.
7 * Modifications to this software may be copyrighted by their authors
8 * and need not follow the licensing terms described here, provided that
9 * the new terms are clearly indicated on the first page of each file where
10 * they apply.
11 */
12
13/************************************************************************
14 *
15 * anomaly_macros_rtl.h : $Revision$
16 *
17 * (c) Copyright 2005-2011 Analog Devices, Inc.  All rights reserved.
18 *
19 * This file defines macros used within the run-time libraries to enable
20 * certain anomaly workarounds for the appropriate chips and silicon
21 * revisions. Certain macros are defined for silicon-revision none - this
22 * is to ensure behaviour is unchanged from libraries supplied with
23 * earlier tools versions, where a small number of anomaly workarounds
24 * were applied in all library flavours. __FORCE_LEGACY_WORKAROUNDS__
25 * is defined in this case.
26 *
27 * This file defines macros for a subset of all anomalies that may impact
28 * the run-time libraries.
29 *
30 ************************************************************************/
31
32
33#ifdef _MISRA_RULES
34#pragma diag(push)
35#pragma diag(suppress:misra_rule_2_4:"Assembly code in comment used to illustrate anomalous behaviour")
36#endif /* _MISRA_RULES */
37
38#if !defined(__SILICON_REVISION__)
39#define __FORCE_LEGACY_WORKAROUNDS__
40#endif
41
42
43/* 050000245 - "False Hardware Error from an Access in the Shadow of a
44**              Conditional Branch"
45**
46** If a load accesses reserved or illegal memory on the opposite control
47** flow of a conditional jump to the taken path, a false hardware error
48** will occur.
49**
50** This macro is used by System Services/Device Drivers.
51**
52** This is for all Blackfin LP parts.
53*/
54#define WA_05000245 \
55  (defined(__ADSPLPBLACKFIN__) && defined(__SILICON_REVISION__))
56
57
58/* 05-00-0229 - "SPI Slave Boot Mode Modifies Registers".
59 * When the SPI slave boot completes, the final DMA IRQ is cleared
60 * but the DMA5_CONFIG and SPI_CTL registers are not reset to their
61 * default states.
62 *
63 * We work around this by resetting the registers to their default
64 * values at the beginning of the CRT. The only issue would be when
65 * users boot from flash and make use of the DMA or serial port.
66 * In this case, users would need to modify the CRT.
67 *
68 * This problem impacts all revisions of ADSP-BF531/2/3/8/9
69 */
70#define WA_05000229 \
71        (defined(__ADSPBLACKFIN__) && defined (__SILICON_REVISION__) && \
72         (defined(__ADSPBF531__) || defined(__ADSPBF532__) || \
73          defined(__ADSPBF533__) || defined(__ADSPBF538__) || \
74          defined(__ADSPBF539__)))
75
76
77/* 05-00-0283 - "A system MMR write is stalled indefinitely when killed in a
78 * particular stage".
79 *
80 * Where an interrupt occurs killing a stalled system MMR write, and the ISR
81 * executes an SSYNC, execution execution may stall indefinitely".
82 *
83 * The workaround is to execute a mispredicted jump over a dummy MMR read,
84 * thus killing the read. Also to avoid a system MMR write in two slots
85 * after a not predicted conditional jump.
86 *
87 * This problem impacts:
88 * BF531/2/3 - < 0.6
89 * BF534/6/7 - < 0.3
90 * BF538/9 - < 0.4
91 * BF561/6 - < 0.5
92 *
93 * Since this impacts 538/9 0.3 but not 534 0.3 (the libraries that they use)
94 * we have to enable this workaround for the 534 0.3 libraries (see bottom
95 * two lines).
96 */
97#define WA_05000283 \
98        (defined (__SILICON_REVISION__) && \
99         (((defined(__ADSPBF531__) ||  \
100            defined(__ADSPBF532__) ||  \
101            defined(__ADSPBF533__)) && \
102           (__SILICON_REVISION__ == 0xffff || \
103            __SILICON_REVISION__ < 0x6)) || \
104          ((defined(__ADSPBF534__) ||  \
105            defined(__ADSPBF536__) ||  \
106            defined(__ADSPBF537__)) && \
107           (__SILICON_REVISION__ == 0xffff || \
108            __SILICON_REVISION__ < 0x3)) || \
109          ((defined(__ADSPBF538__) ||  \
110            defined(__ADSPBF539__)) &&  \
111           (__SILICON_REVISION__ == 0xffff || \
112            __SILICON_REVISION__ < 0x4)) || \
113          (defined(__ADSPBF561__)) || \
114          (defined(__ADSPBF534__) && __SILICON_REVISION__ == 0x3 && \
115           defined(__ADI_LIB_BUILD__))))
116
117
118/* 05-00-0311 - Erroneous Flag (GPIO) Pin Operations under Specific Sequences
119**
120**  Impacted:
121**     ADSP-BF53[123] - 0.0-0.5 (fixed in 0.6)
122**
123** Use by System Services/Device Drivers.
124*/
125#define WA_05000311 \
126  (defined(__ADSPBF533_FAMILY__) && \
127   (defined(__SILICON_REVISION__) && \
128    (__SILICON_REVISION__ <= 0x5 || __SILICON_REVISION__ == 0xffff)))
129
130
131/* 05-00-0312 - Errors when SSYNC, CSYNC, or Loads to LT, LB and LC Registers
132**              Are Interrupted
133**
134**  Impacted:
135**     ADSP-BF53[123]   - 0.0-0.5 (fixed in 0.6)
136**     ADSP-BF53[467]   - all supported revisions
137**     ADSP-BF53[89]    - 0.0-0.4 (fixed in 0.5)
138**     ADSP-BF561       - all supported revisions
139**     ADSP-BF54[24789] - 0.0 (fixed in 0.1)
140**
141** Used by VDK
142*/
143#define WA_05000312 \
144        (defined(__SILICON_REVISION__) && \
145         ((defined(__ADSPBF533_FAMILY__) &&  \
146           (__SILICON_REVISION__ <= 0x5 || __SILICON_REVISION__ == 0xffff)) || \
147          (defined(__ADSPBF537_FAMILY__)) ||  \
148          (defined(__ADSPBF538_FAMILY__) &&  \
149           (__SILICON_REVISION__ <= 0x4 || __SILICON_REVISION__ == 0xffff)) || \
150          (defined(__ADSPBF548_FAMILY__) && \
151           (__SILICON_REVISION__ == 0x0 || __SILICON_REVISION__ == 0xffff)) || \
152          (defined(__ADSPBF561_FAMILY__))))
153
154
155/* 05-00-0323 - Erroneous Flag (GPIO) Pin Operations under Specific Sequences
156**
157**  Impacted:
158**     ADSP-BF561 - all supported revisions
159**
160** Use by System Services/Device Drivers.
161*/
162#define WA_05000323 \
163  (defined(__ADSPBF561__) && defined(__SILICON_REVISION__))
164
165
166/* 05-00-0365 - DMAs that Go Urgent during Tight Core Writes to External
167**              Memory Are Blocked
168**
169**  Impacted:
170**     ADSP-BF54[24789] - all supported revisions
171**     ADSP-BF54[24789]M - all supported revisions
172**
173** Use by System Services/Device Drivers.
174*/
175#define WA_05000365 \
176  ((defined(__ADSPBF548_FAMILY__) || defined(__ADSPBF548M_FAMILY__)) && \
177   defined(__SILICON_REVISION__))
178
179
180/* 05-00-0371 - Possible RETS Register Corruption when Subroutine Is under
181**              5 Cycles in Duration
182**
183** This problem impacts:
184** BF531/2/3 - 0.0-0.5 (fixed in 0.6)
185** BF534/6/7 - 0.0-0.3
186** BF538/9   - 0.0-0.4 (fixed in 0.5)
187** BF561     - 0.0-0.5
188** BF542/4/7/8/9  - 0.0-0.1 (fixed in 0.2)
189** BF523/5/7 - 0.0-0.1 (fixed in 0.2)
190**
191*/
192#define WA_05000371 \
193  (defined(__SILICON_REVISION__) && \
194   ((defined(__ADSPBF533_FAMILY__) && \
195     (__SILICON_REVISION__ <= 0x5 || __SILICON_REVISION__ == 0xffff)) || \
196    (defined(__ADSPBF537_FAMILY__) && \
197     (__SILICON_REVISION__ <= 0x3 || __SILICON_REVISION__ == 0xffff)) || \
198    (defined(__ADSPBF538_FAMILY__) && \
199     (__SILICON_REVISION__ <= 0x4 || __SILICON_REVISION__ == 0xffff)) || \
200    (defined(__ADSPBF548_FAMILY__) && \
201     (__SILICON_REVISION__ <= 0x1 || __SILICON_REVISION__ == 0xffff)) || \
202    (defined(__ADSPBF527_FAMILY__) && \
203     (__SILICON_REVISION__ <= 0x1 || __SILICON_REVISION__ == 0xffff)) || \
204    (defined(__ADSPBF561__) || defined(__ADSPBF566__))))
205
206
207/* 05-00-0412 - "TESTSET Instruction Causes Data Corruption with Writeback Data
208 * Cache Enabled"
209 *
210 * If you use the testset instruction to operate on L2 memory and you have data
211 * in external memory that is cached using WB mode, data in external memory
212 * and/or L2 memory can be corrupted.
213 *
214 * Workaround: Either do not use writeback cache or precede the TESTSET
215 * instruction with an SSYNC instruction. If preceding the TESTSET instruction
216 * by an SSYNC instruction, do the following:
217 *
218 *   CLI R0
219 *   R1 = [P0]  // perform a dummy read to make sure CPLB is installed
220 *   NOP
221 *   NOP
222 *   SSYNC
223 *   TESTSET (P0)
224 *   STI R0
225 *
226 * This problem impacts:
227 * BF561/6 - rev 0.0-0.5
228 *
229 */
230#define WA_05000412 \
231        (defined (__SILICON_REVISION__) && defined(__ADSPBF561__))
232
233
234/* 05-00-0426 - Speculative Fetches of Indirect-Pointer Instructions Can
235**              Cause False Hardware Errors
236**
237**
238** A false hardware error is generated if there is an indirect jump or
239** call through a pointer which may point to reserved or illegal memory
240** on the opposite control flow of a conditional jump to the taken path.
241** This commonly occurs when using function pointers, which can be
242** invalid (e.g., set to -1).
243**
244** Workaround: If instruction cache is on or the ICPLBs are enabled,
245** this anomaly does not apply. If instruction cache is off and ICPLBs
246** are disabled, the indirect pointer instructions must be 2 instructions
247** away from the branch instruction, which can be implemented using NOPs:
248**
249**
250**  Impacted:
251**     All parts and revisions other than BF535 based parts.
252**
253** Used by System Services/Device Drivers.
254*/
255#define WA_05000426 \
256   (defined(__ADSPLPBLACKFIN__) && defined(__SILICON_REVISION__))
257
258
259/* 05-00-0428 - "Lost/Corrupted Write to L2 Memory Following Speculative Read
260 * by Core B from L2 Memory"
261 *
262 * This issue occurs only when the accesses are performed by core B of a BF561.
263 *
264 * When a write to internal L2 memory follows a speculative read from internal
265 * L2 memory, the L2 write may be lost or corrupted. For this anomaly to occur,
266 * the speculative read must be caused by a read in the shadow of a branch. The
267 * accesses do not have to be consecutive accesses. In other words, the problem
268 * can occur even if there are multiple instructions between the speculative
269 * read and the write, as shown in the following example:
270 *
271 *   R1 = 1; R2 = 1;
272 *   CC = R1 == R2;
273 *   IF CC JUMP X;  // Always true...
274 *   R0 = [P0];     // If any of these three loads accesses L2 memory from Core
275 *   R1 = [P1];     // B, speculative execution in the pipeline causes the
276 *   R2 = [P2];     // anomaly trigger condition.
277 *   X:
278 *   ...            // Any number of instructions...
279 *   [P0] = R0;  // This write can be corrupted or lost.
280 *
281 * The issue does not occur if the speculative read access is caused by an
282 * interrupt or exception.
283 *
284 * The workaround required depends upon the conditional branch instruction.
285 * If the evaluated condition is true and the branch is predicted, then the
286 * workaround is to ensure that the target instruction is not be a load
287 * instruction, for example:
288 *
289 *   IF CC JUMP X (BP);
290 *   ...
291 *   X: <load that might be from L2 memory>
292 *
293 * If the evaluated condition is false and the branch is not predicted, then
294 * the workaround is to make sure that none of the three instructions that
295 * are executed after the conditional JUMP are load instructions, for example:
296 *
297 *   IF CC JUMP ...;
298 *   <load that might be from L2 memory>
299 *   <load that might be from L2 memory>
300 *   <load that might be from L2 memory>
301 *
302 * This problem impacts:
303 * BF561 - rev 0.4,0.5
304 *
305 */
306#define WA_05000428 \
307        (defined(__SILICON_REVISION__) && \
308         defined(__ADSPBF561__)        && \
309         ((__SILICON_REVISION__ == 0xffff) || \
310          (__SILICON_REVISION__ == 0x4)    || \
311          (__SILICON_REVISION__ == 0x5)))
312
313
314/* 05-00-0443 - IFLUSH Instruction at End of Hardware Loop Causes Infinite Stall
315**
316**  Impacted:
317**     All parts and revisions other than BF535 based parts.
318**
319** Used by System Services/Device Drivers.
320*/
321#define WA_05000443 \
322   (defined(__ADSPLPBLACKFIN__) && defined(__SILICON_REVISION__))
323
324
325/* 16-00-0005 - "Using L1 Instruction Cache with Parity Enabled is Unreliable."
326**
327** Using L1 instruction cache with parity enabled is unreliable and may cause
328** unpredictable results.
329**
330** Impacted:
331**    BF6xx.
332*/
333#define WA_16000005 \
334  (defined(__ADSPBF60x__) && defined(__SILICON_REVISION__))
335
336#ifdef _MISRA_RULES
337#pragma diag(pop)
338#endif /* _MISRA_RULES */
339
Note: See TracBrowser for help on using the repository browser.