time.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 <linux/rtc.h>
  23. #include <asm/firmware.h>
  24. #include <asm/lv1call.h>
  25. #include <asm/ps3.h>
  26. #include "platform.h"
  27. void __init ps3_calibrate_decr(void)
  28. {
  29. int result;
  30. u64 tmp;
  31. result = ps3_repository_read_be_tb_freq(0, &tmp);
  32. BUG_ON(result);
  33. ppc_tb_freq = tmp;
  34. ppc_proc_freq = ppc_tb_freq * 40;
  35. }
  36. static u64 read_rtc(void)
  37. {
  38. int result;
  39. u64 rtc_val;
  40. u64 tb_val;
  41. result = lv1_get_rtc(&rtc_val, &tb_val);
  42. BUG_ON(result);
  43. return rtc_val;
  44. }
  45. time64_t __init ps3_get_boot_time(void)
  46. {
  47. return read_rtc() + ps3_os_area_get_rtc_diff();
  48. }
  49. static int __init ps3_rtc_init(void)
  50. {
  51. struct platform_device *pdev;
  52. if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
  53. return -ENODEV;
  54. pdev = platform_device_register_simple("rtc-ps3", -1, NULL, 0);
  55. return PTR_ERR_OR_ZERO(pdev);
  56. }
  57. device_initcall(ps3_rtc_init);