cpu.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  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. #include <linux/module.h>
  12. #include <linux/io.h>
  13. #include <mach/hardware.h>
  14. #include <mach/iim.h>
  15. unsigned int mx31_cpu_rev;
  16. EXPORT_SYMBOL(mx31_cpu_rev);
  17. struct mx3_cpu_type {
  18. u8 srev;
  19. const char *name;
  20. const char *v;
  21. unsigned int rev;
  22. };
  23. static struct mx3_cpu_type mx31_cpu_type[] __initdata = {
  24. { .srev = 0x00, .name = "i.MX31(L)", .v = "1.0", .rev = CHIP_REV_1_0 },
  25. { .srev = 0x10, .name = "i.MX31", .v = "1.1", .rev = CHIP_REV_1_1 },
  26. { .srev = 0x11, .name = "i.MX31L", .v = "1.1", .rev = CHIP_REV_1_1 },
  27. { .srev = 0x12, .name = "i.MX31", .v = "1.15", .rev = CHIP_REV_1_1 },
  28. { .srev = 0x13, .name = "i.MX31L", .v = "1.15", .rev = CHIP_REV_1_1 },
  29. { .srev = 0x14, .name = "i.MX31", .v = "1.2", .rev = CHIP_REV_1_2 },
  30. { .srev = 0x15, .name = "i.MX31L", .v = "1.2", .rev = CHIP_REV_1_2 },
  31. { .srev = 0x28, .name = "i.MX31", .v = "2.0", .rev = CHIP_REV_2_0 },
  32. { .srev = 0x29, .name = "i.MX31L", .v = "2.0", .rev = CHIP_REV_2_0 },
  33. };
  34. void __init mx31_read_cpu_rev(void)
  35. {
  36. u32 i, srev;
  37. /* read SREV register from IIM module */
  38. srev = __raw_readl(IO_ADDRESS(IIM_BASE_ADDR + MXC_IIMSREV));
  39. for (i = 0; i < ARRAY_SIZE(mx31_cpu_type); i++)
  40. if (srev == mx31_cpu_type[i].srev) {
  41. printk(KERN_INFO
  42. "CPU identified as %s, silicon rev %s\n",
  43. mx31_cpu_type[i].name, mx31_cpu_type[i].v);
  44. mx31_cpu_rev = mx31_cpu_type[i].rev;
  45. return;
  46. }
  47. printk(KERN_WARNING "Unknown CPU identifier. srev = %02x\n", srev);
  48. }