1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include "nv50.h"
25#include "outpdp.h"
26
27#include <nvif/class.h>
28
29
30
31
32
33const struct nv50_disp_mthd_list
34g94_disp_core_mthd_sor = {
35 .mthd = 0x0040,
36 .addr = 0x000008,
37 .data = {
38 { 0x0600, 0x610794 },
39 {}
40 }
41};
42
43const struct nv50_disp_mthd_chan
44g94_disp_core_mthd_chan = {
45 .name = "Core",
46 .addr = 0x000000,
47 .data = {
48 { "Global", 1, &nv50_disp_core_mthd_base },
49 { "DAC", 3, &g84_disp_core_mthd_dac },
50 { "SOR", 4, &g94_disp_core_mthd_sor },
51 { "PIOR", 3, &nv50_disp_core_mthd_pior },
52 { "HEAD", 2, &g84_disp_core_mthd_head },
53 {}
54 }
55};
56
57
58
59
60
61static struct nvkm_oclass
62g94_disp_sclass[] = {
63 { GT206_DISP_CORE_CHANNEL_DMA, &nv50_disp_core_ofuncs.base },
64 { GT200_DISP_BASE_CHANNEL_DMA, &nv50_disp_base_ofuncs.base },
65 { GT200_DISP_OVERLAY_CHANNEL_DMA, &nv50_disp_ovly_ofuncs.base },
66 { G82_DISP_OVERLAY, &nv50_disp_oimm_ofuncs.base },
67 { G82_DISP_CURSOR, &nv50_disp_curs_ofuncs.base },
68 {}
69};
70
71static struct nvkm_oclass
72g94_disp_main_oclass[] = {
73 { GT206_DISP, &nv50_disp_main_ofuncs },
74 {}
75};
76
77
78
79
80
81static int
82g94_disp_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
83 struct nvkm_oclass *oclass, void *data, u32 size,
84 struct nvkm_object **pobject)
85{
86 struct nv50_disp_priv *priv;
87 int ret;
88
89 ret = nvkm_disp_create(parent, engine, oclass, 2, "PDISP",
90 "display", &priv);
91 *pobject = nv_object(priv);
92 if (ret)
93 return ret;
94
95 ret = nvkm_event_init(&nv50_disp_chan_uevent, 1, 9, &priv->uevent);
96 if (ret)
97 return ret;
98
99 nv_engine(priv)->sclass = g94_disp_main_oclass;
100 nv_engine(priv)->cclass = &nv50_disp_cclass;
101 nv_subdev(priv)->intr = nv50_disp_intr;
102 INIT_WORK(&priv->supervisor, nv50_disp_intr_supervisor);
103 priv->sclass = g94_disp_sclass;
104 priv->head.nr = 2;
105 priv->dac.nr = 3;
106 priv->sor.nr = 4;
107 priv->pior.nr = 3;
108 priv->dac.power = nv50_dac_power;
109 priv->dac.sense = nv50_dac_sense;
110 priv->sor.power = nv50_sor_power;
111 priv->sor.hdmi = g84_hdmi_ctrl;
112 priv->pior.power = nv50_pior_power;
113 return 0;
114}
115
116struct nvkm_oclass *
117g94_disp_outp_sclass[] = {
118 &nv50_pior_dp_impl.base.base,
119 &g94_sor_dp_impl.base.base,
120 NULL
121};
122
123struct nvkm_oclass *
124g94_disp_oclass = &(struct nv50_disp_impl) {
125 .base.base.handle = NV_ENGINE(DISP, 0x88),
126 .base.base.ofuncs = &(struct nvkm_ofuncs) {
127 .ctor = g94_disp_ctor,
128 .dtor = _nvkm_disp_dtor,
129 .init = _nvkm_disp_init,
130 .fini = _nvkm_disp_fini,
131 },
132 .base.vblank = &nv50_disp_vblank_func,
133 .base.outp = g94_disp_outp_sclass,
134 .mthd.core = &g94_disp_core_mthd_chan,
135 .mthd.base = &g84_disp_base_mthd_chan,
136 .mthd.ovly = &g84_disp_ovly_mthd_chan,
137 .mthd.prev = 0x000004,
138 .head.scanoutpos = nv50_disp_main_scanoutpos,
139}.base.base;
140