blob: e1488bb42a9a2ba731d279e87fd5693ebd95e73e [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:
Sean Paul6a55e9f2015-04-30 15:31:06 -040034 DrmConnector(DrmResources *drm, drmModeConnectorPtr c,
35 DrmEncoder *current_encoder,
36 std::vector<DrmEncoder *> &possible_encoders);
Zach Reiznerff30b522015-10-28 19:08:45 -070037 DrmConnector(const DrmProperty &) = delete;
38 DrmConnector &operator=(const DrmProperty &) = delete;
Sean Paul6a55e9f2015-04-30 15:31:06 -040039
40 int Init();
41
42 uint32_t id() const;
43
44 int display() const;
45 void set_display(int display);
46
47 bool built_in() const;
48
49 int UpdateModes();
50
Zach Reiznerff30b522015-10-28 19:08:45 -070051 const std::vector<DrmMode> &modes() const {
52 return modes_;
53 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040054 const DrmMode &active_mode() const;
Sean Paul877be972015-06-03 14:08:27 -040055 void set_active_mode(const DrmMode &mode);
Sean Paul6a55e9f2015-04-30 15:31:06 -040056
57 const DrmProperty &dpms_property() const;
Sean Paul877be972015-06-03 14:08:27 -040058 const DrmProperty &crtc_id_property() const;
Sean Paul6a55e9f2015-04-30 15:31:06 -040059
Zach Reiznerff30b522015-10-28 19:08:45 -070060 const std::vector<DrmEncoder *> &possible_encoders() const {
61 return possible_encoders_;
62 }
Sean Paul6a55e9f2015-04-30 15:31:06 -040063 DrmEncoder *encoder() const;
64 void set_encoder(DrmEncoder *encoder);
65
Sean Paul09216492015-10-26 15:36:37 -040066 drmModeConnection state() const;
67
Sean Paul6a55e9f2015-04-30 15:31:06 -040068 uint32_t mm_width() const;
69 uint32_t mm_height() const;
70
71 private:
Sean Paul6a55e9f2015-04-30 15:31:06 -040072 DrmResources *drm_;
73
74 uint32_t id_;
75 DrmEncoder *encoder_;
76 int display_;
77
78 uint32_t type_;
79 drmModeConnection state_;
80
81 uint32_t mm_width_;
82 uint32_t mm_height_;
83
84 DrmMode active_mode_;
85 std::vector<DrmMode> modes_;
86
87 DrmProperty dpms_property_;
Sean Paul877be972015-06-03 14:08:27 -040088 DrmProperty crtc_id_property_;
Sean Paul6a55e9f2015-04-30 15:31:06 -040089
90 std::vector<DrmEncoder *> possible_encoders_;
91};
92}
93
94#endif // ANDROID_DRM_PLANE_H_