2009-05-19 23:17:28 +08:00
|
|
|
/****************************************************************************
|
2014-09-23 00:53:50 +08:00
|
|
|
* mm/mm_heap/mm_initialize.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-06 00:15:18 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-06 00:15:18 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-06 00:15:18 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2009-05-19 23:17:28 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-05-19 23:17:28 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2009-05-19 23:17:28 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2013-03-09 04:36:18 +08:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2014-09-24 21:29:09 +08:00
|
|
|
#include <nuttx/mm/mm.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2021-03-02 16:03:00 +08:00
|
|
|
#include "mm_heap/mm.h"
|
|
|
|
|
2013-03-09 02:29:56 +08:00
|
|
|
/****************************************************************************
|
2013-03-09 06:01:50 +08:00
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: mm_addregion
|
2013-03-09 02:29:56 +08:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function adds a region of contiguous memory to the selected heap.
|
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2013-03-09 02:29:56 +08:00
|
|
|
* heap - The selected heap
|
|
|
|
* heapstart - Start of the heap region
|
|
|
|
* heapsize - Size of the heap region
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2013-03-09 02:29:56 +08:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-03-09 06:01:50 +08:00
|
|
|
void mm_addregion(FAR struct mm_heap_s *heap, FAR void *heapstart,
|
|
|
|
size_t heapsize)
|
2013-03-09 02:29:56 +08:00
|
|
|
{
|
2021-03-02 16:03:00 +08:00
|
|
|
FAR struct mm_heap_impl_s *heap_impl;
|
2013-03-09 02:29:56 +08:00
|
|
|
FAR struct mm_freenode_s *node;
|
|
|
|
uintptr_t heapbase;
|
|
|
|
uintptr_t heapend;
|
2007-03-04 23:23:22 +08:00
|
|
|
#if CONFIG_MM_REGIONS > 1
|
2021-03-02 16:03:00 +08:00
|
|
|
int IDX;
|
|
|
|
|
|
|
|
DEBUGASSERT(MM_IS_VALID(heap));
|
|
|
|
heap_impl = heap->mm_impl;
|
|
|
|
IDX = heap_impl->mm_nregions;
|
2020-03-06 00:15:18 +08:00
|
|
|
|
|
|
|
/* Writing past CONFIG_MM_REGIONS would have catastrophic consequences */
|
|
|
|
|
|
|
|
DEBUGASSERT(IDX < CONFIG_MM_REGIONS);
|
|
|
|
if (IDX >= CONFIG_MM_REGIONS)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-09 02:29:56 +08:00
|
|
|
#else
|
|
|
|
# define IDX 0
|
2021-03-02 16:03:00 +08:00
|
|
|
|
|
|
|
DEBUGASSERT(MM_IS_VALID(heap));
|
|
|
|
heap_impl = heap->mm_impl;
|
2007-03-04 23:23:22 +08:00
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2016-11-05 23:44:29 +08:00
|
|
|
#if defined(CONFIG_MM_SMALL) && !defined(CONFIG_SMALL_MEMORY)
|
2013-03-09 02:29:56 +08:00
|
|
|
/* If the MCU handles wide addresses but the memory manager is configured
|
|
|
|
* for a small heap, then verify that the caller is not doing something
|
|
|
|
* crazy.
|
|
|
|
*/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-02-13 21:58:07 +08:00
|
|
|
DEBUGASSERT(heapsize <= MMSIZE_MAX + 1);
|
2013-03-09 02:29:56 +08:00
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-08-14 20:43:59 +08:00
|
|
|
mm_takesemaphore(heap);
|
|
|
|
|
2013-03-09 02:29:56 +08:00
|
|
|
/* Adjust the provide heap start and size so that they are both aligned
|
|
|
|
* with the MM_MIN_CHUNK size.
|
|
|
|
*/
|
|
|
|
|
|
|
|
heapbase = MM_ALIGN_UP((uintptr_t)heapstart);
|
|
|
|
heapend = MM_ALIGN_DOWN((uintptr_t)heapstart + (uintptr_t)heapsize);
|
|
|
|
heapsize = heapend - heapbase;
|
|
|
|
|
2020-11-20 10:52:16 +08:00
|
|
|
minfo("Region %d: base=%p size=%zu\n", IDX + 1, heapstart, heapsize);
|
2013-03-09 02:29:56 +08:00
|
|
|
|
|
|
|
/* Add the size of this region to the total size of the heap */
|
|
|
|
|
2021-03-02 16:03:00 +08:00
|
|
|
heap_impl->mm_heapsize += heapsize;
|
2013-03-09 02:29:56 +08:00
|
|
|
|
|
|
|
/* Create two "allocated" guard nodes at the beginning and end of
|
|
|
|
* the heap. These only serve to keep us from allocating outside
|
|
|
|
* of the heap.
|
2014-04-14 04:32:20 +08:00
|
|
|
*
|
2013-03-09 02:29:56 +08:00
|
|
|
* And create one free node between the guard nodes that contains
|
|
|
|
* all available memory.
|
|
|
|
*/
|
|
|
|
|
2021-03-02 16:03:00 +08:00
|
|
|
heap_impl->mm_heapstart[IDX] = (FAR struct mm_allocnode_s *)
|
|
|
|
heapbase;
|
|
|
|
heap_impl->mm_heapstart[IDX]->size = SIZEOF_MM_ALLOCNODE;
|
|
|
|
heap_impl->mm_heapstart[IDX]->preceding = MM_ALLOC_BIT;
|
|
|
|
node = (FAR struct mm_freenode_s *)
|
|
|
|
(heapbase + SIZEOF_MM_ALLOCNODE);
|
|
|
|
node->size = heapsize - 2*SIZEOF_MM_ALLOCNODE;
|
|
|
|
node->preceding = SIZEOF_MM_ALLOCNODE;
|
|
|
|
heap_impl->mm_heapend[IDX] = (FAR struct mm_allocnode_s *)
|
|
|
|
(heapend - SIZEOF_MM_ALLOCNODE);
|
|
|
|
heap_impl->mm_heapend[IDX]->size = SIZEOF_MM_ALLOCNODE;
|
|
|
|
heap_impl->mm_heapend[IDX]->preceding = node->size | MM_ALLOC_BIT;
|
2013-03-09 02:29:56 +08:00
|
|
|
|
|
|
|
#undef IDX
|
|
|
|
|
|
|
|
#if CONFIG_MM_REGIONS > 1
|
2021-03-02 16:03:00 +08:00
|
|
|
heap_impl->mm_nregions++;
|
2013-03-09 02:29:56 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Add the single, large free node to the nodelist */
|
|
|
|
|
|
|
|
mm_addfreechunk(heap, node);
|
2020-08-14 20:43:59 +08:00
|
|
|
|
|
|
|
mm_givesemaphore(heap);
|
2013-03-09 02:29:56 +08:00
|
|
|
}
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-05-19 23:17:28 +08:00
|
|
|
/****************************************************************************
|
2013-03-09 06:01:50 +08:00
|
|
|
* Name: mm_initialize
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2013-03-09 02:29:56 +08:00
|
|
|
* Initialize the selected heap data structures, providing the initial
|
|
|
|
* heap region.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2013-03-09 02:29:56 +08:00
|
|
|
* heap - The selected heap
|
2007-03-04 23:23:22 +08:00
|
|
|
* heapstart - Start of the initial heap region
|
|
|
|
* heapsize - Size of the initial heap region
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2007-02-18 07:21:28 +08:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2009-05-19 23:17:28 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2013-03-09 06:01:50 +08:00
|
|
|
void mm_initialize(FAR struct mm_heap_s *heap, FAR void *heapstart,
|
|
|
|
size_t heapsize)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2021-03-02 16:03:00 +08:00
|
|
|
FAR struct mm_heap_impl_s *heap_impl;
|
2021-05-20 04:02:13 +08:00
|
|
|
uintptr_t heap_adj;
|
|
|
|
int i;
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-11-20 10:52:16 +08:00
|
|
|
minfo("Heap: start=%p size=%zu\n", heapstart, heapsize);
|
2009-05-19 23:17:28 +08:00
|
|
|
|
2021-05-20 04:02:13 +08:00
|
|
|
/* First ensure the memory to be used is aligned */
|
|
|
|
|
|
|
|
heap_adj = MM_ALIGN_UP((uintptr_t) heapstart);
|
|
|
|
heapsize -= heap_adj - (uintptr_t) heapstart;
|
|
|
|
|
2021-03-02 16:03:00 +08:00
|
|
|
/* Reserve a block space for mm_heap_impl_s context */
|
|
|
|
|
|
|
|
DEBUGASSERT(heapsize > sizeof(struct mm_heap_impl_s));
|
2021-05-20 04:02:13 +08:00
|
|
|
heap->mm_impl = (FAR struct mm_heap_impl_s *)heap_adj;
|
2021-03-02 16:03:00 +08:00
|
|
|
heap_impl = heap->mm_impl;
|
|
|
|
heapsize -= sizeof(struct mm_heap_impl_s);
|
2021-05-20 04:02:13 +08:00
|
|
|
heapstart = (FAR char *)heap_adj + sizeof(struct mm_heap_impl_s);
|
2021-03-02 16:03:00 +08:00
|
|
|
|
2012-11-12 23:22:27 +08:00
|
|
|
/* The following two lines have cause problems for some older ZiLog
|
|
|
|
* compilers in the past (but not the more recent). Life is easier if we
|
|
|
|
* just the suppress them altogther for those tools.
|
2008-12-09 02:44:43 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ZILOG__
|
2007-02-18 07:21:28 +08:00
|
|
|
CHECK_ALLOCNODE_SIZE;
|
|
|
|
CHECK_FREENODE_SIZE;
|
2008-12-09 02:44:43 +08:00
|
|
|
#endif
|
2020-02-13 16:06:05 +08:00
|
|
|
DEBUGASSERT(MM_MIN_CHUNK >= SIZEOF_MM_FREENODE);
|
|
|
|
DEBUGASSERT(MM_MIN_CHUNK >= SIZEOF_MM_ALLOCNODE);
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2007-03-04 23:23:22 +08:00
|
|
|
/* Set up global variables */
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2021-06-21 16:20:44 +08:00
|
|
|
memset(heap_impl, 0, sizeof(struct mm_heap_impl_s));
|
2020-04-07 22:21:42 +08:00
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
/* Initialize the node array */
|
|
|
|
|
|
|
|
for (i = 1; i < MM_NNODES; i++)
|
|
|
|
{
|
2021-03-02 16:03:00 +08:00
|
|
|
heap_impl->mm_nodelist[i - 1].flink = &heap_impl->mm_nodelist[i];
|
|
|
|
heap_impl->mm_nodelist[i].blink = &heap_impl->mm_nodelist[i - 1];
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
|
|
|
|
2007-03-04 23:23:22 +08:00
|
|
|
/* Initialize the malloc semaphore to one (to support one-at-
|
2011-05-29 05:42:18 +08:00
|
|
|
* a-time access to private data sets).
|
2007-03-04 23:23:22 +08:00
|
|
|
*/
|
|
|
|
|
2013-03-09 02:29:56 +08:00
|
|
|
mm_seminitialize(heap);
|
2007-03-04 23:23:22 +08:00
|
|
|
|
|
|
|
/* Add the initial region of memory to the heap */
|
|
|
|
|
2013-03-09 06:01:50 +08:00
|
|
|
mm_addregion(heap, heapstart, heapsize);
|
2013-03-09 02:29:56 +08:00
|
|
|
}
|