summaryrefslogtreecommitdiffstats
blob: e1e4ef33bea6fb8c4f9b76f75836355551518122 (plain) (blame)
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Copyright (C) Texas Instruments Incorporated - http://www.ti.com/
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#pragma once

#include <condition_variable>
#include <mutex>

#include <cstdbool>
#include <cstdint>

#include <hardware/hwcomposer.h>
#include <kms++/kms++.h>

#include <xf86drm.h>
#include <xf86drmMode.h>

#include "drmfb.h"

#define MAX_DISPLAYS 4
#define DSS_AVAILABLE_PIPES 4

typedef struct display_config {
    unsigned int xres;
    unsigned int yres;
    unsigned int fps;
    unsigned int xdpi;
    unsigned int ydpi;
} display_config_t;

enum disp_role {
    DISP_ROLE_PRIMARY = 0,
    DISP_ROLE_SECONDARY,
};

typedef struct drm_plane_props {
    hwc_layer_1_t* layer;

    kms::Plane* plane;
    uint64_t crtc_id;

    uint64_t crtc_x;
    uint64_t crtc_y;
    uint64_t crtc_w;
    uint64_t crtc_h;
    uint64_t src_x;
    uint64_t src_y;
    uint64_t src_w;
    uint64_t src_h;

    DRMFramebuffer* fb_info;
} drm_plane_props_t;

class KMSDisplay {
public:
    KMSDisplay() :
        card(NULL),
        con(NULL),
        crtc(NULL),
        mode() {}

    kms::Card* card;
    kms::Connector* con;
    kms::Crtc* crtc;
    kms::Videomode mode;
};

class HWCDisplay
{
public:
    HWCDisplay(enum disp_role role);
    ~HWCDisplay(){};

    void setup_composition_pipes();

    int update_display(drm_plane_props_t* planeProp);

    std::vector<display_config_t> configs;
    uint32_t active_config;

    enum disp_role role;

    drm_plane_props_t planeProps[DSS_AVAILABLE_PIPES];

    KMSDisplay disp_link;

    const hwc_procs_t* cb_procs;

    bool is_dummy;

    int set_vsync_state(bool state);
    void blank(int blank);
    int get_display_configs(uint32_t* configs, size_t* numConfigs);
    int get_display_attributes(uint32_t cfg, const uint32_t* attributes, int32_t* values);

    static void page_flip_handler(int fd, unsigned int frame, unsigned int sec, unsigned int usec, void* data);
    static void vblank_handler(int fd, unsigned int frame, unsigned int sec, unsigned int usec, void* data);

private:
    std::vector<DRMFramebuffer*> pending_fb_infos;
    std::vector<DRMFramebuffer*> current_fb_infos;

    bool vsync_on;
    bool blanked;

    std::mutex mutex;
    std::condition_variable cond_flip;
    volatile bool is_flip_pending;
};