22706c0a54b53a9f95a1ad7e453217b7276cfcaf
[cascardo/linux.git] / drivers / gpu / drm / nouveau / nvkm / engine / disp / sorgf119.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 "outpdp.h"
26
27 static inline u32
28 gf119_sor_soff(struct nvkm_output_dp *outp)
29 {
30         return (ffs(outp->base.info.or) - 1) * 0x800;
31 }
32
33 static inline u32
34 gf119_sor_loff(struct nvkm_output_dp *outp)
35 {
36         return gf119_sor_soff(outp) + !(outp->base.info.sorconf.link & 1) * 0x80;
37 }
38
39 static int
40 gf119_sor_dp_pattern(struct nvkm_output_dp *outp, int pattern)
41 {
42         struct nvkm_device *device = outp->base.disp->engine.subdev.device;
43         nvkm_mask(device, 0x61c110, 0x0f0f0f0f, 0x01010101 * pattern);
44         return 0;
45 }
46
47 int
48 gf119_sor_dp_lnk_ctl(struct nvkm_output_dp *outp, int nr, int bw, bool ef)
49 {
50         struct nvkm_device *device = outp->base.disp->engine.subdev.device;
51         const u32 soff = gf119_sor_soff(outp);
52         const u32 loff = gf119_sor_loff(outp);
53         u32 dpctrl = 0x00000000;
54         u32 clksor = 0x00000000;
55
56         clksor |= bw << 18;
57         dpctrl |= ((1 << nr) - 1) << 16;
58         if (ef)
59                 dpctrl |= 0x00004000;
60
61         nvkm_mask(device, 0x612300 + soff, 0x007c0000, clksor);
62         nvkm_mask(device, 0x61c10c + loff, 0x001f4000, dpctrl);
63         return 0;
64 }
65
66 int
67 gf119_sor_dp_drv_ctl(struct nvkm_output_dp *outp,
68                      int ln, int vs, int pe, int pc)
69 {
70         struct nvkm_device *device = outp->base.disp->engine.subdev.device;
71         struct nvkm_bios *bios = device->bios;
72         const u32 shift = g94_sor_dp_lane_map(device, ln);
73         const u32 loff = gf119_sor_loff(outp);
74         u32 addr, data[4];
75         u8  ver, hdr, cnt, len;
76         struct nvbios_dpout info;
77         struct nvbios_dpcfg ocfg;
78
79         addr = nvbios_dpout_match(bios, outp->base.info.hasht,
80                                         outp->base.info.hashm,
81                                   &ver, &hdr, &cnt, &len, &info);
82         if (!addr)
83                 return -ENODEV;
84
85         addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe,
86                                   &ver, &hdr, &cnt, &len, &ocfg);
87         if (!addr)
88                 return -EINVAL;
89
90         data[0] = nvkm_rd32(device, 0x61c118 + loff) & ~(0x000000ff << shift);
91         data[1] = nvkm_rd32(device, 0x61c120 + loff) & ~(0x000000ff << shift);
92         data[2] = nvkm_rd32(device, 0x61c130 + loff);
93         if ((data[2] & 0x0000ff00) < (ocfg.tx_pu << 8) || ln == 0)
94                 data[2] = (data[2] & ~0x0000ff00) | (ocfg.tx_pu << 8);
95         nvkm_wr32(device, 0x61c118 + loff, data[0] | (ocfg.dc << shift));
96         nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift));
97         nvkm_wr32(device, 0x61c130 + loff, data[2]);
98         data[3] = nvkm_rd32(device, 0x61c13c + loff) & ~(0x000000ff << shift);
99         nvkm_wr32(device, 0x61c13c + loff, data[3] | (ocfg.pc << shift));
100         return 0;
101 }
102
103 static const struct nvkm_output_dp_func
104 gf119_sor_dp_func = {
105         .pattern = gf119_sor_dp_pattern,
106         .lnk_pwr = g94_sor_dp_lnk_pwr,
107         .lnk_ctl = gf119_sor_dp_lnk_ctl,
108         .drv_ctl = gf119_sor_dp_drv_ctl,
109 };
110
111 int
112 gf119_sor_dp_new(struct nvkm_disp *disp, int index,
113                  struct dcb_output *dcbE, struct nvkm_output **poutp)
114 {
115         return nvkm_output_dp_new_(&gf119_sor_dp_func, disp, index, dcbE, poutp);
116 }