disp.c 5.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright 2009 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Author: Ben Skeggs
 */

25 26 27
#include <core/object.h>
#include <core/class.h>

28 29
#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
30

31 32
#include "nouveau_drm.h"
#include "nouveau_reg.h"
33
#include "hw.h"
34 35 36
#include "nouveau_encoder.h"
#include "nouveau_connector.h"

37 38
#include <subdev/i2c.h>

39 40 41
int
nv04_display_early_init(struct drm_device *dev)
{
42 43 44 45 46 47 48
	/* ensure vblank interrupts are off, they can't be enabled until
	 * drm_vblank has been initialised
	 */
	NVWriteCRTC(dev, 0, NV_PCRTC_INTR_EN_0, 0);
	if (nv_two_heads(dev))
		NVWriteCRTC(dev, 1, NV_PCRTC_INTR_EN_0, 0);

49 50 51 52 53 54 55 56
	return 0;
}

void
nv04_display_late_takedown(struct drm_device *dev)
{
}

57 58 59
int
nv04_display_create(struct drm_device *dev)
{
60
	struct nouveau_drm *drm = nouveau_drm(dev);
61
	struct nouveau_i2c *i2c = nvkm_i2c(&drm->device);
62
	struct dcb_table *dcb = &drm->vbios.dcb;
63
	struct drm_connector *connector, *ct;
64 65
	struct drm_encoder *encoder;
	struct drm_crtc *crtc;
66
	struct nv04_display *disp;
67 68
	int i, ret;

69 70 71 72
	disp = kzalloc(sizeof(*disp), GFP_KERNEL);
	if (!disp)
		return -ENOMEM;

73 74
	nvif_object_map(nvif_object(&drm->device));

75 76 77 78
	nouveau_display(dev)->priv = disp;
	nouveau_display(dev)->dtor = nv04_display_destroy;
	nouveau_display(dev)->init = nv04_display_init;
	nouveau_display(dev)->fini = nv04_display_fini;
79

80
	nouveau_hw_save_vga_fonts(dev, 1);
81 82 83 84 85 86

	nv04_crtc_create(dev, 0);
	if (nv_two_heads(dev))
		nv04_crtc_create(dev, 1);

	for (i = 0; i < dcb->entries; i++) {
87
		struct dcb_output *dcbent = &dcb->entry[i];
88

89 90 91 92
		connector = nouveau_connector_create(dev, dcbent->connector);
		if (IS_ERR(connector))
			continue;

93
		switch (dcbent->type) {
94
		case DCB_OUTPUT_ANALOG:
95
			ret = nv04_dac_create(connector, dcbent);
96
			break;
97 98
		case DCB_OUTPUT_LVDS:
		case DCB_OUTPUT_TMDS:
99
			ret = nv04_dfp_create(connector, dcbent);
100
			break;
101
		case DCB_OUTPUT_TV:
102
			if (dcbent->location == DCB_LOC_ON_CHIP)
103
				ret = nv17_tv_create(connector, dcbent);
104
			else
105
				ret = nv04_tv_create(connector, dcbent);
106 107
			break;
		default:
108
			NV_WARN(drm, "DCB type %d not known\n", dcbent->type);
109 110 111 112 113 114 115
			continue;
		}

		if (ret)
			continue;
	}

116 117 118
	list_for_each_entry_safe(connector, ct,
				 &dev->mode_config.connector_list, head) {
		if (!connector->encoder_ids[0]) {
119
			NV_WARN(drm, "%s has no encoders, removing\n",
120
				connector->name);
121 122 123
			connector->funcs->destroy(connector);
		}
	}
124

125 126 127 128 129
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
		struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
		nv_encoder->i2c = i2c->find(i2c, nv_encoder->dcb->i2c_index);
	}

130 131 132 133 134 135 136 137 138 139
	/* Save previous state */
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
		crtc->funcs->save(crtc);

	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
		struct drm_encoder_helper_funcs *func = encoder->helper_private;

		func->save(encoder);
	}

140 141
	nouveau_overlay_init(dev);

142 143 144 145 146 147
	return 0;
}

void
nv04_display_destroy(struct drm_device *dev)
{
148
	struct nv04_display *disp = nv04_display(dev);
149
	struct nouveau_drm *drm = nouveau_drm(dev);
150 151 152 153 154 155 156 157 158
	struct drm_encoder *encoder;
	struct drm_crtc *crtc;

	/* Turn every CRTC off. */
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
		struct drm_mode_set modeset = {
			.crtc = crtc,
		};

159
		drm_mode_set_config_internal(&modeset);
160 161 162 163 164 165 166 167 168 169 170 171
	}

	/* Restore state */
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
		struct drm_encoder_helper_funcs *func = encoder->helper_private;

		func->restore(encoder);
	}

	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
		crtc->funcs->restore(crtc);

172
	nouveau_hw_save_vga_fonts(dev, 0);
173

174
	nouveau_display(dev)->priv = NULL;
175
	kfree(disp);
176 177

	nvif_object_unmap(nvif_object(&drm->device));
178 179
}

180 181
int
nv04_display_init(struct drm_device *dev)
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
{
	struct drm_encoder *encoder;
	struct drm_crtc *crtc;

	/* meh.. modeset apparently doesn't setup all the regs and depends
	 * on pre-existing state, for now load the state of the card *before*
	 * nouveau was loaded, and then do a modeset.
	 *
	 * best thing to do probably is to make save/restore routines not
	 * save/restore "pre-load" state, but more general so we can save
	 * on suspend too.
	 */
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
		struct drm_encoder_helper_funcs *func = encoder->helper_private;

		func->restore(encoder);
	}

	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
		crtc->funcs->restore(crtc);
202 203

	return 0;
204 205
}

206 207 208
void
nv04_display_fini(struct drm_device *dev)
{
209 210 211 212
	/* disable vblank interrupts */
	NVWriteCRTC(dev, 0, NV_PCRTC_INTR_EN_0, 0);
	if (nv_two_heads(dev))
		NVWriteCRTC(dev, 1, NV_PCRTC_INTR_EN_0, 0);
213
}