Documentation/Maemo 5 Developer Guide/Architecture/System Software

System software architecture is divided into three subsystems:

System control subsystem is responsible for device state management (DSME), mode control (MCE) and various UI components including system UI, control panel applets and status bar icons. In addition, the system control subsystem includes HAL component for hardware abstraction, maemo-launcher for application startup execution, alarmd for alarm event handling, clockd for time management, iphbd for synchronization and profiled for profile handling. The SC subsystem provides D-Bus interface towards other applications. All the system control components are located in user space.

Energy management subsystem is responsible of battery charging. More specifically, the EM subsystem handles battery voltage monitoring and recognition, charging (via USB) and charger recognition. In addition, battery plugin for HAL is provided to provide standard D-Bus interface towards other applications. For example, the battery applet uses the HAL battery plugin to indicate the battery status in the UI. The EM subsystem components are located both in kernel and user space.

Power management subsystem is located entirely in kernel space. PM subsystem is responsible for putting the OMAP and peripherals into lowest possible power states as often as possible, without compromising performance. To achieve this, all the drivers in the system need to co-operate with the PM subsystem. The PM subsystem is build from standard linux kernel components including clock, CPUIdle and CPUFreq frameworks.

Contents

[edit] System Control

Management of user modes and system states is divided to two separate entities; Mode Control Entity (MCE) and Device State Management Entity (DSME). With this differentiation it is possible to maintain and develop user context and system context control scheme without complex overlaps.

[edit] System UI

SystemUI provides services to other components to display UI elements (dialogs, notifications, alarms) that does not have native UI on their own.

[edit] Status Bar and Control Panel plugins

This section describes the various UI elements and widgets that are part of the system control subsystem.

Name
Status Bar Battery plugin
Purpose
Provides battery status settings
Description
  • Provides status bar plugin to visualize battery status
  • Provides estimation for battery time left for idle and use scenarios
Name
Control Panel Display plugin
Purpose
Provides display and autolock settings
Description
Provides control panel plugin for:
  • display brightness
  • brightness period
  • switch off period
  • screen and key lock when screen goes off
  • LED control
Store the settings in DSM Gconf
Name
Control Panel Device Lock plugin
Purpose
Provides device lock settings
Description
Provides control panel plugin for
  • autolock settings (on/off, period)
  • *lock code

Store the settings in DSM Gconf

[edit] Device State Management Entity (DSME)

DSME is responsible of device state management , process lifeguard support, watch dogs and thermal management. DSME architecture is based on modular plugin architecture. DSME core provides message handling capabilities to modules. Each module is dynamically loaded library. DSME runs in a single process. The D-Bus interface provides services to request reboot, shutdown or powerup (from acting dead mode), indication of shutdown, thermal events and data save.

Diagram of DSME components
DSME components


Image:Ambox_notice.png
In Fremantle release onwards, DSME is not part of the initfs anymore. Instead, it is located in the rootfs and started after init.
Name
Device State Management Entity
Purpose
Provides device state control logic and management interface.
Description
  • Provides means for configuration and management interface.
  • Provides lifeguard CLI API for system service startup.
  • Manages device state including display, watchdog and startup.

[edit] Mode Control Entity (MCE)

MCE is responsible of handling display control (active/dim/blank), activity monitoring (keys, buttons), keyboard backlight, ambient light sensor (ALS), LEDs and device mode control. In addition, MCE is responsible for providing interface to proximity, accelometer and vibra devices.

Name
Mode Control Entity
Purpose
Provides device mode logic and services for DSM interface.
Description
  • Provides means for device mode control (Eg: flight mode)
  • Provides DSM gconf API for controlling display and security.
  • Manages DSM API for applications.

[edit] Hardware Abstraction Layer (HAL)

Purpose
Provides hardware abstraction layer for applications.
Description
  • Provides unified API for applications to query device properties and receive events for changes.
  • Gathers information of devices via various kernel interfaces (sysfs, udev)

[edit] Alarm Daemon (Alarmd)

Purpose
Provides centralized place for requesting scheduled events.
Description
  • Provides service and API for requesting, changing and deleting scheduled events.
  • Uses SystemUI to show dialogs for alarms and calendar events.

[edit] Time Daemon (Clockd)

