time.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * PS3 time and rtc routines.
  3. *
  4. * Copyright (C) 2006 Sony Computer Entertainment Inc.
  5. * Copyright 2006 Sony Corp.
  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. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/platform_device.h>
  22. #include <asm/rtc.h>
  23. #include <asm/lv1call.h>
  24. #include <asm/ps3.h>
  25. #include "platform.h"
  26. #define dump_tm(_a) _dump_tm(_a, __func__, __LINE__)
  27. static void _dump_tm(const struct rtc_time *tm, const char* func, int line)
  28. {
  29. pr_debug("%s:%d tm_sec %d\n", func, line, tm->tm_sec);
  30. pr_debug("%s:%d tm_min %d\n", func, line, tm->tm_min);
  31. pr_debug("%s:%d tm_hour %d\n", func, line, tm->tm_hour);
  32. pr_debug("%s:%d tm_mday %d\n", func, line, tm->tm_mday);
  33. pr_debug("%s:%d tm_mon %d\n", func, line, tm->tm_mon);
  34. pr_debug("%s:%d tm_year %d\n", func, line, tm->tm_year);
  35. pr_debug("%s:%d tm_wday %d\n", func, line, tm->tm_wday);
  36. }
  37. #define dump_time(_a) _dump_time(_a, __func__, __LINE__)
  38. static void __maybe_unused _dump_time(int time, const char *func,
  39. int line)
  40. {
  41. struct rtc_time tm;
  42. to_tm(time, &tm);
  43. pr_debug("%s:%d time %d\n", func, line, time);
  44. _dump_tm(&tm, func, line);
  45. }
  46. void __init ps3_calibrate_decr(void)
  47. {
  48. int result;
  49. u64 tmp;
  50. result = ps3_repository_read_be_tb_freq(0, &tmp);
  51. BUG_ON(result);
  52. ppc_tb_freq = tmp;
  53. ppc_proc_freq = ppc_tb_freq * 40;
  54. }
  55. static u64 read_rtc(void)
  56. {
  57. int result;
  58. u64 rtc_val;
  59. u64 tb_val;
  60. result = lv1_get_rtc(&rtc_val, &tb_val);
  61. BUG_ON(result);
  62. return rtc_val;
  63. }
  64. unsigned long __init ps3_get_boot_time(void)
  65. {
  66. return read_rtc() + ps3_os_area_get_rtc_diff();
  67. }
  68. static int __init ps3_rtc_init(void)
  69. {
  70. struct platform_device *pdev;
  71. pdev = platform_device_register_simple("rtc-ps3", -1, NULL, 0);
  72. if (IS_ERR(pdev))
  73. return PTR_ERR(pdev);
  74. return 0;
  75. }
  76. module_init(ps3_rtc_init);