blob: a59091977efb30150dacee195edd14499d3efccb [file] [log] [blame]
York Sunb1954252013-09-16 12:49:31 -07001/*
2 * Copyright 2013 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef _ASM_FSL_ERRATA_H
8#define _ASM_FSL_ERRATA_H
9
10#include <common.h>
11#include <asm/processor.h>
12
13#ifdef CONFIG_SYS_FSL_ERRATUM_A006379
14static inline bool has_erratum_a006379(void)
15{
16 u32 svr = get_svr();
17 if (((SVR_SOC_VER(svr) == SVR_T4240) && SVR_MAJ(svr) <= 1) ||
Shengzhou Liu64ca4b42014-01-06 13:23:21 +080018 ((SVR_SOC_VER(svr) == SVR_T4160) && SVR_MAJ(svr) <= 1) ||
19 ((SVR_SOC_VER(svr) == SVR_B4860) && SVR_MAJ(svr) <= 2) ||
20 ((SVR_SOC_VER(svr) == SVR_B4420) && SVR_MAJ(svr) <= 2) ||
21 ((SVR_SOC_VER(svr) == SVR_T2080) && SVR_MAJ(svr) <= 1) ||
22 ((SVR_SOC_VER(svr) == SVR_T2081) && SVR_MAJ(svr) <= 1))
York Sunb1954252013-09-16 12:49:31 -070023 return true;
24
25 return false;
26}
27#endif
28
29#endif