nouveau_dp.c 2.9 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 2009 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
 */

25
#include <drm/drmP.h>
26
#include <drm/drm_dp_helper.h>
27

28
#include "nouveau_drm.h"
29
#include "nouveau_connector.h"
30
#include "nouveau_encoder.h"
31
#include "nouveau_crtc.h"
32

33 34
#include <core/class.h>

35 36
#include <subdev/gpio.h>
#include <subdev/i2c.h>
37

38
static void
39
nouveau_dp_probe_oui(struct drm_device *dev, struct nouveau_i2c_port *auxch,
40 41
		     u8 *dpcd)
{
42
	struct nouveau_drm *drm = nouveau_drm(dev);
43 44 45 46 47
	u8 buf[3];

	if (!(dpcd[DP_DOWN_STREAM_PORT_COUNT] & DP_OUI_SUPPORT))
		return;

48 49
	if (!nv_rdaux(auxch, DP_SINK_OUI, buf, 3))
		NV_DEBUG(drm, "Sink OUI: %02hx%02hx%02hx\n",
50 51
			     buf[0], buf[1], buf[2]);

52 53
	if (!nv_rdaux(auxch, DP_BRANCH_OUI, buf, 3))
		NV_DEBUG(drm, "Branch OUI: %02hx%02hx%02hx\n",
54 55 56 57
			     buf[0], buf[1], buf[2]);

}

58 59 60 61 62
bool
nouveau_dp_detect(struct drm_encoder *encoder)
{
	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
	struct drm_device *dev = encoder->dev;
63
	struct nouveau_drm *drm = nouveau_drm(dev);
64
	struct nouveau_i2c_port *auxch;
65
	u8 *dpcd = nv_encoder->dp.dpcd;
66 67
	int ret;

68
	auxch = nv_encoder->i2c;
69 70 71
	if (!auxch)
		return false;

72
	ret = nv_rdaux(auxch, DP_DPCD_REV, dpcd, 8);
73 74 75
	if (ret)
		return false;

76 77
	nv_encoder->dp.link_bw = 27000 * dpcd[1];
	nv_encoder->dp.link_nr = dpcd[2] & DP_MAX_LANE_COUNT_MASK;
78

79
	NV_DEBUG(drm, "display: %dx%d dpcd 0x%02x\n",
80
		     nv_encoder->dp.link_nr, nv_encoder->dp.link_bw, dpcd[0]);
81
	NV_DEBUG(drm, "encoder: %dx%d\n",
82 83
		     nv_encoder->dcb->dpconf.link_nr,
		     nv_encoder->dcb->dpconf.link_bw);
84

85
	if (nv_encoder->dcb->dpconf.link_nr < nv_encoder->dp.link_nr)
86
		nv_encoder->dp.link_nr = nv_encoder->dcb->dpconf.link_nr;
87 88
	if (nv_encoder->dcb->dpconf.link_bw < nv_encoder->dp.link_bw)
		nv_encoder->dp.link_bw = nv_encoder->dcb->dpconf.link_bw;
89

90
	NV_DEBUG(drm, "maximum: %dx%d\n",
91
		     nv_encoder->dp.link_nr, nv_encoder->dp.link_bw);
92

93 94
	nouveau_dp_probe_oui(dev, auxch, dpcd);

95 96
	return true;
}