]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm200.c
drm/nouveau/disp/gf119-: port OR DP VCPI control to nvkm_ior
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nvkm / engine / disp / sorgm200.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 "ior.h"
25 #include "nv50.h"
26
27 static void
28 gm200_sor_dp_drive(struct nvkm_ior *sor, int ln, int pc, int dc, int pe, int pu)
29 {
30         struct nvkm_device *device = sor->disp->engine.subdev.device;
31         const u32  loff = nv50_sor_link(sor);
32         const u32 shift = sor->func->dp.lanes[ln] * 8;
33         u32 data[4];
34
35         pu &= 0x0f;
36
37         data[0] = nvkm_rd32(device, 0x61c118 + loff) & ~(0x000000ff << shift);
38         data[1] = nvkm_rd32(device, 0x61c120 + loff) & ~(0x000000ff << shift);
39         data[2] = nvkm_rd32(device, 0x61c130 + loff);
40         if ((data[2] & 0x00000f00) < (pu << 8) || ln == 0)
41                 data[2] = (data[2] & ~0x00000f00) | (pu << 8);
42         nvkm_wr32(device, 0x61c118 + loff, data[0] | (dc << shift));
43         nvkm_wr32(device, 0x61c120 + loff, data[1] | (pe << shift));
44         nvkm_wr32(device, 0x61c130 + loff, data[2]);
45         data[3] = nvkm_rd32(device, 0x61c13c + loff) & ~(0x000000ff << shift);
46         nvkm_wr32(device, 0x61c13c + loff, data[3] | (pc << shift));
47 }
48
49 static const struct nvkm_output_dp_func
50 gm200_sor_dp_func = {
51 };
52
53 int
54 gm200_sor_dp_new(struct nvkm_disp *disp, int index, struct dcb_output *dcbE,
55                  struct nvkm_output **poutp)
56 {
57         return nvkm_output_dp_new_(&gm200_sor_dp_func, disp, index, dcbE, poutp);
58 }
59
60 void
61 gm200_sor_magic(struct nvkm_output *outp)
62 {
63         struct nvkm_device *device = outp->disp->engine.subdev.device;
64         const u32 soff = outp->or * 0x100;
65         const u32 data = outp->or + 1;
66         if (outp->info.sorconf.link & 1)
67                 nvkm_mask(device, 0x612308 + soff, 0x0000001f, 0x00000000 | data);
68         if (outp->info.sorconf.link & 2)
69                 nvkm_mask(device, 0x612388 + soff, 0x0000001f, 0x00000010 | data);
70 }
71
72 static const struct nvkm_ior_func
73 gm200_sor = {
74         .state = gf119_sor_state,
75         .power = nv50_sor_power,
76         .hdmi = {
77                 .ctrl = gk104_hdmi_ctrl,
78         },
79         .dp = {
80                 .lanes = { 0, 1, 2, 3 },
81                 .links = gf119_sor_dp_links,
82                 .power = g94_sor_dp_power,
83                 .pattern = gm107_sor_dp_pattern,
84                 .drive = gm200_sor_dp_drive,
85                 .vcpi = gf119_sor_dp_vcpi,
86                 .audio = gf119_sor_dp_audio,
87         },
88         .hda = {
89                 .hpd = gf119_hda_hpd,
90                 .eld = gf119_hda_eld,
91         },
92 };
93
94 int
95 gm200_sor_new(struct nvkm_disp *disp, int id)
96 {
97         return nvkm_ior_new_(&gm200_sor, disp, SOR, id);
98 }