anomaly.h 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright 2004-2012 Analog Devices Inc.
  3. * Licensed under the ADI BSD license.
  4. * https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd
  5. */
  6. /* This file should be up to date with:
  7. * - Revision A, 15/06/2012; ADSP-BF609 Blackfin Processor Anomaly List
  8. */
  9. #if __SILICON_REVISION__ < 0
  10. # error will not work on BF609 silicon version
  11. #endif
  12. #ifndef _MACH_ANOMALY_H_
  13. #define _MACH_ANOMALY_H_
  14. /* TRU_STAT.ADDRERR and TRU_ERRADDR.ADDR May Not Reflect the Correct Status */
  15. #define ANOMALY_16000003 (1)
  16. /* The EPPI Data Enable (DEN) Signal is Not Functional */
  17. #define ANOMALY_16000004 (1)
  18. /* Using L1 Instruction Cache with Parity Enabled is Unreliable */
  19. #define ANOMALY_16000005 (1)
  20. /* SEQSTAT.SYSNMI Clears Upon Entering the NMI ISR */
  21. #define ANOMALY_16000006 (1)
  22. /* DDR2 Memory Reads May Fail Intermittently */
  23. #define ANOMALY_16000007 (1)
  24. /* Instruction Memory Stalls Can Cause IFLUSH to Fail */
  25. #define ANOMALY_16000008 (1)
  26. /* TestSET Instruction Cannot Be Interrupted */
  27. #define ANOMALY_16000009 (1)
  28. /* IFLUSH Instruction at End of Hardware Loop Causes Infinite Stall */
  29. #define ANOMALY_16000010 (1)
  30. /* False Hardware Error when RETI Points to Invalid Memory */
  31. #define ANOMALY_16000011 (1)
  32. /* Speculative Fetches of Indirect-Pointer Inst Can Cause False Hw Errors */
  33. #define ANOMALY_16000012 (1)
  34. /* False Hardware Errors Caused by Fetches at the Boundary of Reserved Memory */
  35. #define ANOMALY_16000013 (1)
  36. /* False Hardware Error from an Access in the Shadow of a Conditional Branch */
  37. #define ANOMALY_16000014 (1)
  38. /* Multi-Issue Inst with dsp32shiftimm in slot1 and P in slot2 Not Supported */
  39. #define ANOMALY_16000015 (1)
  40. /* Speculative Fetches Can Cause Undesired External FIFO Operations */
  41. #define ANOMALY_16000017 (1)
  42. /* RSI Boot Cleanup Routine Does Not Clear Registers */
  43. #define ANOMALY_16000018 (1)
  44. /* SPI Master Boot Device Auto-detection Frequency is Set Incorrectly */
  45. #define ANOMALY_16000019 (1)
  46. /* rom_SysControl() Fails to Set DDR0_CTL.INIT for Wakeup From Hibernate */
  47. #define ANOMALY_16000020 (1)
  48. /* rom_SysControl() Fails to Save and Restore DDR0_PHYCTL3 for Hb/Wk Sequence */
  49. #define ANOMALY_16000021 (1)
  50. /* Boot Code Fails to Enable Parity Fault Detection */
  51. #define ANOMALY_16000022 (1)
  52. /* USB DMA interrupt status do not show the DMA channel intr in the DMA ISR */
  53. #define ANOMALY_16000027 (1)
  54. /* Interrupted Core Reads of MMRs May Cause Data Loss */
  55. #define ANOMALY_16000030 (1)
  56. /* Anomalies that don't exist on this proc */
  57. #define ANOMALY_05000158 (0)
  58. #define ANOMALY_05000189 (0)
  59. #define ANOMALY_05000198 (0)
  60. #define ANOMALY_05000219 (0)
  61. #define ANOMALY_05000230 (0)
  62. #define ANOMALY_05000231 (0)
  63. #define ANOMALY_05000244 (0)
  64. #define ANOMALY_05000261 (0)
  65. #define ANOMALY_05000263 (0)
  66. #define ANOMALY_05000273 (0)
  67. #define ANOMALY_05000274 (0)
  68. #define ANOMALY_05000278 (0)
  69. #define ANOMALY_05000281 (0)
  70. #define ANOMALY_05000287 (0)
  71. #define ANOMALY_05000311 (0)
  72. #define ANOMALY_05000312 (0)
  73. #define ANOMALY_05000323 (0)
  74. #define ANOMALY_05000353 (1)
  75. #define ANOMALY_05000363 (0)
  76. #define ANOMALY_05000386 (0)
  77. #define ANOMALY_05000480 (0)
  78. #define ANOMALY_05000481 (1)
  79. /* Reuse BF5xx anomalies IDs for the same anomaly in BF60x */
  80. #define ANOMALY_05000491 ANOMALY_16000008
  81. #define ANOMALY_05000477 ANOMALY_16000009
  82. #define ANOMALY_05000443 ANOMALY_16000010
  83. #define ANOMALY_05000461 ANOMALY_16000011
  84. #define ANOMALY_05000426 ANOMALY_16000012
  85. #define ANOMALY_05000310 ANOMALY_16000013
  86. #define ANOMALY_05000245 ANOMALY_16000014
  87. #define ANOMALY_05000074 ANOMALY_16000015
  88. #define ANOMALY_05000416 ANOMALY_16000017
  89. #endif