summaryrefslogtreecommitdiff
path: root/kms++/inc/kms++/dmabufframebuffer.h
blob: 95460cb77a23522c9165ef42c68db9e4dc566f44 (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
#pragma once

#include "framebuffer.h"
#include "pixelformats.h"
#include <vector>

namespace kms
{

class DmabufFramebuffer : public Framebuffer
{
public:
	DmabufFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format,
			  std::vector<int> fds, std::vector<uint32_t> pitches, std::vector<uint32_t> offsets);
	virtual ~DmabufFramebuffer();

	uint32_t width() const { return Framebuffer::width(); }
	uint32_t height() const { return Framebuffer::height(); }

	PixelFormat format() const { return m_format; }
	unsigned num_planes() const { return m_num_planes; }

	uint32_t handle(unsigned plane) const { return m_planes[plane].handle; }
	uint32_t stride(unsigned plane) const { return m_planes[plane].stride; }
	uint32_t size(unsigned plane) const { return m_planes[plane].size; }
	uint32_t offset(unsigned plane) const { return m_planes[plane].offset; }
	uint8_t* map(unsigned plane);
	int prime_fd(unsigned plane);

	void begin_cpu_access(CpuAccess access);
	void end_cpu_access();

private:
	struct FramebufferPlane {
		uint32_t handle;
		int prime_fd;
		uint32_t size;
		uint32_t stride;
		uint32_t offset;
		uint8_t *map;
	};

	unsigned m_num_planes;
	struct FramebufferPlane m_planes[4];

	PixelFormat m_format;

	uint32_t m_sync_flags = 0;
};

}