blob: 8e763b778845b1c1491f68ebd2e161239ed96072 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Alex Zuepke <azu@sysgo.de>
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenkf70cbb22004-02-23 20:48:38 +000020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkc6097192002-11-03 00:24:07 +000021 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
wdenkc6097192002-11-03 00:24:07 +000029#ifdef CONFIG_USE_IRQ
wdenkc6097192002-11-03 00:24:07 +000030void do_irq (struct pt_regs *pt_regs)
31{
wdenk82db02f2004-07-11 22:19:26 +000032}
Andreas Engel2d4b2532008-01-14 09:06:52 +000033#endif
wdenk82db02f2004-07-11 22:19:26 +000034
Marek Vasut16f6acd2012-10-03 08:54:12 +000035#if defined(CONFIG_TEGRA)
Wolfgang Denk88bd7432005-10-09 00:22:48 +020036static ulong timestamp;
37static ulong lastdec;
38
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +020039int timer_init (void)
40{
Allen Martine60ab6e2012-08-31 08:30:09 +000041 /* No timer routines for tegra as yet */
42 lastdec = 0;
wdenkc6097192002-11-03 00:24:07 +000043 timestamp = 0;
44
Marek Vasut16f6acd2012-10-03 08:54:12 +000045 return 0;
wdenkc6097192002-11-03 00:24:07 +000046}
wdenkf2140d52004-07-01 16:30:44 +000047#endif