ACPI / LPSS: Make acpi_lpss_find_device() also find PCI devices
[linux/fpc-iii.git] / arch / arm / mach-imx / cpu-imx35.c
blob8a54234df23b582b5bac78d365f2e35b4fe6cc84
1 /*
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>
12 #include <linux/io.h>
14 #include "hardware.h"
15 #include "iim.h"
17 static int mx35_cpu_rev = -1;
19 static int mx35_read_cpu_rev(void)
21 u32 rev;
23 rev = imx_readl(MX35_IO_ADDRESS(MX35_IIM_BASE_ADDR + MXC_IIMSREV));
24 switch (rev) {
25 case 0x00:
26 return IMX_CHIP_REVISION_1_0;
27 case 0x10:
28 return IMX_CHIP_REVISION_2_0;
29 case 0x11:
30 return IMX_CHIP_REVISION_2_1;
31 default:
32 return IMX_CHIP_REVISION_UNKNOWN;
36 int mx35_revision(void)
38 if (mx35_cpu_rev == -1)
39 mx35_cpu_rev = mx35_read_cpu_rev();
41 return mx35_cpu_rev;
43 EXPORT_SYMBOL(mx35_revision);