]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/gpu/drm/nouveau/nvkm/engine/disp/gk104.c
404c75278dd8ccd5c15b8c3f12ce791fbbb88c75
[mirror_ubuntu-zesty-kernel.git] / drivers / gpu / drm / nouveau / nvkm / engine / disp / gk104.c
1 /*
2 * Copyright 2012 Red Hat Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: Ben Skeggs
23 */
24 #include "nv50.h"
25 #include "rootnv50.h"
26
27 static int
28 gk104_disp_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
29 struct nvkm_oclass *oclass, void *data, u32 size,
30 struct nvkm_object **pobject)
31 {
32 struct nvkm_device *device = (void *)parent;
33 struct nv50_disp *disp;
34 int heads = nvkm_rd32(device, 0x022448);
35 int ret;
36
37 ret = nvkm_disp_create(parent, engine, oclass, heads,
38 "PDISP", "display", &disp);
39 *pobject = nv_object(disp);
40 if (ret)
41 return ret;
42
43 ret = nvkm_event_init(&gf119_disp_chan_uevent, 1, 17, &disp->uevent);
44 if (ret)
45 return ret;
46
47 nv_engine(disp)->sclass = gk104_disp_root_oclass;
48 nv_engine(disp)->cclass = &nv50_disp_cclass;
49 nv_subdev(disp)->intr = gf119_disp_intr;
50 INIT_WORK(&disp->supervisor, gf119_disp_intr_supervisor);
51 disp->sclass = gk104_disp_sclass;
52 disp->head.nr = heads;
53 disp->dac.nr = 3;
54 disp->sor.nr = 4;
55 disp->dac.power = nv50_dac_power;
56 disp->dac.sense = nv50_dac_sense;
57 disp->sor.power = nv50_sor_power;
58 disp->sor.hda_eld = gf119_hda_eld;
59 disp->sor.hdmi = gk104_hdmi_ctrl;
60 return 0;
61 }
62
63 struct nvkm_oclass *
64 gk104_disp_oclass = &(struct nv50_disp_impl) {
65 .base.base.handle = NV_ENGINE(DISP, 0x91),
66 .base.base.ofuncs = &(struct nvkm_ofuncs) {
67 .ctor = gk104_disp_ctor,
68 .dtor = _nvkm_disp_dtor,
69 .init = _nvkm_disp_init,
70 .fini = _nvkm_disp_fini,
71 },
72 .base.outp.internal.crt = nv50_dac_output_new,
73 .base.outp.internal.tmds = nv50_sor_output_new,
74 .base.outp.internal.lvds = nv50_sor_output_new,
75 .base.outp.internal.dp = gf119_sor_dp_new,
76 .base.vblank = &gf119_disp_vblank_func,
77 .mthd.core = &gk104_disp_core_mthd_chan,
78 .mthd.base = &gf119_disp_base_mthd_chan,
79 .mthd.ovly = &gk104_disp_ovly_mthd_chan,
80 .mthd.prev = -0x020000,
81 .head.scanoutpos = gf119_disp_root_scanoutpos,
82 }.base.base;