2017-05-03 08:03:28 +00:00
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed 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
// http://www.apache.org/licenses/LICENSE-2.0
//
// 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.
# pragma once
# include <stdlib.h>
# include <stdint.h>
# include <freertos/FreeRTOS.h>
# include <soc/soc_memory_layout.h>
# include "multi_heap.h"
/* Some common heap registration data structures used
for heap_caps_init . c to share heap information with heap_caps . c
*/
/* Type for describing each registered heap */
typedef struct {
2017-07-04 04:46:39 +00:00
size_t type ;
2017-07-19 07:10:33 +00:00
uint32_t caps [ SOC_MEMORY_TYPE_NO_PRIOS ] ; ///< Capabilities for the type of memory in this heap (as a prioritised set). Copied from soc_memory_types so it's in RAM not flash.
2017-05-03 08:03:28 +00:00
intptr_t start ;
intptr_t end ;
portMUX_TYPE heap_mux ;
multi_heap_handle_t heap ;
} heap_t ;
extern heap_t * registered_heaps ;
extern size_t num_registered_heaps ;
2017-07-19 07:10:33 +00:00
bool heap_caps_match ( const heap_t * heap , uint32_t caps ) ;