blob: 8845cb05da95ae50c9aa81d86b11ce4237ea5163 [file] [log] [blame]
Ewout van Bekkum660ebba2020-11-11 13:40:10 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15#include "pw_sync/counting_semaphore.h"
16
17#include <algorithm>
18
19#include "FreeRTOS.h"
Wyatt Heplerf298de42021-03-19 15:06:36 -070020#include "pw_assert/check.h"
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080021#include "pw_chrono/system_clock.h"
22#include "pw_chrono_freertos/system_clock_constants.h"
23#include "pw_interrupt/context.h"
24#include "semphr.h"
25
26using pw::chrono::SystemClock;
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080027
28namespace pw::sync {
29namespace {
30
31static_assert(configUSE_COUNTING_SEMAPHORES != 0,
32 "FreeRTOS counting semaphores aren't enabled.");
33
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080034static_assert(configSUPPORT_STATIC_ALLOCATION != 0,
35 "FreeRTOS static allocations are required for this backend.");
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080036
37} // namespace
38
39void CountingSemaphore::release(ptrdiff_t update) {
40 if (interrupt::InInterruptContext()) {
41 for (; update > 0; --update) {
42 BaseType_t woke_higher_task = pdFALSE;
Scott James Remnantd6f54752021-07-26 17:32:54 -070043 const BaseType_t result = xSemaphoreGiveFromISR(
44 reinterpret_cast<SemaphoreHandle_t>(&native_type_),
45 &woke_higher_task);
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080046 PW_DCHECK_UINT_EQ(result, pdTRUE, "Overflowed counting semaphore.");
47 portYIELD_FROM_ISR(woke_higher_task);
48 }
49 } else { // Task context
50 for (; update > 0; --update) {
Scott James Remnantd6f54752021-07-26 17:32:54 -070051 const BaseType_t result =
52 xSemaphoreGive(reinterpret_cast<SemaphoreHandle_t>(&native_type_));
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080053 PW_DCHECK_UINT_EQ(result, pdTRUE, "Overflowed counting semaphore.");
54 }
55 }
56}
57
Ewout van Bekkum5ff8cc52021-09-07 15:46:36 -070058bool CountingSemaphore::try_acquire_for(SystemClock::duration timeout) {
Ewout van Bekkuma6642d72021-11-05 09:43:14 -070059 // Enforce the pw::sync::CountingSemaphore IRQ contract.
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080060 PW_DCHECK(!interrupt::InInterruptContext());
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080061
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080062 // Use non-blocking try_acquire for negative and zero length durations.
Ewout van Bekkum5ff8cc52021-09-07 15:46:36 -070063 if (timeout <= SystemClock::duration::zero()) {
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080064 return try_acquire();
65 }
66
Ewout van Bekkuma6642d72021-11-05 09:43:14 -070067 // In case the timeout is too long for us to express through the native
68 // FreeRTOS API, we repeatedly wait with shorter durations. Note that on a
69 // tick based kernel we cannot tell how far along we are on the current tick,
70 // ergo we add one whole tick to the final duration. However, this also means
71 // that the loop must ensure that timeout + 1 is less than the max timeout.
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080072 constexpr SystemClock::duration kMaxTimeoutMinusOne =
73 pw::chrono::freertos::kMaxTimeout - SystemClock::duration(1);
Ewout van Bekkum5ff8cc52021-09-07 15:46:36 -070074 while (timeout > kMaxTimeoutMinusOne) {
Scott James Remnantd6f54752021-07-26 17:32:54 -070075 if (xSemaphoreTake(reinterpret_cast<SemaphoreHandle_t>(&native_type_),
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080076 static_cast<TickType_t>(kMaxTimeoutMinusOne.count())) ==
77 pdTRUE) {
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080078 return true;
79 }
Ewout van Bekkum5ff8cc52021-09-07 15:46:36 -070080 timeout -= kMaxTimeoutMinusOne;
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080081 }
Ewout van Bekkuma6642d72021-11-05 09:43:14 -070082 // On a tick based kernel we cannot tell how far along we are on the current
83 // tick, ergo we add one whole tick to the final duration.
Scott James Remnantd6f54752021-07-26 17:32:54 -070084 return xSemaphoreTake(reinterpret_cast<SemaphoreHandle_t>(&native_type_),
Ewout van Bekkum5ff8cc52021-09-07 15:46:36 -070085 static_cast<TickType_t>(timeout.count() + 1)) == pdTRUE;
Ewout van Bekkum660ebba2020-11-11 13:40:10 -080086}
87
88} // namespace pw::sync