blob: a969aa71b60fc862027d5a1ff06d148179854108 [file] [log] [blame]
Thomas Gleixner16216332019-05-19 15:51:31 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Juergen Beisertf31405c2008-07-05 10:02:59 +02002/*
3 * Copyright 2007 Freescale Semiconductor, Inc. All Rights Reserved.
4 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
Juergen Beisertf31405c2008-07-05 10:02:59 +02005 */
6
7/*
8 * i.MX27 specific CPU detection code
9 */
10
11#include <linux/io.h>
12#include <linux/module.h>
13
Shawn Guo50f2de62012-09-14 14:14:45 +080014#include "hardware.h"
Juergen Beisertf31405c2008-07-05 10:02:59 +020015
Jason Liu3f5492c2011-08-26 13:35:20 +080016static int mx27_cpu_rev = -1;
17static int mx27_cpu_partnumber;
Juergen Beisertf31405c2008-07-05 10:02:59 +020018
Sascha Haueredfcea82009-02-16 15:13:43 +010019#define SYS_CHIP_ID 0x00 /* The offset of CHIP ID register */
20
Jason Liu3f5492c2011-08-26 13:35:20 +080021static int mx27_read_cpu_rev(void)
Juergen Beisertf31405c2008-07-05 10:02:59 +020022{
23 u32 val;
24 /*
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
28 */
Johannes Bergc5531382016-01-27 17:59:35 +010029 val = imx_readl(MX27_IO_ADDRESS(MX27_SYSCTRL_BASE_ADDR + SYS_CHIP_ID));
Juergen Beisertf31405c2008-07-05 10:02:59 +020030
Jason Liu3f5492c2011-08-26 13:35:20 +080031 mx27_cpu_partnumber = (int)((val >> 12) & 0xFFFF);
32
Dinh Nguyen9ab46502010-11-15 11:30:01 -060033 switch (val >> 28) {
34 case 0:
Jason Liu3f5492c2011-08-26 13:35:20 +080035 return IMX_CHIP_REVISION_1_0;
Dinh Nguyen9ab46502010-11-15 11:30:01 -060036 case 1:
Jason Liu3f5492c2011-08-26 13:35:20 +080037 return IMX_CHIP_REVISION_2_0;
Dinh Nguyen9ab46502010-11-15 11:30:01 -060038 case 2:
Jason Liu3f5492c2011-08-26 13:35:20 +080039 return IMX_CHIP_REVISION_2_1;
Dinh Nguyen9ab46502010-11-15 11:30:01 -060040 default:
Jason Liu3f5492c2011-08-26 13:35:20 +080041 return IMX_CHIP_REVISION_UNKNOWN;
Dinh Nguyen9ab46502010-11-15 11:30:01 -060042 }
Juergen Beisertf31405c2008-07-05 10:02:59 +020043}
44
45/*
46 * Returns:
47 * the silicon revision of the cpu
48 * -EINVAL - not a mx27
49 */
50int mx27_revision(void)
51{
Jason Liu3f5492c2011-08-26 13:35:20 +080052 if (mx27_cpu_rev == -1)
53 mx27_cpu_rev = mx27_read_cpu_rev();
Juergen Beisertf31405c2008-07-05 10:02:59 +020054
Jason Liu3f5492c2011-08-26 13:35:20 +080055 if (mx27_cpu_partnumber != 0x8821)
Juergen Beisertf31405c2008-07-05 10:02:59 +020056 return -EINVAL;
57
Jason Liu3f5492c2011-08-26 13:35:20 +080058 return mx27_cpu_rev;
Juergen Beisertf31405c2008-07-05 10:02:59 +020059}
60EXPORT_SYMBOL(mx27_revision);