blob: d1d339576fdfe7900b4dd0f4723e536c9385da85 [file] [log] [blame]
Daniel Mack52939c02009-11-21 20:17:18 +01001/*
2 * MX3 CPU type detection
3 *
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>
16
17unsigned int mx31_cpu_rev;
18EXPORT_SYMBOL(mx31_cpu_rev);
19
20struct mx3_cpu_type {
21 u8 srev;
22 const char *name;
23 const char *v;
24 unsigned int rev;
25};
26
27static struct mx3_cpu_type mx31_cpu_type[] __initdata = {
Dinh Nguyen9ab46502010-11-15 11:30:01 -060028 { .srev = 0x00, .name = "i.MX31(L)", .v = "1.0", .rev = IMX_CHIP_REVISION_1_0 },
29 { .srev = 0x10, .name = "i.MX31", .v = "1.1", .rev = IMX_CHIP_REVISION_1_1 },
30 { .srev = 0x11, .name = "i.MX31L", .v = "1.1", .rev = IMX_CHIP_REVISION_1_1 },
31 { .srev = 0x12, .name = "i.MX31", .v = "1.15", .rev = IMX_CHIP_REVISION_1_1 },
32 { .srev = 0x13, .name = "i.MX31L", .v = "1.15", .rev = IMX_CHIP_REVISION_1_1 },
33 { .srev = 0x14, .name = "i.MX31", .v = "1.2", .rev = IMX_CHIP_REVISION_1_2 },
34 { .srev = 0x15, .name = "i.MX31L", .v = "1.2", .rev = IMX_CHIP_REVISION_1_2 },
35 { .srev = 0x28, .name = "i.MX31", .v = "2.0", .rev = IMX_CHIP_REVISION_2_0 },
36 { .srev = 0x29, .name = "i.MX31L", .v = "2.0", .rev = IMX_CHIP_REVISION_2_0 },
Daniel Mack52939c02009-11-21 20:17:18 +010037};
38
39void __init mx31_read_cpu_rev(void)
40{
41 u32 i, srev;
42
43 /* read SREV register from IIM module */
Sascha Hauerfdb03872010-10-08 16:00:09 +020044 srev = __raw_readl(MX31_IO_ADDRESS(MX31_IIM_BASE_ADDR + MXC_IIMSREV));
Daniel Mack52939c02009-11-21 20:17:18 +010045
46 for (i = 0; i < ARRAY_SIZE(mx31_cpu_type); i++)
47 if (srev == mx31_cpu_type[i].srev) {
48 printk(KERN_INFO
49 "CPU identified as %s, silicon rev %s\n",
50 mx31_cpu_type[i].name, mx31_cpu_type[i].v);
51
52 mx31_cpu_rev = mx31_cpu_type[i].rev;
53 return;
54 }
55
Dinh Nguyen9ab46502010-11-15 11:30:01 -060056 mx31_cpu_rev = IMX_CHIP_REVISION_UNKNOWN;
57
Daniel Mack52939c02009-11-21 20:17:18 +010058 printk(KERN_WARNING "Unknown CPU identifier. srev = %02x\n", srev);
59}
Eric Bénard67520f32010-10-08 16:00:10 +020060
61unsigned int mx35_cpu_rev;
62EXPORT_SYMBOL(mx35_cpu_rev);
63
64void __init mx35_read_cpu_rev(void)
65{
66 u32 rev;
Dinh Nguyen9ab46502010-11-15 11:30:01 -060067 char *srev;
Eric Bénard67520f32010-10-08 16:00:10 +020068
69 rev = __raw_readl(MX35_IO_ADDRESS(MX35_IIM_BASE_ADDR + MXC_IIMSREV));
70 switch (rev) {
71 case 0x00:
Dinh Nguyen9ab46502010-11-15 11:30:01 -060072 mx35_cpu_rev = IMX_CHIP_REVISION_1_0;
Eric Bénard67520f32010-10-08 16:00:10 +020073 srev = "1.0";
74 break;
75 case 0x10:
Dinh Nguyen9ab46502010-11-15 11:30:01 -060076 mx35_cpu_rev = IMX_CHIP_REVISION_2_0;
Eric Bénard67520f32010-10-08 16:00:10 +020077 srev = "2.0";
78 break;
79 case 0x11:
Dinh Nguyen9ab46502010-11-15 11:30:01 -060080 mx35_cpu_rev = IMX_CHIP_REVISION_2_1;
Eric Bénard67520f32010-10-08 16:00:10 +020081 srev = "2.1";
82 break;
Dinh Nguyen9ab46502010-11-15 11:30:01 -060083 default:
84 mx35_cpu_rev = IMX_CHIP_REVISION_UNKNOWN;
85 srev = "unknown";
Eric Bénard67520f32010-10-08 16:00:10 +020086 }
87
88 printk(KERN_INFO "CPU identified as i.MX35, silicon rev %s\n", srev);
89}