2021-07-18 20:21:59 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
SPDX-FileCopyrightText: 2022 Xaver Hugl <xaver.hugl@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QVector>
|
|
|
|
#include <memory>
|
2022-10-22 09:22:37 +00:00
|
|
|
#include <vector>
|
2021-07-18 20:21:59 +00:00
|
|
|
|
|
|
|
class MockGpu;
|
|
|
|
class MockFb;
|
|
|
|
class MockCrtc;
|
|
|
|
class MockEncoder;
|
|
|
|
class MockObject;
|
|
|
|
class MockDumbBuffer;
|
|
|
|
class MockPlane;
|
|
|
|
|
|
|
|
class MockProperty {
|
|
|
|
public:
|
|
|
|
MockProperty(MockObject *obj, QString name, uint64_t initialValue, uint32_t flags, QVector<QByteArray> enums = {});
|
|
|
|
~MockProperty() = default;
|
|
|
|
|
|
|
|
MockObject *obj;
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t flags;
|
|
|
|
QString name;
|
|
|
|
uint64_t value;
|
|
|
|
QVector<QByteArray> enums;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockPropertyBlob {
|
|
|
|
public:
|
|
|
|
MockPropertyBlob(MockGpu *gpu, const void *data, size_t size);
|
|
|
|
~MockPropertyBlob();
|
|
|
|
|
|
|
|
MockGpu *gpu;
|
|
|
|
uint32_t id;
|
|
|
|
void *data;
|
|
|
|
size_t size;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockObject {
|
|
|
|
public:
|
|
|
|
MockObject(MockGpu *gpu);
|
|
|
|
virtual ~MockObject();
|
|
|
|
|
|
|
|
uint64_t getProp(const QString &propName) const;
|
|
|
|
void setProp(const QString &propName, uint64_t value);
|
|
|
|
|
|
|
|
uint32_t getPropId(const QString &propName) const;
|
|
|
|
|
|
|
|
uint32_t id;
|
|
|
|
QVector<MockProperty> props;
|
|
|
|
MockGpu *gpu;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockConnector : public MockObject {
|
|
|
|
public:
|
|
|
|
MockConnector(MockGpu *gpu, bool nonDesktop = false);
|
|
|
|
MockConnector(const MockConnector &obj) = default;
|
|
|
|
~MockConnector() = default;
|
|
|
|
|
|
|
|
void addMode(uint32_t width, uint32_t height, float refreshRate, bool preferred = false);
|
|
|
|
|
|
|
|
drmModeConnection connection;
|
|
|
|
uint32_t type;
|
|
|
|
std::shared_ptr<MockEncoder> encoder;
|
|
|
|
QVector<drmModeModeInfo> modes;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockEncoder : public MockObject {
|
|
|
|
public:
|
|
|
|
MockEncoder(MockGpu *gpu, uint32_t possible_crtcs);
|
|
|
|
MockEncoder(const MockEncoder &obj) = default;
|
|
|
|
~MockEncoder() = default;
|
|
|
|
|
|
|
|
MockCrtc *crtc = nullptr;
|
|
|
|
uint32_t possible_crtcs;
|
|
|
|
uint32_t possible_clones = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockCrtc : public MockObject {
|
|
|
|
public:
|
|
|
|
MockCrtc(MockGpu *gpu, const std::shared_ptr<MockPlane> &legacyPlane, int pipeIndex, int gamma_size = 255);
|
|
|
|
MockCrtc(const MockCrtc &obj) = default;
|
|
|
|
~MockCrtc() = default;
|
|
|
|
|
|
|
|
int pipeIndex;
|
|
|
|
int gamma_size;
|
|
|
|
drmModeModeInfo mode;
|
|
|
|
bool modeValid = true;
|
|
|
|
MockFb *currentFb = nullptr;
|
|
|
|
MockFb *nextFb = nullptr;
|
|
|
|
QRect cursorRect;
|
|
|
|
MockDumbBuffer *cursorBo = nullptr;
|
|
|
|
std::shared_ptr<MockPlane> legacyPlane;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class PlaneType {
|
|
|
|
Primary,
|
|
|
|
Overlay,
|
|
|
|
Cursor
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockPlane : public MockObject {
|
|
|
|
public:
|
|
|
|
MockPlane(MockGpu *gpu, PlaneType type, int crtcIndex);
|
|
|
|
MockPlane(const MockPlane &obj) = default;
|
|
|
|
~MockPlane() = default;
|
|
|
|
|
|
|
|
MockFb *currentFb = nullptr;
|
|
|
|
MockFb *nextFb = nullptr;
|
|
|
|
int possibleCrtcs;
|
|
|
|
PlaneType type;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockFb {
|
|
|
|
public:
|
|
|
|
MockFb(MockGpu *gpu, uint32_t width, uint32_t height);
|
|
|
|
~MockFb();
|
|
|
|
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t width, height;
|
|
|
|
MockGpu *gpu;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MockDumbBuffer {
|
|
|
|
public:
|
|
|
|
MockDumbBuffer(MockGpu *gpu, uint32_t width, uint32_t height, uint32_t bpp);
|
|
|
|
|
|
|
|
uint32_t handle;
|
|
|
|
uint32_t pitch;
|
2022-10-23 19:11:46 +00:00
|
|
|
std::vector<std::byte> data;
|
2021-07-18 20:21:59 +00:00
|
|
|
MockGpu *gpu;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Prop {
|
|
|
|
uint32_t obj;
|
|
|
|
uint32_t prop;
|
|
|
|
uint64_t value;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _drmModeAtomicReq {
|
|
|
|
bool legacyEmulation = false;
|
|
|
|
QVector<Prop> props;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MOCKDRM_DEVICE_CAP_ATOMIC 0xFF
|
|
|
|
|
|
|
|
class MockGpu {
|
|
|
|
public:
|
|
|
|
MockGpu(int fd, int numCrtcs, int gammaSize = 255);
|
|
|
|
~MockGpu();
|
|
|
|
|
|
|
|
MockConnector *findConnector(uint32_t id) const;
|
|
|
|
MockCrtc *findCrtc(uint32_t id) const;
|
|
|
|
MockPlane *findPlane(uint32_t id) const;
|
|
|
|
MockPropertyBlob *getBlob(uint32_t id) const;
|
|
|
|
|
|
|
|
void flipPage(uint32_t crtcId);
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
QByteArray name = QByteArrayLiteral("mock");
|
|
|
|
QMap<uint32_t, uint64_t> clientCaps;
|
|
|
|
QMap<uint32_t, uint64_t> deviceCaps;
|
|
|
|
|
|
|
|
uint32_t idCounter = 1;
|
|
|
|
QVector<MockObject*> objects;
|
|
|
|
|
|
|
|
QVector<std::shared_ptr<MockConnector>> connectors;
|
|
|
|
QVector<drmModeConnectorPtr> drmConnectors;
|
|
|
|
|
|
|
|
QVector<std::shared_ptr<MockEncoder>> encoders;
|
|
|
|
QVector<drmModeEncoderPtr> drmEncoders;
|
|
|
|
|
|
|
|
QVector<std::shared_ptr<MockCrtc>> crtcs;
|
|
|
|
QVector<drmModeCrtcPtr> drmCrtcs;
|
|
|
|
|
|
|
|
QVector<std::shared_ptr<MockPlane>> planes;
|
|
|
|
QVector<drmModePlanePtr> drmPlanes;
|
|
|
|
|
|
|
|
QVector<MockFb*> fbs;
|
|
|
|
QVector<std::shared_ptr<MockDumbBuffer>> dumbBuffers;
|
|
|
|
std::vector<std::unique_ptr<MockPropertyBlob>> propertyBlobs;
|
|
|
|
|
|
|
|
QVector<drmModeResPtr> resPtrs;
|
|
|
|
QVector<drmModePropertyPtr> drmProps;
|
|
|
|
QVector<drmModePropertyBlobPtr> drmPropertyBlobs;
|
|
|
|
QVector<drmModeObjectPropertiesPtr> drmObjectProperties;
|
|
|
|
QVector<drmModePlaneResPtr> drmPlaneRes;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|