pmu.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * OMAP2 ARM Performance Monitoring Unit (PMU) Support
  3. *
  4. * Copyright (C) 2012 Texas Instruments, Inc.
  5. *
  6. * Contacts:
  7. * Jon Hunter <jon-hunter@ti.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. */
  14. #include <asm/pmu.h>
  15. #include <plat/omap_hwmod.h>
  16. #include <plat/omap_device.h>
  17. static char *omap2_pmu_oh_names[] = {"mpu"};
  18. static char *omap3_pmu_oh_names[] = {"mpu", "debugss"};
  19. static struct platform_device *omap_pmu_dev;
  20. /**
  21. * omap2_init_pmu - creates and registers PMU platform device
  22. * @oh_num: Number of OMAP HWMODs required to create PMU device
  23. * @oh_names: Array of OMAP HWMODS names required to create PMU device
  24. *
  25. * Uses OMAP HWMOD framework to create and register an ARM PMU device
  26. * from a list of HWMOD names passed. Currently supports OMAP2 and
  27. * OMAP3 devices.
  28. */
  29. static int __init omap2_init_pmu(unsigned oh_num, char *oh_names[])
  30. {
  31. int i;
  32. struct omap_hwmod *oh[2];
  33. char *dev_name = "arm-pmu";
  34. if ((!oh_num) || (oh_num > 2))
  35. return -EINVAL;
  36. for (i = 0; i < oh_num; i++) {
  37. oh[i] = omap_hwmod_lookup(oh_names[i]);
  38. if (!oh[i]) {
  39. pr_err("Could not look up %s hwmod\n", oh_names[i]);
  40. return -ENODEV;
  41. }
  42. }
  43. omap_pmu_dev = omap_device_build_ss(dev_name, -1, oh, oh_num, NULL, 0,
  44. NULL, 0, 0);
  45. WARN(IS_ERR(omap_pmu_dev), "Can't build omap_device for %s.\n",
  46. dev_name);
  47. return IS_ERR(omap_pmu_dev) ? PTR_ERR(omap_pmu_dev) : 0;
  48. }
  49. static int __init omap_init_pmu(void)
  50. {
  51. unsigned oh_num;
  52. char **oh_names;
  53. /*
  54. * To create an ARM-PMU device the following HWMODs
  55. * are required for the various OMAP2+ devices.
  56. *
  57. * OMAP24xx: mpu
  58. * OMAP3xxx: mpu, debugss
  59. */
  60. if (cpu_is_omap24xx()) {
  61. oh_num = ARRAY_SIZE(omap2_pmu_oh_names);
  62. oh_names = omap2_pmu_oh_names;
  63. } else if (cpu_is_omap34xx()) {
  64. oh_num = ARRAY_SIZE(omap3_pmu_oh_names);
  65. oh_names = omap3_pmu_oh_names;
  66. } else {
  67. return 0;
  68. }
  69. return omap2_init_pmu(oh_num, oh_names);
  70. }
  71. subsys_initcall(omap_init_pmu);