Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67534
b: refs/heads/master
c: d7b98e3
h: refs/heads/master
v: v3
  • Loading branch information
Geoff Levand authored and Paul Mackerras committed Oct 9, 2007
1 parent 8b41bd4 commit df7f6a4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 418ef2094eb8b0916d6cbda10e2ab857b9f64d97
refs/heads/master: d7b98e3dd87b4512462f6cdfe646a8e59673e62e
19 changes: 17 additions & 2 deletions trunk/arch/powerpc/platforms/ps3/os-area.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,15 +261,30 @@ void __init ps3_os_area_save_params(void)
}

/**
* ps3_os_area_rtc_diff - Returns the rtc diff value.
* ps3_os_area_get_rtc_diff - Returns the rtc diff value.
*/

u64 ps3_os_area_rtc_diff(void)
u64 ps3_os_area_get_rtc_diff(void)
{
return saved_params.rtc_diff ? saved_params.rtc_diff
: SECONDS_FROM_1970_TO_2000;
}

/**
* ps3_os_area_set_rtc_diff - Set the rtc diff value.
*
* An asynchronous write is needed to support writing updates from
* the timer interrupt context.
*/

void ps3_os_area_set_rtc_diff(u64 rtc_diff)
{
if (saved_params.rtc_diff != rtc_diff) {
saved_params.rtc_diff = rtc_diff;
os_area_queue_work();
}
}

/**
* ps3_os_area_get_av_multi_out - Returns the default video mode.
*/
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/powerpc/platforms/ps3/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ int ps3_set_rtc_time(struct rtc_time *time);
/* os area */

void __init ps3_os_area_save_params(void);
u64 ps3_os_area_rtc_diff(void);
u64 ps3_os_area_get_rtc_diff(void);
void ps3_os_area_set_rtc_diff(u64 rtc_diff);

/* spu */

Expand Down
14 changes: 3 additions & 11 deletions trunk/arch/powerpc/platforms/ps3/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ static void __maybe_unused _dump_time(int time, const char *func,
_dump_tm(&tm, func, line);
}

/**
* rtc_shift - Difference in seconds between 1970 and the ps3 rtc value.
*/

static s64 rtc_shift;

void __init ps3_calibrate_decr(void)
{
int result;
Expand All @@ -66,8 +60,6 @@ void __init ps3_calibrate_decr(void)

ppc_tb_freq = tmp;
ppc_proc_freq = ppc_tb_freq * 40;

rtc_shift = ps3_os_area_rtc_diff();
}

static u64 read_rtc(void)
Expand All @@ -87,18 +79,18 @@ int ps3_set_rtc_time(struct rtc_time *tm)
u64 now = mktime(tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec);

rtc_shift = now - read_rtc();
ps3_os_area_set_rtc_diff(now - read_rtc());
return 0;
}

void ps3_get_rtc_time(struct rtc_time *tm)
{
to_tm(read_rtc() + rtc_shift, tm);
to_tm(read_rtc() + ps3_os_area_get_rtc_diff(), tm);
tm->tm_year -= 1900;
tm->tm_mon -= 1;
}

unsigned long __init ps3_get_boot_time(void)
{
return read_rtc() + rtc_shift;
return read_rtc() + ps3_os_area_get_rtc_diff();
}

0 comments on commit df7f6a4

Please sign in to comment.