From d0ee99a8a9dfeeb14e8cfc429831cf888e12512d Mon Sep 17 00:00:00 2001 From: Matteo Golin Date: Wed, 18 Feb 2026 19:41:43 -0500 Subject: [PATCH] boards/arm64: Replace board_app_initialize Replaced board_app_initialize logic with board_late_initialize. Signed-off-by: Matteo Golin --- .../arm64/a527/avaota-a1/src/CMakeLists.txt | 2 +- boards/arm64/a527/avaota-a1/src/Makefile | 4 - .../arm64/a527/avaota-a1/src/a527_appinit.c | 75 ------------- boards/arm64/a64/pinephone/src/CMakeLists.txt | 1 - boards/arm64/a64/pinephone/src/Makefile | 3 - .../a64/pinephone/src/pinephone_appinit.c | 75 ------------- .../bcm2711/raspberrypi-4b/src/CMakeLists.txt | 4 - .../arm64/bcm2711/raspberrypi-4b/src/Makefile | 4 - .../raspberrypi-4b/src/rpi4b_appinit.c | 101 ------------------ .../src/rpi4b_boardinitialize.c | 30 +++++- .../fvp-v8r/fvp-armv8r/src/CMakeLists.txt | 4 - boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile | 4 - .../fvp-v8r/fvp-armv8r/src/fvp_appinit.c | 75 ------------- .../arm64/imx8/imx8qm-mek/src/CMakeLists.txt | 4 - boards/arm64/imx8/imx8qm-mek/src/Makefile | 4 - .../arm64/imx8/imx8qm-mek/src/imx8_appinit.c | 78 -------------- boards/arm64/imx9/imx93-evk/src/Makefile | 4 - .../arm64/imx9/imx93-evk/src/imx9_appinit.c | 78 -------------- .../imx9/imx95-a55-evk/configs/emmc/defconfig | 1 - .../imx9/imx95-a55-evk/src/CMakeLists.txt | 7 +- boards/arm64/imx9/imx95-a55-evk/src/Makefile | 3 - .../imx9/imx95-a55-evk/src/imx9_appinit.c | 78 -------------- .../arm64/qemu/qemu-armv8a/src/CMakeLists.txt | 2 +- boards/arm64/qemu/qemu-armv8a/src/Makefile | 2 +- .../arm64/qemu/qemu-armv8a/src/qemu_appinit.c | 78 -------------- boards/arm64/rk3399/nanopi_m4/src/Makefile | 1 - .../rk3399/nanopi_m4/src/nanopi_m4_appinit.c | 66 ------------ .../nanopi_m4/src/nanopi_m4_boardinit.c | 1 - .../rk3399/pinephonepro/src/CMakeLists.txt | 1 - boards/arm64/rk3399/pinephonepro/src/Makefile | 3 - .../pinephonepro/src/pinephonepro_appinit.c | 75 ------------- boards/arm64/zynq-mpsoc/zcu111/src/Makefile | 4 +- .../zynq-mpsoc/zcu111/src/zcu111_appinit.c | 72 ------------- 33 files changed, 35 insertions(+), 909 deletions(-) delete mode 100644 boards/arm64/a527/avaota-a1/src/a527_appinit.c delete mode 100644 boards/arm64/a64/pinephone/src/pinephone_appinit.c delete mode 100644 boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_appinit.c delete mode 100644 boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c delete mode 100644 boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c delete mode 100644 boards/arm64/imx9/imx93-evk/src/imx9_appinit.c delete mode 100644 boards/arm64/imx9/imx95-a55-evk/src/imx9_appinit.c delete mode 100644 boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c delete mode 100644 boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c delete mode 100644 boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c delete mode 100644 boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c diff --git a/boards/arm64/a527/avaota-a1/src/CMakeLists.txt b/boards/arm64/a527/avaota-a1/src/CMakeLists.txt index 5d5787cb95c..4c7b4aede6d 100644 --- a/boards/arm64/a527/avaota-a1/src/CMakeLists.txt +++ b/boards/arm64/a527/avaota-a1/src/CMakeLists.txt @@ -22,7 +22,7 @@ set(SRCS a527_boardinit.c a527_bringup.c) if(CONFIG_BOARDCTL) - list(APPEND SRCS a527_appinit.c a527_power.c) + list(APPEND SRCS a527_power.c) endif() target_sources(board PRIVATE ${SRCS}) diff --git a/boards/arm64/a527/avaota-a1/src/Makefile b/boards/arm64/a527/avaota-a1/src/Makefile index 850462fddf6..5d7cd452d1f 100644 --- a/boards/arm64/a527/avaota-a1/src/Makefile +++ b/boards/arm64/a527/avaota-a1/src/Makefile @@ -24,8 +24,4 @@ include $(TOPDIR)/Make.defs CSRCS = a527_boardinit.c a527_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += a527_appinit.c a527_power.c -endif - include $(TOPDIR)/boards/Board.mk diff --git a/boards/arm64/a527/avaota-a1/src/a527_appinit.c b/boards/arm64/a527/avaota-a1/src/a527_appinit.c deleted file mode 100644 index 19d758eedc9..00000000000 --- a/boards/arm64/a527/avaota-a1/src/a527_appinit.c +++ /dev/null @@ -1,75 +0,0 @@ -/**************************************************************************** - * boards/arm64/a527/avaota-a1/src/a527_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include -#include -#include -#include "avaota-a1.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return a527_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/a64/pinephone/src/CMakeLists.txt b/boards/arm64/a64/pinephone/src/CMakeLists.txt index 4458d7d9b43..97ab6dd27cc 100644 --- a/boards/arm64/a64/pinephone/src/CMakeLists.txt +++ b/boards/arm64/a64/pinephone/src/CMakeLists.txt @@ -23,7 +23,6 @@ set(SRCS pinephone_boardinit.c pinephone_bringup.c pinephone_pmic.c) if(CONFIG_BOARDCTL) - list(APPEND SRCS pinephone_appinit.c) if(CONFIG_BOARDCTL_RESET) list(APPEND SRCS pinephone_reset.c) endif() diff --git a/boards/arm64/a64/pinephone/src/Makefile b/boards/arm64/a64/pinephone/src/Makefile index 8376a6844c5..81c3f37b9bd 100644 --- a/boards/arm64/a64/pinephone/src/Makefile +++ b/boards/arm64/a64/pinephone/src/Makefile @@ -24,12 +24,9 @@ include $(TOPDIR)/Make.defs CSRCS = pinephone_boardinit.c pinephone_bringup.c pinephone_pmic.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += pinephone_appinit.c ifeq ($(CONFIG_BOARDCTL_RESET),y) CSRCS += pinephone_reset.c endif -endif ifeq ($(CONFIG_ARCH_LEDS),y) CSRCS += pinephone_autoleds.c diff --git a/boards/arm64/a64/pinephone/src/pinephone_appinit.c b/boards/arm64/a64/pinephone/src/pinephone_appinit.c deleted file mode 100644 index 2331583e1ff..00000000000 --- a/boards/arm64/a64/pinephone/src/pinephone_appinit.c +++ /dev/null @@ -1,75 +0,0 @@ -/**************************************************************************** - * boards/arm64/a64/pinephone/src/pinephone_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include -#include -#include -#include "pinephone.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return pinephone_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/bcm2711/raspberrypi-4b/src/CMakeLists.txt b/boards/arm64/bcm2711/raspberrypi-4b/src/CMakeLists.txt index 2bf016857a3..e3c6860ae15 100644 --- a/boards/arm64/bcm2711/raspberrypi-4b/src/CMakeLists.txt +++ b/boards/arm64/bcm2711/raspberrypi-4b/src/CMakeLists.txt @@ -24,10 +24,6 @@ if(CONFIG_ARCH_LEDS) list(APPEND SRCS rpi4b_autoleds.c) endif() -if(CONFIG_BOARDCTL) - list(APPEND SRCS rpi4b_appinit.c) -endif() - if(CONFIG_DEV_GPIO) list(APPEND SRCS rpi4b_gpio.c) endif() diff --git a/boards/arm64/bcm2711/raspberrypi-4b/src/Makefile b/boards/arm64/bcm2711/raspberrypi-4b/src/Makefile index f87cefa3151..214f2a084c2 100644 --- a/boards/arm64/bcm2711/raspberrypi-4b/src/Makefile +++ b/boards/arm64/bcm2711/raspberrypi-4b/src/Makefile @@ -26,10 +26,6 @@ ifeq ($(CONFIG_ARCH_LEDS),y) CSRCS += rpi4b_autoleds.c endif -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += rpi4b_appinit.c -endif - ifeq ($(CONFIG_DEV_GPIO),y) CSRCS += rpi4b_gpio.c endif diff --git a/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_appinit.c b/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_appinit.c deleted file mode 100644 index 2df3041644e..00000000000 --- a/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_appinit.c +++ /dev/null @@ -1,101 +0,0 @@ -/**************************************************************************** - * boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_appinit.c - * - * Author: Matteo Golin - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include - -#include -#include - -#include -#include - -#include "rpi4b.h" -#include - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); - int ret = OK; - -#ifdef CONFIG_FS_PROCFS - /* Mount the proc file system */ - - ret = nx_mount(NULL, "/proc", "procfs", 0, NULL); - if (ret < 0) - { - syslog(LOG_ERR, "ERROR: Failed to mount procfs at /proc: %d\n", ret); - } -#endif - -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - ret = rpi4b_bringup(); -#endif - -#ifdef CONFIG_RPI4B_MOUNT_BOOT - /* Mount SD card file system (currently just the boot (first) partition). - * Assumes /dev/mmcsd0 exists, but if it doesn't it will fail gracefully. - */ - - ret = nx_mount("/dev/mmcsd0", "/sd", "vfat", 0, NULL); - if (ret < 0) - { - syslog(LOG_ERR, "Could not mount SD card FAT partition: %d\n", ret); - } -#endif - - return ret; -} diff --git a/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_boardinitialize.c b/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_boardinitialize.c index 87600c8af88..fa073c10da4 100644 --- a/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_boardinitialize.c +++ b/boards/arm64/bcm2711/raspberrypi-4b/src/rpi4b_boardinitialize.c @@ -27,8 +27,12 @@ #include #include +#include +#include #include +#include +#include #include "rpi4b.h" @@ -104,8 +108,32 @@ void bcm2711_board_initialize(void) #ifdef CONFIG_BOARD_LATE_INITIALIZE void board_late_initialize(void) { + int ret = 0; + +#ifdef CONFIG_FS_PROCFS + /* Mount the proc file system */ + + ret = nx_mount(NULL, "/proc", "procfs", 0, NULL); + if (ret < 0) + { + syslog(LOG_ERR, "ERROR: Failed to mount procfs at /proc: %d\n", ret); + } +#endif + /* Perform board initialization */ - rpi4b_bringup(); + ret = rpi4b_bringup(); + +#ifdef CONFIG_RPI4B_MOUNT_BOOT + /* Mount SD card file system (currently just the boot (first) partition). + * Assumes /dev/mmcsd0 exists, but if it doesn't it will fail gracefully. + */ + + ret = nx_mount("/dev/mmcsd0", "/sd", "vfat", 0, NULL); + if (ret < 0) + { + syslog(LOG_ERR, "Could not mount SD card FAT partition: %d\n", ret); + } +#endif } #endif /* CONFIG_BOARD_LATE_INITIALIZE */ diff --git a/boards/arm64/fvp-v8r/fvp-armv8r/src/CMakeLists.txt b/boards/arm64/fvp-v8r/fvp-armv8r/src/CMakeLists.txt index a3c5938cbdc..81799e647ab 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/CMakeLists.txt +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/CMakeLists.txt @@ -21,8 +21,4 @@ # ############################################################################## set(SRCS fvp_boardinit.c fvp_bringup.c) -if(CONFIG_BOARDCTL) - list(APPEND SRCS fvp_appinit.c) -endif() - target_sources(board PRIVATE ${SRCS}) diff --git a/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile b/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile index 5548900d9f0..1381db8ab8d 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile @@ -24,8 +24,4 @@ include $(TOPDIR)/Make.defs CSRCS = fvp_boardinit.c fvp_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += fvp_appinit.c -endif - include $(TOPDIR)/boards/Board.mk diff --git a/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c deleted file mode 100644 index 7f7cf19f4aa..00000000000 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c +++ /dev/null @@ -1,75 +0,0 @@ -/**************************************************************************** - * boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include -#include -#include -#include "fvp-armv8r.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return fvp_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/imx8/imx8qm-mek/src/CMakeLists.txt b/boards/arm64/imx8/imx8qm-mek/src/CMakeLists.txt index 293636a5ea8..2594331295d 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/CMakeLists.txt +++ b/boards/arm64/imx8/imx8qm-mek/src/CMakeLists.txt @@ -22,10 +22,6 @@ set(SRCS imx8_boardinit.c imx8_bringup.c) -if(CONFIG_BOARDCTL) - list(APPEND SRCS imx8_appinit.c) -endif() - target_sources(board PRIVATE ${SRCS}) set_property(GLOBAL PROPERTY LD_SCRIPT "${NUTTX_BOARD_DIR}/scripts/dramboot.ld") diff --git a/boards/arm64/imx8/imx8qm-mek/src/Makefile b/boards/arm64/imx8/imx8qm-mek/src/Makefile index f9124aafc25..c1852aa5500 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/Makefile +++ b/boards/arm64/imx8/imx8qm-mek/src/Makefile @@ -24,8 +24,4 @@ include $(TOPDIR)/Make.defs CSRCS = imx8_boardinit.c imx8_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += imx8_appinit.c -endif - include $(TOPDIR)/boards/Board.mk diff --git a/boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c b/boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c deleted file mode 100644 index 9d91bc538f6..00000000000 --- a/boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c +++ /dev/null @@ -1,78 +0,0 @@ -/**************************************************************************** - * boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include - -#include - -#include - -#include "imx8qm-mek.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return imx8_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/imx9/imx93-evk/src/Makefile b/boards/arm64/imx9/imx93-evk/src/Makefile index d938b626dc0..b80005248dd 100644 --- a/boards/arm64/imx9/imx93-evk/src/Makefile +++ b/boards/arm64/imx9/imx93-evk/src/Makefile @@ -24,10 +24,6 @@ include $(TOPDIR)/Make.defs CSRCS = imx9_boardinit.c imx9_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += imx9_appinit.c -endif - ifeq ($(CONFIG_PWM),y) CSRCS += imx9_pwm.c endif diff --git a/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c b/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c deleted file mode 100644 index 39d4132d3c8..00000000000 --- a/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c +++ /dev/null @@ -1,78 +0,0 @@ -/**************************************************************************** - * boards/arm64/imx9/imx93-evk/src/imx9_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include - -#include - -#include - -#include "imx93-evk.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return imx9_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/imx9/imx95-a55-evk/configs/emmc/defconfig b/boards/arm64/imx9/imx95-a55-evk/configs/emmc/defconfig index 706cbe3ff6d..dc63329df22 100644 --- a/boards/arm64/imx9/imx95-a55-evk/configs/emmc/defconfig +++ b/boards/arm64/imx9/imx95-a55-evk/configs/emmc/defconfig @@ -16,7 +16,6 @@ CONFIG_ARCH_EARLY_PRINT=y CONFIG_ARCH_INTERRUPTSTACK=4096 CONFIG_ARCH_USE_MMU=y CONFIG_BOARDCTL_RESET=y -CONFIG_BOARD_LATE_INITIALIZE=y CONFIG_BOARD_LOOPSPERMSEC=241712 CONFIG_BUILTIN=y CONFIG_DEBUG_ASSERTIONS=y diff --git a/boards/arm64/imx9/imx95-a55-evk/src/CMakeLists.txt b/boards/arm64/imx9/imx95-a55-evk/src/CMakeLists.txt index 5fe327c8e05..e02a43f26d9 100644 --- a/boards/arm64/imx9/imx95-a55-evk/src/CMakeLists.txt +++ b/boards/arm64/imx9/imx95-a55-evk/src/CMakeLists.txt @@ -22,11 +22,8 @@ set(SRCS imx9_boardinit.c imx9_bringup.c) -if(CONFIG_BOARDCTL) - list(APPEND SRCS imx9_appinit.c) - if(CONFIG_BOARDCTL_RESET) - list(APPEND SRCS imx9_reset.c) - endif() +if(CONFIG_BOARDCTL_RESET) + list(APPEND SRCS imx9_reset.c) endif() if(CONFIG_IMX9_USDHC) diff --git a/boards/arm64/imx9/imx95-a55-evk/src/Makefile b/boards/arm64/imx9/imx95-a55-evk/src/Makefile index d73b23b8bf7..55f7666091a 100644 --- a/boards/arm64/imx9/imx95-a55-evk/src/Makefile +++ b/boards/arm64/imx9/imx95-a55-evk/src/Makefile @@ -24,12 +24,9 @@ include $(TOPDIR)/Make.defs CSRCS = imx9_boardinit.c imx9_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += imx9_appinit.c ifeq ($(CONFIG_BOARDCTL_RESET),y) CSRCS += imx9_reset.c endif -endif ifeq ($(CONFIG_IMX9_USDHC),y) CSRCS += imx9_usdhc.c diff --git a/boards/arm64/imx9/imx95-a55-evk/src/imx9_appinit.c b/boards/arm64/imx9/imx95-a55-evk/src/imx9_appinit.c deleted file mode 100644 index 057f0ff7be6..00000000000 --- a/boards/arm64/imx9/imx95-a55-evk/src/imx9_appinit.c +++ /dev/null @@ -1,78 +0,0 @@ -/**************************************************************************** - * boards/arm64/imx9/imx95-a55-evk/src/imx9_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include - -#include - -#include - -#include "imx95-evk.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return imx9_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt b/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt index 385e0ed5f2d..fad82a2fb4a 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt +++ b/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt @@ -22,7 +22,7 @@ set(SRCS qemu_boardinit.c qemu_bringup.c) if(CONFIG_BOARDCTL) - list(APPEND SRCS qemu_appinit.c qemu_power.c) + list(APPEND SRCS qemu_power.c) endif() if(CONFIG_LIBC_FDT) diff --git a/boards/arm64/qemu/qemu-armv8a/src/Makefile b/boards/arm64/qemu/qemu-armv8a/src/Makefile index b7ab9588723..f276114b2ae 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/Makefile +++ b/boards/arm64/qemu/qemu-armv8a/src/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/Make.defs CSRCS = qemu_boardinit.c qemu_bringup.c ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += qemu_appinit.c qemu_power.c +CSRCS += qemu_power.c endif ifeq ($(CONFIG_LIBC_FDT),y) diff --git a/boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c b/boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c deleted file mode 100644 index 72507c91b5b..00000000000 --- a/boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c +++ /dev/null @@ -1,78 +0,0 @@ -/**************************************************************************** - * boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include - -#include - -#include - -#include "qemu-armv8a.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return qemu_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/rk3399/nanopi_m4/src/Makefile b/boards/arm64/rk3399/nanopi_m4/src/Makefile index 44c09add7ef..3cccdf3ce8f 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/Makefile +++ b/boards/arm64/rk3399/nanopi_m4/src/Makefile @@ -23,7 +23,6 @@ include $(TOPDIR)/Make.defs CSRCS = nanopi_m4_boardinit.c -CSRCS += nanopi_m4_appinit.c ifeq ($(CONFIG_ETC_ROMFS),y) RCSRCS = etc/init.d/rc.sysinit etc/init.d/rcS diff --git a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c deleted file mode 100644 index 03ae07d5a1d..00000000000 --- a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** - * boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include -#include -#include -#include "nanopi_m4.h" - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - /* Perform board initialization */ - - return OK; -} diff --git a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c index ea2f99ca8b2..7bd8d46c7a3 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c +++ b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c @@ -101,6 +101,5 @@ void rk3399_board_initialize(void) #ifdef CONFIG_BOARD_LATE_INITIALIZE void board_late_initialize(void) { - /* Perform board initialization */ } #endif /* CONFIG_BOARD_LATE_INITIALIZE */ diff --git a/boards/arm64/rk3399/pinephonepro/src/CMakeLists.txt b/boards/arm64/rk3399/pinephonepro/src/CMakeLists.txt index c39a7c63538..3bcbb66ef04 100644 --- a/boards/arm64/rk3399/pinephonepro/src/CMakeLists.txt +++ b/boards/arm64/rk3399/pinephonepro/src/CMakeLists.txt @@ -23,7 +23,6 @@ set(SRCS pinephonepro_boardinit.c pinephonepro_bringup.c) if(CONFIG_BOARDCTL) - list(APPEND SRCS pinephonepro_appinit.c) if(CONFIG_BOARDCTL_RESET) list(APPEND SRCS pinephonepro_reset.c) endif() diff --git a/boards/arm64/rk3399/pinephonepro/src/Makefile b/boards/arm64/rk3399/pinephonepro/src/Makefile index ad8f030577a..d659d138e1a 100644 --- a/boards/arm64/rk3399/pinephonepro/src/Makefile +++ b/boards/arm64/rk3399/pinephonepro/src/Makefile @@ -24,11 +24,8 @@ include $(TOPDIR)/Make.defs CSRCS = pinephonepro_boardinit.c pinephonepro_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += pinephonepro_appinit.c ifeq ($(CONFIG_BOARDCTL_RESET),y) CSRCS += pinephonepro_reset.c endif -endif include $(TOPDIR)/boards/Board.mk diff --git a/boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c deleted file mode 100644 index 9208f94f71d..00000000000 --- a/boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c +++ /dev/null @@ -1,75 +0,0 @@ -/**************************************************************************** - * boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include -#include -#include -#include "pinephonepro.h" - -#ifdef CONFIG_BOARDCTL - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ - UNUSED(arg); -#ifndef CONFIG_BOARD_LATE_INITIALIZE - /* Perform board initialization */ - - return pinephonepro_bringup(); -#else - return OK; -#endif -} - -#endif /* CONFIG_BOARDCTL */ diff --git a/boards/arm64/zynq-mpsoc/zcu111/src/Makefile b/boards/arm64/zynq-mpsoc/zcu111/src/Makefile index a0eacd701e7..8dd6f477d3b 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/Makefile +++ b/boards/arm64/zynq-mpsoc/zcu111/src/Makefile @@ -23,12 +23,10 @@ include $(TOPDIR)/Make.defs CSRCS = zcu111_boardinit.c zcu111_bringup.c -ifeq ($(CONFIG_BOARDCTL),y) -CSRCS += zcu111_appinit.c + ifeq ($(CONFIG_BOARDCTL_RESET),y) CSRCS += zcu111_reset.c endif -endif ifeq ($(CONFIG_ARCH_LEDS),y) CSRCS += zcu111_autoleds.c diff --git a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c deleted file mode 100644 index 43a18f5df5f..00000000000 --- a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c +++ /dev/null @@ -1,72 +0,0 @@ -/**************************************************************************** - * boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c - * - * 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. - * - ****************************************************************************/ - -/**************************************************************************** - * Included Files - ****************************************************************************/ - -#include -#include -#include -#include "zcu111.h" - -/**************************************************************************** - * Public Functions - ****************************************************************************/ - -/**************************************************************************** - * Name: board_app_initialize - * - * Description: - * Perform application specific initialization. This function is never - * called directly from application code, but only indirectly via the - * (non-standard) boardctl() interface using the command BOARDIOC_INIT. - * - * Input Parameters: - * arg - The boardctl() argument is passed to the board_app_initialize() - * implementation without modification. The argument has no - * meaning to NuttX; the meaning of the argument is a contract - * between the board-specific initialization logic and the - * matching application logic. The value could be such things as a - * mode enumeration value, a set of DIP switch switch settings, a - * pointer to configuration data read from a file or serial FLASH, - * or whatever you would like to do with it. Every implementation - * should accept zero/NULL as a default configuration. - * - * Returned Value: - * Zero (OK) is returned on success; a negated errno value is returned on - * any failure to indicate the nature of the failure. - * - ****************************************************************************/ - -int board_app_initialize(uintptr_t arg) -{ -#ifdef CONFIG_BOARD_LATE_INITIALIZE - /* Board initialization already performed by board_late_initialize() */ - - return OK; -#else - /* Perform board-specific initialization */ - - return zcu111_bringup(); -#endif -}