blob: 3f2345f0cdaf275659deef2b7adac0d5fc72a906 [file] [log] [blame]
Daniel Mack52939c02009-11-21 20:17:18 +01001/*
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +01002 * MX31 CPU type detection
Daniel Mack52939c02009-11-21 20:17:18 +01003 *
4 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/io.h>
14#include <mach/hardware.h>
15#include <mach/iim.h>
Jason Liuab116a82011-08-26 13:35:21 +080016#include <mach/common.h>
Daniel Mack52939c02009-11-21 20:17:18 +010017
Jason Liuab116a82011-08-26 13:35:21 +080018static int mx31_cpu_rev = -1;
Daniel Mack52939c02009-11-21 20:17:18 +010019
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010020static struct {
Daniel Mack52939c02009-11-21 20:17:18 +010021 u8 srev;
22 const char *name;
Daniel Mack52939c02009-11-21 20:17:18 +010023 unsigned int rev;
Jason Liuab116a82011-08-26 13:35:21 +080024} mx31_cpu_type[] = {
25 { .srev = 0x00, .name = "i.MX31(L)", .rev = IMX_CHIP_REVISION_1_0 },
26 { .srev = 0x10, .name = "i.MX31", .rev = IMX_CHIP_REVISION_1_1 },
27 { .srev = 0x11, .name = "i.MX31L", .rev = IMX_CHIP_REVISION_1_1 },
28 { .srev = 0x12, .name = "i.MX31", .rev = IMX_CHIP_REVISION_1_1 },
29 { .srev = 0x13, .name = "i.MX31L", .rev = IMX_CHIP_REVISION_1_1 },
30 { .srev = 0x14, .name = "i.MX31", .rev = IMX_CHIP_REVISION_1_2 },
31 { .srev = 0x15, .name = "i.MX31L", .rev = IMX_CHIP_REVISION_1_2 },
32 { .srev = 0x28, .name = "i.MX31", .rev = IMX_CHIP_REVISION_2_0 },
33 { .srev = 0x29, .name = "i.MX31L", .rev = IMX_CHIP_REVISION_2_0 },
Daniel Mack52939c02009-11-21 20:17:18 +010034};
35
Jason Liuab116a82011-08-26 13:35:21 +080036static int mx31_read_cpu_rev(void)
Daniel Mack52939c02009-11-21 20:17:18 +010037{
38 u32 i, srev;
39
40 /* read SREV register from IIM module */
Sascha Hauerfdb03872010-10-08 16:00:09 +020041 srev = __raw_readl(MX31_IO_ADDRESS(MX31_IIM_BASE_ADDR + MXC_IIMSREV));
Jason Liuab116a82011-08-26 13:35:21 +080042 srev &= 0xff;
Daniel Mack52939c02009-11-21 20:17:18 +010043
44 for (i = 0; i < ARRAY_SIZE(mx31_cpu_type); i++)
45 if (srev == mx31_cpu_type[i].srev) {
Jason Liuab116a82011-08-26 13:35:21 +080046 imx_print_silicon_rev(mx31_cpu_type[i].name,
47 mx31_cpu_type[i].rev);
48 return mx31_cpu_type[i].rev;
Daniel Mack52939c02009-11-21 20:17:18 +010049 }
50
Jason Liuab116a82011-08-26 13:35:21 +080051 imx_print_silicon_rev("i.MX31", IMX_CHIP_REVISION_UNKNOWN);
52 return IMX_CHIP_REVISION_UNKNOWN;
Daniel Mack52939c02009-11-21 20:17:18 +010053}
Jason Liuab116a82011-08-26 13:35:21 +080054
55int mx31_revision(void)
56{
57 if (mx31_cpu_rev == -1)
58 mx31_cpu_rev = mx31_read_cpu_rev();
59
60 return mx31_cpu_rev;
61}
62EXPORT_SYMBOL(mx31_revision);