1*61c4878aSAndroid Build Coastguard Worker // Copyright 2023 The Pigweed Authors 2*61c4878aSAndroid Build Coastguard Worker // 3*61c4878aSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License"); you may not 4*61c4878aSAndroid Build Coastguard Worker // use this file except in compliance with the License. You may obtain a copy of 5*61c4878aSAndroid Build Coastguard Worker // the License at 6*61c4878aSAndroid Build Coastguard Worker // 7*61c4878aSAndroid Build Coastguard Worker // https://www.apache.org/licenses/LICENSE-2.0 8*61c4878aSAndroid Build Coastguard Worker // 9*61c4878aSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software 10*61c4878aSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 11*61c4878aSAndroid Build Coastguard Worker // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12*61c4878aSAndroid Build Coastguard Worker // License for the specific language governing permissions and limitations under 13*61c4878aSAndroid Build Coastguard Worker // the License. 14*61c4878aSAndroid Build Coastguard Worker 15*61c4878aSAndroid Build Coastguard Worker #include "pw_thread/thread.h" 16*61c4878aSAndroid Build Coastguard Worker #include "pw_thread_zephyr/config.h" 17*61c4878aSAndroid Build Coastguard Worker #include "pw_thread_zephyr/options.h" 18*61c4878aSAndroid Build Coastguard Worker 19*61c4878aSAndroid Build Coastguard Worker namespace pw::system { 20*61c4878aSAndroid Build Coastguard Worker 21*61c4878aSAndroid Build Coastguard Worker using namespace pw::thread::zephyr::config; 22*61c4878aSAndroid Build Coastguard Worker 23*61c4878aSAndroid Build Coastguard Worker // Low to high priorities. 24*61c4878aSAndroid Build Coastguard Worker enum class ThreadPriority : int { 25*61c4878aSAndroid Build Coastguard Worker kWorkQueue = kDefaultPriority, 26*61c4878aSAndroid Build Coastguard Worker // TODO(amontanez): These should ideally be at different priority levels, but 27*61c4878aSAndroid Build Coastguard Worker // there's synchronization issues when they are. 28*61c4878aSAndroid Build Coastguard Worker kLog = kWorkQueue, 29*61c4878aSAndroid Build Coastguard Worker kRpc = kWorkQueue, 30*61c4878aSAndroid Build Coastguard Worker kNumPriorities, 31*61c4878aSAndroid Build Coastguard Worker }; 32*61c4878aSAndroid Build Coastguard Worker 33*61c4878aSAndroid Build Coastguard Worker static constexpr size_t kLogThreadStackWords = 34*61c4878aSAndroid Build Coastguard Worker CONFIG_PIGWEED_SYSTEM_TARGET_HOOKS_LOG_STACK_SIZE; 35*61c4878aSAndroid Build Coastguard Worker static thread::zephyr::StaticContextWithStack<kLogThreadStackWords> 36*61c4878aSAndroid Build Coastguard Worker log_thread_context; LogThreadOptions()37*61c4878aSAndroid Build Coastguard Workerconst thread::Options& LogThreadOptions() { 38*61c4878aSAndroid Build Coastguard Worker static constexpr auto options = 39*61c4878aSAndroid Build Coastguard Worker pw::thread::zephyr::Options(log_thread_context) 40*61c4878aSAndroid Build Coastguard Worker .set_priority(static_cast<int>(ThreadPriority::kLog)); 41*61c4878aSAndroid Build Coastguard Worker return options; 42*61c4878aSAndroid Build Coastguard Worker } 43*61c4878aSAndroid Build Coastguard Worker 44*61c4878aSAndroid Build Coastguard Worker static constexpr size_t kRpcThreadStackWords = 45*61c4878aSAndroid Build Coastguard Worker CONFIG_PIGWEED_SYSTEM_TARGET_HOOKS_RPC_STACK_SIZE; 46*61c4878aSAndroid Build Coastguard Worker static thread::zephyr::StaticContextWithStack<kRpcThreadStackWords> 47*61c4878aSAndroid Build Coastguard Worker rpc_thread_context; RpcThreadOptions()48*61c4878aSAndroid Build Coastguard Workerconst thread::Options& RpcThreadOptions() { 49*61c4878aSAndroid Build Coastguard Worker static constexpr auto options = 50*61c4878aSAndroid Build Coastguard Worker pw::thread::zephyr::Options(rpc_thread_context) 51*61c4878aSAndroid Build Coastguard Worker .set_priority(static_cast<int>(ThreadPriority::kRpc)); 52*61c4878aSAndroid Build Coastguard Worker return options; 53*61c4878aSAndroid Build Coastguard Worker } 54*61c4878aSAndroid Build Coastguard Worker 55*61c4878aSAndroid Build Coastguard Worker static constexpr size_t kWorkQueueThreadStackWords = 56*61c4878aSAndroid Build Coastguard Worker CONFIG_PIGWEED_SYSTEM_TARGET_HOOKS_WORK_QUEUE_STACK_SIZE; 57*61c4878aSAndroid Build Coastguard Worker static thread::zephyr::StaticContextWithStack<kWorkQueueThreadStackWords> 58*61c4878aSAndroid Build Coastguard Worker work_queue_thread_context; 59*61c4878aSAndroid Build Coastguard Worker WorkQueueThreadOptions()60*61c4878aSAndroid Build Coastguard Workerconst thread::Options& WorkQueueThreadOptions() { 61*61c4878aSAndroid Build Coastguard Worker static constexpr auto options = 62*61c4878aSAndroid Build Coastguard Worker pw::thread::zephyr::Options(work_queue_thread_context) 63*61c4878aSAndroid Build Coastguard Worker .set_priority(static_cast<int>(ThreadPriority::kWorkQueue)); 64*61c4878aSAndroid Build Coastguard Worker return options; 65*61c4878aSAndroid Build Coastguard Worker } 66*61c4878aSAndroid Build Coastguard Worker 67*61c4878aSAndroid Build Coastguard Worker } // namespace pw::system