forked from Imagelibrary/rtems
@@ -230,7 +230,6 @@ librtems_a_SOURCES += src/partdelete.c
|
|||||||
librtems_a_SOURCES += src/partgetbuffer.c
|
librtems_a_SOURCES += src/partgetbuffer.c
|
||||||
librtems_a_SOURCES += src/partident.c
|
librtems_a_SOURCES += src/partident.c
|
||||||
librtems_a_SOURCES += src/partreturnbuffer.c
|
librtems_a_SOURCES += src/partreturnbuffer.c
|
||||||
librtems_a_SOURCES += src/partdata.c
|
|
||||||
|
|
||||||
## DPMEM_C_FILES
|
## DPMEM_C_FILES
|
||||||
librtems_a_SOURCES += src/dpmem.c
|
librtems_a_SOURCES += src/dpmem.c
|
||||||
|
|||||||
@@ -33,30 +33,11 @@ extern "C" {
|
|||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* This constant is defined to extern most of the time when using
|
|
||||||
* this header file. However by defining it to nothing, the data
|
|
||||||
* declared in this header file can be instantiated. This is done
|
|
||||||
* in a single per manager file.
|
|
||||||
*
|
|
||||||
* Partition Manager -- Instantiate Data
|
|
||||||
*/
|
|
||||||
#ifndef RTEMS_PART_EXTERN
|
|
||||||
#define RTEMS_PART_EXTERN extern
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The following defines the information control block used to
|
* The following defines the information control block used to
|
||||||
* manage this class of objects.
|
* manage this class of objects.
|
||||||
*/
|
*/
|
||||||
RTEMS_PART_EXTERN Objects_Information _Partition_Information;
|
extern Objects_Information _Partition_Information;
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Partition Manager Initialization
|
|
||||||
*
|
|
||||||
* This routine performs the initialization necessary for this manager.
|
|
||||||
*/
|
|
||||||
void _Partition_Manager_initialization(void);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Allocate a buffer from the_partition.
|
* @brief Allocate a buffer from the_partition.
|
||||||
|
|||||||
@@ -20,13 +20,14 @@
|
|||||||
|
|
||||||
#include <rtems/system.h>
|
#include <rtems/system.h>
|
||||||
#include <rtems/config.h>
|
#include <rtems/config.h>
|
||||||
|
#include <rtems/sysinit.h>
|
||||||
#include <rtems/rtems/status.h>
|
#include <rtems/rtems/status.h>
|
||||||
#include <rtems/rtems/support.h>
|
#include <rtems/rtems/support.h>
|
||||||
#include <rtems/score/address.h>
|
|
||||||
#include <rtems/rtems/partimpl.h>
|
#include <rtems/rtems/partimpl.h>
|
||||||
#include <rtems/score/thread.h>
|
|
||||||
|
|
||||||
void _Partition_Manager_initialization(void)
|
Objects_Information _Partition_Information;
|
||||||
|
|
||||||
|
static void _Partition_Manager_initialization(void)
|
||||||
{
|
{
|
||||||
_Objects_Initialize_information(
|
_Objects_Initialize_information(
|
||||||
&_Partition_Information, /* object information table */
|
&_Partition_Information, /* object information table */
|
||||||
@@ -56,3 +57,9 @@ void _Partition_Manager_initialization(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RTEMS_SYSINIT_ITEM(
|
||||||
|
_Partition_Manager_initialization,
|
||||||
|
RTEMS_SYSINIT_CLASSIC_PARTITION,
|
||||||
|
RTEMS_SYSINIT_ORDER_MIDDLE
|
||||||
|
);
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
/**
|
|
||||||
* @file
|
|
||||||
*
|
|
||||||
* @brief Instantiate RTEMS Partition Data
|
|
||||||
* @ingroup ClassicPart Partitions
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* COPYRIGHT (c) 1989-2007.
|
|
||||||
* On-Line Applications Research Corporation (OAR).
|
|
||||||
*
|
|
||||||
* The license and distribution terms for this file may be
|
|
||||||
* found in the file LICENSE in this distribution or at
|
|
||||||
* http://www.rtems.org/license/LICENSE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* instantiate RTEMS partition data */
|
|
||||||
#define RTEMS_PART_EXTERN
|
|
||||||
|
|
||||||
#include <rtems/rtems/partimpl.h>
|
|
||||||
@@ -29,13 +29,11 @@
|
|||||||
#include <rtems/rtems/barrierimpl.h>
|
#include <rtems/rtems/barrierimpl.h>
|
||||||
#include <rtems/rtems/clock.h>
|
#include <rtems/rtems/clock.h>
|
||||||
#include <rtems/rtems/dpmemimpl.h>
|
#include <rtems/rtems/dpmemimpl.h>
|
||||||
#include <rtems/rtems/partimpl.h>
|
|
||||||
#include <rtems/rtems/ratemonimpl.h>
|
#include <rtems/rtems/ratemonimpl.h>
|
||||||
#include <rtems/rtems/regionimpl.h>
|
#include <rtems/rtems/regionimpl.h>
|
||||||
|
|
||||||
void _RTEMS_API_Initialize(void)
|
void _RTEMS_API_Initialize(void)
|
||||||
{
|
{
|
||||||
_Partition_Manager_initialization();
|
|
||||||
_Region_Manager_initialization();
|
_Region_Manager_initialization();
|
||||||
_Dual_ported_memory_Manager_initialization();
|
_Dual_ported_memory_Manager_initialization();
|
||||||
_Rate_monotonic_Manager_initialization();
|
_Rate_monotonic_Manager_initialization();
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ extern "C" {
|
|||||||
#define RTEMS_SYSINIT_CLASSIC_EVENT 000343
|
#define RTEMS_SYSINIT_CLASSIC_EVENT 000343
|
||||||
#define RTEMS_SYSINIT_CLASSIC_MESSAGE_QUEUE 000344
|
#define RTEMS_SYSINIT_CLASSIC_MESSAGE_QUEUE 000344
|
||||||
#define RTEMS_SYSINIT_CLASSIC_SEMAPHORE 000345
|
#define RTEMS_SYSINIT_CLASSIC_SEMAPHORE 000345
|
||||||
|
#define RTEMS_SYSINIT_CLASSIC_PARTITION 000346
|
||||||
#define RTEMS_SYSINIT_IDLE_THREADS 000380
|
#define RTEMS_SYSINIT_IDLE_THREADS 000380
|
||||||
#define RTEMS_SYSINIT_BSP_LIBC 000400
|
#define RTEMS_SYSINIT_BSP_LIBC 000400
|
||||||
#define RTEMS_SYSINIT_BEFORE_DRIVERS 000500
|
#define RTEMS_SYSINIT_BEFORE_DRIVERS 000500
|
||||||
|
|||||||
@@ -23,4 +23,5 @@
|
|||||||
void force_error()
|
void force_error()
|
||||||
{
|
{
|
||||||
/* we should not run this far */
|
/* we should not run this far */
|
||||||
|
rtems_partition_create(0, NULL, 0, 0, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
#include <rtems/extensionimpl.h>
|
#include <rtems/extensionimpl.h>
|
||||||
#include <rtems/rtems/messageimpl.h>
|
#include <rtems/rtems/messageimpl.h>
|
||||||
|
#include <rtems/rtems/partimpl.h>
|
||||||
#include <rtems/rtems/semimpl.h>
|
#include <rtems/rtems/semimpl.h>
|
||||||
#include <rtems/rtems/tasksimpl.h>
|
#include <rtems/rtems/tasksimpl.h>
|
||||||
#include <rtems/rtems/timerimpl.h>
|
#include <rtems/rtems/timerimpl.h>
|
||||||
@@ -59,6 +60,8 @@ typedef enum {
|
|||||||
CLASSIC_MESSAGE_QUEUE_POST,
|
CLASSIC_MESSAGE_QUEUE_POST,
|
||||||
CLASSIC_SEMAPHORE_PRE,
|
CLASSIC_SEMAPHORE_PRE,
|
||||||
CLASSIC_SEMAPHORE_POST,
|
CLASSIC_SEMAPHORE_POST,
|
||||||
|
CLASSIC_PARTITION_PRE,
|
||||||
|
CLASSIC_PARTITION_POST,
|
||||||
IDLE_THREADS_PRE,
|
IDLE_THREADS_PRE,
|
||||||
IDLE_THREADS_POST,
|
IDLE_THREADS_POST,
|
||||||
BSP_LIBC_PRE,
|
BSP_LIBC_PRE,
|
||||||
@@ -234,6 +237,18 @@ LAST(RTEMS_SYSINIT_CLASSIC_SEMAPHORE)
|
|||||||
next_step(CLASSIC_SEMAPHORE_POST);
|
next_step(CLASSIC_SEMAPHORE_POST);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FIRST(RTEMS_SYSINIT_CLASSIC_PARTITION)
|
||||||
|
{
|
||||||
|
assert(_Partition_Information.maximum == 0);
|
||||||
|
next_step(CLASSIC_PARTITION_PRE);
|
||||||
|
}
|
||||||
|
|
||||||
|
LAST(RTEMS_SYSINIT_CLASSIC_PARTITION)
|
||||||
|
{
|
||||||
|
assert(_Partition_Information.maximum != 0);
|
||||||
|
next_step(CLASSIC_PARTITION_POST);
|
||||||
|
}
|
||||||
|
|
||||||
FIRST(RTEMS_SYSINIT_IDLE_THREADS)
|
FIRST(RTEMS_SYSINIT_IDLE_THREADS)
|
||||||
{
|
{
|
||||||
assert(_System_state_Is_before_initialization(_System_state_Get()));
|
assert(_System_state_Is_before_initialization(_System_state_Get()));
|
||||||
@@ -321,6 +336,8 @@ static void Init(rtems_task_argument arg)
|
|||||||
|
|
||||||
#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
|
#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
|
||||||
|
|
||||||
|
#define CONFIGURE_MAXIMUM_PARTITIONS 1
|
||||||
|
|
||||||
#define CONFIGURE_MAXIMUM_SEMAPHORES 1
|
#define CONFIGURE_MAXIMUM_SEMAPHORES 1
|
||||||
|
|
||||||
#define CONFIGURE_MAXIMUM_TASKS 1
|
#define CONFIGURE_MAXIMUM_TASKS 1
|
||||||
|
|||||||
Reference in New Issue
Block a user