| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- #ifndef _ARCH_CM3_TIMER_H_
- #define _ARCH_CM3_TIMER_H_
- /*
- * Copyright (C) 2001-2005 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$
- * Revision 1.7 2008/08/11 06:59:58 haraldkipp
- * BSD types replaced by stdint types (feature request #1282721).
- *
- * Revision 1.6 2008/08/06 12:51:11 haraldkipp
- * Added support for Ethernut 5 (AT91SAM9XE reference design).
- *
- * Revision 1.5 2007/08/17 10:44:38 haraldkipp
- * Timer enable/disable macro replaces previous global interrupt
- * enable/disable or function calling.
- *
- * Revision 1.4 2006/09/29 12:45:35 haraldkipp
- * Include clock configuration.
- *
- * Revision 1.3 2006/08/31 18:59:50 haraldkipp
- * Added support for the AT91SAM9260. We now determine between processor and
- * master clock. A new API function At91GetMasterClock() had been added to
- * query the latter.
- *
- * Revision 1.2 2006/02/23 15:33:59 haraldkipp
- * Support for Philips LPC2xxx Family and LPC-E2294 Board from Olimex added.
- * Many thanks to Michael Fischer for this port.
- *
- * Revision 1.1 2005/07/26 18:35:09 haraldkipp
- * First check in
- *
- */
- #include <cfg/clock.h>
- #include <compiler.h> // For deprecated warning.
- #define NutEnableTimerIrq() SysTick->CTRL |= SysTick_CTRL_TICKINT_Msk
- #define NutDisableTimerIrq() SysTick->CTRL &= ~SysTick_CTRL_TICKINT_Msk
- #if defined(MCU_STM32)
- /*!
- * Frequency of CPU Core(HCLK/AHB CLK)
- */
- #define NUT_HWCLK_CPU 0
- /*!
- * Clock for devices on APB1 bus
- */
- #define NUT_HWCLK_PCLK1 1
- /*!
- * Clock for devices on APB2 bus
- */
- #define NUT_HWCLK_PCLK2 2
- /*!
- * Number of clocks for this device
- */
- #define NUT_HWCLK_MAX 2
- #define NUT_HWCLK_PERIPHERAL NUT_HWCLK_PCLK1
- #elif defined(MCU_LPC17xx)
- /*!
- * Frequency of CPU Core
- */
- #define NUT_HWCLK_CPU 0
- /*!
- * Clock for devices on APB1/2 bus
- */
- #define NUT_HWCLK_PCLK 1
- /*!
- * Clock for extended memory controller
- */
- #define NUT_HWCLK_EMC 2
- /*!
- * Clock for USB
- */
- #define NUT_HWCLK_USB 3
- /*!
- * Clock for WDT
- */
- #define NUT_HWCLK_SPIFI 4
- /*!
- * Number of clocks for this device
- */
- #define NUT_HWCLK_MAX 4
- #define NUT_HWCLK_PERIPHERAL NUT_HWCLK_PCLK
- #else
- #warning "Unknown CM3 family"
- #endif
- #endif /* _ARCH_ARM_TIMER_H_ */
|