2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2003-12-06 19:49:23 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000-2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
|
|
|
* (C) Copyright 2003
|
|
|
|
* Gleb Natapov <gnatapov@mrv.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:41 +00:00
|
|
|
#include <irq_func.h>
|
2003-12-06 19:49:23 +00:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <watchdog.h>
|
2017-01-19 08:51:45 +00:00
|
|
|
#ifdef CONFIG_LED_STATUS
|
2003-12-06 19:49:23 +00:00
|
|
|
#include <status_led.h>
|
|
|
|
#endif
|
2020-05-10 17:40:06 +00:00
|
|
|
#include <asm/ptrace.h>
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2018-08-06 08:23:38 +00:00
|
|
|
#ifndef CONFIG_MPC83XX_TIMER
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_WATCHDOG_FREQ
|
|
|
|
#define CONFIG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
|
2003-12-06 19:49:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static unsigned decrementer_count; /* count value for 1e6/HZ microseconds */
|
|
|
|
|
|
|
|
static __inline__ unsigned long get_dec (void)
|
|
|
|
{
|
|
|
|
unsigned long val;
|
|
|
|
|
|
|
|
asm volatile ("mfdec %0":"=r" (val):);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static __inline__ void set_dec (unsigned long val)
|
|
|
|
{
|
|
|
|
if (val)
|
|
|
|
asm volatile ("mtdec %0"::"r" (val));
|
|
|
|
}
|
2018-08-06 08:23:38 +00:00
|
|
|
#endif /* !CONFIG_MPC83XX_TIMER */
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2019-11-14 19:57:40 +00:00
|
|
|
void enable_interrupts(void)
|
2003-12-06 19:49:23 +00:00
|
|
|
{
|
|
|
|
set_msr (get_msr () | MSR_EE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns flag if MSR_EE was set before */
|
2019-11-14 19:57:40 +00:00
|
|
|
int disable_interrupts(void)
|
2003-12-06 19:49:23 +00:00
|
|
|
{
|
|
|
|
ulong msr = get_msr ();
|
|
|
|
|
|
|
|
set_msr (msr & ~MSR_EE);
|
|
|
|
return ((msr & MSR_EE) != 0);
|
|
|
|
}
|
|
|
|
|
2018-08-06 08:23:38 +00:00
|
|
|
#ifndef CONFIG_MPC83XX_TIMER
|
2019-11-14 19:57:40 +00:00
|
|
|
int interrupt_init(void)
|
2003-12-06 19:49:23 +00:00
|
|
|
{
|
2004-01-02 14:00:00 +00:00
|
|
|
/* call cpu specific function from $(CPU)/interrupts.c */
|
2017-08-14 02:44:37 +00:00
|
|
|
interrupt_init_cpu (&decrementer_count);
|
2003-12-06 19:49:23 +00:00
|
|
|
|
|
|
|
set_dec (decrementer_count);
|
|
|
|
|
|
|
|
set_msr (get_msr () | MSR_EE);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static volatile ulong timestamp = 0;
|
|
|
|
|
2019-11-14 19:57:40 +00:00
|
|
|
void timer_interrupt(struct pt_regs *regs)
|
2003-12-06 19:49:23 +00:00
|
|
|
{
|
|
|
|
/* call cpu specific function from $(CPU)/interrupts.c */
|
|
|
|
timer_interrupt_cpu (regs);
|
|
|
|
|
|
|
|
/* Restore Decrementer Count */
|
|
|
|
set_dec (decrementer_count);
|
|
|
|
|
|
|
|
timestamp++;
|
|
|
|
|
|
|
|
#if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
|
2008-10-16 13:01:15 +00:00
|
|
|
if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0)
|
2003-12-06 19:49:23 +00:00
|
|
|
WATCHDOG_RESET ();
|
|
|
|
#endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
|
|
|
|
|
2017-01-19 08:51:45 +00:00
|
|
|
#ifdef CONFIG_LED_STATUS
|
2019-11-14 19:57:12 +00:00
|
|
|
status_led_tick(timestamp);
|
2017-01-19 08:51:45 +00:00
|
|
|
#endif /* CONFIG_LED_STATUS */
|
2003-12-06 19:49:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ulong get_timer (ulong base)
|
|
|
|
{
|
|
|
|
return (timestamp - base);
|
|
|
|
}
|
2018-08-06 08:23:38 +00:00
|
|
|
#endif /* !CONFIG_MPC83XX_TIMER */
|