blob: ed890114ec48c8ff034227a1c847e1b6e965993b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala5900ea72010-06-09 22:59:41 -05002/*
Jerry Huanged413672011-01-06 23:42:19 -06003 * Copyright 2010-2011 Freescale Semiconductor, Inc.
Kumar Gala5900ea72010-06-09 22:59:41 -05004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Kumar Gala5900ea72010-06-09 22:59:41 -05009#include <linux/compiler.h>
Shengzhou Liu7d8dfb82015-11-20 15:52:03 +080010#include <fsl_errata.h>
Kumar Gala5900ea72010-06-09 22:59:41 -050011#include <asm/processor.h>
Nikhil Badola76c2f2e2014-09-30 11:22:43 +053012#include <fsl_usb.h>
Timur Tabic5355dd2012-11-01 08:20:23 +000013#include "fsl_corenet_serdes.h"
Kumar Gala5900ea72010-06-09 22:59:41 -050014
Timur Tabie3ab8c12012-10-25 12:40:00 +000015#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 */
24static void check_erratum_a4849(uint32_t svr)
25{
26 void __iomem *dcsr = (void *)CONFIG_SYS_DCSRBAR + 0xb0000;
27 unsigned int i;
28
York Sundf70d062016-11-18 11:20:40 -080029#if defined(CONFIG_ARCH_P2041) || defined(CONFIG_ARCH_P3041)
Timur Tabie3ab8c12012-10-25 12:40:00 +000030 static const uint8_t offsets[] = {
31 0x50, 0x54, 0x58, 0x90, 0x94, 0x98
32 };
33#endif
York Sun84be8a92016-11-18 11:24:40 -080034#ifdef CONFIG_ARCH_P4080
Timur Tabie3ab8c12012-10-25 12:40:00 +000035 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 Sundf70d062016-11-18 11:20:40 -080048#if defined(CONFIG_ARCH_P2041) || defined(CONFIG_ARCH_P3041)
Timur Tabie3ab8c12012-10-25 12:40:00 +000049 x108 = 0x12;
50#endif
51
York Sun84be8a92016-11-18 11:24:40 -080052#ifdef CONFIG_ARCH_P4080
Timur Tabie3ab8c12012-10-25 12:40:00 +000053 /*
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 Tabic5355dd2012-11-01 08:20:23 +000074#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 */
84static void check_erratum_a4580(uint32_t svr)
85{
86 const serdes_corenet_t __iomem *srds_regs =
Tom Rini376b88a2022-10-28 20:27:13 -040087 (void *)CFG_SYS_FSL_CORENET_SERDES_ADDR;
Timur Tabic5355dd2012-11-01 08:20:23 +000088 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 Sun7b083df2014-03-28 15:07:27 -0700117#ifdef CONFIG_SYS_FSL_ERRATUM_A007212
118/*
119 * This workaround can be implemented in PBI, or by u-boot.
120 */
121static 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
Simon Glassed38aef2020-05-10 11:40:03 -0600132static int do_errata(struct cmd_tbl *cmdtp, int flag, int argc,
133 char *const argv[])
Kumar Gala5900ea72010-06-09 22:59:41 -0500134{
York Sun53155532012-08-08 18:04:53 +0000135#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011
136 extern int enable_cpu_a011_workaround;
137#endif
Kumar Gala5900ea72010-06-09 22:59:41 -0500138 __maybe_unused u32 svr = get_svr();
139
York Sunbe735532016-12-28 08:43:43 -0800140#if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_SYS_FSL_ERRATUM_SATA_A001)
Kumar Gala5900ea72010-06-09 22:59:41 -0500141 if (IS_SVR_REV(svr, 1, 0)) {
142 switch (SVR_SOC_VER(svr)) {
143 case SVR_P1013:
Kumar Gala5900ea72010-06-09 22:59:41 -0500144 case SVR_P1022:
Kumar Gala5900ea72010-06-09 22:59:41 -0500145 puts("Work-around for Erratum SATA A001 enabled\n");
146 }
147 }
148#endif
149
Kumar Gala779a5322010-07-13 00:39:46 -0500150#if defined(CONFIG_SYS_P4080_ERRATUM_SERDES8)
151 puts("Work-around for Erratum SERDES8 enabled\n");
152#endif
Emil Medveb01c81f2010-08-31 22:57:38 -0500153#if defined(CONFIG_SYS_P4080_ERRATUM_SERDES9)
154 puts("Work-around for Erratum SERDES9 enabled\n");
155#endif
Timur Tabi90f381d2011-04-01 13:19:36 -0500156#if defined(CONFIG_SYS_P4080_ERRATUM_SERDES_A005)
157 puts("Work-around for Erratum SERDES-A005 enabled\n");
158#endif
Kumar Gala6b245b92010-05-05 22:35:27 -0500159#if defined(CONFIG_SYS_P4080_ERRATUM_CPU22)
York Sund755c832012-05-07 07:26:45 +0000160 if (SVR_MAJ(svr) < 3)
161 puts("Work-around for Erratum CPU22 enabled\n");
Kumar Gala6b245b92010-05-05 22:35:27 -0500162#endif
York Sun9ed88112012-05-07 07:26:47 +0000163#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011
164 /*
165 * NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in 3.0
166 * also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1
York Sun53155532012-08-08 18:04:53 +0000167 * The SVR has been checked by cpu_init_r().
York Sun9ed88112012-05-07 07:26:47 +0000168 */
York Sun53155532012-08-08 18:04:53 +0000169 if (enable_cpu_a011_workaround)
York Sun9ed88112012-05-07 07:26:47 +0000170 puts("Work-around for Erratum CPU-A011 enabled\n");
171#endif
Kumar Gala945e59a2011-11-22 06:51:15 -0600172#if defined(CONFIG_SYS_FSL_ERRATUM_CPU_A003999)
173 puts("Work-around for Erratum CPU-A003999 enabled\n");
174#endif
York Sundf2be192011-11-20 10:01:35 -0800175#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_A003474)
York Sunc723aa02014-01-06 12:12:33 -0800176 puts("Work-around for Erratum DDR-A003474 enabled\n");
York Sundf2be192011-11-20 10:01:35 -0800177#endif
Becky Bruce4212f232010-12-17 17:17:58 -0600178#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
179 puts("Work-around for DDR MSYNC_IN Erratum enabled\n");
180#endif
Jerry Huanged413672011-01-06 23:42:19 -0600181#if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC111)
182 puts("Work-around for Erratum ESDHC111 enabled\n");
183#endif
York Suna28496f2012-10-08 07:44:25 +0000184#ifdef CONFIG_SYS_FSL_ERRATUM_A004468
185 puts("Work-around for Erratum A004468 enabled\n");
186#endif
Roy Zang39356612011-01-07 00:06:47 -0600187#if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC135)
188 puts("Work-around for Erratum ESDHC135 enabled\n");
189#endif
Zang Roy-R6191183659922012-09-18 09:50:08 +0000190#if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC13)
191 if (SVR_MAJ(svr) < 3)
192 puts("Work-around for Erratum ESDHC13 enabled\n");
Roy Zangc65dc4d2011-01-07 00:24:27 -0600193#endif
Kumar Gala9a878d52011-01-29 15:36:10 -0600194#if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC_A001)
195 puts("Work-around for Erratum ESDHC-A001 enabled\n");
196#endif
Kumar Gala9780b592011-01-13 01:54:01 -0600197#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002
198 puts("Work-around for Erratum CPC-A002 enabled\n");
199#endif
Kumar Gala887c0e12011-01-13 01:56:18 -0600200#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A003
201 puts("Work-around for Erratum CPC-A003 enabled\n");
202#endif
Kumar Gala77b37af2011-01-13 02:58:23 -0600203#ifdef CONFIG_SYS_FSL_ERRATUM_ELBC_A001
204 puts("Work-around for Erratum ELBC-A001 enabled\n");
205#endif
York Sun922f40f2011-01-10 12:03:01 +0000206#ifdef CONFIG_SYS_FSL_ERRATUM_DDR_A003
207 puts("Work-around for Erratum DDR-A003 enabled\n");
208#endif
York Sun9aa857b2011-01-25 21:51:27 -0800209#ifdef CONFIG_SYS_FSL_ERRATUM_DDR_115
210 puts("Work-around for Erratum DDR115 enabled\n");
211#endif
York Sunc8fc9592011-01-25 22:05:49 -0800212#ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
213 puts("Work-around for Erratum DDR111 enabled\n");
214 puts("Work-around for Erratum DDR134 enabled\n");
215#endif
Poonam Aggrwalc7664a42011-06-30 03:00:28 -0500216#ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A002769
217 puts("Work-around for Erratum IFC-A002769 enabled\n");
218#endif
Poonam Aggrwalaf54a5f2011-06-29 16:32:52 +0530219#ifdef CONFIG_SYS_FSL_ERRATUM_P1010_A003549
220 puts("Work-around for Erratum P1010-A003549 enabled\n");
221#endif
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +0530222#ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A003399
223 puts("Work-around for Erratum IFC A-003399 enabled\n");
224#endif
Kumar Gala866c6fa2011-09-16 09:54:30 -0500225#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_DDR120
226 if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0))
227 puts("Work-around for Erratum NMG DDR120 enabled\n");
228#endif
Kumar Galaf3339d62011-10-03 08:37:57 -0500229#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_LBC103
230 puts("Work-around for Erratum NMG_LBC103 enabled\n");
231#endif
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500232#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
233 if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0))
234 puts("Work-around for Erratum NMG ETSEC129 enabled\n");
235#endif
York Sun99825792014-05-23 13:15:00 -0700236#ifdef CONFIG_SYS_FSL_ERRATUM_A004508
237 puts("Work-around for Erratum A004508 enabled\n");
238#endif
Scott Wood80806962012-08-14 10:14:53 +0000239#ifdef CONFIG_SYS_FSL_ERRATUM_A004510
240 puts("Work-around for Erratum A004510 enabled\n");
241#endif
Liu Gang712b6622012-09-28 21:26:19 +0000242#ifdef CONFIG_SYS_FSL_ERRATUM_SRIO_A004034
243 puts("Work-around for Erratum SRIO-A004034 enabled\n");
244#endif
York Sun6995a022012-10-08 07:44:26 +0000245#ifdef CONFIG_SYS_FSL_ERRATUM_A_004934
246 puts("Work-around for Erratum A004934 enabled\n");
247#endif
Shengzhou Liu95bd8e52013-01-23 19:56:23 +0000248#ifdef CONFIG_SYS_FSL_ERRATUM_A005871
249 if (IS_SVR_REV(svr, 1, 0))
250 puts("Work-around for Erratum A005871 enabled\n");
251#endif
Shaveta Leekhad11523b2014-02-26 16:08:22 +0530252#ifdef CONFIG_SYS_FSL_ERRATUM_A006475
253 if (SVR_MAJ(get_svr()) == 1)
254 puts("Work-around for Erratum A006475 enabled\n");
255#endif
256#ifdef CONFIG_SYS_FSL_ERRATUM_A006384
257 if (SVR_MAJ(get_svr()) == 1)
258 puts("Work-around for Erratum A006384 enabled\n");
259#endif
Timur Tabie3ab8c12012-10-25 12:40:00 +0000260#ifdef CONFIG_SYS_FSL_ERRATUM_A004849
261 /* This work-around is implemented in PBI, so just check for it */
262 check_erratum_a4849(svr);
263#endif
Timur Tabic5355dd2012-11-01 08:20:23 +0000264#ifdef CONFIG_SYS_FSL_ERRATUM_A004580
265 /* This work-around is implemented in PBI, so just check for it */
266 check_erratum_a4580(svr);
267#endif
Yuanquan Chenc48234e2012-11-26 23:49:45 +0000268#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
269 puts("Work-around for Erratum PCIe-A003 enabled\n");
270#endif
Xuleicf4f4932013-03-11 17:56:34 +0000271#ifdef CONFIG_SYS_FSL_ERRATUM_USB14
272 puts("Work-around for Erratum USB14 enabled\n");
273#endif
Shaveta Leekha7c0f5e82014-05-28 14:18:55 +0530274#ifdef CONFIG_SYS_FSL_ERRATUM_A007186
Zhao Qiang440914d2014-10-30 14:07:39 +0800275 if (has_erratum_a007186())
276 puts("Work-around for Erratum A007186 enabled\n");
Shaveta Leekha7c0f5e82014-05-28 14:18:55 +0530277#endif
Scott Wood3f4a5c42013-05-15 17:50:13 -0500278#ifdef CONFIG_SYS_FSL_ERRATUM_A006593
279 puts("Work-around for Erratum A006593 enabled\n");
280#endif
York Sunb1954252013-09-16 12:49:31 -0700281#ifdef CONFIG_SYS_FSL_ERRATUM_A006379
282 if (has_erratum_a006379())
283 puts("Work-around for Erratum A006379 enabled\n");
284#endif
Shengzhou Liu097be702013-08-15 09:31:47 +0800285#ifdef CONFIG_SYS_FSL_ERRATUM_SEC_A003571
286 if (IS_SVR_REV(svr, 1, 0))
287 puts("Work-around for Erratum A003571 enabled\n");
288#endif
York Suncca41c52013-06-25 11:37:49 -0700289#ifdef CONFIG_SYS_FSL_ERRATUM_A005812
290 puts("Work-around for Erratum A-005812 enabled\n");
291#endif
York Sun0cc59072013-08-20 15:09:43 -0700292#ifdef CONFIG_SYS_FSL_ERRATUM_A005125
293 puts("Work-around for Erratum A005125 enabled\n");
294#endif
Nikhil Badola2613cfc2014-02-26 17:43:15 +0530295#ifdef CONFIG_SYS_FSL_ERRATUM_A007075
296 if (has_erratum_a007075())
297 puts("Work-around for Erratum A007075 enabled\n");
298#endif
Nikhil Badola67f4b262014-10-17 09:12:07 +0530299#ifdef CONFIG_SYS_FSL_ERRATUM_A007798
300 if (has_erratum_a007798())
301 puts("Work-around for Erratum A007798 enabled\n");
302#endif
Nikhil Badola288542c2014-11-21 17:25:21 +0530303#ifdef CONFIG_SYS_FSL_ERRATUM_A004477
304 if (has_erratum_a004477())
305 puts("Work-around for Erratum A004477 enabled\n");
306#endif
Chunhe Lan92546402013-08-16 15:10:37 +0800307#ifdef CONFIG_SYS_FSL_ERRATUM_I2C_A004447
308 if ((SVR_SOC_VER(svr) == SVR_8548 && IS_SVR_REV(svr, 3, 1)) ||
309 (SVR_REV(svr) <= CONFIG_SYS_FSL_A004447_SVR_REV))
310 puts("Work-around for Erratum I2C-A004447 enabled\n");
311#endif
Chris Packham434f0582018-10-04 20:03:53 +1300312#ifdef CONFIG_SYS_FSL_ERRATUM_A005275
313 if (has_erratum_a005275())
314 puts("Work-around for Erratum A005275 enabled\n");
315#endif
Suresh Gupta086f0a72014-02-26 14:29:12 +0530316#ifdef CONFIG_SYS_FSL_ERRATUM_A006261
317 if (has_erratum_a006261())
318 puts("Work-around for Erratum A006261 enabled\n");
319#endif
York Sun7b083df2014-03-28 15:07:27 -0700320#ifdef CONFIG_SYS_FSL_ERRATUM_A007212
321 check_erratum_a007212();
322#endif
Chunhe Lan7155ad52014-05-07 10:50:20 +0800323#ifdef CONFIG_SYS_FSL_ERRATUM_A005434
324 puts("Work-around for Erratum A-005434 enabled\n");
325#endif
Prabhakar Kushwahac4c10d12014-10-29 22:33:09 +0530326#if defined(CONFIG_SYS_FSL_ERRATUM_A008044) && \
327 defined(CONFIG_A008044_WORKAROUND)
Prabhakar Kushwaha6467a7a2014-10-29 22:33:55 +0530328 if (IS_SVR_REV(svr, 1, 0))
329 puts("Work-around for Erratum A-008044 enabled\n");
Prabhakar Kushwahac4c10d12014-10-29 22:33:09 +0530330#endif
York Sun2dfafc62016-11-18 11:47:35 -0800331#if defined(CONFIG_SYS_FSL_B4860QDS_XFI_ERR) && \
332 (defined(CONFIG_TARGET_B4860QDS) || defined(CONFIG_TARGET_B4420QDS))
Shaohui Xie60c3b092014-11-13 11:27:49 +0800333 puts("Work-around for Erratum XFI on B4860QDS enabled\n");
334#endif
Shengzhou Liubdda96c2015-12-16 16:45:41 +0800335#ifdef CONFIG_SYS_FSL_ERRATUM_A009663
336 puts("Work-around for Erratum A009663 enabled\n");
337#endif
Darwin Dingela56d6c02016-10-25 09:48:01 +1300338#ifdef CONFIG_SYS_FSL_ERRATUM_A007907
339 puts("Work-around for Erratum A007907 enabled\n");
340#endif
Tony O'Brien8acb1272016-12-02 09:22:34 +1300341#ifdef CONFIG_SYS_FSL_ERRATUM_A007815
342 puts("Work-around for Erratum A007815 enabled\n");
343#endif
344
Kumar Gala5900ea72010-06-09 22:59:41 -0500345 return 0;
346}
347
348U_BOOT_CMD(
349 errata, 1, 0, do_errata,
350 "Report errata workarounds",
351 ""
352);