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 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <command.h> |
| 25 | #include <linux/compiler.h> |
| 26 | #include <asm/processor.h> |
| 27 | |
| 28 | static int do_errata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 29 | { |
York Sun | 5315553 | 2012-08-08 18:04:53 +0000 | [diff] [blame] | 30 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011 |
| 31 | extern int enable_cpu_a011_workaround; |
| 32 | #endif |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 33 | __maybe_unused u32 svr = get_svr(); |
| 34 | |
| 35 | #if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001) |
| 36 | if (IS_SVR_REV(svr, 1, 0)) { |
| 37 | switch (SVR_SOC_VER(svr)) { |
| 38 | case SVR_P1013: |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 39 | case SVR_P1022: |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 40 | puts("Work-around for Erratum SATA A001 enabled\n"); |
| 41 | } |
| 42 | } |
| 43 | #endif |
| 44 | |
Kumar Gala | 779a532 | 2010-07-13 00:39:46 -0500 | [diff] [blame] | 45 | #if defined(CONFIG_SYS_P4080_ERRATUM_SERDES8) |
| 46 | puts("Work-around for Erratum SERDES8 enabled\n"); |
| 47 | #endif |
Emil Medve | b01c81f | 2010-08-31 22:57:38 -0500 | [diff] [blame] | 48 | #if defined(CONFIG_SYS_P4080_ERRATUM_SERDES9) |
| 49 | puts("Work-around for Erratum SERDES9 enabled\n"); |
| 50 | #endif |
Timur Tabi | 90f381d | 2011-04-01 13:19:36 -0500 | [diff] [blame] | 51 | #if defined(CONFIG_SYS_P4080_ERRATUM_SERDES_A005) |
| 52 | puts("Work-around for Erratum SERDES-A005 enabled\n"); |
| 53 | #endif |
Kumar Gala | 6b245b9 | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 54 | #if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) |
York Sun | d755c83 | 2012-05-07 07:26:45 +0000 | [diff] [blame] | 55 | if (SVR_MAJ(svr) < 3) |
| 56 | puts("Work-around for Erratum CPU22 enabled\n"); |
Kumar Gala | 6b245b9 | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 57 | #endif |
York Sun | 9ed8811 | 2012-05-07 07:26:47 +0000 | [diff] [blame] | 58 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011 |
| 59 | /* |
| 60 | * NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in 3.0 |
| 61 | * 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] | 62 | * The SVR has been checked by cpu_init_r(). |
York Sun | 9ed8811 | 2012-05-07 07:26:47 +0000 | [diff] [blame] | 63 | */ |
York Sun | 5315553 | 2012-08-08 18:04:53 +0000 | [diff] [blame] | 64 | if (enable_cpu_a011_workaround) |
York Sun | 9ed8811 | 2012-05-07 07:26:47 +0000 | [diff] [blame] | 65 | puts("Work-around for Erratum CPU-A011 enabled\n"); |
| 66 | #endif |
Kumar Gala | 945e59a | 2011-11-22 06:51:15 -0600 | [diff] [blame] | 67 | #if defined(CONFIG_SYS_FSL_ERRATUM_CPU_A003999) |
| 68 | puts("Work-around for Erratum CPU-A003999 enabled\n"); |
| 69 | #endif |
York Sun | df2be19 | 2011-11-20 10:01:35 -0800 | [diff] [blame] | 70 | #if defined(CONFIG_SYS_FSL_ERRATUM_DDR_A003474) |
| 71 | puts("Work-around for Erratum DDR-A003473 enabled\n"); |
| 72 | #endif |
Becky Bruce | 4212f23 | 2010-12-17 17:17:58 -0600 | [diff] [blame] | 73 | #if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN) |
| 74 | puts("Work-around for DDR MSYNC_IN Erratum enabled\n"); |
| 75 | #endif |
Jerry Huang | ed41367 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 76 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC111) |
| 77 | puts("Work-around for Erratum ESDHC111 enabled\n"); |
| 78 | #endif |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame^] | 79 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004468 |
| 80 | puts("Work-around for Erratum A004468 enabled\n"); |
| 81 | #endif |
Roy Zang | 3935661 | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 82 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC135) |
| 83 | puts("Work-around for Erratum ESDHC135 enabled\n"); |
| 84 | #endif |
Zang Roy-R61911 | 8365992 | 2012-09-18 09:50:08 +0000 | [diff] [blame] | 85 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC13) |
| 86 | if (SVR_MAJ(svr) < 3) |
| 87 | puts("Work-around for Erratum ESDHC13 enabled\n"); |
Roy Zang | c65dc4d | 2011-01-07 00:24:27 -0600 | [diff] [blame] | 88 | #endif |
Kumar Gala | 9a878d5 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 89 | #if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC_A001) |
| 90 | puts("Work-around for Erratum ESDHC-A001 enabled\n"); |
| 91 | #endif |
Kumar Gala | 9780b59 | 2011-01-13 01:54:01 -0600 | [diff] [blame] | 92 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002 |
| 93 | puts("Work-around for Erratum CPC-A002 enabled\n"); |
| 94 | #endif |
Kumar Gala | 887c0e1 | 2011-01-13 01:56:18 -0600 | [diff] [blame] | 95 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A003 |
| 96 | puts("Work-around for Erratum CPC-A003 enabled\n"); |
| 97 | #endif |
Kumar Gala | 77b37af | 2011-01-13 02:58:23 -0600 | [diff] [blame] | 98 | #ifdef CONFIG_SYS_FSL_ERRATUM_ELBC_A001 |
| 99 | puts("Work-around for Erratum ELBC-A001 enabled\n"); |
| 100 | #endif |
York Sun | 922f40f | 2011-01-10 12:03:01 +0000 | [diff] [blame] | 101 | #ifdef CONFIG_SYS_FSL_ERRATUM_DDR_A003 |
| 102 | puts("Work-around for Erratum DDR-A003 enabled\n"); |
| 103 | #endif |
York Sun | 9aa857b | 2011-01-25 21:51:27 -0800 | [diff] [blame] | 104 | #ifdef CONFIG_SYS_FSL_ERRATUM_DDR_115 |
| 105 | puts("Work-around for Erratum DDR115 enabled\n"); |
| 106 | #endif |
York Sun | c8fc959 | 2011-01-25 22:05:49 -0800 | [diff] [blame] | 107 | #ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134 |
| 108 | puts("Work-around for Erratum DDR111 enabled\n"); |
| 109 | puts("Work-around for Erratum DDR134 enabled\n"); |
| 110 | #endif |
Poonam Aggrwal | c7664a4 | 2011-06-30 03:00:28 -0500 | [diff] [blame] | 111 | #ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A002769 |
| 112 | puts("Work-around for Erratum IFC-A002769 enabled\n"); |
| 113 | #endif |
Poonam Aggrwal | af54a5f | 2011-06-29 16:32:52 +0530 | [diff] [blame] | 114 | #ifdef CONFIG_SYS_FSL_ERRATUM_P1010_A003549 |
| 115 | puts("Work-around for Erratum P1010-A003549 enabled\n"); |
| 116 | #endif |
Poonam Aggrwal | 46b86ca | 2011-07-07 20:36:47 +0530 | [diff] [blame] | 117 | #ifdef CONFIG_SYS_FSL_ERRATUM_IFC_A003399 |
| 118 | puts("Work-around for Erratum IFC A-003399 enabled\n"); |
| 119 | #endif |
Kumar Gala | 866c6fa | 2011-09-16 09:54:30 -0500 | [diff] [blame] | 120 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_DDR120 |
| 121 | if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0)) |
| 122 | puts("Work-around for Erratum NMG DDR120 enabled\n"); |
| 123 | #endif |
Kumar Gala | f3339d6 | 2011-10-03 08:37:57 -0500 | [diff] [blame] | 124 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_LBC103 |
| 125 | puts("Work-around for Erratum NMG_LBC103 enabled\n"); |
| 126 | #endif |
chenhui zhao | c8caa8a | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 127 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 128 | if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0)) |
| 129 | puts("Work-around for Erratum NMG ETSEC129 enabled\n"); |
| 130 | #endif |
Scott Wood | 8080696 | 2012-08-14 10:14:53 +0000 | [diff] [blame] | 131 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004510 |
| 132 | puts("Work-around for Erratum A004510 enabled\n"); |
| 133 | #endif |
Liu Gang | 712b662 | 2012-09-28 21:26:19 +0000 | [diff] [blame] | 134 | #ifdef CONFIG_SYS_FSL_ERRATUM_SRIO_A004034 |
| 135 | puts("Work-around for Erratum SRIO-A004034 enabled\n"); |
| 136 | #endif |
Kumar Gala | 5900ea7 | 2010-06-09 22:59:41 -0500 | [diff] [blame] | 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | U_BOOT_CMD( |
| 141 | errata, 1, 0, do_errata, |
| 142 | "Report errata workarounds", |
| 143 | "" |
| 144 | ); |