| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * 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 <cfg/os.h>
- #include <cfg/clock.h>
- #include <arch/cm3.h>
- #include <dev/irqreg.h>
- #include <sys/timer.h>
- #if defined(MCU_STM32)
- #include <arch/cm3/stm/stm32xxxx.h>
- #include <arch/cm3/stm/stm32_clk.h>
- #elif defined(MCU_LPC176x)
- #include <arch/cm3/nxp/lpc176x.h>
- #include <arch/cm3/nxp/lpc176x_clk.h>
- #elif defined(MCU_LPC177x_8x)
- #include <arch/cm3/nxp/lpc177x_8x.h>
- #include <arch/cm3/nxp/lpc177x_8x_clk.h>
- #elif defined(MCU_LPC407x_8x)
- #include <arch/cm3/nxp/lpc407x_8x.h>
- #include <arch/cm3/nxp/lpc407x_8x_clk.h>
- #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;
- }
- /*@}*/
|