2 * MX35 CPU type detection
4 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
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.
11 #include <linux/module.h>
13 #include <mach/hardware.h>
16 static int mx35_cpu_rev
= -1;
18 static int mx35_read_cpu_rev(void)
22 rev
= __raw_readl(MX35_IO_ADDRESS(MX35_IIM_BASE_ADDR
+ MXC_IIMSREV
));
25 return IMX_CHIP_REVISION_1_0
;
27 return IMX_CHIP_REVISION_2_0
;
29 return IMX_CHIP_REVISION_2_1
;
31 return IMX_CHIP_REVISION_UNKNOWN
;
35 int mx35_revision(void)
37 if (mx35_cpu_rev
== -1)
38 mx35_cpu_rev
= mx35_read_cpu_rev();
42 EXPORT_SYMBOL(mx35_revision
);