summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/semsetpriority.c
blob: 1073a561a8db9dc372f692a9ea232cd2ea63b6ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * 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

#include <rtems/rtems/semimpl.h>
#include <rtems/rtems/attrimpl.h>
#include <rtems/rtems/tasksimpl.h>
#include <rtems/score/schedulerimpl.h>

static rtems_status_code _Semaphore_Set_priority(
  Semaphore_Control   *the_semaphore,
  rtems_id             scheduler_id,
  rtems_task_priority  new_priority,
  rtems_task_priority *old_priority_p,
  ISR_lock_Context    *lock_context
)
{
  rtems_status_code   sc;
  rtems_attribute     attribute_set = the_semaphore->attribute_set;
  rtems_task_priority old_priority;

  new_priority = _RTEMS_tasks_Priority_to_Core( new_priority );

#if defined(RTEMS_SMP)
  if ( _Attributes_Is_multiprocessor_resource_sharing( attribute_set ) ) {
    MRSP_Control *mrsp = &the_semaphore->Core_control.mrsp;
    uint32_t scheduler_index = _Scheduler_Get_index_by_id( scheduler_id );

    _MRSP_Acquire_critical( mrsp, lock_context );

    old_priority = _MRSP_Get_ceiling_priority( mrsp, scheduler_index );

    if ( new_priority != RTEMS_CURRENT_PRIORITY ) {
      _MRSP_Set_ceiling_priority( mrsp, scheduler_index, new_priority );
    }

    _MRSP_Release( mrsp, lock_context );

    sc = RTEMS_SUCCESSFUL;
  } else
#endif
  if ( _Attributes_Is_priority_ceiling( attribute_set ) ) {
    CORE_mutex_Control *mutex = &the_semaphore->Core_control.mutex;

    _CORE_mutex_Acquire_critical( mutex, lock_context );

    old_priority = mutex->Attributes.priority_ceiling;

    if ( new_priority != RTEMS_CURRENT_PRIORITY ) {
      mutex->Attributes.priority_ceiling = new_priority;
    }

    _CORE_mutex_Release( mutex, lock_context );

    sc = RTEMS_SUCCESSFUL;
  } else {
    _ISR_lock_ISR_enable( lock_context );

    old_priority = 0;

    sc = RTEMS_NOT_DEFINED;
  }

  *old_priority_p = _RTEMS_tasks_Priority_from_Core( old_priority );

  return sc;
}

rtems_status_code rtems_semaphore_set_priority(
  rtems_id             semaphore_id,
  rtems_id             scheduler_id,
  rtems_task_priority  new_priority,
  rtems_task_priority *old_priority
)
{
  Semaphore_Control *the_semaphore;
  Objects_Locations  location;
  ISR_lock_Context   lock_context;

  if ( new_priority != RTEMS_CURRENT_PRIORITY &&
       !_RTEMS_tasks_Priority_is_valid( new_priority ) ) {
    return RTEMS_INVALID_PRIORITY;
  }

  if ( old_priority == NULL ) {
    return RTEMS_INVALID_ADDRESS;
  }

  if ( !_Scheduler_Is_id_valid( scheduler_id ) ) {
    return RTEMS_INVALID_ID;
  }

  the_semaphore = _Semaphore_Get_interrupt_disable(
    semaphore_id,
    &location,
    &lock_context
  );
  switch ( location ) {
    case OBJECTS_LOCAL:
      return _Semaphore_Set_priority(
        the_semaphore,
        scheduler_id,
        new_priority,
        old_priority,
        &lock_context
      );
#if defined(RTEMS_MULTIPROCESSING)
    case OBJECTS_REMOTE:
      return RTEMS_ILLEGAL_ON_REMOTE_OBJECT;
#endif
    case OBJECTS_ERROR:
      break;
  }

  return RTEMS_INVALID_ID;
}