DDE/DDEKit: Difference between revisions

From TUDOS-Wiki
Jump to navigationJump to search
Line 1: Line 1:
== Motivation ==
== Overview ==


Device drivers are an essential element in every operating system, because without them no interaction with the external world is possible. Because of the huge range of available devices, implementing L4 device drivers for even the most common devices on the market would be a tedious job. To circumvent this problem and support a wide range of devices on L4, we designed DDE, the '''D'''evice '''D'''river '''E'''nvironment. Aim of this project is to provide legacy device driver interfaces, so that the large amount of readily available device drivers for other operating systems (such as Linux and BSD) can be reused on L4 with few effort.
Device drivers are an essential element in every operating system, because without them no interaction with the external world is possible. Because of the huge range of available devices, implementing L4 device drivers for even the most common devices on the market would be a tedious job. To circumvent this problem and support a wide range of devices on L4, we designed DDE, the '''D'''evice '''D'''river '''E'''nvironment. Aim of this project is to provide legacy device driver interfaces, so that the large amount of readily available device drivers for other operating systems (such as Linux and BSD) can be reused on L4 with few effort.

Revision as of 10:58, 3 April 2008

Overview

Device drivers are an essential element in every operating system, because without them no interaction with the external world is possible. Because of the huge range of available devices, implementing L4 device drivers for even the most common devices on the market would be a tedious job. To circumvent this problem and support a wide range of devices on L4, we designed DDE, the Device Driver Environment. Aim of this project is to provide legacy device driver interfaces, so that the large amount of readily available device drivers for other operating systems (such as Linux and BSD) can be reused on L4 with few effort.

DDE consists of three layers:

  1. DDEKit is a glue layer between the L4Env and the higher device driver layers.
  2. DDEsomeOS implement OS-specific environments for every supported OS.
  3. native device drivers are not modified and simply linked against the DDE/DDEKit libraries and extended with a little server code in order to export their interface to other L4 applications.

DDEKit

OS-Specific Environments

DDE/Linux2.6

DDE/FBSD

Applications using DDE/DDEKit