2011-11-24 02:34:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/src/stm32/up_allocateheap.c
|
|
|
|
*
|
2013-03-08 23:01:50 +01:00
|
|
|
* Copyright (C) 2011-2013 Gregory Nutt. All rights reserved.
|
2011-11-24 02:34:10 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* 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 NuttX 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/arch.h>
|
2013-03-08 23:01:50 +01:00
|
|
|
#include <nuttx/kmalloc.h>
|
2011-12-07 15:56:28 +01:00
|
|
|
|
2011-11-24 02:34:10 +01:00
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
|
|
|
#include "chip.h"
|
|
|
|
#include "up_arch.h"
|
|
|
|
#include "up_internal.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Definitions
|
|
|
|
****************************************************************************/
|
2012-02-28 00:14:43 +01:00
|
|
|
/* Internal SRAM is available in all members of the STM32 family. The
|
|
|
|
* following definitions must be provided to specify the size and
|
|
|
|
* location of internal(system) SRAM:
|
|
|
|
*
|
|
|
|
* CONFIG_DRAM_END : End address (+1) of SRAM (F1 family only, the
|
|
|
|
* : F4 family uses the a priori end of SRAM)
|
|
|
|
*
|
2012-04-07 22:54:45 +02:00
|
|
|
* The F4 family also contains internal CCM SRAM. This SRAM is different
|
2012-02-28 00:14:43 +01:00
|
|
|
* because it cannot be used for DMA. So if DMA needed, then the following
|
2012-04-07 22:54:45 +02:00
|
|
|
* should be defined to exclude CCM SRAM from the heap:
|
2012-02-28 00:14:43 +01:00
|
|
|
*
|
2012-04-07 22:54:45 +02:00
|
|
|
* CONFIG_STM32_CCMEXCLUDE : Exclude CCM SRAM from the HEAP
|
2012-02-28 00:14:43 +01:00
|
|
|
*
|
|
|
|
* In addition to internal SRAM, SRAM may also be available through the FSMC.
|
|
|
|
* In order to use FSMC SRAM, the following additional things need to be
|
|
|
|
* present in the NuttX configuration file:
|
|
|
|
*
|
|
|
|
* CONFIG_STM32_FSMC=y : Enables the FSMC
|
|
|
|
* CONFIG_STM32_FSMC_SRAM=y : Indicates that SRAM is available via the
|
2012-09-06 01:02:43 +02:00
|
|
|
* FSMC (as opposed to an LCD or FLASH).
|
2012-02-28 00:14:43 +01:00
|
|
|
* CONFIG_HEAP2_BASE : The base address of the SRAM in the FSMC
|
2012-09-06 01:02:43 +02:00
|
|
|
* address space
|
|
|
|
* CONFIG_HEAP2_SIZE : The size of the SRAM in the FSMC
|
|
|
|
* address space
|
2012-02-28 00:14:43 +01:00
|
|
|
* CONFIG_MM_REGIONS : Must be set to a large enough value to
|
2012-09-06 01:02:43 +02:00
|
|
|
* include the FSMC SRAM (as determined by
|
|
|
|
* the rules provided below)
|
2012-02-28 00:14:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_STM32_FSMC
|
|
|
|
# undef CONFIG_STM32_FSMC_SRAM
|
|
|
|
#endif
|
2011-11-24 02:34:10 +01:00
|
|
|
|
2012-02-28 00:14:43 +01:00
|
|
|
/* For the STM312F10xxx family, all internal SRAM is in one contiguous block
|
2013-03-14 15:42:52 +01:00
|
|
|
* starting at g_idle_topstack and extending through CONFIG_DRAM_END (my apologies for
|
2012-02-28 00:14:43 +01:00
|
|
|
* the bad naming). In addition, external FSMC SRAM may be available.
|
2011-11-24 02:34:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(CONFIG_STM32_STM32F10XX)
|
2012-03-10 01:35:44 +01:00
|
|
|
|
2012-02-28 00:14:43 +01:00
|
|
|
/* Set the end of system SRAM */
|
|
|
|
|
2011-11-24 02:34:10 +01:00
|
|
|
# define SRAM1_END CONFIG_DRAM_END
|
|
|
|
|
2012-02-28 00:14:43 +01:00
|
|
|
/* Check if external FSMC SRAM is provided */
|
|
|
|
|
|
|
|
# if CONFIG_STM32_FSMC_SRAM
|
|
|
|
# if CONFIG_MM_REGIONS < 2
|
|
|
|
# warning "FSMC SRAM not included in the heap"
|
|
|
|
# undef CONFIG_STM32_FSMC_SRAM
|
|
|
|
# elif CONFIG_MM_REGIONS > 2
|
2012-02-28 19:14:55 +01:00
|
|
|
# error "CONFIG_MM_REGIONS > 2 but I don't know what some of the region(s) are"
|
2012-02-28 00:14:43 +01:00
|
|
|
# undef CONFIG_MM_REGIONS
|
|
|
|
# define CONFIG_MM_REGIONS 2
|
|
|
|
# endif
|
|
|
|
# elif CONFIG_MM_REGIONS > 1
|
2012-02-28 19:14:55 +01:00
|
|
|
# error "CONFIG_MM_REGIONS > 1 but I don't know what the other region(s) are"
|
2012-02-28 00:14:43 +01:00
|
|
|
# endif
|
|
|
|
|
2012-05-28 21:48:26 +02:00
|
|
|
/* The STM32 F1 has no CCM SRAM */
|
2012-02-28 00:14:43 +01:00
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
# undef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
# define CONFIG_STM32_CCMEXCLUDE 1
|
2012-02-28 00:14:43 +01:00
|
|
|
|
2013-02-07 19:27:47 +01:00
|
|
|
/* Members of teh STM32F30xxx family has a variable amount of SRAM from 24
|
|
|
|
* to 40Kb plus 8KB if CCM SRAM. No external RAM is supported (the F3 family has no
|
|
|
|
* FSMC).
|
|
|
|
*
|
|
|
|
* As a complication, CCM SRAM cannot be used for DMA. So, if STM32 DMA is enabled, CCM SRAM
|
|
|
|
* should probably be excluded from the heap.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#elif defined(CONFIG_STM32_STM32F30XX)
|
|
|
|
|
|
|
|
/* Set the end of system SRAM */
|
|
|
|
|
|
|
|
# define SRAM1_END CONFIG_DRAM_END
|
|
|
|
|
|
|
|
/* Set the range of CCM SRAM as well (although we may not use it) */
|
|
|
|
|
|
|
|
# define SRAM2_START 0x10000000
|
|
|
|
# define SRAM2_END 0x10002000
|
|
|
|
|
|
|
|
/* There is no FSMC */
|
|
|
|
|
|
|
|
# undef CONFIG_STM32_FSMC_SRAM
|
|
|
|
|
|
|
|
/* There are 2 possible SRAM configurations:
|
|
|
|
*
|
|
|
|
* Configuration 1. System SRAM (only)
|
|
|
|
* CONFIG_MM_REGIONS == 1
|
|
|
|
* CONFIG_STM32_CCMEXCLUDE defined
|
|
|
|
* Configuration 2. System SRAM and CCM SRAM
|
|
|
|
* CONFIG_MM_REGIONS == 2
|
|
|
|
* CONFIG_STM32_CCMEXCLUDE NOT defined
|
|
|
|
*/
|
|
|
|
|
|
|
|
# if CONFIG_MM_REGIONS < 2
|
|
|
|
/* Only one memory region. Force Configuration 1 */
|
|
|
|
|
|
|
|
# ifndef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
# warning "CCM SRAM excluded from the heap"
|
|
|
|
# define CONFIG_STM32_CCMEXCLUDE 1
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* CONFIG_MM_REGIONS may be 2 if CCM SRAM is included in the head */
|
|
|
|
|
|
|
|
# elif CONFIG_MM_REGIONS >= 2
|
|
|
|
# if CONFIG_MM_REGIONS > 2
|
|
|
|
# error "No more than two memory regions can be supported (CONFIG_MM_REGIONS)"
|
|
|
|
# undef CONFIG_MM_REGIONS
|
|
|
|
# define CONFIG_MM_REGIONS 2
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Two memory regions is okay if CCM SRAM is not disabled. */
|
|
|
|
|
|
|
|
# ifdef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
|
|
|
|
/* Configuration 1: CONFIG_MM_REGIONS should have been 2 */
|
|
|
|
|
|
|
|
# error "CONFIG_MM_REGIONS >= 2 but but CCM SRAM is excluded (CONFIG_STM32_CCMEXCLUDE)"
|
|
|
|
# undef CONFIG_MM_REGIONS
|
|
|
|
# define CONFIG_MM_REGIONS 1
|
|
|
|
# else
|
|
|
|
|
|
|
|
/* Configuration 2: DMA should be disabled */
|
|
|
|
|
|
|
|
# ifdef CONFIG_ARCH_DMA
|
|
|
|
# warning "CCM SRAM is included in the heap AND DMA is enabled"
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* All members of the STM32F20xxx and STM32F40xxx families have 128Kb in two
|
|
|
|
* banks:
|
2011-11-24 02:34:10 +01:00
|
|
|
*
|
2012-02-28 00:14:43 +01:00
|
|
|
* 1) 112Kb of System SRAM beginning at address 0x2000:0000
|
|
|
|
* 2) 16Kb of System SRAM beginning at address 0x2001:c000
|
2013-02-07 19:27:47 +01:00
|
|
|
*
|
|
|
|
* The STM32F40xxx family has an additional 64Kb of CCM SRAM for a total of
|
|
|
|
* 192KB.
|
|
|
|
*
|
2012-04-07 22:54:45 +02:00
|
|
|
* 3) 64Kb of CCM SRAM beginning at address 0x1000:0000
|
2011-11-24 02:34:10 +01:00
|
|
|
*
|
2013-03-14 15:42:52 +01:00
|
|
|
* As determined by ld.script, g_idle_topstack lies in the 112Kb memory
|
2011-11-24 02:34:10 +01:00
|
|
|
* region and that extends to 0x2001:0000. But the first and second memory
|
|
|
|
* regions are contiguous and treated as one in this logic that extends to
|
|
|
|
* 0x2002:0000.
|
2012-02-28 00:14:43 +01:00
|
|
|
*
|
2013-02-07 19:27:47 +01:00
|
|
|
* As a complication, CCM SRAM cannot be used for DMA. So, if STM32 DMA is
|
|
|
|
* enabled, CCM SRAM should probably be excluded from the heap.
|
2012-02-28 00:14:43 +01:00
|
|
|
*
|
|
|
|
* In addition, external FSMC SRAM may be available.
|
2011-11-24 02:34:10 +01:00
|
|
|
*/
|
|
|
|
|
2012-03-10 01:35:44 +01:00
|
|
|
#elif defined(CONFIG_STM32_STM32F20XX) || defined(CONFIG_STM32_STM32F40XX)
|
|
|
|
|
2012-05-28 21:48:26 +02:00
|
|
|
/* The STM32 F2 has no CCM SRAM */
|
|
|
|
|
|
|
|
# ifdef CONFIG_STM32_STM32F20XX
|
|
|
|
# undef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
# define CONFIG_STM32_CCMEXCLUDE 1
|
|
|
|
# endif
|
|
|
|
|
2012-02-28 00:14:43 +01:00
|
|
|
/* Set the end of system SRAM */
|
|
|
|
|
2011-11-24 02:34:10 +01:00
|
|
|
# define SRAM1_END 0x20020000
|
2012-02-28 00:14:43 +01:00
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
/* Set the range of CCM SRAM as well (although we may not use it) */
|
2012-02-28 00:14:43 +01:00
|
|
|
|
2011-11-24 02:34:10 +01:00
|
|
|
# define SRAM2_START 0x10000000
|
|
|
|
# define SRAM2_END 0x10010000
|
2012-02-28 00:14:43 +01:00
|
|
|
|
|
|
|
/* There are 4 possible SRAM configurations:
|
|
|
|
*
|
|
|
|
* Configuration 1. System SRAM (only)
|
|
|
|
* CONFIG_MM_REGIONS == 1
|
|
|
|
* CONFIG_STM32_FSMC_SRAM NOT defined
|
2012-04-07 22:54:45 +02:00
|
|
|
* CONFIG_STM32_CCMEXCLUDE defined
|
|
|
|
* Configuration 2. System SRAM and CCM SRAM
|
2012-02-28 00:14:43 +01:00
|
|
|
* CONFIG_MM_REGIONS == 2
|
|
|
|
* CONFIG_STM32_FSMC_SRAM NOT defined
|
2012-04-07 22:54:45 +02:00
|
|
|
* CONFIG_STM32_CCMEXCLUDE NOT defined
|
2012-02-28 00:14:43 +01:00
|
|
|
* Configuration 3. System SRAM and FSMC SRAM
|
|
|
|
* CONFIG_MM_REGIONS == 2
|
|
|
|
* CONFIG_STM32_FSMC_SRAM defined
|
2012-04-07 22:54:45 +02:00
|
|
|
* CONFIG_STM32_CCMEXCLUDE defined
|
|
|
|
* Configuration 4. System SRAM, CCM SRAM, and FSMC SRAM
|
2012-02-28 00:14:43 +01:00
|
|
|
* CONFIG_MM_REGIONS == 3
|
|
|
|
* CONFIG_STM32_FSMC_SRAM defined
|
2012-04-07 22:54:45 +02:00
|
|
|
* CONFIG_STM32_CCMEXCLUDE NOT defined
|
2012-02-28 00:14:43 +01:00
|
|
|
*
|
|
|
|
* Let's make sure that all definitions are consitent before doing
|
|
|
|
* anything else
|
|
|
|
*/
|
|
|
|
|
|
|
|
# if defined(CONFIG_STM32_FSMC_SRAM)
|
|
|
|
|
|
|
|
/* Configuration 3 or 4. External SRAM is available. CONFIG_MM_REGIONS
|
|
|
|
* should be at least 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
# if CONFIG_MM_REGIONS < 2
|
|
|
|
/* Only one memory region. Force Configuration 1 */
|
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
# warning "FSMC SRAM (and CCM SRAM) excluded from the heap"
|
2012-02-28 00:14:43 +01:00
|
|
|
# undef CONFIG_STM32_FSMC_SRAM
|
2012-04-07 22:54:45 +02:00
|
|
|
# undef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
# define CONFIG_STM32_CCMEXCLUDE 1
|
2012-02-28 00:14:43 +01:00
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
/* CONFIG_MM_REGIONS may be 3 if CCM SRAM is included in the head */
|
2012-02-28 00:14:43 +01:00
|
|
|
|
|
|
|
# elif CONFIG_MM_REGIONS > 2
|
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
/* More than two memory regions. This is okay if CCM SRAM is not
|
2012-02-28 00:14:43 +01:00
|
|
|
* disabled.
|
|
|
|
*/
|
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
# if defined(CONFIG_STM32_CCMEXCLUDE)
|
2012-02-28 00:14:43 +01:00
|
|
|
|
|
|
|
/* Configuration 3: CONFIG_MM_REGIONS should have been 2 */
|
|
|
|
|
2012-02-28 19:14:55 +01:00
|
|
|
# error "CONFIG_MM_REGIONS > 2 but I don't know what some of the region(s) are"
|
2012-02-28 00:14:43 +01:00
|
|
|
# undef CONFIG_MM_REGIONS
|
|
|
|
# define CONFIG_MM_REGIONS 2
|
|
|
|
# else
|
|
|
|
|
|
|
|
/* Configuration 4: DMA should be disabled and CONFIG_MM_REGIONS
|
|
|
|
* should be 3.
|
|
|
|
*/
|
|
|
|
|
2012-09-11 00:26:37 +02:00
|
|
|
# ifdef CONFIG_ARCH_DMA
|
2012-04-07 22:54:45 +02:00
|
|
|
# warning "CCM SRAM is included in the heap AND DMA is enabled"
|
2012-02-28 00:14:43 +01:00
|
|
|
# endif
|
|
|
|
# if CONFIG_MM_REGIONS != 3
|
2012-02-28 19:14:55 +01:00
|
|
|
# error "CONFIG_MM_REGIONS > 3 but I don't know what some of the region(s) are"
|
2012-02-28 00:14:43 +01:00
|
|
|
# undef CONFIG_MM_REGIONS
|
|
|
|
# define CONFIG_MM_REGIONS 3
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
/* CONFIG_MM_REGIONS is exactly 2. We cannot support both CCM SRAM and
|
2012-02-28 00:14:43 +01:00
|
|
|
* FSMC SRAM.
|
|
|
|
*/
|
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
# elif !defined(CONFIG_STM32_CCMEXCLUDE)
|
|
|
|
# error "CONFIG_MM_REGIONS == 2, cannot support both CCM SRAM and FSMC SRAM"
|
|
|
|
# undef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
# define CONFIG_STM32_CCMEXCLUDE 1
|
2012-02-28 00:14:43 +01:00
|
|
|
# endif
|
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
# elif !defined(CONFIG_STM32_CCMEXCLUDE)
|
2012-02-28 00:14:43 +01:00
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
/* Configuration 2: FSMC SRAM is not used, but CCM SRAM is requested. DMA
|
2012-02-28 00:14:43 +01:00
|
|
|
* should be disabled and CONFIG_MM_REGIONS should be 2.
|
|
|
|
*/
|
|
|
|
|
2012-09-11 00:26:37 +02:00
|
|
|
# ifdef CONFIG_ARCH_DMA
|
2012-04-07 22:54:45 +02:00
|
|
|
# warning "CCM SRAM is included in the heap AND DMA is enabled"
|
2012-02-28 00:14:43 +01:00
|
|
|
# endif
|
|
|
|
# if CONFIG_MM_REGIONS < 2
|
2012-04-07 22:54:45 +02:00
|
|
|
# error "CCM SRAM excluded from the heap because CONFIG_MM_REGIONS < 2"
|
|
|
|
# undef CONFIG_STM32_CCMEXCLUDE
|
|
|
|
# define CONFIG_STM32_CCMEXCLUDE 1
|
2012-02-28 00:14:43 +01:00
|
|
|
# elif CONFIG_MM_REGIONS > 2
|
2012-02-28 19:14:55 +01:00
|
|
|
# error "CONFIG_MM_REGIONS > 2 but I don't know what some of the region(s) are"
|
2012-02-28 00:14:43 +01:00
|
|
|
# undef CONFIG_MM_REGIONS
|
|
|
|
# define CONFIG_MM_REGIONS 2
|
|
|
|
# endif
|
|
|
|
# endif
|
2011-11-24 02:34:10 +01:00
|
|
|
#else
|
|
|
|
# error "Unsupported STM32 chip"
|
|
|
|
#endif
|
|
|
|
|
2012-02-28 00:14:43 +01:00
|
|
|
/* If FSMC SRAM is going to be used as heap, then verify that the starting
|
|
|
|
* address and size of the external SRAM region has been provided in the
|
2012-09-06 01:02:43 +02:00
|
|
|
* configuration (as CONFIG_HEAP2_BASE and CONFIG_HEAP2_SIZE).
|
2012-02-28 00:14:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_STM32_FSMC_SRAM
|
2012-09-06 01:02:43 +02:00
|
|
|
# if !defined(CONFIG_HEAP2_BASE) || !defined(CONFIG_HEAP2_SIZE)
|
|
|
|
# error "CONFIG_HEAP2_BASE and CONFIG_HEAP2_SIZE must be provided"
|
2012-02-28 00:14:43 +01:00
|
|
|
# undef CONFIG_STM32_FSMC_SRAM
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-11-24 02:34:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: up_allocate_heap
|
|
|
|
*
|
|
|
|
* Description:
|
2013-03-09 22:12:20 +01:00
|
|
|
* This function will be called to dynamically set aside the heap region.
|
|
|
|
*
|
|
|
|
* For the kernel build (CONFIG_NUTTX_KERNEL=y) with both kernel- and
|
|
|
|
* user-space heaps (CONFIG_MM_KERNEL_HEAP=y), this function provides the
|
|
|
|
* size of the unprotected, user-space heap.
|
|
|
|
*
|
|
|
|
* If a protected kernel-space heap is provided, the kernel heap must be
|
|
|
|
* allocated (and protected) by an analogous up_allocate_kheap().
|
2011-11-24 02:34:10 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void up_allocate_heap(FAR void **heap_start, size_t *heap_size)
|
|
|
|
{
|
|
|
|
up_ledon(LED_HEAPALLOCATE);
|
2013-03-14 15:42:52 +01:00
|
|
|
*heap_start = (FAR void*)g_idle_topstack;
|
|
|
|
*heap_size = SRAM1_END - g_idle_topstack;
|
2011-11-24 02:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: up_addregion
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Memory may be added in non-contiguous chunks. Additional chunks are
|
|
|
|
* added by calling this function.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if CONFIG_MM_REGIONS > 1
|
|
|
|
void up_addregion(void)
|
|
|
|
{
|
2012-04-07 22:54:45 +02:00
|
|
|
/* Add the STM32F20xxx/STM32F40xxx CCM SRAM heap region. */
|
2011-11-24 02:34:10 +01:00
|
|
|
|
2012-04-07 22:54:45 +02:00
|
|
|
#ifndef CONFIG_STM32_CCMEXCLUDE
|
2013-03-08 23:01:50 +01:00
|
|
|
kmm_addregion((FAR void*)SRAM2_START, SRAM2_END-SRAM2_START);
|
2012-02-28 00:14:43 +01:00
|
|
|
#endif
|
2011-11-24 02:34:10 +01:00
|
|
|
|
2012-02-28 19:14:55 +01:00
|
|
|
/* Add the external FSMC SRAM heap region. */
|
2011-11-24 02:34:10 +01:00
|
|
|
|
2012-02-28 00:14:43 +01:00
|
|
|
#ifdef CONFIG_STM32_FSMC_SRAM
|
2013-03-08 23:01:50 +01:00
|
|
|
kmm_addregion((FAR void*)CONFIG_HEAP2_BASE, CONFIG_HEAP2_SIZE);
|
2012-02-28 19:14:55 +01:00
|
|
|
#endif
|
2011-11-24 02:34:10 +01:00
|
|
|
}
|
|
|
|
#endif
|