Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Sanderson <graham.sanderson@gmail.com>2021-07-06 20:53:49 +0300
committerGitHub <noreply@github.com>2021-07-06 20:53:49 +0300
commit35b95d2a4debe36f38e0c8768a5260dd586b7d2c (patch)
treec1e90d0e634a578841185f2b4f3472d4dd00c84e
parenta7092d400c26e3eee3ec8960110ce74e54485fdf (diff)
Rp2040 smp (#342)
* Add RP2040 support (#341) * Add RP2040 support * remove spurious tab/spaces comments * add .cmake to ignored kernel checks * Apply suggestions from code review Co-authored-by: Paul Bartell <paul.bartell@gmail.com> * license and end of file newline fixes * Rename LICENSE.TXT to LICENSE.md Co-authored-by: Paul Bartell <paul.bartell@gmail.com> Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> * RP2040 updates for SMP * whitepsace fix Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> * whitespace fix Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> Co-authored-by: Paul Bartell <paul.bartell@gmail.com> Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
-rwxr-xr-x.github/scripts/kernel_checker.py3
-rw-r--r--include/stack_macros.h12
-rw-r--r--portable/ThirdParty/GCC/RP2040/.gitignore2
-rw-r--r--portable/ThirdParty/GCC/RP2040/CMakeLists.txt40
-rw-r--r--portable/ThirdParty/GCC/RP2040/FreeRTOS_Kernel_import.cmake62
-rw-r--r--portable/ThirdParty/GCC/RP2040/LICENSE.md23
-rw-r--r--portable/ThirdParty/GCC/RP2040/README.md31
-rw-r--r--portable/ThirdParty/GCC/RP2040/idle_task_static_memory.c52
-rw-r--r--portable/ThirdParty/GCC/RP2040/include/freertos_sdk_config.h70
-rw-r--r--portable/ThirdParty/GCC/RP2040/include/portmacro.h236
-rw-r--r--portable/ThirdParty/GCC/RP2040/include/rp2040_config.h89
-rw-r--r--portable/ThirdParty/GCC/RP2040/library.cmake66
-rw-r--r--portable/ThirdParty/GCC/RP2040/pico_sdk_import.cmake66
-rw-r--r--portable/ThirdParty/GCC/RP2040/port.c910
14 files changed, 1659 insertions, 3 deletions
diff --git a/.github/scripts/kernel_checker.py b/.github/scripts/kernel_checker.py
index f29749267..3a8f42888 100755
--- a/.github/scripts/kernel_checker.py
+++ b/.github/scripts/kernel_checker.py
@@ -31,7 +31,8 @@ KERNEL_IGNORED_EXTENSIONS = [
'.png',
'.bat',
'.sh',
- '.txt'
+ '.txt',
+ '.cmake'
]
KERNEL_IGNORED_PATTERNS = [
diff --git a/include/stack_macros.h b/include/stack_macros.h
index cb76f284f..65d58a0f6 100644
--- a/include/stack_macros.h
+++ b/include/stack_macros.h
@@ -43,13 +43,21 @@
/*-----------------------------------------------------------*/
+/*
+ * portSTACK_LIMIT_PADDING is a number of extra words to consider to be in
+ * use on the stack.
+ */
+#ifndef portSTACK_LIMIT_PADDING
+ #define portSTACK_LIMIT_PADDING 0
+#endif
+
#if ( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) )
/* Only the current stack state is to be checked. */
#define taskCHECK_FOR_STACK_OVERFLOW() \
{ \
/* Is the currently saved stack pointer within the stack limit? */ \
- if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \
+ if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack + portSTACK_LIMIT_PADDING ) \
{ \
vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \
} \
@@ -65,7 +73,7 @@
{ \
\
/* Is the currently saved stack pointer within the stack limit? */ \
- if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \
+ if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack - portSTACK_LIMIT_PADDING ) \
{ \
vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \
} \
diff --git a/portable/ThirdParty/GCC/RP2040/.gitignore b/portable/ThirdParty/GCC/RP2040/.gitignore
new file mode 100644
index 000000000..35eb91952
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/.gitignore
@@ -0,0 +1,2 @@
+**/cmake-*
+.idea
diff --git a/portable/ThirdParty/GCC/RP2040/CMakeLists.txt b/portable/ThirdParty/GCC/RP2040/CMakeLists.txt
new file mode 100644
index 000000000..2471cf4b6
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/CMakeLists.txt
@@ -0,0 +1,40 @@
+cmake_minimum_required(VERSION 3.13)
+
+if (NOT TARGET _FreeRTOS_kernel_inclusion_marker)
+ add_library(_FreeRTOS_kernel_inclusion_marker INTERFACE)
+
+ # Pull in PICO SDK (must be before project)
+ include(pico_sdk_import.cmake)
+ if (PICO_SDK_VERSION_STRING VERSION_LESS "1.2.0")
+ message(FATAL_ERROR "Require at least Raspberry Pi Pico SDK version 1.2.0")
+ endif()
+
+ if (NOT FREERTOS_KERNEL_PATH)
+ get_filename_component(FREERTOS_KERNEL_PATH ${CMAKE_CURRENT_LIST_DIR}/../../../.. REALPATH)
+ endif ()
+
+ message(DEBUG "FREERTOS_KERNEL_PATH is ${FREERTOS_KERNEL_PATH}")
+ project(FreeRTOS-Kernel C CXX)
+
+ set(CMAKE_C_STANDARD 11)
+ set(CMAKE_CXX_STANDARD 17)
+
+ pico_is_top_level_project(FREERTOS_KERNEL_TOP_LEVEL_PROJECT)
+
+ # The real work gets done in library.cmake which is called at the end of pico_sdk_init
+ list(APPEND PICO_SDK_POST_LIST_FILES ${CMAKE_CURRENT_LIST_DIR}/library.cmake)
+
+ # We need to inject the following header file into ALL SDK files (which we do via the config header)
+ list(APPEND PICO_CONFIG_HEADER_FILES ${CMAKE_CURRENT_LIST_DIR}/include/freertos_sdk_config.h)
+
+ if (FREERTOS_KERNEL_TOP_LEVEL_PROJECT)
+ message("FreeRTOS: initialize SDK since we're the top-level")
+ # Initialize the SDK
+ pico_sdk_init()
+ else()
+ set(PICO_SDK_POST_LIST_FILES ${PICO_SDK_POST_LIST_FILES} PARENT_SCOPE)
+ set(PICO_CONFIG_HEADER_FILES ${PICO_CONFIG_HEADER_FILES} PARENT_SCOPE)
+ set(FREERTOS_KERNEL_PATH ${FREERTOS_KERNEL_PATH} PARENT_SCOPE)
+ endif()
+endif()
+
diff --git a/portable/ThirdParty/GCC/RP2040/FreeRTOS_Kernel_import.cmake b/portable/ThirdParty/GCC/RP2040/FreeRTOS_Kernel_import.cmake
new file mode 100644
index 000000000..dc68ed038
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/FreeRTOS_Kernel_import.cmake
@@ -0,0 +1,62 @@
+# This is a copy of <FREERTOS_KERNEL_PATH>/portable/ThirdParty/GCC/RP2040/FREERTOS_KERNEL_import.cmake
+
+# This can be dropped into an external project to help locate the FreeRTOS kernel
+# It should be include()ed prior to project(). Alternatively this file may
+# or the CMakeLists.txt in this directory may be included or added via add_subdirectory
+# respectively.
+
+if (DEFINED ENV{FREERTOS_KERNEL_PATH} AND (NOT FREERTOS_KERNEL_PATH))
+ set(FREERTOS_KERNEL_PATH $ENV{FREERTOS_KERNEL_PATH})
+ message("Using FREERTOS_KERNEL_PATH from environment ('${FREERTOS_KERNEL_PATH}')")
+endif ()
+
+set(FREERTOS_KERNEL_RP2040_RELATIVE_PATH "portable/ThirdParty/GCC/RP2040")
+# undo the above
+set(FREERTOS_KERNEL_RP2040_BACK_PATH "../../../..")
+
+if (NOT FREERTOS_KERNEL_PATH)
+ # check if we are inside the FreeRTOS kernel tree (i.e. this file has been included directly)
+ get_filename_component(_ACTUAL_PATH ${CMAKE_CURRENT_LIST_DIR} REALPATH)
+ get_filename_component(_POSSIBLE_PATH ${CMAKE_CURRENT_LIST_DIR}/${FREERTOS_KERNEL_RP2040_BACK_PATH}/${FREERTOS_KERNEL_RP2040_RELATIVE_PATH} REALPATH)
+ if (_ACTUAL_PATH STREQUAL _POSSIBLE_PATH)
+ get_filename_component(FREERTOS_KERNEL_PATH ${CMAKE_CURRENT_LIST_DIR}/${FREERTOS_KERNEL_RP2040_BACK_PATH} REALPATH)
+ endif()
+ if (_ACTUAL_PATH STREQUAL _POSSIBLE_PATH)
+ get_filename_component(FREERTOS_KERNEL_PATH ${CMAKE_CURRENT_LIST_DIR}/${FREERTOS_KERNEL_RP2040_BACK_PATH} REALPATH)
+ message("Setting FREERTOS_KERNEL_PATH to ${FREERTOS_KERNEL_PATH} based on location of FreeRTOS-Kernel-import.cmake")
+ elseif (PICO_SDK_PATH AND EXISTS "${PICO_SDK_PATH}/../FreeRTOS-Kernel")
+ set(FREERTOS_KERNEL_PATH ${PICO_SDK_PATH}/../FreeRTOS-Kernel)
+ message("Defaulting FREERTOS_KERNEL_PATH as sibling of PICO_SDK_PATH: ${FREERTOS_KERNEL_PATH}")
+ endif()
+endif ()
+
+if (NOT FREERTOS_KERNEL_PATH)
+ foreach(POSSIBLE_SUFFIX Source FreeRTOS-Kernel FreeRTOS/Source)
+ # check if FreeRTOS-Kernel exists under directory that included us
+ set(SEARCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR}})
+ set(SEARCH_ROOT ../../../..)
+ get_filename_component(_POSSIBLE_PATH ${SEARCH_ROOT}/${POSSIBLE_SUFFIX} REALPATH)
+ if (EXISTS ${_POSSIBLE_PATH}/${FREERTOS_KERNEL_RP2040_RELATIVE_PATH}/CMakeLists.txt)
+ get_filename_component(FREERTOS_KERNEL_PATH ${_POSSIBLE_PATH} REALPATH)
+ message("Setting FREERTOS_KERNEL_PATH to '${FREERTOS_KERNEL_PATH}' found relative to enclosing project")
+ break()
+ endif()
+ endforeach()
+endif()
+
+if (NOT FREERTOS_KERNEL_PATH)
+ message(FATAL_ERROR "FreeRTOS location was not specified. Please set FREERTOS_KERNEL_PATH.")
+endif()
+
+set(FREERTOS_KERNEL_PATH "${FREERTOS_KERNEL_PATH}" CACHE PATH "Path to the FreeRTOS Kernel")
+
+get_filename_component(FREERTOS_KERNEL_PATH "${FREERTOS_KERNEL_PATH}" REALPATH BASE_DIR "${CMAKE_BINARY_DIR}")
+if (NOT EXISTS ${FREERTOS_KERNEL_PATH})
+ message(FATAL_ERROR "Directory '${FREERTOS_KERNEL_PATH}' not found")
+endif()
+if (NOT EXISTS ${FREERTOS_KERNEL_PATH}/${FREERTOS_KERNEL_RP2040_RELATIVE_PATH}/CMakeLists.txt)
+ message(FATAL_ERROR "Directory '${FREERTOS_KERNEL_PATH}' does not contain an RP2040 port here: ${FREERTOS_KERNEL_RP2040_RELATIVE_PATH}")
+endif()
+set(FREERTOS_KERNEL_PATH ${FREERTOS_KERNEL_PATH} CACHE PATH "Path to the FreeRTOS_KERNEL" FORCE)
+
+add_subdirectory(${FREERTOS_KERNEL_PATH}/${FREERTOS_KERNEL_RP2040_RELATIVE_PATH} FREERTOS_KERNEL) \ No newline at end of file
diff --git a/portable/ThirdParty/GCC/RP2040/LICENSE.md b/portable/ThirdParty/GCC/RP2040/LICENSE.md
new file mode 100644
index 000000000..62cf25569
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/LICENSE.md
@@ -0,0 +1,23 @@
+BSD-3-Clause License
+
+Copyright (c) 2020-2021 Raspberry Pi (Trading) Ltd.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+ disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/portable/ThirdParty/GCC/RP2040/README.md b/portable/ThirdParty/GCC/RP2040/README.md
new file mode 100644
index 000000000..b4d197d7d
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/README.md
@@ -0,0 +1,31 @@
+## Overview
+
+This directory provides an SMP FreeRTOS-Kernel port that can be used with the Raspberry Pi Pico SDK. It supports:
+
+ * Simple CMake INTERFACE libraries, to provide the FreeRTOS-Kernel and also the individual allocator types, without copying code into the user's project.
+ * Running the FreeRTOS-Kernel and tasks on either core 0 or core 1, or both.
+ * Use of SDK synchronization primitives (such as mutexes, semaphores, queues from pico_sync) between FreeRTOS tasks and code executing on a non FreeRTOS core, or in IRQ handlers.
+
+Note that whilst this SMP version can be run on just a single (either) core, it is probably
+more efficient to use the non SMP version in the main FreeRTOS-Kernel branch in that case.
+
+## Using this port
+
+Copy [FreeRTOS-Kernel-import.cmake](FreeRTOS-Kernel-import.cmake) into your project, and
+add:
+
+```cmake
+import(FreeRTOS_Kernel_import.cmake)
+```
+
+below the usual import of `pico_sdk_import.cmake`
+
+This will find the FreeRTOS kernel if it is a direct sub-module of your project, or if you provide the `FREERTOS_KERNEL_PATH` variable in your environment or via `-DFREERTOS_KERNEL_PATH=/path/to/FreeRTOS-Kernel` on the CMake command line.
+
+## Advanced Configuration
+
+Some additional `config` options are defined [here](include/rp2040_config.h) which control some low level implementation details.
+
+## Known Limitations
+
+- Tickless idle has not currently been tested, and is likely non-functional \ No newline at end of file
diff --git a/portable/ThirdParty/GCC/RP2040/idle_task_static_memory.c b/portable/ThirdParty/GCC/RP2040/idle_task_static_memory.c
new file mode 100644
index 000000000..4d4b0ea1b
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/idle_task_static_memory.c
@@ -0,0 +1,52 @@
+/*
+ * FreeRTOS Kernel <DEVELOPMENT BRANCH>
+ * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * Copyright (c) 2021 Raspberry Pi (Trading) Ltd.
+ *
+ * SPDX-License-Identifier: MIT AND BSD-3-Clause
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * https://www.FreeRTOS.org
+ * https://github.com/FreeRTOS
+ */
+
+#include "FreeRTOS.h"
+
+void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer,
+ StackType_t **ppxIdleTaskStackBuffer,
+ uint32_t *pulIdleTaskStackSize )
+{
+ /* If the buffers to be provided to the Idle task are declared inside this
+ function then they must be declared static - otherwise they will be allocated on
+ the stack and so not exists after this function exits. */
+ static StaticTask_t xIdleTaskTCB;
+ static StackType_t uxIdleTaskStack[ configMINIMAL_STACK_SIZE ];
+
+ /* Pass out a pointer to the StaticTask_t structure in which the Idle task's
+ state will be stored. */
+ *ppxIdleTaskTCBBuffer = &xIdleTaskTCB;
+
+ /* Pass out the array that will be used as the Idle task's stack. */
+ *ppxIdleTaskStackBuffer = uxIdleTaskStack;
+
+ /* Pass out the size of the array pointed to by *ppxIdleTaskStackBuffer.
+ Note that, as the array is necessarily of type StackType_t,
+ configMINIMAL_STACK_SIZE is specified in words, not bytes. */
+ *pulIdleTaskStackSize = configMINIMAL_STACK_SIZE;
+}
diff --git a/portable/ThirdParty/GCC/RP2040/include/freertos_sdk_config.h b/portable/ThirdParty/GCC/RP2040/include/freertos_sdk_config.h
new file mode 100644
index 000000000..1a67d28f1
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/include/freertos_sdk_config.h
@@ -0,0 +1,70 @@
+/*
+ * FreeRTOS Kernel V10.4.3
+ * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * Copyright (c) 2021 Raspberry Pi (Trading) Ltd.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * https://www.FreeRTOS.org
+ * https://github.com/FreeRTOS
+ */
+
+#ifndef FREERTOS_SDK_CONFIG_H
+#define FREERTOS_SDK_CONFIG_H
+
+#ifndef __ASSEMBLER__
+ #include "FreeRTOSConfig.h"
+ #include "rp2040_config.h"
+
+ #if ( configSUPPORT_PICO_SYNC_INTEROP == 1 )
+ // increase the amount of time it may reasonably take to wake us up
+ #ifndef PICO_TIME_SLEEP_OVERHEAD_ADJUST_US
+ #define PICO_TIME_SLEEP_OVERHEAD_ADJUST_US 150
+ #endif
+
+ #define lock_owner_id_t uint32_t
+ extern uint32_t ulPortLockGetCurrentOwnerId(void);
+ #define lock_get_caller_owner_id() ulPortLockGetCurrentOwnerId()
+ #define LOCK_INVALID_OWNER_ID ((uint32_t)-1)
+
+ struct lock_core;
+ #ifndef lock_internal_spin_unlock_with_wait
+ extern void vPortLockInternalSpinUnlockWithWait( struct lock_core *pxLock, uint32_t ulSave);
+ #define lock_internal_spin_unlock_with_wait(lock, save) vPortLockInternalSpinUnlockWithWait(lock, save)
+ #endif
+
+ #ifndef lock_internal_spin_unlock_with_notify
+ extern void vPortLockInternalSpinUnlockWithNotify( struct lock_core *pxLock, uint32_t save);
+ #define lock_internal_spin_unlock_with_notify(lock, save) vPortLockInternalSpinUnlockWithNotify(lock, save);
+ #endif
+
+ #ifndef lock_internal_spin_unlock_with_best_effort_wait_or_timeout
+ extern bool xPortLockInternalSpinUnlockWithBestEffortWaitOrTimeout( struct lock_core *pxLock, uint32_t ulSave, absolute_time_t uxUntil);
+ #define lock_internal_spin_unlock_with_best_effort_wait_or_timeout(lock, save, until) \
+ xPortLockInternalSpinUnlockWithBestEffortWaitOrTimeout(lock, save, until)
+ #endif
+ #endif /* configSUPPORT_PICO_SYNC_INTEROP */
+
+ #if ( configSUPPORT_PICO_TIME_INTEROP == 1 )
+ extern void xPortSyncInternalYieldUntilBefore(absolute_time_t t);
+ #define sync_internal_yield_until_before(t) xPortSyncInternalYieldUntilBefore(t)
+ #endif /* configSUPPORT_PICO_TIME_INTEROP */
+#endif /* __ASSEMBLER__ */
+#endif \ No newline at end of file
diff --git a/portable/ThirdParty/GCC/RP2040/include/portmacro.h b/portable/ThirdParty/GCC/RP2040/include/portmacro.h
new file mode 100644
index 000000000..d02acb0a0
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/include/portmacro.h
@@ -0,0 +1,236 @@
+/*
+ * FreeRTOS Kernel V10.4.3
+ * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * Copyright (c) 2021 Raspberry Pi (Trading) Ltd.
+ *
+ * SPDX-License-Identifier: MIT AND BSD-3-Clause
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * https://www.FreeRTOS.org
+ * https://github.com/FreeRTOS
+ *
+ */
+
+#ifndef PORTMACRO_H
+ #define PORTMACRO_H
+
+ #ifdef __cplusplus
+ extern "C" {
+ #endif
+
+ #include "pico.h"
+ #include "hardware/sync.h"
+
+/*-----------------------------------------------------------
+ * Port specific definitions.
+ *
+ * The settings in this file configure FreeRTOS correctly for the
+ * given hardware and compiler.
+ *
+ * These settings should not be altered.
+ *-----------------------------------------------------------
+ */
+
+/* Type definitions. */
+ #define portCHAR char
+ #define portFLOAT float
+ #define portDOUBLE double
+ #define portLONG long
+ #define portSHORT short
+ #define portSTACK_TYPE uint32_t
+ #define portBASE_TYPE long
+
+ typedef portSTACK_TYPE StackType_t;
+ typedef int32_t BaseType_t;
+ typedef uint32_t UBaseType_t;
+
+ #if ( configUSE_16_BIT_TICKS == 1 )
+ typedef uint16_t TickType_t;
+ #define portMAX_DELAY ( TickType_t ) 0xffff
+ #else
+ typedef uint32_t TickType_t;
+ #define portMAX_DELAY ( TickType_t ) 0xffffffffUL
+
+/* 32-bit tick type on a 32-bit architecture, so reads of the tick count do
+ * not need to be guarded with a critical section. */
+ #define portTICK_TYPE_IS_ATOMIC 1
+ #endif
+/*-----------------------------------------------------------*/
+
+/* Architecture specifics. */
+ #define portSTACK_GROWTH ( -1 )
+ #define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
+ #define portBYTE_ALIGNMENT 8
+ #define portDONT_DISCARD __attribute__( ( used ) )
+ /* We have to use PICO_DIVIDER_DISABLE_INTERRUPTS as the source of truth rathern than our config,
+ * as our FreeRTOSConfig.h header cannot be included by ASM code - which is what this affects in the SDK */
+ #define portUSE_DIVIDER_SAVE_RESTORE !PICO_DIVIDER_DISABLE_INTERRUPTS
+ #if portUSE_DIVIDER_SAVE_RESTORE
+ #define portSTACK_LIMIT_PADDING 4
+ #endif
+
+/*-----------------------------------------------------------*/
+
+
+/* Scheduler utilities. */
+ extern void vPortYield( void );
+ #define portNVIC_INT_CTRL_REG ( *( ( volatile uint32_t * ) 0xe000ed04 ) )
+ #define portNVIC_PENDSVSET_BIT ( 1UL << 28UL )
+ #define portYIELD() vPortYield()
+ #define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired ) portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT
+ #define portYIELD_FROM_ISR( x ) portEND_SWITCHING_ISR( x )
+
+/*-----------------------------------------------------------*/
+
+/* Exception handlers */
+ #if (configUSE_DYNAMIC_EXCEPTION_HANDLERS == 0)
+ /* We only need to override the SDK's weak functions if we want to replace them at compile time */
+ #define vPortSVCHandler isr_svcall
+ #define xPortPendSVHandler isr_pendsv
+ #define xPortSysTickHandler isr_systick
+ #endif
+
+/*-----------------------------------------------------------*/
+
+/* Multi-core */
+ #define portSUPPORT_SMP 1 /* this is an SMP build which means configNUM_CORES is relevant */
+ #define portMAX_CORE_COUNT 2
+ #ifndef configNUM_CORES
+ #define configNUM_CORES 2
+ #endif
+
+ /* Requires for SMP */
+ #define portCRITICAL_NESTING_IN_TCB 1
+
+ /*-----------------------------------------------------------*/
+
+
+ /* Check validity of number of cores specified in config */
+ #if ( configNUM_CORES < 1 || portMAX_CORE_COUNT < configNUM_CORES )
+ #error "Invalid number of cores specified in config!"
+ #endif
+
+ #if ( configTICK_CORE < 0 || configTICK_CORE > configNUM_CORES )
+ #error "Invalid tick core specified in config!"
+ #endif
+
+ /* FreeRTOS core id is always zero based, so always 0 if we're running on only one core */
+ #if configNUM_CORES == portMAX_CORE_COUNT
+ #define portGET_CORE_ID() get_core_num()
+ #else
+ #define portGET_CORE_ID() 0
+ #endif
+
+ #define portCHECK_IF_IN_ISR() ({ \
+ uint32_t ulIPSR; \
+ __asm volatile ("mrs %0, IPSR" : "=r" (ulIPSR)::); \
+ ((uint8_t)ulIPSR)>0;})
+
+ void vYieldCore(int xCoreID);
+ #define portYIELD_CORE(a) vYieldCore(a)
+ #define portRESTORE_INTERRUPTS(ulState) __asm volatile ("msr PRIMASK,%0"::"r" (ulState) : )
+
+/*-----------------------------------------------------------*/
+
+/* Critical section management. */
+
+ #define portSET_INTERRUPT_MASK_FROM_ISR() ({ uint32_t ulStateISR = portDISABLE_INTERRUPTS(); vTaskEnterCritical(); ulStateISR; })
+ #define portCLEAR_INTERRUPT_MASK_FROM_ISR( x ) do { vTaskExitCritical(); portRESTORE_INTERRUPTS( x ); } while (0)
+
+ #define portDISABLE_INTERRUPTS() ({ \
+ uint32_t ulState; \
+ __asm volatile ("mrs %0, PRIMASK" : "=r" (ulState)::); \
+ __asm volatile ( " cpsid i " ::: "memory" ); \
+ ulState;})
+
+ extern void vPortEnableInterrupts();
+ #define portENABLE_INTERRUPTS() vPortEnableInterrupts()
+
+ void vTaskEnterCritical(void);
+ void vTaskExitCritical(void);
+ #define portENTER_CRITICAL() vTaskEnterCritical()
+ #define portEXIT_CRITICAL() vTaskExitCritical()
+
+ #define portRTOS_SPINLOCK_COUNT 2
+
+ /* Note this is a single method with uxAcquire parameter since we have
+ * static vars, the method is always called with a compile time constant for
+ * uxAcquire, and the compiler should dothe right thing! */
+ static inline void vPortRecursiveLock(uint32_t ulLockNum, spin_lock_t *pxSpinLock, BaseType_t uxAcquire) {
+ static uint8_t ucOwnedByCore[ portMAX_CORE_COUNT ];
+ static uint8_t ucRecursionCountByLock[ portRTOS_SPINLOCK_COUNT ];
+ configASSERT(ulLockNum >= 0 && ulLockNum < portRTOS_SPINLOCK_COUNT );
+ uint32_t ulCoreNum = get_core_num();
+ uint32_t ulLockBit = 1u << ulLockNum;
+ configASSERT(ulLockBit < 256u );
+ if( uxAcquire )
+ {
+ if( __builtin_expect( !*pxSpinLock, 0 ) )
+ {
+ if( ucOwnedByCore[ulCoreNum] & ulLockBit )
+ {
+ configASSERT(ucRecursionCountByLock[ulLockNum] != 255u );
+ ucRecursionCountByLock[ulLockNum]++;
+ return;
+ }
+ while ( __builtin_expect( !*pxSpinLock, 0 ) );
+ }
+ __mem_fence_acquire();
+ configASSERT(ucRecursionCountByLock[ulLockNum] == 0 );
+ ucRecursionCountByLock[ulLockNum] = 1;
+ ucOwnedByCore[ulCoreNum] |= ulLockBit;
+ } else {
+ configASSERT((ucOwnedByCore[ulCoreNum] & ulLockBit) != 0 );
+ configASSERT(ucRecursionCountByLock[ulLockNum] != 0 );
+ if( !--ucRecursionCountByLock[ulLockNum] )
+ {
+ ucOwnedByCore[ulCoreNum] &= ~ulLockBit;
+ __mem_fence_release();
+ *pxSpinLock = 1;
+ }
+ }
+ }
+
+ #define portGET_ISR_LOCK() vPortRecursiveLock(0, spin_lock_instance(configSMP_SPINLOCK_0), pdTRUE)
+ #define portRELEASE_ISR_LOCK() vPortRecursiveLock(0, spin_lock_instance(configSMP_SPINLOCK_0), pdFALSE)
+ #define portGET_TASK_LOCK() vPortRecursiveLock(1, spin_lock_instance(configSMP_SPINLOCK_1), pdTRUE)
+ #define portRELEASE_TASK_LOCK() vPortRecursiveLock(1, spin_lock_instance(configSMP_SPINLOCK_1), pdFALSE)
+
+/*-----------------------------------------------------------*/
+
+/* Tickless idle/low power functionality. */
+ #ifndef portSUPPRESS_TICKS_AND_SLEEP
+ extern void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime );
+ #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) vPortSuppressTicksAndSleep( xExpectedIdleTime )
+ #endif
+/*-----------------------------------------------------------*/
+
+/* Task function macros as described on the FreeRTOS.org WEB site. */
+ #define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void * pvParameters )
+ #define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void * pvParameters )
+
+ #define portNOP()
+
+ #define portMEMORY_BARRIER() __asm volatile ( "" ::: "memory" )
+
+ #ifdef __cplusplus
+ }
+ #endif
+
+#endif /* PORTMACRO_H */
diff --git a/portable/ThirdParty/GCC/RP2040/include/rp2040_config.h b/portable/ThirdParty/GCC/RP2040/include/rp2040_config.h
new file mode 100644
index 000000000..53281eb20
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/include/rp2040_config.h
@@ -0,0 +1,89 @@
+/*
+ * FreeRTOS Kernel V10.4.3
+ * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * Copyright (c) 2021 Raspberry Pi (Trading) Ltd.
+ *
+ * SPDX-License-Identifier: MIT AND BSD-3-Clause
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * https://www.FreeRTOS.org
+ * https://github.com/FreeRTOS
+ */
+
+#ifndef RP2040_CONFIG_H
+#define RP2040_CONFIG_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* configUSE_DYNAMIC_EXCEPTION_HANDLERS == 1 means set the exception handlers dynamically on cores
+ * that need them in case the user has set up distinct vector table offsets per core
+ */
+#ifndef configUSE_DYNAMIC_EXCEPTION_HANDLERS
+ #if defined( PICO_NO_RAM_VECTOR_TABLE ) && ( PICO_NO_RAM_VECTOR_TABLE == 1 )
+ #define configUSE_DYNAMIC_EXCEPTION_HANDLERS 0
+ #else
+ #define configUSE_DYNAMIC_EXCEPTION_HANDLERS 1
+ #endif
+#endif
+
+/* configSUPPORT_PICO_SYNC_INTEROP == 1 means that SDK pico_sync
+ * sem/mutex/queue etc. will work correctly when called from FreeRTOS tasks
+ */
+#ifndef configSUPPORT_PICO_SYNC_INTEROP
+ #if LIB_PICO_SYNC
+ #define configSUPPORT_PICO_SYNC_INTEROP 1
+ #endif
+#endif
+
+/* configSUPPORT_PICO_SYNC_INTEROP == 1 means that SDK pico_time
+ * sleep_ms/sleep_us/sleep_until will work correctly when called from FreeRTOS
+ * tasks, and will actually block at the FreeRTOS level
+ */
+#ifndef configSUPPORT_PICO_TIME_INTEROP
+ #if LIB_PICO_TIME
+ #define configSUPPORT_PICO_TIME_INTEROP 1
+ #endif
+#endif
+
+#if (configNUM_CORES > 1)
+ /* configTICK_CORE indicates which core should handle the SysTick
+ * interrupts */
+ #ifndef configTICK_CORE
+ #define configTICK_CORE 0
+ #endif
+#endif
+
+/* This SMP port requires two spin locks, which are claimed from the SDK.
+ * the spin lock numbers to be used are defined statically and defaulted here
+ * to the values nominally set aside for RTOS by the SDK */
+#ifndef configSMP_SPINLOCK_0
+ #define configSMP_SPINLOCK_0 PICO_SPINLOCK_ID_OS1
+#endif
+
+#ifndef configSMP_SPINLOCK_1
+ #define configSMP_SPINLOCK_1 PICO_SPINLOCK_ID_OS2
+#endif
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif
diff --git a/portable/ThirdParty/GCC/RP2040/library.cmake b/portable/ThirdParty/GCC/RP2040/library.cmake
new file mode 100644
index 000000000..1f729955c
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/library.cmake
@@ -0,0 +1,66 @@
+# Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
+# Called after the Raspberry Pi Pico SDK has been initialized to add our libraries
+
+add_library(FreeRTOS-Kernel-Core INTERFACE)
+target_sources(FreeRTOS-Kernel-Core INTERFACE
+ ${FREERTOS_KERNEL_PATH}/croutine.c
+ ${FREERTOS_KERNEL_PATH}/event_groups.c
+ ${FREERTOS_KERNEL_PATH}/list.c
+ ${FREERTOS_KERNEL_PATH}/queue.c
+ ${FREERTOS_KERNEL_PATH}/stream_buffer.c
+ ${FREERTOS_KERNEL_PATH}/tasks.c
+ ${FREERTOS_KERNEL_PATH}/timers.c
+ )
+target_include_directories(FreeRTOS-Kernel-Core INTERFACE ${FREERTOS_KERNEL_PATH}/include)
+
+add_library(FreeRTOS-Kernel INTERFACE)
+target_sources(FreeRTOS-Kernel INTERFACE
+ ${CMAKE_CURRENT_LIST_DIR}/port.c
+)
+
+target_include_directories(FreeRTOS-Kernel INTERFACE
+ ${CMAKE_CURRENT_LIST_DIR}/include)
+
+target_link_libraries(FreeRTOS-Kernel INTERFACE
+ FreeRTOS-Kernel-Core
+ pico_base_headers
+ hardware_clocks
+ hardware_exception
+ pico_multicore
+)
+
+target_compile_definitions(FreeRTOS-Kernel INTERFACE
+ LIB_FREERTOS_KERNEL=1
+ FREE_RTOS_KERNEL_SMP=1
+)
+
+add_library(FreeRTOS-Kernel-Static INTERFACE)
+target_compile_definitions(FreeRTOS-Kernel-Static INTERFACE
+ configSUPPORT_STATIC_ALLOCATION=1
+ )
+
+target_sources(FreeRTOS-Kernel-Static INTERFACE ${CMAKE_CURRENT_LIST_DIR}/idle_task_static_memory.c)
+target_link_libraries(FreeRTOS-Kernel-Static INTERFACE FreeRTOS-Kernel)
+
+add_library(FreeRTOS-Kernel-Heap1 INTERFACE)
+target_sources(FreeRTOS-Kernel-Heap1 INTERFACE ${FREERTOS_KERNEL_PATH}/portable/MemMang/heap_1.c)
+target_link_libraries(FreeRTOS-Kernel-Heap1 INTERFACE FreeRTOS-Kernel)
+
+add_library(FreeRTOS-Kernel-Heap2 INTERFACE)
+target_sources(FreeRTOS-Kernel-Heap2 INTERFACE ${FREERTOS_KERNEL_PATH}/portable/MemMang/heap_2.c)
+target_link_libraries(FreeRTOS-Kernel-Heap2 INTERFACE FreeRTOS-Kernel)
+
+add_library(FreeRTOS-Kernel-Heap3 INTERFACE)
+target_sources(FreeRTOS-Kernel-Heap3 INTERFACE ${FREERTOS_KERNEL_PATH}/portable/MemMang/heap_3.c)
+target_link_libraries(FreeRTOS-Kernel-Heap3 INTERFACE FreeRTOS-Kernel)
+
+add_library(FreeRTOS-Kernel-Heap4 INTERFACE)
+target_sources(FreeRTOS-Kernel-Heap4 INTERFACE ${FREERTOS_KERNEL_PATH}/portable/MemMang/heap_4.c)
+target_link_libraries(FreeRTOS-Kernel-Heap4 INTERFACE FreeRTOS-Kernel)
+
+add_library(FreeRTOS-Kernel-Heap5 INTERFACE)
+target_sources(FreeRTOS-Kernel-Heap5 INTERFACE ${FREERTOS_KERNEL_PATH}/portable/MemMang/heap_5.c)
+target_link_libraries(FreeRTOS-Kernel-Heap5 INTERFACE FreeRTOS-Kernel)
diff --git a/portable/ThirdParty/GCC/RP2040/pico_sdk_import.cmake b/portable/ThirdParty/GCC/RP2040/pico_sdk_import.cmake
new file mode 100644
index 000000000..e6c7a66ea
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/pico_sdk_import.cmake
@@ -0,0 +1,66 @@
+# Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
+# This is a copy of <PICO_SDK_PATH>/external/pico_sdk_import.cmake
+
+# This can be dropped into an external project to help locate this SDK
+# It should be include()ed prior to project()
+
+if (DEFINED ENV{PICO_SDK_PATH} AND (NOT PICO_SDK_PATH))
+ set(PICO_SDK_PATH $ENV{PICO_SDK_PATH})
+ message("Using PICO_SDK_PATH from environment ('${PICO_SDK_PATH}')")
+endif ()
+
+if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT} AND (NOT PICO_SDK_FETCH_FROM_GIT))
+ set(PICO_SDK_FETCH_FROM_GIT $ENV{PICO_SDK_FETCH_FROM_GIT})
+ message("Using PICO_SDK_FETCH_FROM_GIT from environment ('${PICO_SDK_FETCH_FROM_GIT}')")
+endif ()
+
+if (DEFINED ENV{PICO_SDK_FETCH_FROM_GIT_PATH} AND (NOT PICO_SDK_FETCH_FROM_GIT_PATH))
+ set(PICO_SDK_FETCH_FROM_GIT_PATH $ENV{PICO_SDK_FETCH_FROM_GIT_PATH})
+ message("Using PICO_SDK_FETCH_FROM_GIT_PATH from environment ('${PICO_SDK_FETCH_FROM_GIT_PATH}')")
+endif ()
+
+set(PICO_SDK_PATH "${PICO_SDK_PATH}" CACHE PATH "Path to the Raspberry Pi Pico SDK")
+set(PICO_SDK_FETCH_FROM_GIT "${PICO_SDK_FETCH_FROM_GIT}" CACHE BOOL "Set to ON to fetch copy of SDK from git if not otherwise locatable")
+set(PICO_SDK_FETCH_FROM_GIT_PATH "${PICO_SDK_FETCH_FROM_GIT_PATH}" CACHE FILEPATH "location to download SDK")
+
+if (NOT PICO_SDK_PATH)
+ if (PICO_SDK_FETCH_FROM_GIT)
+ include(FetchContent)
+ set(FETCHCONTENT_BASE_DIR_SAVE ${FETCHCONTENT_BASE_DIR})
+ if (PICO_SDK_FETCH_FROM_GIT_PATH)
+ get_filename_component(FETCHCONTENT_BASE_DIR "${PICO_SDK_FETCH_FROM_GIT_PATH}" REALPATH BASE_DIR "${CMAKE_SOURCE_DIR}")
+ endif ()
+ FetchContent_Declare(
+ pico_sdk
+ GIT_REPOSITORY https://github.com/raspberrypi/pico-sdk
+ GIT_TAG master
+ )
+ if (NOT pico_sdk)
+ message("Downloading Raspberry Pi Pico SDK")
+ FetchContent_Populate(pico_sdk)
+ set(PICO_SDK_PATH ${pico_sdk_SOURCE_DIR})
+ endif ()
+ set(FETCHCONTENT_BASE_DIR ${FETCHCONTENT_BASE_DIR_SAVE})
+ else ()
+ message(FATAL_ERROR
+ "SDK location was not specified. Please set PICO_SDK_PATH or set PICO_SDK_FETCH_FROM_GIT to on to fetch from git."
+ )
+ endif ()
+endif ()
+
+get_filename_component(PICO_SDK_PATH "${PICO_SDK_PATH}" REALPATH BASE_DIR "${CMAKE_BINARY_DIR}")
+if (NOT EXISTS ${PICO_SDK_PATH})
+ message(FATAL_ERROR "Directory '${PICO_SDK_PATH}' not found")
+endif ()
+
+set(PICO_SDK_INIT_CMAKE_FILE ${PICO_SDK_PATH}/pico_sdk_init.cmake)
+if (NOT EXISTS ${PICO_SDK_INIT_CMAKE_FILE})
+ message(FATAL_ERROR "Directory '${PICO_SDK_PATH}' does not appear to contain the Raspberry Pi Pico SDK")
+endif ()
+
+set(PICO_SDK_PATH ${PICO_SDK_PATH} CACHE PATH "Path to the Raspberry Pi Pico SDK" FORCE)
+
+include(${PICO_SDK_INIT_CMAKE_FILE})
diff --git a/portable/ThirdParty/GCC/RP2040/port.c b/portable/ThirdParty/GCC/RP2040/port.c
new file mode 100644
index 000000000..75fdf7e41
--- /dev/null
+++ b/portable/ThirdParty/GCC/RP2040/port.c
@@ -0,0 +1,910 @@
+/*
+ * FreeRTOS Kernel V10.4.3
+ * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * Copyright (c) 2021 Raspberry Pi (Trading) Ltd.
+ *
+ * SPDX-License-Identifier: MIT AND BSD-3-Clause
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * https://www.FreeRTOS.org
+ * https://github.com/FreeRTOS
+ *
+ */
+
+/*----------------------------------------------------------------------
+* Implementation of functions defined in portable.h for the RP2040 port.
+*----------------------------------------------------------------------*/
+
+#include "FreeRTOS.h"
+#include "task.h"
+#include "rp2040_config.h"
+
+#include "pico/multicore.h"
+#include "hardware/clocks.h"
+#include "hardware/exception.h"
+#include "hardware/irq.h"
+
+#if ( portMAX_CORE_COUNT != 2 )
+ #error Max core count should be 2
+#endif
+
+// Note currently we support configNUM_CORES == 1 with SMP, thought it isn't 100% clear why you wouldn't
+// just use the non SMP version; keeping around for now in case the code bases are merged.
+#define portRUNNING_ON_BOTH_CORES (configNUM_CORES == portMAX_CORE_COUNT)
+
+/* Constants required to manipulate the NVIC. */
+#define portNVIC_SYSTICK_CTRL_REG ( *( ( volatile uint32_t * ) 0xe000e010 ) )
+#define portNVIC_SYSTICK_LOAD_REG ( *( ( volatile uint32_t * ) 0xe000e014 ) )
+#define portNVIC_SYSTICK_CURRENT_VALUE_REG ( *( ( volatile uint32_t * ) 0xe000e018 ) )
+#define portNVIC_INT_CTRL_REG ( *( ( volatile uint32_t * ) 0xe000ed04 ) )
+#define portNVIC_SHPR3_REG ( *( ( volatile uint32_t * ) 0xe000ed20 ) )
+#define portNVIC_SYSTICK_CLK_BIT ( 1UL << 2UL )
+#define portNVIC_SYSTICK_INT_BIT ( 1UL << 1UL )
+#define portNVIC_SYSTICK_ENABLE_BIT ( 1UL << 0UL )
+#define portNVIC_SYSTICK_COUNT_FLAG_BIT ( 1UL << 16UL )
+#define portNVIC_PENDSVSET_BIT ( 1UL << 28UL )
+#define portMIN_INTERRUPT_PRIORITY ( 255UL )
+#define portNVIC_PENDSV_PRI ( portMIN_INTERRUPT_PRIORITY << 16UL )
+#define portNVIC_SYSTICK_PRI ( portMIN_INTERRUPT_PRIORITY << 24UL )
+
+/* Constants required to set up the initial stack. */
+#define portINITIAL_XPSR ( 0x01000000 )
+
+/* The systick is a 24-bit counter. */
+#define portMAX_24_BIT_NUMBER ( 0xffffffUL )
+
+/* A fiddle factor to estimate the number of SysTick counts that would have
+ * occurred while the SysTick counter is stopped during tickless idle
+ * calculations. */
+#ifndef portMISSED_COUNTS_FACTOR
+ #define portMISSED_COUNTS_FACTOR ( 45UL )
+#endif
+
+/* Let the user override the pre-loading of the initial LR with the address of
+ * prvTaskExitError() in case it messes up unwinding of the stack in the
+ * debugger. */
+#ifdef configTASK_RETURN_ADDRESS
+ #define portTASK_RETURN_ADDRESS configTASK_RETURN_ADDRESS
+#else
+ #define portTASK_RETURN_ADDRESS prvTaskExitError
+#endif
+
+/*
+ * Setup the timer to generate the tick interrupts. The implementation in this
+ * file is weak to allow application writers to change the timer used to
+ * generate the tick interrupt.
+ */
+void vPortSetupTimerInterrupt( void );
+
+/*
+ * Exception handlers.
+ */
+void xPortPendSVHandler( void ) __attribute__( ( naked ) );
+void xPortSysTickHandler( void );
+void vPortSVCHandler( void );
+
+/*
+ * Start first task is a separate function so it can be tested in isolation.
+ */
+static void vPortStartFirstTask( void ) __attribute__( ( naked ) );
+
+/*
+ * Used to catch tasks that attempt to return from their implementing function.
+ */
+static void prvTaskExitError( void );
+
+/*-----------------------------------------------------------*/
+
+/*-----------------------------------------------------------*/
+
+#if ( configSUPPORT_PICO_SYNC_INTEROP == 1 )
+ #include "event_groups.h"
+ #if configSUPPORT_STATIC_ALLOCATION
+ static StaticEventGroup_t xStaticEventGroup;
+ #define pEventGroup (&xStaticEventGroup)
+ #endif /* configSUPPORT_STATIC_ALLOCATION */
+ static EventGroupHandle_t xEventGroup;
+ static EventBits_t uxCrossCoreEventBits;
+ static spin_lock_t * pxCrossCoreSpinLock;
+ static spin_lock_t * pxYieldSpinLock;
+ static uint32_t ulYieldSpinLockSaveValue;
+#endif /* configSUPPORT_PICO_SYNC_INTEROP */
+
+/*
+ * The number of SysTick increments that make up one tick period.
+ */
+#if ( configUSE_TICKLESS_IDLE == 1 )
+ static uint32_t ulTimerCountsForOneTick = 0;
+#endif /* configUSE_TICKLESS_IDLE */
+
+/*
+ * The maximum number of tick periods that can be suppressed is limited by the
+ * 24 bit resolution of the SysTick timer.
+ */
+#if ( configUSE_TICKLESS_IDLE == 1 )
+ static uint32_t xMaximumPossibleSuppressedTicks = 0;
+#endif /* configUSE_TICKLESS_IDLE */
+
+/*
+ * Compensate for the CPU cycles that pass while the SysTick is stopped (low
+ * power functionality only.
+ */
+#if ( configUSE_TICKLESS_IDLE == 1 )
+ static uint32_t ulStoppedTimerCompensation = 0;
+#endif /* configUSE_TICKLESS_IDLE */
+
+/*-----------------------------------------------------------*/
+
+#define INVALID_PRIMARY_CORE_NUM 0xffu
+/* The primary core number (the own which has the SysTick handler) */
+static uint8_t ucPrimaryCoreNum = INVALID_PRIMARY_CORE_NUM;
+
+/* Note: portIS_FREE_RTOS_CORE() also returns false until the scheduler is started */
+#if ( portRUNNING_ON_BOTH_CORES == 1 )
+ #define portIS_FREE_RTOS_CORE() (ucPrimaryCoreNum != INVALID_PRIMARY_CORE_NUM)
+#else
+ #define portIS_FREE_RTOS_CORE() (ucPrimaryCoreNum == get_core_num())
+#endif
+
+/*
+ * See header file for description.
+ */
+StackType_t * pxPortInitialiseStack( StackType_t * pxTopOfStack,
+ TaskFunction_t pxCode,
+ void * pvParameters )
+{
+ /* Simulate the stack frame as it would be created by a context switch
+ * interrupt. */
+ pxTopOfStack--; /* Offset added to account for the way the MCU uses the stack on entry/exit of interrupts. */
+ *pxTopOfStack = portINITIAL_XPSR; /* xPSR */
+ pxTopOfStack--;
+ *pxTopOfStack = ( StackType_t ) pxCode; /* PC */
+ pxTopOfStack--;
+ *pxTopOfStack = ( StackType_t ) portTASK_RETURN_ADDRESS; /* LR */
+ pxTopOfStack -= 5; /* R12, R3, R2 and R1. */
+ *pxTopOfStack = ( StackType_t ) pvParameters; /* R0 */
+ pxTopOfStack -= 8; /* R11..R4. */
+
+ return pxTopOfStack;
+}
+/*-----------------------------------------------------------*/
+
+static void prvTaskExitError( void )
+{
+ /* A function that implements a task must not exit or attempt to return to
+ * its caller as there is nothing to return to. If a task wants to exit it
+ * should instead call vTaskDelete( NULL ). */
+ panic_unsupported();
+}
+/*-----------------------------------------------------------*/
+
+void vPortSVCHandler( void )
+{
+ /* This function is no longer used, but retained for backward
+ * compatibility. */
+}
+/*-----------------------------------------------------------*/
+
+void vPortStartFirstTask( void )
+{
+ __asm volatile (
+ " .syntax unified \n"
+ #if configRESET_STACK_POINTER
+ " ldr r0, =0xE000ED08 \n" /* Use the NVIC offset register to locate the stack. */
+ " ldr r0, [r0] \n"
+ " ldr r0, [r0] \n"
+ " msr msp, r0 \n" /* Set the msp back to the start of the stack. */
+ #endif /* configRESET_STACK_POINTER */
+ #if portRUNNING_ON_BOTH_CORES
+ " adr r1, ulAsmLocals \n"/* Get the location of the current TCB for the current core. */
+ " ldmia r1!, {r2, r3} \n"
+ " ldr r2, [r2] \n"/* r2 = Core number */
+ " lsls r2, #2 \n"
+ " ldr r3, [r3, r2] \n"/* r3 = pxCurrentTCBs[get_core_num()] */
+ #else
+ " ldr r3, =pxCurrentTCBs \n"
+ " ldr r3, [r3] \n" /* r3 = pxCurrentTCBs[0] */
+ #endif /* portRUNNING_ON_BOTH_CORES */
+ " ldr r0, [r3] \n"/* The first item in pxCurrentTCB is the task top of stack. */
+ " adds r0, #32 \n"/* Discard everything up to r0. */
+ " msr psp, r0 \n"/* This is now the new top of stack to use in the task. */
+ " movs r0, #2 \n"/* Switch to the psp stack. */
+ " msr CONTROL, r0 \n"
+ " isb \n"
+ " pop {r0-r5} \n"/* Pop the registers that are saved automatically. */
+ " mov lr, r5 \n"/* lr is now in r5. */
+ " pop {r3} \n"/* Return address is now in r3. */
+ " pop {r2} \n"/* Pop and discard XPSR. */
+ " cpsie i \n"/* The first task has its context and interrupts can be enabled. */
+ " bx r3 \n"/* Finally, jump to the user defined task code. */
+ #if portRUNNING_ON_BOTH_CORES
+ " \n"
+ " .align 4 \n"
+ "ulAsmLocals: \n"
+ " .word 0xD0000000 \n"/* SIO */
+ " .word pxCurrentTCBs \n"
+ #endif /* portRUNNING_ON_BOTH_CORES */
+ );
+}
+/*-----------------------------------------------------------*/
+
+static void prvFIFOInterruptHandler()
+{
+ /* We must remove the contents (which we don't care about)
+ * to clear the IRQ */
+ multicore_fifo_drain();
+ /* And explicitly clear any other IRQ flags */
+ multicore_fifo_clear_irq();
+ #if ( portRUNNING_ON_BOTH_CORES == 1 )
+ portYIELD_FROM_ISR(pdTRUE);
+ #elif ( configSUPPORT_PICO_SYNC_INTEROP == 1 )
+ BaseType_t xHigherPriorityTaskWoken = pdFALSE;
+ uint32_t ulSave = spin_lock_blocking( pxCrossCoreSpinLock );
+ EventBits_t ulBits = uxCrossCoreEventBits;
+ uxCrossCoreEventBits &= ~ulBits;
+ spin_unlock( pxCrossCoreSpinLock, ulSave );
+ xEventGroupSetBitsFromISR( xEventGroup, ulBits, &xHigherPriorityTaskWoken );
+ portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+ #endif /* portRUNNING_ON_BOTH_CORES */
+}
+
+/*
+ * See header file for description.
+ */
+static BaseType_t xPortStartSchedulerOnCore()
+{
+ if( ucPrimaryCoreNum == get_core_num())
+ {
+ /* Start the timer that generates the tick ISR. Interrupts are disabled
+ * here already. */
+ vPortSetupTimerInterrupt();
+
+ /* Make PendSV, CallSV and SysTick the same priority as the kernel. */
+ portNVIC_SHPR3_REG |= portNVIC_SYSTICK_PRI;
+ #if ( configUSE_DYNAMIC_EXCEPTION_HANDLERS == 1 )
+ exception_set_exclusive_handler( SYSTICK_EXCEPTION, xPortSysTickHandler );
+ #endif
+ }
+
+ portNVIC_SHPR3_REG |= portNVIC_PENDSV_PRI;
+
+ #if ( configUSE_DYNAMIC_EXCEPTION_HANDLERS == 1 )
+ exception_set_exclusive_handler( PENDSV_EXCEPTION, xPortPendSVHandler );
+ exception_set_exclusive_handler( SVCALL_EXCEPTION, vPortSVCHandler );
+ #endif
+
+ /* Install FIFO handler to receive interrupt from other core */
+ multicore_fifo_clear_irq();
+ multicore_fifo_drain();
+ uint32_t ulIRQNum = SIO_IRQ_PROC0 + get_core_num();
+ irq_set_priority( ulIRQNum, portMIN_INTERRUPT_PRIORITY );
+ irq_set_exclusive_handler( ulIRQNum, prvFIFOInterruptHandler );
+ irq_set_enabled( ulIRQNum, 1 );
+
+ /* Start the first task. */
+ vPortStartFirstTask();
+
+ /* Should never get here as the tasks will now be executing! Call the task
+ * exit error function to prevent compiler warnings about a static function
+ * not being called in the case that the application writer overrides this
+ * functionality by defining configTASK_RETURN_ADDRESS. Call
+ * vTaskSwitchContext() so link time optimisation does not remove the
+ * symbol. */
+ vTaskSwitchContext( portGET_CORE_ID() );
+ prvTaskExitError();
+
+ /* Should not get here! */
+ return 0;
+}
+
+#if portRUNNING_ON_BOTH_CORES
+ static void prvDisableInterruptsAndPortStartSchedulerOnCore( void )
+ {
+ portDISABLE_INTERRUPTS();
+ xPortStartSchedulerOnCore();
+ }
+#endif
+
+/*
+ * See header file for description.
+ */
+BaseType_t xPortStartScheduler( void )
+{
+ configASSERT( ucPrimaryCoreNum == INVALID_PRIMARY_CORE_NUM );
+
+ /* No one else should use these! */
+ spin_lock_claim( configSMP_SPINLOCK_0 );
+ spin_lock_claim( configSMP_SPINLOCK_1 );
+
+ #if portRUNNING_ON_BOTH_CORES
+ ucPrimaryCoreNum = configTICK_CORE;
+ configASSERT( get_core_num() == 0) ; // we must be started on core 0
+ multicore_launch_core1( prvDisableInterruptsAndPortStartSchedulerOnCore );
+ #else
+ ucPrimaryCoreNum = get_core_num();
+ #endif
+ xPortStartSchedulerOnCore();
+
+ /* Should not get here! */
+ return 0;
+}
+/*-----------------------------------------------------------*/
+
+void vPortEndScheduler( void )
+{
+ /* Not implemented in ports where there is nothing to return to. */
+ panic_unsupported();
+}
+/*-----------------------------------------------------------*/
+
+void vPortYield( void )
+{
+ #if ( configSUPPORT_PICO_SYNC_INTEROP == 1 )
+ /* We are not in an ISR, and pxYieldSpinLock is always dealt with and
+ * cleared interrupts are re-enabled, so should be NULL */
+ configASSERT( pxYieldSpinLock == NULL );
+ #endif /* configSUPPORT_PICO_SYNC_INTEROP */
+
+ /* Set a PendSV to request a context switch. */
+ portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;
+
+ /* Barriers are normally not required but do ensure the code is completely
+ * within the specified behaviour for the architecture. */
+ __asm volatile ( "dsb" ::: "memory" );
+ __asm volatile ( "isb" );
+}
+
+void vPortEnableInterrupts( void )
+{
+ #if ( configSUPPORT_PICO_SYNC_INTEROP == 1 )
+ if( pxYieldSpinLock )
+ {
+ spin_unlock(pxYieldSpinLock, ulYieldSpinLockSaveValue);
+ pxYieldSpinLock = NULL;
+ }
+ #endif
+ __asm volatile ( " cpsie i " ::: "memory" );
+}
+
+void vYieldCore( int xCoreID )
+{
+ configASSERT(xCoreID != portGET_CORE_ID());
+ #if portRUNNING_ON_BOTH_CORES
+ /* Non blocking, will cause interrupt on other core if the queue isn't already full,
+ in which case an IRQ must be pending */
+ sio_hw->fifo_wr = 0;
+ #endif
+}
+
+/*-----------------------------------------------------------*/
+
+void xPortPendSVHandler( void )
+{
+ /* This is a naked function. */
+
+ __asm volatile
+ (
+ " .syntax unified \n"
+ " mrs r1, psp \n"
+ " \n"
+ " adr r0, ulAsmLocals2 \n"/* Get the location of the current TCB for the current core. */
+ " ldmia r0!, {r2, r3} \n"
+ #if portRUNNING_ON_BOTH_CORES
+ " ldr r0, [r2] \n"/* r0 = Core number */
+ " lsls r0, r0, #2 \n"
+ " adds r3, r0 \n"/* r3 = &pxCurrentTCBs[get_core_num()] */
+ #else
+ " \n"/* r3 = &pxCurrentTCBs[0] */
+ #endif /* portRUNNING_ON_BOTH_CORES */
+ " ldr r0, [r3] \n"/* r0 = pxCurrentTCB */
+ " \n"
+ " subs r1, r1, #32 \n"/* Make space for the remaining low registers. */
+ " str r1, [r0] \n"/* Save the new top of stack. */
+ " stmia r1!, {r4-r7} \n"/* Store the low registers that are not saved automatically. */
+ " mov r4, r8 \n"/* Store the high registers. */
+ " mov r5, r9 \n"
+ " mov r6, r10 \n"
+ " mov r7, r11 \n"
+ " stmia r1!, {r4-r7} \n"
+ #if portUSE_DIVIDER_SAVE_RESTORE
+ /* We expect that the divider is ready at this point (which is
+ * necessary to safely save/restore), because:
+ * a) if we have not been interrupted since we entered this method,
+ * then >8 cycles have clearly passed, so the divider is done
+ * b) if we were interrupted in the interim, then any "safe" - i.e.
+ * does the right thing in an IRQ - use of the divider should
+ * have waited for any in-process divide to complete, saved and
+ * then fully restored the result, thus the result is ready in
+ * that case too. */
+ " ldr r4, [r2, #0x60] \n"/* SIO_DIV_UDIVIDEND_OFFSET */
+ " ldr r5, [r2, #0x64] \n"/* SIO_DIV_UDIVISOR_OFFSET */
+ " ldr r6, [r2, #0x74] \n"/* SIO_DIV_REMAINDER_OFFSET */
+ " ldr r7, [r2, #0x70] \n"/* SIO_DIV_QUOTIENT_OFFSET */
+ /* We actually save the divider state in the 4 words below
+ * our recorded stack pointer, so as not to disrupt the stack
+ * frame expected by debuggers - this is addressed by
+ * portEXTRA_STACK_SIZE */
+ " subs r1, r1, #48 \n"
+ " stmia r1!, {r4-r7} \n"
+ #endif /* portUSE_DIVIDER_SAVE_RESTORE */
+ #if portRUNNING_ON_BOTH_CORES
+ " ldr r0, [r2] \n"/* r0 = Core number */
+ #else
+ " movs r0, #0 \n"
+ #endif /* portRUNNING_ON_BOTH_CORES */
+ " push {r3, r14} \n"
+ " cpsid i \n"
+ " bl vTaskSwitchContext \n"
+ " cpsie i \n"
+ " pop {r2, r3} \n"/* lr goes in r3. r2 now holds tcb pointer. */
+ " \n"
+ " ldr r1, [r2] \n"
+ " ldr r0, [r1] \n"/* The first item in pxCurrentTCB is the task top of stack. */
+ " adds r0, r0, #16 \n"/* Move to the high registers. */
+ " ldmia r0!, {r4-r7} \n"/* Pop the high registers. */
+ " mov r8, r4 \n"
+ " mov r9, r5 \n"
+ " mov r10, r6 \n"
+ " mov r11, r7 \n"
+ " \n"
+ " msr psp, r0 \n"/* Remember the new top of stack for the task. */
+ " \n"
+ #if portUSE_DIVIDER_SAVE_RESTORE
+ " movs r2, #0xd \n"/* Pop the divider state. */
+ " lsls r2, #28 \n"
+ " subs r0, r0, #48 \n"/* Go back for the divider state */
+ " ldmia r0!, {r4-r7} \n"/* Pop the divider state. */
+ /* Note always restore via SIO_DIV_UDIVI*, because we will overwrite the
+ * results stopping the calculation anyway, however the sign of results
+ * is adjusted by the h/w at read time based on whether the last started
+ * division was signed and the inputs' signs differed */
+ " str r4, [r2, #0x60] \n"/* SIO_DIV_UDIVIDEND_OFFSET */
+ " str r5, [r2, #0x64] \n"/* SIO_DIV_UDIVISOR_OFFSET */
+ " str r6, [r2, #0x74] \n"/* SIO_DIV_REMAINDER_OFFSET */
+ " str r7, [r2, #0x70] \n"/* SIO_DIV_QUOTIENT_OFFSET */
+ #else
+ " subs r0, r0, #32 \n"/* Go back for the low registers that are not automatically restored. */
+ #endif /* portUSE_DIVIDER_SAVE_RESTORE */
+ " ldmia r0!, {r4-r7} \n"/* Pop low registers. */
+ " \n"
+ " bx r3 \n"
+ " \n"
+ " .align 4 \n"
+ "ulAsmLocals2: \n"
+ " .word 0xD0000000 \n"/* SIO */
+ " .word pxCurrentTCBs \n"
+ );
+}
+/*-----------------------------------------------------------*/
+
+void xPortSysTickHandler( void )
+{
+ uint32_t ulPreviousMask;
+
+ ulPreviousMask = portSET_INTERRUPT_MASK_FROM_ISR();
+ {
+ /* Increment the RTOS tick. */
+ if( xTaskIncrementTick() != pdFALSE )
+ {
+ /* Pend a context switch. */
+ portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;
+ }
+ }
+ portCLEAR_INTERRUPT_MASK_FROM_ISR( ulPreviousMask );
+}
+/*-----------------------------------------------------------*/
+
+/*
+ * Setup the systick timer to generate the tick interrupts at the required
+ * frequency.
+ */
+__attribute__( ( weak ) ) void vPortSetupTimerInterrupt( void )
+{
+ /* Calculate the constants required to configure the tick interrupt. */
+ #if ( configUSE_TICKLESS_IDLE == 1 )
+ {
+ ulTimerCountsForOneTick = ( clock_get_hz(clk_sys) / configTICK_RATE_HZ );
+ xMaximumPossibleSuppressedTicks = portMAX_24_BIT_NUMBER / ulTimerCountsForOneTick;
+ ulStoppedTimerCompensation = portMISSED_COUNTS_FACTOR;
+ }
+ #endif /* configUSE_TICKLESS_IDLE */
+
+ /* Stop and reset the SysTick. */
+ portNVIC_SYSTICK_CTRL_REG = 0UL;
+ portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL;
+
+ /* Configure SysTick to interrupt at the requested rate. */
+ portNVIC_SYSTICK_LOAD_REG = ( clock_get_hz( clk_sys ) / configTICK_RATE_HZ ) - 1UL;
+ portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT;
+}
+/*-----------------------------------------------------------*/
+
+#if ( configUSE_TICKLESS_IDLE == 1 )
+
+ __attribute__( ( weak ) ) void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime )
+ {
+ uint32_t ulReloadValue, ulCompleteTickPeriods, ulCompletedSysTickDecrements;
+ TickType_t xModifiableIdleTime;
+
+ /* Make sure the SysTick reload value does not overflow the counter. */
+ if( xExpectedIdleTime > xMaximumPossibleSuppressedTicks )
+ {
+ xExpectedIdleTime = xMaximumPossibleSuppressedTicks;
+ }
+
+ /* Stop the SysTick momentarily. The time the SysTick is stopped for
+ * is accounted for as best it can be, but using the tickless mode will
+ * inevitably result in some tiny drift of the time maintained by the
+ * kernel with respect to calendar time. */
+ portNVIC_SYSTICK_CTRL_REG &= ~portNVIC_SYSTICK_ENABLE_BIT;
+
+ /* Calculate the reload value required to wait xExpectedIdleTime
+ * tick periods. -1 is used because this code will execute part way
+ * through one of the tick periods. */
+ ulReloadValue = portNVIC_SYSTICK_CURRENT_VALUE_REG + ( ulTimerCountsForOneTick * ( xExpectedIdleTime - 1UL ) );
+
+ if( ulReloadValue > ulStoppedTimerCompensation )
+ {
+ ulReloadValue -= ulStoppedTimerCompensation;
+ }
+
+ /* Enter a critical section but don't use the taskENTER_CRITICAL()
+ * method as that will mask interrupts that should exit sleep mode. */
+ __asm volatile ( "cpsid i" ::: "memory" );
+ __asm volatile ( "dsb" );
+ __asm volatile ( "isb" );
+
+ /* If a context switch is pending or a task is waiting for the scheduler
+ * to be unsuspended then abandon the low power entry. */
+ if( eTaskConfirmSleepModeStatus() == eAbortSleep )
+ {
+ /* Restart from whatever is left in the count register to complete
+ * this tick period. */
+ portNVIC_SYSTICK_LOAD_REG = portNVIC_SYSTICK_CURRENT_VALUE_REG;
+
+ /* Restart SysTick. */
+ portNVIC_SYSTICK_CTRL_REG |= portNVIC_SYSTICK_ENABLE_BIT;
+
+ /* Reset the reload register to the value required for normal tick
+ * periods. */
+ portNVIC_SYSTICK_LOAD_REG = ulTimerCountsForOneTick - 1UL;
+
+ /* Re-enable interrupts - see comments above the cpsid instruction()
+ * above. */
+ __asm volatile ( "cpsie i" ::: "memory" );
+ }
+ else
+ {
+ /* Set the new reload value. */
+ portNVIC_SYSTICK_LOAD_REG = ulReloadValue;
+
+ /* Clear the SysTick count flag and set the count value back to
+ * zero. */
+ portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL;
+
+ /* Restart SysTick. */
+ portNVIC_SYSTICK_CTRL_REG |= portNVIC_SYSTICK_ENABLE_BIT;
+
+ /* Sleep until something happens. configPRE_SLEEP_PROCESSING() can
+ * set its parameter to 0 to indicate that its implementation contains
+ * its own wait for interrupt or wait for event instruction, and so wfi
+ * should not be executed again. However, the original expected idle
+ * time variable must remain unmodified, so a copy is taken. */
+ xModifiableIdleTime = xExpectedIdleTime;
+ configPRE_SLEEP_PROCESSING( xModifiableIdleTime );
+
+ if( xModifiableIdleTime > 0 )
+ {
+ __asm volatile ( "dsb" ::: "memory" );
+ __asm volatile ( "wfi" );
+ __asm volatile ( "isb" );
+ }
+
+ configPOST_SLEEP_PROCESSING( xExpectedIdleTime );
+
+ /* Re-enable interrupts to allow the interrupt that brought the MCU
+ * out of sleep mode to execute immediately. see comments above
+ * __disable_interrupt() call above. */
+ __asm volatile ( "cpsie i" ::: "memory" );
+ __asm volatile ( "dsb" );
+ __asm volatile ( "isb" );
+
+ /* Disable interrupts again because the clock is about to be stopped
+ * and interrupts that execute while the clock is stopped will increase
+ * any slippage between the time maintained by the RTOS and calendar
+ * time. */
+ __asm volatile ( "cpsid i" ::: "memory" );
+ __asm volatile ( "dsb" );
+ __asm volatile ( "isb" );
+
+ /* Disable the SysTick clock without reading the
+ * portNVIC_SYSTICK_CTRL_REG register to ensure the
+ * portNVIC_SYSTICK_COUNT_FLAG_BIT is not cleared if it is set. Again,
+ * the time the SysTick is stopped for is accounted for as best it can
+ * be, but using the tickless mode will inevitably result in some tiny
+ * drift of the time maintained by the kernel with respect to calendar
+ * time*/
+ portNVIC_SYSTICK_CTRL_REG = ( portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT );
+
+ /* Determine if the SysTick clock has already counted to zero and
+ * been set back to the current reload value (the reload back being
+ * correct for the entire expected idle time) or if the SysTick is yet
+ * to count to zero (in which case an interrupt other than the SysTick
+ * must have brought the system out of sleep mode). */
+ if( ( portNVIC_SYSTICK_CTRL_REG & portNVIC_SYSTICK_COUNT_FLAG_BIT ) != 0 )
+ {
+ uint32_t ulCalculatedLoadValue;
+
+ /* The tick interrupt is already pending, and the SysTick count
+ * reloaded with ulReloadValue. Reset the
+ * portNVIC_SYSTICK_LOAD_REG with whatever remains of this tick
+ * period. */
+ ulCalculatedLoadValue = ( ulTimerCountsForOneTick - 1UL ) - ( ulReloadValue - portNVIC_SYSTICK_CURRENT_VALUE_REG );
+
+ /* Don't allow a tiny value, or values that have somehow
+ * underflowed because the post sleep hook did something
+ * that took too long. */
+ if( ( ulCalculatedLoadValue < ulStoppedTimerCompensation ) || ( ulCalculatedLoadValue > ulTimerCountsForOneTick ) )
+ {
+ ulCalculatedLoadValue = ( ulTimerCountsForOneTick - 1UL );
+ }
+
+ portNVIC_SYSTICK_LOAD_REG = ulCalculatedLoadValue;
+
+ /* As the pending tick will be processed as soon as this
+ * function exits, the tick value maintained by the tick is stepped
+ * forward by one less than the time spent waiting. */
+ ulCompleteTickPeriods = xExpectedIdleTime - 1UL;
+ }
+ else
+ {
+ /* Something other than the tick interrupt ended the sleep.
+ * Work out how long the sleep lasted rounded to complete tick
+ * periods (not the ulReload value which accounted for part
+ * ticks). */
+ ulCompletedSysTickDecrements = ( xExpectedIdleTime * ulTimerCountsForOneTick ) - portNVIC_SYSTICK_CURRENT_VALUE_REG;
+
+ /* How many complete tick periods passed while the processor
+ * was waiting? */
+ ulCompleteTickPeriods = ulCompletedSysTickDecrements / ulTimerCountsForOneTick;
+
+ /* The reload value is set to whatever fraction of a single tick
+ * period remains. */
+ portNVIC_SYSTICK_LOAD_REG = ( ( ulCompleteTickPeriods + 1UL ) * ulTimerCountsForOneTick ) - ulCompletedSysTickDecrements;
+ }
+
+ /* Restart SysTick so it runs from portNVIC_SYSTICK_LOAD_REG
+ * again, then set portNVIC_SYSTICK_LOAD_REG back to its standard
+ * value. */
+ portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL;
+ portNVIC_SYSTICK_CTRL_REG |= portNVIC_SYSTICK_ENABLE_BIT;
+ vTaskStepTick( ulCompleteTickPeriods );
+ portNVIC_SYSTICK_LOAD_REG = ulTimerCountsForOneTick - 1UL;
+
+ /* Exit with interrupts enabled. */
+ __asm volatile ( "cpsie i" ::: "memory" );
+ }
+ }
+
+#endif /* configUSE_TICKLESS_IDLE */
+
+#if ( configSUPPORT_PICO_SYNC_INTEROP == 1 ) || ( configSUPPORT_PICO_TIME_INTEROP == 1 )
+ static TickType_t prvGetTicksToWaitBefore( absolute_time_t t )
+ {
+ int64_t xDelay = absolute_time_diff_us(get_absolute_time(), t);
+ const uint32_t ulTickPeriod = 1000000 / configTICK_RATE_HZ;
+ xDelay -= ulTickPeriod;
+ if( xDelay >= ulTickPeriod )
+ {
+ return xDelay / ulTickPeriod;
+ }
+ return 0;
+ }
+#endif
+
+#if ( configSUPPORT_PICO_SYNC_INTEROP == 1 )
+ uint32_t ulPortLockGetCurrentOwnerId()
+ {
+ if( portIS_FREE_RTOS_CORE())
+ {
+ uint32_t exception = __get_current_exception();
+ if( !exception )
+ {
+ return ( uintptr_t ) xTaskGetCurrentTaskHandle();
+ }
+ /* Note: since ROM as at 0x00000000, these can't be confused with
+ * valid task handles (pointers) in RAM */
+ /* We make all exception handler/core combinations distinct owners */
+ return get_core_num() + exception * 2;
+ }
+ /* Note: since ROM as at 0x00000000, this can't be confused with
+ * valid task handles (pointers) in RAM */
+ return get_core_num();
+ }
+
+ static inline EventBits_t prvGetEventGroupBit( spin_lock_t * spinLock )
+ {
+ uint32_t ulBit;
+ #if ( configUSE_16_BIT_TICKS == 1 )
+ ulBit = 1u << (spin_lock_get_num(spinLock) & 0x7u);
+ #else
+ ulBit = 1u << spin_lock_get_num(spinLock);
+ /* reduce to range 0-24 */
+ ulBit |= ulBit << 8u;
+ ulBit >>= 8u;
+ #endif /* configUSE_16_BIT_TICKS */
+ return ( EventBits_t ) ulBit;
+ }
+
+ static inline EventBits_t prvGetAllEventGroupBits()
+ {
+ #if ( configUSE_16_BIT_TICKS == 1 )
+ return (EventBits_t) 0xffu;
+ #else
+ return ( EventBits_t ) 0xffffffu;
+ #endif /* configUSE_16_BIT_TICKS */
+ }
+
+ void vPortLockInternalSpinUnlockWithWait( struct lock_core * pxLock, uint32_t ulSave )
+ {
+ configASSERT( !portCHECK_IF_IN_ISR() );
+ // note no need to check LIB_PICO_MULTICORE, as this is always returns true if that is not defined
+ if( !portIS_FREE_RTOS_CORE() )
+ {
+ spin_unlock(pxLock->spin_lock, ulSave );
+ __wfe();
+ }
+ else
+ {
+ configASSERT( pxYieldSpinLock == NULL );
+
+ // we want to hold the lock until the event bits have been set; since interrupts are currently disabled
+ // by the spinlock, we can defer until portENABLE_INTERRUPTS is called which is always called when
+ // the scheduler is unlocked during this call
+ configASSERT(pxLock->spin_lock);
+ pxYieldSpinLock = pxLock->spin_lock;
+ ulYieldSpinLockSaveValue = ulSave;
+ xEventGroupWaitBits( xEventGroup, prvGetEventGroupBit(pxLock->spin_lock),
+ pdTRUE, pdFALSE, portMAX_DELAY);
+ /* sanity check that interrupts were disabled, then re-enabled during the call, which will have
+ * taken care of the yield */
+ configASSERT( pxYieldSpinLock == NULL);
+ }
+ }
+
+ void vPortLockInternalSpinUnlockWithNotify( struct lock_core *pxLock, uint32_t ulSave ) {
+ EventBits_t uxBits = prvGetEventGroupBit(pxLock->spin_lock );
+ if (portIS_FREE_RTOS_CORE()) {
+ #if LIB_PICO_MULTICORE
+ /* signal an event in case a regular core is waiting */
+ __sev();
+ #endif
+ spin_unlock(pxLock->spin_lock, ulSave );
+ if( !portCHECK_IF_IN_ISR() )
+ {
+ xEventGroupSetBits( xEventGroup, uxBits );
+ }
+ else
+ {
+ BaseType_t xHigherPriorityTaskWoken = pdFALSE;
+ xEventGroupSetBitsFromISR( xEventGroup, uxBits, &xHigherPriorityTaskWoken );
+ portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
+ }
+ }
+ else
+ {
+ __sev();
+ #if ( portRUNNING_ON_BOTH_CORES == 0 )
+ /* We could sent the bits across the FIFO which would have required us to block here if the FIFO was full,
+ * or we could have just set all bits on the other side, however it seems reasonable instead to take
+ * the hit of another spin lock to protect an accurate bit set. */
+ if( pxCrossCoreSpinLock != pxLock->spin_lock )
+ {
+ spin_lock_unsafe_blocking(pxCrossCoreSpinLock);
+ uxCrossCoreEventBits |= uxBits;
+ spin_unlock_unsafe(pxCrossCoreSpinLock);
+ }
+ else
+ {
+ uxCrossCoreEventBits |= uxBits;
+ }
+ /* This causes fifo irq on the other (FreeRTOS) core which will do the set the event bits */
+ sio_hw->fifo_wr = 0;
+ #endif /* portRUNNING_ON_BOTH_CORES == 0 */
+ spin_unlock(pxLock->spin_lock, ulSave);
+ }
+ }
+
+ bool xPortLockInternalSpinUnlockWithBestEffortWaitOrTimeout( struct lock_core * pxLock, uint32_t ulSave, absolute_time_t uxUntil )
+ {
+ configASSERT( !portCHECK_IF_IN_ISR() );
+ // note no need to check LIB_PICO_MULTICORE, as this is always returns true if that is not defined
+ if( !portIS_FREE_RTOS_CORE() )
+ {
+ spin_unlock(pxLock->spin_lock, ulSave);
+ return best_effort_wfe_or_timeout(uxUntil);
+ }
+ else
+ {
+ configASSERT( portIS_FREE_RTOS_CORE() );
+ configASSERT( pxYieldSpinLock == NULL );
+
+ TickType_t uxTicksToWait = prvGetTicksToWaitBefore( uxUntil );
+ if( uxTicksToWait )
+ {
+ /* We want to hold the lock until the event bits have been set; since interrupts are currently disabled
+ * by the spinlock, we can defer until portENABLE_INTERRUPTS is called which is always called when
+ * the scheduler is unlocked during this call */
+ configASSERT(pxLock->spin_lock);
+ pxYieldSpinLock = pxLock->spin_lock;
+ ulYieldSpinLockSaveValue = ulSave;
+ xEventGroupWaitBits( xEventGroup,
+ prvGetEventGroupBit(pxLock->spin_lock), pdTRUE,
+ pdFALSE, uxTicksToWait );
+ /* sanity check that interrupts were disabled, then re-enabled during the call, which will have
+ * taken care of the yield */
+ configASSERT( pxYieldSpinLock == NULL );
+ }
+ else
+ {
+ spin_unlock( pxLock->spin_lock, ulSave );
+ }
+ if ( time_reached( uxUntil ) )
+ {
+ return true;
+ }
+ else
+ {
+ /* We do not want to hog the core */
+ portYIELD();
+ /* We aren't sure if we've reached the timeout yet; the caller will check */
+ return false;
+ }
+ }
+ }
+
+ /* runs before main */
+ static void __attribute__((constructor)) prvRuntimeInitializer( void )
+ {
+ /* This must be done even before the scheduler is started, as the spin lock
+ * is used by the overrides of the SDK wait/notify primitives */
+ #if (portRUNNING_ON_BOTH_CORES == 0 )
+ pxCrossCoreSpinLock = spin_lock_instance(next_striped_spin_lock_num());
+ #endif /* portRUNNING_ON_BOTH_CORES */
+
+ /* The event group is not used prior to scheduler init, but is initialized
+ * here to since it logically belongs with the spin lock */
+ #if ( configSUPPORT_STATIC_ALLOCATION == 1 )
+ xEventGroup = xEventGroupCreateStatic(&xStaticEventGroup);
+ #else
+ xEventGroup = xEventGroupCreate();
+ #endif /* configSUPPORT_STATIC_ALLOCATION */
+ }
+#endif /* configSUPPORT_PICO_SYNC_INTEROP */
+
+#if ( configSUPPORT_PICO_TIME_INTEROP == 1 )
+ void xPortSyncInternalYieldUntilBefore( absolute_time_t t )
+ {
+ TickType_t uxTicksToWait = prvGetTicksToWaitBefore(t);
+ if( uxTicksToWait )
+ {
+ vTaskDelay(uxTicksToWait);
+ }
+ }
+#endif /* configSUPPORT_PICO_TIME_INTEROP */