Linux 5.7.7
[linux/fpc-iii.git] / arch / arm / mach-imx / cpu-imx27.c
bloba969aa71b60fc862027d5a1ff06d148179854108
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved.
4 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
5 */
7 /*
8 * i.MX27 specific CPU detection code
9 */
11 #include <linux/io.h>
12 #include <linux/module.h>
14 #include "hardware.h"
16 static int mx27_cpu_rev = -1;
17 static int mx27_cpu_partnumber;
19 #define SYS_CHIP_ID 0x00 /* The offset of CHIP ID register */
21 static int mx27_read_cpu_rev(void)
23 u32 val;
25 * now we have access to the IO registers. As we need
26 * the silicon revision very early we read it here to
27 * avoid any further hooks
29 val = imx_readl(MX27_IO_ADDRESS(MX27_SYSCTRL_BASE_ADDR + SYS_CHIP_ID));
31 mx27_cpu_partnumber = (int)((val >> 12) & 0xFFFF);
33 switch (val >> 28) {
34 case 0:
35 return IMX_CHIP_REVISION_1_0;
36 case 1:
37 return IMX_CHIP_REVISION_2_0;
38 case 2:
39 return IMX_CHIP_REVISION_2_1;
40 default:
41 return IMX_CHIP_REVISION_UNKNOWN;
46 * Returns:
47 * the silicon revision of the cpu
48 * -EINVAL - not a mx27
50 int mx27_revision(void)
52 if (mx27_cpu_rev == -1)
53 mx27_cpu_rev = mx27_read_cpu_rev();
55 if (mx27_cpu_partnumber != 0x8821)
56 return -EINVAL;
58 return mx27_cpu_rev;
60 EXPORT_SYMBOL(mx27_revision);