Purpose
Provides centralized place for handling time.
Description
  • Provides service and API for requesting, changing and notifying time and timezone changes.
  • Provides interface for monitoring network time notifications.

[edit] Profile Daemon (Profiled)

Purpose
Provides centralized place for handling (user) profiles related data and notifications.
Description
Provides service and API for requesting, changing and notifying profile related data.

[edit] Heartbeat Daemon (Heartbeatd)

Purpose
Provides service to wake up applications on requested interval, internally groups the wakeups together inorder to save power.
Description
  • Provides service and API for requesting, changing and deleting wakeups on specific intervals.
  • Uses kernel module to delay TCP keepalives and sends them in bunches.

[edit] Public Interfaces

This section lists the public interfaces provided by the System Control Subsystem.

System control public interfaces
Interface Purpose Interface type
DSME API Interface for requesting device powerup, shutdown and reboot.
Interface for thermal management indications.
D-Bus
Dsmetool CLI Interface for init scripts to start processes which will be monitored for system robustness. Socket
HAL API Provides device property information and events about device state changes. D-Bus or library (libhal)
DSM GConf API Interface for DSM related configuration values (security lock key, display) GConf
MCE API Interface for requesting display control and lock status, device mode changes and status, inactivity status, and device lock mode and status. D-Bus
Profile API Interface for requesting display control and lock status, device mode changes and status, inactivity status, and device lock mode and status. D-Bus
Time API Control and notifications about timezone and time changes. D-Bus
Alarm API Requesting, changing and deleting alarms. D-Bus
HeartBeat API Getting heart beat on requested interval. Socket

[edit] Energy Management

[edit] Battery management entity (BME)

Purpose
Provides battery monitoring and charging service.
Description
  • Provides battery identification, monitoring, charging and BME API.
  • TSS interface for A/D converter calibration.
  • Emulation libraries for Nokia OS services.

[edit] HAL battery addon

Purpose
Provides battery information via HAL.
Description
Provides battery status and type information via HAL.

[edit] Public Interfaces

Energy management public interfaces
Interface Purpose Type
Battery HAL API Battery event API. Provides battery and charger status changes. HAL/D-Bus

[edit] Power Management

Power management is part of Linux kernel. Various kernel subsystems and components are used to implement the power management. Some of the components are in mainline Linux while others are ARM/OMAP specific. However, all the components are in some Linux tree and no proprietary subsystems or components are used.

The power management contains the following elements :

  • Clock framework including power and clock domain extensions
  • CPU Idle
  • CPU Freq
  • Dynamic tick
  • Idle process
  • OMAP power management routines (PRCM)

[edit] Kernel power management

Kernel power management has several mechanisms to perform power management. The most commonly used in System Software architecture are listed below.

[edit] Dynamic sleep

In Dynamic sleep, the idle task is used to trigger the check if the system can go into power saving mode. That is, every time the idle task is scheduled to run, the dynamic sleep mechanism tries to put the system into deepest possible sleep mode compatible with the constraints that are currently active. CPU Idle framework is used to implement the dynamic sleep functionality.

[edit] Dynamic Voltage and Frequency Scaling

Dynamic Voltage and Frequency Scaling (DVFS) is the other mechanism to save power. DVFS allows to scale down the SoC’s frequency and voltage at runtime to reduce leakage currents and hence save power. The decision to scale the frequency (and consequently voltage) of the ARM and DSP processors is based on their load, bandwidth and latency constraints. CPU Freq framework is used to implement the DVFS.

[edit] Components and descriptions

[edit] Clock Framework

Purpose
Provides clock framework for HW clock management.
Responsibilities
  • Provides common means for turning HW clocks on and off.
  • Provides HW clock sanity checks and use counts.
  • Allows power management to probe HW clocks status.
  • Handles also clock and power domains, and wakeup and sleep dependencies.

[edit] CPU Idle

Purpose
Provides mechanism for selecting and entering the deepest possible sleep state based on the constraints

[edit] CPU Freq

Purpose
Provides mechanism for selecting and entering the lowest possible operating point based on the MPU and DSP loads.
Responsibilities
  • Monitor CPU and DSP load requirements.
  • Adjust CPU and DSP frequencies based on load.

[edit] Public Interfaces

Power management public interfaces
Name Description
CLK API Clock framework public API.
Contraints API Interface for drivers for setting constraints on bandwidth and latency to control the target sleep states.