Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 140360
b: refs/heads/master
c: 4476c96
h: refs/heads/master
v: v3
  • Loading branch information
Johannes Weiner authored and Chris Zankel committed Apr 3, 2009
1 parent 1a54e32 commit 2607df1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 42 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: 90be8c16950e28aee7cad422272805dcefa06167
refs/heads/master: 4476c96769ec083c53fbdbd37b538105deb65aa2
11 changes: 0 additions & 11 deletions trunk/arch/xtensa/include/asm/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,5 @@ extern int platform_pcibios_fixup (void);
*/
extern void platform_calibrate_ccount (void);

/*
* platform_get_rtc_time returns RTC seconds (returns 0 for no error)
*/
extern int platform_get_rtc_time(time_t*);

/*
* platform_set_rtc_time set RTC seconds (returns 0 for no error)
*/
extern int platform_set_rtc_time(time_t);


#endif /* _XTENSA_PLATFORM_H */

2 changes: 0 additions & 2 deletions trunk/arch/xtensa/kernel/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ _F(void, power_off, (void), { while(1); });
_F(void, idle, (void), { __asm__ __volatile__ ("waiti 0" ::: "memory"); });
_F(void, heartbeat, (void), { });
_F(int, pcibios_fixup, (void), { return 0; });
_F(int, get_rtc_time, (time_t* t), { return 0; });
_F(int, set_rtc_time, (time_t t), { return 0; });

#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
_F(void, calibrate_ccount, (void),
Expand Down
29 changes: 1 addition & 28 deletions trunk/arch/xtensa/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

#include <linux/errno.h>
#include <linux/time.h>
#include <linux/timex.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/init.h>
Expand All @@ -25,18 +24,11 @@
#include <asm/timex.h>
#include <asm/platform.h>


DEFINE_SPINLOCK(rtc_lock);
EXPORT_SYMBOL(rtc_lock);


#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
unsigned long ccount_per_jiffy; /* per 1/HZ */
unsigned long nsec_per_ccount; /* nsec per ccount increment */
#endif

static long last_rtc_update = 0;

static irqreturn_t timer_interrupt(int irq, void *dev_id);
static struct irqaction timer_irqaction = {
.handler = timer_interrupt,
Expand All @@ -46,8 +38,6 @@ static struct irqaction timer_irqaction = {

void __init time_init(void)
{
time_t sec_o, sec_n = 0;

/* The platform must provide a function to calibrate the processor
* speed for the CALIBRATE.
*/
Expand All @@ -59,15 +49,8 @@ void __init time_init(void)
(int)(ccount_per_jiffy/(10000/HZ))%100);
#endif

/* Set time from RTC (if provided) */

if (platform_get_rtc_time(&sec_o) == 0)
while (platform_get_rtc_time(&sec_n))
if (sec_o != sec_n)
break;

xtime.tv_nsec = 0;
last_rtc_update = xtime.tv_sec = sec_n;
xtime.tv_sec = read_persistent_clock();

set_normalized_timespec(&wall_to_monotonic,
-xtime.tv_sec, -xtime.tv_nsec);
Expand Down Expand Up @@ -169,16 +152,6 @@ irqreturn_t timer_interrupt (int irq, void *dev_id)
next += CCOUNT_PER_JIFFY;
set_linux_timer(next);

if (ntp_synced() &&
xtime.tv_sec - last_rtc_update >= 659 &&
abs((xtime.tv_nsec/1000)-(1000000-1000000/HZ))<5000000/HZ) {

if (platform_set_rtc_time(xtime.tv_sec+1) == 0)
last_rtc_update = xtime.tv_sec+1;
else
/* Do it again in 60 s */
last_rtc_update += 60;
}
write_sequnlock(&xtime_lock);
}

Expand Down

0 comments on commit 2607df1

Please sign in to comment.