OMAP3Timer
OMAP3Timer::Init(args->arch_args.timer.regs.start,
OMAP3Timer::_InterruptWrapper(void *data)
return ((OMAP3Timer*)data)->HandleInterrupt();
OMAP3Timer::HandleInterrupt()
OMAP3Timer::SetTimeout(bigtime_t timeout)
OMAP3Timer::Time()
OMAP3Timer::Clear()
OMAP3Timer::OMAP3Timer(uint32_t reg_base, uint32_t interrupt)
install_io_interrupt_handler(fInterrupt, &OMAP3Timer::_InterruptWrapper, this, 0);
class OMAP3Timer : public HardwareTimer {
OMAP3Timer *timer = new(std::nothrow) OMAP3Timer(reg_base, interrupt);
OMAP3Timer(uint32_t reg_base, uint32_t interrupt);