aboutsummaryrefslogtreecommitdiffstats
path: root/docs/06_Component_Documentation/05_drm_lease_manager.md
blob: 3b7b2e9b826b2f9699de179330b43c3bbeec7c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
---
title: DRM lease manager
---

# DRM Lease Manager

## Overview

The DRM Lease Manager is used in AGL to allocate display controller outputs to different processes. Each process has direct access to its allocated output via the kernel DRM interface, and is prevented from accessing any other outputs managed by the display controller.

The display controller partitioning is made possible by using the kernel DRM Lease feature.  For more information on the DRM lease functionality, please see the Linux kernel [DRM userspace API documentation](https://www.kernel.org/doc/html/latest/gpu/drm-uapi.html).


## Usage

### Building DRM Lease manager and sample clients

Enable the  `agl-drm-lease` AGL feature when setting up your build environment
with aglsetup.sh.

This will add the drm-lease-manager package to the image, and will add DRM
lease support to the following packages:

* weston
* kmscube

kmscube is not included in the image by default. To add the package to the
image, add the following to your local.conf

```
IMAGE_INSTALL_append = " kmscube"
```

### Starting the DRM lease manager

The drm-lease-manager must be the only process to directly open the DRM device.
Shut down any running window systems (eg. weston or agl-compositor) and run:

```shell
  systemctl start drm-lease-manager
```

This will create a lease for each output connection on the platform.
The name of each lease will be in the form of `card0-<output name>`
 (eg. `card0-LVDS-1` or `card0-HDMI-A-1`)

**Note**: `drm-lease-manager` can be started on a different display controller (i.e. not `card0`) by modifying the command line in the systemd unit file.

Run the help command for details.

```shell
  drm-lease-manager --help
```

### Running weston

weston can be started on any available DRM lease by running with the
`--drm-lease=<lease name>` option.

```shell
  weston --drm-lease=card0-HDMI-A-1
```

### Running kmscube sample
With the `drm-lease-manager` running, `kmscube` can display on any available
lease by launching it with the `-L -D<lease name>` options.

```shell
  kmscube -L -Dcard0-HDMI-A-1
```

Multiple weston or kmscube instances (one per DRM lease) can be started at the same time.

## Adding support to your application

The DRM Lease Manager packages includes a client library (libdlmclient) to request access to the DRM leases it creates.  The client library provides file descriptors that can be used as if they were created by directly opening the underlying DRM device.

Clients that want _direct access_ to the DRM device can use this library to do so.  Compositor (agl-compositor or weston) client applications do not need to use this interface.  


To use the DRM leases, clients only need to replace their calls to
`drmOpen()` and `drmClose()` with the appropriate libdlmclient API calls.

### libdlmclient API usage

_Error handling has been omitted for brevity and clarity of examples._

#### Requesting a lease from the DRM Lease Manager

```c
  struct dlm_lease *lease = dlm_get_lease("card0-HDMI-A-1");
  int drm_device_fd = dlm_lease_fd(lease);
```

`drm_device_fd` can now be used to access the DRM device

#### Releasing a lease

```c
  dlm_release_lease(lease);
```

**Note: `drm_device_fd` is not usable after calling `dlm_release_lease()`**

## Runtime directory
A runtime directory under `/var` is used to keep the Unix Domain sockets that the drm-lease-manager and clients to communicate with each other.

The default path is `/var/run/drm-lease-manager`, but can be changed by setting the `DLM_RUNTIME_PATH` environment variable.