2 * Copyright (C) 2008 Maarten Maathuis.
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 #ifndef __NOUVEAU_CONNECTOR_H__
28 #define __NOUVEAU_CONNECTOR_H__
30 #include <nvif/notify.h>
32 #include <nvhw/class/cl507d.h>
33 #include <nvhw/class/cl907d.h>
36 #include <drm/drm_crtc.h>
37 #include <drm/drm_edid.h>
38 #include <drm/drm_encoder.h>
39 #include <drm/drm_dp_helper.h>
40 #include <drm/drm_util.h>
42 #include "nouveau_crtc.h"
43 #include "nouveau_encoder.h"
48 #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
49 struct nouveau_backlight;
52 #define nouveau_conn_atom(p) \
53 container_of((p), struct nouveau_conn_atom, state)
55 struct nouveau_conn_atom {
56 struct drm_connector_state state;
59 /* The enum values specifically defined here match nv50/gf119
60 * hw values, and the code relies on this.
64 NVDEF(NV507D, HEAD_SET_DITHER_CONTROL, ENABLE, DISABLE),
66 NVDEF(NV507D, HEAD_SET_DITHER_CONTROL, ENABLE, ENABLE),
67 DITHERING_MODE_DYNAMIC2X2 = DITHERING_MODE_ON |
68 NVDEF(NV507D, HEAD_SET_DITHER_CONTROL, MODE, DYNAMIC_2X2),
69 DITHERING_MODE_STATIC2X2 = DITHERING_MODE_ON |
70 NVDEF(NV507D, HEAD_SET_DITHER_CONTROL, MODE, STATIC_2X2),
71 DITHERING_MODE_TEMPORAL = DITHERING_MODE_ON |
72 NVDEF(NV907D, HEAD_SET_DITHER_CONTROL, MODE, TEMPORAL),
76 DITHERING_DEPTH_6BPC =
77 NVDEF(NV507D, HEAD_SET_DITHER_CONTROL, BITS, DITHER_TO_6_BITS),
78 DITHERING_DEPTH_8BPC =
79 NVDEF(NV507D, HEAD_SET_DITHER_CONTROL, BITS, DITHER_TO_8_BITS),
85 int mode; /* DRM_MODE_SCALE_* */
113 struct nouveau_connector {
114 struct drm_connector base;
115 enum dcb_connector_type type;
119 struct nvif_notify hpd;
121 struct drm_dp_aux aux;
126 struct nouveau_encoder *detected_encoder;
128 struct drm_display_mode *native_mode;
129 #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
130 struct nouveau_backlight *backlight;
133 * Our connector property code expects a nouveau_conn_atom struct
134 * even on pre-nv50 where we do not support atomic. This embedded
135 * version gets used in the non atomic modeset case.
137 struct nouveau_conn_atom properties_state;
140 static inline struct nouveau_connector *nouveau_connector(
141 struct drm_connector *con)
143 return container_of(con, struct nouveau_connector, base);
147 nouveau_connector_is_mst(struct drm_connector *connector)
149 const struct nouveau_encoder *nv_encoder;
150 const struct drm_encoder *encoder;
152 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
155 nv_encoder = find_encoder(connector, DCB_OUTPUT_ANY);
159 encoder = &nv_encoder->base.base;
160 return encoder->encoder_type == DRM_MODE_ENCODER_DPMST;
163 #define nouveau_for_each_non_mst_connector_iter(connector, iter) \
164 drm_for_each_connector_iter(connector, iter) \
165 for_each_if(!nouveau_connector_is_mst(connector))
167 static inline struct nouveau_connector *
168 nouveau_crtc_connector_get(struct nouveau_crtc *nv_crtc)
170 struct drm_device *dev = nv_crtc->base.dev;
171 struct drm_connector *connector;
172 struct drm_connector_list_iter conn_iter;
173 struct nouveau_connector *nv_connector = NULL;
174 struct drm_crtc *crtc = to_drm_crtc(nv_crtc);
176 drm_connector_list_iter_begin(dev, &conn_iter);
177 nouveau_for_each_non_mst_connector_iter(connector, &conn_iter) {
178 if (connector->encoder && connector->encoder->crtc == crtc) {
179 nv_connector = nouveau_connector(connector);
183 drm_connector_list_iter_end(&conn_iter);
188 struct drm_connector *
189 nouveau_connector_create(struct drm_device *, const struct dcb_output *);
190 void nouveau_connector_hpd(struct drm_connector *connector);
192 extern int nouveau_tv_disable;
193 extern int nouveau_ignorelid;
194 extern int nouveau_duallink;
195 extern int nouveau_hdmimhz;
197 void nouveau_conn_attach_properties(struct drm_connector *);
198 void nouveau_conn_reset(struct drm_connector *);
199 struct drm_connector_state *
200 nouveau_conn_atomic_duplicate_state(struct drm_connector *);
201 void nouveau_conn_atomic_destroy_state(struct drm_connector *,
202 struct drm_connector_state *);
203 int nouveau_conn_atomic_set_property(struct drm_connector *,
204 struct drm_connector_state *,
205 struct drm_property *, u64);
206 int nouveau_conn_atomic_get_property(struct drm_connector *,
207 const struct drm_connector_state *,
208 struct drm_property *, u64 *);
209 struct drm_display_mode *nouveau_conn_native_mode(struct drm_connector *);
211 nouveau_conn_mode_clock_valid(const struct drm_display_mode *,
212 const unsigned min_clock,
213 const unsigned max_clock,
216 #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
217 extern int nouveau_backlight_init(struct drm_connector *);
218 extern void nouveau_backlight_fini(struct drm_connector *);
219 extern void nouveau_backlight_ctor(void);
220 extern void nouveau_backlight_dtor(void);
223 nouveau_backlight_init(struct drm_connector *connector)
229 nouveau_backlight_fini(struct drm_connector *connector) {
233 nouveau_backlight_ctor(void) {
237 nouveau_backlight_dtor(void) {
241 #endif /* __NOUVEAU_CONNECTOR_H__ */