nv04_display.c 5.7 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 25 26 27 28 29 30 31 32 33 34
/*
 * 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
 */

#include "drmP.h"
#include "drm.h"
#include "drm_crtc_helper.h"

#include "nouveau_drv.h"
#include "nouveau_fb.h"
#include "nouveau_hw.h"
#include "nouveau_encoder.h"
#include "nouveau_connector.h"

B
Ben Skeggs 已提交
35 36 37
static void nv04_vblank_crtc0_isr(struct drm_device *);
static void nv04_vblank_crtc1_isr(struct drm_device *);

38 39 40
int
nv04_display_early_init(struct drm_device *dev)
{
41 42 43 44 45 46 47
	/* 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);

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

void
nv04_display_late_takedown(struct drm_device *dev)
{
}

56 57 58 59
int
nv04_display_create(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
60
	struct dcb_table *dcb = &dev_priv->vbios.dcb;
61
	struct drm_connector *connector, *ct;
62 63
	struct drm_encoder *encoder;
	struct drm_crtc *crtc;
64
	struct nv04_display *disp;
65 66
	int i, ret;

67
	NV_DEBUG_KMS(dev, "\n");
68

69 70 71 72 73
	disp = kzalloc(sizeof(*disp), GFP_KERNEL);
	dev_priv->engine.display.priv = disp;
	if (!disp)
		return -ENOMEM;

74
	nouveau_hw_save_vga_fonts(dev, 1);
75 76 77 78 79 80

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

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

83 84 85 86
		connector = nouveau_connector_create(dev, dcbent->connector);
		if (IS_ERR(connector))
			continue;

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

		if (ret)
			continue;
	}

110 111 112 113 114 115 116 117
	list_for_each_entry_safe(connector, ct,
				 &dev->mode_config.connector_list, head) {
		if (!connector->encoder_ids[0]) {
			NV_WARN(dev, "%s has no encoders, removing\n",
				drm_get_connector_name(connector));
			connector->funcs->destroy(connector);
		}
	}
118 119 120 121 122 123 124 125 126 127 128

	/* 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);
	}

B
Ben Skeggs 已提交
129 130
	nouveau_irq_register(dev, 24, nv04_vblank_crtc0_isr);
	nouveau_irq_register(dev, 25, nv04_vblank_crtc1_isr);
131 132 133 134 135 136
	return 0;
}

void
nv04_display_destroy(struct drm_device *dev)
{
137 138
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	struct nv04_display *disp = nv04_display(dev);
139 140 141
	struct drm_encoder *encoder;
	struct drm_crtc *crtc;

142
	NV_DEBUG_KMS(dev, "\n");
143

144 145 146
	nouveau_irq_unregister(dev, 24);
	nouveau_irq_unregister(dev, 25);

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	/* Turn every CRTC off. */
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
		struct drm_mode_set modeset = {
			.crtc = crtc,
		};

		crtc->funcs->set_config(&modeset);
	}

	/* 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);

166
	nouveau_hw_save_vga_fonts(dev, 0);
167 168 169

	dev_priv->engine.display.priv = NULL;
	kfree(disp);
170 171
}

172 173
int
nv04_display_init(struct drm_device *dev)
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
{
	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);
194 195

	return 0;
196 197
}

198 199 200
void
nv04_display_fini(struct drm_device *dev)
{
201 202 203 204
	/* 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);
205 206
}

B
Ben Skeggs 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219
static void
nv04_vblank_crtc0_isr(struct drm_device *dev)
{
	nv_wr32(dev, NV_CRTC0_INTSTAT, NV_CRTC_INTR_VBLANK);
	drm_handle_vblank(dev, 0);
}

static void
nv04_vblank_crtc1_isr(struct drm_device *dev)
{
	nv_wr32(dev, NV_CRTC1_INTSTAT, NV_CRTC_INTR_VBLANK);
	drm_handle_vblank(dev, 1);
}