source: rtems/cpukit/rtems/src/regioncreate.c

Last change on this file was c4fb617, checked in by Joel Sherrill <joel@…>, on 02/16/22 at 22:28:43

cpukit/rtems/src/[a-r]*.c: Change license to BSD-2

Updates #3053.

  • Property mode set to 100644
File size: 3.5 KB
RevLine 
[c4fb617]1/* SPDX-License-Identifier: BSD-2-Clause */
2
[4efe1955]3/**
4 * @file
[5aa64518]5 *
[6b5f22dc]6 * @ingroup RTEMSImplClassicRegion
[cfe8f7a]7 *
[6b5f22dc]8 * @brief This source file contains the implementation of
9 *   rtems_region_create() and the Region Manager system initialization.
[4efe1955]10 */
11
12/*
[08311cc3]13 *  COPYRIGHT (c) 1989-1999.
[5aa64518]14 *  On-Line Applications Research Corporation (OAR).
15 *
[c4fb617]16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 *    notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 *    notice, this list of conditions and the following disclaimer in the
23 *    documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
[5aa64518]36 */
37
[80cf60e]38#ifdef HAVE_CONFIG_H
[1095ec1]39#include "config.h"
40#endif
41
[fe6c170c]42#include <rtems/rtems/regionimpl.h>
[63d229d6]43#include <rtems/rtems/attrimpl.h>
[5aa64518]44#include <rtems/rtems/support.h>
[90015e7f]45#include <rtems/score/apimutex.h>
[a112364]46#include <rtems/score/threadqimpl.h>
[21275b58]47#include <rtems/sysinit.h>
[5aa64518]48
49rtems_status_code rtems_region_create(
50  rtems_name          name,
51  void               *starting_address,
[dea3eccb]52  uintptr_t           length,
53  uintptr_t           page_size,
[e980b219]54  rtems_attribute     attribute_set,
[d3b72ca3]55  rtems_id           *id
[5aa64518]56)
57{
[5700b804]58  rtems_status_code  return_status;
59  Region_Control    *the_region;
[5aa64518]60
[71689a07]61  if ( !rtems_is_name_valid( name ) ) {
[5aa64518]62    return RTEMS_INVALID_NAME;
[71689a07]63  }
[5aa64518]64
[71689a07]65  if ( id == NULL ) {
[e980b219]66    return RTEMS_INVALID_ADDRESS;
[71689a07]67  }
[e980b219]68
[71689a07]69  if ( starting_address == NULL ) {
[e980b219]70    return RTEMS_INVALID_ADDRESS;
[71689a07]71  }
[e980b219]72
[23fec9f0]73  the_region = _Region_Allocate();
[5700b804]74
75    if ( !the_region )
76      return_status = RTEMS_TOO_MANY;
77
78    else {
[e366f77]79      _Thread_queue_Object_initialize( &the_region->Wait_queue );
[1e1a91ed]80
81      if ( _Attributes_Is_priority( attribute_set ) ) {
82        the_region->wait_operations = &_Thread_queue_Operations_priority;
83      } else {
84        the_region->wait_operations = &_Thread_queue_Operations_FIFO;
85      }
[5700b804]86
87      the_region->maximum_segment_size = _Heap_Initialize(
88        &the_region->Memory, starting_address, length, page_size
89      );
90
91      if ( !the_region->maximum_segment_size ) {
92        _Region_Free( the_region );
93        return_status = RTEMS_INVALID_SIZE;
[02c4c441]94      } else {
[acf7cf3b]95        the_region->attribute_set = attribute_set;
[5700b804]96
[0b263b0e]97        *id = _Objects_Open_u32(
[5700b804]98          &_Region_Information,
99          &the_region->Object,
[0b263b0e]100          name
[5700b804]101        );
102
103        return_status = RTEMS_SUCCESSFUL;
104      }
105    }
106
[23fec9f0]107  _Objects_Allocator_unlock();
108
[5700b804]109  return return_status;
[5aa64518]110}
[21275b58]111
112static void _Region_Manager_initialization( void )
113{
114  _Objects_Initialize_information( &_Region_Information );
115}
116
117RTEMS_SYSINIT_ITEM(
118  _Region_Manager_initialization,
119  RTEMS_SYSINIT_CLASSIC_REGION,
120  RTEMS_SYSINIT_ORDER_MIDDLE
121);
Note: See TracBrowser for help on using the repository browser.