gm204.c 3.7 KB
Newer Older
B
Ben Skeggs 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2012 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.
 *
 * Authors: Ben Skeggs
 */
24 25
#include "nv50.h"
#include "outpdp.h"
B
Ben Skeggs 已提交
26 27 28 29 30 31 32

#include <nvif/class.h>

/*******************************************************************************
 * Base display object
 ******************************************************************************/

33
static struct nvkm_oclass
B
Ben Skeggs 已提交
34
gm204_disp_sclass[] = {
35 36 37 38 39
	{ GM204_DISP_CORE_CHANNEL_DMA, &gf110_disp_core_ofuncs.base },
	{ GK110_DISP_BASE_CHANNEL_DMA, &gf110_disp_base_ofuncs.base },
	{ GK104_DISP_OVERLAY_CONTROL_DMA, &gf110_disp_ovly_ofuncs.base },
	{ GK104_DISP_OVERLAY, &gf110_disp_oimm_ofuncs.base },
	{ GK104_DISP_CURSOR, &gf110_disp_curs_ofuncs.base },
B
Ben Skeggs 已提交
40 41 42
	{}
};

43
static struct nvkm_oclass
44
gm204_disp_main_oclass[] = {
45
	{ GM204_DISP, &gf110_disp_main_ofuncs },
B
Ben Skeggs 已提交
46 47 48 49 50 51 52 53
	{}
};

/*******************************************************************************
 * Display engine implementation
 ******************************************************************************/

static int
54 55 56
gm204_disp_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		struct nvkm_oclass *oclass, void *data, u32 size,
		struct nvkm_object **pobject)
B
Ben Skeggs 已提交
57
{
58
	struct nvkm_device *device = (void *)parent;
B
Ben Skeggs 已提交
59
	struct nv50_disp *disp;
60
	int heads = nvkm_rd32(device, 0x022448);
B
Ben Skeggs 已提交
61 62
	int ret;

63
	ret = nvkm_disp_create(parent, engine, oclass, heads,
B
Ben Skeggs 已提交
64 65
			       "PDISP", "display", &disp);
	*pobject = nv_object(disp);
B
Ben Skeggs 已提交
66 67 68
	if (ret)
		return ret;

B
Ben Skeggs 已提交
69
	ret = nvkm_event_init(&gf110_disp_chan_uevent, 1, 17, &disp->uevent);
B
Ben Skeggs 已提交
70 71 72
	if (ret)
		return ret;

B
Ben Skeggs 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86
	nv_engine(disp)->sclass = gm204_disp_main_oclass;
	nv_engine(disp)->cclass = &nv50_disp_cclass;
	nv_subdev(disp)->intr = gf110_disp_intr;
	INIT_WORK(&disp->supervisor, gf110_disp_intr_supervisor);
	disp->sclass = gm204_disp_sclass;
	disp->head.nr = heads;
	disp->dac.nr = 3;
	disp->sor.nr = 4;
	disp->dac.power = nv50_dac_power;
	disp->dac.sense = nv50_dac_sense;
	disp->sor.power = nv50_sor_power;
	disp->sor.hda_eld = gf110_hda_eld;
	disp->sor.hdmi = gf110_hdmi_ctrl;
	disp->sor.magic = gm204_sor_magic;
B
Ben Skeggs 已提交
87 88 89
	return 0;
}

90
struct nvkm_oclass *
B
Ben Skeggs 已提交
91 92 93 94 95
gm204_disp_outp_sclass[] = {
	&gm204_sor_dp_impl.base.base,
	NULL
};

96
struct nvkm_oclass *
B
Ben Skeggs 已提交
97 98
gm204_disp_oclass = &(struct nv50_disp_impl) {
	.base.base.handle = NV_ENGINE(DISP, 0x07),
99
	.base.base.ofuncs = &(struct nvkm_ofuncs) {
B
Ben Skeggs 已提交
100
		.ctor = gm204_disp_ctor,
101 102 103
		.dtor = _nvkm_disp_dtor,
		.init = _nvkm_disp_init,
		.fini = _nvkm_disp_fini,
B
Ben Skeggs 已提交
104
	},
105
	.base.vblank = &gf110_disp_vblank_func,
B
Ben Skeggs 已提交
106
	.base.outp =  gm204_disp_outp_sclass,
107 108 109
	.mthd.core = &gk104_disp_core_mthd_chan,
	.mthd.base = &gf110_disp_base_mthd_chan,
	.mthd.ovly = &gk104_disp_ovly_mthd_chan,
B
Ben Skeggs 已提交
110
	.mthd.prev = -0x020000,
111
	.head.scanoutpos = gf110_disp_main_scanoutpos,
B
Ben Skeggs 已提交
112
}.base.base;