2022-08-04 11:40:24 +08:00

81 lines
1.9 KiB
C

/*
* This file is part of open_agb_firm
* Copyright (C) 2021 derrek, profi200
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "types.h"
#include "arm11/drivers/timer.h"
#include "arm11/drivers/interrupt.h"
#include "fb_assert.h"
#include "arm.h"
void TIMER_init(void)
{
// Timer.
Timer *const timer = getTimerRegs();
timer->cnt = 0;
timer->int_stat = 1;
// Watchdog.
timer->wd_cnt = 0;
timer->wd_disable = WD_DISABLE_MAGIC1;
timer->wd_disable = WD_DISABLE_MAGIC2;
timer->wd_int_stat = 1;
IRQ_registerIsr(IRQ_WATCHDOG, 12, 0, NULL);
}
void TIMER_start(u16 prescaler, u32 ticks, u8 params)
{
fb_assert(prescaler > 0 && prescaler <= 256);
Timer *const timer = getTimerRegs();
timer->load = ticks;
timer->cnt = (prescaler - 1)<<TIMER_PRESC_SHIFT |
params | TIMER_EN;
}
u32 TIMER_getTicks(void)
{
return getTimerRegs()->counter;
}
u32 TIMER_stop(void)
{
Timer *const timer = getTimerRegs();
timer->cnt = 0;
timer->int_stat = 1;
return timer->counter;
}
void TIMER_sleepTicks(u32 ticks)
{
Timer *const timer = getTimerRegs();
timer->wd_load = ticks;
timer->wd_cnt = 0u<<TIMER_PRESC_SHIFT | WD_TIMER_MODE | // Prescaler 1.
TIMER_IRQ_EN | TIMER_SINGLE_SHOT | TIMER_EN;
do
{
__wfi();
} while(timer->wd_counter); // Checking the cnt enable bit is broken.
timer->wd_int_stat = 1;
}