/* * Copyright (C) 2001-2007 by egnite Software GmbH. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * For additional information see http://www.ethernut.de/ * */ /* * $Log: ostimer_at91.c,v $ * Revision 1.0 2008/03/26 19:34:10 psilva * Firts revision to rum on Stellaris LM3S6965 * */ #include #include #include #include #include #if defined(MCU_STM32) #include #include #elif defined(MCU_LPC176x) #include #include #elif defined(MCU_LPC177x_8x) #include #include #elif defined(MCU_LPC407x_8x) #include #include #else #warning "Unknown CM3 family" #endif /*! * \addtogroup xgNutArchArmOsTimerCm3 */ /*@{*/ #ifndef NUT_TICK_FREQ #define NUT_TICK_FREQ 1000UL #endif /*! * \brief Initialize system timer. * * This function is automatically called by Nut/OS * during system initialization. * * Nut/OS uses CortexM SysTick timer via CMSIS for its * timer services. * Applications should not modify any registers of this * timer, but make use of the Nut/OS timer API. */ void NutRegisterTimer(void (*handler)(void*)) { /* With CortexM SysTick timer is a core timer. * It is installed by providing a function void SysTick_Handler(void). * This function is called because it moves the interrupt * vectors from flash to ram. * Then it programs the timer and starts it. */ Cortex_RegisterInt(SysTick_IRQn, handler); /* Program frequency and enable is done by CMSIS function */ SysTick_Config(SysCtlClockGet()/NUT_TICK_FREQ); } /*! * \brief Return the CPU clock in Hertz. Or peripheral clock in hertz * On cortex this the same. * * \return CPU clock frequency in Hertz. */ uint32_t NutArchClockGet(int idx) { uint32_t clock = 0; #if defined(MCU_STM32) clock = STM_ClockGet(idx); #elif defined(MCU_LPC17xx) clock = Lpc17xx_ClockGet(idx); #else #warning "Unknown CM3 family" #endif return clock; } /*! * \brief Return the number of system ticks per second. * * \return System tick frequency in Hertz. */ uint32_t NutGetTickClock(void) { return NUT_TICK_FREQ; } /*! * \brief Calculate system ticks for a given number of milliseconds. */ uint32_t NutTimerMillisToTicks(uint32_t ms) { return (ms * NutGetTickClock()) / 1000; } /*@}*/