Startup in Kernel Space

Kernel Startup Process

The kernel startup process consists of the assembly startup and C language startup, as shown in the following figure. The assembly startup involves initializing CPU settings, disabling dCache/iCache, enabling the FPU and NEON, setting the MMU to establish the virtual-physical address mapping, setting the system stack, clearing the BSS segment, and calling the main function of the C language. The C language startup involves starting the OsMain function and starting scheduling. As shown in the following figure, the OsMain function is used for basic kernel initialization and architecture- and board-level initialization. The kernel startup framework leads the initialization process. The right part of the figure shows the phase in which external modules can register with the kernel startup framework and starts. The following table describes each phase.

Figure 1 Kernel startup process

Table 1 Startup framework levels

Level

Description

LOS_INIT_LEVEL_EARLIEST

Earliest initialization.

The initialization is architecture-independent. The board and subsequent modules initialize the pure software modules on which they depend.

Example: trace module

LOS_INIT_LEVEL_ARCH_EARLY

Early initialization of the architecture.

The initialization is architecture-dependent. Subsequent modules initialize the modules on which they depend. It is recommended that functions not required for startup be placed at LOS_INIT_LEVEL_ARCH.

LOS_INIT_LEVEL_PLATFORM_EARLY

Early initialization of the platform.

The initialization depends on the board platform and drivers. Subsequent modules initialize the modules on which they depend. It is recommended that functions required for startup be placed at LOS_INIT_LEVEL_PLATFORM.

Example: UART module

LOS_INIT_LEVEL_KMOD_PREVM

Kernel module initialization before memory initialization.

Initialize the modules that need to be enabled before memory initialization.

LOS_INIT_LEVEL_VM_COMPLETE

Initialization after the basic memory is ready.

After memory initialization, initialize the modules that need to be enabled and do not depend on inter-process communication (IPC) and system processes.

Example: shared memory function

LOS_INIT_LEVEL_ARCH

Late initialization of the architecture.

The initialization is related to the architecture extension functions. Subsequent modules initialize the modules on which they depend.

LOS_INIT_LEVEL_PLATFORM

Late initialization of the platform.

The initialization depends on the board platform and drivers. Subsequent modules initialize the modules on which they depend.

Example: initialization of the driver kernel abstraction layer (MMC and MTD)

LOS_INIT_LEVEL_KMOD_BASIC

Initialization of the kernel basic modules.

Initialize the basic modules that can be detached from the kernel.

Example: VFS initialization

LOS_INIT_LEVEL_KMOD_EXTENDED

Initialization of the kernel extended modules.

Initialize the extended modules that can be detached from the kernel.

Example: initialization of system call, ProcFS, Futex, HiLog, HiEvent, and LiteIPC

LOS_INIT_LEVEL_KMOD_TASK

Kernel task creation

Create kernel tasks (kernel tasks and software timer tasks).

Example: creation of the resident resource reclaiming task, SystemInit task, and CPU usage statistics task.

Programming Example

Example Description

Add a kernel module and register the initialization function of the module to the kernel startup process to complete the module initialization during the kernel initialization process.

Sample Code

/* Header file of the kernel startup framework */
#include "los_init.h"
...

/* Initialization function of the new module */
unsigned int OsSampleModInit(void)
{
    PRINTK("OsSampleModInit SUCCESS!\n");
    ......
}
...
/* Register the new module at the target level of the startup framework. */
LOS_MODULE_INIT(OsSampleModInit, LOS_INIT_LEVEL_KMOD_EXTENDED);

Verification

main core booting up...
OsSampleModInit SUCCESS!
releasing 1 secondary cores
cpu 1 entering scheduler
cpu 0 entering scheduler

According to the information displayed during the system startup, the kernel calls the initialization function of the registered module during the startup to initialize the module.

NOTE: Modules at the same level cannot depend on each other. It is recommended that a new module be split based on the preceding startup phase and be registered and started as required. You can view the symbol table in the .rodata.init.kernel.* segment of the OHOS_Image.map file generated after the build is complete, so as to learn about the initialization entry of each module that has been registered with the kernel startup framework and check whether the newly registered initialization entry takes effect.