2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/h8300/kernel/time.c
|
|
|
|
*
|
|
|
|
* Yoshinori Sato <ysato@users.sourceforge.jp>
|
|
|
|
*
|
|
|
|
* Copied/hacked from:
|
|
|
|
*
|
|
|
|
* linux/arch/m68k/kernel/time.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992, 1995 Linus Torvalds
|
|
|
|
*
|
|
|
|
* This file contains the m68k-specific time handling details.
|
|
|
|
* Most of the stuff is located in the machine specific files.
|
|
|
|
*
|
|
|
|
* 1997-09-10 Updated NTP code according to technical memorandum Jan '96
|
|
|
|
* "A Kernel Model for Precision Timekeeping" by Dave Mills
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/param.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/timex.h>
|
|
|
|
#include <linux/profile.h>
|
|
|
|
|
|
|
|
#include <asm/io.h>
|
2008-10-16 07:01:17 +02:00
|
|
|
#include <asm/timer.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define TICK_SIZE (tick_nsec / 1000)
|
|
|
|
|
2008-10-16 07:01:17 +02:00
|
|
|
void h8300_timer_tick(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-10-16 07:01:17 +02:00
|
|
|
if (current->pid)
|
|
|
|
profile_tick(CPU_PROFILING);
|
2011-01-27 15:59:51 +01:00
|
|
|
xtime_update(1);
|
2008-10-16 07:01:17 +02:00
|
|
|
update_process_times(user_mode(get_irq_regs()));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2010-03-04 04:57:20 +01:00
|
|
|
void read_persistent_clock(struct timespec *ts)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
unsigned int year, mon, day, hour, min, sec;
|
|
|
|
|
|
|
|
/* FIX by dqg : Set to zero for platforms that don't have tod */
|
|
|
|
/* without this time is undefined and can overflow time_t, causing */
|
2007-10-20 01:10:46 +02:00
|
|
|
/* very strange errors */
|
2005-04-17 00:20:36 +02:00
|
|
|
year = 1980;
|
|
|
|
mon = day = 1;
|
|
|
|
hour = min = sec = 0;
|
2008-10-16 07:01:17 +02:00
|
|
|
#ifdef CONFIG_H8300_GETTOD
|
|
|
|
h8300_gettod (&year, &mon, &day, &hour, &min, &sec);
|
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
if ((year += 1900) < 1970)
|
|
|
|
year += 100;
|
2010-03-04 04:57:20 +01:00
|
|
|
ts->tv_sec = mktime(year, mon, day, hour, min, sec);
|
|
|
|
ts->tv_nsec = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init time_init(void)
|
|
|
|
{
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-10-16 07:01:17 +02:00
|
|
|
h8300_timer_setup();
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|