Boot-up Time Reduction Howto

来源:互联网 发布:淘宝最迟多久确认收货 编辑:程序博客网 时间:2024/06/10 09:53

   

The items on this page constitute a list of existing techniques for reducing bootup times for embedded systems.  Some of these items may also be applicable to desktop or enterprise systems, but that is not the focus.

For each individual item below, a separate page should exist.  If it doesn't already exist, a new page should be created using the !HowtoTemplate.  Links listed in red below are pages that are not created yet.  To sign up for a task related to this HOWTO, please see the Bootup Time Howto Task List.

Contents

 [hide] 
  • 1Introduction
    • 1.1Bootup Phases
    • 1.2Main Technique Types
  • 2Bootup Time Reduction Technique Outline
  • 3Firmware Phase
  • 4Kernel Phase
  • 5User Space Phase
  • 6General Reduction Techniques
  • 7Table of Reduction Techniques
  • 8Potential Techniques

Introduction

Bootup Phases

This document divides the bootup process into 3 main phases:

  • Firmware initialization phase
  • Kernel initialization phase
  • User Space initialization phase

User Space usually consists of a few distinct phases also:

  • Initialization scripts (RC scripts, for desktop systems)
    • This is where most daemons and services are loaded.
  • Graphics system initialization
  • Graphical environment start
  • Application initialization

Main Technique Types

Techniques presented here can be organized according to the way they try to achieve their effect. The technique can consist of:

  1. speeding up the activity
  2. doing the activity in parallel with other initialization tasks
  3. doingthe activity later (possibly after booting is completed)
  4. avoiding doing the activity at all.

In summary, each technique describes how to take an existing bootup activity and do one of:

  • Do it faster
  • Do it in parallel
  • Do it later
  • Don't do it at all

Some techniques will consist of multiple methods (such as both speeding up and doing it in parallel).

Bootup Time Reduction Technique Outline

Following is an outline of different bootup time reduction techniques, organized by the boot phase where they are applied.

Firmware Phase

Here ase some techniques for speeding up the Firmware phase of the boot sequence:

  • Kernel XIP - Kernel Execute-In-Place
  • SkipFirmware - Disable firmware features to eliminate diagnostics, memory counts, etc.
  • Parallel HDSpin Up - Parallelize Hard Disk spinup with Kernel load
  • DMA Copy Of Kernel On Startup - Use DMA to copy kernel from flash to RAM

Kernel Phase

The following are techniques used to speed up the initialization of the kernel:

  • DisableConsole - Turn off serial console output during boot 
  • Preset LPJ - Use pre-set loops_per_jiffy (avoid calibrate_delay())
  • Preconfigure PCI -  Preconfigure some PCI bus slots
  • IDE No Probe - Don't probe some IDE devices - 
  • No Probe Missing Devices - Disable probes for non-existent devices (including keyboards, etc.)
  • Small Kernel Config - Use smallest kernel configuration possible 
  • Reduce Driver Busy Waits - Shorten device probes by reducing the amount of time the driver busywaits
    • A special case of this is Short IDE Delays, with IDE driver delays
  • Threaded Init - Perform threaded initialization - replace driver busywaits with yields
    • A special case of this is IDE Preempt, with IDE driver busywaits
  • Load Drivers Later - Use modules where possible to move driver initialization later in the boot sequence

User Space Phase

The following are techniques for reducing the bootup time for user-space programs: 

  • Application XIP - Execute-In-Place for applications and librarys 
  • Reduce RC Scripts - Eliminate unneeded RC scripts 
  • Custom Init Program - Use a custom initialization program
    • (This is a special case of eliminating unneeded RC scripts)
  • Optimize RC Scripts - Optimize RC script execution
  • Parallel RC Scripts - Execute RC scripts in parallel, instead of in sequence
  • Pre Linking - Avoid overhead of runtime link fixups during first program/library load
  • Reduce Flash Writes - Reduce writes to flash. (In particular, perhaps you want to "disable the date of last access" with noatime[1][2][3][4][5][6])
  • Disable Logging - Turn off logging to stable storage 
  • Faster File System - Use faster file system 
  • Ramdisk During Boot - Use RAMDISK during boot
  • Segmented File System - Use a segmented file system to avoid interference between reads and writes

