blob: 1edb1a439a1d43f5f8505dbbc90dc8099fef4d86 [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 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020010 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000011 */
12
Allen Martind598e0f2012-10-29 10:47:43 +000013#include <common.h>
14
Marek Vasuta63dd622012-10-03 08:54:12 +000015#if defined(CONFIG_TEGRA)
Wolfgang Denk96782c62005-10-09 00:22:48 +020016static ulong timestamp;
17static ulong lastdec;
18
Jean-Christophe PLAGNIOL-VILLARDb54384e2009-05-15 23:47:02 +020019int timer_init (void)
20{
Allen Martinc037c932012-08-31 08:30:09 +000021 /* No timer routines for tegra as yet */
22 lastdec = 0;
wdenkc6097192002-11-03 00:24:07 +000023 timestamp = 0;
24
Marek Vasuta63dd622012-10-03 08:54:12 +000025 return 0;
wdenkc6097192002-11-03 00:24:07 +000026}
wdenk39539882004-07-01 16:30:44 +000027#endif