added prescaler for 16 bit pwm in LPC1347 target

Fork of mbed-dev by mbed official

Revision:
144:ef7eb2e8f9f7
diff -r 423e1876dc07 -r ef7eb2e8f9f7 targets/hal/TARGET_Freescale/TARGET_KSDK2_MCUS/TARGET_K66F/drivers/fsl_lmem_cache.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/targets/hal/TARGET_Freescale/TARGET_KSDK2_MCUS/TARGET_K66F/drivers/fsl_lmem_cache.h	Fri Sep 02 15:07:44 2016 +0100
@@ -0,0 +1,447 @@
+/*
+ * Copyright (c) 2015, Freescale Semiconductor, Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification,
+ * are permitted provided that the following conditions are met:
+ *
+ * o Redistributions of source code must retain the above copyright notice, this list
+ *   of conditions and the following disclaimer.
+ *
+ * o 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.
+ *
+ * o Neither the name of Freescale Semiconductor, Inc. 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 HOLDER 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.
+ */
+#ifndef _FSL_LMEM_CACHE_H_
+#define _FSL_LMEM_CACHE_H_
+
+#include "fsl_common.h"
+
+/*!
+ * @addtogroup lmem_cache
+ * @{
+ */
+
+/*! @file */
+
+/*******************************************************************************
+ * Definitions
+ ******************************************************************************/
+
+/*! @name Driver version */
+/*@{*/
+/*! @brief LMEM controller driver version 2.0.0. */
+#define FSL_LMEM_DRIVER_VERSION (MAKE_VERSION(2, 0, 0))
+/*@}*/
+
+#define LMEM_CACHE_LINE_SIZE (0x10U)   /*!< Cache line is 16-bytes. */
+#define LMEM_CACHE_SIZE_ONEWAY (4096U) /*!< Cache size is 4K-bytes one way. */
+
+/*! @brief LMEM cache mode options. */
+typedef enum _lmem_cache_mode
+{
+    kLMEM_NonCacheable = 0x0U,      /*!< CACHE mode: non-cacheable. */
+    kLMEM_CacheWriteThrough = 0x2U, /*!< CACHE mode: write-through. */
+    kLMEM_CacheWriteBack = 0x3U     /*!< CACHE mode: write-back. */
+} lmem_cache_mode_t;
+
+/*! @brief LMEM cache regions. */
+typedef enum _lmem_cache_region
+{
+    kLMEM_CacheRegion15 = 0U, /*!< Cache Region 15. */
+    kLMEM_CacheRegion14,      /*!< Cache Region 14. */
+    kLMEM_CacheRegion13,      /*!< Cache Region 13. */
+    kLMEM_CacheRegion12,      /*!< Cache Region 12. */
+    kLMEM_CacheRegion11,      /*!< Cache Region 11. */
+    kLMEM_CacheRegion10,      /*!< Cache Region 10. */
+    kLMEM_CacheRegion9,       /*!< Cache Region 9. */
+    kLMEM_CacheRegion8,       /*!< Cache Region 8. */
+    kLMEM_CacheRegion7,       /*!< Cache Region 7. */
+    kLMEM_CacheRegion6,       /*!< Cache Region 6. */
+    kLMEM_CacheRegion5,       /*!< Cache Region 5. */
+    kLMEM_CacheRegion4,       /*!< Cache Region 4. */
+    kLMEM_CacheRegion3,       /*!< Cache Region 3. */
+    kLMEM_CacheRegion2,       /*!< Cache Region 2. */
+    kLMEM_CacheRegion1,       /*!< Cache Region 1. */
+    kLMEM_CacheRegion0        /*!< Cache Region 0. */
+} lmem_cache_region_t;
+
+/*! @brief LMEM cache line command. */
+typedef enum _lmem_cache_line_command
+{
+    kLMEM_CacheLineSearchReadOrWrite = 0U, /*!< Cache line search and read or write. */
+    kLMEM_CacheLineInvalidate,             /*!< Cache line invalidate. */
+    kLMEM_CacheLinePush,                   /*!< Cache line push. */
+    kLMEM_CacheLineClear,                  /*!< Cache line clear. */
+} lmem_cache_line_command_t;
+
+/*******************************************************************************
+ * API
+ ******************************************************************************/
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
+/*!
+ * @name Local Memory Processor Code Bus Cache Control
+ *@{
+ */
+
+/*!
+ * @brief Enables/disables the processor code bus cache.
+ * This function enables/disables the cache.  The function first invalidates the entire cache
+ * and then enables/disable both the cache and write buffers.
+ *
+ * @param base LMEM peripheral base address.
+ * @param enable The enable or disable flag.
+ *       true  - enable the code cache.
+ *       false - disable the code cache.
+ */
+void LMEM_EnableCodeCache(LMEM_Type *base, bool enable);
+
+/*!
+ * @brief Invalidates the processor code bus cache.
+ * This function invalidates the cache both ways, which means that
+ * it unconditionally clears valid bits and modifies bits of a cache entry.
+ *
+ * @param base LMEM peripheral base address.
+ */
+void LMEM_CodeCacheInvalidateAll(LMEM_Type *base);
+
+/*!
+ * @brief Pushes all modified lines in the processor code bus cache.
+ * This function pushes all modified lines in both ways in the entire cache.
+ * It pushes a cache entry if it is valid and modified and clears the modified bit. If
+ * the entry is not valid or not modified, leave as is. This action does not clear the valid
+ * bit. A cache push is synonymous with a cache flush.
+ *
+ * @param base LMEM peripheral base address.
+ */
+void LMEM_CodeCachePushAll(LMEM_Type *base);
+
+/*!
+ * @brief Clears the processor code bus cache.
+ * This function clears the entire cache and pushes (flushes) and
+ * invalidates the operation.
+ * Clear - Pushes a cache entry if it is valid and modified, then clears the valid and
+ * modified bits. If the entry is not valid or not modified, clear the valid bit.
+ *
+ * @param base LMEM peripheral base address.
+ */
+void LMEM_CodeCacheClearAll(LMEM_Type *base);
+
+/*!
+ * @brief Invalidates a specific line in the processor code bus cache.
+ * This function invalidates a specific line in the cache
+ * based on the physical address passed in by the user.
+ * Invalidate - Unconditionally clears valid and modified bits of a cache entry.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ */
+void LMEM_CodeCacheInvalidateLine(LMEM_Type *base, uint32_t address);
+
+/*!
+ * @brief Invalidates multiple lines in the processor code bus cache.
+ * This function invalidates multiple lines in the cache
+ * based on the physical address and length in bytes passed in by the
+ * user.  If the function detects that the length meets or exceeds half the
+ * cache. Then the function performs an entire cache invalidate function, which is
+ * more efficient than invalidating the cache line-by-line.
+ * The need to check half the total amount of cache is due to the fact that the cache consists of
+ * two ways and that line commands based on the physical address searches both ways.
+ * Invalidate - Unconditionally clear valid and modified bits of a cache entry.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param length The length in bytes of the total amount of cache lines.
+ */
+void LMEM_CodeCacheInvalidateMultiLines(LMEM_Type *base, uint32_t address, uint32_t length);
+
+/*!
+ * @brief Pushes a specific modified line in the processor code bus cache.
+ * This function pushes a specific modified line based on the physical address passed in
+ * by the user.
+ * Push - Push a cache entry if it is valid and modified, then clear the modified bit. If the
+ * entry is not valid or not modified, leave as is. This action does not clear the valid
+ * bit. A cache push is synonymous with a cache flush.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ */
+void LMEM_CodeCachePushLine(LMEM_Type *base, uint32_t address);
+
+/*!
+ * @brief Pushes multiple modified lines in the processor code bus cache.
+ * This function pushes multiple modified lines in the cache
+ * based on the physical address and length in bytes passed in by the
+ * user.  If the function detects that the length meets or exceeds half of the
+ * cache, the function performs an cache push function, which is
+ * more efficient than pushing the modified lines in the cache line-by-line.
+ * The need to check half the total amount of cache is due to the fact that the cache consists of
+ * two ways and that line commands based on the physical address searches both ways.
+ * Push - Push a cache entry if it is valid and modified, then clear the modified bit. If
+ * the entry is not valid or not modified, leave as is. This action does not clear the valid
+ * bit. A cache push is synonymous with a cache flush.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param length The length in bytes of the total amount of cache lines.
+ */
+void LMEM_CodeCachePushMultiLines(LMEM_Type *base, uint32_t address, uint32_t length);
+
+/*!
+ * @brief Clears a specific line in the processor code bus cache.
+ * This function clears a specific line based on the physical address passed in
+ * by the user.
+ * Clear - Push a cache entry if it is valid and modified, then clear the valid and
+ * modify bits. If entry not valid or not modified, clear the valid bit.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ */
+void LMEM_CodeCacheClearLine(LMEM_Type *base, uint32_t address);
+
+/*!
+ * @brief Clears multiple lines in the processor code bus cache.
+ * This function clears multiple lines in the cache
+ * based on the physical address and length in bytes passed in by the
+ * user.  If the function detects that the length meets or exceeds half the total amount of
+ * cache, the function performs a cache clear function which is
+ * more efficient than clearing the lines in the cache line-by-line.
+ * The need to check half the total amount of cache is due to the fact that the cache consists of
+ * two ways and that line commands based on the physical address searches both ways.
+ * Clear - Push a cache entry if it is valid and modified, then clear the valid and
+ * modify bits. If entry not valid or not modified, clear the valid bit.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param length The length in bytes of the total amount of cache lines.
+ */
+void LMEM_CodeCacheClearMultiLines(LMEM_Type *base, uint32_t address, uint32_t length);
+
+/*!
+ * @brief Demotes the cache mode of a region in processor code bus cache.
+ * This function allows the user to demote the cache mode of a region within the device's
+ * memory map. Demoting the cache mode reduces the cache function applied to a memory
+ * region from write-back to write-through to non-cacheable.  The function checks to see
+ * if the requested cache mode is higher than or equal to the current cache mode, and if
+ * so, returns an error. After a region is demoted, its cache mode can only be raised
+ * by a reset, which returns it to its default state which is the highest cache configure for
+ * each region.
+ * To maintain cache coherency, changes to the cache mode should be completed while the
+ * address space being changed is not being accessed or the cache is disabled. Before a
+ * cache mode change, this function completes a cache clear all command to push and invalidate any
+ * cache entries that may have changed.
+ *
+ * @param base LMEM peripheral base address.
+ * @param region The desired region to demote of type lmem_cache_region_t.
+ * @param cacheMode The new, demoted cache mode of type lmem_cache_mode_t.
+ * @return The execution result.
+ * kStatus_Success The cache demote operation is successful.
+ * kStatus_Fail The cache demote operation is failure.
+ */
+status_t LMEM_CodeCacheDemoteRegion(LMEM_Type *base, lmem_cache_region_t region, lmem_cache_mode_t cacheMode);
+
+/*@}*/
+
+#if FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
+/*!
+ * @name Local Memory Processor System Bus Cache Control
+ *@{
+ */
+
+/*!
+ * @brief Enables/disables the processor system bus cache.
+ * This function enables/disables the cache. It first invalidates the entire cache,
+ * then enables /disable both the cache and write buffer.
+ *
+ * @param base LMEM peripheral base address.
+ * @param The enable or disable flag.
+ *       true  - enable the system cache.
+ *       false - disable the system cache.
+ */
+void LMEM_EnableSystemCache(LMEM_Type *base, bool enable);
+
+/*!
+ * @brief Invalidates the processor system bus cache.
+ * This function invalidates the entire cache both ways.
+ * Invalidate - Unconditionally clear valid and modify bits of a cache entry
+ *
+ * @param base LMEM peripheral base address.
+ */
+void LMEM_SystemCacheInvalidateAll(LMEM_Type *base);
+
+/*!
+ * @brief Pushes all modified lines in the  processor system bus cache.
+ * This function pushes all modified lines in both ways (the entire cache).
+ * Push - Push a cache entry if it is valid and modified, then clear the modify bit. If
+ * the entry is not valid or not modified, leave as is. This action does not clear the valid
+ * bit. A cache push is synonymous with a cache flush.
+ *
+ * @param base LMEM peripheral base address.
+ */
+void LMEM_SystemCachePushAll(LMEM_Type *base);
+
+/*!
+ * @brief Clears the entire processor system bus cache.
+ * This function clears the entire cache, which is a push (flush) and
+ * invalidate operation.
+ * Clear - Push a cache entry if it is valid and modified, then clear the valid and
+ * modify bits. If the entry is not valid or not modified, clear the valid bit.
+ *
+ * @param base LMEM peripheral base address.
+ */
+void LMEM_SystemCacheClearAll(LMEM_Type *base);
+
+/*!
+ * @brief Invalidates a specific line in the processor system bus cache.
+ * This function invalidates a specific line in the cache
+ * based on the physical address passed in by the user.
+ * Invalidate - Unconditionally clear valid and modify bits of a cache entry
+ *
+ * @param base LMEM peripheral base address. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param address The physical address of the cache line.
+ */
+void LMEM_SystemCacheInvalidateLine(LMEM_Type *base, uint32_t address);
+
+/*!
+ * @brief Invalidates multiple lines in the processor system bus cache.
+ * This function invalidates multiple lines in the cache
+ * based on the physical address and length in bytes passed in by the
+ * user.  If the function detects that the length meets or exceeds half of the
+ * cache, the function performs an entire cache invalidate function (which is
+ * more efficient than invalidating the cache line-by-line).
+ * The need to check half the total amount of cache is due to the fact that the cache consists of
+ * two ways and that line commands based on the physical address  searches both ways.
+ * Invalidate - Unconditionally clear valid and modify bits of a cache entry
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param length The length in bytes of the total amount of cache lines.
+ */
+void LMEM_SystemCacheInvalidateMultiLines(LMEM_Type *base, uint32_t address, uint32_t length);
+
+/*!
+ * @brief Pushes a specific modified line in the processor system bus cache.
+ * This function pushes a specific modified line based on the physical address passed in
+ * by the user.
+ * Push - Push a cache entry if it is valid and modified, then clear the modify bit. If
+ * the entry is not valid or not modified, leave as is. This action does not clear the valid
+ * bit. A cache push is synonymous with a cache flush.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ */
+void LMEM_SystemCachePushLine(LMEM_Type *base, uint32_t address);
+
+/*!
+ * @brief Pushes multiple modified lines in the processor system bus cache.
+ * This function pushes multiple modified lines in the cache
+ * based on the physical address and length in bytes passed in by the
+ * user.  If the function detects that the length meets or exceeds half of the
+ * cache, the function performs an entire cache push function (which is
+ * more efficient than pushing the modified lines in the cache line-by-line).
+ * The need to check half the total amount of cache is due to the fact that the cache consists of
+ * two ways and that line commands based on the physical address searches both ways.
+ * Push - Push a cache entry if it is valid and modified, then clear the modify bit. If
+ * the entry is not valid or not modified, leave as is. This action does not clear the valid
+ * bit. A cache push is synonymous with a cache flush.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param length The length in bytes of the total amount of cache lines.
+ */
+void LMEM_SystemCachePushMultiLines(LMEM_Type *base, uint32_t address, uint32_t length);
+
+/*!
+ * @brief Clears a specific line in the processor system bus cache.
+ * This function clears a specific line based on the physical address passed in
+ * by the user.
+ * Clear - Push a cache entry if it is valid and modified, then clear the valid and
+ * modify bits. If the entry is not valid or not modified, clear the valid bit.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ */
+void LMEM_SystemCacheClearLine(LMEM_Type *base, uint32_t address);
+
+/*!
+ * @brief Clears multiple lines in the processor system bus cache.
+ * This function clears multiple lines in the cache
+ * based on the physical address and length in bytes passed in by the
+ * user.  If the function detects that the length meets or exceeds half of the
+ * cache, the function performs an entire cache clear function (which is
+ * more efficient than clearing the lines in the cache line-by-line).
+ * The need to check half the total amount of cache is due to the fact that the cache consists of
+ * two ways and that line commands based on the physical address searches both ways.
+ * Clear - Push a cache entry if it is valid and modified, then clear the valid and
+ * modify bits. If the entry is not valid or not modified, clear the valid bit.
+ *
+ * @param base LMEM peripheral base address.
+ * @param address The physical address of the cache line. Should be 16-byte aligned address.
+ * If not, it is changed to the 16-byte aligned memory address.
+ * @param length The length in bytes of the total amount of cache lines.
+ */
+void LMEM_SystemCacheClearMultiLines(LMEM_Type *base, uint32_t address, uint32_t length);
+
+/*!
+ * @brief Demotes the cache mode of a region in the processor system bus cache.
+ * This function allows the user to demote the cache mode of a region within the device's
+ * memory map. Demoting the cache mode reduces the cache function applied to a memory
+ * region from write-back to write-through to non-cacheable.  The function checks to see
+ * if the requested cache mode is higher than or equal to the current cache mode, and if
+ * so, returns an error. After a region is demoted, its cache mode can only be raised
+ * by a reset, which returns it to its default state which is the highest cache configure
+ * for each region.
+ * To maintain cache coherency, changes to the cache mode should be completed while the
+ * address space being changed is not being accessed or the cache is disabled. Before a
+ * cache mode change, this function completes a cache clear all command to push and invalidate any
+ * cache entries that may have changed.
+ *
+ * @param base LMEM peripheral base address.
+ * @param region The desired region to demote of type lmem_cache_region_t.
+ * @param cacheMode The new, demoted cache mode of type lmem_cache_mode_t.
+ * @return The execution result.
+ * kStatus_Success The cache demote operation is successful.
+ * kStatus_Fail The cache demote operation is failure.
+ */
+status_t LMEM_SystemCacheDemoteRegion(LMEM_Type *base, lmem_cache_region_t region, lmem_cache_mode_t cacheMode);
+
+/*@}*/
+#endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
+
+#if defined(__cplusplus)
+}
+#endif
+
+/*! @}*/
+
+#endif /* _FSL_LMEM_CACHE_H_*/