| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- /****************************************************************************
- * This file is part of the Ethernut port for the LPC2XXX
- *
- * Copyright (c) 2005 by Michael Fischer. 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 author nor the names of its 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.
- *
- ****************************************************************************
- *
- * History:
- *
- * 24.09.05 mifi First Version
- * The CrossWorks for ARM toolchain will be used. Some of
- * this functions looks similar like my ARM uC/OS port for
- * CrossWorks because I have done it before (AN-1711B).
- * For some bit definition and information, take a look
- * in the LPC2119/2129/2194/2292/2294 user manual 2004 May 03.
- ****************************************************************************/
- #include <cfg/arch.h>
- #include <arch/arm/lpc2xxx.h>
- #include <dev/irqreg.h>
- #ifndef NUT_TICK_FREQ
- #define NUT_TICK_FREQ 1000UL
- #endif
- /*
- * This is the input frequency of
- * the OLIMEX LPC-E2294 eval board.
- */
- #define CLK_IN 14745600UL
- /*
- * Some stuff for the interrupt handler
- */
- typedef void (*PFNCT)(void);
- static PFNCT NutOSTimerTickHandler = NULL;
- /*
- * Return the frequency of the peripheral clk
- */
- static uint32_t GetPeripheralClk (void)
- {
- uint32_t msel;
- volatile uint32_t vpbdiv;
- uint32_t CPUClkFreq;
- uint32_t PeripheralClkFreq;
- msel = (uint32_t)(PLLCFG & 0x1F);
- CPUClkFreq = CLK_IN * (msel + 1);
- /*
- * See errata:
- * August 5, 2005
- * Version 1.8
- * LPC2294
- *
- * VPBDIV.1 Incorrect read of VPBDIV
- */
- vpbdiv = (uint32_t)(VPBDIV & 0x03);
- vpbdiv = (uint32_t)(VPBDIV & 0x03);
- switch (vpbdiv) {
- case 0: PeripheralClkFreq = CPUClkFreq / 4; break;
- case 1: PeripheralClkFreq = CPUClkFreq; break;
- case 2: PeripheralClkFreq = CPUClkFreq / 2; break;
- default: PeripheralClkFreq = CPUClkFreq / 4; break;
- }
- return (PeripheralClkFreq);
- }
- /*
- * This is our timer #0 ISR Handler
- */
- static void TimerTickISRHandler (void)
- {
- /*
- * Clear interrupt
- */
- T0IR = 0xFF;
- if (NutOSTimerTickHandler != NULL) {
- (*NutOSTimerTickHandler)();
- }
- /*
- * Update the priority hardware.
- */
- VICVectAddr = 0;
- }
- /*!
- * \brief Initialize system timer.
- *
- * This function is automatically called by Nut/OS
- * during system initialization.
- *
- * Nut/OS uses on-chip timer 0 for its timer services.
- * Applications should not modify any registers of this
- * timer, but make use of the Nut/OS timer API. Timer 1
- * and timer 2 are available to applications.
- */
- void NutRegisterTimer(void (*handler) (void *))
- {
- /*
- * Save the new handler.
- */
- NutOSTimerTickHandler = (PFNCT)handler;
- /*
- * Disable timer.
- */
- T0TCR = 0;
- /*
- * TC is incrementet on every pclk.
- */
- T0PC = 0;
- /*
- * Set match register.
- */
- T0MR0 = (GetPeripheralClk() / NUT_TICK_FREQ);
- /*
- * An interrupt is generated when MR0 matches the value in TC.
- * The TC will be reset if MR0 matches it.
- */
- T0MCR = 3;
- /*
- * Capture feature is disabled.
- */
- T0CCR = 0;
- /*
- * No external match.
- */
- T0EMR = 0;
- /*
- * Enable timer.
- */
- T0TCR = 1;
- /*
- * VIC TIMER #0 Initialization
- */
- VICVectAddr2 = (uint32_t)TimerTickISRHandler;
- VICVectCntl2 = 0x20 | VIC_TIMER0;
- }
- /*!
- * \brief Return the CPU clock in Hertz.
- *
- * \return CPU clock frequency in Hertz.
- */
- uint32_t NutArchClockGet(int idx)
- {
- uint32_t msel;
- uint32_t CPUClkFreq;
- msel = (uint32_t)(PLLCFG & 0x1F);
- CPUClkFreq = CLK_IN * (msel + 1);
- return CPUClkFreq;
- }
- /*!
- * \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)
- {
- #if (NUT_TICK_FREQ % 1000)
- if (ms >= 0x3E8000UL)
- return (ms / 1000UL) * NUT_TICK_FREQ;
- return (ms * NUT_TICK_FREQ + 999UL) / 1000UL;
- #else
- return ms * (NUT_TICK_FREQ / 1000UL);
- #endif
- }
|