time.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Pistachio clocksource/timer setup
  3. *
  4. * Copyright (C) 2014 Google, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. */
  10. #include <linux/clk.h>
  11. #include <linux/clk-provider.h>
  12. #include <linux/clocksource.h>
  13. #include <linux/init.h>
  14. #include <linux/irqchip/mips-gic.h>
  15. #include <linux/of.h>
  16. #include <asm/time.h>
  17. unsigned int get_c0_compare_int(void)
  18. {
  19. return gic_get_c0_compare_int();
  20. }
  21. int get_c0_perfcount_int(void)
  22. {
  23. return gic_get_c0_perfcount_int();
  24. }
  25. void __init plat_time_init(void)
  26. {
  27. struct device_node *np;
  28. struct clk *clk;
  29. of_clk_init(NULL);
  30. clocksource_of_init();
  31. np = of_get_cpu_node(0, NULL);
  32. if (!np) {
  33. pr_err("Failed to get CPU node\n");
  34. return;
  35. }
  36. clk = of_clk_get(np, 0);
  37. if (IS_ERR(clk)) {
  38. pr_err("Failed to get CPU clock: %ld\n", PTR_ERR(clk));
  39. return;
  40. }
  41. mips_hpt_frequency = clk_get_rate(clk) / 2;
  42. clk_put(clk);
  43. }