Linux Audio

Check our new training course

Loading...
v4.17
  1/*
  2 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
 
 
  3 * Author: Rob Clark <rob@ti.com>
  4 *
  5 * This program is free software; you can redistribute it and/or modify it
  6 * under the terms of the GNU General Public License version 2 as published by
  7 * the Free Software Foundation.
  8 *
  9 * This program is distributed in the hope that it will be useful, but WITHOUT
 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 12 * more details.
 13 *
 14 * You should have received a copy of the GNU General Public License along with
 15 * this program.  If not, see <http://www.gnu.org/licenses/>.
 16 */
 17
 18#include <drm/drm_atomic_helper.h>
 19#include <drm/drm_crtc.h>
 20#include <drm/drm_crtc_helper.h>
 21
 22#include "omap_drv.h"
 23
 24/*
 25 * connector funcs
 26 */
 27
 28#define to_omap_connector(x) container_of(x, struct omap_connector, base)
 29
 30struct omap_connector {
 31	struct drm_connector base;
 32	struct omap_dss_device *dssdev;
 33	bool hdmi_mode;
 34};
 35
 36static void omap_connector_hpd_cb(void *cb_data,
 37				  enum drm_connector_status status)
 38{
 39	struct omap_connector *omap_connector = cb_data;
 40	struct drm_connector *connector = &omap_connector->base;
 41	struct drm_device *dev = connector->dev;
 42	enum drm_connector_status old_status;
 43
 44	mutex_lock(&dev->mode_config.mutex);
 45	old_status = connector->status;
 46	connector->status = status;
 47	mutex_unlock(&dev->mode_config.mutex);
 48
 49	if (old_status != status)
 50		drm_kms_helper_hotplug_event(dev);
 51}
 52
 53bool omap_connector_get_hdmi_mode(struct drm_connector *connector)
 54{
 55	struct omap_connector *omap_connector = to_omap_connector(connector);
 56
 57	return omap_connector->hdmi_mode;
 58}
 59
 60static enum drm_connector_status omap_connector_detect(
 61		struct drm_connector *connector, bool force)
 62{
 63	struct omap_connector *omap_connector = to_omap_connector(connector);
 64	struct omap_dss_device *dssdev = omap_connector->dssdev;
 65	struct omap_dss_driver *dssdrv = dssdev->driver;
 66	enum drm_connector_status ret;
 67
 68	if (dssdrv->detect) {
 69		if (dssdrv->detect(dssdev))
 70			ret = connector_status_connected;
 71		else
 72			ret = connector_status_disconnected;
 73	} else if (dssdev->type == OMAP_DISPLAY_TYPE_DPI ||
 74			dssdev->type == OMAP_DISPLAY_TYPE_DBI ||
 75			dssdev->type == OMAP_DISPLAY_TYPE_SDI ||
 76			dssdev->type == OMAP_DISPLAY_TYPE_DSI) {
 77		ret = connector_status_connected;
 78	} else {
 79		ret = connector_status_unknown;
 80	}
 81
 82	VERB("%s: %d (force=%d)", omap_connector->dssdev->name, ret, force);
 83
 84	return ret;
 85}
 86
 87static void omap_connector_destroy(struct drm_connector *connector)
 88{
 89	struct omap_connector *omap_connector = to_omap_connector(connector);
 90	struct omap_dss_device *dssdev = omap_connector->dssdev;
 91
 92	DBG("%s", omap_connector->dssdev->name);
 93	if (connector->polled == DRM_CONNECTOR_POLL_HPD &&
 94	    dssdev->driver->unregister_hpd_cb) {
 95		dssdev->driver->unregister_hpd_cb(dssdev);
 96	}
 97	drm_connector_unregister(connector);
 98	drm_connector_cleanup(connector);
 99	kfree(omap_connector);
100
101	omap_dss_put_device(dssdev);
102}
103
104#define MAX_EDID  512
105
106static int omap_connector_get_modes(struct drm_connector *connector)
107{
108	struct omap_connector *omap_connector = to_omap_connector(connector);
109	struct omap_dss_device *dssdev = omap_connector->dssdev;
110	struct omap_dss_driver *dssdrv = dssdev->driver;
111	struct drm_device *dev = connector->dev;
112	int n = 0;
113
114	DBG("%s", omap_connector->dssdev->name);
115
116	/* if display exposes EDID, then we parse that in the normal way to
117	 * build table of supported modes.. otherwise (ie. fixed resolution
118	 * LCD panels) we just return a single mode corresponding to the
119	 * currently configured timings:
120	 */
121	if (dssdrv->read_edid) {
122		void *edid = kzalloc(MAX_EDID, GFP_KERNEL);
123
124		if (!edid)
125			return 0;
126
127		if ((dssdrv->read_edid(dssdev, edid, MAX_EDID) > 0) &&
128				drm_edid_is_valid(edid)) {
129			drm_mode_connector_update_edid_property(
130					connector, edid);
131			n = drm_add_edid_modes(connector, edid);
132
133			omap_connector->hdmi_mode =
134				drm_detect_hdmi_monitor(edid);
135		} else {
136			drm_mode_connector_update_edid_property(
137					connector, NULL);
138		}
139
140		kfree(edid);
141	} else {
142		struct drm_display_mode *mode = drm_mode_create(dev);
143		struct videomode vm = {0};
144
145		if (!mode)
146			return 0;
147
148		dssdrv->get_timings(dssdev, &vm);
149
150		drm_display_mode_from_videomode(&vm, mode);
151
152		mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
153		drm_mode_set_name(mode);
154		drm_mode_probed_add(connector, mode);
155
156		if (dssdrv->get_size) {
157			dssdrv->get_size(dssdev,
158					 &connector->display_info.width_mm,
159					 &connector->display_info.height_mm);
160		}
161
162		n = 1;
163	}
164
165	return n;
166}
167
168static int omap_connector_mode_valid(struct drm_connector *connector,
169				 struct drm_display_mode *mode)
170{
171	struct omap_connector *omap_connector = to_omap_connector(connector);
172	struct omap_dss_device *dssdev = omap_connector->dssdev;
173	struct omap_dss_driver *dssdrv = dssdev->driver;
174	struct videomode vm = {0};
175	struct drm_device *dev = connector->dev;
176	struct drm_display_mode *new_mode;
177	int r, ret = MODE_BAD;
178
179	drm_display_mode_to_videomode(mode, &vm);
 
 
180	mode->vrefresh = drm_mode_vrefresh(mode);
181
182	/*
183	 * if the panel driver doesn't have a check_timings, it's most likely
184	 * a fixed resolution panel, check if the timings match with the
185	 * panel's timings
186	 */
187	if (dssdrv->check_timings) {
188		r = dssdrv->check_timings(dssdev, &vm);
189	} else {
190		struct videomode t = {0};
191
192		dssdrv->get_timings(dssdev, &t);
193
194		/*
195		 * Ignore the flags, as we don't get them from
196		 * drm_display_mode_to_videomode.
197		 */
198		t.flags = 0;
199
200		if (memcmp(&vm, &t, sizeof(vm)))
201			r = -EINVAL;
202		else
203			r = 0;
204	}
205
206	if (!r) {
207		/* check if vrefresh is still valid */
208		new_mode = drm_mode_duplicate(dev, mode);
209
210		if (!new_mode)
211			return MODE_BAD;
212
213		new_mode->clock = vm.pixelclock / 1000;
214		new_mode->vrefresh = 0;
215		if (mode->vrefresh == drm_mode_vrefresh(new_mode))
216			ret = MODE_OK;
217		drm_mode_destroy(dev, new_mode);
218	}
219
220	DBG("connector: mode %s: "
221			"%d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
222			(ret == MODE_OK) ? "valid" : "invalid",
223			mode->base.id, mode->name, mode->vrefresh, mode->clock,
224			mode->hdisplay, mode->hsync_start,
225			mode->hsync_end, mode->htotal,
226			mode->vdisplay, mode->vsync_start,
227			mode->vsync_end, mode->vtotal, mode->type, mode->flags);
228
229	return ret;
230}
231
232static const struct drm_connector_funcs omap_connector_funcs = {
 
233	.reset = drm_atomic_helper_connector_reset,
234	.detect = omap_connector_detect,
235	.fill_modes = drm_helper_probe_single_connector_modes,
236	.destroy = omap_connector_destroy,
237	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
238	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
239};
240
241static const struct drm_connector_helper_funcs omap_connector_helper_funcs = {
242	.get_modes = omap_connector_get_modes,
243	.mode_valid = omap_connector_mode_valid,
244};
245
246/* initialize connector */
247struct drm_connector *omap_connector_init(struct drm_device *dev,
248		int connector_type, struct omap_dss_device *dssdev,
249		struct drm_encoder *encoder)
250{
251	struct drm_connector *connector = NULL;
252	struct omap_connector *omap_connector;
253	bool hpd_supported = false;
254
255	DBG("%s", dssdev->name);
256
257	omap_dss_get_device(dssdev);
258
259	omap_connector = kzalloc(sizeof(*omap_connector), GFP_KERNEL);
260	if (!omap_connector)
261		goto fail;
262
263	omap_connector->dssdev = dssdev;
264
265	connector = &omap_connector->base;
266
267	drm_connector_init(dev, connector, &omap_connector_funcs,
268				connector_type);
269	drm_connector_helper_add(connector, &omap_connector_helper_funcs);
270
271	if (dssdev->driver->register_hpd_cb) {
272		int ret = dssdev->driver->register_hpd_cb(dssdev,
273							  omap_connector_hpd_cb,
274							  omap_connector);
275		if (!ret)
276			hpd_supported = true;
277		else if (ret != -ENOTSUPP)
278			DBG("%s: Failed to register HPD callback (%d).",
279			    dssdev->name, ret);
280	}
281
282	if (hpd_supported)
283		connector->polled = DRM_CONNECTOR_POLL_HPD;
284	else if (dssdev->driver->detect)
285		connector->polled = DRM_CONNECTOR_POLL_CONNECT |
286				    DRM_CONNECTOR_POLL_DISCONNECT;
287	else
288		connector->polled = 0;
 
 
 
 
289
290	connector->interlace_allowed = 1;
291	connector->doublescan_allowed = 0;
 
 
292
293	return connector;
294
295fail:
296	if (connector)
297		omap_connector_destroy(connector);
298
299	return NULL;
300}
v4.10.11
  1/*
  2 * drivers/gpu/drm/omapdrm/omap_connector.c
  3 *
  4 * Copyright (C) 2011 Texas Instruments
  5 * Author: Rob Clark <rob@ti.com>
  6 *
  7 * This program is free software; you can redistribute it and/or modify it
  8 * under the terms of the GNU General Public License version 2 as published by
  9 * the Free Software Foundation.
 10 *
 11 * This program is distributed in the hope that it will be useful, but WITHOUT
 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 14 * more details.
 15 *
 16 * You should have received a copy of the GNU General Public License along with
 17 * this program.  If not, see <http://www.gnu.org/licenses/>.
 18 */
 19
 20#include <drm/drm_atomic_helper.h>
 21#include <drm/drm_crtc.h>
 22#include <drm/drm_crtc_helper.h>
 23
 24#include "omap_drv.h"
 25
 26/*
 27 * connector funcs
 28 */
 29
 30#define to_omap_connector(x) container_of(x, struct omap_connector, base)
 31
 32struct omap_connector {
 33	struct drm_connector base;
 34	struct omap_dss_device *dssdev;
 35	bool hdmi_mode;
 36};
 37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 38bool omap_connector_get_hdmi_mode(struct drm_connector *connector)
 39{
 40	struct omap_connector *omap_connector = to_omap_connector(connector);
 41
 42	return omap_connector->hdmi_mode;
 43}
 44
 45static enum drm_connector_status omap_connector_detect(
 46		struct drm_connector *connector, bool force)
 47{
 48	struct omap_connector *omap_connector = to_omap_connector(connector);
 49	struct omap_dss_device *dssdev = omap_connector->dssdev;
 50	struct omap_dss_driver *dssdrv = dssdev->driver;
 51	enum drm_connector_status ret;
 52
 53	if (dssdrv->detect) {
 54		if (dssdrv->detect(dssdev))
 55			ret = connector_status_connected;
 56		else
 57			ret = connector_status_disconnected;
 58	} else if (dssdev->type == OMAP_DISPLAY_TYPE_DPI ||
 59			dssdev->type == OMAP_DISPLAY_TYPE_DBI ||
 60			dssdev->type == OMAP_DISPLAY_TYPE_SDI ||
 61			dssdev->type == OMAP_DISPLAY_TYPE_DSI) {
 62		ret = connector_status_connected;
 63	} else {
 64		ret = connector_status_unknown;
 65	}
 66
 67	VERB("%s: %d (force=%d)", omap_connector->dssdev->name, ret, force);
 68
 69	return ret;
 70}
 71
 72static void omap_connector_destroy(struct drm_connector *connector)
 73{
 74	struct omap_connector *omap_connector = to_omap_connector(connector);
 75	struct omap_dss_device *dssdev = omap_connector->dssdev;
 76
 77	DBG("%s", omap_connector->dssdev->name);
 
 
 
 
 78	drm_connector_unregister(connector);
 79	drm_connector_cleanup(connector);
 80	kfree(omap_connector);
 81
 82	omap_dss_put_device(dssdev);
 83}
 84
 85#define MAX_EDID  512
 86
 87static int omap_connector_get_modes(struct drm_connector *connector)
 88{
 89	struct omap_connector *omap_connector = to_omap_connector(connector);
 90	struct omap_dss_device *dssdev = omap_connector->dssdev;
 91	struct omap_dss_driver *dssdrv = dssdev->driver;
 92	struct drm_device *dev = connector->dev;
 93	int n = 0;
 94
 95	DBG("%s", omap_connector->dssdev->name);
 96
 97	/* if display exposes EDID, then we parse that in the normal way to
 98	 * build table of supported modes.. otherwise (ie. fixed resolution
 99	 * LCD panels) we just return a single mode corresponding to the
100	 * currently configured timings:
101	 */
102	if (dssdrv->read_edid) {
103		void *edid = kzalloc(MAX_EDID, GFP_KERNEL);
104
 
 
 
105		if ((dssdrv->read_edid(dssdev, edid, MAX_EDID) > 0) &&
106				drm_edid_is_valid(edid)) {
107			drm_mode_connector_update_edid_property(
108					connector, edid);
109			n = drm_add_edid_modes(connector, edid);
110
111			omap_connector->hdmi_mode =
112				drm_detect_hdmi_monitor(edid);
113		} else {
114			drm_mode_connector_update_edid_property(
115					connector, NULL);
116		}
117
118		kfree(edid);
119	} else {
120		struct drm_display_mode *mode = drm_mode_create(dev);
121		struct videomode vm = {0};
122
 
 
 
123		dssdrv->get_timings(dssdev, &vm);
124
125		drm_display_mode_from_videomode(&vm, mode);
126
127		mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
128		drm_mode_set_name(mode);
129		drm_mode_probed_add(connector, mode);
130
 
 
 
 
 
 
131		n = 1;
132	}
133
134	return n;
135}
136
137static int omap_connector_mode_valid(struct drm_connector *connector,
138				 struct drm_display_mode *mode)
139{
140	struct omap_connector *omap_connector = to_omap_connector(connector);
141	struct omap_dss_device *dssdev = omap_connector->dssdev;
142	struct omap_dss_driver *dssdrv = dssdev->driver;
143	struct videomode vm = {0};
144	struct drm_device *dev = connector->dev;
145	struct drm_display_mode *new_mode;
146	int r, ret = MODE_BAD;
147
148	drm_display_mode_to_videomode(mode, &vm);
149	vm.flags |= DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
150		    DISPLAY_FLAGS_SYNC_NEGEDGE;
151	mode->vrefresh = drm_mode_vrefresh(mode);
152
153	/*
154	 * if the panel driver doesn't have a check_timings, it's most likely
155	 * a fixed resolution panel, check if the timings match with the
156	 * panel's timings
157	 */
158	if (dssdrv->check_timings) {
159		r = dssdrv->check_timings(dssdev, &vm);
160	} else {
161		struct videomode t = {0};
162
163		dssdrv->get_timings(dssdev, &t);
164
165		if (memcmp(&vm, &t, sizeof(struct videomode)))
 
 
 
 
 
 
166			r = -EINVAL;
167		else
168			r = 0;
169	}
170
171	if (!r) {
172		/* check if vrefresh is still valid */
173		new_mode = drm_mode_duplicate(dev, mode);
 
 
 
 
174		new_mode->clock = vm.pixelclock / 1000;
175		new_mode->vrefresh = 0;
176		if (mode->vrefresh == drm_mode_vrefresh(new_mode))
177			ret = MODE_OK;
178		drm_mode_destroy(dev, new_mode);
179	}
180
181	DBG("connector: mode %s: "
182			"%d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x",
183			(ret == MODE_OK) ? "valid" : "invalid",
184			mode->base.id, mode->name, mode->vrefresh, mode->clock,
185			mode->hdisplay, mode->hsync_start,
186			mode->hsync_end, mode->htotal,
187			mode->vdisplay, mode->vsync_start,
188			mode->vsync_end, mode->vtotal, mode->type, mode->flags);
189
190	return ret;
191}
192
193static const struct drm_connector_funcs omap_connector_funcs = {
194	.dpms = drm_atomic_helper_connector_dpms,
195	.reset = drm_atomic_helper_connector_reset,
196	.detect = omap_connector_detect,
197	.fill_modes = drm_helper_probe_single_connector_modes,
198	.destroy = omap_connector_destroy,
199	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
200	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
201};
202
203static const struct drm_connector_helper_funcs omap_connector_helper_funcs = {
204	.get_modes = omap_connector_get_modes,
205	.mode_valid = omap_connector_mode_valid,
206};
207
208/* initialize connector */
209struct drm_connector *omap_connector_init(struct drm_device *dev,
210		int connector_type, struct omap_dss_device *dssdev,
211		struct drm_encoder *encoder)
212{
213	struct drm_connector *connector = NULL;
214	struct omap_connector *omap_connector;
 
215
216	DBG("%s", dssdev->name);
217
218	omap_dss_get_device(dssdev);
219
220	omap_connector = kzalloc(sizeof(struct omap_connector), GFP_KERNEL);
221	if (!omap_connector)
222		goto fail;
223
224	omap_connector->dssdev = dssdev;
225
226	connector = &omap_connector->base;
227
228	drm_connector_init(dev, connector, &omap_connector_funcs,
229				connector_type);
230	drm_connector_helper_add(connector, &omap_connector_helper_funcs);
231
232#if 0 /* enable when dss2 supports hotplug */
233	if (dssdev->caps & OMAP_DSS_DISPLAY_CAP_HPD)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234		connector->polled = 0;
235	else
236#endif
237		connector->polled = DRM_CONNECTOR_POLL_CONNECT |
238				DRM_CONNECTOR_POLL_DISCONNECT;
239
240	connector->interlace_allowed = 1;
241	connector->doublescan_allowed = 0;
242
243	drm_connector_register(connector);
244
245	return connector;
246
247fail:
248	if (connector)
249		omap_connector_destroy(connector);
250
251	return NULL;
252}