drivers/gpu/drm/xen/xen_drm_front_cfg.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xen/xen_drm_front_cfg.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/xen/xen_drm_front_cfg.c- Extension
.c- Size
- 1854 bytes
- Lines
- 78
- Domain
- Driver Families
- Bucket
- drivers/gpu
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/device.hdrm/drm_print.hxen/interface/io/displif.hxen/xenbus.hxen_drm_front.hxen_drm_front_cfg.h
Detected Declarations
function Copyrightfunction xen_drm_front_cfg_card
Annotated Snippet
// 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;
}
Annotation
- Immediate include surface: `linux/device.h`, `drm/drm_print.h`, `xen/interface/io/displif.h`, `xen/xenbus.h`, `xen_drm_front.h`, `xen_drm_front_cfg.h`.
- Detected declarations: `function Copyright`, `function xen_drm_front_cfg_card`.
- Atlas domain: Driver Families / drivers/gpu.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.