Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 1 | /* |
Jerry Huang | ed41367 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 2 | * Copyright 2010-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 3 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
| 9 | #include <linux/compiler.h> |
Shengzhou Liu | 7d8dfb8 | 2015-11-20 15:52:03 +0800 | [diff] [blame] | 10 | #include <fsl_errata.h> |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 11 | #include <asm/processor.h> |
Nikhil Badola | 76c2f2e | 2014-09-30 11:22:43 +0530 | [diff] [blame] | 12 | #include <fsl_usb.h> |
Timur Tabi | c5355dd | 2012-11-01 08:20:23 +0000 | [diff] [blame] | 13 | #include "fsl_corenet_serdes.h" |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 14 | |
Timur Tabi | e3ab8c1 | 2012-10-25 12:40:00 +0000 | [diff] [blame] | 15 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004849 |
| 16 | /* |
| 17 | * This work-around is implemented in PBI, so just check to see if the |
| 18 | * work-around was actually applied. To do this, we check for specific data |
| 19 | * at specific addresses in DCSR. |
| 20 | * |
| 21 | * Array offsets[] contains a list of offsets within DCSR. According to the |
| 22 | * erratum document, the value at each offset should be 2. |
| 23 | */ |
| 24 | static void check_erratum_a4849(uint32_t svr) |
| 25 | { |
| 26 | void __iomem *dcsr = (void *)CONFIG_SYS_DCSRBAR + 0xb0000; |
| 27 | unsigned int i; |
| 28 | |
York Sun | df70d06 | 2016-11-18 11:20:40 -0800 | [diff] [blame] | 29 | #if defined(CONFIG_ARCH_P2041) || defined(CONFIG_ARCH_P3041) |
Timur Tabi | e3ab8c1 | 2012-10-25 12:40:00 +0000 | [diff] [blame] | 30 | static const uint8_t offsets[] = { |
| 31 | 0x50, 0x54, 0x58, 0x90, 0x94, 0x98 |
| 32 | }; |
| 33 | #endif |
York Sun | 84be8a9 | 2016-11-18 11:24:40 -0800 | [diff] [blame] | 34 | #ifdef CONFIG_ARCH_P4080 |
Timur Tabi | e3ab8c1 | 2012-10-25 12:40:00 +0000 | [diff] [blame] | 35 | static const uint8_t offsets[] = { |
| 36 | 0x60, 0x64, 0x68, 0x6c, 0xa0, 0xa4, 0xa8, 0xac |
| 37 | }; |
| 38 | #endif |
| 39 | uint32_t x108; /* The value that should be at offset 0x108 */ |
| 40 | |
| 41 | for (i = 0; i < ARRAY_SIZE(offsets); i++) { |
| 42 | if (in_be32(dcsr + offsets[i]) != 2) { |
| 43 | printf("Work-around for Erratum A004849 is not enabled\n"); |
| 44 | return; |
| 45 | } |
| 46 | } |
| 47 | |
York Sun | df70d06 | 2016-11-18 11:20:40 -0800 | [diff] [blame] | 48 | #if defined(CONFIG_ARCH_P2041) || defined(CONFIG_ARCH_P3041) |
Timur Tabi | e3ab8c1 | 2012-10-25 12:40:00 +0000 | [diff] [blame] | 49 | x108 = 0x12; |
| 50 | #endif |
| 51 | |
York Sun | 84be8a9 | 2016-11-18 11:24:40 -0800 | [diff] [blame] | 52 | #ifdef CONFIG_ARCH_P4080 |
Timur Tabi | e3ab8c1 | 2012-10-25 12:40:00 +0000 | [diff] [blame] | 53 | /* |
| 54 | * For P4080, the erratum document says that the value at offset 0x108 |
| 55 | * should be 0x12 on rev2, or 0x1c on rev3. |
| 56 | */ |
| 57 | if (SVR_MAJ(svr) == 2) |
| 58 | x108 = 0x12; |
| 59 | if (SVR_MAJ(svr) == 3) |
| 60 | x108 = 0x1c; |
| 61 | #endif |
| 62 | |
| 63 | if (in_be32(dcsr + 0x108) != x108) { |
| 64 | printf("Work-around for Erratum A004849 is not enabled\n"); |
| 65 | return; |
| 66 | } |
| 67 | |
| 68 | /* Everything matches, so the erratum work-around was applied */ |
| 69 | |
| 70 | printf("Work-around for Erratum A004849 enabled\n"); |
| 71 | } |
| 72 | #endif |
| 73 | |
Timur Tabi | c5355dd | 2012-11-01 08:20:23 +0000 | [diff] [blame] | 74 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004580 |
| 75 | /* |
| 76 | * This work-around is implemented in PBI, so just check to see if the |
| 77 | * work-around was actually applied. To do this, we check for specific data |
| 78 | * at specific addresses in the SerDes register block. |
| 79 | * |
| 80 | * The work-around says that for each SerDes lane, write BnTTLCRy0 = |
| 81 | * 0x1B00_0001, Register 2 = 0x0088_0000, and Register 3 = 0x4000_0000. |
| 82 | |
| 83 | */ |
| 84 | static void check_erratum_a4580(uint32_t svr) |
| 85 | { |
| 86 | const serdes_corenet_t __iomem *srds_regs = |
| 87 | (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR; |
| 88 | unsigned int lane; |
| 89 | |
| 90 | for (lane = 0; lane < SRDS_MAX_LANES; lane++) { |
| 91 | if (serdes_lane_enabled(lane)) { |
| 92 | const struct serdes_lane __iomem *srds_lane = |
| 93 | &srds_regs->lane[serdes_get_lane_idx(lane)]; |
| 94 | |
| 95 | /* |
| 96 | * Verify that the values we were supposed to write in |
| 97 | * the PBI are actually there. Also, the lower 15 |
| 98 | * bits of res4[3] should be the same as the upper 15 |
| 99 | * bits of res4[1]. |
| 100 | */ |
| 101 | if ((in_be32(&srds_lane->ttlcr0) != 0x1b000001) || |
| 102 | (in_be32(&srds_lane->res4[1]) != 0x880000) || |
| 103 | (in_be32(&srds_lane->res4[3]) != 0x40000044)) { |
| 104 | printf("Work-around for Erratum A004580 is " |
| 105 | "not enabled\n"); |
| 106 | return; |
| 107 | } |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /* Everything matches, so the erratum work-around was applied */ |
| 112 | |
| 113 | printf("Work-around for Erratum A004580 enabled\n"); |
| 114 | } |
| 115 | #endif |
| 116 | |
York Sun | 7b083df | 2014-03-28 15:07:27 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007212 |
| 118 | /* |
| 119 | * This workaround can be implemented in PBI, or by u-boot. |
| 120 | */ |
| 121 | static void check_erratum_a007212(void) |
| 122 | { |
| 123 | u32 __iomem *plldgdcr = (void *)(CONFIG_SYS_DCSRBAR + 0x21c20); |
| 124 | |
| 125 | if (in_be32(plldgdcr) & 0x1fe) { |
| 126 | /* check if PLL ratio is set by workaround */ |
| 127 | puts("Work-around for Erratum A007212 enabled\n"); |
| 128 | } |
| 129 | } |
| 130 | #endif |
| 131 | |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 132 | static int do_errata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 133 | { |
York Sun | 5315553 | 2012-08-08 18:04:53 +0000 | [diff] [blame] | 134 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011 |
| 135 | extern int enable_cpu_a011_workaround; |
| 136 | #endif |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 137 | __maybe_unused u32 svr = get_svr(); |
| 138 | |
York Sun | be73553 | 2016-12-28 08:43:43 -0800 | [diff] [blame] | 139 | #if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_SYS_FSL_ERRATUM_SATA_A001) |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 140 | if (IS_SVR_REV(svr, 1, 0)) { |
| 141 | switch (SVR_SOC_VER(svr)) { |
| 142 | case SVR_P1013: |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 143 | case SVR_P1022: |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 144 | puts("Work-around for Erratum SATA A001 enabled\n"); |
| 145 | } |
| 146 | } |
| 147 | #endif |
| 148 | |
Kumar Gala | 779a532 | 2010-07-13 00:39:46 -0500 | [diff] [blame] | 149 | #if defined(CONFIG_SYS_P4080_ERRATUM_SERDES8) |
| 150 | puts("Work-around for Erratum SERDES8 enabled\n"); |
| 151 | #endif |
Emil Medve | b01c81f | 2010-08-31 22:57:38 -0500 | [diff] [blame] | 152 | #if defined(CONFIG_SYS_P4080_ERRATUM_SERDES9) |
| 153 | puts("Work-around for Erratum SERDES9 enabled\n"); |
| 154 | #endif |
Timur Tabi | 90f381d | 2011-04-01 13:19:36 -0500 | [diff] [blame] | 155 | #if defined(CONFIG_SYS_P4080_ERRATUM_SERDES_A005) |
| 156 | puts("Work-around for Erratum SERDES-A005 enabled\n"); |
| 157 | #endif |
Kumar Gala | 6b245b9 | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 158 | #if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) |
York Sun | d755c83 | 2012-05-07 07:26:45 +0000 | [diff] [blame] | 159 | if (SVR_MAJ(svr) < 3) |
| 160 | puts("Work-around for Erratum CPU22 enabled\n"); |
Kumar Gala | 6b245b9 | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 161 | #endif |
York Sun | 9ed8811 | 2012-05-07 07:26:47 +0000 | [diff] [blame] | 162 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011 |
| 163 | /* |
| 164 | * NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in 3.0 |
| 165 | * also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1 |
York Sun | 5315553 | 2012-08-08 18:04:53 +0000 | [diff] [blame] | 166 | * The SVR has been checked by cpu_init_r(). |
York Sun | 9ed8811 | 2012-05-07 07:26:47 +0000 | [diff] [blame] | 167 | */ |
York Sun | 5315553 | 2012-08-08 18:04:53 +0000 | [diff] [blame] | 168 | if (enable_cpu_a011_workaround) |
York Sun | 9ed8811 | 2012-05-07 07:26:47 +0000 | [diff] [blame] | 169 | puts("Work-around for Erratum CPU-A011 enabled\n"); |
| 170 | #endif |
Kumar Gala | 945e59a | 2011-11-22 06:51:15 -0600 | [diff] [blame] | 171 | #if defined(CONFIG_SYS_FSL_ERRATUM_CPU_A003999) |
| 172 | puts("Work-around for Erratum CPU-A003999 enabled\n"); |
| 173 | #endif |
York Sun | df2be19 | 2011-11-20 10:01:35 -0800 | [diff] [blame] | 174 | #if defined(CONFIG_SYS_FSL_ERRATUM_DDR_A003474) |
York Sun | c723aa0 | 2014-01-06 12:12:33 -0800 | [diff] [blame] | 175 | puts("Work-around for Erratum DDR-A003474 enabled\n"); |
York Sun | df2be19 | 2011-11-20 10:01:35 -0800 | [diff] [blame] | 176 | #endif |
Becky Bruce | 4212f23 | 2010-12-17 17:17:58 -0600 | [diff] [blame] | 177 | #if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN) |
| 178 | puts("Work-around for DDR MSYNC_IN Erratum enabled\n"); |
| 179 | #endif |
Jerry Huang | ed41367 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 180 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC111) |
| 181 | puts("Work-around for Erratum ESDHC111 enabled\n"); |
| 182 | #endif |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 183 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004468 |
| 184 | puts("Work-around for Erratum A004468 enabled\n"); |
| 185 | #endif |
Roy Zang | 3935661 | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 186 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC135) |
| 187 | puts("Work-around for Erratum ESDHC135 enabled\n"); |
| 188 | #endif |
Zang Roy-R61911 | 8365992 | 2012-09-18 09:50:08 +0000 | [diff] [blame] | 189 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC13) |
| 190 | if (SVR_MAJ(svr) < 3) |
| 191 | puts("Work-around for Erratum ESDHC13 enabled\n"); |
Roy Zang | c65dc4d | 2011-01-07 00:24:27 -0600 | [diff] [blame] | 192 | #endif |
Kumar Gala | 9a878d5 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 193 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC_A001) |
| 194 | puts("Work-around for Erratum ESDHC-A001 enabled\n"); |
| 195 | #endif |
Kumar Gala | 9780b59 | 2011-01-13 01:54:01 -0600 | [diff] [blame] | 196 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002 |
| 197 | puts("Work-around for Erratum CPC-A002 enabled\n"); |
| 198 | #endif |
Kumar Gala | 887c0e1 | 2011-01-13 01:56:18 -0600 | [diff] [blame] | 199 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A003 |
| 200 | puts("Work-around for Erratum CPC-A003 enabled\n"); |
| 201 | #endif |
Kumar Gala | 77b37af | 2011-01-13 02:58:23 -0600 | [diff] [blame] | 202 | #ifdef CONFIG_SYS_FSL_ERRATUM_ELBC_A001 |
| 203 | puts("Work-around for Erratum ELBC-A001 enabled\n"); |
| 204 | #endif |
York Sun | 922f40f | 2011-01-10 12:03:01 +0000 | [diff] [blame] | 205 | #ifdef CONFIG_SYS_FSL_ERRATUM_DDR_A003 |
| 206 | puts("Work-around for Erratum DDR-A003 enabled\n"); |
| 207 | #endif |
York Sun | 9aa857b | 2011-01-25 21:51:27 -0800 | [diff] [blame] | 208 | #ifdef CONFIG_SYS_FSL_ERRATUM_DDR_115 |
| 209 | puts("Work-around for Erratum DDR115 enabled\n"); |
| 210 | #endif |
York Sun | c8fc959 | 2011-01-25 22:05:49 -0800 | [diff] [blame] | 211 | #ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134 |
| 212 | puts("Work-around for Erratum DDR111 enabled\n"); |
| 213 | puts("Work-around for Erratum DDR134 enabled\n"); |
| 214 | #endif |
Poonam Aggrwal | c7664a4 | 2011-06-30 03:00:28 -0500 | [diff] [blame] | 215 | #ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A002769 |
| 216 | puts("Work-around for Erratum IFC-A002769 enabled\n"); |
| 217 | #endif |
Poonam Aggrwal | af54a5f | 2011-06-29 16:32:52 +0530 | [diff] [blame] | 218 | #ifdef CONFIG_SYS_FSL_ERRATUM_P1010_A003549 |
| 219 | puts("Work-around for Erratum P1010-A003549 enabled\n"); |
| 220 | #endif |
Poonam Aggrwal | 46b86ca | 2011-07-07 20:36:47 +0530 | [diff] [blame] | 221 | #ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A003399 |
| 222 | puts("Work-around for Erratum IFC A-003399 enabled\n"); |
| 223 | #endif |
Kumar Gala | 866c6fa | 2011-09-16 09:54:30 -0500 | [diff] [blame] | 224 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_DDR120 |
| 225 | if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0)) |
| 226 | puts("Work-around for Erratum NMG DDR120 enabled\n"); |
| 227 | #endif |
Kumar Gala | f3339d6 | 2011-10-03 08:37:57 -0500 | [diff] [blame] | 228 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_LBC103 |
| 229 | puts("Work-around for Erratum NMG_LBC103 enabled\n"); |
| 230 | #endif |
chenhui zhao | c8caa8a | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 231 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 232 | if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0)) |
| 233 | puts("Work-around for Erratum NMG ETSEC129 enabled\n"); |
| 234 | #endif |
York Sun | 9982579 | 2014-05-23 13:15:00 -0700 | [diff] [blame] | 235 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004508 |
| 236 | puts("Work-around for Erratum A004508 enabled\n"); |
| 237 | #endif |
Scott Wood | 8080696 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 238 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004510 |
| 239 | puts("Work-around for Erratum A004510 enabled\n"); |
| 240 | #endif |
Liu Gang | 712b662 | 2012-09-28 21:26:19 +0000 | [diff] [blame] | 241 | #ifdef CONFIG_SYS_FSL_ERRATUM_SRIO_A004034 |
| 242 | puts("Work-around for Erratum SRIO-A004034 enabled\n"); |
| 243 | #endif |
York Sun | 6995a02 | 2012-10-08 07:44:26 +0000 | [diff] [blame] | 244 | #ifdef CONFIG_SYS_FSL_ERRATUM_A_004934 |
| 245 | puts("Work-around for Erratum A004934 enabled\n"); |
| 246 | #endif |
Shengzhou Liu | 95bd8e5 | 2013-01-23 19:56:23 +0000 | [diff] [blame] | 247 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005871 |
| 248 | if (IS_SVR_REV(svr, 1, 0)) |
| 249 | puts("Work-around for Erratum A005871 enabled\n"); |
| 250 | #endif |
Shaveta Leekha | d11523b | 2014-02-26 16:08:22 +0530 | [diff] [blame] | 251 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006475 |
| 252 | if (SVR_MAJ(get_svr()) == 1) |
| 253 | puts("Work-around for Erratum A006475 enabled\n"); |
| 254 | #endif |
| 255 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006384 |
| 256 | if (SVR_MAJ(get_svr()) == 1) |
| 257 | puts("Work-around for Erratum A006384 enabled\n"); |
| 258 | #endif |
Timur Tabi | e3ab8c1 | 2012-10-25 12:40:00 +0000 | [diff] [blame] | 259 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004849 |
| 260 | /* This work-around is implemented in PBI, so just check for it */ |
| 261 | check_erratum_a4849(svr); |
| 262 | #endif |
Timur Tabi | c5355dd | 2012-11-01 08:20:23 +0000 | [diff] [blame] | 263 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004580 |
| 264 | /* This work-around is implemented in PBI, so just check for it */ |
| 265 | check_erratum_a4580(svr); |
| 266 | #endif |
Yuanquan Chen | c48234e | 2012-11-26 23:49:45 +0000 | [diff] [blame] | 267 | #ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003 |
| 268 | puts("Work-around for Erratum PCIe-A003 enabled\n"); |
| 269 | #endif |
Xulei | cf4f493 | 2013-03-11 17:56:34 +0000 | [diff] [blame] | 270 | #ifdef CONFIG_SYS_FSL_ERRATUM_USB14 |
| 271 | puts("Work-around for Erratum USB14 enabled\n"); |
| 272 | #endif |
Shaveta Leekha | 7c0f5e8 | 2014-05-28 14:18:55 +0530 | [diff] [blame] | 273 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007186 |
Zhao Qiang | 440914d | 2014-10-30 14:07:39 +0800 | [diff] [blame] | 274 | if (has_erratum_a007186()) |
| 275 | puts("Work-around for Erratum A007186 enabled\n"); |
Shaveta Leekha | 7c0f5e8 | 2014-05-28 14:18:55 +0530 | [diff] [blame] | 276 | #endif |
Scott Wood | 3f4a5c4 | 2013-05-15 17:50:13 -0500 | [diff] [blame] | 277 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006593 |
| 278 | puts("Work-around for Erratum A006593 enabled\n"); |
| 279 | #endif |
York Sun | b195425 | 2013-09-16 12:49:31 -0700 | [diff] [blame] | 280 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006379 |
| 281 | if (has_erratum_a006379()) |
| 282 | puts("Work-around for Erratum A006379 enabled\n"); |
| 283 | #endif |
Shengzhou Liu | 097be70 | 2013-08-15 09:31:47 +0800 | [diff] [blame] | 284 | #ifdef CONFIG_SYS_FSL_ERRATUM_SEC_A003571 |
| 285 | if (IS_SVR_REV(svr, 1, 0)) |
| 286 | puts("Work-around for Erratum A003571 enabled\n"); |
| 287 | #endif |
York Sun | cca41c5 | 2013-06-25 11:37:49 -0700 | [diff] [blame] | 288 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005812 |
| 289 | puts("Work-around for Erratum A-005812 enabled\n"); |
| 290 | #endif |
York Sun | 0cc5907 | 2013-08-20 15:09:43 -0700 | [diff] [blame] | 291 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005125 |
| 292 | puts("Work-around for Erratum A005125 enabled\n"); |
| 293 | #endif |
Nikhil Badola | 2613cfc | 2014-02-26 17:43:15 +0530 | [diff] [blame] | 294 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007075 |
| 295 | if (has_erratum_a007075()) |
| 296 | puts("Work-around for Erratum A007075 enabled\n"); |
| 297 | #endif |
Nikhil Badola | 67f4b26 | 2014-10-17 09:12:07 +0530 | [diff] [blame] | 298 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007798 |
| 299 | if (has_erratum_a007798()) |
| 300 | puts("Work-around for Erratum A007798 enabled\n"); |
| 301 | #endif |
Nikhil Badola | 288542c | 2014-11-21 17:25:21 +0530 | [diff] [blame] | 302 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004477 |
| 303 | if (has_erratum_a004477()) |
| 304 | puts("Work-around for Erratum A004477 enabled\n"); |
| 305 | #endif |
Chunhe Lan | 9254640 | 2013-08-16 15:10:37 +0800 | [diff] [blame] | 306 | #ifdef CONFIG_SYS_FSL_ERRATUM_I2C_A004447 |
| 307 | if ((SVR_SOC_VER(svr) == SVR_8548 && IS_SVR_REV(svr, 3, 1)) || |
| 308 | (SVR_REV(svr) <= CONFIG_SYS_FSL_A004447_SVR_REV)) |
| 309 | puts("Work-around for Erratum I2C-A004447 enabled\n"); |
| 310 | #endif |
Suresh Gupta | 086f0a7 | 2014-02-26 14:29:12 +0530 | [diff] [blame] | 311 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006261 |
| 312 | if (has_erratum_a006261()) |
| 313 | puts("Work-around for Erratum A006261 enabled\n"); |
| 314 | #endif |
York Sun | 7b083df | 2014-03-28 15:07:27 -0700 | [diff] [blame] | 315 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007212 |
| 316 | check_erratum_a007212(); |
| 317 | #endif |
Chunhe Lan | 7155ad5 | 2014-05-07 10:50:20 +0800 | [diff] [blame] | 318 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005434 |
| 319 | puts("Work-around for Erratum A-005434 enabled\n"); |
| 320 | #endif |
Prabhakar Kushwaha | c4c10d1 | 2014-10-29 22:33:09 +0530 | [diff] [blame] | 321 | #if defined(CONFIG_SYS_FSL_ERRATUM_A008044) && \ |
| 322 | defined(CONFIG_A008044_WORKAROUND) |
Prabhakar Kushwaha | 6467a7a | 2014-10-29 22:33:55 +0530 | [diff] [blame] | 323 | if (IS_SVR_REV(svr, 1, 0)) |
| 324 | puts("Work-around for Erratum A-008044 enabled\n"); |
Prabhakar Kushwaha | c4c10d1 | 2014-10-29 22:33:09 +0530 | [diff] [blame] | 325 | #endif |
York Sun | 2dfafc6 | 2016-11-18 11:47:35 -0800 | [diff] [blame] | 326 | #if defined(CONFIG_SYS_FSL_B4860QDS_XFI_ERR) && \ |
| 327 | (defined(CONFIG_TARGET_B4860QDS) || defined(CONFIG_TARGET_B4420QDS)) |
Shaohui Xie | 60c3b09 | 2014-11-13 11:27:49 +0800 | [diff] [blame] | 328 | puts("Work-around for Erratum XFI on B4860QDS enabled\n"); |
| 329 | #endif |
Shengzhou Liu | bdda96c | 2015-12-16 16:45:41 +0800 | [diff] [blame] | 330 | #ifdef CONFIG_SYS_FSL_ERRATUM_A009663 |
| 331 | puts("Work-around for Erratum A009663 enabled\n"); |
| 332 | #endif |
Darwin Dingel | a56d6c0 | 2016-10-25 09:48:01 +1300 | [diff] [blame] | 333 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007907 |
| 334 | puts("Work-around for Erratum A007907 enabled\n"); |
| 335 | #endif |
Tony O'Brien | 8acb127 | 2016-12-02 09:22:34 +1300 | [diff] [blame] | 336 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007815 |
| 337 | puts("Work-around for Erratum A007815 enabled\n"); |
| 338 | #endif |
| 339 | |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | U_BOOT_CMD( |
| 344 | errata, 1, 0, do_errata, |
| 345 | "Report errata workarounds", |
| 346 | "" |
| 347 | ); |