2007-03-11 12:42:58 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007 Michal Simek
|
|
|
|
*
|
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* 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 <common.h>
|
|
|
|
#include <asm/microblaze_timer.h>
|
2007-05-07 15:22:25 +00:00
|
|
|
#include <asm/microblaze_intc.h>
|
2007-03-11 12:42:58 +00:00
|
|
|
|
|
|
|
volatile int timestamp = 0;
|
|
|
|
|
|
|
|
void reset_timer (void)
|
|
|
|
{
|
|
|
|
timestamp = 0;
|
|
|
|
}
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_TIMER_0
|
2007-03-11 12:42:58 +00:00
|
|
|
ulong get_timer (ulong base)
|
|
|
|
{
|
|
|
|
return (timestamp - base);
|
|
|
|
}
|
2007-09-23 22:21:19 +00:00
|
|
|
#else
|
|
|
|
ulong get_timer (ulong base)
|
|
|
|
{
|
|
|
|
return (timestamp++ - base);
|
|
|
|
}
|
|
|
|
#endif
|
2007-03-11 12:42:58 +00:00
|
|
|
|
|
|
|
void set_timer (ulong t)
|
|
|
|
{
|
|
|
|
timestamp = t;
|
|
|
|
}
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_INTC_0
|
|
|
|
#ifdef CONFIG_SYS_TIMER_0
|
|
|
|
microblaze_timer_t *tmr = (microblaze_timer_t *) (CONFIG_SYS_TIMER_0_ADDR);
|
2007-03-11 12:42:58 +00:00
|
|
|
|
|
|
|
void timer_isr (void *arg)
|
|
|
|
{
|
|
|
|
timestamp++;
|
|
|
|
tmr->control = tmr->control | TIMER_INTERRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void timer_init (void)
|
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
tmr->loadreg = CONFIG_SYS_TIMER_0_PRELOAD;
|
2007-03-11 12:42:58 +00:00
|
|
|
tmr->control = TIMER_INTERRUPT | TIMER_RESET;
|
|
|
|
tmr->control =
|
|
|
|
TIMER_ENABLE | TIMER_ENABLE_INTR | TIMER_RELOAD | TIMER_DOWN_COUNT;
|
|
|
|
reset_timer ();
|
2008-10-16 13:01:15 +00:00
|
|
|
install_interrupt_handler (CONFIG_SYS_TIMER_0_IRQ, timer_isr, (void *)tmr);
|
2007-03-11 12:42:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|