This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 99db09d050b57be5e2e2c3e86e0231d8dc9e7801 Author: simbit18 <[email protected]> AuthorDate: Fri Feb 6 16:10:33 2026 +0100 boards/arm/s32k3xx: CMake added boards CMake added boards: - mr-canhubk3 - s32k344evb Signed-off-by: simbit18 <[email protected]> --- boards/arm/s32k3xx/mr-canhubk3/CMakeLists.txt | 30 +++++++++++ boards/arm/s32k3xx/mr-canhubk3/src/CMakeLists.txt | 66 +++++++++++++++++++++++ boards/arm/s32k3xx/s32k344evb/CMakeLists.txt | 23 ++++++++ boards/arm/s32k3xx/s32k344evb/src/CMakeLists.txt | 50 +++++++++++++++++ 4 files changed, 169 insertions(+) diff --git a/boards/arm/s32k3xx/mr-canhubk3/CMakeLists.txt b/boards/arm/s32k3xx/mr-canhubk3/CMakeLists.txt new file mode 100644 index 00000000000..eb69f4a50d9 --- /dev/null +++ b/boards/arm/s32k3xx/mr-canhubk3/CMakeLists.txt @@ -0,0 +1,30 @@ +# ############################################################################## +# boards/arm/s32k3xx/mr-canhubk3/CMakeLists.txt +# +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor +# license agreements. See the NOTICE file distributed with this work for +# additional information regarding copyright ownership. The ASF licenses this +# file to you under the Apache License, Version 2.0 (the "License"); you may not +# use this file except in compliance with the License. You may obtain a copy of +# the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# +# ############################################################################## + +add_subdirectory(src) + +if(NOT CONFIG_BUILD_FLAT) + add_subdirectory(kernel) + set_property( + GLOBAL PROPERTY LD_SCRIPT_USER ${CMAKE_CURRENT_LIST_DIR}/scripts/memory.ld + ${CMAKE_CURRENT_LIST_DIR}/scripts/user-space.ld) +endif() diff --git a/boards/arm/s32k3xx/mr-canhubk3/src/CMakeLists.txt b/boards/arm/s32k3xx/mr-canhubk3/src/CMakeLists.txt new file mode 100644 index 00000000000..8fd5d762ddc --- /dev/null +++ b/boards/arm/s32k3xx/mr-canhubk3/src/CMakeLists.txt @@ -0,0 +1,66 @@ +# ############################################################################## +# boards/arm/s32k3xx/mr-canhubk3/src/CMakeLists.txt +# +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor +# license agreements. See the NOTICE file distributed with this work for +# additional information regarding copyright ownership. The ASF licenses this +# file to you under the Apache License, Version 2.0 (the "License"); you may not +# use this file except in compliance with the License. You may obtain a copy of +# the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# +# ############################################################################## + +set(SRCS s32k3xx_boot.c s32k3xx_bringup.c s32k3xx_clockconfig.c + s32k3xx_periphclocks.c) + +if(CONFIG_ARCH_BUTTONS) + list(APPEND SRCS s32k3xx_buttons.c) +endif() + +if(CONFIG_ARCH_LEDS) + list(APPEND SRCS s32k3xx_autoleds.c) +else() + list(APPEND SRCS s32k3xx_userleds.c) +endif() + +if(CONFIG_BOARDCTL) + list(APPEND SRCS s32k3xx_appinit.c) +endif() + +if(CONFIG_FAT_DMAMEMORY) + list(APPEND SRCS s32k3xx_dma_alloc.c) +endif() + +if(CONFIG_S32K3XX_FLEXCAN) + list(APPEND SRCS s32k3xx_tja1153.c) +endif() + +if(CONFIG_S32K3XX_LPI2C) + list(APPEND SRCS s32k3xx_i2c.c) +endif() + +if(CONFIG_S32K3XX_LPSPI) + list(APPEND SRCS s32k3xx_spi.c) +endif() + +if(CONFIG_S32K3XX_SELFTEST) + list(APPEND SRCS s32k3xx_selftest.c) +endif() + +target_sources(board PRIVATE ${SRCS}) + +if(CONFIG_BOOT_RUNFROMFLASH) + set_property(GLOBAL PROPERTY LD_SCRIPT "${NUTTX_BOARD_DIR}/scripts/flash.ld") +elseif(CONFIG_BOOT_RUNFROMISRAM) + set_property(GLOBAL PROPERTY LD_SCRIPT "${NUTTX_BOARD_DIR}/scripts/sram.ld") +endif() diff --git a/boards/arm/s32k3xx/s32k344evb/CMakeLists.txt b/boards/arm/s32k3xx/s32k344evb/CMakeLists.txt new file mode 100644 index 00000000000..51bc0aac9f5 --- /dev/null +++ b/boards/arm/s32k3xx/s32k344evb/CMakeLists.txt @@ -0,0 +1,23 @@ +# ############################################################################## +# boards/arm/s32k3xx/s32k344evb/CMakeLists.txt +# +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor +# license agreements. See the NOTICE file distributed with this work for +# additional information regarding copyright ownership. The ASF licenses this +# file to you under the Apache License, Version 2.0 (the "License"); you may not +# use this file except in compliance with the License. You may obtain a copy of +# the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# +# ############################################################################## + +add_subdirectory(src) diff --git a/boards/arm/s32k3xx/s32k344evb/src/CMakeLists.txt b/boards/arm/s32k3xx/s32k344evb/src/CMakeLists.txt new file mode 100644 index 00000000000..bcfe68442c7 --- /dev/null +++ b/boards/arm/s32k3xx/s32k344evb/src/CMakeLists.txt @@ -0,0 +1,50 @@ +# ############################################################################## +# boards/arm/s32k3xx/s32k344evb/src/CMakeLists.txt +# +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor +# license agreements. See the NOTICE file distributed with this work for +# additional information regarding copyright ownership. The ASF licenses this +# file to you under the Apache License, Version 2.0 (the "License"); you may not +# use this file except in compliance with the License. You may obtain a copy of +# the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# +# ############################################################################## + +set(SRCS s32k3xx_boot.c s32k3xx_bringup.c s32k3xx_clockconfig.c + s32k3xx_periphclocks.c) + +if(CONFIG_ARCH_BUTTONS) + list(APPEND SRCS s32k3xx_buttons.c) +endif() + +if(CONFIG_ARCH_LEDS) + list(APPEND SRCS s32k3xx_autoleds.c) +else() + list(APPEND SRCS s32k3xx_userleds.c) +endif() + +if(CONFIG_BOARDCTL) + list(APPEND SRCS s32k3xx_appinit.c) +endif() + +if(CONFIG_S32K3XX_LPI2C) + list(APPEND SRCS s32k3xx_i2c.c) +endif() + +if(CONFIG_S32K3XX_LPSPI) + list(APPEND SRCS s32k3xx_spi.c) +endif() + +target_sources(board PRIVATE ${SRCS}) + +set_property(GLOBAL PROPERTY LD_SCRIPT "${NUTTX_BOARD_DIR}/scripts/flash.ld")
