Skip to content
Closed
877 changes: 873 additions & 4 deletions docs/process/_assets/score_process_area_overview.drawio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ to a Component.

Building blocks overview for **S-CORE** platform

.. _building_block_example:

Building blocks example
+++++++++++++++++++++++

Expand Down
1 change: 1 addition & 0 deletions docs/process/process_areas/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ Process Areas
platform_management/index.rst
problem_resolution/index.rst
requirements_engineering/index.rst
safety_analysis/index.rst
safety_management/index.rst
verification/index.rst
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,236 @@
..
# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

.. _dfa failure initiators:

DFA failure initiators
======================

.. gd_guidl:: DFA failure initiators
:id: gd_guidl__dfa_failure_initiators
:status: valid
:complies: std_wp__iso26262__software_751, std_wp__iso26262__software_753


:note: Use the failure initiators to ensure a structured analysis. If a failure doesn't apply, please fill in a short desciption in the violation cause of the analysis so it could be recognized that the analysis is done. If there are additional failure initiators needed, please enlage the list of fault models.

**Purpose**

In order to identify all cascading and common cause failures, which may initiated from your feature or components to the platform, other features, components, etc.,
use the following framework of dependent failure initiators to check your completeness of the analysis.

DFA failure initiators
======================

2.1 Shared resources

.. list-table:: DFA shared resources
:header-rows: 1
:widths: 10,30,30,30

* - ID
- Violation cause shared resources
- Simplification
- Importance (can be used for priorisation)
* - SR_01_01
- Reused software modules
-
- Medium
* - SR_01_02
- Libraries
- SR_01_01
- Medium
* - SR_01_04
- Basic software
-
- Medium
* - SR_01_05
- Operating system including scheduler
-
- Medium
* - SR_01_06
- Any service stack, e.g. communication stack
-
- Medium
* - SR_01_07
- Configuration data
-
- Medium
* - SR_01_09
- Execution time
-
- Medium
* - SR_01_10
- Allocated memory
-
- Medium


| 2.2 Communication between the two elements:
| Receiving function is affected by information that is false, lost, sent multiple times, or in the wrong order etc. from the sender.

.. list-table:: DFA communication between elements
:header-rows: 1
:widths: 10,30,30,30

* - ID
- Violation cause communication between elements
- Simplification
- Importance (can be used for priorisation)
* - CO_01_01
- Information passed via argument through a function call, or via writing/reading a variable being global to the two software functions (data flow)
-
- Medium
* - CO_01_02
- Data or message corruption / repetition / loss / delay / masquerading or incorrect addressing of information
-
- Medium
* - CO_01_03
- Insertion / sequence of information
-
- Medium
* - CO_01_04
- Corruption of information, inconsistent data
-
- Medium
* - CO_01_05
- Asymmetric information sent from a sender to multiple receivers, so that not all defined receivers have the same informations
-
- Medium
* - CO_01_06
- Information from a sender received by only a subset of the receivers
-
- Medium
* - CO_01_07
- Blocking access to a communication channel
-
- Medium

| 2.3 Shared information inputs
| Same information input used by multiple functions.

.. list-table:: DFA shared information inputs
:header-rows: 1
:widths: 10,30,30,30

* - ID
- Violation cause shared information inputs
- Simplification
- Importance (can be used for priorisation)
* - SI_01_02
- Configuration data
-
- Medium
* - SI_01_03
- Constants, or variables, being global to the two software functions
-
- Medium
* - SI_01_04
- Basic software passes data (read from hardware register and converted into logical information) to two applications software functions
-
- Medium
* - SI_01_05
- Data / function parameter arguments / messages delivered by software function to more than one other function
-
- Medium

| 2.4 Unintended impact
| Unintended impacts to function due to various failures.

.. list-table:: DFA unintended impact
:header-rows: 1
:widths: 10,30,30,30

* - ID
- Violation cause unintended impact
- Simplification
- Importance (can be used for priorisation)
* - UI_01_01
- Memory miss-allocation and leaks
-
- Medium
* - UI_01_02
- Read/Write access to memory allocated to another software element
-
- Medium
* - UI_01_03
- Stack/Buffer under-/overflow
-
- Medium
* - UI_01_04
- Deadlocks
-
- Medium
* - UI_01_05
- Livelocks
-
- Medium
* - UI_01_06
- Blocking of execution
-
- Medium
* - UI_01_07
- Incorrect allocation of execution time
-
- Medium
* - UI_01_08
- Incorrect execution flow
-
- Medium
* - UI_01_09
- Incorrect synchronization between software elements
-
- Medium
* - UI_01_10
- CPU time depletion
-
- Medium
* - UI_01_11
- Memory depletion
-
- Medium
* - UI_01_12
- Other HW unavailability
-
- Medium

