aboutsummaryrefslogtreecommitdiff
path: root/linux-core/nv50_connector.c
blob: 34706bae138c64cce0082917e6375de4ddb9b7bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*
 * Copyright (C) 2008 Maarten Maathuis.
 * All Rights Reserved.
 *
 * 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 (including the
 * next paragraph) 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 OWNER(S) AND/OR ITS SUPPLIERS 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.
 *
 */

#include "nv50_connector.h"

static struct nv50_output *nv50_connector_to_output(struct nv50_connector *connector, bool digital)
{
	struct nv50_display *display = nv50_get_display(connector->dev);
	struct nv50_output *output = NULL;
	bool digital_possible = false;
	bool analog_possible = false;

	switch (connector->type) {
		case CONNECTOR_VGA:
		case CONNECTOR_TV:
			analog_possible = true;
			break;
		case CONNECTOR_DVI_I:
			analog_possible = true;
			digital_possible = true;
			break;
		case CONNECTOR_DVI_D:
		case CONNECTOR_LVDS:
			digital_possible = true;
			break;
		default:
			break;
	}

	/* Return early on bad situations. */
	if (!analog_possible && !digital_possible)
		return NULL;

	if (!analog_possible && !digital)
		return NULL;

	if (!digital_possible && digital)
		return NULL;

	list_for_each_entry(output, &display->outputs, item) {
		if (connector->bus != output->bus)
			continue;
		if (digital && output->type == OUTPUT_TMDS)
			return output;
		if (digital && output->type == OUTPUT_LVDS)
			return output;
		if (!digital && output->type == OUTPUT_DAC)
			return output;
		if (!digital && output->type == OUTPUT_TV)
			return output;
	}

	return NULL;
}

static int nv50_connector_hpd_detect(struct nv50_connector *connector)
{
	struct drm_nouveau_private *dev_priv = connector->dev->dev_private;
	bool present = 0;
	uint32_t reg = 0;

	/* Assume connected for the moment. */
	if (connector->type == CONNECTOR_LVDS) {
		NV50_DEBUG("LVDS is defaulting to connected for the moment.\n");
		return 1;
	}

	/* No i2c port, no idea what to do for hotplug. */
	if (connector->i2c_chan->index == 15) {
		DRM_ERROR("You have a non-LVDS SOR with no i2c port, please report\n");
		return -EINVAL;
	}

	if (connector->i2c_chan->index > 3) {
		DRM_ERROR("You have an unusual configuration, index is %d\n", connector->i2c_chan->index);
		DRM_ERROR("Please report.\n");
		return -EINVAL;
	}

	/* Check hotplug pins. */
	reg = NV_READ(NV50_PCONNECTOR_HOTPLUG_STATE);
	if (reg & (NV50_PCONNECTOR_HOTPLUG_STATE_PIN_CONNECTED_I2C0 << (4 * connector->i2c_chan->index)))
		present = 1;

	if (present)
		NV50_DEBUG("Hotplug detect returned positive for bus %d\n", connector->bus);
	else
		NV50_DEBUG("Hotplug detect returned negative for bus %d\n", connector->bus);

	return present;
}

static int nv50_connector_i2c_detect(struct nv50_connector *connector)
{
	/* kindly borrrowed from the intel driver, hope it works. */
	uint8_t out_buf[] = { 0x0, 0x0};
	uint8_t buf[2];
	int ret;
	struct i2c_msg msgs[] = {
		{
			.addr = 0x50,
			.flags = 0,
			.len = 1,
			.buf = out_buf,
		},
		{
			.addr = 0x50,
			.flags = I2C_M_RD,
			.len = 1,
			.buf = buf,
		}
	};

	if (!connector->i2c_chan)
		return -EINVAL;

	ret = i2c_transfer(&connector->i2c_chan->adapter, msgs, 2);
	NV50_DEBUG("I2C detect returned %d\n", ret);

	if (ret == 2)
		return true;

	return false;
}

static int nv50_connector_destroy(struct nv50_connector *connector)
{
	struct drm_device *dev = connector->dev;
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	struct nv50_display *display = nv50_get_display(dev);

	NV50_DEBUG("\n");

	if (!display || !connector)
		return -EINVAL;

	list_del(&connector->item);

	if (connector->i2c_chan)
		nv50_i2c_channel_destroy(connector->i2c_chan);

	if (dev_priv->free_connector)
		dev_priv->free_connector(connector);

	return 0;
}

int nv50_connector_create(struct drm_device *dev, int bus, int i2c_index, int type)
{
	struct nv50_connector *connector = NULL;
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	struct nv50_display *display = NULL;

	NV50_DEBUG("\n");

	/* This allows the public layer to do it's thing. */
	if (dev_priv->alloc_connector)
		connector = dev_priv->alloc_connector(dev);

	if (!connector)
		return -ENOMEM;

	connector->dev = dev;

	display = nv50_get_display(dev);
	if (!display)
		goto out;

	if (type == CONNECTOR_UNKNOWN)
		goto out;

	list_add_tail(&connector->item, &display->connectors);

	connector->bus = bus;
	connector->type = type;

	switch (type) {
		case CONNECTOR_VGA:
			DRM_INFO("Detected a VGA connector\n");
			break;
		case CONNECTOR_DVI_D:
			DRM_INFO("Detected a DVI-D connector\n");
			break;
		case CONNECTOR_DVI_I:
			DRM_INFO("Detected a DVI-I connector\n");
			break;
		case CONNECTOR_LVDS:
			DRM_INFO("Detected a LVDS connector\n");
			break;
		case CONNECTOR_TV:
			DRM_INFO("Detected a TV connector\n");
			break;
		default:
			DRM_ERROR("Unknown connector, this is not good.\n");
			break;
	}

	/* some reasonable defaults */
	if (type == CONNECTOR_DVI_D || type == CONNECTOR_DVI_I || type == CONNECTOR_LVDS)
		connector->requested_scaling_mode = SCALE_FULLSCREEN;
	else
		connector->requested_scaling_mode = SCALE_NON_GPU;

	connector->use_dithering = false;

	if (i2c_index < 0xf)
		connector->i2c_chan = nv50_i2c_channel_create(dev, i2c_index);

	/* set function pointers */
	connector->hpd_detect = nv50_connector_hpd_detect;
	connector->i2c_detect = nv50_connector_i2c_detect;
	connector->destroy = nv50_connector_destroy;
	connector->to_output = nv50_connector_to_output;

	return 0;

out:
	if (dev_priv->free_connector)
		dev_priv->free_connector(connector);

	return -EINVAL;
}