2 * Copyright 2009 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
27 #include "drm_crtc_helper.h"
29 #include "nouveau_drv.h"
30 #include "nouveau_fb.h"
31 #include "nouveau_hw.h"
32 #include "nouveau_encoder.h"
33 #include "nouveau_connector.h"
35 #define MULTIPLE_ENCODERS(e) (e & (e - 1))
38 nv04_display_store_initial_head_owner(struct drm_device
*dev
)
40 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
42 if (dev_priv
->chipset
!= 0x11) {
43 dev_priv
->crtc_owner
= NVReadVgaCrtc(dev
, 0, NV_CIO_CRE_44
);
47 /* reading CR44 is broken on nv11, so we attempt to infer it */
48 if (nvReadMC(dev
, NV_PBUS_DEBUG_1
) & (1 << 28)) /* heads tied, restore both */
49 dev_priv
->crtc_owner
= 0x4;
51 uint8_t slaved_on_A
, slaved_on_B
;
55 NVLockVgaCrtcs(dev
, false);
57 slaved_on_B
= NVReadVgaCrtc(dev
, 1, NV_CIO_CRE_PIXEL_INDEX
) &
60 tvB
= !(NVReadVgaCrtc(dev
, 1, NV_CIO_CRE_LCD__INDEX
) &
61 MASK(NV_CIO_CRE_LCD_LCD_SELECT
));
63 slaved_on_A
= NVReadVgaCrtc(dev
, 0, NV_CIO_CRE_PIXEL_INDEX
) &
66 tvA
= !(NVReadVgaCrtc(dev
, 0, NV_CIO_CRE_LCD__INDEX
) &
67 MASK(NV_CIO_CRE_LCD_LCD_SELECT
));
69 NVLockVgaCrtcs(dev
, true);
71 if (slaved_on_A
&& !tvA
)
72 dev_priv
->crtc_owner
= 0x0;
73 else if (slaved_on_B
&& !tvB
)
74 dev_priv
->crtc_owner
= 0x3;
76 dev_priv
->crtc_owner
= 0x0;
78 dev_priv
->crtc_owner
= 0x3;
80 dev_priv
->crtc_owner
= 0x0;
84 NV_INFO(dev
, "Initial CRTC_OWNER is %d\n", dev_priv
->crtc_owner
);
86 /* we need to ensure the heads are not tied henceforth, or reading any
87 * 8 bit reg on head B will fail
88 * setting a single arbitrary head solves that */
93 nv04_display_create(struct drm_device
*dev
)
95 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
96 struct parsed_dcb
*dcb
= dev_priv
->vbios
->dcb
;
97 struct drm_encoder
*encoder
;
98 struct drm_crtc
*crtc
;
99 uint16_t connector
[16] = { 0 };
104 if (nv_two_heads(dev
))
105 nv04_display_store_initial_head_owner(dev
);
107 drm_mode_config_init(dev
);
108 drm_mode_create_scaling_mode_property(dev
);
109 drm_mode_create_dithering_property(dev
);
111 dev
->mode_config
.funcs
= (void *)&nouveau_mode_config_funcs
;
113 dev
->mode_config
.min_width
= 0;
114 dev
->mode_config
.min_height
= 0;
115 switch (dev_priv
->card_type
) {
117 dev
->mode_config
.max_width
= 2048;
118 dev
->mode_config
.max_height
= 2048;
121 dev
->mode_config
.max_width
= 4096;
122 dev
->mode_config
.max_height
= 4096;
126 dev
->mode_config
.fb_base
= dev_priv
->fb_phys
;
128 nv04_crtc_create(dev
, 0);
129 if (nv_two_heads(dev
))
130 nv04_crtc_create(dev
, 1);
132 for (i
= 0; i
< dcb
->entries
; i
++) {
133 struct dcb_entry
*dcbent
= &dcb
->entry
[i
];
135 switch (dcbent
->type
) {
137 ret
= nv04_dac_create(dev
, dcbent
);
141 ret
= nv04_dfp_create(dev
, dcbent
);
144 if (dcbent
->location
== DCB_LOC_ON_CHIP
)
145 ret
= nv17_tv_create(dev
, dcbent
);
147 ret
= nv04_tv_create(dev
, dcbent
);
150 NV_WARN(dev
, "DCB type %d not known\n", dcbent
->type
);
157 connector
[dcbent
->connector
] |= (1 << dcbent
->type
);
160 for (i
= 0; i
< dcb
->entries
; i
++) {
161 struct dcb_entry
*dcbent
= &dcb
->entry
[i
];
165 encoders
= connector
[dcbent
->connector
];
166 if (!(encoders
& (1 << dcbent
->type
)))
168 connector
[dcbent
->connector
] = 0;
170 switch (dcbent
->type
) {
172 if (!MULTIPLE_ENCODERS(encoders
))
173 type
= DRM_MODE_CONNECTOR_VGA
;
175 type
= DRM_MODE_CONNECTOR_DVII
;
178 if (!MULTIPLE_ENCODERS(encoders
))
179 type
= DRM_MODE_CONNECTOR_DVID
;
181 type
= DRM_MODE_CONNECTOR_DVII
;
184 type
= DRM_MODE_CONNECTOR_LVDS
;
186 /* don't create i2c adapter when lvds ddc not allowed */
187 if (dcbent
->lvdsconf
.use_straps_for_mode
||
188 dev_priv
->vbios
->fp_no_ddc
)
193 type
= DRM_MODE_CONNECTOR_TV
;
196 type
= DRM_MODE_CONNECTOR_Unknown
;
200 nouveau_connector_create(dev
, dcbent
->connector
, type
);
203 /* Save previous state */
204 NVLockVgaCrtcs(dev
, false);
206 nouveau_hw_save_vga_fonts(dev
, 1);
208 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
209 crtc
->funcs
->save(crtc
);
211 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
212 struct drm_encoder_helper_funcs
*func
= encoder
->helper_private
;
221 nv04_display_destroy(struct drm_device
*dev
)
223 struct drm_encoder
*encoder
;
224 struct drm_crtc
*crtc
;
228 /* Turn every CRTC off. */
229 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
230 struct drm_mode_set modeset
= {
234 crtc
->funcs
->set_config(&modeset
);
238 NVLockVgaCrtcs(dev
, false);
240 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
241 struct drm_encoder_helper_funcs
*func
= encoder
->helper_private
;
243 func
->restore(encoder
);
246 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
247 crtc
->funcs
->restore(crtc
);
249 nouveau_hw_save_vga_fonts(dev
, 0);
251 drm_mode_config_cleanup(dev
);
255 nv04_display_restore(struct drm_device
*dev
)
257 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
258 struct drm_encoder
*encoder
;
259 struct drm_crtc
*crtc
;
261 NVLockVgaCrtcs(dev
, false);
263 /* meh.. modeset apparently doesn't setup all the regs and depends
264 * on pre-existing state, for now load the state of the card *before*
265 * nouveau was loaded, and then do a modeset.
267 * best thing to do probably is to make save/restore routines not
268 * save/restore "pre-load" state, but more general so we can save
271 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
272 struct drm_encoder_helper_funcs
*func
= encoder
->helper_private
;
274 func
->restore(encoder
);
277 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
)
278 crtc
->funcs
->restore(crtc
);
280 if (nv_two_heads(dev
)) {
281 NV_INFO(dev
, "Restoring CRTC_OWNER to %d.\n",
282 dev_priv
->crtc_owner
);
283 NVSetOwner(dev
, dev_priv
->crtc_owner
);
286 NVLockVgaCrtcs(dev
, true);