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
|
// SPDX-License-Identifier: GPL-2.0 OR MIT
/*
* Xen para-virtual DRM device
*
* Copyright (C) 2016-2018 EPAM Systems Inc.
*
* Author: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
*/
#include <linux/device.h>
#include <drm/drm_print.h>
#include <xen/interface/io/displif.h>
#include <xen/xenbus.h>
#include "xen_drm_front.h"
#include "xen_drm_front_cfg.h"
static int cfg_connector(struct xen_drm_front_info *front_info,
struct xen_drm_front_cfg_connector *connector,
const char *path, int index)
{
char *connector_path;
connector_path = devm_kasprintf(&front_info->xb_dev->dev,
GFP_KERNEL, "%s/%d", path, index);
if (!connector_path)
return -ENOMEM;
if (xenbus_scanf(XBT_NIL, connector_path, XENDISPL_FIELD_RESOLUTION,
"%d" XENDISPL_RESOLUTION_SEPARATOR "%d",
&connector->width, &connector->height) < 0) {
/* either no entry configured or wrong resolution set */
connector->width = 0;
connector->height = 0;
return -EINVAL;
}
connector->xenstore_path = connector_path;
DRM_INFO("Connector %s: resolution %dx%d\n",
connector_path, connector->width, connector->height);
return 0;
}
int xen_drm_front_cfg_card(struct xen_drm_front_info *front_info,
struct xen_drm_front_cfg *cfg)
{
struct xenbus_device *xb_dev = front_info->xb_dev;
int ret, i;
if (xenbus_read_unsigned(front_info->xb_dev->nodename,
XENDISPL_FIELD_BE_ALLOC, 0)) {
DRM_INFO("Backend can provide display buffers\n");
cfg->be_alloc = true;
}
cfg->num_connectors = 0;
for (i = 0; i < ARRAY_SIZE(cfg->connectors); i++) {
ret = cfg_connector(front_info, &cfg->connectors[i],
xb_dev->nodename, i);
if (ret < 0)
break;
cfg->num_connectors++;
}
if (!cfg->num_connectors) {
DRM_ERROR("No connector(s) configured at %s\n",
xb_dev->nodename);
return -ENODEV;
}
return 0;
}
|