sorgf119.c 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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
 */
#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 44
	const u32 soff = gf119_sor_soff(outp);
	nvkm_mask(device, 0x61c110 + soff, 0x0f0f0f0f, 0x01010101 * pattern);
45 46 47
	return 0;
}

B
Ben Skeggs 已提交
48
int
49
gf119_sor_dp_lnk_ctl(struct nvkm_output_dp *outp, int nr, int bw, bool ef)
50
{
51
	struct nvkm_device *device = outp->base.disp->engine.subdev.device;
52 53
	const u32 soff = gf119_sor_soff(outp);
	const u32 loff = gf119_sor_loff(outp);
54 55 56
	u32 dpctrl = 0x00000000;
	u32 clksor = 0x00000000;

57 58 59
	clksor |= bw << 18;
	dpctrl |= ((1 << nr) - 1) << 16;
	if (ef)
60 61
		dpctrl |= 0x00004000;

62 63
	nvkm_mask(device, 0x612300 + soff, 0x007c0000, clksor);
	nvkm_mask(device, 0x61c10c + loff, 0x001f4000, dpctrl);
64 65 66
	return 0;
}

67
int
68
gf119_sor_dp_drv_ctl(struct nvkm_output_dp *outp,
69
		     int ln, int vs, int pe, int pc)
70
{
71
	struct nvkm_device *device = outp->base.disp->engine.subdev.device;
72
	struct nvkm_bios *bios = device->bios;
73
	const u32 shift = g94_sor_dp_lane_map(device, ln);
74
	const u32 loff = gf119_sor_loff(outp);
75
	u32 addr, data[4];
76
	u8  ver, hdr, cnt, len;
77
	struct nvbios_dpout info;
78 79
	struct nvbios_dpcfg ocfg;

80 81
	addr = nvbios_dpout_match(bios, outp->base.info.hasht,
					outp->base.info.hashm,
82
				  &ver, &hdr, &cnt, &len, &info);
83 84 85
	if (!addr)
		return -ENODEV;

86
	addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe,
87
				  &ver, &hdr, &cnt, &len, &ocfg);
88 89 90
	if (!addr)
		return -EINVAL;

91 92 93
	data[0] = nvkm_rd32(device, 0x61c118 + loff) & ~(0x000000ff << shift);
	data[1] = nvkm_rd32(device, 0x61c120 + loff) & ~(0x000000ff << shift);
	data[2] = nvkm_rd32(device, 0x61c130 + loff);
94 95
	if ((data[2] & 0x0000ff00) < (ocfg.tx_pu << 8) || ln == 0)
		data[2] = (data[2] & ~0x0000ff00) | (ocfg.tx_pu << 8);
96 97 98 99 100
	nvkm_wr32(device, 0x61c118 + loff, data[0] | (ocfg.dc << shift));
	nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift));
	nvkm_wr32(device, 0x61c130 + loff, data[2]);
	data[3] = nvkm_rd32(device, 0x61c13c + loff) & ~(0x000000ff << shift);
	nvkm_wr32(device, 0x61c13c + loff, data[3] | (ocfg.pc << shift));
101 102
	return 0;
}
103

104
static const struct nvkm_output_dp_func
105 106
gf119_sor_dp_func = {
	.pattern = gf119_sor_dp_pattern,
107
	.lnk_pwr = g94_sor_dp_lnk_pwr,
108 109
	.lnk_ctl = gf119_sor_dp_lnk_ctl,
	.drv_ctl = gf119_sor_dp_drv_ctl,
110
};
111 112

int
113
gf119_sor_dp_new(struct nvkm_disp *disp, int index,
114 115
		 struct dcb_output *dcbE, struct nvkm_output **poutp)
{
116
	return nvkm_output_dp_new_(&gf119_sor_dp_func, disp, index, dcbE, poutp);
117
}