timer.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 (!of_property_read_u32(np, "clock-frequency", &freq))
  31. max_freq = max(max_freq, freq);
  32. }
  33. of_node_put(cpus);
  34. if (!max_freq)
  35. return;
  36. /*
  37. * Calculate a worst-case loops-per-jiffy value
  38. * based on maximum cpu core hz setting and the
  39. * __delay() implementation in arch/arm/lib/delay.S.
  40. *
  41. * This will result in a longer delay than expected
  42. * when the cpu core runs on lower frequencies.
  43. */
  44. if (!preset_lpj)
  45. preset_lpj = max_freq / HZ;
  46. }