blob: b31d9a995bb61eda7769eb799f5ac8eda411fd5b [file] [log] [blame]
Sean Paul6a55e9f2015-04-30 15:31:06 -04001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_DRM_CONNECTOR_H_
18#define ANDROID_DRM_CONNECTOR_H_
19
20#include "drmencoder.h"
21#include "drmmode.h"
22#include "drmproperty.h"
23
24#include <stdint.h>
25#include <vector>
26#include <xf86drmMode.h>
27
28namespace android {
29
30class DrmResources;
31
32class DrmConnector {
33 public:
34 typedef std::vector<DrmEncoder *>::const_iterator EncoderIter;
35 typedef std::vector<DrmMode>::const_iterator ModeIter;
36
37 DrmConnector(DrmResources *drm, drmModeConnectorPtr c,
38 DrmEncoder *current_encoder,
39 std::vector<DrmEncoder *> &possible_encoders);
40 ~DrmConnector();
41
42 int Init();
43
44 uint32_t id() const;
45
46 int display() const;
47 void set_display(int display);
48
49 bool built_in() const;
50
51 int UpdateModes();
52
53 ModeIter begin_modes() const;
54 ModeIter end_modes() const;
55 const DrmMode &active_mode() const;
56 int set_active_mode(uint32_t mode_id);
57
58 const DrmProperty &dpms_property() const;
59
60 EncoderIter begin_possible_encoders() const;
61 EncoderIter end_possible_encoders() const;
62 DrmEncoder *encoder() const;
63 void set_encoder(DrmEncoder *encoder);
64
65 uint32_t mm_width() const;
66 uint32_t mm_height() const;
67
68 private:
69 DrmConnector(const DrmConnector &);
70
71 DrmResources *drm_;
72
73 uint32_t id_;
74 DrmEncoder *encoder_;
75 int display_;
76
77 uint32_t type_;
78 drmModeConnection state_;
79
80 uint32_t mm_width_;
81 uint32_t mm_height_;
82
83 DrmMode active_mode_;
84 std::vector<DrmMode> modes_;
85
86 DrmProperty dpms_property_;
87
88 std::vector<DrmEncoder *> possible_encoders_;
89};
90}
91
92#endif // ANDROID_DRM_PLANE_H_