General Reduction Techniques

Some reduction techniques don't apply to a specific boot phase, but are general methods to reduce bootup time.  These are listed here.

  • Smaller Programs - Use smaller kernel and programs for faster load times
  • Faster Memory - Use faster system memory to increase load and initialization performance

Table of Reduction Techniques

The following table summarizes the various techniques listed in this document.

Acronyms and Terms TechniqueBoot PhaseDescriptionObserved reductionNotesKernel XIPFirmwareKernel Execute-In-Place - avoids kernel copy and decompression time         250 mscauses runtime performance lossSkip FirmwareFirmwareSkip firmware probing features,  like memory check, bus probing, and device detection, etc.??Linux re-probes busses and devices anyway, so this is usually waste of timeParallel HDSpin UpFirwmareStart hard drive spin up before loading kernel                              ??   Not possible if the kernel is loaded from  hard drive.DMA Copy Of Kernel On StartupFirmwareUse DMA to copy kernel from flash to RAM                                    180 ms.Preset LPJKernelUse a hardcoded loops_per_jiffy value to avoid cost of calibration.         250 ms.No Probe Missing DevicesKernelAvoid probing for non-existent keyboards and other devices                  ??   .Small Kernel ConfigKernelReduce kernel size and length of code paths, thereby reducing execution overhead??.Disable ConsoleKernelTurn off output to serial console during boot                               250 ms.Preconfigure PCIKernelPreconfigure PCI bus slots on kernel command line                           ??Is this even possible?Load Drivers LaterDriversMove drivers to modules and load them later in boot sequence.)              ??Only works for drivers that can be loaded as modules late in the boot cycle.IDE No ProbeDriversUse "noprobe" on kernel command line for IDE driver                         3 sec.Depends on hardware presentReduce Driver Busy WaitsDriversReduce the length of driver busy waits                                      ??.Short IDE DelaysDriversReduce length of IDE initialization delays                                  5 sec.May be dangerous, depends on hardwareThreaded InitDriversReplace busywaits in drivers with yields                                    ??Only adds value if driver can be parallelized with some other init activity.IDE PreemptDriversReplace busywaits in IDE drivers with yields                                250 ms (decreased non-preemptibility)Already fixed in 2.6Reduce RC ScriptsRC scriptsEliminate unneeded init scripts                                             3 sec.Depends on required scriptsParallel RC ScriptsRC scriptsStart init scripts in parallel                                              ??.Defer RC ScriptsRC scriptsDefer some init scripts to later in boot cycle                              ??.Optimize RC ScriptsRC scriptsUse busybox, smaller shell, builtins, adjusted scripts                      3 sec.Depends on required scriptsCustom Init ProgramRC scriptsUse custom initialization program (eliminating RC scripts altogether)      10 sec.requires long-term maintenance of the programApplication XIPUser SpaceUse Execute-In-Place for applications and libraries.                        ??Requires uncompressed file system. Application performance may be reduced.Segmented File SystemUser SpaceKeep read-only data separate from writable data in flash storage            ??.Reduce Flash WritesUser SpaceAvoid writes to flash memory                                                ??.Ramdisk During BootUser SpaceKeep writable files in RAM, and write them to flash after boot              ??.Smaller ProgramsUser SpaceUse smallest programs and configurations possible                           ??Reduces program load time. It may increase cache hits.Faster MemoryGeneralUse faster memory                                                           ??.

Potential Techniques

Here is a list of potential techniques that have not been tried yet, to our knowledge:

  • Use different, faster, firmware
  • Cache results of find and grep during RC scripts
  • Partial XIP (this is a current project of the WG)
原创粉丝点击