2011-03-12 18:49:47 +01:00
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* sched/init/nx_bringup.c
|
2011-03-12 18:49:47 +01:00
|
|
|
*
|
2024-09-11 13:45:11 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2020-05-16 18:05:46 +02:00
|
|
|
* 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
|
2011-03-12 18:49:47 +01:00
|
|
|
*
|
2020-05-16 18:05:46 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-12 18:49:47 +01:00
|
|
|
*
|
2020-05-16 18:05:46 +02:00
|
|
|
* 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.
|
2011-03-12 18:49:47 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sched.h>
|
2012-12-16 22:15:27 +01:00
|
|
|
#include <stdlib.h>
|
2018-08-23 19:08:22 +02:00
|
|
|
#include <string.h>
|
2021-05-18 08:59:14 +02:00
|
|
|
#include <assert.h>
|
2011-03-12 18:49:47 +01:00
|
|
|
#include <debug.h>
|
|
|
|
|
2013-03-11 21:26:55 +01:00
|
|
|
#include <nuttx/arch.h>
|
2015-02-28 03:02:03 +01:00
|
|
|
#include <nuttx/board.h>
|
2024-01-30 09:08:04 +01:00
|
|
|
#include <nuttx/coredump.h>
|
2021-02-15 09:08:51 +01:00
|
|
|
#include <nuttx/fs/fs.h>
|
2011-03-12 18:49:47 +01:00
|
|
|
#include <nuttx/init.h>
|
sched: move etc romfs mount from nsh to sched/init
Usually the startup script is placed under /etc. The contents of the etc directory
are compiled and linked with Nuttx binary in the form of romfs. After startup,
it will be mounted by Nsh.
etc is generated by the different boards, that use genromfs and xxd tools to generate
and compile it into the Nuttx, for example: boards/arm/at32/at32f437-mini/tool/mkromfs.sh
The more common method is etc image generated from the content in the corresponding
board/arch/board/board/src/etc directory, and added by Makefile for example:
boards/sim/sim/sim/src/etc.
But in kernel/protected mode, Nuttx kernel and apps are run in different privileged/
non-privileged mode or the isolated binarys, so as that nsh should use syscall to
access Nuttx kernel by exported API. In this scenario, nsh can not mount the etc image
content, because that is generated in board and as a part of Nuttx kernel.
changes:
- move etc romfs mount from nsh to Nuttx, but keep the script to parse and execute.
- move and rename the related CONFIG, move customized nsh_romfsimg.h to etc_romfs.c
in boards, and no need declaration for romfs_img/romfs_img_len.
This commit changes and updates all configurations in Nuttx arch/board as much as possible,
but if any missing, please refer to the following simple guide:
- rename CONFIG_NSH_ROMFSETC to CONFIG_ETC_ROMFS, and delete CONFIG_NSH_ARCHROMFS in defconfig
- rename the etc romfs mount configs, for example CONFIG_NSH_FATDEVNO to CONFIG_ETC_FATDEVNO
- move customized nsh_romfsimg.h to etc_romfs.c in board/arch/board/board/src and no need
declaration for romfs_img/romfs_img_len.
- delete default nsh_romfsimg.h, if ROMFSETC is enabled, should generate and compile etc_romfs.c
in board/arch/board/board/src.
Signed-off-by: fangxinyong <fangxinyong@xiaomi.com>
2023-11-26 04:51:46 +01:00
|
|
|
#include <nuttx/nuttx.h>
|
2018-08-22 14:21:20 +02:00
|
|
|
#include <nuttx/symtab.h>
|
2023-02-22 04:08:22 +01:00
|
|
|
#include <nuttx/trace.h>
|
2012-09-04 02:54:09 +02:00
|
|
|
#include <nuttx/wqueue.h>
|
2013-12-31 00:55:19 +01:00
|
|
|
#include <nuttx/kthread.h>
|
2013-03-11 00:42:49 +01:00
|
|
|
#include <nuttx/userspace.h>
|
2014-08-30 21:27:23 +02:00
|
|
|
#include <nuttx/binfmt/binfmt.h>
|
2011-03-12 18:49:47 +01:00
|
|
|
|
2024-02-29 20:21:23 +01:00
|
|
|
#ifdef CONFIG_LEGACY_PAGING
|
2023-05-13 10:33:29 +02:00
|
|
|
# include "paging/paging.h"
|
2011-03-12 18:49:47 +01:00
|
|
|
#endif
|
2022-10-24 14:12:34 +02:00
|
|
|
|
|
|
|
#include "sched/sched.h"
|
|
|
|
#include "wqueue/wqueue.h"
|
|
|
|
#include "init/init.h"
|
2011-03-12 18:49:47 +01:00
|
|
|
|
sched: move etc romfs mount from nsh to sched/init
Usually the startup script is placed under /etc. The contents of the etc directory
are compiled and linked with Nuttx binary in the form of romfs. After startup,
it will be mounted by Nsh.
etc is generated by the different boards, that use genromfs and xxd tools to generate
and compile it into the Nuttx, for example: boards/arm/at32/at32f437-mini/tool/mkromfs.sh
The more common method is etc image generated from the content in the corresponding
board/arch/board/board/src/etc directory, and added by Makefile for example:
boards/sim/sim/sim/src/etc.
But in kernel/protected mode, Nuttx kernel and apps are run in different privileged/
non-privileged mode or the isolated binarys, so as that nsh should use syscall to
access Nuttx kernel by exported API. In this scenario, nsh can not mount the etc image
content, because that is generated in board and as a part of Nuttx kernel.
changes:
- move etc romfs mount from nsh to Nuttx, but keep the script to parse and execute.
- move and rename the related CONFIG, move customized nsh_romfsimg.h to etc_romfs.c
in boards, and no need declaration for romfs_img/romfs_img_len.
This commit changes and updates all configurations in Nuttx arch/board as much as possible,
but if any missing, please refer to the following simple guide:
- rename CONFIG_NSH_ROMFSETC to CONFIG_ETC_ROMFS, and delete CONFIG_NSH_ARCHROMFS in defconfig
- rename the etc romfs mount configs, for example CONFIG_NSH_FATDEVNO to CONFIG_ETC_FATDEVNO
- move customized nsh_romfsimg.h to etc_romfs.c in board/arch/board/board/src and no need
declaration for romfs_img/romfs_img_len.
- delete default nsh_romfsimg.h, if ROMFSETC is enabled, should generate and compile etc_romfs.c
in board/arch/board/board/src.
Signed-off-by: fangxinyong <fangxinyong@xiaomi.com>
2023-11-26 04:51:46 +01:00
|
|
|
#ifdef CONFIG_ETC_ROMFS
|
|
|
|
# include <nuttx/drivers/ramdisk.h>
|
|
|
|
# include <sys/mount.h>
|
|
|
|
#endif
|
|
|
|
|
2011-03-12 18:49:47 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
/* Configuration */
|
|
|
|
|
|
|
|
#if defined(CONFIG_INIT_NONE)
|
|
|
|
/* Kconfig logic will set CONFIG_INIT_NONE if dependencies are not met */
|
|
|
|
|
|
|
|
# error No initialization mechanism selected (CONFIG_INIT_NONE)
|
|
|
|
|
|
|
|
#else
|
2021-12-20 05:21:47 +01:00
|
|
|
# if !defined(CONFIG_INIT_ENTRY) && !defined(CONFIG_INIT_FILE)
|
2014-08-30 21:27:23 +02:00
|
|
|
/* For backward compatibility with older defconfig files when this was
|
|
|
|
* the way things were done.
|
|
|
|
*/
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# define CONFIG_INIT_ENTRY 1
|
2014-08-30 21:27:23 +02:00
|
|
|
# endif
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# if defined(CONFIG_INIT_ENTRY)
|
2014-08-30 21:27:23 +02:00
|
|
|
/* Initialize by starting a task at an entry point */
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# ifndef CONFIG_INIT_ENTRYPOINT
|
2014-08-30 21:27:23 +02:00
|
|
|
/* Entry point name must have been provided */
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# error CONFIG_INIT_ENTRYPOINT must be defined
|
2014-08-30 21:27:23 +02:00
|
|
|
# endif
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# elif defined(CONFIG_INIT_FILE)
|
2014-08-30 21:27:23 +02:00
|
|
|
/* Initialize by running an initialization program in the file system.
|
|
|
|
* Presumably the user has configured a board initialization function
|
|
|
|
* that will mount the file system containing the initialization
|
|
|
|
* program.
|
|
|
|
*/
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# ifndef CONFIG_INIT_FILEPATH
|
2014-08-30 21:27:23 +02:00
|
|
|
/* Path to the initialization program must have been provided */
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
# error CONFIG_INT_FILEPATH must be defined
|
2014-08-30 21:27:23 +02:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# if !defined(CONFIG_INIT_SYMTAB) || !defined(CONFIG_INIT_NEXPORTS)
|
|
|
|
/* No symbol information... assume no symbol table is available */
|
|
|
|
|
|
|
|
# undef CONFIG_INIT_SYMTAB
|
|
|
|
# undef CONFIG_INIT_NEXPORTS
|
|
|
|
# define CONFIG_INIT_SYMTAB NULL
|
|
|
|
# define CONFIG_INIT_NEXPORTS 0
|
2018-08-22 14:21:20 +02:00
|
|
|
# else
|
|
|
|
extern const struct symtab_s CONFIG_INIT_SYMTAB[];
|
|
|
|
extern const int CONFIG_INIT_NEXPORTS;
|
2014-08-30 21:27:23 +02:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2014-10-10 17:34:03 +02:00
|
|
|
/* In the protected build (only) we also need to start the user work queue */
|
2011-04-02 21:04:44 +02:00
|
|
|
|
2014-10-10 17:34:03 +02:00
|
|
|
#if !defined(CONFIG_BUILD_PROTECTED)
|
2021-08-01 09:27:08 +02:00
|
|
|
# undef CONFIG_LIBC_USRWORK
|
2013-03-06 01:02:07 +01:00
|
|
|
#endif
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
#if !defined(CONFIG_INIT_PRIORITY)
|
|
|
|
# define CONFIG_INIT_PRIORITY SCHED_PRIORITY_DEFAULT
|
2018-12-20 17:49:10 +01:00
|
|
|
#endif
|
|
|
|
|
sched: move etc romfs mount from nsh to sched/init
Usually the startup script is placed under /etc. The contents of the etc directory
are compiled and linked with Nuttx binary in the form of romfs. After startup,
it will be mounted by Nsh.
etc is generated by the different boards, that use genromfs and xxd tools to generate
and compile it into the Nuttx, for example: boards/arm/at32/at32f437-mini/tool/mkromfs.sh
The more common method is etc image generated from the content in the corresponding
board/arch/board/board/src/etc directory, and added by Makefile for example:
boards/sim/sim/sim/src/etc.
But in kernel/protected mode, Nuttx kernel and apps are run in different privileged/
non-privileged mode or the isolated binarys, so as that nsh should use syscall to
access Nuttx kernel by exported API. In this scenario, nsh can not mount the etc image
content, because that is generated in board and as a part of Nuttx kernel.
changes:
- move etc romfs mount from nsh to Nuttx, but keep the script to parse and execute.
- move and rename the related CONFIG, move customized nsh_romfsimg.h to etc_romfs.c
in boards, and no need declaration for romfs_img/romfs_img_len.
This commit changes and updates all configurations in Nuttx arch/board as much as possible,
but if any missing, please refer to the following simple guide:
- rename CONFIG_NSH_ROMFSETC to CONFIG_ETC_ROMFS, and delete CONFIG_NSH_ARCHROMFS in defconfig
- rename the etc romfs mount configs, for example CONFIG_NSH_FATDEVNO to CONFIG_ETC_FATDEVNO
- move customized nsh_romfsimg.h to etc_romfs.c in board/arch/board/board/src and no need
declaration for romfs_img/romfs_img_len.
- delete default nsh_romfsimg.h, if ROMFSETC is enabled, should generate and compile etc_romfs.c
in board/arch/board/board/src.
Signed-off-by: fangxinyong <fangxinyong@xiaomi.com>
2023-11-26 04:51:46 +01:00
|
|
|
#ifdef CONFIG_ETC_ROMFS
|
|
|
|
# define NSECTORS(b) (((b)+CONFIG_ETC_ROMFSSECTSIZE-1)/CONFIG_ETC_ROMFSSECTSIZE)
|
|
|
|
# define MKMOUNT_DEVNAME(m) "/dev/ram" STRINGIFY(m)
|
|
|
|
# define MOUNT_DEVNAME MKMOUNT_DEVNAME(CONFIG_ETC_ROMFSDEVNO)
|
|
|
|
|
|
|
|
extern const unsigned char romfs_img[];
|
|
|
|
extern const unsigned int romfs_img_len;
|
|
|
|
#endif
|
|
|
|
|
2011-03-12 18:49:47 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* Name: nx_pgworker
|
2011-03-12 18:49:47 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2014-08-30 21:27:23 +02:00
|
|
|
* Start the page fill worker kernel thread that will resolve page faults.
|
|
|
|
* This should always be the first thread started because it may have to
|
|
|
|
* resolve page faults in other threads
|
2014-04-13 22:32:20 +02:00
|
|
|
*
|
2014-08-08 23:30:59 +02:00
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
2011-03-12 18:49:47 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2024-02-29 20:21:23 +01:00
|
|
|
#ifdef CONFIG_LEGACY_PAGING
|
2019-02-04 23:20:35 +01:00
|
|
|
static inline void nx_pgworker(void)
|
2011-03-12 18:49:47 +01:00
|
|
|
{
|
2011-04-08 17:24:50 +02:00
|
|
|
/* Start the page fill worker kernel thread that will resolve page faults.
|
|
|
|
* This should always be the first thread started because it may have to
|
|
|
|
* resolve page faults in other threads
|
2011-03-12 18:49:47 +01:00
|
|
|
*/
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
sinfo("Starting paging thread\n");
|
2011-03-12 18:49:47 +01:00
|
|
|
|
2017-10-16 19:38:00 +02:00
|
|
|
g_pgworker = kthread_create("pgfill", CONFIG_PAGING_DEFPRIO,
|
|
|
|
CONFIG_PAGING_STACKSIZE,
|
2022-10-15 19:48:35 +02:00
|
|
|
pg_worker, NULL);
|
2013-03-11 00:42:49 +01:00
|
|
|
DEBUGASSERT(g_pgworker > 0);
|
2014-08-30 21:27:23 +02:00
|
|
|
}
|
2011-03-12 18:49:47 +01:00
|
|
|
|
2024-02-29 20:21:23 +01:00
|
|
|
#else /* CONFIG_LEGACY_PAGING */
|
2019-02-04 23:20:35 +01:00
|
|
|
# define nx_pgworker()
|
2014-08-30 21:27:23 +02:00
|
|
|
|
2024-02-29 20:21:23 +01:00
|
|
|
#endif /* CONFIG_LEGACY_PAGING */
|
2014-08-30 21:27:23 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* Name: nx_workqueues
|
2014-08-30 21:27:23 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Start the worker threads that service the work queues.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2011-03-12 18:49:47 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_SCHED_WORKQUEUE
|
2019-02-04 23:20:35 +01:00
|
|
|
static inline void nx_workqueues(void)
|
2014-08-30 21:27:23 +02:00
|
|
|
{
|
2021-08-01 09:27:08 +02:00
|
|
|
#ifdef CONFIG_LIBC_USRWORK
|
2014-10-10 17:34:03 +02:00
|
|
|
pid_t pid;
|
2014-08-30 21:27:23 +02:00
|
|
|
#endif
|
2011-03-12 18:49:47 +01:00
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
#ifdef CONFIG_SCHED_HPWORK
|
2014-10-10 17:34:03 +02:00
|
|
|
/* Start the high-priority worker thread to support device driver lower
|
|
|
|
* halves.
|
|
|
|
*/
|
2013-03-06 01:02:07 +01:00
|
|
|
|
2020-05-16 17:06:29 +02:00
|
|
|
work_start_highpri();
|
2012-09-04 02:54:09 +02:00
|
|
|
|
2014-10-10 17:34:03 +02:00
|
|
|
#endif /* CONFIG_SCHED_HPWORK */
|
2012-09-04 02:54:09 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_SCHED_LPWORK
|
2020-05-16 18:05:46 +02:00
|
|
|
/* Start the low-priority worker thread for other, non-critical
|
|
|
|
* continuation tasks
|
2014-10-10 17:34:03 +02:00
|
|
|
*/
|
2012-09-04 02:54:09 +02:00
|
|
|
|
2020-05-16 17:06:29 +02:00
|
|
|
work_start_lowpri();
|
2013-03-06 01:02:07 +01:00
|
|
|
|
|
|
|
#endif /* CONFIG_SCHED_LPWORK */
|
2013-03-11 00:42:49 +01:00
|
|
|
|
2021-08-01 09:27:08 +02:00
|
|
|
#ifdef CONFIG_LIBC_USRWORK
|
2013-03-11 00:42:49 +01:00
|
|
|
/* Start the user-space work queue */
|
|
|
|
|
|
|
|
DEBUGASSERT(USERSPACE->work_usrstart != NULL);
|
2014-10-10 17:34:03 +02:00
|
|
|
pid = USERSPACE->work_usrstart();
|
|
|
|
DEBUGASSERT(pid > 0);
|
|
|
|
UNUSED(pid);
|
2013-03-11 00:42:49 +01:00
|
|
|
#endif
|
2014-08-30 21:27:23 +02:00
|
|
|
}
|
2013-03-11 00:42:49 +01:00
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
#else /* CONFIG_SCHED_WORKQUEUE */
|
2019-02-04 23:20:35 +01:00
|
|
|
# define nx_workqueues()
|
2011-03-12 18:49:47 +01:00
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
#endif /* CONFIG_SCHED_WORKQUEUE */
|
2011-03-12 18:49:47 +01:00
|
|
|
|
sched: move etc romfs mount from nsh to sched/init
Usually the startup script is placed under /etc. The contents of the etc directory
are compiled and linked with Nuttx binary in the form of romfs. After startup,
it will be mounted by Nsh.
etc is generated by the different boards, that use genromfs and xxd tools to generate
and compile it into the Nuttx, for example: boards/arm/at32/at32f437-mini/tool/mkromfs.sh
The more common method is etc image generated from the content in the corresponding
board/arch/board/board/src/etc directory, and added by Makefile for example:
boards/sim/sim/sim/src/etc.
But in kernel/protected mode, Nuttx kernel and apps are run in different privileged/
non-privileged mode or the isolated binarys, so as that nsh should use syscall to
access Nuttx kernel by exported API. In this scenario, nsh can not mount the etc image
content, because that is generated in board and as a part of Nuttx kernel.
changes:
- move etc romfs mount from nsh to Nuttx, but keep the script to parse and execute.
- move and rename the related CONFIG, move customized nsh_romfsimg.h to etc_romfs.c
in boards, and no need declaration for romfs_img/romfs_img_len.
This commit changes and updates all configurations in Nuttx arch/board as much as possible,
but if any missing, please refer to the following simple guide:
- rename CONFIG_NSH_ROMFSETC to CONFIG_ETC_ROMFS, and delete CONFIG_NSH_ARCHROMFS in defconfig
- rename the etc romfs mount configs, for example CONFIG_NSH_FATDEVNO to CONFIG_ETC_FATDEVNO
- move customized nsh_romfsimg.h to etc_romfs.c in board/arch/board/board/src and no need
declaration for romfs_img/romfs_img_len.
- delete default nsh_romfsimg.h, if ROMFSETC is enabled, should generate and compile etc_romfs.c
in board/arch/board/board/src.
Signed-off-by: fangxinyong <fangxinyong@xiaomi.com>
2023-11-26 04:51:46 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nx_romfsetc
|
|
|
|
*
|
|
|
|
* Description: mount baked-in ROMFS image to /etc.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ETC_ROMFS
|
|
|
|
static inline void nx_romfsetc(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
#ifndef CONFIG_ETC_CROMFS
|
|
|
|
/* Create a ROM disk for the /etc filesystem */
|
|
|
|
|
|
|
|
ret = romdisk_register(CONFIG_ETC_ROMFSDEVNO, romfs_img,
|
|
|
|
NSECTORS(romfs_img_len),
|
|
|
|
CONFIG_ETC_ROMFSSECTSIZE);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
ferr("ERROR: romdisk_register failed: %d\n", -ret);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Mount the file system */
|
|
|
|
|
|
|
|
finfo("Mounting ROMFS filesystem at target=%s with source=%s\n",
|
|
|
|
CONFIG_ETC_ROMFSMOUNTPT, MOUNT_DEVNAME);
|
|
|
|
|
|
|
|
#if defined(CONFIG_ETC_CROMFS)
|
|
|
|
ret = nx_mount(MOUNT_DEVNAME, CONFIG_ETC_ROMFSMOUNTPT,
|
|
|
|
"cromfs", MS_RDONLY, NULL);
|
|
|
|
#else
|
|
|
|
ret = nx_mount(MOUNT_DEVNAME, CONFIG_ETC_ROMFSMOUNTPT,
|
|
|
|
"romfs", MS_RDONLY, NULL);
|
|
|
|
#endif
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
ferr("ERROR: nx_mount(%s,%s,romfs) failed: %d\n",
|
|
|
|
MOUNT_DEVNAME, CONFIG_ETC_ROMFSMOUNTPT, ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_ETC_ROMFS */
|
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* Name: nx_start_application
|
2014-08-30 21:27:23 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2014-09-04 02:36:43 +02:00
|
|
|
* Execute the board initialization function (if so configured) and start
|
|
|
|
* the application initialization thread.
|
2014-08-30 21:27:23 +02:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2011-03-21 22:59:35 +01:00
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
static inline void nx_start_application(void)
|
2014-08-30 21:27:23 +02:00
|
|
|
{
|
2022-10-15 18:37:58 +02:00
|
|
|
#ifndef CONFIG_INIT_NONE
|
|
|
|
FAR char * const argv[] =
|
2020-08-16 20:05:58 +02:00
|
|
|
{
|
2022-10-15 18:37:58 +02:00
|
|
|
# ifdef CONFIG_INIT_ARGS
|
2020-08-16 20:05:58 +02:00
|
|
|
CONFIG_INIT_ARGS,
|
2022-10-15 18:37:58 +02:00
|
|
|
# endif
|
2020-08-16 20:05:58 +02:00
|
|
|
NULL,
|
|
|
|
};
|
2022-10-15 18:37:58 +02:00
|
|
|
|
2021-12-20 05:30:57 +01:00
|
|
|
posix_spawnattr_t attr;
|
|
|
|
#endif
|
2022-10-15 18:37:58 +02:00
|
|
|
int ret;
|
2013-03-11 21:26:55 +01:00
|
|
|
|
sched: move etc romfs mount from nsh to sched/init
Usually the startup script is placed under /etc. The contents of the etc directory
are compiled and linked with Nuttx binary in the form of romfs. After startup,
it will be mounted by Nsh.
etc is generated by the different boards, that use genromfs and xxd tools to generate
and compile it into the Nuttx, for example: boards/arm/at32/at32f437-mini/tool/mkromfs.sh
The more common method is etc image generated from the content in the corresponding
board/arch/board/board/src/etc directory, and added by Makefile for example:
boards/sim/sim/sim/src/etc.
But in kernel/protected mode, Nuttx kernel and apps are run in different privileged/
non-privileged mode or the isolated binarys, so as that nsh should use syscall to
access Nuttx kernel by exported API. In this scenario, nsh can not mount the etc image
content, because that is generated in board and as a part of Nuttx kernel.
changes:
- move etc romfs mount from nsh to Nuttx, but keep the script to parse and execute.
- move and rename the related CONFIG, move customized nsh_romfsimg.h to etc_romfs.c
in boards, and no need declaration for romfs_img/romfs_img_len.
This commit changes and updates all configurations in Nuttx arch/board as much as possible,
but if any missing, please refer to the following simple guide:
- rename CONFIG_NSH_ROMFSETC to CONFIG_ETC_ROMFS, and delete CONFIG_NSH_ARCHROMFS in defconfig
- rename the etc romfs mount configs, for example CONFIG_NSH_FATDEVNO to CONFIG_ETC_FATDEVNO
- move customized nsh_romfsimg.h to etc_romfs.c in board/arch/board/board/src and no need
declaration for romfs_img/romfs_img_len.
- delete default nsh_romfsimg.h, if ROMFSETC is enabled, should generate and compile etc_romfs.c
in board/arch/board/board/src.
Signed-off-by: fangxinyong <fangxinyong@xiaomi.com>
2023-11-26 04:51:46 +01:00
|
|
|
#ifdef CONFIG_ETC_ROMFS
|
|
|
|
nx_romfsetc();
|
|
|
|
#endif
|
|
|
|
|
2019-02-18 22:32:00 +01:00
|
|
|
#ifdef CONFIG_BOARD_LATE_INITIALIZE
|
2014-09-04 02:36:43 +02:00
|
|
|
/* Perform any last-minute, board-specific initialization, if so
|
|
|
|
* configured.
|
|
|
|
*/
|
2013-03-11 21:26:55 +01:00
|
|
|
|
2019-02-18 22:32:00 +01:00
|
|
|
board_late_initialize();
|
2014-09-04 02:36:43 +02:00
|
|
|
#endif
|
|
|
|
|
2023-11-09 05:02:37 +01:00
|
|
|
#if defined(CONFIG_BOARD_COREDUMP_SYSLOG) || \
|
|
|
|
defined(CONFIG_BOARD_COREDUMP_BLKDEV)
|
|
|
|
coredump_initialize();
|
|
|
|
#endif
|
|
|
|
|
2022-10-29 18:30:23 +02:00
|
|
|
posix_spawnattr_init(&attr);
|
|
|
|
attr.priority = CONFIG_INIT_PRIORITY;
|
|
|
|
attr.stacksize = CONFIG_INIT_STACKSIZE;
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
#if defined(CONFIG_INIT_ENTRY)
|
2020-08-16 20:05:58 +02:00
|
|
|
|
2014-09-04 02:36:43 +02:00
|
|
|
/* Start the application initialization task. In a flat build, this is
|
2021-12-20 05:21:47 +01:00
|
|
|
* entrypoint is given by the definitions, CONFIG_INIT_ENTRYPOINT. In
|
2014-08-30 21:27:23 +02:00
|
|
|
* the protected build, however, we must get the address of the
|
|
|
|
* entrypoint from the header at the beginning of the user-space blob.
|
2013-03-11 00:42:49 +01:00
|
|
|
*/
|
2011-03-18 19:31:26 +01:00
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
sinfo("Starting init thread\n");
|
2014-09-04 02:36:43 +02:00
|
|
|
|
2022-10-15 18:37:58 +02:00
|
|
|
# ifdef CONFIG_BUILD_PROTECTED
|
2013-03-11 00:42:49 +01:00
|
|
|
DEBUGASSERT(USERSPACE->us_entrypoint != NULL);
|
2022-10-29 18:30:23 +02:00
|
|
|
ret = task_spawn(CONFIG_INIT_ENTRYNAME,
|
|
|
|
USERSPACE->us_entrypoint,
|
|
|
|
NULL, &attr, argv, NULL);
|
2022-10-15 18:37:58 +02:00
|
|
|
# else
|
2022-10-29 18:30:23 +02:00
|
|
|
ret = task_spawn(CONFIG_INIT_ENTRYNAME,
|
|
|
|
CONFIG_INIT_ENTRYPOINT,
|
|
|
|
NULL, &attr, argv, NULL);
|
2022-10-15 18:37:58 +02:00
|
|
|
# endif
|
2021-12-20 05:21:47 +01:00
|
|
|
#elif defined(CONFIG_INIT_FILE)
|
2014-09-04 02:36:43 +02:00
|
|
|
|
2022-10-15 18:37:58 +02:00
|
|
|
# ifdef CONFIG_INIT_MOUNT
|
2018-08-23 19:08:22 +02:00
|
|
|
/* Mount the file system containing the init program. */
|
|
|
|
|
2021-02-15 09:08:51 +01:00
|
|
|
ret = nx_mount(CONFIG_INIT_MOUNT_SOURCE, CONFIG_INIT_MOUNT_TARGET,
|
|
|
|
CONFIG_INIT_MOUNT_FSTYPE, CONFIG_INIT_MOUNT_FLAGS,
|
|
|
|
CONFIG_INIT_MOUNT_DATA);
|
2018-08-23 19:08:22 +02:00
|
|
|
DEBUGASSERT(ret >= 0);
|
2022-10-15 18:37:58 +02:00
|
|
|
# endif
|
2018-08-23 19:08:22 +02:00
|
|
|
|
2014-09-04 02:36:43 +02:00
|
|
|
/* Start the application initialization program from a program in a
|
|
|
|
* mounted file system. Presumably the file system was mounted as part
|
2019-02-18 22:32:00 +01:00
|
|
|
* of the board_late_initialize() operation.
|
2014-09-04 02:36:43 +02:00
|
|
|
*/
|
|
|
|
|
2021-12-20 05:21:47 +01:00
|
|
|
sinfo("Starting init task: %s\n", CONFIG_INIT_FILEPATH);
|
2014-08-30 21:27:23 +02:00
|
|
|
|
2021-12-20 05:30:57 +01:00
|
|
|
posix_spawnattr_init(&attr);
|
|
|
|
|
|
|
|
attr.priority = CONFIG_INIT_PRIORITY;
|
|
|
|
attr.stacksize = CONFIG_INIT_STACKSIZE;
|
2022-12-09 13:45:37 +01:00
|
|
|
|
2022-10-24 14:12:34 +02:00
|
|
|
ret = exec_spawn(CONFIG_INIT_FILEPATH, argv, NULL,
|
2023-04-26 05:44:08 +02:00
|
|
|
CONFIG_INIT_SYMTAB, CONFIG_INIT_NEXPORTS, NULL, &attr);
|
2020-08-16 20:05:58 +02:00
|
|
|
#endif
|
2022-10-29 18:30:23 +02:00
|
|
|
posix_spawnattr_destroy(&attr);
|
|
|
|
DEBUGASSERT(ret > 0);
|
2014-08-30 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
2014-09-04 02:36:43 +02:00
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* Name: nx_start_task
|
2014-09-04 02:36:43 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This is the framework for a short duration worker thread. It off-loads
|
|
|
|
* the board initialization and application start-up from the limited
|
|
|
|
* start-up, initialization thread to a more robust kernel thread.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-02-18 22:32:00 +01:00
|
|
|
#ifdef CONFIG_BOARD_LATE_INITIALIZE
|
2019-02-13 04:01:22 +01:00
|
|
|
static int nx_start_task(int argc, FAR char **argv)
|
2014-09-04 02:36:43 +02:00
|
|
|
{
|
|
|
|
/* Do the board/application initialization and exit */
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
nx_start_application();
|
2014-09-04 02:36:43 +02:00
|
|
|
return OK;
|
|
|
|
}
|
2019-02-13 04:01:22 +01:00
|
|
|
#endif
|
2014-09-04 02:36:43 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* Name: nx_create_initthread
|
2014-09-04 02:36:43 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Execute the board initialization function (if so configured) and start
|
|
|
|
* the application initialization thread. This will be done either on the
|
|
|
|
* thread of execution of the caller or on a separate thread of execution
|
|
|
|
* if so configured.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
static inline void nx_create_initthread(void)
|
2014-09-04 02:36:43 +02:00
|
|
|
{
|
2019-02-18 22:32:00 +01:00
|
|
|
#ifdef CONFIG_BOARD_LATE_INITIALIZE
|
2014-10-10 17:34:03 +02:00
|
|
|
int pid;
|
2014-09-04 02:36:43 +02:00
|
|
|
|
|
|
|
/* Do the board/application initialization on a separate thread of
|
|
|
|
* execution.
|
|
|
|
*/
|
|
|
|
|
2022-10-24 14:12:34 +02:00
|
|
|
pid = nxthread_create("AppBringUp", TCB_FLAG_TTYPE_KERNEL,
|
|
|
|
CONFIG_BOARD_INITTHREAD_PRIORITY,
|
|
|
|
NULL, CONFIG_BOARD_INITTHREAD_STACKSIZE,
|
|
|
|
nx_start_task, NULL, environ);
|
2018-01-31 23:11:54 +01:00
|
|
|
DEBUGASSERT(pid > 0);
|
2018-02-01 17:25:48 +01:00
|
|
|
UNUSED(pid);
|
2019-02-13 04:01:22 +01:00
|
|
|
#else
|
|
|
|
/* Do the board/application initialization on this thread of execution. */
|
|
|
|
|
|
|
|
nx_start_application();
|
|
|
|
#endif
|
2014-09-04 02:36:43 +02:00
|
|
|
}
|
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2019-02-04 23:20:35 +01:00
|
|
|
* Name: nx_bringup
|
2014-08-30 21:27:23 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Start all initial system tasks. This does the "system bring-up" after
|
|
|
|
* the conclusion of basic OS initialization. These initial system tasks
|
|
|
|
* may include:
|
|
|
|
*
|
2024-02-29 20:21:23 +01:00
|
|
|
* - pg_worker: The page-fault worker thread (if CONFIG_LEGACY_PAGING is
|
|
|
|
* defined).
|
2014-08-30 21:27:23 +02:00
|
|
|
* - work_thread: The work thread. This general thread can be used to
|
|
|
|
* perform most any kind of queued work. Its primary
|
|
|
|
* function is to serve as the "bottom half" of device
|
|
|
|
* drivers.
|
|
|
|
*
|
|
|
|
* And the main application entry point:
|
|
|
|
* symbols, either:
|
|
|
|
*
|
2021-12-20 05:21:47 +01:00
|
|
|
* - CONFIG_INIT_ENTRYPOINT: This is the default user application entry
|
2014-08-30 21:27:23 +02:00
|
|
|
* point, or
|
2021-12-20 05:21:47 +01:00
|
|
|
* - CONFIG_INIT_FILEPATH: The full path to the location in a mounted
|
2014-08-30 21:27:23 +02:00
|
|
|
* file system where we can expect to find the
|
|
|
|
* initialization program. Presumably, this file system
|
|
|
|
* was mounted by board-specific logic when
|
2019-02-18 22:32:00 +01:00
|
|
|
* board_late_initialize() was called.
|
2014-08-30 21:27:23 +02:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
int nx_bringup(void)
|
2014-08-30 21:27:23 +02:00
|
|
|
{
|
2023-02-22 04:08:22 +01:00
|
|
|
sched_trace_begin();
|
|
|
|
|
2022-10-24 14:12:34 +02:00
|
|
|
#ifndef CONFIG_DISABLE_ENVIRON
|
|
|
|
/* Setup up the initial environment for the idle task. At present, this
|
|
|
|
* may consist of only the initial PATH variable and/or and init library
|
|
|
|
* path variable. These path variables are not used by the IDLE task.
|
|
|
|
* However, the environment containing the PATH variable will be inherited
|
|
|
|
* by all of the threads created by the IDLE task.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIBC_HOMEDIR
|
|
|
|
setenv("PWD", CONFIG_LIBC_HOMEDIR, 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_PATH_INITIAL
|
|
|
|
setenv("PATH", CONFIG_PATH_INITIAL, 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_LDPATH_INITIAL
|
|
|
|
setenv("LD_LIBRARY_PATH", CONFIG_LDPATH_INITIAL, 1);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-08-30 21:27:23 +02:00
|
|
|
/* Start the page fill worker kernel thread that will resolve page faults.
|
|
|
|
* This should always be the first thread started because it may have to
|
|
|
|
* resolve page faults in other threads
|
|
|
|
*/
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
nx_pgworker();
|
2014-08-30 21:27:23 +02:00
|
|
|
|
|
|
|
/* Start the worker thread that will serve as the device driver "bottom-
|
|
|
|
* half" and will perform misc garbage clean-up.
|
|
|
|
*/
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
nx_workqueues();
|
2014-08-30 21:27:23 +02:00
|
|
|
|
|
|
|
/* Once the operating system has been initialized, the system must be
|
|
|
|
* started by spawning the user initialization thread of execution. This
|
2014-09-04 02:36:43 +02:00
|
|
|
* will be the first user-mode thread.
|
2014-08-30 21:27:23 +02:00
|
|
|
*/
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
nx_create_initthread();
|
2022-10-24 14:12:34 +02:00
|
|
|
|
|
|
|
#if !defined(CONFIG_DISABLE_ENVIRON) && (defined(CONFIG_PATH_INITIAL) || \
|
|
|
|
defined(CONFIG_LDPATH_INITIAL))
|
2024-06-25 10:36:13 +02:00
|
|
|
/* We would save a few bytes by discarding the IDLE thread's environment.
|
|
|
|
* But when kthreads share the same group, this is no longer proper, so
|
|
|
|
* we can't do clearenv() now.
|
|
|
|
*/
|
2022-10-24 14:12:34 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2023-02-22 04:08:22 +01:00
|
|
|
sched_trace_end();
|
2011-03-12 18:49:47 +01:00
|
|
|
return OK;
|
|
|
|
}
|