Squashed all commits
This commit is contained in:
392
src/Modules/MMU/mmu.c
Normal file
392
src/Modules/MMU/mmu.c
Normal file
@@ -0,0 +1,392 @@
|
||||
/*
|
||||
****************************************************************************************************
|
||||
*
|
||||
* uC/OS-MMU
|
||||
*
|
||||
* (c) Copyright 2012, Micrium, FL
|
||||
* All rights reserved.
|
||||
*
|
||||
* All rights reserved. Protected by international copyright laws.
|
||||
* Knowledge of the source code may not be used to write a similar
|
||||
* product. This file may only be used in accordance with a license
|
||||
* and should not be redistributed in any way.
|
||||
*
|
||||
*
|
||||
* Version : 3.1.2pp-35237
|
||||
* File : MMU.c (#1)
|
||||
* Programmer(s) : EO
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
/*!
|
||||
****************************************************************************************************
|
||||
* \defgroup PAR_CPU_MMU Target Specific MMU Implementation
|
||||
* \ingroup PAR_CORE
|
||||
*
|
||||
*
|
||||
* The memory management unit (MMU) for the ...
|
||||
*
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* INCLUDES
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
#include "mmu.h"
|
||||
#include "xpseudo_asm.h"
|
||||
#include "xil_cache.h"
|
||||
#include "lib_mem.h"
|
||||
#include "mmu_cfg.h"
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* GOBAL DATA
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
|
||||
extern INT32U MMUTable;
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* PRIVATE FUNCTION PROTOTYPES
|
||||
****************************************************************************************************
|
||||
*/
|
||||
static MMU_ERR_T MMUTblAdd (PAR_MEM_REGION_REF_T mem, INT32U * pMMUTable);
|
||||
static MMU_ERR_T MMUTblAdd1M (PAR_MEM_REGION_REF_T mem, INT32U off, INT32U * pMMUTable);
|
||||
static void FTTSet (INT32U va, INT32U descr, INT32U * pMMUTable);
|
||||
static INT32U FTTGet (INT32U va, INT32U * pMMUTable);
|
||||
static INT32U FTTDescr (PAR_MEM_REGION_REF_T mem, INT32U offset, INT32U type, INT32U tbl);
|
||||
static void MMUEnable (INT32U * pMMUTable);
|
||||
static void MMUSwitchContext (INT32U id);
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* FUNCTIONS
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief INIT THE MMU
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function initialize the target specific MMU
|
||||
*
|
||||
* \note The integrator must supply the contents of the PARErrLogging() function to handle
|
||||
* possible error conditions.
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
MMU_ERR_T MMUInit (void)
|
||||
{
|
||||
INT32U n; /* Local: loop counter */
|
||||
MMU_ERR_T err = MMU_ERR_NONE;
|
||||
|
||||
Mem_Clr(&MMUTable,FTT_SIZE * sizeof(CPU_WORD_SIZE_32));
|
||||
|
||||
for(n = 0; n < sizeof(PARMemTbl_Core)/sizeof(PAR_MEM_REGION_T); n++){
|
||||
err = MMUTblAdd((PAR_MEM_REGION_REF_T)&PARMemTbl_Core[n], &MMUTable);
|
||||
if(err != MMU_ERR_NONE)
|
||||
return err;
|
||||
}
|
||||
|
||||
MMUEnable(&MMUTable); /* Enable the MMU */
|
||||
|
||||
return MMU_ERR_NONE;
|
||||
}
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* LOCAL FUNCTIONS
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief MMU TABLE CONSTRUCTION
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function constructs the needed table entries for a single user defined memory
|
||||
* region with the following rules:
|
||||
*
|
||||
* - build user memory size with blocks of 4K, 64K and 1M portions
|
||||
*
|
||||
* - ensure that each block is aligned at size (4K Block is aligned at 4K boundary, etc.)
|
||||
*
|
||||
* \param mem Reference to memory region
|
||||
*
|
||||
* \note Memory portions below 1KB will be ignored, because the MMU granularity starts with 1kB
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
static MMU_ERR_T MMUTblAdd(const PAR_MEM_REGION_REF_T mem, INT32U * pMMUTable)
|
||||
{
|
||||
INT32U vaddr; /* Local: virtual address */
|
||||
INT32U off; /* Local: offset in memory region */
|
||||
INT32U size; /* Local: remaining size of memory region */
|
||||
MMU_ERR_T err = MMU_ERR_NONE;
|
||||
/*------------------------------------------*/
|
||||
vaddr = mem->VA_Start; /* set virtual memory address */
|
||||
size = mem->Size; /* set size to memory region size */
|
||||
off = 0; /* set memory region offset to 0 */
|
||||
|
||||
if ((vaddr & (MMU_SIZE_1MB - 1)) != 0) { /* see, if VA is not aligned at 4k */
|
||||
return MMU_ERR_ALIGN;
|
||||
}
|
||||
if ((size % MMU_SIZE_1MB) != 0) { /* see, if size is not multiple of 4k */
|
||||
return MMU_ERR_SIZE;
|
||||
}
|
||||
|
||||
while(size >= MMU_SIZE_1MB) { /* create section for memory region */
|
||||
err = MMUTblAdd1M(mem, off, pMMUTable); /* add a 1M section */
|
||||
if(err != MMU_ERR_NONE)
|
||||
return err;
|
||||
vaddr += MMU_SIZE_1MB; /* update virtual address and */
|
||||
off += MMU_SIZE_1MB; /* offset and */
|
||||
size -= MMU_SIZE_1MB; /* remaining bytes in memory region */
|
||||
}
|
||||
|
||||
return MMU_ERR_NONE;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief INSERT 1M SECTION IN MMU TABLE
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function constructs the needed table entries for a single 1M memory block.
|
||||
*
|
||||
* \param mem Reference to memory region
|
||||
*
|
||||
* \param off Offset within the referenced memory region
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
static MMU_ERR_T MMUTblAdd1M(PAR_MEM_REGION_REF_T mem, INT32U off, INT32U * pMMUTable)
|
||||
{
|
||||
INT32U vaddr; /* Local: virtual address */
|
||||
INT32U descr; /* Local: translation table descriptor */
|
||||
INT32U type; /* Local: descriptor type information */
|
||||
/*------------------------------------------*/
|
||||
vaddr = mem->VA_Start + off; /* calculate virtual address */
|
||||
type = FTTGet(vaddr, pMMUTable) & FTT_TYPE; /* get descriptor type */
|
||||
|
||||
if (type != FTT_TYPE_FLT) { /* see, if section is already in use */
|
||||
return MMU_ERR_ENTRY_IN_USE;
|
||||
}
|
||||
|
||||
descr = FTTDescr(mem, off, FTT_TYPE_SEC, 0); /* construct first level section descr. */
|
||||
FTTSet(vaddr, descr, pMMUTable); /* set section for virtual address */
|
||||
return MMU_ERR_NONE;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief SET FIRST LEVEL TRANSLATION TABLE DESCRIPTOR
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function sets the given descriptor in the first level translation table
|
||||
* which corresponds to the given virtual address.
|
||||
*
|
||||
* \param va Virtual Address
|
||||
*
|
||||
* \param descr First level descriptor
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
static void FTTSet(INT32U va, INT32U descr, INT32U * pMMUTable)
|
||||
{
|
||||
volatile INT32U *tbl; /* Local: ptr to first level table entry */
|
||||
INT32U tbl_idx; /* Local: first level table index */
|
||||
/*------------------------------------------*/
|
||||
tbl_idx = (va >> 20) & 0x00000FFF; /* get table index out of virtual address */
|
||||
tbl = pMMUTable + tbl_idx; /* set first level table base address */
|
||||
/*------------------------------------------*/
|
||||
*tbl = descr; /* set descriptor in first level table */
|
||||
dsb();
|
||||
isb();
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief GET FIRST LEVEL TRANSLATION TABLE DESCRIPTOR
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function returns the first level translation table descriptor of the given
|
||||
* virtual address.
|
||||
*
|
||||
* \param va Virtual Address
|
||||
*
|
||||
* \return The current active descriptor is returned.
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
static INT32U FTTGet(INT32U va, INT32U * pMMUTable)
|
||||
{
|
||||
volatile INT32U *tbl; /* Local: ptr to first level table entry */
|
||||
INT32U tbl_idx; /* Local: first level table index */
|
||||
/*------------------------------------------*/
|
||||
tbl_idx = (va >> 20) & 0x00000FFF; /* get table index out of virtual address */
|
||||
tbl = pMMUTable + tbl_idx; /* set first level table base address */
|
||||
/*------------------------------------------*/
|
||||
return (*tbl); /* get descriptor in first level table */
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief CONSTRUCT FIRST LEVEL TRANSLATION TABLE DESCRIPTOR
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function constructs the first level translation table descriptor of the given
|
||||
* type for the offset within the memory region.
|
||||
*
|
||||
* \param mem Reference to memory region
|
||||
*
|
||||
* \param offset Offset within the referenced memory region
|
||||
*
|
||||
* \param type Type information (section / coarse page / fine page / fault)
|
||||
*
|
||||
* \param base Base address of page table
|
||||
*
|
||||
* \return For the types FTT_TYPE_SEC, FTT_TYPE_CPT and FTT_TYPE_FPT, the
|
||||
* corresponding table descriptor is returned. For any other type, the return value is
|
||||
* the table descriptor for FTT_TYPE_FLT.
|
||||
*
|
||||
* \see FTT_TYPE_FLT, FTT_TYPE_CPT, FTT_TYPE_SEC, FTT_TYPE_FPT
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
static INT32U FTTDescr(PAR_MEM_REGION_REF_T mem, INT32U offset, INT32U type, INT32U base)
|
||||
{
|
||||
INT32U result = 0; /* Local: function result */
|
||||
INT32U pa; /* Local: physical address */
|
||||
|
||||
switch(type){
|
||||
case FTT_TYPE_SEC:
|
||||
pa = mem->PA_Start + offset; /* yes: calculate physical address */
|
||||
result = FTT_TYPE_SEC | /* set descriptor type to section */
|
||||
((mem->HID & PAR_HID_CB_MASK) << 2u) | /* cachable & bufferable flag */
|
||||
((mem->HID & PAR_HID_F_XN) >> 6u) | /* Execute-Never Flag */
|
||||
((PAR_DOMAIN_MASTER) << 5) | /* owner = domain */
|
||||
((mem->AP & 0x3) << 10u) | /* access permissions AP0 and AP1 */
|
||||
((mem->AP & 0x4) << 13u) | /* access permissions AP2 */
|
||||
((mem->HID & PAR_HID_TEX_MASK) << 10u) | /* TEX attributes */
|
||||
((mem->HID & PAR_HID_F_S) << 8u) | /* shareable-flag */
|
||||
((mem->HID & PAR_HID_F_NG) << 8u) | /* Non-Global-Flag */
|
||||
((mem->HID & PAR_HID_F_NS) << 8u) | /* non-secure bit */
|
||||
(pa & 0xFFF00000); /* bits[31:20] of physical address */
|
||||
break;
|
||||
case FTT_TYPE_PT:
|
||||
case FTT_TYPE_FLT:
|
||||
case FTT_TYPE_RES:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief ENABLE MMU
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function enables the MMU.
|
||||
*
|
||||
* \note The first level translation table and the page tables must be initialized before
|
||||
* calling this function.
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
static void MMUEnable(INT32U * pMMUTable)
|
||||
{
|
||||
INT32U ctrl; /* Local: control register */
|
||||
|
||||
//Invalidate data and instruction cache
|
||||
Xil_DCacheDisable();
|
||||
|
||||
__set_mmu_table(((INT32U)pMMUTable & 0xFFFFC000) | PAR_TTBR0_FLAGS); /* Set first level transl. table base addr. */
|
||||
|
||||
__set_domain_control(0x55555555u); /* set all domains to client */
|
||||
//eo verwenden noch PD1 = 1 für tlb miss in TTBR1 wird zu translation fault.
|
||||
__set_asid(0 & 0xFF);
|
||||
__set_mmu_control(0x00000000); /* Set TTBCR to 0 -> Use TTBR0 and 14Bit alignment */
|
||||
|
||||
__clr_mmu_fault();
|
||||
|
||||
__dsb();
|
||||
|
||||
__invalidate_tlb();
|
||||
__invalidate_branchpred();
|
||||
__dsb();
|
||||
__isb();
|
||||
|
||||
|
||||
|
||||
ctrl = __get_sys_control(); /* get current control register */
|
||||
ctrl |= MMU_SCTLR_FLAGS; /* set I,C,S and M to enable MMU */
|
||||
__set_sys_control(ctrl); /* write new control register */
|
||||
/*------------------------------------------*/
|
||||
__no_operation(); /* perform 2 flat fetches */
|
||||
__no_operation();
|
||||
|
||||
#if (UCOS_AMP_MASTER == DEF_ENABLED)
|
||||
// /* Enable L2 Cache */
|
||||
// This is a "mandatory" step, don't now why, see Zynq Reference manual
|
||||
*((CPU_INT32U*)0xF8000A1C) = 0x020202;
|
||||
|
||||
Xil_L2CacheEnable();
|
||||
/* set L2 Aux register */
|
||||
// CPU_INT32U dat = *((CPU_INT32U*)0xF8F02104);
|
||||
// dat = 0x72760000;
|
||||
// *((CPU_INT32U*)0xF8F02104) = dat;
|
||||
// // /* Set all latencies of tag-ram to 2 */
|
||||
// // *((CPU_INT32U*)0xF8F02108) = 0x00000111;
|
||||
// // /* set data ram write and setup latencies to 2, data ram read to 3 */
|
||||
// // *((CPU_INT32U*)0xF8F0210C) = 0x00000121;
|
||||
// // /* set prefetch conrtol register */
|
||||
// // *((CPU_INT32U*)0xF8F02F60) = 0x30000000;
|
||||
// /* enable L2 Cache */
|
||||
// *((CPU_INT32U*)0xF8F02100) = 0x1;
|
||||
#endif
|
||||
CPU_INT32U actlr = __get_actlr();
|
||||
actlr &= ~(0x00000040);
|
||||
__set_actlr(actlr);
|
||||
/*--- MMU/address translation is enabled ---*/
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief Switch Address Space
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This function switches the address space and manipulates the virt->phys translation.
|
||||
*
|
||||
* \param id Partition ID
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
|
||||
static void MMUSwitchContext(INT32U id)
|
||||
{
|
||||
|
||||
CPU_INT32U cpu_sr = 0;
|
||||
/*------------------------------------------*/
|
||||
OS_ENTER_CRITICAL(); /* Enter critical section */
|
||||
//We don't need to flush caches, when for all shared memory regions the L1 cache policy is correct write through or disabled
|
||||
// __flush_caches(); /* Flush caches */
|
||||
// MMU_DCacheClean();
|
||||
//We don't need to invalidate the tlb, beacuase we have the ASID value corresponding to a partition
|
||||
// __invalidate_tlb(); /* Invalidate TLB */
|
||||
|
||||
__dsb();
|
||||
__set_asid(id & 0xFF);
|
||||
__set_mmu_table(((INT32U)MMUTable & 0xFFFFC000) | PAR_TTBR0_FLAGS); /* Set first level transl. table base addr. */
|
||||
__dsb();
|
||||
__isb();
|
||||
OS_EXIT_CRITICAL(); /* Exit critical section */
|
||||
/*------------------------------------------*/
|
||||
}
|
||||
201
src/Modules/MMU/mmu.h
Normal file
201
src/Modules/MMU/mmu.h
Normal file
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
****************************************************************************************************
|
||||
*
|
||||
* uC/OS-MMU
|
||||
*
|
||||
* (c) Copyright 2012, Micrium, FL
|
||||
* All rights reserved.
|
||||
*
|
||||
* All rights reserved. Protected by international copyright laws.
|
||||
* Knowledge of the source code may not be used to write a similar
|
||||
* product. This file may only be used in accordance with a license
|
||||
* and should not be redistributed in any way.
|
||||
*
|
||||
*
|
||||
* Version : 3.1.2pp-35237
|
||||
* File : par_mmu.h (#1)
|
||||
* Programmer(s) : EO
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
#ifndef _MMU_H_
|
||||
#define _MMU_H_
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* INCLUDES
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
#include "ucos_ii.h"
|
||||
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* ERROR DEFINITIONS
|
||||
****************************************************************************************************
|
||||
*/
|
||||
typedef enum{
|
||||
MMU_ERR_NONE = 0,
|
||||
MMU_ERR_STT_NOT_IMPLEMENTED,
|
||||
MMU_ERR_ALIGN,
|
||||
MMU_ERR_SIZE,
|
||||
MMU_ERR_ENTRY_IN_USE
|
||||
}MMU_ERR_T;
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* GENERAL DEFINES FOR MEMORY SPACE CONFIG
|
||||
****************************************************************************************************
|
||||
*/
|
||||
typedef CPU_INT32U PAR_MEM_SIZE_T;
|
||||
|
||||
#define MMU_SIZE_1MB (CPU_INT32U)0x00100000 /*!< Region size 1Mbytes */
|
||||
#define MMU_SIZE_2MB (CPU_INT32U)0x00200000 /*!< Region size 2Mbytes */
|
||||
#define MMU_SIZE_4MB (CPU_INT32U)0x00400000 /*!< Region size 4Mbytes */
|
||||
#define MMU_SIZE_8MB (CPU_INT32U)0x00800000 /*!< Region size 8Mbytes */
|
||||
#define MMU_SIZE_16MB (CPU_INT32U)0x01000000 /*!< Region size 16Mbytes */
|
||||
#define MMU_SIZE_32MB (CPU_INT32U)0x02000000 /*!< Region size 32Mbytes */
|
||||
#define MMU_SIZE_64MB (CPU_INT32U)0x04000000 /*!< Region size 64Mbytes */
|
||||
#define MMU_SIZE_128MB (CPU_INT32U)0x08000000 /*!< Region size 128Mbytes */
|
||||
#define MMU_SIZE_256MB (CPU_INT32U)0x10000000 /*!< Region size 256Mbytes */
|
||||
#define MMU_SIZE_512MB (CPU_INT32U)0x20000000 /*!< Region size 512Mbytes */
|
||||
#define MMU_SIZE_1GB (CPU_INT32U)0x40000000 /*!< Region size 1Gbytes */
|
||||
#define MMU_SIZE_2GB (CPU_INT32U)0x80000000 /*!< Region size 2Gbytes */
|
||||
#define MMU_SIZE_4GB (CPU_INT32U)0x00000000 /*!< Region size 4Gbytes */
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief GENERAL ACCESS PERMISSION DEFINES
|
||||
*
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
typedef enum{
|
||||
PAR_AP_P____U___ = 0, /* No Access */
|
||||
PAR_AP_PRW__U___, /* Priviledged: R+W User: no access */
|
||||
PAR_AP_PRW__UR__, /* Priviledged: R+W User: R */
|
||||
PAR_AP_PRW__URW_, /* Priviledged: R+W User: R+W */
|
||||
PAR_AP_RESERVED1, /* Reserved */
|
||||
PAR_AP_PR___U___, /* Priviledged: R User: no access */
|
||||
PAR_AP_PR___UR__, /* Priviledged: R User: R */
|
||||
PAR_AP_RESERVED2 /* Reserved */
|
||||
}PAR_MEM_AP_T;
|
||||
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief GENERAL HARDWARE IMPLEMENTATION DEPENDENT FLAGS
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This definitions must be used to configure the memory region hardware implementation
|
||||
* dependent flags within the memory map (\ref PARMemTbl) table:
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
#define PAR_HID_F__ (CPU_INT32U)(0x00000000)
|
||||
#define PAR_HID_F_S (CPU_INT32U)(0x00000100) /* Shareable: YES */
|
||||
#define PAR_HID_F_NG (CPU_INT32U)(0x00000200) /* Non-Global: YES */
|
||||
#define PAR_HID_F_XN (CPU_INT32U)(0x00000400) /* Execute-Never: YES */
|
||||
#define PAR_HID_F_NS (CPU_INT32U)(0x00000800) /* Non-secure bit (only available for L1 page table) */
|
||||
|
||||
#define PAR_HID_CACHE_INNER___ (CPU_INT32U)(0x00000000) /* Non-Cachable */
|
||||
#define PAR_HID_CACHE_INNER__B (CPU_INT32U)(0x00000001) /* Write Back, Write Allocate */
|
||||
#define PAR_HID_CACHE_INNER_C_ (CPU_INT32U)(0x00000002) /* Write through, no write-allocate */
|
||||
#define PAR_HID_CACHE_INNER_CB (CPU_INT32U)(0x00000003) /* Write Back, no write-allocate */
|
||||
|
||||
#define PAR_HID_CACHE_OUTER___ (CPU_INT32U)(0x00000000) /* Non-Cachable */
|
||||
#define PAR_HID_CACHE_OUTER__B (CPU_INT32U)(0x00000004) /* Write Back, Write Allocate */
|
||||
#define PAR_HID_CACHE_OUTER_C_ (CPU_INT32U)(0x00000008) /* Write through, no write-allocate */
|
||||
#define PAR_HID_CACHE_OUTER_CB (CPU_INT32U)(0x0000000C) /* Write Back, no write-allocate */
|
||||
|
||||
#define PAR_HID_TEX_CB_STRONGLY_ORDERED (CPU_INT32U)(0x00000000) /* Strongly Ordered */
|
||||
#define PAR_HID_TEX_CB_SHAREABLE_DEVICE (CPU_INT32U)(0x00000001) /* Shareable device */
|
||||
#define PAR_HIT_TEX_CB_WRITE_THR_NO_ALLOCATE (CPU_INT32U)(0x00000002) /* Outer and inner write through, no allocate on write */
|
||||
#define PAR_HID_TEX_CB_WRITEBACK_NO_ALLOCATE (CPU_INT32U)(0x00000003) /* Outer and inner write BACK, no allocate on write */
|
||||
#define PAR_HID_TEX_CB_OUT_IN_NON_CACHABLE (CPU_INT32U)(0x00000004) /* Outer and inner non-cachable */
|
||||
#define PAR_HID_TEX_CB_NON_SHAREABLE_DEVICE (CPU_INT32U)(0x0000000A) /* Non-Shareable device */
|
||||
#define PAR_HID_TEX_CB_CACHED_MEMORY (CPU_INT32U)(0x00000010) /* Cached Memory, use PAR_HID_CACHE_OUTER_XX and PAR_HID_CACHE_INNER_XX to define policies */
|
||||
|
||||
#define PAR_HID_TEX_MASK (CPU_INT32U)(0x0000001C)
|
||||
#define PAR_HID_CB_MASK (CPU_INT32U)(0x00000003)
|
||||
|
||||
/* short version for standard system device only accessible from hypervisor and cpu0, not shared between anyone, also called "Mein Schatz!" ;-) */
|
||||
#define PAR_HID_EXCLUSIVE_SYS_DEVICE (CPU_INT32U)(PAR_HID_TEX_CB_NON_SHAREABLE_DEVICE | PAR_HID_F_NG | PAR_HID_F_XN)
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* TYPE DEFINITIONS
|
||||
****************************************************************************************************
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
/*!
|
||||
* \brief MEMORY SPACE CONFIGURATION STRUCT
|
||||
*
|
||||
* \ingroup PAR_CPU_MMU
|
||||
*
|
||||
* This structure holds the memory region definitions.
|
||||
*/
|
||||
/*------------------------------------------------------------------------------------------------*/
|
||||
typedef struct {
|
||||
CPU_INT32U VA_Start; /*!< Virtual Start Address */
|
||||
CPU_INT32U PA_Start; /*!< Physical Start Address */
|
||||
PAR_MEM_SIZE_T Size; /*!< Size of Memory Region */
|
||||
|
||||
PAR_MEM_AP_T AP; /*!< Access Permission of Memory Region */
|
||||
CPU_INT32U HID; /*!< Hardware Implementation Dependent Field*/
|
||||
|
||||
} PAR_MEM_REGION_T, *PAR_MEM_REGION_REF_T;
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* TARGET SPECIFIC DEFINES
|
||||
****************************************************************************************************
|
||||
*/
|
||||
#define FTT_SIZE 4096 /*!< Size of First Level Translation Table */
|
||||
/*----- First Level Translation Table ------*/
|
||||
#define FTT_TYPE (CPU_INT32U)0x00000003 /*!< First Level Descriptor Type Mask */
|
||||
#define FTT_TYPE_FLT (CPU_INT32U)0x00000000 /*!< Type: Fault */
|
||||
#define FTT_TYPE_PT (CPU_INT32U)0x00000001 /*!< Type: Page Table */
|
||||
#define FTT_TYPE_SEC (CPU_INT32U)0x00000002 /*!< Type: Section (1MB) */
|
||||
#define FTT_TYPE_RES (CPU_INT32U)0x00000003 /*!< Type: Reserved */
|
||||
|
||||
#define FTT_OWNER (CPU_INT32U)0x000001E0 /*!< First Level Descriptor Owner Mask */
|
||||
|
||||
/*----- Domain Management ------------------*/
|
||||
#define PAR_DOMAIN_NOACCESS (CPU_INT32U)0x0 /*!< Domain: diable domain */
|
||||
#define PAR_DOMAIN_CLIENT (CPU_INT32U)0x1 /*!< Domain: domain owner is client */
|
||||
#define PAR_DOMAIN_MASTER (CPU_INT32U)0x3 /*!< Domain: domain owner is master */
|
||||
|
||||
|
||||
|
||||
/* TTBR0 Config (armv7refman B4.1.154) Outer Region | not-outer-shareable | inner region | shareable */
|
||||
#define PAR_TTBR0_FLAGS (CPU_INT32U)((0x41 << 0) | (0x00 << 5u) | (0x03 << 3u) | (0x00 << 1u))
|
||||
|
||||
|
||||
#define MMU_SCTLR_ACCESS_FLAG_ENABLE (0x01 << 29u) //Enable Access flag mode
|
||||
#define MMU_SCTLR_RR_EN (0x01 << 14u) //Enable RoundRobin Cache Replacement
|
||||
#define MMU_SCTLR_ICACHE_EN (0x01 << 12u) //Enable Instruction Cache
|
||||
#define MMU_SCTLR_BRANCH_EN (0x01 << 11u) //Enable Branch Prediction
|
||||
#define MMU_SCTLR_CACHE_EN (0x01 << 2u) //Enable Data and unified cache
|
||||
#define MMU_SCTLR_MMU_EN (0x01 << 0u) //Enable MMU
|
||||
#define MMU_SCTLR_SWP_EN (0x01 << 10u)
|
||||
|
||||
#define MMU_SCTLR_FLAGS (CPU_INT32U) (MMU_SCTLR_RR_EN \
|
||||
| MMU_SCTLR_ICACHE_EN \
|
||||
| MMU_SCTLR_BRANCH_EN \
|
||||
| MMU_SCTLR_CACHE_EN \
|
||||
| MMU_SCTLR_SWP_EN \
|
||||
| MMU_SCTLR_MMU_EN )
|
||||
|
||||
/*
|
||||
****************************************************************************************************
|
||||
* FUNCTION PROTOTYPES
|
||||
****************************************************************************************************
|
||||
*/
|
||||
|
||||
MMU_ERR_T MMUInit (void);
|
||||
|
||||
#endif /* #ifndef _MMU_H_ */
|
||||
|
||||
23
src/Modules/genericTaskset/cfgTemplate/gt_cfg.h
Normal file
23
src/Modules/genericTaskset/cfgTemplate/gt_cfg.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* gt_cfg.h
|
||||
*
|
||||
* Created on: Jan 15, 2019
|
||||
* Author: Kai Gemlau
|
||||
*/
|
||||
|
||||
#ifndef GT_CFG_H_
|
||||
#define GT_CFG_H_
|
||||
|
||||
#define GT_USE_NP_REGIONS 1
|
||||
#define GT_USE_NP_MEAS 1
|
||||
#define GT_NUM_OF_TASKS 1
|
||||
#define GT_REPORT_CONSOLE 0
|
||||
#define GT_REPORT_SVC 0
|
||||
|
||||
#define GT_TTC_DEVICE_ID XPAR_PS7_TTC_2_DEVICE_ID
|
||||
#define GT_TTC_PWM_INTR_ID XPAR_XTTCPS_2_INTR
|
||||
#define GT_TIMER_TICKS_PER_SEC 10000
|
||||
|
||||
#include "gt_core_cfg.h"
|
||||
|
||||
#endif /* GT_CFG_H_ */
|
||||
18
src/Modules/genericTaskset/cfgTemplate/gt_core_cfg.h
Normal file
18
src/Modules/genericTaskset/cfgTemplate/gt_core_cfg.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* gt_core_cfg.h
|
||||
*
|
||||
* Created on: Jan 15, 2019
|
||||
* Author: Kai Gemlau
|
||||
*/
|
||||
|
||||
#ifndef GT_CORE_CFG_H_
|
||||
#define GT_CORE_CFG_H_
|
||||
|
||||
#define GT_USE_CPU_CM7 0 /* Cortex M7 TODO: Specify */
|
||||
#define GT_USE_CPU_ARM_V7_A 0 /* Cortex A9 @ 666MHz on Zynq 7000 */
|
||||
#define GT_USE_CPU_PSUR5 1 /* Cortex R5 @ 100MHz on Zynq Ultrascale+ */
|
||||
|
||||
#define GT_STACKSIZE 256
|
||||
#define GT_MAXQACT 5
|
||||
|
||||
#endif /* GT_CORE_CFG_H_ */
|
||||
103
src/Modules/genericTaskset/cfgTemplate/gt_tasks.c
Normal file
103
src/Modules/genericTaskset/cfgTemplate/gt_tasks.c
Normal file
@@ -0,0 +1,103 @@
|
||||
/*
|
||||
* gt_tasks.c
|
||||
*
|
||||
* Created on: Aug 22, 2014
|
||||
* Author: matthiasb
|
||||
*/
|
||||
|
||||
|
||||
#include "ucos_ii.h"
|
||||
#include "gt_types.h"
|
||||
#include "gt_cfg.h"
|
||||
#include <stdlib.h> /* rand */
|
||||
#include <string.h> /* memset */
|
||||
|
||||
/*-------------------------------Task model internal struct definitions-------------------------------*/
|
||||
/*
|
||||
* Internal task extension struct
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
CPU_INT32U BCET;
|
||||
CPU_INT32U WCET;
|
||||
}GT_WL_CET_T;
|
||||
|
||||
/*
|
||||
* Internal task extension struct
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
CPU_INT32U Period;
|
||||
CPU_INT32U Jitter;
|
||||
CPU_INT32U Distance;
|
||||
GT_WL_CET_T CET;
|
||||
}GT_TASK_EXT_T;
|
||||
|
||||
/*------------------------------------Execution times and periods-------------------------------------*/
|
||||
/*
|
||||
* All times given in (1/10)ms
|
||||
*/
|
||||
|
||||
/*
|
||||
* Task model
|
||||
*/
|
||||
GT_TASK_EXT_T GT_AllTasks[GT_NUM_OF_TASKS] = {
|
||||
/* P J D BCET WCET */
|
||||
{10, 0, 0, {1, 1}},
|
||||
{20, 0, 0, {2, 4}},
|
||||
{50, 0, 0, {3, 5}},
|
||||
{100, 0, 0, {35, 40}},
|
||||
};
|
||||
|
||||
/*------------------------------------Internal call back functions-------------------------------------*/
|
||||
/*
|
||||
* Function to determine task execution time
|
||||
*/
|
||||
static CPU_INT32U _GT_GetTaskCet(GT_TASK_T * pThisTask)
|
||||
{
|
||||
/*
|
||||
* Simple randomized jitter between BCET and WCET
|
||||
*/
|
||||
GT_TASK_EXT_T * pTaskExt = (GT_TASK_EXT_T*)pThisTask->Extension;
|
||||
CPU_INT32U BCET = pTaskExt->CET.BCET;
|
||||
CPU_INT32U WCET = pTaskExt->CET.WCET;
|
||||
return (BCET < WCET) ? (WCET - (rand() % (WCET - BCET))) : WCET;
|
||||
}
|
||||
|
||||
/*
|
||||
* Function to determine next task activation
|
||||
* For this model we use a simple PJD model
|
||||
*/
|
||||
static CPU_INT32U _GT_GetNextActivation(GT_TASK_T * pThisTask)
|
||||
{
|
||||
GT_TASK_EXT_T * pTaskExt = (GT_TASK_EXT_T*)pThisTask->Extension;
|
||||
/*
|
||||
* Calculate next activation based on PJ Model
|
||||
*/
|
||||
CPU_INT32S NextDistance = (pTaskExt->Jitter) ? pTaskExt->Period + (rand()%(pTaskExt->Jitter) - (pTaskExt->Jitter/2))
|
||||
: pTaskExt->Period;
|
||||
/*
|
||||
* Adjust activation to PJD if needed
|
||||
*/
|
||||
return ((CPU_INT32S)pTaskExt->Distance > NextDistance) ? pTaskExt->Distance : (CPU_INT32U)NextDistance;
|
||||
}
|
||||
|
||||
/*
|
||||
* Main task table, used for GT_Init call
|
||||
*/
|
||||
GT_TASK_T GT_Tasks[GT_NUM_OF_TASKS] =
|
||||
{
|
||||
/*Type Activation Type Id Prio Next Activation CET Init Function Task Function D WL Internal External */
|
||||
{ GT_TASK_DEF, GT_ACT_INT, 0, 30, _GT_GetNextActivation, _GT_GetTaskCet, NULL, NULL, 10, GT_RUNABLE_NULL, GT_INTERNAL_NULL, (void *)>_AllTasks[0]},
|
||||
{ GT_TASK_DEF, GT_ACT_INT, 1, 31, _GT_GetNextActivation, _GT_GetTaskCet, NULL, NULL, 20, GT_RUNABLE_NULL, GT_INTERNAL_NULL, (void *)>_AllTasks[1]},
|
||||
{ GT_TASK_DEF, GT_ACT_INT, 2, 32, _GT_GetNextActivation, _GT_GetTaskCet, NULL, NULL, 50, GT_RUNABLE_NULL, GT_INTERNAL_NULL, (void *)>_AllTasks[2]},
|
||||
{ GT_TASK_DEF, GT_ACT_INT, 3, 33, _GT_GetNextActivation, _GT_GetTaskCet, NULL, NULL, 100, GT_RUNABLE_NULL, GT_INTERNAL_NULL, (void *)>_AllTasks[3]},
|
||||
};
|
||||
|
||||
/*
|
||||
* Internal activation
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
149
src/Modules/genericTaskset/hw/gt_xilTtcPs.c
Normal file
149
src/Modules/genericTaskset/hw/gt_xilTtcPs.c
Normal file
@@ -0,0 +1,149 @@
|
||||
/*
|
||||
* gt_stm32f7.c
|
||||
*
|
||||
* Created on: 05.06.2018
|
||||
* Author: kaige
|
||||
*/
|
||||
|
||||
#include "ucos_ii.h"
|
||||
#include "gt_types.h"
|
||||
#include "gt_core.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include "xparameters.h"
|
||||
#include "xstatus.h"
|
||||
#include "xil_exception.h"
|
||||
#include "xttcps.h"
|
||||
#include "ucos_int.h"
|
||||
|
||||
/*
|
||||
* Last interval / time since last interrupt
|
||||
*/
|
||||
static CPU_INT32U GT_LastInterval = 0;
|
||||
/*
|
||||
* Scaling factor used to convert GT Times to timer ticks
|
||||
*/
|
||||
static uint32_t GT_TickScalingFactor = 0;
|
||||
|
||||
/*
|
||||
* Task Config Table
|
||||
*/
|
||||
extern volatile GT_TASK_T *GT_TaskTable;
|
||||
|
||||
/*
|
||||
* Hardware Timer
|
||||
*/
|
||||
static XTtcPs GT_Timer;
|
||||
|
||||
/*
|
||||
* Function to determine next task activation
|
||||
* For this model we use a simple PJD model
|
||||
*/
|
||||
static CPU_INT32U _GT_GetNextActivation(GT_TASK_T * pThisTask)
|
||||
{
|
||||
GT_TASK_EXT_T * pTaskExt = (GT_TASK_EXT_T*)pThisTask->Extension;
|
||||
/*
|
||||
* Calculate next activation based on PJ Model
|
||||
*/
|
||||
CPU_INT32S NextDistance = (pTaskExt->Jitter) ? pTaskExt->Period + (rand()%(pTaskExt->Jitter) - (pTaskExt->Jitter/2))
|
||||
: pTaskExt->Period;
|
||||
/*
|
||||
* Adjust activation to PJD if needed
|
||||
*/
|
||||
return ((CPU_INT32S)pTaskExt->Distance > NextDistance) ? pTaskExt->Distance : (CPU_INT32U)NextDistance;
|
||||
}
|
||||
|
||||
static void GT_TickHandler(void *CallBackRef)
|
||||
{
|
||||
CPU_INT32U nextIRQ = 0xFFFFFFFF; /* The next activation of all tasks is used as next IRQ */
|
||||
CPU_INT32U nextActivation = 0;
|
||||
int i = 0;
|
||||
GT_TASK_T *pTask;
|
||||
u32 StatusEvent;
|
||||
XTtcPs_Stop(>_Timer);
|
||||
|
||||
/*
|
||||
* Read the interrupt status, then write it back to clear the interrupt.
|
||||
*/
|
||||
StatusEvent = XTtcPs_GetInterruptStatus(>_Timer);
|
||||
XTtcPs_ClearInterruptStatus(>_Timer, StatusEvent);
|
||||
|
||||
if ((XTTCPS_IXR_INTERVAL_MASK & StatusEvent) != 0) {
|
||||
for(i=0; i < GT_NUM_OF_TASKS; i++){
|
||||
pTask = (GT_TASK_T *)>_TaskTable[i];
|
||||
if(pTask->ActivationType == GT_ACT_INT && pTask->Internal.Ready)
|
||||
{
|
||||
if(GT_LastInterval < pTask->Internal.NextAct)
|
||||
pTask->Internal.NextAct -= GT_LastInterval;
|
||||
else
|
||||
pTask->Internal.NextAct = 0;
|
||||
if(!pTask->Internal.NextAct)
|
||||
{
|
||||
/*
|
||||
* Get next activation time
|
||||
*/
|
||||
nextActivation = _GT_GetNextActivation(pTask);
|
||||
pTask->Internal.NextAct = nextActivation;
|
||||
/*
|
||||
* Activate task
|
||||
*/
|
||||
GT_ActivateTask(i);
|
||||
//pTask->Internal.NextAbsD=pTask->D;
|
||||
if(nextActivation < nextIRQ){
|
||||
nextIRQ = nextActivation;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
GT_LastInterval = nextIRQ;
|
||||
XTtcPs_SetInterval(>_Timer, nextIRQ * GT_TickScalingFactor);
|
||||
}
|
||||
|
||||
XTtcPs_Start(>_Timer);
|
||||
}
|
||||
|
||||
void GT_HW_InitTimer(){
|
||||
int Status;
|
||||
XTtcPs_Config *Config;
|
||||
|
||||
/*
|
||||
* Look up the configuration based on the device identifier
|
||||
* and initialize the device
|
||||
*/
|
||||
Config = XTtcPs_LookupConfig(GT_TTC_DEVICE_ID);
|
||||
XTtcPs_CfgInitialize(>_Timer, Config, Config->BaseAddress);
|
||||
|
||||
/*
|
||||
* Set the options and calculate prescaler
|
||||
*/
|
||||
XTtcPs_SetOptions(>_Timer, XTTCPS_OPTION_INTERVAL_MODE | XTTCPS_OPTION_WAVE_DISABLE);
|
||||
|
||||
/*
|
||||
* Set the interval and prescaler
|
||||
*/
|
||||
#ifdef GT_USE_CPU_ARM_V7_A
|
||||
/* Calculate Prescaler for TTC with 16 Bit width */
|
||||
XTtcPs_SetPrescaler(>_Timer, 7);
|
||||
GT_TickScalingFactor = GT_Timer.Config.InputClockHz / GT_TIMER_TICKS_PER_SEC / 256;
|
||||
#else
|
||||
/* Disable Prescaler for TTC with 32 Bit width */
|
||||
XTtcPs_SetPrescaler(>_Timer, XTTCPS_CLK_CNTRL_PS_DISABLE);
|
||||
GT_TickScalingFactor = GT_Timer.Config.InputClockHz / GT_TIMER_TICKS_PER_SEC;
|
||||
#endif
|
||||
XTtcPs_SetInterval(>_Timer, 0);
|
||||
|
||||
GT_LastInterval = 0;
|
||||
|
||||
UCOS_IntVectSet (GT_TTC_PWM_INTR_ID, 0u, 0u, GT_TickHandler, NULL);
|
||||
UCOS_IntSrcEn (GT_TTC_PWM_INTR_ID);
|
||||
|
||||
/*
|
||||
* Enable the interrupts for the tick timer/counter
|
||||
* We only care about the interval timeout.
|
||||
* Start the timer
|
||||
*/
|
||||
XTtcPs_EnableInterrupts(>_Timer, XTTCPS_IXR_INTERVAL_MASK);
|
||||
XTtcPs_Start(>_Timer);
|
||||
}
|
||||
27
src/Modules/genericTaskset/if/gt_core.h
Normal file
27
src/Modules/genericTaskset/if/gt_core.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* gt_core.h
|
||||
*
|
||||
* Created on: Aug 22, 2014
|
||||
* Author: matthiasb
|
||||
*/
|
||||
|
||||
#ifndef GT_CORE_H_
|
||||
#define GT_CORE_H_
|
||||
|
||||
#include "ucos_ii.h"
|
||||
#include "gt_types.h"
|
||||
#include "gt_cfg.h"
|
||||
|
||||
extern void GT_Calibrate();
|
||||
extern void GT_Init();
|
||||
extern void GT_TimeTick(void);
|
||||
extern void GT_TaskSw (void);
|
||||
extern void GT_Stop(void);
|
||||
extern void GT_ActivateTask(CPU_INT08U id);
|
||||
extern CPU_INT32U GT_GetActivationNumber(void);
|
||||
|
||||
extern volatile CPU_INT32U GT_TaskNumber;
|
||||
extern volatile GT_TASK_T *GT_TaskTable;
|
||||
extern volatile CPU_INT32U GT_PrioOffset;
|
||||
|
||||
#endif /* GT_CORE_H_ */
|
||||
111
src/Modules/genericTaskset/if/gt_cpu.h
Normal file
111
src/Modules/genericTaskset/if/gt_cpu.h
Normal file
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
* gt_cpu.h
|
||||
*
|
||||
* Created on: Aug 25, 2014
|
||||
* Author: matthiasb
|
||||
*/
|
||||
|
||||
#ifndef GT_CPU_H_
|
||||
#define GT_CPU_H_
|
||||
|
||||
#include "gt_cfg.h"
|
||||
|
||||
#define __ARCH_ARM_V_5_ASSEMBLY(x,y,z) \
|
||||
({ CPU_INT32U __mul = (x); \
|
||||
CPU_INT32U __scale = (y); \
|
||||
asm volatile( " mov r0,#0 \n\t" \
|
||||
" mul r1,%0,%1 \n\t" \
|
||||
"1: add r0,r0,#1 \n\t" \
|
||||
" cmp r1,r0 \n\t" \
|
||||
" bne 1b \n\t" \
|
||||
: : "r" (__mul) , "r" (__scale) : ); })
|
||||
|
||||
#define __ARCH_ARM_V_7_ASSEMBLY(x,y,z) \
|
||||
({ CPU_INT32U __mul = (x); \
|
||||
CPU_INT32U __offset = (y); \
|
||||
CPU_INT32U __scale = (z); \
|
||||
asm volatile( " cbz %0,2f \n\t" \
|
||||
" isb \n\t" \
|
||||
" mul r0,%0,%1 \n\t" \
|
||||
" subs r0,r0,%2 \n\t" \
|
||||
"1: itt ne \n\t" \
|
||||
" subsne r0,r0,#1 \n\t" \
|
||||
" bne 1b \n\t" \
|
||||
"2: \n\t" \
|
||||
: : "r" (__mul) , "r" (__scale) ,"r" (__offset) : ); })
|
||||
|
||||
/*
|
||||
* The task&runnable offsets heavily depend on the user implemented hook functions!
|
||||
*
|
||||
* The cycle scale is based on the used freq. and the arch. specific inline assembly
|
||||
* In order to generate a suitable result, provide the input in 0.1ms: 1ms => 10
|
||||
*
|
||||
* You can overwrite this defaults with your app specific gt_cfg.h
|
||||
*/
|
||||
#if GT_USE_CPU_ARM9 > 0
|
||||
#warning "Offsets for runables & tasks not supported in __ARCH_ARM_V_5_ASSEMBLY at the moment"
|
||||
#ifndef GT_CPU_CYCLE_SCALE
|
||||
#define GT_CPU_CYCLE_SCALE 5347 //arm9@200MHz
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_RUNABLE_OFFSET
|
||||
#error "TODO: GT_CPU_OS_RUNABLE_OFFSET for arm9@200MHz"
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_TASK_OFFSET
|
||||
#error "TODO: GT_CPU_OS_TASK_OFFSET for arm9@200MHz"
|
||||
#endif
|
||||
#define __burn_wcet(x,y) __ARCH_ARM_V_5_ASSEMBLY(x,y)
|
||||
#endif
|
||||
|
||||
#if GT_USE_CPU_CM3 > 0
|
||||
#ifndef GT_CPU_CYCLE_SCALE
|
||||
#define GT_CPU_CYCLE_SCALE 2800 //cm3@120MHz
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_RUNABLE_OFFSET
|
||||
#define GT_CPU_OS_RUNABLE_OFFSET 950 //cm3@120MHz
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_TASK_OFFSET
|
||||
#define GT_CPU_OS_TASK_OFFSET 850 //cm3@120MHz
|
||||
#endif
|
||||
#define __burn_wcet(x,y,z) __ARCH_ARM_V_7_ASSEMBLY(x,y,z)
|
||||
#endif
|
||||
|
||||
#if GT_USE_CPU_CM7 > 0
|
||||
#ifndef GT_CPU_CYCLE_SCALE
|
||||
#define GT_CPU_CYCLE_SCALE 7200
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_RUNABLE_OFFSET
|
||||
#define GT_CPU_OS_RUNABLE_OFFSET 1240
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_TASK_OFFSET
|
||||
#define GT_CPU_OS_TASK_OFFSET 200//1110
|
||||
#endif
|
||||
#define __burn_wcet(x,y,z) __ARCH_ARM_V_7_ASSEMBLY(x,y,z)
|
||||
#endif
|
||||
|
||||
#if GT_USE_CPU_ARM_V7_A > 0
|
||||
#ifndef GT_CPU_CYCLE_SCALE
|
||||
#define GT_CPU_CYCLE_SCALE 25000 //armv7a@666MHz
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_RUNABLE_OFFSET
|
||||
#define GT_CPU_OS_RUNABLE_OFFSET 1240
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_TASK_OFFSET
|
||||
#define GT_CPU_OS_TASK_OFFSET 3000 //extrapoliert von CM3 auf cortex_a9@666,666MHz
|
||||
#endif
|
||||
#define __burn_wcet(x,y,z) __ARCH_ARM_V_7_ASSEMBLY(x,y,z)
|
||||
#endif
|
||||
|
||||
#if GT_USE_CPU_PSUR5 > 0
|
||||
#ifndef GT_CPU_CYCLE_SCALE
|
||||
#define GT_CPU_CYCLE_SCALE 10000 /* Cortex R5 @ 100MHz */
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_RUNABLE_OFFSET
|
||||
#define GT_CPU_OS_RUNABLE_OFFSET 0 /* Not used yet */
|
||||
#endif
|
||||
#ifndef GT_CPU_OS_TASK_OFFSET
|
||||
#define GT_CPU_OS_TASK_OFFSET 0 /* Not used yet */
|
||||
#endif
|
||||
#define __burn_wcet(x,y,z) __ARCH_ARM_V_7_ASSEMBLY(x,y,z)
|
||||
#endif
|
||||
|
||||
#endif /* GT_CPU_H_ */
|
||||
13
src/Modules/genericTaskset/if/gt_hw_port.h
Normal file
13
src/Modules/genericTaskset/if/gt_hw_port.h
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* gt_hw_port.h
|
||||
*
|
||||
* Created on: 05.06.2018
|
||||
* Author: kaige
|
||||
*/
|
||||
|
||||
#ifndef SRC_MODULES_GENERICTASKSET_IF_GT_HW_PORT_H_
|
||||
#define SRC_MODULES_GENERICTASKSET_IF_GT_HW_PORT_H_
|
||||
|
||||
void GT_HW_InitTimer();
|
||||
|
||||
#endif /* SRC_MODULES_GENERICTASKSET_IF_GT_HW_PORT_H_ */
|
||||
94
src/Modules/genericTaskset/if/gt_types.h
Normal file
94
src/Modules/genericTaskset/if/gt_types.h
Normal file
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
* gt_types.h
|
||||
*
|
||||
* Created on: Aug 19, 2014
|
||||
* Author: matthiasb
|
||||
*/
|
||||
|
||||
#ifndef GT_TYPES_H_
|
||||
#define GT_TYPES_H_
|
||||
|
||||
#include "cpu.h"
|
||||
#include "ucos_ii.h"
|
||||
#include "gt_cfg.h"
|
||||
|
||||
#define GT_INTERNAL_NULL {0,0,0,0,0,0,0,0,"\0\0\0\0"}
|
||||
#define GT_RUNABLE_NULL {0,0,(void *)0}
|
||||
|
||||
typedef struct _GT_TASK_T GT_TASK_T;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
OS_TCB *pTCB;
|
||||
CPU_INT32U CurrAct;
|
||||
CPU_INT32U NextAct;
|
||||
OS_EVENT *pActQ;
|
||||
CPU_INT08U Ready;
|
||||
CPU_INT32U ActCounter;
|
||||
CPU_INT32U SeqNr;
|
||||
CPU_INT32U NextAbsD;
|
||||
CPU_INT08U Name[4];
|
||||
}GT_RT_VAL_T;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
GT_TASK_DEF = 0, /* Default Task (burns CET) */
|
||||
GT_TASK_RUN = 1, /* Task consisting fo runnables (that burn CET) */
|
||||
GT_TASK_EXT = 2, /* External task described by init and loop function */
|
||||
}GT_TYPE_T;
|
||||
|
||||
typedef enum {
|
||||
GT_ACT_OFF = 0, /* Task is not activated */
|
||||
GT_ACT_INT = 1, /* Task is activated by generic taskset */
|
||||
GT_ACT_EXT = 2, /* Task has an external activation */
|
||||
GT_ACT_ONE = 3, /* Task is activated once (task create) */
|
||||
}GT_ACTIVATION_TYPE;
|
||||
|
||||
struct _GT_TASK_T
|
||||
{
|
||||
GT_TYPE_T Type;
|
||||
GT_ACTIVATION_TYPE ActivationType;
|
||||
CPU_INT08U Id;
|
||||
CPU_INT08U Prio;
|
||||
int (*TaskInitFunction)(void*);
|
||||
int (*TaskFunction)(void*);
|
||||
void* TaskArg;
|
||||
struct
|
||||
{
|
||||
CPU_INT32U Count;
|
||||
CPU_INT32U Max;
|
||||
void *Extension;
|
||||
}Runable;
|
||||
GT_RT_VAL_T Internal;
|
||||
void * Extension;
|
||||
};
|
||||
|
||||
/*
|
||||
* Internal task extension struct
|
||||
*/
|
||||
|
||||
/*
|
||||
* Internal task extension struct
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
CPU_INT32U BCET;
|
||||
CPU_INT32U WCET;
|
||||
}GT_WL_CET_T;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
CPU_INT32U Period;
|
||||
CPU_INT32U Jitter;
|
||||
CPU_INT32U Distance;
|
||||
GT_WL_CET_T CET;
|
||||
}GT_TASK_EXT_T;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GT_TASK_T *pTaskTable;
|
||||
CPU_INT08U TaskCount;
|
||||
void *Extension;
|
||||
}GT_INIT_T;
|
||||
|
||||
#endif /* GT_TYPES_H_ */
|
||||
358
src/Modules/genericTaskset/src/gt_core.c
Normal file
358
src/Modules/genericTaskset/src/gt_core.c
Normal file
@@ -0,0 +1,358 @@
|
||||
/*
|
||||
* gt_core.c
|
||||
*
|
||||
* Created on: Aug 19, 2014
|
||||
* Author: matthiasb
|
||||
*/
|
||||
#include "gt_cfg.h" /* Module config */
|
||||
//#include "gt_hooks.h" /* Module hooks */
|
||||
#include "gt_types.h" /* Typedef */
|
||||
#include "gt_cpu.h" /* CPU assembly */
|
||||
#include "gt_hw_port.h"
|
||||
#include <string.h> /* memcpy */
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h> /* rand */
|
||||
|
||||
/*
|
||||
* Global varibales
|
||||
*/
|
||||
//volatile CPU_INT32U GT_TaskNumber = 0;
|
||||
volatile GT_TASK_T *GT_TaskTable = (GT_TASK_T *)0;
|
||||
|
||||
extern GT_TASK_T GT_Tasks[];
|
||||
/*
|
||||
* Internal variables
|
||||
*/
|
||||
static OS_STK TASK_STACKS[GT_NUM_OF_TASKS][GT_STACKSIZE];
|
||||
static void * ActivationQ[GT_NUM_OF_TASKS][GT_MAXQACT];
|
||||
|
||||
/*
|
||||
* Function prototypes for static inline functions
|
||||
* We always inline functions to reduce the RAM usage, therefore we can minimize the stack sizes
|
||||
*/
|
||||
static void _GT_TaskLoop (GT_TASK_T *pMyOwnTask) __attribute__ ((always_inline));
|
||||
static void _GT_RunableLoop (GT_TASK_T *pMyOwnTask) __attribute__ ((always_inline));
|
||||
|
||||
/**
|
||||
* Weak functions for hooks that are not implemented
|
||||
*/
|
||||
__attribute__((weak)) void GT_TaskStartHook(GT_TASK_T *pMyOwnTask) {(void)pMyOwnTask;return;}
|
||||
__attribute__((weak)) void GT_TaskEndHook(GT_TASK_T *pMyOwnTask){return;}
|
||||
__attribute__((weak)) void GT_RunableStartHook(GT_TASK_T *pMyOwnTask){(void)pMyOwnTask;return;}
|
||||
__attribute__((weak)) void GT_RunableEndHook(GT_TASK_T *pMyOwnTask){return;}
|
||||
__attribute__((weak)) void GT_TaskSwHook (GT_TASK_T *pMyOwnTask){return;}
|
||||
__attribute__((weak)) void GT_InitHook(GT_INIT_T * pInit){return;}
|
||||
__attribute__((weak)) void GT_StopHook(void){return;}
|
||||
__attribute__((weak)) volatile void GT_CalibrateStartHook(void){return;}
|
||||
__attribute__((weak)) volatile void GT_CalibrateEndHook(void){return;}
|
||||
|
||||
inline static void _GT_WaitForActivation(GT_TASK_T *pMyOwnTask){
|
||||
INT8U err = OS_ERR_NONE;
|
||||
if(pMyOwnTask->ActivationType != GT_ACT_ONE)
|
||||
pMyOwnTask->Internal.CurrAct = (CPU_INT32U)OSQPend(pMyOwnTask->Internal.pActQ,0,&err);
|
||||
}
|
||||
|
||||
/*
|
||||
* Function to determine task execution time
|
||||
*/
|
||||
static CPU_INT32U _GT_GetTaskCet(GT_TASK_T * pThisTask)
|
||||
{
|
||||
/*
|
||||
* Simple randomized jitter between BCET and WCET
|
||||
*/
|
||||
GT_TASK_EXT_T * pTaskExt = (GT_TASK_EXT_T*)pThisTask->Extension;
|
||||
CPU_INT32U BCET = pTaskExt->CET.BCET;
|
||||
CPU_INT32U WCET = pTaskExt->CET.WCET;
|
||||
return (BCET < WCET) ? (WCET - (rand() % (WCET - BCET + 1))) : WCET;
|
||||
}
|
||||
|
||||
/*
|
||||
* Hook function for default task main loop
|
||||
*/
|
||||
inline static void _GT_TaskLoop(GT_TASK_T *pMyOwnTask)
|
||||
{
|
||||
OS_CPU_SR cpu_sr = 0;
|
||||
|
||||
OS_ENTER_CRITICAL();
|
||||
pMyOwnTask->Internal.Ready = 1;
|
||||
OS_EXIT_CRITICAL();
|
||||
|
||||
for(;;)
|
||||
{
|
||||
_GT_WaitForActivation(pMyOwnTask);
|
||||
/*
|
||||
* Call task start hook
|
||||
*/
|
||||
GT_TaskStartHook(pMyOwnTask);
|
||||
/*
|
||||
* Determine CET
|
||||
*/
|
||||
CPU_INT32U CET = _GT_GetTaskCet(pMyOwnTask);
|
||||
/*
|
||||
* Burn CET
|
||||
*/
|
||||
__burn_wcet(CET,GT_CPU_OS_TASK_OFFSET,GT_CPU_CYCLE_SCALE);
|
||||
/*
|
||||
* Call task end hook
|
||||
*/
|
||||
GT_TaskEndHook(pMyOwnTask);
|
||||
/*
|
||||
* Increment sequence number
|
||||
*/
|
||||
pMyOwnTask->Internal.SeqNr++;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Hook function for runable task main loop
|
||||
*/
|
||||
inline static void _GT_RunableLoop(GT_TASK_T *pMyOwnTask)
|
||||
{
|
||||
OS_CPU_SR cpu_sr = 0;
|
||||
|
||||
OS_ENTER_CRITICAL();
|
||||
pMyOwnTask->Internal.Ready = 1;
|
||||
OS_EXIT_CRITICAL();
|
||||
|
||||
for(;;)
|
||||
{
|
||||
_GT_WaitForActivation(pMyOwnTask);
|
||||
|
||||
for(pMyOwnTask->Runable.Count=0;
|
||||
pMyOwnTask->Runable.Count < pMyOwnTask->Runable.Max;
|
||||
pMyOwnTask->Runable.Count++)
|
||||
{
|
||||
/*
|
||||
* Call runable start hook
|
||||
*/
|
||||
GT_RunableStartHook(pMyOwnTask);
|
||||
/*
|
||||
* Determine CET
|
||||
*/
|
||||
CPU_INT32U CET = _GT_GetTaskCet(pMyOwnTask);
|
||||
/*
|
||||
* Burn WCET
|
||||
*/
|
||||
__burn_wcet(CET,GT_CPU_OS_RUNABLE_OFFSET,GT_CPU_CYCLE_SCALE);
|
||||
/*
|
||||
* Call runable end hook
|
||||
*/
|
||||
GT_RunableEndHook(pMyOwnTask);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Hook function for external task main loop
|
||||
*/
|
||||
inline static void _GT_ExtTaskLoop(GT_TASK_T *pMyOwnTask)
|
||||
{
|
||||
OS_CPU_SR cpu_sr = 0;
|
||||
|
||||
OS_ENTER_CRITICAL();
|
||||
pMyOwnTask->Internal.Ready = 1;
|
||||
OS_EXIT_CRITICAL();
|
||||
|
||||
for(;;)
|
||||
{
|
||||
_GT_WaitForActivation(pMyOwnTask);
|
||||
/*
|
||||
* Call task start hook
|
||||
*/
|
||||
GT_TaskStartHook(pMyOwnTask);
|
||||
/*
|
||||
* Execute Real Task
|
||||
*/
|
||||
if(pMyOwnTask->TaskFunction(pMyOwnTask->TaskArg) < 0){
|
||||
OSTaskDel(OS_PRIO_SELF);
|
||||
}
|
||||
/*
|
||||
* Call task end hook
|
||||
*/
|
||||
GT_TaskEndHook(pMyOwnTask);
|
||||
/*
|
||||
* Increment sequence number
|
||||
*/
|
||||
pMyOwnTask->Internal.SeqNr++;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Reentrant task body
|
||||
*/
|
||||
static void _GT_Task(void *pArg)
|
||||
{
|
||||
GT_TASK_T *pMyOwnTask = (GT_TASK_T *)pArg;
|
||||
|
||||
if(pMyOwnTask->Type == GT_TASK_EXT && pMyOwnTask->TaskInitFunction != NULL){
|
||||
CPU_INT32U result = pMyOwnTask->TaskInitFunction(pMyOwnTask->TaskArg);
|
||||
if(result < 0){
|
||||
printf("GT: Init function returned -1\n");
|
||||
OSTaskSuspend(OS_PRIO_SELF);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Determine task type and call
|
||||
* corresponding loop hook
|
||||
*/
|
||||
switch(pMyOwnTask->Type)
|
||||
{
|
||||
case GT_TASK_DEF:
|
||||
_GT_TaskLoop(pMyOwnTask);
|
||||
break;
|
||||
case GT_TASK_RUN:
|
||||
_GT_RunableLoop(pMyOwnTask);
|
||||
break;
|
||||
case GT_TASK_EXT:
|
||||
_GT_ExtTaskLoop(pMyOwnTask);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* add this function to "void App_TaskSwHook (void){}"
|
||||
*/
|
||||
void GT_TaskSw (void)
|
||||
{
|
||||
uint16_t id = OSTCBHighRdy->OSTCBId;
|
||||
if(id <= GT_NUM_OF_TASKS){
|
||||
GT_TaskSwHook(>_Tasks[id]);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to calibrate GT_CPU_CYCLE_SCALE and GT_CPU_OS_TASK_OFFSET for gt_cpu.h
|
||||
* Set Tracepoint on the "nop" command to trace runtime.
|
||||
* Start by setting GT_CPU_OS_TASK_OFFSET=0 and try to calibrate long delays by modyfing GT_CPU_CYCLE_SCALE
|
||||
* Then start to increase GT_CPU_OS_TASK_OFFSET to fix offset for short delays
|
||||
* Use this before any other background jobs (like OS Tasks) are started
|
||||
* (at the beginning of your main when for example caching is configured)
|
||||
*/
|
||||
void GT_Calibrate()
|
||||
{
|
||||
int i = 0;
|
||||
int delay = 1;
|
||||
for(i = 0; i < 10; i++){
|
||||
GT_CalibrateStartHook();
|
||||
__burn_wcet(delay,GT_CPU_OS_TASK_OFFSET,GT_CPU_CYCLE_SCALE);
|
||||
GT_CalibrateEndHook();
|
||||
delay = delay * 2;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Init function for GT module
|
||||
*/
|
||||
void GT_Init()
|
||||
{
|
||||
CPU_INT08U i = 0;
|
||||
CPU_INT08U err = OS_ERR_NONE;
|
||||
|
||||
/*
|
||||
* Init task stacks
|
||||
*/
|
||||
memset(TASK_STACKS,0,sizeof(CPU_STK)*GT_NUM_OF_TASKS*GT_STACKSIZE);
|
||||
|
||||
/*
|
||||
* Init internal variables
|
||||
*/
|
||||
GT_TASK_T *pTasks = GT_Tasks;
|
||||
/*
|
||||
* Create tasks
|
||||
*/
|
||||
for(i=0;i<GT_NUM_OF_TASKS;i++)
|
||||
{
|
||||
if(pTasks[i].ActivationType == GT_ACT_OFF)
|
||||
continue;
|
||||
|
||||
if(pTasks[i].ActivationType != GT_ACT_ONE){
|
||||
pTasks[i].Internal.pActQ = OSQCreate(&ActivationQ[i][0],GT_MAXQACT);
|
||||
if(pTasks[i].Internal.pActQ == (OS_EVENT*)0){
|
||||
printf("GT: Error while creating a message queue\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
//pTasks[i].GetNextAct = _GT_GetNextActivation;
|
||||
|
||||
INT16U opt = OS_TASK_OPT_STK_CHK | OS_TASK_OPT_STK_CLR;
|
||||
/* Enable stack checking and clear stack */
|
||||
#if OS_SCHED_EDF_EN > 0
|
||||
opt |= OS_TASK_OPT_SCHED_EDF; /* Add EDF scheduling paradigm if needed */
|
||||
#endif
|
||||
err = OSTaskCreateExt( _GT_Task, /* Application task */
|
||||
(void *)&pTasks[i], /* argument passed to the task */
|
||||
&TASK_STACKS[i][GT_STACKSIZE-1],/* Set Top-Of-Stack */
|
||||
pTasks[i].Prio, /* Set priority level */
|
||||
pTasks[i].Id, /* ID -> Index of the created task */
|
||||
&TASK_STACKS[i][0], /* Set Bottom-Of-Stack */
|
||||
GT_STACKSIZE, /* Stacksize */
|
||||
(void *)0, /* TCB extension */
|
||||
opt);
|
||||
if(err != OS_ERR_NONE){
|
||||
printf("GT: Error while creating a task\n");
|
||||
return;
|
||||
}
|
||||
sprintf((char *)pTasks[i].Internal.Name,"T%02d",pTasks[i].Id);
|
||||
|
||||
#if OS_TASK_NAME_EN > 0
|
||||
/* Give the Task a name */
|
||||
OSTaskNameSet ( pTasks[i].Prio,(CPU_INT08U *)pTasks[i].Internal.Name, &err);
|
||||
#endif
|
||||
|
||||
#if OS_EVENT_NAME_EN > 0
|
||||
/* Give the activation queue the tasks name */
|
||||
OSEventNameSet(pTasks[i].Internal.pActQ,(CPU_INT08U *)pTasks[i].Internal.Name, &err);
|
||||
#endif
|
||||
/*
|
||||
* Add cross reference to corresponding
|
||||
* task control block
|
||||
*/
|
||||
pTasks[i].Internal.pTCB = OSTCBPrioTbl[pTasks[i].Prio];
|
||||
}
|
||||
/*
|
||||
* Call init hook
|
||||
*/
|
||||
GT_InitHook(NULL);
|
||||
|
||||
/*
|
||||
* Wait 1ms to start the tasks and
|
||||
* release tasks
|
||||
*/
|
||||
OSTimeDly(OS_TICKS_PER_SEC/100);
|
||||
GT_TaskTable = pTasks;
|
||||
GT_HW_InitTimer();
|
||||
}
|
||||
/*
|
||||
* Stop taskset
|
||||
*/
|
||||
void GT_Stop(void)
|
||||
{
|
||||
CPU_INT08U i = 0;
|
||||
OS_CPU_SR cpu_sr = 0;
|
||||
if(GT_TaskTable)
|
||||
{
|
||||
OS_ENTER_CRITICAL();
|
||||
for(i=0;i<GT_NUM_OF_TASKS;i++)
|
||||
{
|
||||
OSTaskSuspend(GT_TaskTable[i].Prio);
|
||||
}
|
||||
GT_TaskTable = 0;
|
||||
OS_EXIT_CRITICAL();
|
||||
}
|
||||
GT_StopHook();
|
||||
}
|
||||
|
||||
void GT_ActivateTask(CPU_INT08U id){
|
||||
if(GT_TaskTable[id].ActivationType != GT_ACT_OFF){
|
||||
OSQPost(GT_TaskTable[id].Internal.pActQ,(void *)0);
|
||||
GT_TaskTable[id].Internal.ActCounter++;
|
||||
}
|
||||
}
|
||||
|
||||
CPU_INT32U GT_GetActivationNumber(void){
|
||||
return GT_TaskTable[OSTCBCur->OSTCBId].Internal.SeqNr;
|
||||
}
|
||||
23
src/Modules/tlsf/COPYING
Normal file
23
src/Modules/tlsf/COPYING
Normal file
@@ -0,0 +1,23 @@
|
||||
LICENSE INFORMATION
|
||||
|
||||
TLSF is released as LGPL and GPL. A copy of both licences can be found in this
|
||||
directoy. For the GPL licence, the following exception applies.
|
||||
|
||||
|
||||
TLSF is free software; you can redistribute it and/or modify it under terms of
|
||||
the GNU General Public License as published by the Free Software Foundation;
|
||||
either version 2, or (at your option) any later version. TLSF is distributed
|
||||
in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
||||
the GNU General Public License for more details. You should have received a
|
||||
copy of the GNU General Public License along with TLSF; see file COPYING. If
|
||||
not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
|
||||
USA.
|
||||
|
||||
As a special exception, including TLSF header files in a file, or linking with
|
||||
other files objects to produce an executable application, is merely considered
|
||||
normal use of the library, and does *not* fall under the heading of "derived
|
||||
work". Therfore does not by itself cause the resulting executable application
|
||||
to be covered by the GNU General Public License. This exception does not
|
||||
however invalidate any other reasons why the executable file might be covered
|
||||
by the GNU Public License.
|
||||
132
src/Modules/tlsf/Changelog
Normal file
132
src/Modules/tlsf/Changelog
Normal file
@@ -0,0 +1,132 @@
|
||||
Version History
|
||||
---------------
|
||||
|
||||
|
||||
-v2.4.6 (September 10 2009)
|
||||
* Fixed a bug in the realloc func (discovered by the rockbox
|
||||
project: www.rockbox.org).
|
||||
|
||||
|
||||
-v2.4.5 (November 24 2008)
|
||||
* Working on OSX/FreeBSD (may be for OpenBSD/NetBSD too).
|
||||
Reported by Younès HAFRI.
|
||||
printf (and stdio.h include) is now optional.
|
||||
Reported by Masaki Muranaka
|
||||
|
||||
-v2.4.4 (October 13 2008)
|
||||
* Corrected minor syntactic bug on statistic gathering code.
|
||||
Reported by Tim Cussins and P. Mantegazza.
|
||||
|
||||
-v2.4.3 (July 30 2008)
|
||||
* Minor fixes to compile with the greenhills compiler.
|
||||
Reported by "Kaya, Sinan SEA" <sinan.kaya@siemens.com>
|
||||
* Small change in the license in order to include TLSF in the RTEMS
|
||||
project.
|
||||
|
||||
-v2.4.2 (May 16 2008) (Herman ten Brugge)
|
||||
* Memory usage statistics added again, with cleaner and more compacted
|
||||
code.
|
||||
|
||||
-v2.4.1 (April 30 2008)
|
||||
* Fixed a bug in the tlsf_realloc function: init the pool automatically
|
||||
on the first call.
|
||||
Reported by: Alejandro Mery <amery@geeks.cl>
|
||||
|
||||
-v2.4 (Feb 19 2008)
|
||||
* "rtl_*" functions renamed to "tlsf_*".
|
||||
* Added the add_new_area function to insert new memory areas to an
|
||||
existing memory pool.
|
||||
* A single TLSF pool can manage non-contiguous memory areas.
|
||||
* Support for mmap and sbrk added.
|
||||
* The init_memory_pool is not longer needed when used on a system
|
||||
with mmap or sbrk.
|
||||
* Removed the get_used_size counting.The same functionality can be
|
||||
implemented outside the TLSF code.
|
||||
|
||||
-v2.3.2 (Sep 27 2007)
|
||||
* Minor cosmetic code improvements.
|
||||
|
||||
-v2.3.1 (Jul 30 2007)
|
||||
* Fixed some minor bugs in the version 2.3. Herman ten Brugge
|
||||
<hermantenbrugge@home.nl>
|
||||
|
||||
-v2.3 (Jul 28 2007) Released a new version with all the contributions
|
||||
received from Herman ten Brugge <hermantenbrugge@home.nl>
|
||||
(This is his summary of changes in the TLSF's code):
|
||||
* Add 64 bit support. It now runs on x86_64 and solaris64.
|
||||
* I also tested this on vxworks/32 and solaris/32 and i386/32
|
||||
processors.
|
||||
* Remove assembly code. I could not measure any performance difference
|
||||
on my core2 processor. This also makes the code more portable.
|
||||
* Moved defines/typedefs from tlsf.h to tlsf.c
|
||||
* Changed MIN_BLOCK_SIZE to sizeof (free_ptr_t) and BHDR_OVERHEAD to
|
||||
(sizeof (bhdr_t) - MIN_BLOCK_SIZE). This does not change the fact
|
||||
that the minumum size is still sizeof (bhdr_t).
|
||||
* Changed all C++ comment style to C style. (// -> /* ... *./)
|
||||
* Used ls_bit instead of ffs and ms_bit instead of fls. I did this to
|
||||
avoid confusion with the standard ffs function which returns
|
||||
different values.
|
||||
* Created set_bit/clear_bit fuctions because they are not present
|
||||
on x86_64.
|
||||
* Added locking support + extra file target.h to show how to use it.
|
||||
* Added get_used_size function
|
||||
* Added rtl_realloc and rtl_calloc function
|
||||
* Implemented realloc clever support.
|
||||
* Added some test code in the example directory.
|
||||
|
||||
-- Thank you very much for your help Herman!
|
||||
|
||||
-v2.2.1 (Oct 23 2006)
|
||||
* Support for ARMv5 implemented by Adam Scislowicz
|
||||
<proteuskor@gmail.com>. Thank you for your contribution.
|
||||
|
||||
- v2.2.0 (Jun 30 2006) Miguel Masmano & Ismael Ripoll.
|
||||
|
||||
* Blocks smaller than 128 bytes are stored on a single
|
||||
segregated list. The already existing bits maps and data
|
||||
structures are used.
|
||||
* Minor code speed-up improvements.
|
||||
* Worst case response time both on malloc and free improved.
|
||||
* External fragmantation also improved!.
|
||||
* Segragared lists are AGAIN sorted by LIFO order. Version
|
||||
2.1b was proven to be no better than 2.1.
|
||||
|
||||
- v2.1b: Allocation policy has been always a LIFO Good-Fit, that
|
||||
is, between several free blocks in the same range, TLSF will
|
||||
always allocate the most recently released. In this version of
|
||||
TLSF, we have implemented a FIFO Good-Fit. However,
|
||||
fragmentation doesn't seems to be altered so is it worth it?.
|
||||
|
||||
- v2.1: Realloc and calloc included again in TLSF 2.0.
|
||||
|
||||
- v2.0: In this version, TLSF has been programmed from scratch.
|
||||
Now the allocator is provided as an unique file. Realloc and
|
||||
calloc are not longer implemented.
|
||||
|
||||
|
||||
- v1.4: Created the section "Version History". Studied real
|
||||
behaviour of actual applications (regular applications tend
|
||||
to require small memory blocks (less than 16 bytes) whereas
|
||||
TLSF is optimised to be used with blocks larger than 16
|
||||
bytes: Added special lists to deal with blocks smaller than
|
||||
16 bytes.
|
||||
|
||||
|
||||
- v1.3: Change of concept, now the main TLSF structure is created
|
||||
inside of the beginning of the block instead of being an
|
||||
static structure, allowing multiple TLSFs working at the
|
||||
same time. Now, TLSF uses specific processor instructions to
|
||||
deal with bitmaps. TLSF sanity functions added to find TLSF
|
||||
overflows. The TLSF code will not be RTLinux-oriented any
|
||||
more.
|
||||
|
||||
- v1.1 ... v1.2: Many little bugs fixed, code cleaned and splitted
|
||||
in several files because of cosmetic requirements.
|
||||
Starting from TLSF v1.1, MaRTE OS
|
||||
(http://marte.unican.es) uses the TLSF allocator
|
||||
as its default memory allocator.
|
||||
|
||||
- v0.1 ... v1.0: First implementations were created for testing and
|
||||
research purposes. Basically TLSF is implemented to
|
||||
be used by RTLinux-GPL (www.rtlinux-gpl.org), so
|
||||
it is RTLinux-oriented.
|
||||
280
src/Modules/tlsf/GPL.txt
Normal file
280
src/Modules/tlsf/GPL.txt
Normal file
@@ -0,0 +1,280 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
510
src/Modules/tlsf/LGPL-2.1.txt
Normal file
510
src/Modules/tlsf/LGPL-2.1.txt
Normal file
@@ -0,0 +1,510 @@
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations
|
||||
below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it
|
||||
becomes a de-facto standard. To achieve this, non-free programs must
|
||||
be allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control
|
||||
compilation and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at least
|
||||
three years, to give the same user the materials specified in
|
||||
Subsection 6a, above, for a charge no more than the cost of
|
||||
performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply, and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License
|
||||
may add an explicit geographical distribution limitation excluding those
|
||||
countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms
|
||||
of the ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library.
|
||||
It is safest to attach them to the start of each source file to most
|
||||
effectively convey the exclusion of warranty; and each file should
|
||||
have at least the "copyright" line and a pointer to where the full
|
||||
notice is found.
|
||||
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or
|
||||
your school, if any, to sign a "copyright disclaimer" for the library,
|
||||
if necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James
|
||||
Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
||||
163
src/Modules/tlsf/README
Normal file
163
src/Modules/tlsf/README
Normal file
@@ -0,0 +1,163 @@
|
||||
|
||||
TLSF Memory Storage allocator implementation.
|
||||
Version 2.4.6 Sept 2009
|
||||
|
||||
Authors: Miguel Masmano, Ismael Ripoll & Alfons Crespo.
|
||||
Copyright UPVLC, OCERA Consortium.
|
||||
|
||||
TLSF is released in the GPL/LGPL licence. The exact terms of the licence
|
||||
are described in the COPYING file.
|
||||
|
||||
This component provides basic memory allocation functions:
|
||||
malloc and free, as defined in the standard "C" library.
|
||||
|
||||
This allocator was designed to provide real-time performance, that is:
|
||||
1.- Bounded time malloc and free.
|
||||
2.- Fast response time.
|
||||
3.- Efficient memory management, that is low fragmentation.
|
||||
|
||||
|
||||
The worst response time for both malloc and free is O(1).
|
||||
|
||||
|
||||
|
||||
How to use it:
|
||||
|
||||
This code is prepared to be used as a stand-alone code that can be
|
||||
linked with a regular application or it can be compiled to be a Linux
|
||||
module (which required the BigPhysicalArea patch). Initially the
|
||||
module was designed to work jointly with RTLinux-GPL, but it can be
|
||||
used as a stand alone Linux module.
|
||||
|
||||
When compiled as a regular linux process the API is:
|
||||
|
||||
Initialisation and destruction functions
|
||||
----------------------------------------
|
||||
|
||||
init_memory_pool may be called before any request or release call:
|
||||
|
||||
- size_t init_memory_pool(size_t, void *);
|
||||
- void destroy_memory_pool(void *);
|
||||
|
||||
Request and release functions
|
||||
-----------------------------
|
||||
|
||||
As can be seen, there are two functions for each traditional memory
|
||||
allocation function (malloc, free, realloc, and calloc). One with the
|
||||
prefix "tlsf_" and the other with the suffix "_ex".
|
||||
|
||||
The versions with the prefix "tlsf_" provides the expected behaviour,
|
||||
that is, allocating/releasing memory from the default memory pool. The
|
||||
default memory pool is the last pool initialised by the
|
||||
init_memory_pool function.
|
||||
|
||||
On the other hand, the functions with the prefix "_ex" enable the use of several memory pools.
|
||||
|
||||
- void *tlsf_malloc(size_t);
|
||||
- void *malloc_ex(size_t, void *);
|
||||
|
||||
- void tlsf_free(void *ptr);
|
||||
- void free_ex(void *, void *);
|
||||
|
||||
- void *tlsf_realloc(void *ptr, size_t size);
|
||||
- void *realloc_ex(void *, size_t, void *);
|
||||
|
||||
- void *tlsf_calloc(size_t nelem, size_t elem_size);
|
||||
- void *calloc_ex(size_t, size_t, void *);
|
||||
|
||||
EXAMPLE OF USE:
|
||||
|
||||
char memory_pool[1024*1024];
|
||||
|
||||
{
|
||||
...
|
||||
|
||||
init_memory_pool(1024*1024, memory_pool);
|
||||
|
||||
...
|
||||
|
||||
ptr1=malloc_ex(100, memory_pool);
|
||||
ptr2=tlsf_malloc(100); // This function will use memory_pool
|
||||
|
||||
...
|
||||
|
||||
tlsf_free(ptr2);
|
||||
free_ex(ptr1, memory_pool);
|
||||
}
|
||||
|
||||
Growing the memory pool
|
||||
-----------------------
|
||||
|
||||
Starting from the version 2.4, the function add_new_area adds an
|
||||
memory area to an existing memory pool.
|
||||
|
||||
- size_t add_new_area(void *, size_t, void *);
|
||||
|
||||
This feature is pretty useful when an existing memory pool is running
|
||||
low and we want to add more free memory to it.
|
||||
EXAMPLE OF USE:
|
||||
|
||||
char memory_pool[1024*1024];
|
||||
char memory_pool2[1024*1024];
|
||||
|
||||
{
|
||||
...
|
||||
|
||||
init_memory_pool(1024*1024, memory_pool);
|
||||
|
||||
...
|
||||
|
||||
ptr[0]=malloc_ex(1024*256 memory_pool);
|
||||
ptr[1]=malloc_ex(1024*512, memory_pool);
|
||||
add_new_area(memory_pool2, 1024*1024, memory_pool);
|
||||
// Now we have an extra free memory area of 1Mb
|
||||
// The next malloc may not fail
|
||||
ptr[2]=malloc_ex(1024*512, memory_pool);
|
||||
|
||||
...
|
||||
|
||||
}
|
||||
|
||||
|
||||
SBRK and MMAP support
|
||||
---------------------
|
||||
|
||||
The version 2.4 can use the functions SBRK and MMAP to _automatically_
|
||||
growing the memory pool, before running out of memory.
|
||||
|
||||
So, when this feature is enabled, unless the operating system were out
|
||||
of memory, a malloc operation would not fail due to an "out-of-memory"
|
||||
error.
|
||||
|
||||
To enable this support, compile tlsf.c with the FLAGS -DUSE_MMAP=1 or
|
||||
-DUSE_SBRK=1 depending on whether you want to use "mmap" or "sbrk" or both.
|
||||
|
||||
** By default (default Makefile) this feature is enabled.
|
||||
|
||||
EXAMPLE OF USE:
|
||||
|
||||
gcc -o tlsf.o -O2 -Wall -DUSE_MMAP=1 -DUSE_SBRK=1
|
||||
|
||||
---
|
||||
|
||||
If the sbrk/mmap support is enabled and we are _only_ going to use one
|
||||
memory pool, it is not necessary to call init_memory_pool
|
||||
|
||||
EXAMPLE OF USE (with MMAP/SBRK support enabled):
|
||||
|
||||
{
|
||||
...
|
||||
|
||||
ptr2=tlsf_malloc(100); // This function will use memory_pool
|
||||
|
||||
...
|
||||
|
||||
tlsf_free(ptr2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
This work has been supported by the followin projects:
|
||||
EUROPEAN: IST-2001-35102(OCERA) http://www.ocera.org.
|
||||
SPANISH: TIN2005-08665-C3-03
|
||||
9
src/Modules/tlsf/TODO
Normal file
9
src/Modules/tlsf/TODO
Normal file
@@ -0,0 +1,9 @@
|
||||
To do list
|
||||
==========
|
||||
|
||||
* Add mmap/sbrk support (DONE - V2.4).
|
||||
|
||||
* TLSF rounds-up request size to the head of a free list.
|
||||
It has been shown to be a good policy for small blocks (<2048).
|
||||
But for larger blocks this policy may cause excesive fragmentation.
|
||||
A deeper analisys should be done.
|
||||
13
src/Modules/tlsf/target.h
Normal file
13
src/Modules/tlsf/target.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _TARGET_H_
|
||||
#define _TARGET_H_
|
||||
|
||||
#include "ucos_ii.h"
|
||||
#include "tlsf.h"
|
||||
//uCOS-II port - make semaphore available to TLSF
|
||||
#define TLSF_MLOCK_T OS_EVENT*
|
||||
#define TLSF_CREATE_LOCK(l) *(l) = OSSemCreate(1)
|
||||
#define TLSF_DESTROY_LOCK(l) INT8U err; OSSemDel(*(l), OS_DEL_ALWAYS, &err)
|
||||
#define TLSF_ACQUIRE_LOCK(l) INT8U err; OSSemPend(*(l), 0, &err)
|
||||
#define TLSF_RELEASE_LOCK(l) OSSemPost(*(l))
|
||||
|
||||
#endif
|
||||
1017
src/Modules/tlsf/tlsf.c
Normal file
1017
src/Modules/tlsf/tlsf.c
Normal file
File diff suppressed because it is too large
Load Diff
39
src/Modules/tlsf/tlsf.h
Normal file
39
src/Modules/tlsf/tlsf.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Two Levels Segregate Fit memory allocator (TLSF)
|
||||
* Version 2.4.6
|
||||
*
|
||||
* Written by Miguel Masmano Tello <mimastel@doctor.upv.es>
|
||||
*
|
||||
* Thanks to Ismael Ripoll for his suggestions and reviews
|
||||
*
|
||||
* Copyright (C) 2008, 2007, 2006, 2005, 2004
|
||||
*
|
||||
* This code is released using a dual license strategy: GPL/LGPL
|
||||
* You can choose the licence that better fits your requirements.
|
||||
*
|
||||
* Released under the terms of the GNU General Public License Version 2.0
|
||||
* Released under the terms of the GNU Lesser General Public License Version 2.1
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _TLSF_H_
|
||||
#define _TLSF_H_
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
extern size_t init_memory_pool(size_t, void *);
|
||||
extern size_t get_used_size(void *);
|
||||
extern size_t get_max_size(void *);
|
||||
extern void destroy_memory_pool(void *);
|
||||
extern size_t add_new_area(void *, size_t, void *);
|
||||
extern void *malloc_ex(size_t, void *);
|
||||
extern void free_ex(void *, void *);
|
||||
extern void *realloc_ex(void *, size_t, void *);
|
||||
extern void *calloc_ex(size_t, size_t, void *);
|
||||
|
||||
extern void *tlsf_malloc(size_t size);
|
||||
extern void tlsf_free(void *ptr);
|
||||
extern void *tlsf_realloc(void *ptr, size_t size);
|
||||
extern void *tlsf_calloc(size_t nelem, size_t elem_size);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user