blob: 2225d61e2d5794f7e74e4c4a1c981b0267214f6f [file] [log] [blame]
/*
* arch/arm/plat-ambarella/misc/highres_timer.c
*
* Author: Louis Sun <lysun@ambarella.com>
*
* Copyright (C) 2004-2011, Ambarella, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/hrtimer.h>
#include <linux/ktime.h>
int highres_timer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)
{
return hrtimer_start(timer, tim, mode);
}
EXPORT_SYMBOL(highres_timer_start);
void highres_timer_init(struct hrtimer *timer, clockid_t clock_id, enum hrtimer_mode mode)
{
hrtimer_init(timer, clock_id, mode);
}
EXPORT_SYMBOL(highres_timer_init);
int highres_timer_cancel(struct hrtimer *timer)
{
return hrtimer_cancel(timer);
}
EXPORT_SYMBOL(highres_timer_cancel);
MODULE_AUTHOR("Louis Sun <lysun@ambarella.com>");
MODULE_DESCRIPTION("high resolution timer wrapper");
MODULE_LICENSE("GPL v2");
MODULE_VERSION("1.0");