source: rtems/cpukit/rtems/src/partcreate.c @ b8eae140

5
Last change on this file since b8eae140 was 83ca9f0a, checked in by Sebastian Huber <sebastian.huber@…>, on 08/02/18 at 12:52:12

rtems: Relax partition buffer area alignment

The partition buffer area alignment required by rtems_partition_create()
was too strict since it was checked via _Addresses_Is_aligned() which
uses CPU_ALIGNMENT. The CPU_ALIGNMENT must take long double and vector
data type alignment requirements into account. For the partition
maintenance only pointer alignment is required (Chain_Node, which
consists of two pointers). The user should ensure that its partition
buffer area is suitable for the items it wants to manage. The user
should not be burdened to provide buffers with the maximum architecture
alignment, e.g. why need a 16 byte aligned buffer if you want to manage
items with 4 byte integers only?

Update #3482.

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/**
2 * @file
3 *
4 * @brief RTEMS Partition Create
5 * @ingroup ClassicPart Partitions
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/rtems/partimpl.h>
22#include <rtems/rtems/attrimpl.h>
23#include <rtems/rtems/support.h>
24#include <rtems/score/threaddispatch.h>
25#include <rtems/score/sysstate.h>
26
27/*
28 *  rtems_partition_create
29 *
30 *  This directive creates a partiton of fixed sized buffers from the
31 *  given contiguous memory area.
32 *
33 *  Input parameters:
34 *    name             - user defined partition name
35 *    starting_address - physical start address of partition
36 *    length           - physical length in bytes
37 *    buffer_size      - size of buffers in bytes
38 *    attribute_set    - partition attributes
39 *    id               - pointer to partition id
40 *
41 *  Output parameters:
42 *    id               - partition id
43 *    RTEMS_SUCCESSFUL - if successful
44 *    error code       - if unsuccessful
45 */
46
47rtems_status_code rtems_partition_create(
48  rtems_name       name,
49  void            *starting_address,
50  uint32_t         length,
51  uint32_t         buffer_size,
52  rtems_attribute  attribute_set,
53  rtems_id        *id
54)
55{
56  Partition_Control *the_partition;
57
58  if ( !rtems_is_name_valid( name ) )
59    return RTEMS_INVALID_NAME;
60
61  if ( !starting_address )
62    return RTEMS_INVALID_ADDRESS;
63
64  if ( !id )
65    return RTEMS_INVALID_ADDRESS;
66
67  if ( length == 0 )
68    return RTEMS_INVALID_SIZE;
69
70  if ( buffer_size == 0 )
71    return RTEMS_INVALID_SIZE;
72
73  if ( length < buffer_size )
74    return RTEMS_INVALID_SIZE;
75
76  if ( !_Partition_Is_buffer_size_aligned( buffer_size ) )
77    return RTEMS_INVALID_SIZE;
78
79  if ( buffer_size < sizeof( Chain_Node ) )
80    return RTEMS_INVALID_SIZE;
81
82  if ( !_Partition_Is_buffer_area_aligned( starting_address ) )
83    return RTEMS_INVALID_ADDRESS;
84
85#if defined(RTEMS_MULTIPROCESSING)
86  if ( _Attributes_Is_global( attribute_set ) &&
87       !_System_state_Is_multiprocessing )
88    return RTEMS_MP_NOT_CONFIGURED;
89#endif
90
91  the_partition = _Partition_Allocate();
92
93  if ( !the_partition ) {
94    _Objects_Allocator_unlock();
95    return RTEMS_TOO_MANY;
96  }
97
98#if defined(RTEMS_MULTIPROCESSING)
99  if ( _Attributes_Is_global( attribute_set ) &&
100       !( _Objects_MP_Allocate_and_open( &_Partition_Information, name,
101                            the_partition->Object.id, false ) ) ) {
102    _Partition_Free( the_partition );
103    _Objects_Allocator_unlock();
104    return RTEMS_TOO_MANY;
105  }
106#endif
107
108  _Partition_Initialize(
109    the_partition,
110    starting_address,
111    length,
112    buffer_size,
113    attribute_set
114  );
115
116  _Objects_Open(
117    &_Partition_Information,
118    &the_partition->Object,
119    (Objects_Name) name
120  );
121
122  *id = the_partition->Object.id;
123#if defined(RTEMS_MULTIPROCESSING)
124  if ( _Attributes_Is_global( attribute_set ) )
125    _Partition_MP_Send_process_packet(
126      PARTITION_MP_ANNOUNCE_CREATE,
127      the_partition->Object.id,
128      name,
129      0                  /* Not used */
130    );
131#endif
132
133  _Objects_Allocator_unlock();
134  return RTEMS_SUCCESSFUL;
135}
Note: See TracBrowser for help on using the repository browser.