timer.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * SH-Mobile Timer
  3. *
  4. * Copyright (C) 2010 Magnus Damm
  5. * Copyright (C) 2002 - 2009 Paul Mundt
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/platform_device.h>
  17. #include <linux/clocksource.h>
  18. #include <linux/delay.h>
  19. #include <linux/of_address.h>
  20. #include "common.h"
  21. void __init shmobile_init_delay(void)
  22. {
  23. struct device_node *np, *cpus;
  24. u32 max_freq = 0;
  25. cpus = of_find_node_by_path("/cpus");
  26. if (!cpus)
  27. return;
  28. for_each_child_of_node(cpus, np) {
  29. u32 freq;
  30. if (IS_ENABLED(CONFIG_ARM_ARCH_TIMER) &&
  31. (of_device_is_compatible(np, "arm,cortex-a7") ||
  32. of_device_is_compatible(np, "arm,cortex-a15"))) {
  33. of_node_put(np);
  34. of_node_put(cpus);
  35. return;
  36. }
  37. if (!of_property_read_u32(np, "clock-frequency", &freq))
  38. max_freq = max(max_freq, freq);
  39. }
  40. of_node_put(cpus);
  41. if (!max_freq)
  42. return;
  43. /*
  44. * Calculate a worst-case loops-per-jiffy value
  45. * based on maximum cpu core hz setting and the
  46. * __delay() implementation in arch/arm/lib/delay.S.
  47. *
  48. * This will result in a longer delay than expected
  49. * when the cpu core runs on lower frequencies.
  50. */
  51. if (!preset_lpj)
  52. preset_lpj = max_freq / HZ;
  53. }