mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-01 12:52:26 +00:00
When we are calling the re-scheduling routine at the end of an irq handling routine, we need to ensure that the high registers are not currently saved on the system stack. On Cortex-M3/M4, the compiler is normally doing tail-call optimization there and behaving properly, but this fixes the fact that insanely large interrupt handling routines where sometimes not compile and not running properly (aka issue 24515). This also prepares for one more core-specific DECLARE_IRQ routine on Cortex-M0. Note: now on, the IRQ handling routines should no longer be "static". Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=none BUG=chrome-os-partner:24515 TEST=make -j buildall revert the workaround for 24515, see the issue happening only without this CL. Change-Id: Ic419369231925568df05815fd079ed191a5446db Reviewed-on: https://chromium-review.googlesource.com/189153 Reviewed-by: Vic Yang <victoryang@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org>
110 lines
2.5 KiB
C
110 lines
2.5 KiB
C
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Hardware timers driver */
|
|
|
|
#include "clock.h"
|
|
#include "common.h"
|
|
#include "hooks.h"
|
|
#include "hwtimer.h"
|
|
#include "registers.h"
|
|
#include "task.h"
|
|
#include "timer.h"
|
|
|
|
void __hw_clock_event_set(uint32_t deadline)
|
|
{
|
|
MEC1322_TMR32_CNT(1) = MEC1322_TMR32_CNT(0) -
|
|
(0xffffffff - deadline);
|
|
MEC1322_TMR32_CTL(1) |= (1 << 5);
|
|
}
|
|
|
|
uint32_t __hw_clock_event_get(void)
|
|
{
|
|
return MEC1322_TMR32_CNT(1) - MEC1322_TMR32_CNT(0) + 0xffffffff;
|
|
}
|
|
|
|
void __hw_clock_event_clear(void)
|
|
{
|
|
MEC1322_TMR32_CTL(1) &= ~(1 << 5);
|
|
}
|
|
|
|
uint32_t __hw_clock_source_read(void)
|
|
{
|
|
return 0xffffffff - MEC1322_TMR32_CNT(0);
|
|
}
|
|
|
|
void __hw_clock_source_set(uint32_t ts)
|
|
{
|
|
MEC1322_TMR32_CTL(0) &= ~(1 << 5);
|
|
MEC1322_TMR32_CNT(0) = 0xffffffff - ts;
|
|
MEC1322_TMR32_CTL(0) |= (1 << 5);
|
|
}
|
|
|
|
static void __hw_clock_source_irq(int timer_id)
|
|
{
|
|
if (timer_id == 1)
|
|
MEC1322_TMR32_STS(1) |= 1;
|
|
/* If IRQ is from timer 0, 32-bit timer overflowed */
|
|
process_timers(timer_id == 0);
|
|
}
|
|
|
|
void __hw_clock_source_irq_0(void) { __hw_clock_source_irq(0); }
|
|
DECLARE_IRQ(MEC1322_IRQ_TIMER32_0, __hw_clock_source_irq_0, 1);
|
|
void __hw_clock_source_irq_1(void) { __hw_clock_source_irq(1); }
|
|
DECLARE_IRQ(MEC1322_IRQ_TIMER32_1, __hw_clock_source_irq_1, 1);
|
|
|
|
static void configure_timer(int timer_id)
|
|
{
|
|
uint32_t val;
|
|
|
|
/* Ensure timer is not running */
|
|
MEC1322_TMR32_CTL(timer_id) &= ~(1 << 5);
|
|
|
|
/* Enable timer */
|
|
MEC1322_TMR32_CTL(timer_id) |= (1 << 0);
|
|
|
|
val = MEC1322_TMR32_CTL(timer_id);
|
|
|
|
/* Pre-scale = 48 -> 1MHz -> Period = 1us */
|
|
val = (val & 0xffff) | (47 << 16);
|
|
|
|
MEC1322_TMR32_CTL(timer_id) = val;
|
|
|
|
/* Set preload to use the full 32 bits of the timer */
|
|
MEC1322_TMR32_PRE(timer_id) = 0xffffffff;
|
|
|
|
/* Enable interrupt */
|
|
MEC1322_TMR32_IEN(timer_id) |= 1;
|
|
}
|
|
|
|
int __hw_clock_source_init(uint32_t start_t)
|
|
{
|
|
/*
|
|
* The timer can only fire interrupt when its value reaches zero.
|
|
* Therefore we need two timers:
|
|
* - Timer 0 as free running timer
|
|
* - Timer 1 as event timer
|
|
*/
|
|
configure_timer(0);
|
|
configure_timer(1);
|
|
|
|
/* Override the count */
|
|
MEC1322_TMR32_CNT(0) = 0xffffffff - start_t;
|
|
|
|
/* Auto restart */
|
|
MEC1322_TMR32_CTL(0) |= (1 << 3);
|
|
|
|
/* Start counting in timer 0 */
|
|
MEC1322_TMR32_CTL(0) |= (1 << 5);
|
|
|
|
/* Enable interrupt */
|
|
task_enable_irq(MEC1322_IRQ_TIMER32_0);
|
|
task_enable_irq(MEC1322_IRQ_TIMER32_1);
|
|
MEC1322_INT_ENABLE(23) |= (1 << 4) | (1 << 5);
|
|
MEC1322_INT_BLK_EN |= (1 << 23);
|
|
|
|
return MEC1322_IRQ_TIMER32_1;
|
|
}
|