| Development failure initiators
| Secition is **only aplicable if a divers SW development is needed** due to decomposition.

:note: Section shall be applied on platform level. Results shall be implemented in general to the S-CORE development definitions.

.. list-table:: DFA development failure initiators
:header-rows: 1
:widths: 10,30,30,30

* - ID
- Violation cause development failure initiators
- Simplification
- Importance (can be used for priorisation)
* - SC_01_02
- Same development approaches (e.g. IDE, programming and/or modelling language)
-
- Medium
* - SC_01_03
- Same personal
-
- Medium
* - SC_01_04
- Same social-cultural context (even if different personnel). Only applicable if diverse development is needed.
-
- Medium
* - SC_01_05
- Development fault (e.g. human error, insufficient qualification, insufficient methods). Only applicable if diverse development is needed.
-
- Medium
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
..
# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

.. _dfa_templates:

DFA Templates
=============

.. gd_temp:: Platform DFA Templates
:id: gd_temp__plat_saf_dfa
:status: valid
:complies: std_wp__iso26262__analysis_751, std_wp__iso26262__software_753, std_wp__isopas8926__4524, std_req__iso26262__software_7411, std_req__iso26262__analysis_741, std_req__iso26262__analysis_742, std_req__iso26262__analysis_743, std_req__iso26262__analysis_745, std_req__iso26262__analysis_746, std_req__iso26262__analysis_747, std_req__iso26262__analysis_748, std_req__iso26262__analysis_749, std_req__isopas8926__44432

| .. plat_saf_dfa:: <Element descriptor>
| :verifies: <Platform architecture>
| :id: plat_saf_DFA__<Platform>__<Element descriptor>
| :violation_id: <ID from DFA failure initiators :need:`gd_guidl__dfa_failure_initiators`>
| :violation_cause: "description of failure effect of the failure initiator on the element"
| :mitigation: < NONE|ID from Feature Requirement>
| :mitigation_issue: <ID from Issue Tracker| None if no issue needed>
| :mitigation_coverage: <0..100%>
| :sufficient: <yes|no>
| :argument: <text to argument why mitigation is sufficient>
| :status: <valid|invalid>

.. gd_temp:: Feature DFA Templates
:id: gd_temp__feat_saf_dfa
:status: valid
:complies: std_wp__iso26262__analysis_751, std_wp__iso26262__software_753, std_wp__isopas8926__4524, std_req__iso26262__software_7411, std_req__iso26262__analysis_741, std_req__iso26262__analysis_742, std_req__iso26262__analysis_743, std_req__iso26262__analysis_745, std_req__iso26262__analysis_746, std_req__iso26262__analysis_747, std_req__iso26262__analysis_748, std_req__iso26262__analysis_749, std_req__isopas8926__44432

| .. feat_saf_dfa:: <Element descriptor>
| :verifies: <Feature architecture>
| :id: feat_saf_DFA__<Feature>__<Element descriptor>
| :violation_id: <ID from DFA failure initiators :need:`gd_guidl__dfa_failure_initiators`>
| :violation_cause: "description of failure effect of the failure initiator on the element"
| :mitigation: < NONE|ID from Feature Requirement>
| :mitigation_issue: <ID from Issue Tracker| None if no issue needed>
| :mitigation_coverage: <0..100%>
| :sufficient: <yes|no>
| :argument: <text to argument why mitigation is sufficient>
| :status: <valid|invalid>


.. gd_temp:: Component DFA Templates
:id: gd_temp__comp_saf_dfa
:status: valid
:complies: std_wp__iso26262__analysis_751, std_wp__iso26262__software_753, std_wp__isopas8926__4524, std_req__iso26262__software_7411, std_req__iso26262__analysis_741, std_req__iso26262__analysis_742, std_req__iso26262__analysis_743, std_req__iso26262__analysis_745, std_req__iso26262__analysis_746, std_req__iso26262__analysis_747, std_req__iso26262__analysis_748, std_req__iso26262__analysis_749, std_req__isopas8926__44432

| .. comp_saf_dfa:: <Element descriptor>
| :verifies: <Component architecture>
| :id: comp_saf_DFA__<Component>__<Element descriptor>
| :violation_id: <ID from DFA failure initiators :need:`gd_guidl__dfa_failure_initiators`>
| :violation_cause: "description of failure effect of the failure initiator on the element"
| :mitigation: < NONE|ID from Component Requirement>
| :mitigation_issue: <ID from Issue Tracker| None if no issue needed>
| :mitigation_coverage: <0..100%>
| :sufficient: <yes|no>
| :argument: <text to argument why mitigation is sufficient>
| :status: <valid|invalid>
Loading
Loading