|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
1
|
ZEP-SYRS-1
|
Draft
|
Functional
|
Hardware Architecture Interface
|
|
Architecture Layer Interface
|
The Zephyr RTOS shall provide a framework to communicate with a set of hardware architectural services.
|
As a Zephyr RTOS user I want to be able to easily switch my application to a different MCU architecture (x86, ARM Cortex-M/A, RISCV etc.).
|
|
|
2
|
ZEP-SYRS-2
|
Draft
|
Functional
|
Hardware Architecture Interface
|
|
Support multiprocessor management
|
The Zephyr RTOS shall support symmetric multiprocessing on multiple cores.
|
As a Zephyr RTOS user I want to use Zephyr OS on multi core (SMP-)MCUs/MPUs.
|
|
|
3
|
ZEP-SYRS-3
|
Draft
|
Functional
|
C Library
|
|
Support Subset of Standard C Library
|
The Zephyr RTOS shall support a subset of the standard C library.
|
As a Zephyr RTOS user I want to have a selection of standard C library implementations e.g. a full extend and a minimal with a smaller footprint or a particular fast executing implementation.
|
|
|
4
|
ZEP-SYRS-4
|
Draft
|
Functional
|
Device Drivers
|
|
Device Driver Abstraction
|
The Zephyr RTOS shall provide a framework for managing device drivers and peripherals.
|
As a Zephyr RTOS user I want my application to be portable between different MCU architectures (ARM Cortex-M/A, Intel x86, RISCV etc.) and MCU vendors (STM, NXP, Intel, etc.) without having to change the MCU peripherals access.
|
|
|
5
|
ZEP-SYRS-5
|
Draft
|
Functional
|
Exception and Error Handling
|
|
Fatal error and exception handling
|
The Zephyr RTOS shall provide a framework for error and exception handling.
|
As a Zephyr RTOS user I want errors and exceptions to handled and react according to my applications requirements (e.g. reach/establish the applications safety state).
|
|
|
6
|
ZEP-SYRS-6
|
Draft
|
Functional
|
File Systems
|
|
Common File system operation support
|
The Zephyr RTOS shall provide a framework for managing file system access.
|
As a Zephyr RTOS user I want a posix / c like file system access to store data.
|
|
|
7
|
ZEP-SYRS-7
|
Draft
|
Functional
|
Interrupts
|
|
|
The Zephyr RTOS shall provide a framework for interrupt and interrupt service routine management.
|
As the Zephyr RTOS user I want the Kernel to provide abstracted interfaces to
the platform enabling me to implement standard interrupts interrupt service routines
without detailed knowledge of the platform architecture and programming model.
|
|
|
8
|
ZEP-SYRS-20
|
Draft
|
Functional
|
Interrupts
|
|
Direct ISR, Platform Specific helpers.
|
Zephyr RTOS shall support development of direct ISRs by providing platform specific
code fragments and factory functions including, minimal header instructions,
minimal footer instructions, low power termination, and ISR construction.
|
As the Zephyr RTOS user I want the Kernel to provide support for implementing standard low latency
and low power interrupt service routines without detailed knowledge of the platform architecture
and programming model.
|
|
|
9
|
ZEP-SYRS-8
|
Draft
|
Functional
|
Logging
|
|
|
The Zephyr RTOS shall provide a framework for logging events.
|
As a Zephyr RTOS user I want to be able to log application defined events as well as framework exceptions.
|
|
|
10
|
ZEP-SYRS-9
|
Draft
|
Functional
|
Memory Management
|
|
Memory Management framework
|
The Zephyr RTOS shall support a memory management framework.
|
As a Zephyr RTOS user I want memory to be allocated and protected to my application threads preventing mistakenly access to foreign memory as far as the hardware allows.
|
|
|
11
|
ZEP-SYRS-10
|
Draft
|
Functional
|
Power Management
|
|
|
The Zephyr RTOS shall provide an interface to control hardware power states.
|
As a Zephyr RTOS user I want to be able to control the power mode of the MCU and its peripherals to take advantage of the hardware features and to be able to implement low power or battery driven long life applications.
|
|
|
12
|
|
|
|
|
|
Multi core and SMP
|
|
|
|
|
12.1
|
ZEP-SYRS-11
|
Draft
|
Functional
|
SMP and Multi core
|
|
|
The Zephyr RTOS shall support scheduling of threads on multiple hardware CPUs.
|
As a Zephyr RTOS user I want Zephyr OS to run on MCUs/CPUs with one or more CPU cores.
|
|
|
12.2
|
ZEP-SYRS-12
|
Draft
|
Functional
|
SMP and Multi core
|
|
|
The Zephyr RTOS shall provide an interface to assign a thread to a specific CPU.
|
As a Zephyr RTOS user, I want to be able to control which thread will run on which CPU.
|
|
|
13
|
|
|
|
|
|
Thread Synchronization
|
|
|
|
|
13.1
|
ZEP-SYRS-13
|
Draft
|
Functional
|
Mutex
|
|
|
The Zephyr RTOS shall provide an interface for managing communication between threads.
|
As a Zephyr RTOS user I want to able to exchange information between threads in a thread-safe manner guaranteeing data consistence.
|
|
|
13.2
|
ZEP-SYRS-14
|
Draft
|
Functional
|
Semaphore
|
|
|
The system shall implement a semaphore synchronization primitive for coordinating access to shared resources among multiple threads.
|
|
|
|
14
|
|
|
|
|
|
Threads
|
|
|
|
|
14.1
|
ZEP-SYRS-15
|
Draft
|
Functional
|
Threads
|
|
|
The Zephyr RTOS shall support threads.
|
As a Zephyr RTOS user, I want to be able to have support for the kernel objects named threads for processing work.
|
|
|
14.2
|
ZEP-SYRS-16
|
Draft
|
Functional
|
Threads
|
|
|
The Zephyr RTOS shall provide a framework for managing multiple threads of execution.
|
As a Zephyr RTOS user, I want to be able to manage the execute of multiple threads with different priorities.
|
|
|
14.3
|
ZEP-SYRS-17
|
Draft
|
Functional
|
Threads
|
|
|
Threads shall have a priority.
|
As a Zephyr RTOS user, I want to be able to give my threads different priorities for execution.
|
|
|
15
|
ZEP-SYRS-18
|
Draft
|
Functional
|
Timers
|
|
|
The Zephyr RTOS shall provide a framework for managing time-based events.
|
As a Zephyr RTOS user, I want to start, suspend, resume and stop timers which shall trigger an event on a set expiration time.
|
|
|
16
|
ZEP-SYRS-19
|
Draft
|
Functional
|
Tracing
|
|
|
Zepyhr shall provide a framework mechanism for tracing low level system operations (NOTE: system calls, interrupts, kernel calls, thread, synchronization, etc.).
|
As a Zephyr RTOS user, I want to be able to trace different OS operations.
|
|
|
17
|
|
|
|
|
|
Condition Variables
|
|
|
|
|
17.1
|
ZEP-SYRS-21
|
Draft
|
Non-Functional
|
Condition Variables
|
|
|
The Zephyr RTOS shall provide a framework to synchronize threads based on a condition variable.
|
|
|
|
18
|
|
|
|
|
|
Queues
|
|
|
|
|
18.1
|
ZEP-SYRS-22
|
Draft
|
Functional
|
Queues
|
|
|
The Zephyr RTOS shall implement a queue which can be used to pass data between threads and interrupt service routines.
|
|
|
|
19
|
|
|
|
|
|
LIFOs
|
|
|
|
|
19.1
|
ZEP-SYRS-23
|
Draft
|
Functional
|
LIFOs
|
|
|
The Zephyr RTOS shall implement a LIFOs which can be used to pass data between threads and interrupt service routines.
|
|
|
|
20
|
|
|
|
|
|
FIFOs
|
|
|
|
|
20.1
|
ZEP-SYRS-24
|
Draft
|
Functional
|
FIFOs
|
|
|
The Zephyr RTOS shall implement FIFOs which can be used to pass data between threads and interrupt service routines.
|
|
|
|
21
|
|
|
|
|
|
Mailboxes
|
|
|
|
|
21.1
|
ZEP-SYRS-25
|
Draft
|
Functional
|
Mailboxes
|
|
|
The Zephyr RTOS shall provide a framework to pass messages of arbitrary size between threads.
|
|
|
|
22
|
|
|
|
|
|
Atomic Service
|
|
|
|
|
22.1
|
ZEP-SYRS-26
|
Draft
|
Functional
|
Atomic Service
|
|
|
The Zephyr RTOS shall provide an interface to perform atomic operations on variables, guaranteeing that all reads and writes are free from tearing across all processors.
|
|
|
|
23
|
|
|
|
|
|
Stacks
|
|
|
|
|
23.1
|
ZEP-SYRS-30
|
Draft
|
Functional
|
Stacks
|
|
|
The Zephyr RTOS shall implement a stack which can be used to pass data between threads and interrupt service routines.
|
|