Linux Audio

Check our new training course

Loading...
v3.5.6
   1/*
   2 * Copyright (c) 2006-2008 Intel Corporation
   3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
   4 * Copyright (c) 2008 Red Hat Inc.
   5 *
   6 * DRM core CRTC related functions
   7 *
   8 * Permission to use, copy, modify, distribute, and sell this software and its
   9 * documentation for any purpose is hereby granted without fee, provided that
  10 * the above copyright notice appear in all copies and that both that copyright
  11 * notice and this permission notice appear in supporting documentation, and
  12 * that the name of the copyright holders not be used in advertising or
  13 * publicity pertaining to distribution of the software without specific,
  14 * written prior permission.  The copyright holders make no representations
  15 * about the suitability of this software for any purpose.  It is provided "as
  16 * is" without express or implied warranty.
  17 *
  18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  24 * OF THIS SOFTWARE.
  25 *
  26 * Authors:
  27 *      Keith Packard
  28 *	Eric Anholt <eric@anholt.net>
  29 *      Dave Airlie <airlied@linux.ie>
  30 *      Jesse Barnes <jesse.barnes@intel.com>
  31 */
 
  32#include <linux/list.h>
  33#include <linux/slab.h>
  34#include <linux/export.h>
  35#include "drm.h"
  36#include "drmP.h"
  37#include "drm_crtc.h"
  38#include "drm_edid.h"
  39#include "drm_fourcc.h"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  40
  41/* Avoid boilerplate.  I'm tired of typing. */
  42#define DRM_ENUM_NAME_FN(fnname, list)				\
  43	char *fnname(int val)					\
  44	{							\
  45		int i;						\
  46		for (i = 0; i < ARRAY_SIZE(list); i++) {	\
  47			if (list[i].type == val)		\
  48				return list[i].name;		\
  49		}						\
  50		return "(unknown)";				\
  51	}
  52
  53/*
  54 * Global properties
  55 */
  56static struct drm_prop_enum_list drm_dpms_enum_list[] =
  57{	{ DRM_MODE_DPMS_ON, "On" },
  58	{ DRM_MODE_DPMS_STANDBY, "Standby" },
  59	{ DRM_MODE_DPMS_SUSPEND, "Suspend" },
  60	{ DRM_MODE_DPMS_OFF, "Off" }
  61};
  62
  63DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
  64
 
 
 
 
 
 
 
  65/*
  66 * Optional properties
  67 */
  68static struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
  69{
  70	{ DRM_MODE_SCALE_NONE, "None" },
  71	{ DRM_MODE_SCALE_FULLSCREEN, "Full" },
  72	{ DRM_MODE_SCALE_CENTER, "Center" },
  73	{ DRM_MODE_SCALE_ASPECT, "Full aspect" },
  74};
  75
  76static struct drm_prop_enum_list drm_dithering_mode_enum_list[] =
  77{
  78	{ DRM_MODE_DITHERING_OFF, "Off" },
  79	{ DRM_MODE_DITHERING_ON, "On" },
  80	{ DRM_MODE_DITHERING_AUTO, "Automatic" },
  81};
  82
  83/*
  84 * Non-global properties, but "required" for certain connectors.
  85 */
  86static struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
  87{
  88	{ DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
  89	{ DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
  90	{ DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
  91};
  92
  93DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
  94
  95static struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
  96{
  97	{ DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
  98	{ DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
  99	{ DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
 100};
 101
 102DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
 103		 drm_dvi_i_subconnector_enum_list)
 104
 105static struct drm_prop_enum_list drm_tv_select_enum_list[] =
 106{
 107	{ DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
 108	{ DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
 109	{ DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
 110	{ DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
 111	{ DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
 112};
 113
 114DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
 115
 116static struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
 117{
 118	{ DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
 119	{ DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
 120	{ DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
 121	{ DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
 122	{ DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
 123};
 124
 125DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
 126		 drm_tv_subconnector_enum_list)
 127
 128static struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
 129	{ DRM_MODE_DIRTY_OFF,      "Off"      },
 130	{ DRM_MODE_DIRTY_ON,       "On"       },
 131	{ DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
 132};
 133
 134DRM_ENUM_NAME_FN(drm_get_dirty_info_name,
 135		 drm_dirty_info_enum_list)
 136
 137struct drm_conn_prop_enum_list {
 138	int type;
 139	char *name;
 140	int count;
 141};
 142
 143/*
 144 * Connector and encoder types.
 145 */
 146static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
 147{	{ DRM_MODE_CONNECTOR_Unknown, "Unknown", 0 },
 148	{ DRM_MODE_CONNECTOR_VGA, "VGA", 0 },
 149	{ DRM_MODE_CONNECTOR_DVII, "DVI-I", 0 },
 150	{ DRM_MODE_CONNECTOR_DVID, "DVI-D", 0 },
 151	{ DRM_MODE_CONNECTOR_DVIA, "DVI-A", 0 },
 152	{ DRM_MODE_CONNECTOR_Composite, "Composite", 0 },
 153	{ DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO", 0 },
 154	{ DRM_MODE_CONNECTOR_LVDS, "LVDS", 0 },
 155	{ DRM_MODE_CONNECTOR_Component, "Component", 0 },
 156	{ DRM_MODE_CONNECTOR_9PinDIN, "DIN", 0 },
 157	{ DRM_MODE_CONNECTOR_DisplayPort, "DP", 0 },
 158	{ DRM_MODE_CONNECTOR_HDMIA, "HDMI-A", 0 },
 159	{ DRM_MODE_CONNECTOR_HDMIB, "HDMI-B", 0 },
 160	{ DRM_MODE_CONNECTOR_TV, "TV", 0 },
 161	{ DRM_MODE_CONNECTOR_eDP, "eDP", 0 },
 162	{ DRM_MODE_CONNECTOR_VIRTUAL, "Virtual", 0},
 
 163};
 164
 165static struct drm_prop_enum_list drm_encoder_enum_list[] =
 166{	{ DRM_MODE_ENCODER_NONE, "None" },
 167	{ DRM_MODE_ENCODER_DAC, "DAC" },
 168	{ DRM_MODE_ENCODER_TMDS, "TMDS" },
 169	{ DRM_MODE_ENCODER_LVDS, "LVDS" },
 170	{ DRM_MODE_ENCODER_TVDAC, "TV" },
 171	{ DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
 
 172};
 173
 174char *drm_get_encoder_name(struct drm_encoder *encoder)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 175{
 176	static char buf[32];
 177
 178	snprintf(buf, 32, "%s-%d",
 179		 drm_encoder_enum_list[encoder->encoder_type].name,
 180		 encoder->base.id);
 181	return buf;
 182}
 183EXPORT_SYMBOL(drm_get_encoder_name);
 184
 185char *drm_get_connector_name(struct drm_connector *connector)
 
 
 
 
 
 
 
 
 
 186{
 187	static char buf[32];
 188
 189	snprintf(buf, 32, "%s-%d",
 190		 drm_connector_enum_list[connector->connector_type].name,
 191		 connector->connector_type_id);
 192	return buf;
 193}
 194EXPORT_SYMBOL(drm_get_connector_name);
 195
 196char *drm_get_connector_status_name(enum drm_connector_status status)
 
 
 
 
 
 
 
 197{
 198	if (status == connector_status_connected)
 199		return "connected";
 200	else if (status == connector_status_disconnected)
 201		return "disconnected";
 202	else
 203		return "unknown";
 204}
 
 205
 206/**
 207 * drm_mode_object_get - allocate a new identifier
 208 * @dev: DRM device
 209 * @ptr: object pointer, used to generate unique ID
 210 * @type: object type
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 211 *
 212 * LOCKING:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 213 *
 214 * Create a unique identifier based on @ptr in @dev's identifier space.  Used
 215 * for tracking modes, CRTCs and connectors.
 
 
 216 *
 217 * RETURNS:
 218 * New unique (relative to other objects in @dev) integer identifier for the
 219 * object.
 220 */
 221static int drm_mode_object_get(struct drm_device *dev,
 222			       struct drm_mode_object *obj, uint32_t obj_type)
 223{
 224	int new_id = 0;
 225	int ret;
 226
 227again:
 228	if (idr_pre_get(&dev->mode_config.crtc_idr, GFP_KERNEL) == 0) {
 229		DRM_ERROR("Ran out memory getting a mode number\n");
 230		return -ENOMEM;
 231	}
 232
 233	mutex_lock(&dev->mode_config.idr_mutex);
 234	ret = idr_get_new_above(&dev->mode_config.crtc_idr, obj, 1, &new_id);
 
 
 
 
 
 
 
 
 235	mutex_unlock(&dev->mode_config.idr_mutex);
 236	if (ret == -EAGAIN)
 237		goto again;
 238	else if (ret)
 239		return ret;
 240
 241	obj->id = new_id;
 242	obj->type = obj_type;
 243	return 0;
 244}
 245
 246/**
 247 * drm_mode_object_put - free an identifer
 248 * @dev: DRM device
 249 * @id: ID to free
 250 *
 251 * LOCKING:
 252 * Caller must hold DRM mode_config lock.
 253 *
 254 * Free @id from @dev's unique identifier pool.
 255 */
 256static void drm_mode_object_put(struct drm_device *dev,
 257				struct drm_mode_object *object)
 258{
 259	mutex_lock(&dev->mode_config.idr_mutex);
 260	idr_remove(&dev->mode_config.crtc_idr, object->id);
 261	mutex_unlock(&dev->mode_config.idr_mutex);
 262}
 263
 
 
 
 
 
 
 
 
 
 264struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
 265		uint32_t id, uint32_t type)
 266{
 267	struct drm_mode_object *obj = NULL;
 268
 
 
 
 
 269	mutex_lock(&dev->mode_config.idr_mutex);
 270	obj = idr_find(&dev->mode_config.crtc_idr, id);
 271	if (!obj || (obj->type != type) || (obj->id != id))
 272		obj = NULL;
 273	mutex_unlock(&dev->mode_config.idr_mutex);
 274
 275	return obj;
 276}
 277EXPORT_SYMBOL(drm_mode_object_find);
 278
 279/**
 280 * drm_framebuffer_init - initialize a framebuffer
 281 * @dev: DRM device
 282 *
 283 * LOCKING:
 284 * Caller must hold mode config lock.
 285 *
 286 * Allocates an ID for the framebuffer's parent mode object, sets its mode
 287 * functions & device file and adds it to the master fd list.
 288 *
 289 * RETURNS:
 
 
 
 
 
 
 290 * Zero on success, error code on failure.
 291 */
 292int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
 293			 const struct drm_framebuffer_funcs *funcs)
 294{
 295	int ret;
 296
 
 
 
 
 
 
 297	ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
 298	if (ret)
 299		return ret;
 
 
 
 300
 301	fb->dev = dev;
 302	fb->funcs = funcs;
 303	dev->mode_config.num_fb++;
 304	list_add(&fb->head, &dev->mode_config.fb_list);
 
 
 305
 306	return 0;
 307}
 308EXPORT_SYMBOL(drm_framebuffer_init);
 309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 310/**
 311 * drm_framebuffer_cleanup - remove a framebuffer object
 312 * @fb: framebuffer to remove
 313 *
 314 * LOCKING:
 315 * Caller must hold mode config lock.
 316 *
 317 * Scans all the CRTCs in @dev's mode_config.  If they're using @fb, removes
 318 * it, setting it to NULL.
 
 
 
 
 
 
 
 319 */
 320void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
 321{
 322	struct drm_device *dev = fb->dev;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 323	struct drm_crtc *crtc;
 324	struct drm_plane *plane;
 325	struct drm_mode_set set;
 326	int ret;
 327
 328	/* remove from any CRTC */
 329	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
 330		if (crtc->fb == fb) {
 331			/* should turn off the crtc */
 332			memset(&set, 0, sizeof(struct drm_mode_set));
 333			set.crtc = crtc;
 334			set.fb = NULL;
 335			ret = crtc->funcs->set_config(&set);
 336			if (ret)
 337				DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 338		}
 339	}
 340
 341	list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
 342		if (plane->fb == fb) {
 343			/* should turn off the crtc */
 344			ret = plane->funcs->disable_plane(plane);
 345			if (ret)
 346				DRM_ERROR("failed to disable plane with busy fb\n");
 347			/* disconnect the plane from the fb and crtc: */
 348			plane->fb = NULL;
 349			plane->crtc = NULL;
 350		}
 
 351	}
 352
 353	drm_mode_object_put(dev, &fb->base);
 354	list_del(&fb->head);
 355	dev->mode_config.num_fb--;
 356}
 357EXPORT_SYMBOL(drm_framebuffer_cleanup);
 358
 359/**
 360 * drm_crtc_init - Initialise a new CRTC object
 
 361 * @dev: DRM device
 362 * @crtc: CRTC object to init
 
 
 363 * @funcs: callbacks for the new CRTC
 364 *
 365 * LOCKING:
 366 * Takes mode_config lock.
 367 *
 368 * Inits a new object created as base part of an driver crtc object.
 369 *
 370 * RETURNS:
 371 * Zero on success, error code on failure.
 372 */
 373int drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
 374		   const struct drm_crtc_funcs *funcs)
 
 
 375{
 376	int ret;
 377
 378	crtc->dev = dev;
 379	crtc->funcs = funcs;
 
 380
 381	mutex_lock(&dev->mode_config.mutex);
 
 
 382
 383	ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
 384	if (ret)
 385		goto out;
 386
 387	crtc->base.properties = &crtc->properties;
 388
 389	list_add_tail(&crtc->head, &dev->mode_config.crtc_list);
 390	dev->mode_config.num_crtc++;
 391
 
 
 
 
 392 out:
 393	mutex_unlock(&dev->mode_config.mutex);
 394
 395	return ret;
 396}
 397EXPORT_SYMBOL(drm_crtc_init);
 398
 399/**
 400 * drm_crtc_cleanup - Cleans up the core crtc usage.
 401 * @crtc: CRTC to cleanup
 402 *
 403 * LOCKING:
 404 * Caller must hold mode config lock.
 405 *
 406 * Cleanup @crtc. Removes from drm modesetting space
 407 * does NOT free object, caller does that.
 408 */
 409void drm_crtc_cleanup(struct drm_crtc *crtc)
 410{
 411	struct drm_device *dev = crtc->dev;
 412
 413	if (crtc->gamma_store) {
 414		kfree(crtc->gamma_store);
 415		crtc->gamma_store = NULL;
 416	}
 417
 418	drm_mode_object_put(dev, &crtc->base);
 419	list_del(&crtc->head);
 420	dev->mode_config.num_crtc--;
 421}
 422EXPORT_SYMBOL(drm_crtc_cleanup);
 423
 424/**
 425 * drm_mode_probed_add - add a mode to a connector's probed mode list
 426 * @connector: connector the new mode
 427 * @mode: mode data
 428 *
 429 * LOCKING:
 430 * Caller must hold mode config lock.
 431 *
 432 * Add @mode to @connector's mode list for later use.
 
 433 */
 434void drm_mode_probed_add(struct drm_connector *connector,
 435			 struct drm_display_mode *mode)
 436{
 437	list_add(&mode->head, &connector->probed_modes);
 
 
 
 
 
 
 
 
 
 
 438}
 439EXPORT_SYMBOL(drm_mode_probed_add);
 440
 441/**
 442 * drm_mode_remove - remove and free a mode
 443 * @connector: connector list to modify
 444 * @mode: mode to remove
 445 *
 446 * LOCKING:
 447 * Caller must hold mode config lock.
 448 *
 449 * Remove @mode from @connector's mode list, then free it.
 450 */
 451void drm_mode_remove(struct drm_connector *connector,
 452		     struct drm_display_mode *mode)
 453{
 454	list_del(&mode->head);
 455	drm_mode_destroy(connector->dev, mode);
 456}
 457EXPORT_SYMBOL(drm_mode_remove);
 458
 459/**
 460 * drm_connector_init - Init a preallocated connector
 461 * @dev: DRM device
 462 * @connector: the connector to init
 463 * @funcs: callbacks for this connector
 464 * @name: user visible name of the connector
 465 *
 466 * LOCKING:
 467 * Takes mode config lock.
 468 *
 469 * Initialises a preallocated connector. Connectors should be
 470 * subclassed as part of driver connector objects.
 471 *
 472 * RETURNS:
 473 * Zero on success, error code on failure.
 474 */
 475int drm_connector_init(struct drm_device *dev,
 476		       struct drm_connector *connector,
 477		       const struct drm_connector_funcs *funcs,
 478		       int connector_type)
 479{
 480	int ret;
 
 
 481
 482	mutex_lock(&dev->mode_config.mutex);
 483
 484	ret = drm_mode_object_get(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR);
 485	if (ret)
 486		goto out;
 487
 488	connector->base.properties = &connector->properties;
 489	connector->dev = dev;
 490	connector->funcs = funcs;
 491	connector->connector_type = connector_type;
 492	connector->connector_type_id =
 493		++drm_connector_enum_list[connector_type].count; /* TODO */
 494	INIT_LIST_HEAD(&connector->user_modes);
 
 
 
 
 495	INIT_LIST_HEAD(&connector->probed_modes);
 496	INIT_LIST_HEAD(&connector->modes);
 497	connector->edid_blob_ptr = NULL;
 
 498
 499	list_add_tail(&connector->head, &dev->mode_config.connector_list);
 500	dev->mode_config.num_connector++;
 501
 502	if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
 503		drm_connector_attach_property(connector,
 504					      dev->mode_config.edid_property,
 505					      0);
 506
 507	drm_connector_attach_property(connector,
 508				      dev->mode_config.dpms_property, 0);
 509
 510 out:
 511	mutex_unlock(&dev->mode_config.mutex);
 512
 513	return ret;
 514}
 515EXPORT_SYMBOL(drm_connector_init);
 516
 517/**
 518 * drm_connector_cleanup - cleans up an initialised connector
 519 * @connector: connector to cleanup
 520 *
 521 * LOCKING:
 522 * Takes mode config lock.
 523 *
 524 * Cleans up the connector but doesn't free the object.
 525 */
 526void drm_connector_cleanup(struct drm_connector *connector)
 527{
 528	struct drm_device *dev = connector->dev;
 529	struct drm_display_mode *mode, *t;
 530
 531	list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
 532		drm_mode_remove(connector, mode);
 533
 534	list_for_each_entry_safe(mode, t, &connector->modes, head)
 535		drm_mode_remove(connector, mode);
 536
 537	list_for_each_entry_safe(mode, t, &connector->user_modes, head)
 538		drm_mode_remove(connector, mode);
 539
 540	mutex_lock(&dev->mode_config.mutex);
 541	drm_mode_object_put(dev, &connector->base);
 542	list_del(&connector->head);
 543	dev->mode_config.num_connector--;
 544	mutex_unlock(&dev->mode_config.mutex);
 545}
 546EXPORT_SYMBOL(drm_connector_cleanup);
 547
 
 
 
 
 
 
 
 
 548void drm_connector_unplug_all(struct drm_device *dev)
 549{
 550	struct drm_connector *connector;
 551
 552	/* taking the mode config mutex ends up in a clash with sysfs */
 553	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
 554		drm_sysfs_connector_remove(connector);
 555
 556}
 557EXPORT_SYMBOL(drm_connector_unplug_all);
 558
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 559int drm_encoder_init(struct drm_device *dev,
 560		      struct drm_encoder *encoder,
 561		      const struct drm_encoder_funcs *funcs,
 562		      int encoder_type)
 563{
 564	int ret;
 565
 566	mutex_lock(&dev->mode_config.mutex);
 567
 568	ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
 569	if (ret)
 570		goto out;
 571
 572	encoder->dev = dev;
 573	encoder->encoder_type = encoder_type;
 574	encoder->funcs = funcs;
 575
 576	list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
 577	dev->mode_config.num_encoder++;
 578
 579 out:
 580	mutex_unlock(&dev->mode_config.mutex);
 581
 582	return ret;
 583}
 584EXPORT_SYMBOL(drm_encoder_init);
 585
 
 
 
 
 
 
 586void drm_encoder_cleanup(struct drm_encoder *encoder)
 587{
 588	struct drm_device *dev = encoder->dev;
 589	mutex_lock(&dev->mode_config.mutex);
 590	drm_mode_object_put(dev, &encoder->base);
 591	list_del(&encoder->head);
 592	dev->mode_config.num_encoder--;
 593	mutex_unlock(&dev->mode_config.mutex);
 594}
 595EXPORT_SYMBOL(drm_encoder_cleanup);
 596
 597int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
 598		   unsigned long possible_crtcs,
 599		   const struct drm_plane_funcs *funcs,
 600		   const uint32_t *formats, uint32_t format_count,
 601		   bool priv)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 602{
 603	int ret;
 604
 605	mutex_lock(&dev->mode_config.mutex);
 606
 607	ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
 608	if (ret)
 609		goto out;
 610
 611	plane->base.properties = &plane->properties;
 612	plane->dev = dev;
 613	plane->funcs = funcs;
 614	plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
 615				      GFP_KERNEL);
 616	if (!plane->format_types) {
 617		DRM_DEBUG_KMS("out of memory when allocating plane\n");
 618		drm_mode_object_put(dev, &plane->base);
 619		ret = -ENOMEM;
 620		goto out;
 621	}
 622
 623	memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
 624	plane->format_count = format_count;
 625	plane->possible_crtcs = possible_crtcs;
 
 626
 627	/* private planes are not exposed to userspace, but depending on
 628	 * display hardware, might be convenient to allow sharing programming
 629	 * for the scanout engine with the crtc implementation.
 630	 */
 631	if (!priv) {
 632		list_add_tail(&plane->head, &dev->mode_config.plane_list);
 633		dev->mode_config.num_plane++;
 634	} else {
 635		INIT_LIST_HEAD(&plane->head);
 636	}
 637
 638 out:
 639	mutex_unlock(&dev->mode_config.mutex);
 640
 641	return ret;
 642}
 643EXPORT_SYMBOL(drm_plane_init);
 644
 645void drm_plane_cleanup(struct drm_plane *plane)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 646{
 647	struct drm_device *dev = plane->dev;
 648
 649	mutex_lock(&dev->mode_config.mutex);
 650	kfree(plane->format_types);
 651	drm_mode_object_put(dev, &plane->base);
 652	/* if not added to a list, it must be a private plane */
 653	if (!list_empty(&plane->head)) {
 654		list_del(&plane->head);
 655		dev->mode_config.num_plane--;
 656	}
 657	mutex_unlock(&dev->mode_config.mutex);
 658}
 659EXPORT_SYMBOL(drm_plane_cleanup);
 660
 661/**
 662 * drm_mode_create - create a new display mode
 663 * @dev: DRM device
 664 *
 665 * LOCKING:
 666 * Caller must hold DRM mode_config lock.
 667 *
 668 * Create a new drm_display_mode, give it an ID, and return it.
 669 *
 670 * RETURNS:
 671 * Pointer to new mode on success, NULL on error.
 672 */
 673struct drm_display_mode *drm_mode_create(struct drm_device *dev)
 674{
 675	struct drm_display_mode *nmode;
 676
 677	nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL);
 678	if (!nmode)
 679		return NULL;
 680
 681	if (drm_mode_object_get(dev, &nmode->base, DRM_MODE_OBJECT_MODE)) {
 682		kfree(nmode);
 683		return NULL;
 684	}
 685
 686	return nmode;
 
 
 
 
 687}
 688EXPORT_SYMBOL(drm_mode_create);
 689
 690/**
 691 * drm_mode_destroy - remove a mode
 692 * @dev: DRM device
 693 * @mode: mode to remove
 694 *
 695 * LOCKING:
 696 * Caller must hold mode config lock.
 697 *
 698 * Free @mode's unique identifier, then free it.
 
 699 */
 700void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode)
 701{
 702	if (!mode)
 703		return;
 704
 705	drm_mode_object_put(dev, &mode->base);
 
 706
 707	kfree(mode);
 
 
 
 
 
 
 708}
 709EXPORT_SYMBOL(drm_mode_destroy);
 710
 711static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
 712{
 713	struct drm_property *edid;
 714	struct drm_property *dpms;
 715
 716	/*
 717	 * Standard properties (apply to all connectors)
 718	 */
 719	edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
 720				   DRM_MODE_PROP_IMMUTABLE,
 721				   "EDID", 0);
 722	dev->mode_config.edid_property = edid;
 723
 724	dpms = drm_property_create_enum(dev, 0,
 725				   "DPMS", drm_dpms_enum_list,
 726				   ARRAY_SIZE(drm_dpms_enum_list));
 727	dev->mode_config.dpms_property = dpms;
 728
 729	return 0;
 730}
 731
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 732/**
 733 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
 734 * @dev: DRM device
 735 *
 736 * Called by a driver the first time a DVI-I connector is made.
 737 */
 738int drm_mode_create_dvi_i_properties(struct drm_device *dev)
 739{
 740	struct drm_property *dvi_i_selector;
 741	struct drm_property *dvi_i_subconnector;
 742
 743	if (dev->mode_config.dvi_i_select_subconnector_property)
 744		return 0;
 745
 746	dvi_i_selector =
 747		drm_property_create_enum(dev, 0,
 748				    "select subconnector",
 749				    drm_dvi_i_select_enum_list,
 750				    ARRAY_SIZE(drm_dvi_i_select_enum_list));
 751	dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
 752
 753	dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
 754				    "subconnector",
 755				    drm_dvi_i_subconnector_enum_list,
 756				    ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
 757	dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
 758
 759	return 0;
 760}
 761EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
 762
 763/**
 764 * drm_create_tv_properties - create TV specific connector properties
 765 * @dev: DRM device
 766 * @num_modes: number of different TV formats (modes) supported
 767 * @modes: array of pointers to strings containing name of each format
 768 *
 769 * Called by a driver's TV initialization routine, this function creates
 770 * the TV specific connector properties for a given device.  Caller is
 771 * responsible for allocating a list of format names and passing them to
 772 * this routine.
 773 */
 774int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
 775				  char *modes[])
 776{
 777	struct drm_property *tv_selector;
 778	struct drm_property *tv_subconnector;
 779	int i;
 780
 781	if (dev->mode_config.tv_select_subconnector_property)
 782		return 0;
 783
 784	/*
 785	 * Basic connector properties
 786	 */
 787	tv_selector = drm_property_create_enum(dev, 0,
 788					  "select subconnector",
 789					  drm_tv_select_enum_list,
 790					  ARRAY_SIZE(drm_tv_select_enum_list));
 791	dev->mode_config.tv_select_subconnector_property = tv_selector;
 792
 793	tv_subconnector =
 794		drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
 795				    "subconnector",
 796				    drm_tv_subconnector_enum_list,
 797				    ARRAY_SIZE(drm_tv_subconnector_enum_list));
 798	dev->mode_config.tv_subconnector_property = tv_subconnector;
 799
 800	/*
 801	 * Other, TV specific properties: margins & TV modes.
 802	 */
 803	dev->mode_config.tv_left_margin_property =
 804		drm_property_create_range(dev, 0, "left margin", 0, 100);
 805
 806	dev->mode_config.tv_right_margin_property =
 807		drm_property_create_range(dev, 0, "right margin", 0, 100);
 808
 809	dev->mode_config.tv_top_margin_property =
 810		drm_property_create_range(dev, 0, "top margin", 0, 100);
 811
 812	dev->mode_config.tv_bottom_margin_property =
 813		drm_property_create_range(dev, 0, "bottom margin", 0, 100);
 814
 815	dev->mode_config.tv_mode_property =
 816		drm_property_create(dev, DRM_MODE_PROP_ENUM,
 817				    "mode", num_modes);
 818	for (i = 0; i < num_modes; i++)
 819		drm_property_add_enum(dev->mode_config.tv_mode_property, i,
 820				      i, modes[i]);
 821
 822	dev->mode_config.tv_brightness_property =
 823		drm_property_create_range(dev, 0, "brightness", 0, 100);
 824
 825	dev->mode_config.tv_contrast_property =
 826		drm_property_create_range(dev, 0, "contrast", 0, 100);
 827
 828	dev->mode_config.tv_flicker_reduction_property =
 829		drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
 830
 831	dev->mode_config.tv_overscan_property =
 832		drm_property_create_range(dev, 0, "overscan", 0, 100);
 833
 834	dev->mode_config.tv_saturation_property =
 835		drm_property_create_range(dev, 0, "saturation", 0, 100);
 836
 837	dev->mode_config.tv_hue_property =
 838		drm_property_create_range(dev, 0, "hue", 0, 100);
 839
 840	return 0;
 841}
 842EXPORT_SYMBOL(drm_mode_create_tv_properties);
 843
 844/**
 845 * drm_mode_create_scaling_mode_property - create scaling mode property
 846 * @dev: DRM device
 847 *
 848 * Called by a driver the first time it's needed, must be attached to desired
 849 * connectors.
 850 */
 851int drm_mode_create_scaling_mode_property(struct drm_device *dev)
 852{
 853	struct drm_property *scaling_mode;
 854
 855	if (dev->mode_config.scaling_mode_property)
 856		return 0;
 857
 858	scaling_mode =
 859		drm_property_create_enum(dev, 0, "scaling mode",
 860				drm_scaling_mode_enum_list,
 861				    ARRAY_SIZE(drm_scaling_mode_enum_list));
 862
 863	dev->mode_config.scaling_mode_property = scaling_mode;
 864
 865	return 0;
 866}
 867EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
 868
 869/**
 870 * drm_mode_create_dithering_property - create dithering property
 871 * @dev: DRM device
 872 *
 873 * Called by a driver the first time it's needed, must be attached to desired
 874 * connectors.
 875 */
 876int drm_mode_create_dithering_property(struct drm_device *dev)
 877{
 878	struct drm_property *dithering_mode;
 879
 880	if (dev->mode_config.dithering_mode_property)
 881		return 0;
 882
 883	dithering_mode =
 884		drm_property_create_enum(dev, 0, "dithering",
 885				drm_dithering_mode_enum_list,
 886				    ARRAY_SIZE(drm_dithering_mode_enum_list));
 887	dev->mode_config.dithering_mode_property = dithering_mode;
 888
 889	return 0;
 890}
 891EXPORT_SYMBOL(drm_mode_create_dithering_property);
 892
 893/**
 894 * drm_mode_create_dirty_property - create dirty property
 895 * @dev: DRM device
 896 *
 897 * Called by a driver the first time it's needed, must be attached to desired
 898 * connectors.
 899 */
 900int drm_mode_create_dirty_info_property(struct drm_device *dev)
 901{
 902	struct drm_property *dirty_info;
 903
 904	if (dev->mode_config.dirty_info_property)
 905		return 0;
 906
 907	dirty_info =
 908		drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
 909				    "dirty",
 910				    drm_dirty_info_enum_list,
 911				    ARRAY_SIZE(drm_dirty_info_enum_list));
 912	dev->mode_config.dirty_info_property = dirty_info;
 913
 914	return 0;
 915}
 916EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
 917
 918/**
 919 * drm_mode_config_init - initialize DRM mode_configuration structure
 920 * @dev: DRM device
 921 *
 922 * LOCKING:
 923 * None, should happen single threaded at init time.
 924 *
 925 * Initialize @dev's mode_config structure, used for tracking the graphics
 926 * configuration of @dev.
 927 */
 928void drm_mode_config_init(struct drm_device *dev)
 929{
 930	mutex_init(&dev->mode_config.mutex);
 931	mutex_init(&dev->mode_config.idr_mutex);
 932	INIT_LIST_HEAD(&dev->mode_config.fb_list);
 933	INIT_LIST_HEAD(&dev->mode_config.crtc_list);
 934	INIT_LIST_HEAD(&dev->mode_config.connector_list);
 935	INIT_LIST_HEAD(&dev->mode_config.encoder_list);
 936	INIT_LIST_HEAD(&dev->mode_config.property_list);
 937	INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
 938	INIT_LIST_HEAD(&dev->mode_config.plane_list);
 939	idr_init(&dev->mode_config.crtc_idr);
 940
 941	mutex_lock(&dev->mode_config.mutex);
 942	drm_mode_create_standard_connector_properties(dev);
 943	mutex_unlock(&dev->mode_config.mutex);
 944
 945	/* Just to be sure */
 946	dev->mode_config.num_fb = 0;
 947	dev->mode_config.num_connector = 0;
 948	dev->mode_config.num_crtc = 0;
 949	dev->mode_config.num_encoder = 0;
 950}
 951EXPORT_SYMBOL(drm_mode_config_init);
 952
 953int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
 954{
 955	uint32_t total_objects = 0;
 956
 957	total_objects += dev->mode_config.num_crtc;
 958	total_objects += dev->mode_config.num_connector;
 959	total_objects += dev->mode_config.num_encoder;
 
 960
 961	group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
 962	if (!group->id_list)
 963		return -ENOMEM;
 964
 965	group->num_crtcs = 0;
 966	group->num_connectors = 0;
 967	group->num_encoders = 0;
 
 968	return 0;
 969}
 970
 
 
 
 
 971int drm_mode_group_init_legacy_group(struct drm_device *dev,
 972				     struct drm_mode_group *group)
 973{
 974	struct drm_crtc *crtc;
 975	struct drm_encoder *encoder;
 976	struct drm_connector *connector;
 
 977	int ret;
 978
 979	if ((ret = drm_mode_group_init(dev, group)))
 980		return ret;
 981
 982	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
 983		group->id_list[group->num_crtcs++] = crtc->base.id;
 984
 985	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
 986		group->id_list[group->num_crtcs + group->num_encoders++] =
 987		encoder->base.id;
 988
 989	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
 990		group->id_list[group->num_crtcs + group->num_encoders +
 991			       group->num_connectors++] = connector->base.id;
 992
 
 
 
 
 
 993	return 0;
 994}
 995EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
 996
 997/**
 998 * drm_mode_config_cleanup - free up DRM mode_config info
 999 * @dev: DRM device
1000 *
1001 * LOCKING:
1002 * Caller must hold mode config lock.
1003 *
1004 * Free up all the connectors and CRTCs associated with this DRM device, then
1005 * free up the framebuffers and associated buffer objects.
1006 *
1007 * FIXME: cleanup any dangling user buffer objects too
1008 */
1009void drm_mode_config_cleanup(struct drm_device *dev)
1010{
1011	struct drm_connector *connector, *ot;
1012	struct drm_crtc *crtc, *ct;
1013	struct drm_encoder *encoder, *enct;
1014	struct drm_framebuffer *fb, *fbt;
1015	struct drm_property *property, *pt;
1016	struct drm_plane *plane, *plt;
1017
1018	list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
1019				 head) {
1020		encoder->funcs->destroy(encoder);
1021	}
1022
1023	list_for_each_entry_safe(connector, ot,
1024				 &dev->mode_config.connector_list, head) {
1025		connector->funcs->destroy(connector);
1026	}
1027
1028	list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
1029				 head) {
1030		drm_property_destroy(dev, property);
1031	}
1032
1033	list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
1034		fb->funcs->destroy(fb);
1035	}
1036
1037	list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
1038		crtc->funcs->destroy(crtc);
1039	}
1040
1041	list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
1042				 head) {
1043		plane->funcs->destroy(plane);
1044	}
1045
1046	idr_remove_all(&dev->mode_config.crtc_idr);
1047	idr_destroy(&dev->mode_config.crtc_idr);
1048}
1049EXPORT_SYMBOL(drm_mode_config_cleanup);
1050
1051/**
1052 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1053 * @out: drm_mode_modeinfo struct to return to the user
1054 * @in: drm_display_mode to use
1055 *
1056 * LOCKING:
1057 * None.
1058 *
1059 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1060 * the user.
1061 */
1062static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1063				      const struct drm_display_mode *in)
1064{
1065	WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1066	     in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1067	     in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1068	     in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1069	     in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1070	     "timing values too large for mode info\n");
1071
1072	out->clock = in->clock;
1073	out->hdisplay = in->hdisplay;
1074	out->hsync_start = in->hsync_start;
1075	out->hsync_end = in->hsync_end;
1076	out->htotal = in->htotal;
1077	out->hskew = in->hskew;
1078	out->vdisplay = in->vdisplay;
1079	out->vsync_start = in->vsync_start;
1080	out->vsync_end = in->vsync_end;
1081	out->vtotal = in->vtotal;
1082	out->vscan = in->vscan;
1083	out->vrefresh = in->vrefresh;
1084	out->flags = in->flags;
1085	out->type = in->type;
1086	strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1087	out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1088}
1089
1090/**
1091 * drm_crtc_convert_to_umode - convert a modeinfo into a drm_display_mode
1092 * @out: drm_display_mode to return to the user
1093 * @in: drm_mode_modeinfo to use
1094 *
1095 * LOCKING:
1096 * None.
1097 *
1098 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1099 * the caller.
1100 *
1101 * RETURNS:
1102 * Zero on success, errno on failure.
1103 */
1104static int drm_crtc_convert_umode(struct drm_display_mode *out,
1105				  const struct drm_mode_modeinfo *in)
1106{
1107	if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1108		return -ERANGE;
1109
 
 
 
1110	out->clock = in->clock;
1111	out->hdisplay = in->hdisplay;
1112	out->hsync_start = in->hsync_start;
1113	out->hsync_end = in->hsync_end;
1114	out->htotal = in->htotal;
1115	out->hskew = in->hskew;
1116	out->vdisplay = in->vdisplay;
1117	out->vsync_start = in->vsync_start;
1118	out->vsync_end = in->vsync_end;
1119	out->vtotal = in->vtotal;
1120	out->vscan = in->vscan;
1121	out->vrefresh = in->vrefresh;
1122	out->flags = in->flags;
1123	out->type = in->type;
1124	strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1125	out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1126
1127	return 0;
1128}
1129
1130/**
1131 * drm_mode_getresources - get graphics configuration
1132 * @inode: inode from the ioctl
1133 * @filp: file * from the ioctl
1134 * @cmd: cmd from ioctl
1135 * @arg: arg from ioctl
1136 *
1137 * LOCKING:
1138 * Takes mode config lock.
1139 *
1140 * Construct a set of configuration description structures and return
1141 * them to the user, including CRTC, connector and framebuffer configuration.
1142 *
1143 * Called by the user via ioctl.
1144 *
1145 * RETURNS:
1146 * Zero on success, errno on failure.
1147 */
1148int drm_mode_getresources(struct drm_device *dev, void *data,
1149			  struct drm_file *file_priv)
1150{
1151	struct drm_mode_card_res *card_res = data;
1152	struct list_head *lh;
1153	struct drm_framebuffer *fb;
1154	struct drm_connector *connector;
1155	struct drm_crtc *crtc;
1156	struct drm_encoder *encoder;
1157	int ret = 0;
1158	int connector_count = 0;
1159	int crtc_count = 0;
1160	int fb_count = 0;
1161	int encoder_count = 0;
1162	int copied = 0, i;
1163	uint32_t __user *fb_id;
1164	uint32_t __user *crtc_id;
1165	uint32_t __user *connector_id;
1166	uint32_t __user *encoder_id;
1167	struct drm_mode_group *mode_group;
1168
1169	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1170		return -EINVAL;
1171
1172	mutex_lock(&dev->mode_config.mutex);
1173
 
1174	/*
1175	 * For the non-control nodes we need to limit the list of resources
1176	 * by IDs in the group list for this node
1177	 */
1178	list_for_each(lh, &file_priv->fbs)
1179		fb_count++;
1180
1181	mode_group = &file_priv->master->minor->mode_group;
1182	if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1183
 
1184		list_for_each(lh, &dev->mode_config.crtc_list)
1185			crtc_count++;
1186
1187		list_for_each(lh, &dev->mode_config.connector_list)
1188			connector_count++;
1189
1190		list_for_each(lh, &dev->mode_config.encoder_list)
1191			encoder_count++;
1192	} else {
1193
 
1194		crtc_count = mode_group->num_crtcs;
1195		connector_count = mode_group->num_connectors;
1196		encoder_count = mode_group->num_encoders;
1197	}
1198
1199	card_res->max_height = dev->mode_config.max_height;
1200	card_res->min_height = dev->mode_config.min_height;
1201	card_res->max_width = dev->mode_config.max_width;
1202	card_res->min_width = dev->mode_config.min_width;
1203
1204	/* handle this in 4 parts */
1205	/* FBs */
1206	if (card_res->count_fbs >= fb_count) {
1207		copied = 0;
1208		fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1209		list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1210			if (put_user(fb->base.id, fb_id + copied)) {
1211				ret = -EFAULT;
1212				goto out;
1213			}
1214			copied++;
1215		}
1216	}
1217	card_res->count_fbs = fb_count;
1218
1219	/* CRTCs */
1220	if (card_res->count_crtcs >= crtc_count) {
1221		copied = 0;
1222		crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1223		if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1224			list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1225					    head) {
1226				DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1227				if (put_user(crtc->base.id, crtc_id + copied)) {
1228					ret = -EFAULT;
1229					goto out;
1230				}
1231				copied++;
1232			}
1233		} else {
1234			for (i = 0; i < mode_group->num_crtcs; i++) {
1235				if (put_user(mode_group->id_list[i],
1236					     crtc_id + copied)) {
1237					ret = -EFAULT;
1238					goto out;
1239				}
1240				copied++;
1241			}
1242		}
1243	}
1244	card_res->count_crtcs = crtc_count;
1245
1246	/* Encoders */
1247	if (card_res->count_encoders >= encoder_count) {
1248		copied = 0;
1249		encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1250		if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1251			list_for_each_entry(encoder,
1252					    &dev->mode_config.encoder_list,
1253					    head) {
1254				DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1255						drm_get_encoder_name(encoder));
1256				if (put_user(encoder->base.id, encoder_id +
1257					     copied)) {
1258					ret = -EFAULT;
1259					goto out;
1260				}
1261				copied++;
1262			}
1263		} else {
1264			for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1265				if (put_user(mode_group->id_list[i],
1266					     encoder_id + copied)) {
1267					ret = -EFAULT;
1268					goto out;
1269				}
1270				copied++;
1271			}
1272
1273		}
1274	}
1275	card_res->count_encoders = encoder_count;
1276
1277	/* Connectors */
1278	if (card_res->count_connectors >= connector_count) {
1279		copied = 0;
1280		connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1281		if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1282			list_for_each_entry(connector,
1283					    &dev->mode_config.connector_list,
1284					    head) {
1285				DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1286					connector->base.id,
1287					drm_get_connector_name(connector));
1288				if (put_user(connector->base.id,
1289					     connector_id + copied)) {
1290					ret = -EFAULT;
1291					goto out;
1292				}
1293				copied++;
1294			}
1295		} else {
1296			int start = mode_group->num_crtcs +
1297				mode_group->num_encoders;
1298			for (i = start; i < start + mode_group->num_connectors; i++) {
1299				if (put_user(mode_group->id_list[i],
1300					     connector_id + copied)) {
1301					ret = -EFAULT;
1302					goto out;
1303				}
1304				copied++;
1305			}
1306		}
1307	}
1308	card_res->count_connectors = connector_count;
1309
1310	DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
1311		  card_res->count_connectors, card_res->count_encoders);
1312
1313out:
1314	mutex_unlock(&dev->mode_config.mutex);
1315	return ret;
1316}
1317
1318/**
1319 * drm_mode_getcrtc - get CRTC configuration
1320 * @inode: inode from the ioctl
1321 * @filp: file * from the ioctl
1322 * @cmd: cmd from ioctl
1323 * @arg: arg from ioctl
1324 *
1325 * LOCKING:
1326 * Takes mode config lock.
1327 *
1328 * Construct a CRTC configuration structure to return to the user.
1329 *
1330 * Called by the user via ioctl.
1331 *
1332 * RETURNS:
1333 * Zero on success, errno on failure.
1334 */
1335int drm_mode_getcrtc(struct drm_device *dev,
1336		     void *data, struct drm_file *file_priv)
1337{
1338	struct drm_mode_crtc *crtc_resp = data;
1339	struct drm_crtc *crtc;
1340	struct drm_mode_object *obj;
1341	int ret = 0;
1342
1343	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1344		return -EINVAL;
1345
1346	mutex_lock(&dev->mode_config.mutex);
1347
1348	obj = drm_mode_object_find(dev, crtc_resp->crtc_id,
1349				   DRM_MODE_OBJECT_CRTC);
1350	if (!obj) {
1351		ret = -EINVAL;
1352		goto out;
1353	}
1354	crtc = obj_to_crtc(obj);
1355
1356	crtc_resp->x = crtc->x;
1357	crtc_resp->y = crtc->y;
1358	crtc_resp->gamma_size = crtc->gamma_size;
1359	if (crtc->fb)
1360		crtc_resp->fb_id = crtc->fb->base.id;
1361	else
1362		crtc_resp->fb_id = 0;
1363
1364	if (crtc->enabled) {
1365
1366		drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1367		crtc_resp->mode_valid = 1;
1368
1369	} else {
1370		crtc_resp->mode_valid = 0;
1371	}
1372
1373out:
1374	mutex_unlock(&dev->mode_config.mutex);
1375	return ret;
1376}
1377
 
 
 
 
 
 
 
 
 
 
 
 
 
1378/**
1379 * drm_mode_getconnector - get connector configuration
1380 * @inode: inode from the ioctl
1381 * @filp: file * from the ioctl
1382 * @cmd: cmd from ioctl
1383 * @arg: arg from ioctl
1384 *
1385 * LOCKING:
1386 * Takes mode config lock.
1387 *
1388 * Construct a connector configuration structure to return to the user.
1389 *
1390 * Called by the user via ioctl.
1391 *
1392 * RETURNS:
1393 * Zero on success, errno on failure.
1394 */
1395int drm_mode_getconnector(struct drm_device *dev, void *data,
1396			  struct drm_file *file_priv)
1397{
1398	struct drm_mode_get_connector *out_resp = data;
1399	struct drm_mode_object *obj;
1400	struct drm_connector *connector;
1401	struct drm_display_mode *mode;
1402	int mode_count = 0;
1403	int props_count = 0;
1404	int encoders_count = 0;
1405	int ret = 0;
1406	int copied = 0;
1407	int i;
1408	struct drm_mode_modeinfo u_mode;
1409	struct drm_mode_modeinfo __user *mode_ptr;
1410	uint32_t __user *prop_ptr;
1411	uint64_t __user *prop_values;
1412	uint32_t __user *encoder_ptr;
1413
1414	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1415		return -EINVAL;
1416
1417	memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1418
1419	DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
1420
1421	mutex_lock(&dev->mode_config.mutex);
1422
1423	obj = drm_mode_object_find(dev, out_resp->connector_id,
1424				   DRM_MODE_OBJECT_CONNECTOR);
1425	if (!obj) {
1426		ret = -EINVAL;
1427		goto out;
1428	}
1429	connector = obj_to_connector(obj);
1430
1431	props_count = connector->properties.count;
1432
1433	for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1434		if (connector->encoder_ids[i] != 0) {
1435			encoders_count++;
1436		}
1437	}
1438
1439	if (out_resp->count_modes == 0) {
1440		connector->funcs->fill_modes(connector,
1441					     dev->mode_config.max_width,
1442					     dev->mode_config.max_height);
1443	}
1444
1445	/* delayed so we get modes regardless of pre-fill_modes state */
1446	list_for_each_entry(mode, &connector->modes, head)
1447		mode_count++;
 
1448
1449	out_resp->connector_id = connector->base.id;
1450	out_resp->connector_type = connector->connector_type;
1451	out_resp->connector_type_id = connector->connector_type_id;
1452	out_resp->mm_width = connector->display_info.width_mm;
1453	out_resp->mm_height = connector->display_info.height_mm;
1454	out_resp->subpixel = connector->display_info.subpixel_order;
1455	out_resp->connection = connector->status;
1456	if (connector->encoder)
1457		out_resp->encoder_id = connector->encoder->base.id;
1458	else
1459		out_resp->encoder_id = 0;
1460
1461	/*
1462	 * This ioctl is called twice, once to determine how much space is
1463	 * needed, and the 2nd time to fill it.
1464	 */
1465	if ((out_resp->count_modes >= mode_count) && mode_count) {
1466		copied = 0;
1467		mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
1468		list_for_each_entry(mode, &connector->modes, head) {
 
 
 
1469			drm_crtc_convert_to_umode(&u_mode, mode);
1470			if (copy_to_user(mode_ptr + copied,
1471					 &u_mode, sizeof(u_mode))) {
1472				ret = -EFAULT;
1473				goto out;
1474			}
1475			copied++;
1476		}
1477	}
1478	out_resp->count_modes = mode_count;
1479
1480	if ((out_resp->count_props >= props_count) && props_count) {
1481		copied = 0;
1482		prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1483		prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
1484		for (i = 0; i < connector->properties.count; i++) {
1485			if (put_user(connector->properties.ids[i],
1486				     prop_ptr + copied)) {
1487				ret = -EFAULT;
1488				goto out;
1489			}
1490
1491			if (put_user(connector->properties.values[i],
1492				     prop_values + copied)) {
1493				ret = -EFAULT;
1494				goto out;
1495			}
1496			copied++;
1497		}
1498	}
1499	out_resp->count_props = props_count;
1500
1501	if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1502		copied = 0;
1503		encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
1504		for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1505			if (connector->encoder_ids[i] != 0) {
1506				if (put_user(connector->encoder_ids[i],
1507					     encoder_ptr + copied)) {
1508					ret = -EFAULT;
1509					goto out;
1510				}
1511				copied++;
1512			}
1513		}
1514	}
1515	out_resp->count_encoders = encoders_count;
1516
1517out:
1518	mutex_unlock(&dev->mode_config.mutex);
 
1519	return ret;
1520}
1521
 
 
 
 
 
 
 
 
 
 
 
 
 
1522int drm_mode_getencoder(struct drm_device *dev, void *data,
1523			struct drm_file *file_priv)
1524{
1525	struct drm_mode_get_encoder *enc_resp = data;
1526	struct drm_mode_object *obj;
1527	struct drm_encoder *encoder;
1528	int ret = 0;
1529
1530	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1531		return -EINVAL;
1532
1533	mutex_lock(&dev->mode_config.mutex);
1534	obj = drm_mode_object_find(dev, enc_resp->encoder_id,
1535				   DRM_MODE_OBJECT_ENCODER);
1536	if (!obj) {
1537		ret = -EINVAL;
1538		goto out;
1539	}
1540	encoder = obj_to_encoder(obj);
1541
1542	if (encoder->crtc)
1543		enc_resp->crtc_id = encoder->crtc->base.id;
1544	else
1545		enc_resp->crtc_id = 0;
1546	enc_resp->encoder_type = encoder->encoder_type;
1547	enc_resp->encoder_id = encoder->base.id;
1548	enc_resp->possible_crtcs = encoder->possible_crtcs;
1549	enc_resp->possible_clones = encoder->possible_clones;
1550
1551out:
1552	mutex_unlock(&dev->mode_config.mutex);
1553	return ret;
1554}
1555
1556/**
1557 * drm_mode_getplane_res - get plane info
1558 * @dev: DRM device
1559 * @data: ioctl data
1560 * @file_priv: DRM file info
1561 *
1562 * LOCKING:
1563 * Takes mode config lock.
1564 *
1565 * Return an plane count and set of IDs.
 
 
 
1566 */
1567int drm_mode_getplane_res(struct drm_device *dev, void *data,
1568			    struct drm_file *file_priv)
1569{
1570	struct drm_mode_get_plane_res *plane_resp = data;
1571	struct drm_mode_config *config;
1572	struct drm_plane *plane;
1573	uint32_t __user *plane_ptr;
1574	int copied = 0, ret = 0;
 
1575
1576	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1577		return -EINVAL;
1578
1579	mutex_lock(&dev->mode_config.mutex);
1580	config = &dev->mode_config;
1581
 
 
 
 
 
1582	/*
1583	 * This ioctl is called twice, once to determine how much space is
1584	 * needed, and the 2nd time to fill it.
1585	 */
1586	if (config->num_plane &&
1587	    (plane_resp->count_planes >= config->num_plane)) {
1588		plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
1589
1590		list_for_each_entry(plane, &config->plane_list, head) {
 
 
 
 
 
 
 
 
1591			if (put_user(plane->base.id, plane_ptr + copied)) {
1592				ret = -EFAULT;
1593				goto out;
1594			}
1595			copied++;
1596		}
1597	}
1598	plane_resp->count_planes = config->num_plane;
1599
1600out:
1601	mutex_unlock(&dev->mode_config.mutex);
1602	return ret;
1603}
1604
1605/**
1606 * drm_mode_getplane - get plane info
1607 * @dev: DRM device
1608 * @data: ioctl data
1609 * @file_priv: DRM file info
1610 *
1611 * LOCKING:
1612 * Takes mode config lock.
1613 *
1614 * Return plane info, including formats supported, gamma size, any
1615 * current fb, etc.
 
 
1616 */
1617int drm_mode_getplane(struct drm_device *dev, void *data,
1618			struct drm_file *file_priv)
1619{
1620	struct drm_mode_get_plane *plane_resp = data;
1621	struct drm_mode_object *obj;
1622	struct drm_plane *plane;
1623	uint32_t __user *format_ptr;
1624	int ret = 0;
1625
1626	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1627		return -EINVAL;
1628
1629	mutex_lock(&dev->mode_config.mutex);
1630	obj = drm_mode_object_find(dev, plane_resp->plane_id,
1631				   DRM_MODE_OBJECT_PLANE);
1632	if (!obj) {
1633		ret = -ENOENT;
1634		goto out;
1635	}
1636	plane = obj_to_plane(obj);
1637
1638	if (plane->crtc)
1639		plane_resp->crtc_id = plane->crtc->base.id;
1640	else
1641		plane_resp->crtc_id = 0;
1642
1643	if (plane->fb)
1644		plane_resp->fb_id = plane->fb->base.id;
1645	else
1646		plane_resp->fb_id = 0;
1647
1648	plane_resp->plane_id = plane->base.id;
1649	plane_resp->possible_crtcs = plane->possible_crtcs;
1650	plane_resp->gamma_size = plane->gamma_size;
1651
1652	/*
1653	 * This ioctl is called twice, once to determine how much space is
1654	 * needed, and the 2nd time to fill it.
1655	 */
1656	if (plane->format_count &&
1657	    (plane_resp->count_format_types >= plane->format_count)) {
1658		format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
1659		if (copy_to_user(format_ptr,
1660				 plane->format_types,
1661				 sizeof(uint32_t) * plane->format_count)) {
1662			ret = -EFAULT;
1663			goto out;
1664		}
1665	}
1666	plane_resp->count_format_types = plane->format_count;
1667
1668out:
1669	mutex_unlock(&dev->mode_config.mutex);
1670	return ret;
1671}
1672
1673/**
1674 * drm_mode_setplane - set up or tear down an plane
1675 * @dev: DRM device
1676 * @data: ioctl data*
1677 * @file_prive: DRM file info
1678 *
1679 * LOCKING:
1680 * Takes mode config lock.
1681 *
1682 * Set plane info, including placement, fb, scaling, and other factors.
1683 * Or pass a NULL fb to disable.
 
 
 
1684 */
1685int drm_mode_setplane(struct drm_device *dev, void *data,
1686			struct drm_file *file_priv)
1687{
1688	struct drm_mode_set_plane *plane_req = data;
1689	struct drm_mode_object *obj;
1690	struct drm_plane *plane;
1691	struct drm_crtc *crtc;
1692	struct drm_framebuffer *fb;
1693	int ret = 0;
1694	unsigned int fb_width, fb_height;
1695	int i;
1696
1697	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1698		return -EINVAL;
1699
1700	mutex_lock(&dev->mode_config.mutex);
1701
1702	/*
1703	 * First, find the plane, crtc, and fb objects.  If not available,
1704	 * we don't bother to call the driver.
1705	 */
1706	obj = drm_mode_object_find(dev, plane_req->plane_id,
1707				   DRM_MODE_OBJECT_PLANE);
1708	if (!obj) {
1709		DRM_DEBUG_KMS("Unknown plane ID %d\n",
1710			      plane_req->plane_id);
1711		ret = -ENOENT;
1712		goto out;
1713	}
1714	plane = obj_to_plane(obj);
1715
1716	/* No fb means shut it down */
1717	if (!plane_req->fb_id) {
 
 
1718		plane->funcs->disable_plane(plane);
1719		plane->crtc = NULL;
1720		plane->fb = NULL;
 
1721		goto out;
1722	}
1723
1724	obj = drm_mode_object_find(dev, plane_req->crtc_id,
1725				   DRM_MODE_OBJECT_CRTC);
1726	if (!obj) {
1727		DRM_DEBUG_KMS("Unknown crtc ID %d\n",
1728			      plane_req->crtc_id);
1729		ret = -ENOENT;
1730		goto out;
1731	}
1732	crtc = obj_to_crtc(obj);
1733
1734	obj = drm_mode_object_find(dev, plane_req->fb_id,
1735				   DRM_MODE_OBJECT_FB);
1736	if (!obj) {
1737		DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
1738			      plane_req->fb_id);
1739		ret = -ENOENT;
1740		goto out;
1741	}
1742	fb = obj_to_fb(obj);
1743
1744	/* Check whether this plane supports the fb pixel format. */
1745	for (i = 0; i < plane->format_count; i++)
1746		if (fb->pixel_format == plane->format_types[i])
1747			break;
1748	if (i == plane->format_count) {
1749		DRM_DEBUG_KMS("Invalid pixel format 0x%08x\n", fb->pixel_format);
 
1750		ret = -EINVAL;
1751		goto out;
1752	}
1753
1754	fb_width = fb->width << 16;
1755	fb_height = fb->height << 16;
1756
1757	/* Make sure source coordinates are inside the fb. */
1758	if (plane_req->src_w > fb_width ||
1759	    plane_req->src_x > fb_width - plane_req->src_w ||
1760	    plane_req->src_h > fb_height ||
1761	    plane_req->src_y > fb_height - plane_req->src_h) {
1762		DRM_DEBUG_KMS("Invalid source coordinates "
1763			      "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
1764			      plane_req->src_w >> 16,
1765			      ((plane_req->src_w & 0xffff) * 15625) >> 10,
1766			      plane_req->src_h >> 16,
1767			      ((plane_req->src_h & 0xffff) * 15625) >> 10,
1768			      plane_req->src_x >> 16,
1769			      ((plane_req->src_x & 0xffff) * 15625) >> 10,
1770			      plane_req->src_y >> 16,
1771			      ((plane_req->src_y & 0xffff) * 15625) >> 10);
1772		ret = -ENOSPC;
1773		goto out;
1774	}
1775
1776	/* Give drivers some help against integer overflows */
1777	if (plane_req->crtc_w > INT_MAX ||
1778	    plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
1779	    plane_req->crtc_h > INT_MAX ||
1780	    plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
1781		DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
1782			      plane_req->crtc_w, plane_req->crtc_h,
1783			      plane_req->crtc_x, plane_req->crtc_y);
1784		ret = -ERANGE;
1785		goto out;
1786	}
1787
 
1788	ret = plane->funcs->update_plane(plane, crtc, fb,
1789					 plane_req->crtc_x, plane_req->crtc_y,
1790					 plane_req->crtc_w, plane_req->crtc_h,
1791					 plane_req->src_x, plane_req->src_y,
1792					 plane_req->src_w, plane_req->src_h);
1793	if (!ret) {
 
1794		plane->crtc = crtc;
1795		plane->fb = fb;
 
1796	}
 
1797
1798out:
1799	mutex_unlock(&dev->mode_config.mutex);
 
 
 
1800
1801	return ret;
1802}
1803
1804/**
1805 * drm_mode_setcrtc - set CRTC configuration
1806 * @inode: inode from the ioctl
1807 * @filp: file * from the ioctl
1808 * @cmd: cmd from ioctl
1809 * @arg: arg from ioctl
1810 *
1811 * LOCKING:
1812 * Takes mode config lock.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1813 *
1814 * Build a new CRTC configuration based on user request.
1815 *
1816 * Called by the user via ioctl.
1817 *
1818 * RETURNS:
1819 * Zero on success, errno on failure.
1820 */
1821int drm_mode_setcrtc(struct drm_device *dev, void *data,
1822		     struct drm_file *file_priv)
1823{
1824	struct drm_mode_config *config = &dev->mode_config;
1825	struct drm_mode_crtc *crtc_req = data;
1826	struct drm_mode_object *obj;
1827	struct drm_crtc *crtc;
1828	struct drm_connector **connector_set = NULL, *connector;
1829	struct drm_framebuffer *fb = NULL;
1830	struct drm_display_mode *mode = NULL;
1831	struct drm_mode_set set;
1832	uint32_t __user *set_connectors_ptr;
1833	int ret;
1834	int i;
1835
1836	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1837		return -EINVAL;
1838
1839	/* For some reason crtc x/y offsets are signed internally. */
1840	if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
1841		return -ERANGE;
1842
1843	mutex_lock(&dev->mode_config.mutex);
1844	obj = drm_mode_object_find(dev, crtc_req->crtc_id,
1845				   DRM_MODE_OBJECT_CRTC);
1846	if (!obj) {
1847		DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
1848		ret = -EINVAL;
1849		goto out;
1850	}
1851	crtc = obj_to_crtc(obj);
1852	DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1853
1854	if (crtc_req->mode_valid) {
1855		/* If we have a mode we need a framebuffer. */
1856		/* If we pass -1, set the mode with the currently bound fb */
1857		if (crtc_req->fb_id == -1) {
1858			if (!crtc->fb) {
1859				DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
1860				ret = -EINVAL;
1861				goto out;
1862			}
1863			fb = crtc->fb;
 
 
1864		} else {
1865			obj = drm_mode_object_find(dev, crtc_req->fb_id,
1866						   DRM_MODE_OBJECT_FB);
1867			if (!obj) {
1868				DRM_DEBUG_KMS("Unknown FB ID%d\n",
1869						crtc_req->fb_id);
1870				ret = -EINVAL;
1871				goto out;
1872			}
1873			fb = obj_to_fb(obj);
1874		}
1875
1876		mode = drm_mode_create(dev);
1877		if (!mode) {
1878			ret = -ENOMEM;
1879			goto out;
1880		}
1881
1882		ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
1883		if (ret) {
1884			DRM_DEBUG_KMS("Invalid mode\n");
1885			goto out;
1886		}
1887
1888		drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
1889
1890		if (mode->hdisplay > fb->width ||
1891		    mode->vdisplay > fb->height ||
1892		    crtc_req->x > fb->width - mode->hdisplay ||
1893		    crtc_req->y > fb->height - mode->vdisplay) {
1894			DRM_DEBUG_KMS("Invalid CRTC viewport %ux%u+%u+%u for fb size %ux%u.\n",
1895				      mode->hdisplay, mode->vdisplay,
1896				      crtc_req->x, crtc_req->y,
1897				      fb->width, fb->height);
1898			ret = -ENOSPC;
1899			goto out;
1900		}
1901	}
1902
1903	if (crtc_req->count_connectors == 0 && mode) {
1904		DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
1905		ret = -EINVAL;
1906		goto out;
1907	}
1908
1909	if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
1910		DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
1911			  crtc_req->count_connectors);
1912		ret = -EINVAL;
1913		goto out;
1914	}
1915
1916	if (crtc_req->count_connectors > 0) {
1917		u32 out_id;
1918
1919		/* Avoid unbounded kernel memory allocation */
1920		if (crtc_req->count_connectors > config->num_connector) {
1921			ret = -EINVAL;
1922			goto out;
1923		}
1924
1925		connector_set = kmalloc(crtc_req->count_connectors *
1926					sizeof(struct drm_connector *),
1927					GFP_KERNEL);
1928		if (!connector_set) {
1929			ret = -ENOMEM;
1930			goto out;
1931		}
1932
1933		for (i = 0; i < crtc_req->count_connectors; i++) {
1934			set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
1935			if (get_user(out_id, &set_connectors_ptr[i])) {
1936				ret = -EFAULT;
1937				goto out;
1938			}
1939
1940			obj = drm_mode_object_find(dev, out_id,
1941						   DRM_MODE_OBJECT_CONNECTOR);
1942			if (!obj) {
1943				DRM_DEBUG_KMS("Connector id %d unknown\n",
1944						out_id);
1945				ret = -EINVAL;
1946				goto out;
1947			}
1948			connector = obj_to_connector(obj);
1949			DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1950					connector->base.id,
1951					drm_get_connector_name(connector));
1952
1953			connector_set[i] = connector;
1954		}
1955	}
1956
1957	set.crtc = crtc;
1958	set.x = crtc_req->x;
1959	set.y = crtc_req->y;
1960	set.mode = mode;
1961	set.connectors = connector_set;
1962	set.num_connectors = crtc_req->count_connectors;
1963	set.fb = fb;
1964	ret = crtc->funcs->set_config(&set);
1965
1966out:
 
 
 
1967	kfree(connector_set);
1968	drm_mode_destroy(dev, mode);
1969	mutex_unlock(&dev->mode_config.mutex);
1970	return ret;
1971}
1972
1973int drm_mode_cursor_ioctl(struct drm_device *dev,
1974			void *data, struct drm_file *file_priv)
 
1975{
1976	struct drm_mode_cursor *req = data;
1977	struct drm_mode_object *obj;
1978	struct drm_crtc *crtc;
1979	int ret = 0;
1980
1981	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1982		return -EINVAL;
1983
1984	if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
1985		return -EINVAL;
1986
1987	mutex_lock(&dev->mode_config.mutex);
1988	obj = drm_mode_object_find(dev, req->crtc_id, DRM_MODE_OBJECT_CRTC);
1989	if (!obj) {
1990		DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
1991		ret = -EINVAL;
1992		goto out;
1993	}
1994	crtc = obj_to_crtc(obj);
1995
 
1996	if (req->flags & DRM_MODE_CURSOR_BO) {
1997		if (!crtc->funcs->cursor_set) {
1998			ret = -ENXIO;
1999			goto out;
2000		}
2001		/* Turns off the cursor if handle is 0 */
2002		ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2003					      req->width, req->height);
 
 
 
 
2004	}
2005
2006	if (req->flags & DRM_MODE_CURSOR_MOVE) {
2007		if (crtc->funcs->cursor_move) {
2008			ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2009		} else {
2010			ret = -EFAULT;
2011			goto out;
2012		}
2013	}
2014out:
2015	mutex_unlock(&dev->mode_config.mutex);
 
2016	return ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2017}
2018
2019/* Original addfb only supported RGB formats, so figure out which one */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2020uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2021{
2022	uint32_t fmt;
2023
2024	switch (bpp) {
2025	case 8:
2026		fmt = DRM_FORMAT_RGB332;
2027		break;
2028	case 16:
2029		if (depth == 15)
2030			fmt = DRM_FORMAT_XRGB1555;
2031		else
2032			fmt = DRM_FORMAT_RGB565;
2033		break;
2034	case 24:
2035		fmt = DRM_FORMAT_RGB888;
2036		break;
2037	case 32:
2038		if (depth == 24)
2039			fmt = DRM_FORMAT_XRGB8888;
2040		else if (depth == 30)
2041			fmt = DRM_FORMAT_XRGB2101010;
2042		else
2043			fmt = DRM_FORMAT_ARGB8888;
2044		break;
2045	default:
2046		DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2047		fmt = DRM_FORMAT_XRGB8888;
2048		break;
2049	}
2050
2051	return fmt;
2052}
2053EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2054
2055/**
2056 * drm_mode_addfb - add an FB to the graphics configuration
2057 * @inode: inode from the ioctl
2058 * @filp: file * from the ioctl
2059 * @cmd: cmd from ioctl
2060 * @arg: arg from ioctl
2061 *
2062 * LOCKING:
2063 * Takes mode config lock.
2064 *
2065 * Add a new FB to the specified CRTC, given a user request.
 
2066 *
2067 * Called by the user via ioctl.
2068 *
2069 * RETURNS:
2070 * Zero on success, errno on failure.
2071 */
2072int drm_mode_addfb(struct drm_device *dev,
2073		   void *data, struct drm_file *file_priv)
2074{
2075	struct drm_mode_fb_cmd *or = data;
2076	struct drm_mode_fb_cmd2 r = {};
2077	struct drm_mode_config *config = &dev->mode_config;
2078	struct drm_framebuffer *fb;
2079	int ret = 0;
2080
2081	/* Use new struct with format internally */
2082	r.fb_id = or->fb_id;
2083	r.width = or->width;
2084	r.height = or->height;
2085	r.pitches[0] = or->pitch;
2086	r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2087	r.handles[0] = or->handle;
2088
2089	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2090		return -EINVAL;
2091
2092	if ((config->min_width > r.width) || (r.width > config->max_width))
2093		return -EINVAL;
2094
2095	if ((config->min_height > r.height) || (r.height > config->max_height))
2096		return -EINVAL;
2097
2098	mutex_lock(&dev->mode_config.mutex);
2099
2100	/* TODO check buffer is sufficiently large */
2101	/* TODO setup destructor callback */
2102
2103	fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2104	if (IS_ERR(fb)) {
2105		DRM_DEBUG_KMS("could not create framebuffer\n");
2106		ret = PTR_ERR(fb);
2107		goto out;
2108	}
2109
 
2110	or->fb_id = fb->base.id;
2111	list_add(&fb->filp_head, &file_priv->fbs);
2112	DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
 
2113
2114out:
2115	mutex_unlock(&dev->mode_config.mutex);
2116	return ret;
2117}
2118
2119static int format_check(const struct drm_mode_fb_cmd2 *r)
2120{
2121	uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2122
2123	switch (format) {
2124	case DRM_FORMAT_C8:
2125	case DRM_FORMAT_RGB332:
2126	case DRM_FORMAT_BGR233:
2127	case DRM_FORMAT_XRGB4444:
2128	case DRM_FORMAT_XBGR4444:
2129	case DRM_FORMAT_RGBX4444:
2130	case DRM_FORMAT_BGRX4444:
2131	case DRM_FORMAT_ARGB4444:
2132	case DRM_FORMAT_ABGR4444:
2133	case DRM_FORMAT_RGBA4444:
2134	case DRM_FORMAT_BGRA4444:
2135	case DRM_FORMAT_XRGB1555:
2136	case DRM_FORMAT_XBGR1555:
2137	case DRM_FORMAT_RGBX5551:
2138	case DRM_FORMAT_BGRX5551:
2139	case DRM_FORMAT_ARGB1555:
2140	case DRM_FORMAT_ABGR1555:
2141	case DRM_FORMAT_RGBA5551:
2142	case DRM_FORMAT_BGRA5551:
2143	case DRM_FORMAT_RGB565:
2144	case DRM_FORMAT_BGR565:
2145	case DRM_FORMAT_RGB888:
2146	case DRM_FORMAT_BGR888:
2147	case DRM_FORMAT_XRGB8888:
2148	case DRM_FORMAT_XBGR8888:
2149	case DRM_FORMAT_RGBX8888:
2150	case DRM_FORMAT_BGRX8888:
2151	case DRM_FORMAT_ARGB8888:
2152	case DRM_FORMAT_ABGR8888:
2153	case DRM_FORMAT_RGBA8888:
2154	case DRM_FORMAT_BGRA8888:
2155	case DRM_FORMAT_XRGB2101010:
2156	case DRM_FORMAT_XBGR2101010:
2157	case DRM_FORMAT_RGBX1010102:
2158	case DRM_FORMAT_BGRX1010102:
2159	case DRM_FORMAT_ARGB2101010:
2160	case DRM_FORMAT_ABGR2101010:
2161	case DRM_FORMAT_RGBA1010102:
2162	case DRM_FORMAT_BGRA1010102:
2163	case DRM_FORMAT_YUYV:
2164	case DRM_FORMAT_YVYU:
2165	case DRM_FORMAT_UYVY:
2166	case DRM_FORMAT_VYUY:
2167	case DRM_FORMAT_AYUV:
2168	case DRM_FORMAT_NV12:
2169	case DRM_FORMAT_NV21:
2170	case DRM_FORMAT_NV16:
2171	case DRM_FORMAT_NV61:
 
 
2172	case DRM_FORMAT_YUV410:
2173	case DRM_FORMAT_YVU410:
2174	case DRM_FORMAT_YUV411:
2175	case DRM_FORMAT_YVU411:
2176	case DRM_FORMAT_YUV420:
2177	case DRM_FORMAT_YVU420:
2178	case DRM_FORMAT_YUV422:
2179	case DRM_FORMAT_YVU422:
2180	case DRM_FORMAT_YUV444:
2181	case DRM_FORMAT_YVU444:
2182		return 0;
2183	default:
 
 
2184		return -EINVAL;
2185	}
2186}
2187
2188static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
2189{
2190	int ret, hsub, vsub, num_planes, i;
2191
2192	ret = format_check(r);
2193	if (ret) {
2194		DRM_DEBUG_KMS("bad framebuffer format 0x%08x\n", r->pixel_format);
 
2195		return ret;
2196	}
2197
2198	hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2199	vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2200	num_planes = drm_format_num_planes(r->pixel_format);
2201
2202	if (r->width == 0 || r->width % hsub) {
2203		DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
2204		return -EINVAL;
2205	}
2206
2207	if (r->height == 0 || r->height % vsub) {
2208		DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
2209		return -EINVAL;
2210	}
2211
2212	for (i = 0; i < num_planes; i++) {
2213		unsigned int width = r->width / (i != 0 ? hsub : 1);
 
 
2214
2215		if (!r->handles[i]) {
2216			DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
2217			return -EINVAL;
2218		}
2219
2220		if (r->pitches[i] < drm_format_plane_cpp(r->pixel_format, i) * width) {
 
 
 
 
 
 
2221			DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
2222			return -EINVAL;
2223		}
2224	}
2225
2226	return 0;
2227}
2228
2229/**
2230 * drm_mode_addfb2 - add an FB to the graphics configuration
2231 * @inode: inode from the ioctl
2232 * @filp: file * from the ioctl
2233 * @cmd: cmd from ioctl
2234 * @arg: arg from ioctl
2235 *
2236 * LOCKING:
2237 * Takes mode config lock.
2238 *
2239 * Add a new FB to the specified CRTC, given a user request with format.
2240 *
2241 * Called by the user via ioctl.
2242 *
2243 * RETURNS:
2244 * Zero on success, errno on failure.
2245 */
2246int drm_mode_addfb2(struct drm_device *dev,
2247		    void *data, struct drm_file *file_priv)
2248{
2249	struct drm_mode_fb_cmd2 *r = data;
2250	struct drm_mode_config *config = &dev->mode_config;
2251	struct drm_framebuffer *fb;
2252	int ret;
2253
2254	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2255		return -EINVAL;
2256
 
 
 
 
 
2257	if ((config->min_width > r->width) || (r->width > config->max_width)) {
2258		DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
2259			  r->width, config->min_width, config->max_width);
2260		return -EINVAL;
2261	}
2262	if ((config->min_height > r->height) || (r->height > config->max_height)) {
2263		DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
2264			  r->height, config->min_height, config->max_height);
2265		return -EINVAL;
2266	}
2267
2268	ret = framebuffer_check(r);
2269	if (ret)
2270		return ret;
2271
2272	mutex_lock(&dev->mode_config.mutex);
2273
2274	fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
2275	if (IS_ERR(fb)) {
2276		DRM_DEBUG_KMS("could not create framebuffer\n");
2277		ret = PTR_ERR(fb);
2278		goto out;
2279	}
2280
 
2281	r->fb_id = fb->base.id;
2282	list_add(&fb->filp_head, &file_priv->fbs);
2283	DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
 
 
2284
2285out:
2286	mutex_unlock(&dev->mode_config.mutex);
2287	return ret;
2288}
2289
2290/**
2291 * drm_mode_rmfb - remove an FB from the configuration
2292 * @inode: inode from the ioctl
2293 * @filp: file * from the ioctl
2294 * @cmd: cmd from ioctl
2295 * @arg: arg from ioctl
2296 *
2297 * LOCKING:
2298 * Takes mode config lock.
2299 *
2300 * Remove the FB specified by the user.
2301 *
2302 * Called by the user via ioctl.
2303 *
2304 * RETURNS:
2305 * Zero on success, errno on failure.
2306 */
2307int drm_mode_rmfb(struct drm_device *dev,
2308		   void *data, struct drm_file *file_priv)
2309{
2310	struct drm_mode_object *obj;
2311	struct drm_framebuffer *fb = NULL;
2312	struct drm_framebuffer *fbl = NULL;
2313	uint32_t *id = data;
2314	int ret = 0;
2315	int found = 0;
2316
2317	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2318		return -EINVAL;
2319
2320	mutex_lock(&dev->mode_config.mutex);
2321	obj = drm_mode_object_find(dev, *id, DRM_MODE_OBJECT_FB);
2322	/* TODO check that we really get a framebuffer back. */
2323	if (!obj) {
2324		ret = -EINVAL;
2325		goto out;
2326	}
2327	fb = obj_to_fb(obj);
2328
2329	list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2330		if (fb == fbl)
2331			found = 1;
 
 
2332
2333	if (!found) {
2334		ret = -EINVAL;
2335		goto out;
2336	}
2337
2338	/* TODO release all crtc connected to the framebuffer */
2339	/* TODO unhock the destructor from the buffer object */
 
2340
2341	list_del(&fb->filp_head);
2342	fb->funcs->destroy(fb);
2343
2344out:
2345	mutex_unlock(&dev->mode_config.mutex);
2346	return ret;
 
 
 
 
2347}
2348
2349/**
2350 * drm_mode_getfb - get FB info
2351 * @inode: inode from the ioctl
2352 * @filp: file * from the ioctl
2353 * @cmd: cmd from ioctl
2354 * @arg: arg from ioctl
2355 *
2356 * LOCKING:
2357 * Takes mode config lock.
2358 *
2359 * Lookup the FB given its ID and return info about it.
2360 *
2361 * Called by the user via ioctl.
2362 *
2363 * RETURNS:
2364 * Zero on success, errno on failure.
2365 */
2366int drm_mode_getfb(struct drm_device *dev,
2367		   void *data, struct drm_file *file_priv)
2368{
2369	struct drm_mode_fb_cmd *r = data;
2370	struct drm_mode_object *obj;
2371	struct drm_framebuffer *fb;
2372	int ret = 0;
2373
2374	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2375		return -EINVAL;
2376
2377	mutex_lock(&dev->mode_config.mutex);
2378	obj = drm_mode_object_find(dev, r->fb_id, DRM_MODE_OBJECT_FB);
2379	if (!obj) {
2380		ret = -EINVAL;
2381		goto out;
2382	}
2383	fb = obj_to_fb(obj);
2384
2385	r->height = fb->height;
2386	r->width = fb->width;
2387	r->depth = fb->depth;
2388	r->bpp = fb->bits_per_pixel;
2389	r->pitch = fb->pitches[0];
2390	fb->funcs->create_handle(fb, file_priv, &r->handle);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2391
2392out:
2393	mutex_unlock(&dev->mode_config.mutex);
2394	return ret;
2395}
2396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2397int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
2398			   void *data, struct drm_file *file_priv)
2399{
2400	struct drm_clip_rect __user *clips_ptr;
2401	struct drm_clip_rect *clips = NULL;
2402	struct drm_mode_fb_dirty_cmd *r = data;
2403	struct drm_mode_object *obj;
2404	struct drm_framebuffer *fb;
2405	unsigned flags;
2406	int num_clips;
2407	int ret;
2408
2409	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2410		return -EINVAL;
2411
2412	mutex_lock(&dev->mode_config.mutex);
2413	obj = drm_mode_object_find(dev, r->fb_id, DRM_MODE_OBJECT_FB);
2414	if (!obj) {
2415		ret = -EINVAL;
2416		goto out_err1;
2417	}
2418	fb = obj_to_fb(obj);
2419
2420	num_clips = r->num_clips;
2421	clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
2422
2423	if (!num_clips != !clips_ptr) {
2424		ret = -EINVAL;
2425		goto out_err1;
2426	}
2427
2428	flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
2429
2430	/* If userspace annotates copy, clips must come in pairs */
2431	if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
2432		ret = -EINVAL;
2433		goto out_err1;
2434	}
2435
2436	if (num_clips && clips_ptr) {
2437		if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
2438			ret = -EINVAL;
2439			goto out_err1;
2440		}
2441		clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
2442		if (!clips) {
2443			ret = -ENOMEM;
2444			goto out_err1;
2445		}
2446
2447		ret = copy_from_user(clips, clips_ptr,
2448				     num_clips * sizeof(*clips));
2449		if (ret) {
2450			ret = -EFAULT;
2451			goto out_err2;
2452		}
2453	}
2454
2455	if (fb->funcs->dirty) {
2456		ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
2457				       clips, num_clips);
2458	} else {
2459		ret = -ENOSYS;
2460		goto out_err2;
2461	}
2462
2463out_err2:
2464	kfree(clips);
2465out_err1:
2466	mutex_unlock(&dev->mode_config.mutex);
 
2467	return ret;
2468}
2469
2470
2471/**
2472 * drm_fb_release - remove and free the FBs on this file
2473 * @filp: file * from the ioctl
2474 *
2475 * LOCKING:
2476 * Takes mode config lock.
2477 *
2478 * Destroy all the FBs associated with @filp.
2479 *
2480 * Called by the user via ioctl.
2481 *
2482 * RETURNS:
2483 * Zero on success, errno on failure.
2484 */
2485void drm_fb_release(struct drm_file *priv)
2486{
2487	struct drm_device *dev = priv->minor->dev;
2488	struct drm_framebuffer *fb, *tfb;
2489
2490	mutex_lock(&dev->mode_config.mutex);
2491	list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
2492		list_del(&fb->filp_head);
2493		fb->funcs->destroy(fb);
2494	}
2495	mutex_unlock(&dev->mode_config.mutex);
2496}
2497
2498/**
2499 * drm_mode_attachmode - add a mode to the user mode list
2500 * @dev: DRM device
2501 * @connector: connector to add the mode to
2502 * @mode: mode to add
2503 *
2504 * Add @mode to @connector's user mode list.
2505 */
2506static void drm_mode_attachmode(struct drm_device *dev,
2507				struct drm_connector *connector,
2508				struct drm_display_mode *mode)
2509{
2510	list_add_tail(&mode->head, &connector->user_modes);
2511}
2512
2513int drm_mode_attachmode_crtc(struct drm_device *dev, struct drm_crtc *crtc,
2514			     const struct drm_display_mode *mode)
2515{
2516	struct drm_connector *connector;
2517	int ret = 0;
2518	struct drm_display_mode *dup_mode, *next;
2519	LIST_HEAD(list);
2520
2521	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2522		if (!connector->encoder)
2523			continue;
2524		if (connector->encoder->crtc == crtc) {
2525			dup_mode = drm_mode_duplicate(dev, mode);
2526			if (!dup_mode) {
2527				ret = -ENOMEM;
2528				goto out;
2529			}
2530			list_add_tail(&dup_mode->head, &list);
2531		}
2532	}
2533
2534	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2535		if (!connector->encoder)
2536			continue;
2537		if (connector->encoder->crtc == crtc)
2538			list_move_tail(list.next, &connector->user_modes);
2539	}
2540
2541	WARN_ON(!list_empty(&list));
2542
2543 out:
2544	list_for_each_entry_safe(dup_mode, next, &list, head)
2545		drm_mode_destroy(dev, dup_mode);
2546
2547	return ret;
2548}
2549EXPORT_SYMBOL(drm_mode_attachmode_crtc);
2550
2551static int drm_mode_detachmode(struct drm_device *dev,
2552			       struct drm_connector *connector,
2553			       struct drm_display_mode *mode)
2554{
2555	int found = 0;
2556	int ret = 0;
2557	struct drm_display_mode *match_mode, *t;
2558
2559	list_for_each_entry_safe(match_mode, t, &connector->user_modes, head) {
2560		if (drm_mode_equal(match_mode, mode)) {
2561			list_del(&match_mode->head);
2562			drm_mode_destroy(dev, match_mode);
2563			found = 1;
2564			break;
2565		}
2566	}
2567
2568	if (!found)
2569		ret = -EINVAL;
2570
2571	return ret;
2572}
2573
2574int drm_mode_detachmode_crtc(struct drm_device *dev, struct drm_display_mode *mode)
2575{
2576	struct drm_connector *connector;
2577
2578	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2579		drm_mode_detachmode(dev, connector, mode);
2580	}
2581	return 0;
2582}
2583EXPORT_SYMBOL(drm_mode_detachmode_crtc);
2584
2585/**
2586 * drm_fb_attachmode - Attach a user mode to an connector
2587 * @inode: inode from the ioctl
2588 * @filp: file * from the ioctl
2589 * @cmd: cmd from ioctl
2590 * @arg: arg from ioctl
2591 *
2592 * This attaches a user specified mode to an connector.
2593 * Called by the user via ioctl.
2594 *
2595 * RETURNS:
2596 * Zero on success, errno on failure.
2597 */
2598int drm_mode_attachmode_ioctl(struct drm_device *dev,
2599			      void *data, struct drm_file *file_priv)
2600{
2601	struct drm_mode_mode_cmd *mode_cmd = data;
2602	struct drm_connector *connector;
2603	struct drm_display_mode *mode;
2604	struct drm_mode_object *obj;
2605	struct drm_mode_modeinfo *umode = &mode_cmd->mode;
2606	int ret;
2607
2608	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2609		return -EINVAL;
2610
2611	mutex_lock(&dev->mode_config.mutex);
 
 
 
2612
2613	obj = drm_mode_object_find(dev, mode_cmd->connector_id, DRM_MODE_OBJECT_CONNECTOR);
2614	if (!obj) {
2615		ret = -EINVAL;
2616		goto out;
2617	}
2618	connector = obj_to_connector(obj);
2619
2620	mode = drm_mode_create(dev);
2621	if (!mode) {
2622		ret = -ENOMEM;
2623		goto out;
2624	}
2625
2626	ret = drm_crtc_convert_umode(mode, umode);
2627	if (ret) {
2628		DRM_DEBUG_KMS("Invalid mode\n");
2629		drm_mode_destroy(dev, mode);
2630		goto out;
2631	}
2632
2633	drm_mode_attachmode(dev, connector, mode);
2634out:
2635	mutex_unlock(&dev->mode_config.mutex);
2636	return ret;
2637}
2638
2639
2640/**
2641 * drm_fb_detachmode - Detach a user specified mode from an connector
2642 * @inode: inode from the ioctl
2643 * @filp: file * from the ioctl
2644 * @cmd: cmd from ioctl
2645 * @arg: arg from ioctl
 
 
 
 
2646 *
2647 * Called by the user via ioctl.
2648 *
2649 * RETURNS:
2650 * Zero on success, errno on failure.
2651 */
2652int drm_mode_detachmode_ioctl(struct drm_device *dev,
2653			      void *data, struct drm_file *file_priv)
2654{
2655	struct drm_mode_object *obj;
2656	struct drm_mode_mode_cmd *mode_cmd = data;
2657	struct drm_connector *connector;
2658	struct drm_display_mode mode;
2659	struct drm_mode_modeinfo *umode = &mode_cmd->mode;
2660	int ret;
2661
2662	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2663		return -EINVAL;
2664
2665	mutex_lock(&dev->mode_config.mutex);
2666
2667	obj = drm_mode_object_find(dev, mode_cmd->connector_id, DRM_MODE_OBJECT_CONNECTOR);
2668	if (!obj) {
2669		ret = -EINVAL;
2670		goto out;
2671	}
2672	connector = obj_to_connector(obj);
2673
2674	ret = drm_crtc_convert_umode(&mode, umode);
2675	if (ret) {
2676		DRM_DEBUG_KMS("Invalid mode\n");
2677		goto out;
2678	}
2679
2680	ret = drm_mode_detachmode(dev, connector, &mode);
2681out:
2682	mutex_unlock(&dev->mode_config.mutex);
2683	return ret;
2684}
2685
2686struct drm_property *drm_property_create(struct drm_device *dev, int flags,
2687					 const char *name, int num_values)
2688{
2689	struct drm_property *property = NULL;
2690	int ret;
2691
2692	property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
2693	if (!property)
2694		return NULL;
2695
2696	if (num_values) {
2697		property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
2698		if (!property->values)
2699			goto fail;
2700	}
2701
2702	ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
2703	if (ret)
2704		goto fail;
2705
2706	property->flags = flags;
2707	property->num_values = num_values;
2708	INIT_LIST_HEAD(&property->enum_blob_list);
2709
2710	if (name) {
2711		strncpy(property->name, name, DRM_PROP_NAME_LEN);
2712		property->name[DRM_PROP_NAME_LEN-1] = '\0';
2713	}
2714
2715	list_add_tail(&property->head, &dev->mode_config.property_list);
2716	return property;
2717fail:
2718	kfree(property->values);
2719	kfree(property);
2720	return NULL;
2721}
2722EXPORT_SYMBOL(drm_property_create);
2723
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2724struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
2725					 const char *name,
2726					 const struct drm_prop_enum_list *props,
2727					 int num_values)
2728{
2729	struct drm_property *property;
2730	int i, ret;
2731
2732	flags |= DRM_MODE_PROP_ENUM;
2733
2734	property = drm_property_create(dev, flags, name, num_values);
2735	if (!property)
2736		return NULL;
2737
2738	for (i = 0; i < num_values; i++) {
2739		ret = drm_property_add_enum(property, i,
2740				      props[i].type,
2741				      props[i].name);
2742		if (ret) {
2743			drm_property_destroy(dev, property);
2744			return NULL;
2745		}
2746	}
2747
2748	return property;
2749}
2750EXPORT_SYMBOL(drm_property_create_enum);
2751
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2752struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
2753					 int flags, const char *name,
2754					 const struct drm_prop_enum_list *props,
2755					 int num_values)
2756{
2757	struct drm_property *property;
2758	int i, ret;
2759
2760	flags |= DRM_MODE_PROP_BITMASK;
2761
2762	property = drm_property_create(dev, flags, name, num_values);
2763	if (!property)
2764		return NULL;
2765
2766	for (i = 0; i < num_values; i++) {
2767		ret = drm_property_add_enum(property, i,
2768				      props[i].type,
2769				      props[i].name);
2770		if (ret) {
2771			drm_property_destroy(dev, property);
2772			return NULL;
2773		}
2774	}
2775
2776	return property;
2777}
2778EXPORT_SYMBOL(drm_property_create_bitmask);
2779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2780struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
2781					 const char *name,
2782					 uint64_t min, uint64_t max)
2783{
2784	struct drm_property *property;
2785
2786	flags |= DRM_MODE_PROP_RANGE;
2787
2788	property = drm_property_create(dev, flags, name, 2);
2789	if (!property)
2790		return NULL;
2791
2792	property->values[0] = min;
2793	property->values[1] = max;
2794
2795	return property;
2796}
2797EXPORT_SYMBOL(drm_property_create_range);
2798
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2799int drm_property_add_enum(struct drm_property *property, int index,
2800			  uint64_t value, const char *name)
2801{
2802	struct drm_property_enum *prop_enum;
2803
2804	if (!(property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)))
2805		return -EINVAL;
2806
2807	/*
2808	 * Bitmask enum properties have the additional constraint of values
2809	 * from 0 to 63
2810	 */
2811	if ((property->flags & DRM_MODE_PROP_BITMASK) && (value > 63))
2812		return -EINVAL;
2813
2814	if (!list_empty(&property->enum_blob_list)) {
2815		list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2816			if (prop_enum->value == value) {
2817				strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2818				prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2819				return 0;
2820			}
2821		}
2822	}
2823
2824	prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
2825	if (!prop_enum)
2826		return -ENOMEM;
2827
2828	strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2829	prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2830	prop_enum->value = value;
2831
2832	property->values[index] = value;
2833	list_add_tail(&prop_enum->head, &property->enum_blob_list);
2834	return 0;
2835}
2836EXPORT_SYMBOL(drm_property_add_enum);
2837
 
 
 
 
 
 
 
 
2838void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
2839{
2840	struct drm_property_enum *prop_enum, *pt;
2841
2842	list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
2843		list_del(&prop_enum->head);
2844		kfree(prop_enum);
2845	}
2846
2847	if (property->num_values)
2848		kfree(property->values);
2849	drm_mode_object_put(dev, &property->base);
2850	list_del(&property->head);
2851	kfree(property);
2852}
2853EXPORT_SYMBOL(drm_property_destroy);
2854
2855void drm_connector_attach_property(struct drm_connector *connector,
2856			       struct drm_property *property, uint64_t init_val)
2857{
2858	drm_object_attach_property(&connector->base, property, init_val);
2859}
2860EXPORT_SYMBOL(drm_connector_attach_property);
2861
2862int drm_connector_property_set_value(struct drm_connector *connector,
2863				  struct drm_property *property, uint64_t value)
2864{
2865	return drm_object_property_set_value(&connector->base, property, value);
2866}
2867EXPORT_SYMBOL(drm_connector_property_set_value);
2868
2869int drm_connector_property_get_value(struct drm_connector *connector,
2870				  struct drm_property *property, uint64_t *val)
2871{
2872	return drm_object_property_get_value(&connector->base, property, val);
2873}
2874EXPORT_SYMBOL(drm_connector_property_get_value);
2875
2876void drm_object_attach_property(struct drm_mode_object *obj,
2877				struct drm_property *property,
2878				uint64_t init_val)
2879{
2880	int count = obj->properties->count;
2881
2882	if (count == DRM_OBJECT_MAX_PROPERTY) {
2883		WARN(1, "Failed to attach object property (type: 0x%x). Please "
2884			"increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
2885			"you see this message on the same object type.\n",
2886			obj->type);
2887		return;
2888	}
2889
2890	obj->properties->ids[count] = property->base.id;
2891	obj->properties->values[count] = init_val;
2892	obj->properties->count++;
2893}
2894EXPORT_SYMBOL(drm_object_attach_property);
2895
 
 
 
 
 
 
 
 
 
 
 
 
 
2896int drm_object_property_set_value(struct drm_mode_object *obj,
2897				  struct drm_property *property, uint64_t val)
2898{
2899	int i;
2900
2901	for (i = 0; i < obj->properties->count; i++) {
2902		if (obj->properties->ids[i] == property->base.id) {
2903			obj->properties->values[i] = val;
2904			return 0;
2905		}
2906	}
2907
2908	return -EINVAL;
2909}
2910EXPORT_SYMBOL(drm_object_property_set_value);
2911
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2912int drm_object_property_get_value(struct drm_mode_object *obj,
2913				  struct drm_property *property, uint64_t *val)
2914{
2915	int i;
2916
2917	for (i = 0; i < obj->properties->count; i++) {
2918		if (obj->properties->ids[i] == property->base.id) {
2919			*val = obj->properties->values[i];
2920			return 0;
2921		}
2922	}
2923
2924	return -EINVAL;
2925}
2926EXPORT_SYMBOL(drm_object_property_get_value);
2927
 
 
 
 
 
 
 
 
 
 
 
 
 
2928int drm_mode_getproperty_ioctl(struct drm_device *dev,
2929			       void *data, struct drm_file *file_priv)
2930{
2931	struct drm_mode_object *obj;
2932	struct drm_mode_get_property *out_resp = data;
2933	struct drm_property *property;
2934	int enum_count = 0;
2935	int blob_count = 0;
2936	int value_count = 0;
2937	int ret = 0, i;
2938	int copied;
2939	struct drm_property_enum *prop_enum;
2940	struct drm_mode_property_enum __user *enum_ptr;
2941	struct drm_property_blob *prop_blob;
2942	uint32_t __user *blob_id_ptr;
2943	uint64_t __user *values_ptr;
2944	uint32_t __user *blob_length_ptr;
2945
2946	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2947		return -EINVAL;
2948
2949	mutex_lock(&dev->mode_config.mutex);
2950	obj = drm_mode_object_find(dev, out_resp->prop_id, DRM_MODE_OBJECT_PROPERTY);
2951	if (!obj) {
2952		ret = -EINVAL;
2953		goto done;
2954	}
2955	property = obj_to_property(obj);
2956
2957	if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
2958		list_for_each_entry(prop_enum, &property->enum_blob_list, head)
2959			enum_count++;
2960	} else if (property->flags & DRM_MODE_PROP_BLOB) {
2961		list_for_each_entry(prop_blob, &property->enum_blob_list, head)
2962			blob_count++;
2963	}
2964
2965	value_count = property->num_values;
2966
2967	strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
2968	out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
2969	out_resp->flags = property->flags;
2970
2971	if ((out_resp->count_values >= value_count) && value_count) {
2972		values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
2973		for (i = 0; i < value_count; i++) {
2974			if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
2975				ret = -EFAULT;
2976				goto done;
2977			}
2978		}
2979	}
2980	out_resp->count_values = value_count;
2981
2982	if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
2983		if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
2984			copied = 0;
2985			enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
2986			list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2987
2988				if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
2989					ret = -EFAULT;
2990					goto done;
2991				}
2992
2993				if (copy_to_user(&enum_ptr[copied].name,
2994						 &prop_enum->name, DRM_PROP_NAME_LEN)) {
2995					ret = -EFAULT;
2996					goto done;
2997				}
2998				copied++;
2999			}
3000		}
3001		out_resp->count_enum_blobs = enum_count;
3002	}
3003
3004	if (property->flags & DRM_MODE_PROP_BLOB) {
3005		if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3006			copied = 0;
3007			blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3008			blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
3009
3010			list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3011				if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3012					ret = -EFAULT;
3013					goto done;
3014				}
3015
3016				if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3017					ret = -EFAULT;
3018					goto done;
3019				}
3020
3021				copied++;
3022			}
3023		}
3024		out_resp->count_enum_blobs = blob_count;
3025	}
3026done:
3027	mutex_unlock(&dev->mode_config.mutex);
3028	return ret;
3029}
3030
3031static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3032							  void *data)
3033{
3034	struct drm_property_blob *blob;
3035	int ret;
3036
3037	if (!length || !data)
3038		return NULL;
3039
3040	blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3041	if (!blob)
3042		return NULL;
3043
3044	ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3045	if (ret) {
3046		kfree(blob);
3047		return NULL;
3048	}
3049
3050	blob->length = length;
3051
3052	memcpy(blob->data, data, length);
3053
3054	list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3055	return blob;
3056}
3057
3058static void drm_property_destroy_blob(struct drm_device *dev,
3059			       struct drm_property_blob *blob)
3060{
3061	drm_mode_object_put(dev, &blob->base);
3062	list_del(&blob->head);
3063	kfree(blob);
3064}
3065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3066int drm_mode_getblob_ioctl(struct drm_device *dev,
3067			   void *data, struct drm_file *file_priv)
3068{
3069	struct drm_mode_object *obj;
3070	struct drm_mode_get_blob *out_resp = data;
3071	struct drm_property_blob *blob;
3072	int ret = 0;
3073	void __user *blob_ptr;
3074
3075	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3076		return -EINVAL;
3077
3078	mutex_lock(&dev->mode_config.mutex);
3079	obj = drm_mode_object_find(dev, out_resp->blob_id, DRM_MODE_OBJECT_BLOB);
3080	if (!obj) {
3081		ret = -EINVAL;
3082		goto done;
3083	}
3084	blob = obj_to_blob(obj);
3085
3086	if (out_resp->length == blob->length) {
3087		blob_ptr = (void __user *)(unsigned long)out_resp->data;
3088		if (copy_to_user(blob_ptr, blob->data, blob->length)){
3089			ret = -EFAULT;
3090			goto done;
3091		}
3092	}
3093	out_resp->length = blob->length;
3094
3095done:
3096	mutex_unlock(&dev->mode_config.mutex);
3097	return ret;
3098}
3099
 
 
 
 
 
 
 
 
 
 
 
3100int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3101					    struct edid *edid)
3102{
3103	struct drm_device *dev = connector->dev;
3104	int ret, size;
3105
3106	if (connector->edid_blob_ptr)
3107		drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3108
3109	/* Delete edid, when there is none. */
3110	if (!edid) {
3111		connector->edid_blob_ptr = NULL;
3112		ret = drm_connector_property_set_value(connector, dev->mode_config.edid_property, 0);
3113		return ret;
3114	}
3115
3116	size = EDID_LENGTH * (1 + edid->extensions);
3117	connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3118							    size, edid);
 
 
3119
3120	ret = drm_connector_property_set_value(connector,
3121					       dev->mode_config.edid_property,
3122					       connector->edid_blob_ptr->base.id);
3123
3124	return ret;
3125}
3126EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3127
3128static bool drm_property_change_is_valid(struct drm_property *property,
3129					 uint64_t value)
3130{
3131	if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3132		return false;
3133	if (property->flags & DRM_MODE_PROP_RANGE) {
3134		if (value < property->values[0] || value > property->values[1])
3135			return false;
3136		return true;
3137	} else if (property->flags & DRM_MODE_PROP_BITMASK) {
3138		int i;
3139		uint64_t valid_mask = 0;
3140		for (i = 0; i < property->num_values; i++)
3141			valid_mask |= (1ULL << property->values[i]);
3142		return !(value & ~valid_mask);
 
 
 
3143	} else {
3144		int i;
3145		for (i = 0; i < property->num_values; i++)
3146			if (property->values[i] == value)
3147				return true;
3148		return false;
3149	}
3150}
3151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3152int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3153				       void *data, struct drm_file *file_priv)
3154{
3155	struct drm_mode_connector_set_property *conn_set_prop = data;
3156	struct drm_mode_obj_set_property obj_set_prop = {
3157		.value = conn_set_prop->value,
3158		.prop_id = conn_set_prop->prop_id,
3159		.obj_id = conn_set_prop->connector_id,
3160		.obj_type = DRM_MODE_OBJECT_CONNECTOR
3161	};
3162
3163	/* It does all the locking and checking we need */
3164	return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
3165}
3166
3167static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3168					   struct drm_property *property,
3169					   uint64_t value)
3170{
3171	int ret = -EINVAL;
3172	struct drm_connector *connector = obj_to_connector(obj);
3173
3174	/* Do DPMS ourselves */
3175	if (property == connector->dev->mode_config.dpms_property) {
3176		if (connector->funcs->dpms)
3177			(*connector->funcs->dpms)(connector, (int)value);
3178		ret = 0;
3179	} else if (connector->funcs->set_property)
3180		ret = connector->funcs->set_property(connector, property, value);
3181
3182	/* store the property value if successful */
3183	if (!ret)
3184		drm_connector_property_set_value(connector, property, value);
3185	return ret;
3186}
3187
3188static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3189				      struct drm_property *property,
3190				      uint64_t value)
3191{
3192	int ret = -EINVAL;
3193	struct drm_crtc *crtc = obj_to_crtc(obj);
3194
3195	if (crtc->funcs->set_property)
3196		ret = crtc->funcs->set_property(crtc, property, value);
3197	if (!ret)
3198		drm_object_property_set_value(obj, property, value);
3199
3200	return ret;
3201}
3202
3203static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3204				      struct drm_property *property,
3205				      uint64_t value)
3206{
3207	int ret = -EINVAL;
3208	struct drm_plane *plane = obj_to_plane(obj);
3209
3210	if (plane->funcs->set_property)
3211		ret = plane->funcs->set_property(plane, property, value);
3212	if (!ret)
3213		drm_object_property_set_value(obj, property, value);
3214
3215	return ret;
3216}
3217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3218int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3219				      struct drm_file *file_priv)
3220{
3221	struct drm_mode_obj_get_properties *arg = data;
3222	struct drm_mode_object *obj;
3223	int ret = 0;
3224	int i;
3225	int copied = 0;
3226	int props_count = 0;
3227	uint32_t __user *props_ptr;
3228	uint64_t __user *prop_values_ptr;
3229
3230	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3231		return -EINVAL;
3232
3233	mutex_lock(&dev->mode_config.mutex);
3234
3235	obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3236	if (!obj) {
3237		ret = -EINVAL;
3238		goto out;
3239	}
3240	if (!obj->properties) {
3241		ret = -EINVAL;
3242		goto out;
3243	}
3244
3245	props_count = obj->properties->count;
3246
3247	/* This ioctl is called twice, once to determine how much space is
3248	 * needed, and the 2nd time to fill it. */
3249	if ((arg->count_props >= props_count) && props_count) {
3250		copied = 0;
3251		props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3252		prop_values_ptr = (uint64_t __user *)(unsigned long)
3253				  (arg->prop_values_ptr);
3254		for (i = 0; i < props_count; i++) {
3255			if (put_user(obj->properties->ids[i],
3256				     props_ptr + copied)) {
3257				ret = -EFAULT;
3258				goto out;
3259			}
3260			if (put_user(obj->properties->values[i],
3261				     prop_values_ptr + copied)) {
3262				ret = -EFAULT;
3263				goto out;
3264			}
3265			copied++;
3266		}
3267	}
3268	arg->count_props = props_count;
3269out:
3270	mutex_unlock(&dev->mode_config.mutex);
3271	return ret;
3272}
3273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3274int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
3275				    struct drm_file *file_priv)
3276{
3277	struct drm_mode_obj_set_property *arg = data;
3278	struct drm_mode_object *arg_obj;
3279	struct drm_mode_object *prop_obj;
3280	struct drm_property *property;
3281	int ret = -EINVAL;
3282	int i;
3283
3284	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3285		return -EINVAL;
3286
3287	mutex_lock(&dev->mode_config.mutex);
3288
3289	arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3290	if (!arg_obj)
 
3291		goto out;
 
3292	if (!arg_obj->properties)
3293		goto out;
3294
3295	for (i = 0; i < arg_obj->properties->count; i++)
3296		if (arg_obj->properties->ids[i] == arg->prop_id)
3297			break;
3298
3299	if (i == arg_obj->properties->count)
3300		goto out;
3301
3302	prop_obj = drm_mode_object_find(dev, arg->prop_id,
3303					DRM_MODE_OBJECT_PROPERTY);
3304	if (!prop_obj)
 
3305		goto out;
 
3306	property = obj_to_property(prop_obj);
3307
3308	if (!drm_property_change_is_valid(property, arg->value))
3309		goto out;
3310
3311	switch (arg_obj->type) {
3312	case DRM_MODE_OBJECT_CONNECTOR:
3313		ret = drm_mode_connector_set_obj_prop(arg_obj, property,
3314						      arg->value);
3315		break;
3316	case DRM_MODE_OBJECT_CRTC:
3317		ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
3318		break;
3319	case DRM_MODE_OBJECT_PLANE:
3320		ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
3321		break;
3322	}
3323
3324out:
3325	mutex_unlock(&dev->mode_config.mutex);
3326	return ret;
3327}
3328
 
 
 
 
 
 
 
 
 
 
 
 
3329int drm_mode_connector_attach_encoder(struct drm_connector *connector,
3330				      struct drm_encoder *encoder)
3331{
3332	int i;
3333
3334	for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3335		if (connector->encoder_ids[i] == 0) {
3336			connector->encoder_ids[i] = encoder->base.id;
3337			return 0;
3338		}
3339	}
3340	return -ENOMEM;
3341}
3342EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
3343
3344void drm_mode_connector_detach_encoder(struct drm_connector *connector,
3345				    struct drm_encoder *encoder)
3346{
3347	int i;
3348	for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3349		if (connector->encoder_ids[i] == encoder->base.id) {
3350			connector->encoder_ids[i] = 0;
3351			if (connector->encoder == encoder)
3352				connector->encoder = NULL;
3353			break;
3354		}
3355	}
3356}
3357EXPORT_SYMBOL(drm_mode_connector_detach_encoder);
3358
3359int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
3360				  int gamma_size)
3361{
3362	crtc->gamma_size = gamma_size;
3363
3364	crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
3365	if (!crtc->gamma_store) {
3366		crtc->gamma_size = 0;
3367		return -ENOMEM;
3368	}
3369
3370	return 0;
3371}
3372EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
3373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3374int drm_mode_gamma_set_ioctl(struct drm_device *dev,
3375			     void *data, struct drm_file *file_priv)
3376{
3377	struct drm_mode_crtc_lut *crtc_lut = data;
3378	struct drm_mode_object *obj;
3379	struct drm_crtc *crtc;
3380	void *r_base, *g_base, *b_base;
3381	int size;
3382	int ret = 0;
3383
3384	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3385		return -EINVAL;
3386
3387	mutex_lock(&dev->mode_config.mutex);
3388	obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3389	if (!obj) {
3390		ret = -EINVAL;
3391		goto out;
3392	}
3393	crtc = obj_to_crtc(obj);
3394
3395	if (crtc->funcs->gamma_set == NULL) {
3396		ret = -ENOSYS;
3397		goto out;
3398	}
3399
3400	/* memcpy into gamma store */
3401	if (crtc_lut->gamma_size != crtc->gamma_size) {
3402		ret = -EINVAL;
3403		goto out;
3404	}
3405
3406	size = crtc_lut->gamma_size * (sizeof(uint16_t));
3407	r_base = crtc->gamma_store;
3408	if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
3409		ret = -EFAULT;
3410		goto out;
3411	}
3412
3413	g_base = r_base + size;
3414	if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
3415		ret = -EFAULT;
3416		goto out;
3417	}
3418
3419	b_base = g_base + size;
3420	if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
3421		ret = -EFAULT;
3422		goto out;
3423	}
3424
3425	crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
3426
3427out:
3428	mutex_unlock(&dev->mode_config.mutex);
3429	return ret;
3430
3431}
3432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3433int drm_mode_gamma_get_ioctl(struct drm_device *dev,
3434			     void *data, struct drm_file *file_priv)
3435{
3436	struct drm_mode_crtc_lut *crtc_lut = data;
3437	struct drm_mode_object *obj;
3438	struct drm_crtc *crtc;
3439	void *r_base, *g_base, *b_base;
3440	int size;
3441	int ret = 0;
3442
3443	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3444		return -EINVAL;
3445
3446	mutex_lock(&dev->mode_config.mutex);
3447	obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3448	if (!obj) {
3449		ret = -EINVAL;
3450		goto out;
3451	}
3452	crtc = obj_to_crtc(obj);
3453
3454	/* memcpy into gamma store */
3455	if (crtc_lut->gamma_size != crtc->gamma_size) {
3456		ret = -EINVAL;
3457		goto out;
3458	}
3459
3460	size = crtc_lut->gamma_size * (sizeof(uint16_t));
3461	r_base = crtc->gamma_store;
3462	if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
3463		ret = -EFAULT;
3464		goto out;
3465	}
3466
3467	g_base = r_base + size;
3468	if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
3469		ret = -EFAULT;
3470		goto out;
3471	}
3472
3473	b_base = g_base + size;
3474	if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
3475		ret = -EFAULT;
3476		goto out;
3477	}
3478out:
3479	mutex_unlock(&dev->mode_config.mutex);
3480	return ret;
3481}
3482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3483int drm_mode_page_flip_ioctl(struct drm_device *dev,
3484			     void *data, struct drm_file *file_priv)
3485{
3486	struct drm_mode_crtc_page_flip *page_flip = data;
3487	struct drm_mode_object *obj;
3488	struct drm_crtc *crtc;
3489	struct drm_framebuffer *fb;
3490	struct drm_pending_vblank_event *e = NULL;
3491	unsigned long flags;
3492	int ret = -EINVAL;
3493
3494	if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
3495	    page_flip->reserved != 0)
3496		return -EINVAL;
3497
3498	mutex_lock(&dev->mode_config.mutex);
 
 
3499	obj = drm_mode_object_find(dev, page_flip->crtc_id, DRM_MODE_OBJECT_CRTC);
3500	if (!obj)
3501		goto out;
3502	crtc = obj_to_crtc(obj);
3503
3504	if (crtc->fb == NULL) {
 
3505		/* The framebuffer is currently unbound, presumably
3506		 * due to a hotplug event, that userspace has not
3507		 * yet discovered.
3508		 */
3509		ret = -EBUSY;
3510		goto out;
3511	}
3512
3513	if (crtc->funcs->page_flip == NULL)
3514		goto out;
3515
3516	obj = drm_mode_object_find(dev, page_flip->fb_id, DRM_MODE_OBJECT_FB);
3517	if (!obj)
 
3518		goto out;
3519	fb = obj_to_fb(obj);
3520
3521	if (crtc->mode.hdisplay > fb->width ||
3522	    crtc->mode.vdisplay > fb->height ||
3523	    crtc->x > fb->width - crtc->mode.hdisplay ||
3524	    crtc->y > fb->height - crtc->mode.vdisplay) {
3525		DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d.\n",
3526			      fb->width, fb->height,
3527			      crtc->mode.hdisplay, crtc->mode.vdisplay,
3528			      crtc->x, crtc->y);
3529		ret = -ENOSPC;
3530		goto out;
3531	}
3532
3533	if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3534		ret = -ENOMEM;
3535		spin_lock_irqsave(&dev->event_lock, flags);
3536		if (file_priv->event_space < sizeof e->event) {
3537			spin_unlock_irqrestore(&dev->event_lock, flags);
3538			goto out;
3539		}
3540		file_priv->event_space -= sizeof e->event;
3541		spin_unlock_irqrestore(&dev->event_lock, flags);
3542
3543		e = kzalloc(sizeof *e, GFP_KERNEL);
3544		if (e == NULL) {
3545			spin_lock_irqsave(&dev->event_lock, flags);
3546			file_priv->event_space += sizeof e->event;
3547			spin_unlock_irqrestore(&dev->event_lock, flags);
3548			goto out;
3549		}
3550
3551		e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
3552		e->event.base.length = sizeof e->event;
3553		e->event.user_data = page_flip->user_data;
3554		e->base.event = &e->event.base;
3555		e->base.file_priv = file_priv;
3556		e->base.destroy =
3557			(void (*) (struct drm_pending_event *)) kfree;
3558	}
3559
3560	ret = crtc->funcs->page_flip(crtc, fb, e);
 
3561	if (ret) {
3562		if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3563			spin_lock_irqsave(&dev->event_lock, flags);
3564			file_priv->event_space += sizeof e->event;
3565			spin_unlock_irqrestore(&dev->event_lock, flags);
3566			kfree(e);
3567		}
 
 
 
 
 
 
 
 
 
 
 
 
3568	}
3569
3570out:
3571	mutex_unlock(&dev->mode_config.mutex);
 
 
 
 
 
3572	return ret;
3573}
3574
 
 
 
 
 
 
 
 
3575void drm_mode_config_reset(struct drm_device *dev)
3576{
3577	struct drm_crtc *crtc;
3578	struct drm_encoder *encoder;
3579	struct drm_connector *connector;
3580
3581	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3582		if (crtc->funcs->reset)
3583			crtc->funcs->reset(crtc);
3584
3585	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
3586		if (encoder->funcs->reset)
3587			encoder->funcs->reset(encoder);
3588
3589	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
 
 
3590		if (connector->funcs->reset)
3591			connector->funcs->reset(connector);
 
3592}
3593EXPORT_SYMBOL(drm_mode_config_reset);
3594
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3595int drm_mode_create_dumb_ioctl(struct drm_device *dev,
3596			       void *data, struct drm_file *file_priv)
3597{
3598	struct drm_mode_create_dumb *args = data;
 
3599
3600	if (!dev->driver->dumb_create)
3601		return -ENOSYS;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3602	return dev->driver->dumb_create(file_priv, dev, args);
3603}
3604
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3605int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
3606			     void *data, struct drm_file *file_priv)
3607{
3608	struct drm_mode_map_dumb *args = data;
3609
3610	/* call driver ioctl to get mmap offset */
3611	if (!dev->driver->dumb_map_offset)
3612		return -ENOSYS;
3613
3614	return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
3615}
3616
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3617int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
3618				void *data, struct drm_file *file_priv)
3619{
3620	struct drm_mode_destroy_dumb *args = data;
3621
3622	if (!dev->driver->dumb_destroy)
3623		return -ENOSYS;
3624
3625	return dev->driver->dumb_destroy(file_priv, dev, args->handle);
3626}
3627
3628/*
3629 * Just need to support RGB formats here for compat with code that doesn't
3630 * use pixel formats directly yet.
 
 
 
 
 
3631 */
3632void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
3633			  int *bpp)
3634{
3635	switch (format) {
 
3636	case DRM_FORMAT_RGB332:
3637	case DRM_FORMAT_BGR233:
3638		*depth = 8;
3639		*bpp = 8;
3640		break;
3641	case DRM_FORMAT_XRGB1555:
3642	case DRM_FORMAT_XBGR1555:
3643	case DRM_FORMAT_RGBX5551:
3644	case DRM_FORMAT_BGRX5551:
3645	case DRM_FORMAT_ARGB1555:
3646	case DRM_FORMAT_ABGR1555:
3647	case DRM_FORMAT_RGBA5551:
3648	case DRM_FORMAT_BGRA5551:
3649		*depth = 15;
3650		*bpp = 16;
3651		break;
3652	case DRM_FORMAT_RGB565:
3653	case DRM_FORMAT_BGR565:
3654		*depth = 16;
3655		*bpp = 16;
3656		break;
3657	case DRM_FORMAT_RGB888:
3658	case DRM_FORMAT_BGR888:
3659		*depth = 24;
3660		*bpp = 24;
3661		break;
3662	case DRM_FORMAT_XRGB8888:
3663	case DRM_FORMAT_XBGR8888:
3664	case DRM_FORMAT_RGBX8888:
3665	case DRM_FORMAT_BGRX8888:
3666		*depth = 24;
3667		*bpp = 32;
3668		break;
3669	case DRM_FORMAT_XRGB2101010:
3670	case DRM_FORMAT_XBGR2101010:
3671	case DRM_FORMAT_RGBX1010102:
3672	case DRM_FORMAT_BGRX1010102:
3673	case DRM_FORMAT_ARGB2101010:
3674	case DRM_FORMAT_ABGR2101010:
3675	case DRM_FORMAT_RGBA1010102:
3676	case DRM_FORMAT_BGRA1010102:
3677		*depth = 30;
3678		*bpp = 32;
3679		break;
3680	case DRM_FORMAT_ARGB8888:
3681	case DRM_FORMAT_ABGR8888:
3682	case DRM_FORMAT_RGBA8888:
3683	case DRM_FORMAT_BGRA8888:
3684		*depth = 32;
3685		*bpp = 32;
3686		break;
3687	default:
3688		DRM_DEBUG_KMS("unsupported pixel format\n");
 
3689		*depth = 0;
3690		*bpp = 0;
3691		break;
3692	}
3693}
3694EXPORT_SYMBOL(drm_fb_get_bpp_depth);
3695
3696/**
3697 * drm_format_num_planes - get the number of planes for format
3698 * @format: pixel format (DRM_FORMAT_*)
3699 *
3700 * RETURNS:
3701 * The number of planes used by the specified pixel format.
3702 */
3703int drm_format_num_planes(uint32_t format)
3704{
3705	switch (format) {
3706	case DRM_FORMAT_YUV410:
3707	case DRM_FORMAT_YVU410:
3708	case DRM_FORMAT_YUV411:
3709	case DRM_FORMAT_YVU411:
3710	case DRM_FORMAT_YUV420:
3711	case DRM_FORMAT_YVU420:
3712	case DRM_FORMAT_YUV422:
3713	case DRM_FORMAT_YVU422:
3714	case DRM_FORMAT_YUV444:
3715	case DRM_FORMAT_YVU444:
3716		return 3;
3717	case DRM_FORMAT_NV12:
3718	case DRM_FORMAT_NV21:
3719	case DRM_FORMAT_NV16:
3720	case DRM_FORMAT_NV61:
 
 
3721		return 2;
3722	default:
3723		return 1;
3724	}
3725}
3726EXPORT_SYMBOL(drm_format_num_planes);
3727
3728/**
3729 * drm_format_plane_cpp - determine the bytes per pixel value
3730 * @format: pixel format (DRM_FORMAT_*)
3731 * @plane: plane index
3732 *
3733 * RETURNS:
3734 * The bytes per pixel value for the specified plane.
3735 */
3736int drm_format_plane_cpp(uint32_t format, int plane)
3737{
3738	unsigned int depth;
3739	int bpp;
3740
3741	if (plane >= drm_format_num_planes(format))
3742		return 0;
3743
3744	switch (format) {
3745	case DRM_FORMAT_YUYV:
3746	case DRM_FORMAT_YVYU:
3747	case DRM_FORMAT_UYVY:
3748	case DRM_FORMAT_VYUY:
3749		return 2;
3750	case DRM_FORMAT_NV12:
3751	case DRM_FORMAT_NV21:
3752	case DRM_FORMAT_NV16:
3753	case DRM_FORMAT_NV61:
 
 
3754		return plane ? 2 : 1;
3755	case DRM_FORMAT_YUV410:
3756	case DRM_FORMAT_YVU410:
3757	case DRM_FORMAT_YUV411:
3758	case DRM_FORMAT_YVU411:
3759	case DRM_FORMAT_YUV420:
3760	case DRM_FORMAT_YVU420:
3761	case DRM_FORMAT_YUV422:
3762	case DRM_FORMAT_YVU422:
3763	case DRM_FORMAT_YUV444:
3764	case DRM_FORMAT_YVU444:
3765		return 1;
3766	default:
3767		drm_fb_get_bpp_depth(format, &depth, &bpp);
3768		return bpp >> 3;
3769	}
3770}
3771EXPORT_SYMBOL(drm_format_plane_cpp);
3772
3773/**
3774 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
3775 * @format: pixel format (DRM_FORMAT_*)
3776 *
3777 * RETURNS:
3778 * The horizontal chroma subsampling factor for the
3779 * specified pixel format.
3780 */
3781int drm_format_horz_chroma_subsampling(uint32_t format)
3782{
3783	switch (format) {
3784	case DRM_FORMAT_YUV411:
3785	case DRM_FORMAT_YVU411:
3786	case DRM_FORMAT_YUV410:
3787	case DRM_FORMAT_YVU410:
3788		return 4;
3789	case DRM_FORMAT_YUYV:
3790	case DRM_FORMAT_YVYU:
3791	case DRM_FORMAT_UYVY:
3792	case DRM_FORMAT_VYUY:
3793	case DRM_FORMAT_NV12:
3794	case DRM_FORMAT_NV21:
3795	case DRM_FORMAT_NV16:
3796	case DRM_FORMAT_NV61:
3797	case DRM_FORMAT_YUV422:
3798	case DRM_FORMAT_YVU422:
3799	case DRM_FORMAT_YUV420:
3800	case DRM_FORMAT_YVU420:
3801		return 2;
3802	default:
3803		return 1;
3804	}
3805}
3806EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
3807
3808/**
3809 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
3810 * @format: pixel format (DRM_FORMAT_*)
3811 *
3812 * RETURNS:
3813 * The vertical chroma subsampling factor for the
3814 * specified pixel format.
3815 */
3816int drm_format_vert_chroma_subsampling(uint32_t format)
3817{
3818	switch (format) {
3819	case DRM_FORMAT_YUV410:
3820	case DRM_FORMAT_YVU410:
3821		return 4;
3822	case DRM_FORMAT_YUV420:
3823	case DRM_FORMAT_YVU420:
3824	case DRM_FORMAT_NV12:
3825	case DRM_FORMAT_NV21:
3826		return 2;
3827	default:
3828		return 1;
3829	}
3830}
3831EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
v3.15
   1/*
   2 * Copyright (c) 2006-2008 Intel Corporation
   3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
   4 * Copyright (c) 2008 Red Hat Inc.
   5 *
   6 * DRM core CRTC related functions
   7 *
   8 * Permission to use, copy, modify, distribute, and sell this software and its
   9 * documentation for any purpose is hereby granted without fee, provided that
  10 * the above copyright notice appear in all copies and that both that copyright
  11 * notice and this permission notice appear in supporting documentation, and
  12 * that the name of the copyright holders not be used in advertising or
  13 * publicity pertaining to distribution of the software without specific,
  14 * written prior permission.  The copyright holders make no representations
  15 * about the suitability of this software for any purpose.  It is provided "as
  16 * is" without express or implied warranty.
  17 *
  18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  24 * OF THIS SOFTWARE.
  25 *
  26 * Authors:
  27 *      Keith Packard
  28 *	Eric Anholt <eric@anholt.net>
  29 *      Dave Airlie <airlied@linux.ie>
  30 *      Jesse Barnes <jesse.barnes@intel.com>
  31 */
  32#include <linux/ctype.h>
  33#include <linux/list.h>
  34#include <linux/slab.h>
  35#include <linux/export.h>
  36#include <drm/drmP.h>
  37#include <drm/drm_crtc.h>
  38#include <drm/drm_edid.h>
  39#include <drm/drm_fourcc.h>
  40
  41#include "drm_crtc_internal.h"
  42
  43/**
  44 * drm_modeset_lock_all - take all modeset locks
  45 * @dev: drm device
  46 *
  47 * This function takes all modeset locks, suitable where a more fine-grained
  48 * scheme isn't (yet) implemented. Locks must be dropped with
  49 * drm_modeset_unlock_all.
  50 */
  51void drm_modeset_lock_all(struct drm_device *dev)
  52{
  53	struct drm_crtc *crtc;
  54
  55	mutex_lock(&dev->mode_config.mutex);
  56
  57	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
  58		mutex_lock_nest_lock(&crtc->mutex, &dev->mode_config.mutex);
  59}
  60EXPORT_SYMBOL(drm_modeset_lock_all);
  61
  62/**
  63 * drm_modeset_unlock_all - drop all modeset locks
  64 * @dev: device
  65 *
  66 * This function drop all modeset locks taken by drm_modeset_lock_all.
  67 */
  68void drm_modeset_unlock_all(struct drm_device *dev)
  69{
  70	struct drm_crtc *crtc;
  71
  72	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
  73		mutex_unlock(&crtc->mutex);
  74
  75	mutex_unlock(&dev->mode_config.mutex);
  76}
  77EXPORT_SYMBOL(drm_modeset_unlock_all);
  78
  79/**
  80 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
  81 * @dev: device
  82 *
  83 * Useful as a debug assert.
  84 */
  85void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
  86{
  87	struct drm_crtc *crtc;
  88
  89	/* Locking is currently fubar in the panic handler. */
  90	if (oops_in_progress)
  91		return;
  92
  93	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
  94		WARN_ON(!mutex_is_locked(&crtc->mutex));
  95
  96	WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
  97}
  98EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
  99
 100/* Avoid boilerplate.  I'm tired of typing. */
 101#define DRM_ENUM_NAME_FN(fnname, list)				\
 102	const char *fnname(int val)				\
 103	{							\
 104		int i;						\
 105		for (i = 0; i < ARRAY_SIZE(list); i++) {	\
 106			if (list[i].type == val)		\
 107				return list[i].name;		\
 108		}						\
 109		return "(unknown)";				\
 110	}
 111
 112/*
 113 * Global properties
 114 */
 115static const struct drm_prop_enum_list drm_dpms_enum_list[] =
 116{	{ DRM_MODE_DPMS_ON, "On" },
 117	{ DRM_MODE_DPMS_STANDBY, "Standby" },
 118	{ DRM_MODE_DPMS_SUSPEND, "Suspend" },
 119	{ DRM_MODE_DPMS_OFF, "Off" }
 120};
 121
 122DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
 123
 124static const struct drm_prop_enum_list drm_plane_type_enum_list[] =
 125{
 126	{ DRM_PLANE_TYPE_OVERLAY, "Overlay" },
 127	{ DRM_PLANE_TYPE_PRIMARY, "Primary" },
 128	{ DRM_PLANE_TYPE_CURSOR, "Cursor" },
 129};
 130
 131/*
 132 * Optional properties
 133 */
 134static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
 135{
 136	{ DRM_MODE_SCALE_NONE, "None" },
 137	{ DRM_MODE_SCALE_FULLSCREEN, "Full" },
 138	{ DRM_MODE_SCALE_CENTER, "Center" },
 139	{ DRM_MODE_SCALE_ASPECT, "Full aspect" },
 140};
 141
 
 
 
 
 
 
 
 142/*
 143 * Non-global properties, but "required" for certain connectors.
 144 */
 145static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
 146{
 147	{ DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
 148	{ DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
 149	{ DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
 150};
 151
 152DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
 153
 154static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
 155{
 156	{ DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
 157	{ DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
 158	{ DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
 159};
 160
 161DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
 162		 drm_dvi_i_subconnector_enum_list)
 163
 164static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
 165{
 166	{ DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
 167	{ DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
 168	{ DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
 169	{ DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
 170	{ DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
 171};
 172
 173DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
 174
 175static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
 176{
 177	{ DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
 178	{ DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
 179	{ DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
 180	{ DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
 181	{ DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
 182};
 183
 184DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
 185		 drm_tv_subconnector_enum_list)
 186
 187static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
 188	{ DRM_MODE_DIRTY_OFF,      "Off"      },
 189	{ DRM_MODE_DIRTY_ON,       "On"       },
 190	{ DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
 191};
 192
 
 
 
 193struct drm_conn_prop_enum_list {
 194	int type;
 195	const char *name;
 196	struct ida ida;
 197};
 198
 199/*
 200 * Connector and encoder types.
 201 */
 202static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
 203{	{ DRM_MODE_CONNECTOR_Unknown, "Unknown" },
 204	{ DRM_MODE_CONNECTOR_VGA, "VGA" },
 205	{ DRM_MODE_CONNECTOR_DVII, "DVI-I" },
 206	{ DRM_MODE_CONNECTOR_DVID, "DVI-D" },
 207	{ DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
 208	{ DRM_MODE_CONNECTOR_Composite, "Composite" },
 209	{ DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
 210	{ DRM_MODE_CONNECTOR_LVDS, "LVDS" },
 211	{ DRM_MODE_CONNECTOR_Component, "Component" },
 212	{ DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
 213	{ DRM_MODE_CONNECTOR_DisplayPort, "DP" },
 214	{ DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
 215	{ DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
 216	{ DRM_MODE_CONNECTOR_TV, "TV" },
 217	{ DRM_MODE_CONNECTOR_eDP, "eDP" },
 218	{ DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
 219	{ DRM_MODE_CONNECTOR_DSI, "DSI" },
 220};
 221
 222static const struct drm_prop_enum_list drm_encoder_enum_list[] =
 223{	{ DRM_MODE_ENCODER_NONE, "None" },
 224	{ DRM_MODE_ENCODER_DAC, "DAC" },
 225	{ DRM_MODE_ENCODER_TMDS, "TMDS" },
 226	{ DRM_MODE_ENCODER_LVDS, "LVDS" },
 227	{ DRM_MODE_ENCODER_TVDAC, "TV" },
 228	{ DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
 229	{ DRM_MODE_ENCODER_DSI, "DSI" },
 230};
 231
 232static const struct drm_prop_enum_list drm_subpixel_enum_list[] =
 233{
 234	{ SubPixelUnknown, "Unknown" },
 235	{ SubPixelHorizontalRGB, "Horizontal RGB" },
 236	{ SubPixelHorizontalBGR, "Horizontal BGR" },
 237	{ SubPixelVerticalRGB, "Vertical RGB" },
 238	{ SubPixelVerticalBGR, "Vertical BGR" },
 239	{ SubPixelNone, "None" },
 240};
 241
 242void drm_connector_ida_init(void)
 243{
 244	int i;
 245
 246	for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
 247		ida_init(&drm_connector_enum_list[i].ida);
 248}
 249
 250void drm_connector_ida_destroy(void)
 251{
 252	int i;
 253
 254	for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
 255		ida_destroy(&drm_connector_enum_list[i].ida);
 256}
 257
 258/**
 259 * drm_get_encoder_name - return a string for encoder
 260 * @encoder: encoder to compute name of
 261 *
 262 * Note that the buffer used by this function is globally shared and owned by
 263 * the function itself.
 264 *
 265 * FIXME: This isn't really multithreading safe.
 266 */
 267const char *drm_get_encoder_name(const struct drm_encoder *encoder)
 268{
 269	static char buf[32];
 270
 271	snprintf(buf, 32, "%s-%d",
 272		 drm_encoder_enum_list[encoder->encoder_type].name,
 273		 encoder->base.id);
 274	return buf;
 275}
 276EXPORT_SYMBOL(drm_get_encoder_name);
 277
 278/**
 279 * drm_get_connector_name - return a string for connector
 280 * @connector: connector to compute name of
 281 *
 282 * Note that the buffer used by this function is globally shared and owned by
 283 * the function itself.
 284 *
 285 * FIXME: This isn't really multithreading safe.
 286 */
 287const char *drm_get_connector_name(const struct drm_connector *connector)
 288{
 289	static char buf[32];
 290
 291	snprintf(buf, 32, "%s-%d",
 292		 drm_connector_enum_list[connector->connector_type].name,
 293		 connector->connector_type_id);
 294	return buf;
 295}
 296EXPORT_SYMBOL(drm_get_connector_name);
 297
 298/**
 299 * drm_get_connector_status_name - return a string for connector status
 300 * @status: connector status to compute name of
 301 *
 302 * In contrast to the other drm_get_*_name functions this one here returns a
 303 * const pointer and hence is threadsafe.
 304 */
 305const char *drm_get_connector_status_name(enum drm_connector_status status)
 306{
 307	if (status == connector_status_connected)
 308		return "connected";
 309	else if (status == connector_status_disconnected)
 310		return "disconnected";
 311	else
 312		return "unknown";
 313}
 314EXPORT_SYMBOL(drm_get_connector_status_name);
 315
 316/**
 317 * drm_get_subpixel_order_name - return a string for a given subpixel enum
 318 * @order: enum of subpixel_order
 319 *
 320 * Note you could abuse this and return something out of bounds, but that
 321 * would be a caller error.  No unscrubbed user data should make it here.
 322 */
 323const char *drm_get_subpixel_order_name(enum subpixel_order order)
 324{
 325	return drm_subpixel_enum_list[order].name;
 326}
 327EXPORT_SYMBOL(drm_get_subpixel_order_name);
 328
 329static char printable_char(int c)
 330{
 331	return isascii(c) && isprint(c) ? c : '?';
 332}
 333
 334/**
 335 * drm_get_format_name - return a string for drm fourcc format
 336 * @format: format to compute name of
 337 *
 338 * Note that the buffer used by this function is globally shared and owned by
 339 * the function itself.
 340 *
 341 * FIXME: This isn't really multithreading safe.
 342 */
 343const char *drm_get_format_name(uint32_t format)
 344{
 345	static char buf[32];
 346
 347	snprintf(buf, sizeof(buf),
 348		 "%c%c%c%c %s-endian (0x%08x)",
 349		 printable_char(format & 0xff),
 350		 printable_char((format >> 8) & 0xff),
 351		 printable_char((format >> 16) & 0xff),
 352		 printable_char((format >> 24) & 0x7f),
 353		 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
 354		 format);
 355
 356	return buf;
 357}
 358EXPORT_SYMBOL(drm_get_format_name);
 359
 360/**
 361 * drm_mode_object_get - allocate a new modeset identifier
 362 * @dev: DRM device
 363 * @obj: object pointer, used to generate unique ID
 364 * @obj_type: object type
 365 *
 366 * Create a unique identifier based on @ptr in @dev's identifier space.  Used
 367 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
 368 * modeset identifiers are _not_ reference counted. Hence don't use this for
 369 * reference counted modeset objects like framebuffers.
 370 *
 371 * Returns:
 372 * New unique (relative to other objects in @dev) integer identifier for the
 373 * object.
 374 */
 375int drm_mode_object_get(struct drm_device *dev,
 376			struct drm_mode_object *obj, uint32_t obj_type)
 377{
 
 378	int ret;
 379
 
 
 
 
 
 
 380	mutex_lock(&dev->mode_config.idr_mutex);
 381	ret = idr_alloc(&dev->mode_config.crtc_idr, obj, 1, 0, GFP_KERNEL);
 382	if (ret >= 0) {
 383		/*
 384		 * Set up the object linking under the protection of the idr
 385		 * lock so that other users can't see inconsistent state.
 386		 */
 387		obj->id = ret;
 388		obj->type = obj_type;
 389	}
 390	mutex_unlock(&dev->mode_config.idr_mutex);
 
 
 
 
 391
 392	return ret < 0 ? ret : 0;
 
 
 393}
 394
 395/**
 396 * drm_mode_object_put - free a modeset identifer
 397 * @dev: DRM device
 398 * @object: object to free
 399 *
 400 * Free @id from @dev's unique identifier pool. Note that despite the _get
 401 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
 402 * for reference counted modeset objects like framebuffers.
 
 403 */
 404void drm_mode_object_put(struct drm_device *dev,
 405			 struct drm_mode_object *object)
 406{
 407	mutex_lock(&dev->mode_config.idr_mutex);
 408	idr_remove(&dev->mode_config.crtc_idr, object->id);
 409	mutex_unlock(&dev->mode_config.idr_mutex);
 410}
 411
 412/**
 413 * drm_mode_object_find - look up a drm object with static lifetime
 414 * @dev: drm device
 415 * @id: id of the mode object
 416 * @type: type of the mode object
 417 *
 418 * Note that framebuffers cannot be looked up with this functions - since those
 419 * are reference counted, they need special treatment.
 420 */
 421struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
 422		uint32_t id, uint32_t type)
 423{
 424	struct drm_mode_object *obj = NULL;
 425
 426	/* Framebuffers are reference counted and need their own lookup
 427	 * function.*/
 428	WARN_ON(type == DRM_MODE_OBJECT_FB);
 429
 430	mutex_lock(&dev->mode_config.idr_mutex);
 431	obj = idr_find(&dev->mode_config.crtc_idr, id);
 432	if (!obj || (obj->type != type) || (obj->id != id))
 433		obj = NULL;
 434	mutex_unlock(&dev->mode_config.idr_mutex);
 435
 436	return obj;
 437}
 438EXPORT_SYMBOL(drm_mode_object_find);
 439
 440/**
 441 * drm_framebuffer_init - initialize a framebuffer
 442 * @dev: DRM device
 443 * @fb: framebuffer to be initialized
 444 * @funcs: ... with these functions
 
 445 *
 446 * Allocates an ID for the framebuffer's parent mode object, sets its mode
 447 * functions & device file and adds it to the master fd list.
 448 *
 449 * IMPORTANT:
 450 * This functions publishes the fb and makes it available for concurrent access
 451 * by other users. Which means by this point the fb _must_ be fully set up -
 452 * since all the fb attributes are invariant over its lifetime, no further
 453 * locking but only correct reference counting is required.
 454 *
 455 * Returns:
 456 * Zero on success, error code on failure.
 457 */
 458int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
 459			 const struct drm_framebuffer_funcs *funcs)
 460{
 461	int ret;
 462
 463	mutex_lock(&dev->mode_config.fb_lock);
 464	kref_init(&fb->refcount);
 465	INIT_LIST_HEAD(&fb->filp_head);
 466	fb->dev = dev;
 467	fb->funcs = funcs;
 468
 469	ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
 470	if (ret)
 471		goto out;
 472
 473	/* Grab the idr reference. */
 474	drm_framebuffer_reference(fb);
 475
 
 
 476	dev->mode_config.num_fb++;
 477	list_add(&fb->head, &dev->mode_config.fb_list);
 478out:
 479	mutex_unlock(&dev->mode_config.fb_lock);
 480
 481	return 0;
 482}
 483EXPORT_SYMBOL(drm_framebuffer_init);
 484
 485static void drm_framebuffer_free(struct kref *kref)
 486{
 487	struct drm_framebuffer *fb =
 488			container_of(kref, struct drm_framebuffer, refcount);
 489	fb->funcs->destroy(fb);
 490}
 491
 492static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
 493							uint32_t id)
 494{
 495	struct drm_mode_object *obj = NULL;
 496	struct drm_framebuffer *fb;
 497
 498	mutex_lock(&dev->mode_config.idr_mutex);
 499	obj = idr_find(&dev->mode_config.crtc_idr, id);
 500	if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
 501		fb = NULL;
 502	else
 503		fb = obj_to_fb(obj);
 504	mutex_unlock(&dev->mode_config.idr_mutex);
 505
 506	return fb;
 507}
 508
 509/**
 510 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
 511 * @dev: drm device
 512 * @id: id of the fb object
 513 *
 514 * If successful, this grabs an additional reference to the framebuffer -
 515 * callers need to make sure to eventually unreference the returned framebuffer
 516 * again, using @drm_framebuffer_unreference.
 517 */
 518struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
 519					       uint32_t id)
 520{
 521	struct drm_framebuffer *fb;
 522
 523	mutex_lock(&dev->mode_config.fb_lock);
 524	fb = __drm_framebuffer_lookup(dev, id);
 525	if (fb)
 526		drm_framebuffer_reference(fb);
 527	mutex_unlock(&dev->mode_config.fb_lock);
 528
 529	return fb;
 530}
 531EXPORT_SYMBOL(drm_framebuffer_lookup);
 532
 533/**
 534 * drm_framebuffer_unreference - unref a framebuffer
 535 * @fb: framebuffer to unref
 536 *
 537 * This functions decrements the fb's refcount and frees it if it drops to zero.
 538 */
 539void drm_framebuffer_unreference(struct drm_framebuffer *fb)
 540{
 541	DRM_DEBUG("FB ID: %d\n", fb->base.id);
 542	kref_put(&fb->refcount, drm_framebuffer_free);
 543}
 544EXPORT_SYMBOL(drm_framebuffer_unreference);
 545
 546/**
 547 * drm_framebuffer_reference - incr the fb refcnt
 548 * @fb: framebuffer
 549 *
 550 * This functions increments the fb's refcount.
 551 */
 552void drm_framebuffer_reference(struct drm_framebuffer *fb)
 553{
 554	DRM_DEBUG("FB ID: %d\n", fb->base.id);
 555	kref_get(&fb->refcount);
 556}
 557EXPORT_SYMBOL(drm_framebuffer_reference);
 558
 559static void drm_framebuffer_free_bug(struct kref *kref)
 560{
 561	BUG();
 562}
 563
 564static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
 565{
 566	DRM_DEBUG("FB ID: %d\n", fb->base.id);
 567	kref_put(&fb->refcount, drm_framebuffer_free_bug);
 568}
 569
 570/* dev->mode_config.fb_lock must be held! */
 571static void __drm_framebuffer_unregister(struct drm_device *dev,
 572					 struct drm_framebuffer *fb)
 573{
 574	mutex_lock(&dev->mode_config.idr_mutex);
 575	idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
 576	mutex_unlock(&dev->mode_config.idr_mutex);
 577
 578	fb->base.id = 0;
 579
 580	__drm_framebuffer_unreference(fb);
 581}
 582
 583/**
 584 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
 585 * @fb: fb to unregister
 586 *
 587 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
 588 * those used for fbdev. Note that the caller must hold a reference of it's own,
 589 * i.e. the object may not be destroyed through this call (since it'll lead to a
 590 * locking inversion).
 591 */
 592void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
 593{
 594	struct drm_device *dev = fb->dev;
 595
 596	mutex_lock(&dev->mode_config.fb_lock);
 597	/* Mark fb as reaped and drop idr ref. */
 598	__drm_framebuffer_unregister(dev, fb);
 599	mutex_unlock(&dev->mode_config.fb_lock);
 600}
 601EXPORT_SYMBOL(drm_framebuffer_unregister_private);
 602
 603/**
 604 * drm_framebuffer_cleanup - remove a framebuffer object
 605 * @fb: framebuffer to remove
 606 *
 607 * Cleanup framebuffer. This function is intended to be used from the drivers
 608 * ->destroy callback. It can also be used to clean up driver private
 609 *  framebuffers embedded into a larger structure.
 610 *
 611 * Note that this function does not remove the fb from active usuage - if it is
 612 * still used anywhere, hilarity can ensue since userspace could call getfb on
 613 * the id and get back -EINVAL. Obviously no concern at driver unload time.
 614 *
 615 * Also, the framebuffer will not be removed from the lookup idr - for
 616 * user-created framebuffers this will happen in in the rmfb ioctl. For
 617 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
 618 * drm_framebuffer_unregister_private.
 619 */
 620void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
 621{
 622	struct drm_device *dev = fb->dev;
 623
 624	mutex_lock(&dev->mode_config.fb_lock);
 625	list_del(&fb->head);
 626	dev->mode_config.num_fb--;
 627	mutex_unlock(&dev->mode_config.fb_lock);
 628}
 629EXPORT_SYMBOL(drm_framebuffer_cleanup);
 630
 631/**
 632 * drm_framebuffer_remove - remove and unreference a framebuffer object
 633 * @fb: framebuffer to remove
 634 *
 635 * Scans all the CRTCs and planes in @dev's mode_config.  If they're
 636 * using @fb, removes it, setting it to NULL. Then drops the reference to the
 637 * passed-in framebuffer. Might take the modeset locks.
 638 *
 639 * Note that this function optimizes the cleanup away if the caller holds the
 640 * last reference to the framebuffer. It is also guaranteed to not take the
 641 * modeset locks in this case.
 642 */
 643void drm_framebuffer_remove(struct drm_framebuffer *fb)
 644{
 645	struct drm_device *dev = fb->dev;
 646	struct drm_crtc *crtc;
 647	struct drm_plane *plane;
 648	struct drm_mode_set set;
 649	int ret;
 650
 651	WARN_ON(!list_empty(&fb->filp_head));
 652
 653	/*
 654	 * drm ABI mandates that we remove any deleted framebuffers from active
 655	 * useage. But since most sane clients only remove framebuffers they no
 656	 * longer need, try to optimize this away.
 657	 *
 658	 * Since we're holding a reference ourselves, observing a refcount of 1
 659	 * means that we're the last holder and can skip it. Also, the refcount
 660	 * can never increase from 1 again, so we don't need any barriers or
 661	 * locks.
 662	 *
 663	 * Note that userspace could try to race with use and instate a new
 664	 * usage _after_ we've cleared all current ones. End result will be an
 665	 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
 666	 * in this manner.
 667	 */
 668	if (atomic_read(&fb->refcount.refcount) > 1) {
 669		drm_modeset_lock_all(dev);
 670		/* remove from any CRTC */
 671		list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
 672			if (crtc->primary->fb == fb) {
 673				/* should turn off the crtc */
 674				memset(&set, 0, sizeof(struct drm_mode_set));
 675				set.crtc = crtc;
 676				set.fb = NULL;
 677				ret = drm_mode_set_config_internal(&set);
 678				if (ret)
 679					DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
 680			}
 681		}
 
 682
 683		list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
 684			if (plane->fb == fb)
 685				drm_plane_force_disable(plane);
 
 
 
 
 
 
 686		}
 687		drm_modeset_unlock_all(dev);
 688	}
 689
 690	drm_framebuffer_unreference(fb);
 
 
 691}
 692EXPORT_SYMBOL(drm_framebuffer_remove);
 693
 694/**
 695 * drm_crtc_init_with_planes - Initialise a new CRTC object with
 696 *    specified primary and cursor planes.
 697 * @dev: DRM device
 698 * @crtc: CRTC object to init
 699 * @primary: Primary plane for CRTC
 700 * @cursor: Cursor plane for CRTC
 701 * @funcs: callbacks for the new CRTC
 702 *
 703 * Inits a new object created as base part of a driver crtc object.
 
 704 *
 705 * Returns:
 
 
 706 * Zero on success, error code on failure.
 707 */
 708int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
 709			      struct drm_plane *primary,
 710			      void *cursor,
 711			      const struct drm_crtc_funcs *funcs)
 712{
 713	int ret;
 714
 715	crtc->dev = dev;
 716	crtc->funcs = funcs;
 717	crtc->invert_dimensions = false;
 718
 719	drm_modeset_lock_all(dev);
 720	mutex_init(&crtc->mutex);
 721	mutex_lock_nest_lock(&crtc->mutex, &dev->mode_config.mutex);
 722
 723	ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
 724	if (ret)
 725		goto out;
 726
 727	crtc->base.properties = &crtc->properties;
 728
 729	list_add_tail(&crtc->head, &dev->mode_config.crtc_list);
 730	dev->mode_config.num_crtc++;
 731
 732	crtc->primary = primary;
 733	if (primary)
 734		primary->possible_crtcs = 1 << drm_crtc_index(crtc);
 735
 736 out:
 737	drm_modeset_unlock_all(dev);
 738
 739	return ret;
 740}
 741EXPORT_SYMBOL(drm_crtc_init_with_planes);
 742
 743/**
 744 * drm_crtc_cleanup - Clean up the core crtc usage
 745 * @crtc: CRTC to cleanup
 746 *
 747 * This function cleans up @crtc and removes it from the DRM mode setting
 748 * core. Note that the function does *not* free the crtc structure itself,
 749 * this is the responsibility of the caller.
 
 
 750 */
 751void drm_crtc_cleanup(struct drm_crtc *crtc)
 752{
 753	struct drm_device *dev = crtc->dev;
 754
 755	kfree(crtc->gamma_store);
 756	crtc->gamma_store = NULL;
 
 
 757
 758	drm_mode_object_put(dev, &crtc->base);
 759	list_del(&crtc->head);
 760	dev->mode_config.num_crtc--;
 761}
 762EXPORT_SYMBOL(drm_crtc_cleanup);
 763
 764/**
 765 * drm_crtc_index - find the index of a registered CRTC
 766 * @crtc: CRTC to find index for
 
 
 
 
 767 *
 768 * Given a registered CRTC, return the index of that CRTC within a DRM
 769 * device's list of CRTCs.
 770 */
 771unsigned int drm_crtc_index(struct drm_crtc *crtc)
 
 772{
 773	unsigned int index = 0;
 774	struct drm_crtc *tmp;
 775
 776	list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
 777		if (tmp == crtc)
 778			return index;
 779
 780		index++;
 781	}
 782
 783	BUG();
 784}
 785EXPORT_SYMBOL(drm_crtc_index);
 786
 787/*
 788 * drm_mode_remove - remove and free a mode
 789 * @connector: connector list to modify
 790 * @mode: mode to remove
 791 *
 
 
 
 792 * Remove @mode from @connector's mode list, then free it.
 793 */
 794static void drm_mode_remove(struct drm_connector *connector,
 795			    struct drm_display_mode *mode)
 796{
 797	list_del(&mode->head);
 798	drm_mode_destroy(connector->dev, mode);
 799}
 
 800
 801/**
 802 * drm_connector_init - Init a preallocated connector
 803 * @dev: DRM device
 804 * @connector: the connector to init
 805 * @funcs: callbacks for this connector
 806 * @connector_type: user visible type of the connector
 
 
 
 807 *
 808 * Initialises a preallocated connector. Connectors should be
 809 * subclassed as part of driver connector objects.
 810 *
 811 * Returns:
 812 * Zero on success, error code on failure.
 813 */
 814int drm_connector_init(struct drm_device *dev,
 815		       struct drm_connector *connector,
 816		       const struct drm_connector_funcs *funcs,
 817		       int connector_type)
 818{
 819	int ret;
 820	struct ida *connector_ida =
 821		&drm_connector_enum_list[connector_type].ida;
 822
 823	drm_modeset_lock_all(dev);
 824
 825	ret = drm_mode_object_get(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR);
 826	if (ret)
 827		goto out;
 828
 829	connector->base.properties = &connector->properties;
 830	connector->dev = dev;
 831	connector->funcs = funcs;
 832	connector->connector_type = connector_type;
 833	connector->connector_type_id =
 834		ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
 835	if (connector->connector_type_id < 0) {
 836		ret = connector->connector_type_id;
 837		drm_mode_object_put(dev, &connector->base);
 838		goto out;
 839	}
 840	INIT_LIST_HEAD(&connector->probed_modes);
 841	INIT_LIST_HEAD(&connector->modes);
 842	connector->edid_blob_ptr = NULL;
 843	connector->status = connector_status_unknown;
 844
 845	list_add_tail(&connector->head, &dev->mode_config.connector_list);
 846	dev->mode_config.num_connector++;
 847
 848	if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
 849		drm_object_attach_property(&connector->base,
 850					      dev->mode_config.edid_property,
 851					      0);
 852
 853	drm_object_attach_property(&connector->base,
 854				      dev->mode_config.dpms_property, 0);
 855
 856 out:
 857	drm_modeset_unlock_all(dev);
 858
 859	return ret;
 860}
 861EXPORT_SYMBOL(drm_connector_init);
 862
 863/**
 864 * drm_connector_cleanup - cleans up an initialised connector
 865 * @connector: connector to cleanup
 866 *
 
 
 
 867 * Cleans up the connector but doesn't free the object.
 868 */
 869void drm_connector_cleanup(struct drm_connector *connector)
 870{
 871	struct drm_device *dev = connector->dev;
 872	struct drm_display_mode *mode, *t;
 873
 874	list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
 875		drm_mode_remove(connector, mode);
 876
 877	list_for_each_entry_safe(mode, t, &connector->modes, head)
 878		drm_mode_remove(connector, mode);
 879
 880	ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
 881		   connector->connector_type_id);
 882
 
 883	drm_mode_object_put(dev, &connector->base);
 884	list_del(&connector->head);
 885	dev->mode_config.num_connector--;
 
 886}
 887EXPORT_SYMBOL(drm_connector_cleanup);
 888
 889/**
 890 * drm_connector_unplug_all - unregister connector userspace interfaces
 891 * @dev: drm device
 892 *
 893 * This function unregisters all connector userspace interfaces in sysfs. Should
 894 * be call when the device is disconnected, e.g. from an usb driver's
 895 * ->disconnect callback.
 896 */
 897void drm_connector_unplug_all(struct drm_device *dev)
 898{
 899	struct drm_connector *connector;
 900
 901	/* taking the mode config mutex ends up in a clash with sysfs */
 902	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
 903		drm_sysfs_connector_remove(connector);
 904
 905}
 906EXPORT_SYMBOL(drm_connector_unplug_all);
 907
 908/**
 909 * drm_bridge_init - initialize a drm transcoder/bridge
 910 * @dev: drm device
 911 * @bridge: transcoder/bridge to set up
 912 * @funcs: bridge function table
 913 *
 914 * Initialises a preallocated bridge. Bridges should be
 915 * subclassed as part of driver connector objects.
 916 *
 917 * Returns:
 918 * Zero on success, error code on failure.
 919 */
 920int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
 921		const struct drm_bridge_funcs *funcs)
 922{
 923	int ret;
 924
 925	drm_modeset_lock_all(dev);
 926
 927	ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
 928	if (ret)
 929		goto out;
 930
 931	bridge->dev = dev;
 932	bridge->funcs = funcs;
 933
 934	list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
 935	dev->mode_config.num_bridge++;
 936
 937 out:
 938	drm_modeset_unlock_all(dev);
 939	return ret;
 940}
 941EXPORT_SYMBOL(drm_bridge_init);
 942
 943/**
 944 * drm_bridge_cleanup - cleans up an initialised bridge
 945 * @bridge: bridge to cleanup
 946 *
 947 * Cleans up the bridge but doesn't free the object.
 948 */
 949void drm_bridge_cleanup(struct drm_bridge *bridge)
 950{
 951	struct drm_device *dev = bridge->dev;
 952
 953	drm_modeset_lock_all(dev);
 954	drm_mode_object_put(dev, &bridge->base);
 955	list_del(&bridge->head);
 956	dev->mode_config.num_bridge--;
 957	drm_modeset_unlock_all(dev);
 958}
 959EXPORT_SYMBOL(drm_bridge_cleanup);
 960
 961/**
 962 * drm_encoder_init - Init a preallocated encoder
 963 * @dev: drm device
 964 * @encoder: the encoder to init
 965 * @funcs: callbacks for this encoder
 966 * @encoder_type: user visible type of the encoder
 967 *
 968 * Initialises a preallocated encoder. Encoder should be
 969 * subclassed as part of driver encoder objects.
 970 *
 971 * Returns:
 972 * Zero on success, error code on failure.
 973 */
 974int drm_encoder_init(struct drm_device *dev,
 975		      struct drm_encoder *encoder,
 976		      const struct drm_encoder_funcs *funcs,
 977		      int encoder_type)
 978{
 979	int ret;
 980
 981	drm_modeset_lock_all(dev);
 982
 983	ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
 984	if (ret)
 985		goto out;
 986
 987	encoder->dev = dev;
 988	encoder->encoder_type = encoder_type;
 989	encoder->funcs = funcs;
 990
 991	list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
 992	dev->mode_config.num_encoder++;
 993
 994 out:
 995	drm_modeset_unlock_all(dev);
 996
 997	return ret;
 998}
 999EXPORT_SYMBOL(drm_encoder_init);
1000
1001/**
1002 * drm_encoder_cleanup - cleans up an initialised encoder
1003 * @encoder: encoder to cleanup
1004 *
1005 * Cleans up the encoder but doesn't free the object.
1006 */
1007void drm_encoder_cleanup(struct drm_encoder *encoder)
1008{
1009	struct drm_device *dev = encoder->dev;
1010	drm_modeset_lock_all(dev);
1011	drm_mode_object_put(dev, &encoder->base);
1012	list_del(&encoder->head);
1013	dev->mode_config.num_encoder--;
1014	drm_modeset_unlock_all(dev);
1015}
1016EXPORT_SYMBOL(drm_encoder_cleanup);
1017
1018/**
1019 * drm_universal_plane_init - Initialize a new universal plane object
1020 * @dev: DRM device
1021 * @plane: plane object to init
1022 * @possible_crtcs: bitmask of possible CRTCs
1023 * @funcs: callbacks for the new plane
1024 * @formats: array of supported formats (%DRM_FORMAT_*)
1025 * @format_count: number of elements in @formats
1026 * @type: type of plane (overlay, primary, cursor)
1027 *
1028 * Initializes a plane object of type @type.
1029 *
1030 * Returns:
1031 * Zero on success, error code on failure.
1032 */
1033int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1034			     unsigned long possible_crtcs,
1035			     const struct drm_plane_funcs *funcs,
1036			     const uint32_t *formats, uint32_t format_count,
1037			     enum drm_plane_type type)
1038{
1039	int ret;
1040
1041	drm_modeset_lock_all(dev);
1042
1043	ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1044	if (ret)
1045		goto out;
1046
1047	plane->base.properties = &plane->properties;
1048	plane->dev = dev;
1049	plane->funcs = funcs;
1050	plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1051				      GFP_KERNEL);
1052	if (!plane->format_types) {
1053		DRM_DEBUG_KMS("out of memory when allocating plane\n");
1054		drm_mode_object_put(dev, &plane->base);
1055		ret = -ENOMEM;
1056		goto out;
1057	}
1058
1059	memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
1060	plane->format_count = format_count;
1061	plane->possible_crtcs = possible_crtcs;
1062	plane->type = type;
1063
1064	list_add_tail(&plane->head, &dev->mode_config.plane_list);
1065	dev->mode_config.num_total_plane++;
1066	if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1067		dev->mode_config.num_overlay_plane++;
1068
1069	drm_object_attach_property(&plane->base,
1070				   dev->mode_config.plane_type_property,
1071				   plane->type);
 
 
1072
1073 out:
1074	drm_modeset_unlock_all(dev);
1075
1076	return ret;
1077}
1078EXPORT_SYMBOL(drm_universal_plane_init);
1079
1080/**
1081 * drm_plane_init - Initialize a legacy plane
1082 * @dev: DRM device
1083 * @plane: plane object to init
1084 * @possible_crtcs: bitmask of possible CRTCs
1085 * @funcs: callbacks for the new plane
1086 * @formats: array of supported formats (%DRM_FORMAT_*)
1087 * @format_count: number of elements in @formats
1088 * @is_primary: plane type (primary vs overlay)
1089 *
1090 * Legacy API to initialize a DRM plane.
1091 *
1092 * New drivers should call drm_universal_plane_init() instead.
1093 *
1094 * Returns:
1095 * Zero on success, error code on failure.
1096 */
1097int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1098		   unsigned long possible_crtcs,
1099		   const struct drm_plane_funcs *funcs,
1100		   const uint32_t *formats, uint32_t format_count,
1101		   bool is_primary)
1102{
1103	enum drm_plane_type type;
1104
1105	type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1106	return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1107					formats, format_count, type);
 
 
 
 
 
 
1108}
1109EXPORT_SYMBOL(drm_plane_init);
1110
1111/**
1112 * drm_plane_cleanup - Clean up the core plane usage
1113 * @plane: plane to cleanup
 
 
 
1114 *
1115 * This function cleans up @plane and removes it from the DRM mode setting
1116 * core. Note that the function does *not* free the plane structure itself,
1117 * this is the responsibility of the caller.
 
1118 */
1119void drm_plane_cleanup(struct drm_plane *plane)
1120{
1121	struct drm_device *dev = plane->dev;
1122
1123	drm_modeset_lock_all(dev);
1124	kfree(plane->format_types);
1125	drm_mode_object_put(dev, &plane->base);
1126
1127	BUG_ON(list_empty(&plane->head));
 
 
 
1128
1129	list_del(&plane->head);
1130	dev->mode_config.num_total_plane--;
1131	if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1132		dev->mode_config.num_overlay_plane--;
1133	drm_modeset_unlock_all(dev);
1134}
1135EXPORT_SYMBOL(drm_plane_cleanup);
1136
1137/**
1138 * drm_plane_force_disable - Forcibly disable a plane
1139 * @plane: plane to disable
 
1140 *
1141 * Forces the plane to be disabled.
 
1142 *
1143 * Used when the plane's current framebuffer is destroyed,
1144 * and when restoring fbdev mode.
1145 */
1146void drm_plane_force_disable(struct drm_plane *plane)
1147{
1148	int ret;
 
1149
1150	if (!plane->fb)
1151		return;
1152
1153	ret = plane->funcs->disable_plane(plane);
1154	if (ret)
1155		DRM_ERROR("failed to disable plane with busy fb\n");
1156	/* disconnect the plane from the fb and crtc: */
1157	__drm_framebuffer_unreference(plane->fb);
1158	plane->fb = NULL;
1159	plane->crtc = NULL;
1160}
1161EXPORT_SYMBOL(drm_plane_force_disable);
1162
1163static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1164{
1165	struct drm_property *edid;
1166	struct drm_property *dpms;
1167
1168	/*
1169	 * Standard properties (apply to all connectors)
1170	 */
1171	edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1172				   DRM_MODE_PROP_IMMUTABLE,
1173				   "EDID", 0);
1174	dev->mode_config.edid_property = edid;
1175
1176	dpms = drm_property_create_enum(dev, 0,
1177				   "DPMS", drm_dpms_enum_list,
1178				   ARRAY_SIZE(drm_dpms_enum_list));
1179	dev->mode_config.dpms_property = dpms;
1180
1181	return 0;
1182}
1183
1184static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1185{
1186	struct drm_property *type;
1187
1188	/*
1189	 * Standard properties (apply to all planes)
1190	 */
1191	type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1192					"type", drm_plane_type_enum_list,
1193					ARRAY_SIZE(drm_plane_type_enum_list));
1194	dev->mode_config.plane_type_property = type;
1195
1196	return 0;
1197}
1198
1199/**
1200 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1201 * @dev: DRM device
1202 *
1203 * Called by a driver the first time a DVI-I connector is made.
1204 */
1205int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1206{
1207	struct drm_property *dvi_i_selector;
1208	struct drm_property *dvi_i_subconnector;
1209
1210	if (dev->mode_config.dvi_i_select_subconnector_property)
1211		return 0;
1212
1213	dvi_i_selector =
1214		drm_property_create_enum(dev, 0,
1215				    "select subconnector",
1216				    drm_dvi_i_select_enum_list,
1217				    ARRAY_SIZE(drm_dvi_i_select_enum_list));
1218	dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1219
1220	dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1221				    "subconnector",
1222				    drm_dvi_i_subconnector_enum_list,
1223				    ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
1224	dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1225
1226	return 0;
1227}
1228EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1229
1230/**
1231 * drm_create_tv_properties - create TV specific connector properties
1232 * @dev: DRM device
1233 * @num_modes: number of different TV formats (modes) supported
1234 * @modes: array of pointers to strings containing name of each format
1235 *
1236 * Called by a driver's TV initialization routine, this function creates
1237 * the TV specific connector properties for a given device.  Caller is
1238 * responsible for allocating a list of format names and passing them to
1239 * this routine.
1240 */
1241int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1242				  char *modes[])
1243{
1244	struct drm_property *tv_selector;
1245	struct drm_property *tv_subconnector;
1246	int i;
1247
1248	if (dev->mode_config.tv_select_subconnector_property)
1249		return 0;
1250
1251	/*
1252	 * Basic connector properties
1253	 */
1254	tv_selector = drm_property_create_enum(dev, 0,
1255					  "select subconnector",
1256					  drm_tv_select_enum_list,
1257					  ARRAY_SIZE(drm_tv_select_enum_list));
1258	dev->mode_config.tv_select_subconnector_property = tv_selector;
1259
1260	tv_subconnector =
1261		drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1262				    "subconnector",
1263				    drm_tv_subconnector_enum_list,
1264				    ARRAY_SIZE(drm_tv_subconnector_enum_list));
1265	dev->mode_config.tv_subconnector_property = tv_subconnector;
1266
1267	/*
1268	 * Other, TV specific properties: margins & TV modes.
1269	 */
1270	dev->mode_config.tv_left_margin_property =
1271		drm_property_create_range(dev, 0, "left margin", 0, 100);
1272
1273	dev->mode_config.tv_right_margin_property =
1274		drm_property_create_range(dev, 0, "right margin", 0, 100);
1275
1276	dev->mode_config.tv_top_margin_property =
1277		drm_property_create_range(dev, 0, "top margin", 0, 100);
1278
1279	dev->mode_config.tv_bottom_margin_property =
1280		drm_property_create_range(dev, 0, "bottom margin", 0, 100);
1281
1282	dev->mode_config.tv_mode_property =
1283		drm_property_create(dev, DRM_MODE_PROP_ENUM,
1284				    "mode", num_modes);
1285	for (i = 0; i < num_modes; i++)
1286		drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1287				      i, modes[i]);
1288
1289	dev->mode_config.tv_brightness_property =
1290		drm_property_create_range(dev, 0, "brightness", 0, 100);
1291
1292	dev->mode_config.tv_contrast_property =
1293		drm_property_create_range(dev, 0, "contrast", 0, 100);
1294
1295	dev->mode_config.tv_flicker_reduction_property =
1296		drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
1297
1298	dev->mode_config.tv_overscan_property =
1299		drm_property_create_range(dev, 0, "overscan", 0, 100);
1300
1301	dev->mode_config.tv_saturation_property =
1302		drm_property_create_range(dev, 0, "saturation", 0, 100);
1303
1304	dev->mode_config.tv_hue_property =
1305		drm_property_create_range(dev, 0, "hue", 0, 100);
1306
1307	return 0;
1308}
1309EXPORT_SYMBOL(drm_mode_create_tv_properties);
1310
1311/**
1312 * drm_mode_create_scaling_mode_property - create scaling mode property
1313 * @dev: DRM device
1314 *
1315 * Called by a driver the first time it's needed, must be attached to desired
1316 * connectors.
1317 */
1318int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1319{
1320	struct drm_property *scaling_mode;
1321
1322	if (dev->mode_config.scaling_mode_property)
1323		return 0;
1324
1325	scaling_mode =
1326		drm_property_create_enum(dev, 0, "scaling mode",
1327				drm_scaling_mode_enum_list,
1328				    ARRAY_SIZE(drm_scaling_mode_enum_list));
1329
1330	dev->mode_config.scaling_mode_property = scaling_mode;
1331
1332	return 0;
1333}
1334EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1335
1336/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1337 * drm_mode_create_dirty_property - create dirty property
1338 * @dev: DRM device
1339 *
1340 * Called by a driver the first time it's needed, must be attached to desired
1341 * connectors.
1342 */
1343int drm_mode_create_dirty_info_property(struct drm_device *dev)
1344{
1345	struct drm_property *dirty_info;
1346
1347	if (dev->mode_config.dirty_info_property)
1348		return 0;
1349
1350	dirty_info =
1351		drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1352				    "dirty",
1353				    drm_dirty_info_enum_list,
1354				    ARRAY_SIZE(drm_dirty_info_enum_list));
1355	dev->mode_config.dirty_info_property = dirty_info;
1356
1357	return 0;
1358}
1359EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1360
1361static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1362{
1363	uint32_t total_objects = 0;
1364
1365	total_objects += dev->mode_config.num_crtc;
1366	total_objects += dev->mode_config.num_connector;
1367	total_objects += dev->mode_config.num_encoder;
1368	total_objects += dev->mode_config.num_bridge;
1369
1370	group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1371	if (!group->id_list)
1372		return -ENOMEM;
1373
1374	group->num_crtcs = 0;
1375	group->num_connectors = 0;
1376	group->num_encoders = 0;
1377	group->num_bridges = 0;
1378	return 0;
1379}
1380
1381/*
1382 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1383 * the drm core's responsibility to set up mode control groups.
1384 */
1385int drm_mode_group_init_legacy_group(struct drm_device *dev,
1386				     struct drm_mode_group *group)
1387{
1388	struct drm_crtc *crtc;
1389	struct drm_encoder *encoder;
1390	struct drm_connector *connector;
1391	struct drm_bridge *bridge;
1392	int ret;
1393
1394	if ((ret = drm_mode_group_init(dev, group)))
1395		return ret;
1396
1397	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1398		group->id_list[group->num_crtcs++] = crtc->base.id;
1399
1400	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1401		group->id_list[group->num_crtcs + group->num_encoders++] =
1402		encoder->base.id;
1403
1404	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1405		group->id_list[group->num_crtcs + group->num_encoders +
1406			       group->num_connectors++] = connector->base.id;
1407
1408	list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1409		group->id_list[group->num_crtcs + group->num_encoders +
1410			       group->num_connectors + group->num_bridges++] =
1411					bridge->base.id;
1412
1413	return 0;
1414}
1415EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
1416
1417/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1418 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1419 * @out: drm_mode_modeinfo struct to return to the user
1420 * @in: drm_display_mode to use
1421 *
 
 
 
1422 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1423 * the user.
1424 */
1425static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1426				      const struct drm_display_mode *in)
1427{
1428	WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1429	     in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1430	     in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1431	     in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1432	     in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1433	     "timing values too large for mode info\n");
1434
1435	out->clock = in->clock;
1436	out->hdisplay = in->hdisplay;
1437	out->hsync_start = in->hsync_start;
1438	out->hsync_end = in->hsync_end;
1439	out->htotal = in->htotal;
1440	out->hskew = in->hskew;
1441	out->vdisplay = in->vdisplay;
1442	out->vsync_start = in->vsync_start;
1443	out->vsync_end = in->vsync_end;
1444	out->vtotal = in->vtotal;
1445	out->vscan = in->vscan;
1446	out->vrefresh = in->vrefresh;
1447	out->flags = in->flags;
1448	out->type = in->type;
1449	strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1450	out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1451}
1452
1453/**
1454 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
1455 * @out: drm_display_mode to return to the user
1456 * @in: drm_mode_modeinfo to use
1457 *
 
 
 
1458 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1459 * the caller.
1460 *
1461 * Returns:
1462 * Zero on success, errno on failure.
1463 */
1464static int drm_crtc_convert_umode(struct drm_display_mode *out,
1465				  const struct drm_mode_modeinfo *in)
1466{
1467	if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1468		return -ERANGE;
1469
1470	if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1471		return -EINVAL;
1472
1473	out->clock = in->clock;
1474	out->hdisplay = in->hdisplay;
1475	out->hsync_start = in->hsync_start;
1476	out->hsync_end = in->hsync_end;
1477	out->htotal = in->htotal;
1478	out->hskew = in->hskew;
1479	out->vdisplay = in->vdisplay;
1480	out->vsync_start = in->vsync_start;
1481	out->vsync_end = in->vsync_end;
1482	out->vtotal = in->vtotal;
1483	out->vscan = in->vscan;
1484	out->vrefresh = in->vrefresh;
1485	out->flags = in->flags;
1486	out->type = in->type;
1487	strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1488	out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1489
1490	return 0;
1491}
1492
1493/**
1494 * drm_mode_getresources - get graphics configuration
1495 * @dev: drm device for the ioctl
1496 * @data: data pointer for the ioctl
1497 * @file_priv: drm file for the ioctl call
 
 
 
 
1498 *
1499 * Construct a set of configuration description structures and return
1500 * them to the user, including CRTC, connector and framebuffer configuration.
1501 *
1502 * Called by the user via ioctl.
1503 *
1504 * Returns:
1505 * Zero on success, errno on failure.
1506 */
1507int drm_mode_getresources(struct drm_device *dev, void *data,
1508			  struct drm_file *file_priv)
1509{
1510	struct drm_mode_card_res *card_res = data;
1511	struct list_head *lh;
1512	struct drm_framebuffer *fb;
1513	struct drm_connector *connector;
1514	struct drm_crtc *crtc;
1515	struct drm_encoder *encoder;
1516	int ret = 0;
1517	int connector_count = 0;
1518	int crtc_count = 0;
1519	int fb_count = 0;
1520	int encoder_count = 0;
1521	int copied = 0, i;
1522	uint32_t __user *fb_id;
1523	uint32_t __user *crtc_id;
1524	uint32_t __user *connector_id;
1525	uint32_t __user *encoder_id;
1526	struct drm_mode_group *mode_group;
1527
1528	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1529		return -EINVAL;
1530
 
1531
1532	mutex_lock(&file_priv->fbs_lock);
1533	/*
1534	 * For the non-control nodes we need to limit the list of resources
1535	 * by IDs in the group list for this node
1536	 */
1537	list_for_each(lh, &file_priv->fbs)
1538		fb_count++;
1539
1540	/* handle this in 4 parts */
1541	/* FBs */
1542	if (card_res->count_fbs >= fb_count) {
1543		copied = 0;
1544		fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1545		list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1546			if (put_user(fb->base.id, fb_id + copied)) {
1547				mutex_unlock(&file_priv->fbs_lock);
1548				return -EFAULT;
1549			}
1550			copied++;
1551		}
1552	}
1553	card_res->count_fbs = fb_count;
1554	mutex_unlock(&file_priv->fbs_lock);
1555
1556	drm_modeset_lock_all(dev);
1557	if (!drm_is_primary_client(file_priv)) {
1558
1559		mode_group = NULL;
1560		list_for_each(lh, &dev->mode_config.crtc_list)
1561			crtc_count++;
1562
1563		list_for_each(lh, &dev->mode_config.connector_list)
1564			connector_count++;
1565
1566		list_for_each(lh, &dev->mode_config.encoder_list)
1567			encoder_count++;
1568	} else {
1569
1570		mode_group = &file_priv->master->minor->mode_group;
1571		crtc_count = mode_group->num_crtcs;
1572		connector_count = mode_group->num_connectors;
1573		encoder_count = mode_group->num_encoders;
1574	}
1575
1576	card_res->max_height = dev->mode_config.max_height;
1577	card_res->min_height = dev->mode_config.min_height;
1578	card_res->max_width = dev->mode_config.max_width;
1579	card_res->min_width = dev->mode_config.min_width;
1580
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1581	/* CRTCs */
1582	if (card_res->count_crtcs >= crtc_count) {
1583		copied = 0;
1584		crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1585		if (!mode_group) {
1586			list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1587					    head) {
1588				DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1589				if (put_user(crtc->base.id, crtc_id + copied)) {
1590					ret = -EFAULT;
1591					goto out;
1592				}
1593				copied++;
1594			}
1595		} else {
1596			for (i = 0; i < mode_group->num_crtcs; i++) {
1597				if (put_user(mode_group->id_list[i],
1598					     crtc_id + copied)) {
1599					ret = -EFAULT;
1600					goto out;
1601				}
1602				copied++;
1603			}
1604		}
1605	}
1606	card_res->count_crtcs = crtc_count;
1607
1608	/* Encoders */
1609	if (card_res->count_encoders >= encoder_count) {
1610		copied = 0;
1611		encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1612		if (!mode_group) {
1613			list_for_each_entry(encoder,
1614					    &dev->mode_config.encoder_list,
1615					    head) {
1616				DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1617						drm_get_encoder_name(encoder));
1618				if (put_user(encoder->base.id, encoder_id +
1619					     copied)) {
1620					ret = -EFAULT;
1621					goto out;
1622				}
1623				copied++;
1624			}
1625		} else {
1626			for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1627				if (put_user(mode_group->id_list[i],
1628					     encoder_id + copied)) {
1629					ret = -EFAULT;
1630					goto out;
1631				}
1632				copied++;
1633			}
1634
1635		}
1636	}
1637	card_res->count_encoders = encoder_count;
1638
1639	/* Connectors */
1640	if (card_res->count_connectors >= connector_count) {
1641		copied = 0;
1642		connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1643		if (!mode_group) {
1644			list_for_each_entry(connector,
1645					    &dev->mode_config.connector_list,
1646					    head) {
1647				DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1648					connector->base.id,
1649					drm_get_connector_name(connector));
1650				if (put_user(connector->base.id,
1651					     connector_id + copied)) {
1652					ret = -EFAULT;
1653					goto out;
1654				}
1655				copied++;
1656			}
1657		} else {
1658			int start = mode_group->num_crtcs +
1659				mode_group->num_encoders;
1660			for (i = start; i < start + mode_group->num_connectors; i++) {
1661				if (put_user(mode_group->id_list[i],
1662					     connector_id + copied)) {
1663					ret = -EFAULT;
1664					goto out;
1665				}
1666				copied++;
1667			}
1668		}
1669	}
1670	card_res->count_connectors = connector_count;
1671
1672	DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
1673		  card_res->count_connectors, card_res->count_encoders);
1674
1675out:
1676	drm_modeset_unlock_all(dev);
1677	return ret;
1678}
1679
1680/**
1681 * drm_mode_getcrtc - get CRTC configuration
1682 * @dev: drm device for the ioctl
1683 * @data: data pointer for the ioctl
1684 * @file_priv: drm file for the ioctl call
 
 
 
 
1685 *
1686 * Construct a CRTC configuration structure to return to the user.
1687 *
1688 * Called by the user via ioctl.
1689 *
1690 * Returns:
1691 * Zero on success, errno on failure.
1692 */
1693int drm_mode_getcrtc(struct drm_device *dev,
1694		     void *data, struct drm_file *file_priv)
1695{
1696	struct drm_mode_crtc *crtc_resp = data;
1697	struct drm_crtc *crtc;
1698	struct drm_mode_object *obj;
1699	int ret = 0;
1700
1701	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1702		return -EINVAL;
1703
1704	drm_modeset_lock_all(dev);
1705
1706	obj = drm_mode_object_find(dev, crtc_resp->crtc_id,
1707				   DRM_MODE_OBJECT_CRTC);
1708	if (!obj) {
1709		ret = -ENOENT;
1710		goto out;
1711	}
1712	crtc = obj_to_crtc(obj);
1713
1714	crtc_resp->x = crtc->x;
1715	crtc_resp->y = crtc->y;
1716	crtc_resp->gamma_size = crtc->gamma_size;
1717	if (crtc->primary->fb)
1718		crtc_resp->fb_id = crtc->primary->fb->base.id;
1719	else
1720		crtc_resp->fb_id = 0;
1721
1722	if (crtc->enabled) {
1723
1724		drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1725		crtc_resp->mode_valid = 1;
1726
1727	} else {
1728		crtc_resp->mode_valid = 0;
1729	}
1730
1731out:
1732	drm_modeset_unlock_all(dev);
1733	return ret;
1734}
1735
1736static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1737					 const struct drm_file *file_priv)
1738{
1739	/*
1740	 * If user-space hasn't configured the driver to expose the stereo 3D
1741	 * modes, don't expose them.
1742	 */
1743	if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1744		return false;
1745
1746	return true;
1747}
1748
1749/**
1750 * drm_mode_getconnector - get connector configuration
1751 * @dev: drm device for the ioctl
1752 * @data: data pointer for the ioctl
1753 * @file_priv: drm file for the ioctl call
 
 
 
 
1754 *
1755 * Construct a connector configuration structure to return to the user.
1756 *
1757 * Called by the user via ioctl.
1758 *
1759 * Returns:
1760 * Zero on success, errno on failure.
1761 */
1762int drm_mode_getconnector(struct drm_device *dev, void *data,
1763			  struct drm_file *file_priv)
1764{
1765	struct drm_mode_get_connector *out_resp = data;
1766	struct drm_mode_object *obj;
1767	struct drm_connector *connector;
1768	struct drm_display_mode *mode;
1769	int mode_count = 0;
1770	int props_count = 0;
1771	int encoders_count = 0;
1772	int ret = 0;
1773	int copied = 0;
1774	int i;
1775	struct drm_mode_modeinfo u_mode;
1776	struct drm_mode_modeinfo __user *mode_ptr;
1777	uint32_t __user *prop_ptr;
1778	uint64_t __user *prop_values;
1779	uint32_t __user *encoder_ptr;
1780
1781	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1782		return -EINVAL;
1783
1784	memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1785
1786	DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
1787
1788	mutex_lock(&dev->mode_config.mutex);
1789
1790	obj = drm_mode_object_find(dev, out_resp->connector_id,
1791				   DRM_MODE_OBJECT_CONNECTOR);
1792	if (!obj) {
1793		ret = -ENOENT;
1794		goto out;
1795	}
1796	connector = obj_to_connector(obj);
1797
1798	props_count = connector->properties.count;
1799
1800	for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1801		if (connector->encoder_ids[i] != 0) {
1802			encoders_count++;
1803		}
1804	}
1805
1806	if (out_resp->count_modes == 0) {
1807		connector->funcs->fill_modes(connector,
1808					     dev->mode_config.max_width,
1809					     dev->mode_config.max_height);
1810	}
1811
1812	/* delayed so we get modes regardless of pre-fill_modes state */
1813	list_for_each_entry(mode, &connector->modes, head)
1814		if (drm_mode_expose_to_userspace(mode, file_priv))
1815			mode_count++;
1816
1817	out_resp->connector_id = connector->base.id;
1818	out_resp->connector_type = connector->connector_type;
1819	out_resp->connector_type_id = connector->connector_type_id;
1820	out_resp->mm_width = connector->display_info.width_mm;
1821	out_resp->mm_height = connector->display_info.height_mm;
1822	out_resp->subpixel = connector->display_info.subpixel_order;
1823	out_resp->connection = connector->status;
1824	if (connector->encoder)
1825		out_resp->encoder_id = connector->encoder->base.id;
1826	else
1827		out_resp->encoder_id = 0;
1828
1829	/*
1830	 * This ioctl is called twice, once to determine how much space is
1831	 * needed, and the 2nd time to fill it.
1832	 */
1833	if ((out_resp->count_modes >= mode_count) && mode_count) {
1834		copied = 0;
1835		mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
1836		list_for_each_entry(mode, &connector->modes, head) {
1837			if (!drm_mode_expose_to_userspace(mode, file_priv))
1838				continue;
1839
1840			drm_crtc_convert_to_umode(&u_mode, mode);
1841			if (copy_to_user(mode_ptr + copied,
1842					 &u_mode, sizeof(u_mode))) {
1843				ret = -EFAULT;
1844				goto out;
1845			}
1846			copied++;
1847		}
1848	}
1849	out_resp->count_modes = mode_count;
1850
1851	if ((out_resp->count_props >= props_count) && props_count) {
1852		copied = 0;
1853		prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1854		prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
1855		for (i = 0; i < connector->properties.count; i++) {
1856			if (put_user(connector->properties.ids[i],
1857				     prop_ptr + copied)) {
1858				ret = -EFAULT;
1859				goto out;
1860			}
1861
1862			if (put_user(connector->properties.values[i],
1863				     prop_values + copied)) {
1864				ret = -EFAULT;
1865				goto out;
1866			}
1867			copied++;
1868		}
1869	}
1870	out_resp->count_props = props_count;
1871
1872	if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1873		copied = 0;
1874		encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
1875		for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1876			if (connector->encoder_ids[i] != 0) {
1877				if (put_user(connector->encoder_ids[i],
1878					     encoder_ptr + copied)) {
1879					ret = -EFAULT;
1880					goto out;
1881				}
1882				copied++;
1883			}
1884		}
1885	}
1886	out_resp->count_encoders = encoders_count;
1887
1888out:
1889	mutex_unlock(&dev->mode_config.mutex);
1890
1891	return ret;
1892}
1893
1894/**
1895 * drm_mode_getencoder - get encoder configuration
1896 * @dev: drm device for the ioctl
1897 * @data: data pointer for the ioctl
1898 * @file_priv: drm file for the ioctl call
1899 *
1900 * Construct a encoder configuration structure to return to the user.
1901 *
1902 * Called by the user via ioctl.
1903 *
1904 * Returns:
1905 * Zero on success, errno on failure.
1906 */
1907int drm_mode_getencoder(struct drm_device *dev, void *data,
1908			struct drm_file *file_priv)
1909{
1910	struct drm_mode_get_encoder *enc_resp = data;
1911	struct drm_mode_object *obj;
1912	struct drm_encoder *encoder;
1913	int ret = 0;
1914
1915	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1916		return -EINVAL;
1917
1918	drm_modeset_lock_all(dev);
1919	obj = drm_mode_object_find(dev, enc_resp->encoder_id,
1920				   DRM_MODE_OBJECT_ENCODER);
1921	if (!obj) {
1922		ret = -ENOENT;
1923		goto out;
1924	}
1925	encoder = obj_to_encoder(obj);
1926
1927	if (encoder->crtc)
1928		enc_resp->crtc_id = encoder->crtc->base.id;
1929	else
1930		enc_resp->crtc_id = 0;
1931	enc_resp->encoder_type = encoder->encoder_type;
1932	enc_resp->encoder_id = encoder->base.id;
1933	enc_resp->possible_crtcs = encoder->possible_crtcs;
1934	enc_resp->possible_clones = encoder->possible_clones;
1935
1936out:
1937	drm_modeset_unlock_all(dev);
1938	return ret;
1939}
1940
1941/**
1942 * drm_mode_getplane_res - enumerate all plane resources
1943 * @dev: DRM device
1944 * @data: ioctl data
1945 * @file_priv: DRM file info
1946 *
1947 * Construct a list of plane ids to return to the user.
 
1948 *
1949 * Called by the user via ioctl.
1950 *
1951 * Returns:
1952 * Zero on success, errno on failure.
1953 */
1954int drm_mode_getplane_res(struct drm_device *dev, void *data,
1955			  struct drm_file *file_priv)
1956{
1957	struct drm_mode_get_plane_res *plane_resp = data;
1958	struct drm_mode_config *config;
1959	struct drm_plane *plane;
1960	uint32_t __user *plane_ptr;
1961	int copied = 0, ret = 0;
1962	unsigned num_planes;
1963
1964	if (!drm_core_check_feature(dev, DRIVER_MODESET))
1965		return -EINVAL;
1966
1967	drm_modeset_lock_all(dev);
1968	config = &dev->mode_config;
1969
1970	if (file_priv->universal_planes)
1971		num_planes = config->num_total_plane;
1972	else
1973		num_planes = config->num_overlay_plane;
1974
1975	/*
1976	 * This ioctl is called twice, once to determine how much space is
1977	 * needed, and the 2nd time to fill it.
1978	 */
1979	if (num_planes &&
1980	    (plane_resp->count_planes >= num_planes)) {
1981		plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
1982
1983		list_for_each_entry(plane, &config->plane_list, head) {
1984			/*
1985			 * Unless userspace set the 'universal planes'
1986			 * capability bit, only advertise overlays.
1987			 */
1988			if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
1989			    !file_priv->universal_planes)
1990				continue;
1991
1992			if (put_user(plane->base.id, plane_ptr + copied)) {
1993				ret = -EFAULT;
1994				goto out;
1995			}
1996			copied++;
1997		}
1998	}
1999	plane_resp->count_planes = num_planes;
2000
2001out:
2002	drm_modeset_unlock_all(dev);
2003	return ret;
2004}
2005
2006/**
2007 * drm_mode_getplane - get plane configuration
2008 * @dev: DRM device
2009 * @data: ioctl data
2010 * @file_priv: DRM file info
2011 *
2012 * Construct a plane configuration structure to return to the user.
 
2013 *
2014 * Called by the user via ioctl.
2015 *
2016 * Returns:
2017 * Zero on success, errno on failure.
2018 */
2019int drm_mode_getplane(struct drm_device *dev, void *data,
2020		      struct drm_file *file_priv)
2021{
2022	struct drm_mode_get_plane *plane_resp = data;
2023	struct drm_mode_object *obj;
2024	struct drm_plane *plane;
2025	uint32_t __user *format_ptr;
2026	int ret = 0;
2027
2028	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2029		return -EINVAL;
2030
2031	drm_modeset_lock_all(dev);
2032	obj = drm_mode_object_find(dev, plane_resp->plane_id,
2033				   DRM_MODE_OBJECT_PLANE);
2034	if (!obj) {
2035		ret = -ENOENT;
2036		goto out;
2037	}
2038	plane = obj_to_plane(obj);
2039
2040	if (plane->crtc)
2041		plane_resp->crtc_id = plane->crtc->base.id;
2042	else
2043		plane_resp->crtc_id = 0;
2044
2045	if (plane->fb)
2046		plane_resp->fb_id = plane->fb->base.id;
2047	else
2048		plane_resp->fb_id = 0;
2049
2050	plane_resp->plane_id = plane->base.id;
2051	plane_resp->possible_crtcs = plane->possible_crtcs;
2052	plane_resp->gamma_size = 0;
2053
2054	/*
2055	 * This ioctl is called twice, once to determine how much space is
2056	 * needed, and the 2nd time to fill it.
2057	 */
2058	if (plane->format_count &&
2059	    (plane_resp->count_format_types >= plane->format_count)) {
2060		format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
2061		if (copy_to_user(format_ptr,
2062				 plane->format_types,
2063				 sizeof(uint32_t) * plane->format_count)) {
2064			ret = -EFAULT;
2065			goto out;
2066		}
2067	}
2068	plane_resp->count_format_types = plane->format_count;
2069
2070out:
2071	drm_modeset_unlock_all(dev);
2072	return ret;
2073}
2074
2075/**
2076 * drm_mode_setplane - configure a plane's configuration
2077 * @dev: DRM device
2078 * @data: ioctl data*
2079 * @file_priv: DRM file info
 
 
 
2080 *
2081 * Set plane configuration, including placement, fb, scaling, and other factors.
2082 * Or pass a NULL fb to disable.
2083 *
2084 * Returns:
2085 * Zero on success, errno on failure.
2086 */
2087int drm_mode_setplane(struct drm_device *dev, void *data,
2088		      struct drm_file *file_priv)
2089{
2090	struct drm_mode_set_plane *plane_req = data;
2091	struct drm_mode_object *obj;
2092	struct drm_plane *plane;
2093	struct drm_crtc *crtc;
2094	struct drm_framebuffer *fb = NULL, *old_fb = NULL;
2095	int ret = 0;
2096	unsigned int fb_width, fb_height;
2097	int i;
2098
2099	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2100		return -EINVAL;
2101
 
 
2102	/*
2103	 * First, find the plane, crtc, and fb objects.  If not available,
2104	 * we don't bother to call the driver.
2105	 */
2106	obj = drm_mode_object_find(dev, plane_req->plane_id,
2107				   DRM_MODE_OBJECT_PLANE);
2108	if (!obj) {
2109		DRM_DEBUG_KMS("Unknown plane ID %d\n",
2110			      plane_req->plane_id);
2111		return -ENOENT;
 
2112	}
2113	plane = obj_to_plane(obj);
2114
2115	/* No fb means shut it down */
2116	if (!plane_req->fb_id) {
2117		drm_modeset_lock_all(dev);
2118		old_fb = plane->fb;
2119		plane->funcs->disable_plane(plane);
2120		plane->crtc = NULL;
2121		plane->fb = NULL;
2122		drm_modeset_unlock_all(dev);
2123		goto out;
2124	}
2125
2126	obj = drm_mode_object_find(dev, plane_req->crtc_id,
2127				   DRM_MODE_OBJECT_CRTC);
2128	if (!obj) {
2129		DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2130			      plane_req->crtc_id);
2131		ret = -ENOENT;
2132		goto out;
2133	}
2134	crtc = obj_to_crtc(obj);
2135
2136	fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2137	if (!fb) {
 
2138		DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2139			      plane_req->fb_id);
2140		ret = -ENOENT;
2141		goto out;
2142	}
 
2143
2144	/* Check whether this plane supports the fb pixel format. */
2145	for (i = 0; i < plane->format_count; i++)
2146		if (fb->pixel_format == plane->format_types[i])
2147			break;
2148	if (i == plane->format_count) {
2149		DRM_DEBUG_KMS("Invalid pixel format %s\n",
2150			      drm_get_format_name(fb->pixel_format));
2151		ret = -EINVAL;
2152		goto out;
2153	}
2154
2155	fb_width = fb->width << 16;
2156	fb_height = fb->height << 16;
2157
2158	/* Make sure source coordinates are inside the fb. */
2159	if (plane_req->src_w > fb_width ||
2160	    plane_req->src_x > fb_width - plane_req->src_w ||
2161	    plane_req->src_h > fb_height ||
2162	    plane_req->src_y > fb_height - plane_req->src_h) {
2163		DRM_DEBUG_KMS("Invalid source coordinates "
2164			      "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2165			      plane_req->src_w >> 16,
2166			      ((plane_req->src_w & 0xffff) * 15625) >> 10,
2167			      plane_req->src_h >> 16,
2168			      ((plane_req->src_h & 0xffff) * 15625) >> 10,
2169			      plane_req->src_x >> 16,
2170			      ((plane_req->src_x & 0xffff) * 15625) >> 10,
2171			      plane_req->src_y >> 16,
2172			      ((plane_req->src_y & 0xffff) * 15625) >> 10);
2173		ret = -ENOSPC;
2174		goto out;
2175	}
2176
2177	/* Give drivers some help against integer overflows */
2178	if (plane_req->crtc_w > INT_MAX ||
2179	    plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2180	    plane_req->crtc_h > INT_MAX ||
2181	    plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2182		DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2183			      plane_req->crtc_w, plane_req->crtc_h,
2184			      plane_req->crtc_x, plane_req->crtc_y);
2185		ret = -ERANGE;
2186		goto out;
2187	}
2188
2189	drm_modeset_lock_all(dev);
2190	ret = plane->funcs->update_plane(plane, crtc, fb,
2191					 plane_req->crtc_x, plane_req->crtc_y,
2192					 plane_req->crtc_w, plane_req->crtc_h,
2193					 plane_req->src_x, plane_req->src_y,
2194					 plane_req->src_w, plane_req->src_h);
2195	if (!ret) {
2196		old_fb = plane->fb;
2197		plane->crtc = crtc;
2198		plane->fb = fb;
2199		fb = NULL;
2200	}
2201	drm_modeset_unlock_all(dev);
2202
2203out:
2204	if (fb)
2205		drm_framebuffer_unreference(fb);
2206	if (old_fb)
2207		drm_framebuffer_unreference(old_fb);
2208
2209	return ret;
2210}
2211
2212/**
2213 * drm_mode_set_config_internal - helper to call ->set_config
2214 * @set: modeset config to set
 
 
 
2215 *
2216 * This is a little helper to wrap internal calls to the ->set_config driver
2217 * interface. The only thing it adds is correct refcounting dance.
2218 * 
2219 * Returns:
2220 * Zero on success, errno on failure.
2221 */
2222int drm_mode_set_config_internal(struct drm_mode_set *set)
2223{
2224	struct drm_crtc *crtc = set->crtc;
2225	struct drm_framebuffer *fb;
2226	struct drm_crtc *tmp;
2227	int ret;
2228
2229	/*
2230	 * NOTE: ->set_config can also disable other crtcs (if we steal all
2231	 * connectors from it), hence we need to refcount the fbs across all
2232	 * crtcs. Atomic modeset will have saner semantics ...
2233	 */
2234	list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
2235		tmp->old_fb = tmp->primary->fb;
2236
2237	fb = set->fb;
2238
2239	ret = crtc->funcs->set_config(set);
2240	if (ret == 0) {
2241		crtc->primary->crtc = crtc;
2242
2243		/* crtc->fb must be updated by ->set_config, enforces this. */
2244		WARN_ON(fb != crtc->primary->fb);
2245	}
2246
2247	list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
2248		if (tmp->primary->fb)
2249			drm_framebuffer_reference(tmp->primary->fb);
2250		if (tmp->old_fb)
2251			drm_framebuffer_unreference(tmp->old_fb);
2252	}
2253
2254	return ret;
2255}
2256EXPORT_SYMBOL(drm_mode_set_config_internal);
2257
2258/**
2259 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2260 *     CRTC viewport
2261 * @crtc: CRTC that framebuffer will be displayed on
2262 * @x: x panning
2263 * @y: y panning
2264 * @mode: mode that framebuffer will be displayed under
2265 * @fb: framebuffer to check size of
2266 */
2267int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2268			    int x, int y,
2269			    const struct drm_display_mode *mode,
2270			    const struct drm_framebuffer *fb)
2271
2272{
2273	int hdisplay, vdisplay;
2274
2275	hdisplay = mode->hdisplay;
2276	vdisplay = mode->vdisplay;
2277
2278	if (drm_mode_is_stereo(mode)) {
2279		struct drm_display_mode adjusted = *mode;
2280
2281		drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2282		hdisplay = adjusted.crtc_hdisplay;
2283		vdisplay = adjusted.crtc_vdisplay;
2284	}
2285
2286	if (crtc->invert_dimensions)
2287		swap(hdisplay, vdisplay);
2288
2289	if (hdisplay > fb->width ||
2290	    vdisplay > fb->height ||
2291	    x > fb->width - hdisplay ||
2292	    y > fb->height - vdisplay) {
2293		DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2294			      fb->width, fb->height, hdisplay, vdisplay, x, y,
2295			      crtc->invert_dimensions ? " (inverted)" : "");
2296		return -ENOSPC;
2297	}
2298
2299	return 0;
2300}
2301EXPORT_SYMBOL(drm_crtc_check_viewport);
2302
2303/**
2304 * drm_mode_setcrtc - set CRTC configuration
2305 * @dev: drm device for the ioctl
2306 * @data: data pointer for the ioctl
2307 * @file_priv: drm file for the ioctl call
2308 *
2309 * Build a new CRTC configuration based on user request.
2310 *
2311 * Called by the user via ioctl.
2312 *
2313 * Returns:
2314 * Zero on success, errno on failure.
2315 */
2316int drm_mode_setcrtc(struct drm_device *dev, void *data,
2317		     struct drm_file *file_priv)
2318{
2319	struct drm_mode_config *config = &dev->mode_config;
2320	struct drm_mode_crtc *crtc_req = data;
2321	struct drm_mode_object *obj;
2322	struct drm_crtc *crtc;
2323	struct drm_connector **connector_set = NULL, *connector;
2324	struct drm_framebuffer *fb = NULL;
2325	struct drm_display_mode *mode = NULL;
2326	struct drm_mode_set set;
2327	uint32_t __user *set_connectors_ptr;
2328	int ret;
2329	int i;
2330
2331	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2332		return -EINVAL;
2333
2334	/* For some reason crtc x/y offsets are signed internally. */
2335	if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2336		return -ERANGE;
2337
2338	drm_modeset_lock_all(dev);
2339	obj = drm_mode_object_find(dev, crtc_req->crtc_id,
2340				   DRM_MODE_OBJECT_CRTC);
2341	if (!obj) {
2342		DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
2343		ret = -ENOENT;
2344		goto out;
2345	}
2346	crtc = obj_to_crtc(obj);
2347	DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
2348
2349	if (crtc_req->mode_valid) {
2350		/* If we have a mode we need a framebuffer. */
2351		/* If we pass -1, set the mode with the currently bound fb */
2352		if (crtc_req->fb_id == -1) {
2353			if (!crtc->primary->fb) {
2354				DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2355				ret = -EINVAL;
2356				goto out;
2357			}
2358			fb = crtc->primary->fb;
2359			/* Make refcounting symmetric with the lookup path. */
2360			drm_framebuffer_reference(fb);
2361		} else {
2362			fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2363			if (!fb) {
 
2364				DRM_DEBUG_KMS("Unknown FB ID%d\n",
2365						crtc_req->fb_id);
2366				ret = -ENOENT;
2367				goto out;
2368			}
 
2369		}
2370
2371		mode = drm_mode_create(dev);
2372		if (!mode) {
2373			ret = -ENOMEM;
2374			goto out;
2375		}
2376
2377		ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2378		if (ret) {
2379			DRM_DEBUG_KMS("Invalid mode\n");
2380			goto out;
2381		}
2382
2383		drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
2384
2385		ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2386					      mode, fb);
2387		if (ret)
 
 
 
 
 
 
2388			goto out;
2389
2390	}
2391
2392	if (crtc_req->count_connectors == 0 && mode) {
2393		DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
2394		ret = -EINVAL;
2395		goto out;
2396	}
2397
2398	if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
2399		DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
2400			  crtc_req->count_connectors);
2401		ret = -EINVAL;
2402		goto out;
2403	}
2404
2405	if (crtc_req->count_connectors > 0) {
2406		u32 out_id;
2407
2408		/* Avoid unbounded kernel memory allocation */
2409		if (crtc_req->count_connectors > config->num_connector) {
2410			ret = -EINVAL;
2411			goto out;
2412		}
2413
2414		connector_set = kmalloc(crtc_req->count_connectors *
2415					sizeof(struct drm_connector *),
2416					GFP_KERNEL);
2417		if (!connector_set) {
2418			ret = -ENOMEM;
2419			goto out;
2420		}
2421
2422		for (i = 0; i < crtc_req->count_connectors; i++) {
2423			set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
2424			if (get_user(out_id, &set_connectors_ptr[i])) {
2425				ret = -EFAULT;
2426				goto out;
2427			}
2428
2429			obj = drm_mode_object_find(dev, out_id,
2430						   DRM_MODE_OBJECT_CONNECTOR);
2431			if (!obj) {
2432				DRM_DEBUG_KMS("Connector id %d unknown\n",
2433						out_id);
2434				ret = -ENOENT;
2435				goto out;
2436			}
2437			connector = obj_to_connector(obj);
2438			DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2439					connector->base.id,
2440					drm_get_connector_name(connector));
2441
2442			connector_set[i] = connector;
2443		}
2444	}
2445
2446	set.crtc = crtc;
2447	set.x = crtc_req->x;
2448	set.y = crtc_req->y;
2449	set.mode = mode;
2450	set.connectors = connector_set;
2451	set.num_connectors = crtc_req->count_connectors;
2452	set.fb = fb;
2453	ret = drm_mode_set_config_internal(&set);
2454
2455out:
2456	if (fb)
2457		drm_framebuffer_unreference(fb);
2458
2459	kfree(connector_set);
2460	drm_mode_destroy(dev, mode);
2461	drm_modeset_unlock_all(dev);
2462	return ret;
2463}
2464
2465static int drm_mode_cursor_common(struct drm_device *dev,
2466				  struct drm_mode_cursor2 *req,
2467				  struct drm_file *file_priv)
2468{
 
2469	struct drm_mode_object *obj;
2470	struct drm_crtc *crtc;
2471	int ret = 0;
2472
2473	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2474		return -EINVAL;
2475
2476	if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
2477		return -EINVAL;
2478
 
2479	obj = drm_mode_object_find(dev, req->crtc_id, DRM_MODE_OBJECT_CRTC);
2480	if (!obj) {
2481		DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
2482		return -ENOENT;
 
2483	}
2484	crtc = obj_to_crtc(obj);
2485
2486	mutex_lock(&crtc->mutex);
2487	if (req->flags & DRM_MODE_CURSOR_BO) {
2488		if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
2489			ret = -ENXIO;
2490			goto out;
2491		}
2492		/* Turns off the cursor if handle is 0 */
2493		if (crtc->funcs->cursor_set2)
2494			ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2495						      req->width, req->height, req->hot_x, req->hot_y);
2496		else
2497			ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2498						      req->width, req->height);
2499	}
2500
2501	if (req->flags & DRM_MODE_CURSOR_MOVE) {
2502		if (crtc->funcs->cursor_move) {
2503			ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2504		} else {
2505			ret = -EFAULT;
2506			goto out;
2507		}
2508	}
2509out:
2510	mutex_unlock(&crtc->mutex);
2511
2512	return ret;
2513
2514}
2515
2516
2517/**
2518 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2519 * @dev: drm device for the ioctl
2520 * @data: data pointer for the ioctl
2521 * @file_priv: drm file for the ioctl call
2522 *
2523 * Set the cursor configuration based on user request.
2524 *
2525 * Called by the user via ioctl.
2526 *
2527 * Returns:
2528 * Zero on success, errno on failure.
2529 */
2530int drm_mode_cursor_ioctl(struct drm_device *dev,
2531			  void *data, struct drm_file *file_priv)
2532{
2533	struct drm_mode_cursor *req = data;
2534	struct drm_mode_cursor2 new_req;
2535
2536	memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2537	new_req.hot_x = new_req.hot_y = 0;
2538
2539	return drm_mode_cursor_common(dev, &new_req, file_priv);
2540}
2541
2542/**
2543 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2544 * @dev: drm device for the ioctl
2545 * @data: data pointer for the ioctl
2546 * @file_priv: drm file for the ioctl call
2547 *
2548 * Set the cursor configuration based on user request. This implements the 2nd
2549 * version of the cursor ioctl, which allows userspace to additionally specify
2550 * the hotspot of the pointer.
2551 *
2552 * Called by the user via ioctl.
2553 *
2554 * Returns:
2555 * Zero on success, errno on failure.
2556 */
2557int drm_mode_cursor2_ioctl(struct drm_device *dev,
2558			   void *data, struct drm_file *file_priv)
2559{
2560	struct drm_mode_cursor2 *req = data;
2561	return drm_mode_cursor_common(dev, req, file_priv);
2562}
2563
2564/**
2565 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2566 * @bpp: bits per pixels
2567 * @depth: bit depth per pixel
2568 *
2569 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2570 * Useful in fbdev emulation code, since that deals in those values.
2571 */
2572uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2573{
2574	uint32_t fmt;
2575
2576	switch (bpp) {
2577	case 8:
2578		fmt = DRM_FORMAT_C8;
2579		break;
2580	case 16:
2581		if (depth == 15)
2582			fmt = DRM_FORMAT_XRGB1555;
2583		else
2584			fmt = DRM_FORMAT_RGB565;
2585		break;
2586	case 24:
2587		fmt = DRM_FORMAT_RGB888;
2588		break;
2589	case 32:
2590		if (depth == 24)
2591			fmt = DRM_FORMAT_XRGB8888;
2592		else if (depth == 30)
2593			fmt = DRM_FORMAT_XRGB2101010;
2594		else
2595			fmt = DRM_FORMAT_ARGB8888;
2596		break;
2597	default:
2598		DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2599		fmt = DRM_FORMAT_XRGB8888;
2600		break;
2601	}
2602
2603	return fmt;
2604}
2605EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2606
2607/**
2608 * drm_mode_addfb - add an FB to the graphics configuration
2609 * @dev: drm device for the ioctl
2610 * @data: data pointer for the ioctl
2611 * @file_priv: drm file for the ioctl call
 
 
 
 
2612 *
2613 * Add a new FB to the specified CRTC, given a user request. This is the
2614 * original addfb ioclt which only supported RGB formats.
2615 *
2616 * Called by the user via ioctl.
2617 *
2618 * Returns:
2619 * Zero on success, errno on failure.
2620 */
2621int drm_mode_addfb(struct drm_device *dev,
2622		   void *data, struct drm_file *file_priv)
2623{
2624	struct drm_mode_fb_cmd *or = data;
2625	struct drm_mode_fb_cmd2 r = {};
2626	struct drm_mode_config *config = &dev->mode_config;
2627	struct drm_framebuffer *fb;
2628	int ret = 0;
2629
2630	/* Use new struct with format internally */
2631	r.fb_id = or->fb_id;
2632	r.width = or->width;
2633	r.height = or->height;
2634	r.pitches[0] = or->pitch;
2635	r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2636	r.handles[0] = or->handle;
2637
2638	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2639		return -EINVAL;
2640
2641	if ((config->min_width > r.width) || (r.width > config->max_width))
2642		return -EINVAL;
2643
2644	if ((config->min_height > r.height) || (r.height > config->max_height))
2645		return -EINVAL;
2646
 
 
 
 
 
2647	fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2648	if (IS_ERR(fb)) {
2649		DRM_DEBUG_KMS("could not create framebuffer\n");
2650		return PTR_ERR(fb);
 
2651	}
2652
2653	mutex_lock(&file_priv->fbs_lock);
2654	or->fb_id = fb->base.id;
2655	list_add(&fb->filp_head, &file_priv->fbs);
2656	DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
2657	mutex_unlock(&file_priv->fbs_lock);
2658
 
 
2659	return ret;
2660}
2661
2662static int format_check(const struct drm_mode_fb_cmd2 *r)
2663{
2664	uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2665
2666	switch (format) {
2667	case DRM_FORMAT_C8:
2668	case DRM_FORMAT_RGB332:
2669	case DRM_FORMAT_BGR233:
2670	case DRM_FORMAT_XRGB4444:
2671	case DRM_FORMAT_XBGR4444:
2672	case DRM_FORMAT_RGBX4444:
2673	case DRM_FORMAT_BGRX4444:
2674	case DRM_FORMAT_ARGB4444:
2675	case DRM_FORMAT_ABGR4444:
2676	case DRM_FORMAT_RGBA4444:
2677	case DRM_FORMAT_BGRA4444:
2678	case DRM_FORMAT_XRGB1555:
2679	case DRM_FORMAT_XBGR1555:
2680	case DRM_FORMAT_RGBX5551:
2681	case DRM_FORMAT_BGRX5551:
2682	case DRM_FORMAT_ARGB1555:
2683	case DRM_FORMAT_ABGR1555:
2684	case DRM_FORMAT_RGBA5551:
2685	case DRM_FORMAT_BGRA5551:
2686	case DRM_FORMAT_RGB565:
2687	case DRM_FORMAT_BGR565:
2688	case DRM_FORMAT_RGB888:
2689	case DRM_FORMAT_BGR888:
2690	case DRM_FORMAT_XRGB8888:
2691	case DRM_FORMAT_XBGR8888:
2692	case DRM_FORMAT_RGBX8888:
2693	case DRM_FORMAT_BGRX8888:
2694	case DRM_FORMAT_ARGB8888:
2695	case DRM_FORMAT_ABGR8888:
2696	case DRM_FORMAT_RGBA8888:
2697	case DRM_FORMAT_BGRA8888:
2698	case DRM_FORMAT_XRGB2101010:
2699	case DRM_FORMAT_XBGR2101010:
2700	case DRM_FORMAT_RGBX1010102:
2701	case DRM_FORMAT_BGRX1010102:
2702	case DRM_FORMAT_ARGB2101010:
2703	case DRM_FORMAT_ABGR2101010:
2704	case DRM_FORMAT_RGBA1010102:
2705	case DRM_FORMAT_BGRA1010102:
2706	case DRM_FORMAT_YUYV:
2707	case DRM_FORMAT_YVYU:
2708	case DRM_FORMAT_UYVY:
2709	case DRM_FORMAT_VYUY:
2710	case DRM_FORMAT_AYUV:
2711	case DRM_FORMAT_NV12:
2712	case DRM_FORMAT_NV21:
2713	case DRM_FORMAT_NV16:
2714	case DRM_FORMAT_NV61:
2715	case DRM_FORMAT_NV24:
2716	case DRM_FORMAT_NV42:
2717	case DRM_FORMAT_YUV410:
2718	case DRM_FORMAT_YVU410:
2719	case DRM_FORMAT_YUV411:
2720	case DRM_FORMAT_YVU411:
2721	case DRM_FORMAT_YUV420:
2722	case DRM_FORMAT_YVU420:
2723	case DRM_FORMAT_YUV422:
2724	case DRM_FORMAT_YVU422:
2725	case DRM_FORMAT_YUV444:
2726	case DRM_FORMAT_YVU444:
2727		return 0;
2728	default:
2729		DRM_DEBUG_KMS("invalid pixel format %s\n",
2730			      drm_get_format_name(r->pixel_format));
2731		return -EINVAL;
2732	}
2733}
2734
2735static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
2736{
2737	int ret, hsub, vsub, num_planes, i;
2738
2739	ret = format_check(r);
2740	if (ret) {
2741		DRM_DEBUG_KMS("bad framebuffer format %s\n",
2742			      drm_get_format_name(r->pixel_format));
2743		return ret;
2744	}
2745
2746	hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2747	vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2748	num_planes = drm_format_num_planes(r->pixel_format);
2749
2750	if (r->width == 0 || r->width % hsub) {
2751		DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
2752		return -EINVAL;
2753	}
2754
2755	if (r->height == 0 || r->height % vsub) {
2756		DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
2757		return -EINVAL;
2758	}
2759
2760	for (i = 0; i < num_planes; i++) {
2761		unsigned int width = r->width / (i != 0 ? hsub : 1);
2762		unsigned int height = r->height / (i != 0 ? vsub : 1);
2763		unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
2764
2765		if (!r->handles[i]) {
2766			DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
2767			return -EINVAL;
2768		}
2769
2770		if ((uint64_t) width * cpp > UINT_MAX)
2771			return -ERANGE;
2772
2773		if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
2774			return -ERANGE;
2775
2776		if (r->pitches[i] < width * cpp) {
2777			DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
2778			return -EINVAL;
2779		}
2780	}
2781
2782	return 0;
2783}
2784
2785/**
2786 * drm_mode_addfb2 - add an FB to the graphics configuration
2787 * @dev: drm device for the ioctl
2788 * @data: data pointer for the ioctl
2789 * @file_priv: drm file for the ioctl call
2790 *
2791 * Add a new FB to the specified CRTC, given a user request with format. This is
2792 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
2793 * and uses fourcc codes as pixel format specifiers.
 
 
2794 *
2795 * Called by the user via ioctl.
2796 *
2797 * Returns:
2798 * Zero on success, errno on failure.
2799 */
2800int drm_mode_addfb2(struct drm_device *dev,
2801		    void *data, struct drm_file *file_priv)
2802{
2803	struct drm_mode_fb_cmd2 *r = data;
2804	struct drm_mode_config *config = &dev->mode_config;
2805	struct drm_framebuffer *fb;
2806	int ret;
2807
2808	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2809		return -EINVAL;
2810
2811	if (r->flags & ~DRM_MODE_FB_INTERLACED) {
2812		DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
2813		return -EINVAL;
2814	}
2815
2816	if ((config->min_width > r->width) || (r->width > config->max_width)) {
2817		DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
2818			  r->width, config->min_width, config->max_width);
2819		return -EINVAL;
2820	}
2821	if ((config->min_height > r->height) || (r->height > config->max_height)) {
2822		DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
2823			  r->height, config->min_height, config->max_height);
2824		return -EINVAL;
2825	}
2826
2827	ret = framebuffer_check(r);
2828	if (ret)
2829		return ret;
2830
 
 
2831	fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
2832	if (IS_ERR(fb)) {
2833		DRM_DEBUG_KMS("could not create framebuffer\n");
2834		return PTR_ERR(fb);
 
2835	}
2836
2837	mutex_lock(&file_priv->fbs_lock);
2838	r->fb_id = fb->base.id;
2839	list_add(&fb->filp_head, &file_priv->fbs);
2840	DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
2841	mutex_unlock(&file_priv->fbs_lock);
2842
2843
 
 
2844	return ret;
2845}
2846
2847/**
2848 * drm_mode_rmfb - remove an FB from the configuration
2849 * @dev: drm device for the ioctl
2850 * @data: data pointer for the ioctl
2851 * @file_priv: drm file for the ioctl call
 
 
 
 
2852 *
2853 * Remove the FB specified by the user.
2854 *
2855 * Called by the user via ioctl.
2856 *
2857 * Returns:
2858 * Zero on success, errno on failure.
2859 */
2860int drm_mode_rmfb(struct drm_device *dev,
2861		   void *data, struct drm_file *file_priv)
2862{
 
2863	struct drm_framebuffer *fb = NULL;
2864	struct drm_framebuffer *fbl = NULL;
2865	uint32_t *id = data;
 
2866	int found = 0;
2867
2868	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2869		return -EINVAL;
2870
2871	mutex_lock(&file_priv->fbs_lock);
2872	mutex_lock(&dev->mode_config.fb_lock);
2873	fb = __drm_framebuffer_lookup(dev, *id);
2874	if (!fb)
2875		goto fail_lookup;
 
 
 
2876
2877	list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2878		if (fb == fbl)
2879			found = 1;
2880	if (!found)
2881		goto fail_lookup;
2882
2883	/* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2884	__drm_framebuffer_unregister(dev, fb);
 
 
2885
2886	list_del_init(&fb->filp_head);
2887	mutex_unlock(&dev->mode_config.fb_lock);
2888	mutex_unlock(&file_priv->fbs_lock);
2889
2890	drm_framebuffer_remove(fb);
 
2891
2892	return 0;
2893
2894fail_lookup:
2895	mutex_unlock(&dev->mode_config.fb_lock);
2896	mutex_unlock(&file_priv->fbs_lock);
2897
2898	return -ENOENT;
2899}
2900
2901/**
2902 * drm_mode_getfb - get FB info
2903 * @dev: drm device for the ioctl
2904 * @data: data pointer for the ioctl
2905 * @file_priv: drm file for the ioctl call
 
 
 
 
2906 *
2907 * Lookup the FB given its ID and return info about it.
2908 *
2909 * Called by the user via ioctl.
2910 *
2911 * Returns:
2912 * Zero on success, errno on failure.
2913 */
2914int drm_mode_getfb(struct drm_device *dev,
2915		   void *data, struct drm_file *file_priv)
2916{
2917	struct drm_mode_fb_cmd *r = data;
 
2918	struct drm_framebuffer *fb;
2919	int ret;
2920
2921	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2922		return -EINVAL;
2923
2924	fb = drm_framebuffer_lookup(dev, r->fb_id);
2925	if (!fb)
2926		return -ENOENT;
 
 
 
 
2927
2928	r->height = fb->height;
2929	r->width = fb->width;
2930	r->depth = fb->depth;
2931	r->bpp = fb->bits_per_pixel;
2932	r->pitch = fb->pitches[0];
2933	if (fb->funcs->create_handle) {
2934		if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
2935		    drm_is_control_client(file_priv)) {
2936			ret = fb->funcs->create_handle(fb, file_priv,
2937						       &r->handle);
2938		} else {
2939			/* GET_FB() is an unprivileged ioctl so we must not
2940			 * return a buffer-handle to non-master processes! For
2941			 * backwards-compatibility reasons, we cannot make
2942			 * GET_FB() privileged, so just return an invalid handle
2943			 * for non-masters. */
2944			r->handle = 0;
2945			ret = 0;
2946		}
2947	} else {
2948		ret = -ENODEV;
2949	}
2950
2951	drm_framebuffer_unreference(fb);
2952
 
 
2953	return ret;
2954}
2955
2956/**
2957 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
2958 * @dev: drm device for the ioctl
2959 * @data: data pointer for the ioctl
2960 * @file_priv: drm file for the ioctl call
2961 *
2962 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
2963 * rectangle list. Generic userspace which does frontbuffer rendering must call
2964 * this ioctl to flush out the changes on manual-update display outputs, e.g.
2965 * usb display-link, mipi manual update panels or edp panel self refresh modes.
2966 *
2967 * Modesetting drivers which always update the frontbuffer do not need to
2968 * implement the corresponding ->dirty framebuffer callback.
2969 *
2970 * Called by the user via ioctl.
2971 *
2972 * Returns:
2973 * Zero on success, errno on failure.
2974 */
2975int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
2976			   void *data, struct drm_file *file_priv)
2977{
2978	struct drm_clip_rect __user *clips_ptr;
2979	struct drm_clip_rect *clips = NULL;
2980	struct drm_mode_fb_dirty_cmd *r = data;
 
2981	struct drm_framebuffer *fb;
2982	unsigned flags;
2983	int num_clips;
2984	int ret;
2985
2986	if (!drm_core_check_feature(dev, DRIVER_MODESET))
2987		return -EINVAL;
2988
2989	fb = drm_framebuffer_lookup(dev, r->fb_id);
2990	if (!fb)
2991		return -ENOENT;
 
 
 
 
2992
2993	num_clips = r->num_clips;
2994	clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
2995
2996	if (!num_clips != !clips_ptr) {
2997		ret = -EINVAL;
2998		goto out_err1;
2999	}
3000
3001	flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3002
3003	/* If userspace annotates copy, clips must come in pairs */
3004	if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3005		ret = -EINVAL;
3006		goto out_err1;
3007	}
3008
3009	if (num_clips && clips_ptr) {
3010		if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3011			ret = -EINVAL;
3012			goto out_err1;
3013		}
3014		clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3015		if (!clips) {
3016			ret = -ENOMEM;
3017			goto out_err1;
3018		}
3019
3020		ret = copy_from_user(clips, clips_ptr,
3021				     num_clips * sizeof(*clips));
3022		if (ret) {
3023			ret = -EFAULT;
3024			goto out_err2;
3025		}
3026	}
3027
3028	if (fb->funcs->dirty) {
3029		ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3030				       clips, num_clips);
3031	} else {
3032		ret = -ENOSYS;
 
3033	}
3034
3035out_err2:
3036	kfree(clips);
3037out_err1:
3038	drm_framebuffer_unreference(fb);
3039
3040	return ret;
3041}
3042
3043
3044/**
3045 * drm_fb_release - remove and free the FBs on this file
3046 * @priv: drm file for the ioctl
 
 
 
3047 *
3048 * Destroy all the FBs associated with @filp.
3049 *
3050 * Called by the user via ioctl.
3051 *
3052 * Returns:
3053 * Zero on success, errno on failure.
3054 */
3055void drm_fb_release(struct drm_file *priv)
3056{
3057	struct drm_device *dev = priv->minor->dev;
3058	struct drm_framebuffer *fb, *tfb;
3059
3060	mutex_lock(&priv->fbs_lock);
3061	list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3062
3063		mutex_lock(&dev->mode_config.fb_lock);
3064		/* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3065		__drm_framebuffer_unregister(dev, fb);
3066		mutex_unlock(&dev->mode_config.fb_lock);
3067
3068		list_del_init(&fb->filp_head);
 
 
 
 
 
3069
3070		/* This will also drop the fpriv->fbs reference. */
3071		drm_framebuffer_remove(fb);
 
 
 
 
 
 
 
 
 
3072	}
3073	mutex_unlock(&priv->fbs_lock);
 
 
 
 
3074}
3075
 
3076/**
3077 * drm_property_create - create a new property type
3078 * @dev: drm device
3079 * @flags: flags specifying the property type
3080 * @name: name of the property
3081 * @num_values: number of pre-defined values
3082 *
3083 * This creates a new generic drm property which can then be attached to a drm
3084 * object with drm_object_attach_property. The returned property object must be
3085 * freed with drm_property_destroy.
3086 *
3087 * Returns:
3088 * A pointer to the newly created property on success, NULL on failure.
 
 
3089 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3090struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3091					 const char *name, int num_values)
3092{
3093	struct drm_property *property = NULL;
3094	int ret;
3095
3096	property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3097	if (!property)
3098		return NULL;
3099
3100	if (num_values) {
3101		property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3102		if (!property->values)
3103			goto fail;
3104	}
3105
3106	ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3107	if (ret)
3108		goto fail;
3109
3110	property->flags = flags;
3111	property->num_values = num_values;
3112	INIT_LIST_HEAD(&property->enum_blob_list);
3113
3114	if (name) {
3115		strncpy(property->name, name, DRM_PROP_NAME_LEN);
3116		property->name[DRM_PROP_NAME_LEN-1] = '\0';
3117	}
3118
3119	list_add_tail(&property->head, &dev->mode_config.property_list);
3120	return property;
3121fail:
3122	kfree(property->values);
3123	kfree(property);
3124	return NULL;
3125}
3126EXPORT_SYMBOL(drm_property_create);
3127
3128/**
3129 * drm_property_create - create a new enumeration property type
3130 * @dev: drm device
3131 * @flags: flags specifying the property type
3132 * @name: name of the property
3133 * @props: enumeration lists with property values
3134 * @num_values: number of pre-defined values
3135 *
3136 * This creates a new generic drm property which can then be attached to a drm
3137 * object with drm_object_attach_property. The returned property object must be
3138 * freed with drm_property_destroy.
3139 *
3140 * Userspace is only allowed to set one of the predefined values for enumeration
3141 * properties.
3142 *
3143 * Returns:
3144 * A pointer to the newly created property on success, NULL on failure.
3145 */
3146struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3147					 const char *name,
3148					 const struct drm_prop_enum_list *props,
3149					 int num_values)
3150{
3151	struct drm_property *property;
3152	int i, ret;
3153
3154	flags |= DRM_MODE_PROP_ENUM;
3155
3156	property = drm_property_create(dev, flags, name, num_values);
3157	if (!property)
3158		return NULL;
3159
3160	for (i = 0; i < num_values; i++) {
3161		ret = drm_property_add_enum(property, i,
3162				      props[i].type,
3163				      props[i].name);
3164		if (ret) {
3165			drm_property_destroy(dev, property);
3166			return NULL;
3167		}
3168	}
3169
3170	return property;
3171}
3172EXPORT_SYMBOL(drm_property_create_enum);
3173
3174/**
3175 * drm_property_create - create a new bitmask property type
3176 * @dev: drm device
3177 * @flags: flags specifying the property type
3178 * @name: name of the property
3179 * @props: enumeration lists with property bitflags
3180 * @num_values: number of pre-defined values
3181 *
3182 * This creates a new generic drm property which can then be attached to a drm
3183 * object with drm_object_attach_property. The returned property object must be
3184 * freed with drm_property_destroy.
3185 *
3186 * Compared to plain enumeration properties userspace is allowed to set any
3187 * or'ed together combination of the predefined property bitflag values
3188 *
3189 * Returns:
3190 * A pointer to the newly created property on success, NULL on failure.
3191 */
3192struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3193					 int flags, const char *name,
3194					 const struct drm_prop_enum_list *props,
3195					 int num_values)
3196{
3197	struct drm_property *property;
3198	int i, ret;
3199
3200	flags |= DRM_MODE_PROP_BITMASK;
3201
3202	property = drm_property_create(dev, flags, name, num_values);
3203	if (!property)
3204		return NULL;
3205
3206	for (i = 0; i < num_values; i++) {
3207		ret = drm_property_add_enum(property, i,
3208				      props[i].type,
3209				      props[i].name);
3210		if (ret) {
3211			drm_property_destroy(dev, property);
3212			return NULL;
3213		}
3214	}
3215
3216	return property;
3217}
3218EXPORT_SYMBOL(drm_property_create_bitmask);
3219
3220/**
3221 * drm_property_create - create a new ranged property type
3222 * @dev: drm device
3223 * @flags: flags specifying the property type
3224 * @name: name of the property
3225 * @min: minimum value of the property
3226 * @max: maximum value of the property
3227 *
3228 * This creates a new generic drm property which can then be attached to a drm
3229 * object with drm_object_attach_property. The returned property object must be
3230 * freed with drm_property_destroy.
3231 *
3232 * Userspace is allowed to set any interger value in the (min, max) range
3233 * inclusive.
3234 *
3235 * Returns:
3236 * A pointer to the newly created property on success, NULL on failure.
3237 */
3238struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3239					 const char *name,
3240					 uint64_t min, uint64_t max)
3241{
3242	struct drm_property *property;
3243
3244	flags |= DRM_MODE_PROP_RANGE;
3245
3246	property = drm_property_create(dev, flags, name, 2);
3247	if (!property)
3248		return NULL;
3249
3250	property->values[0] = min;
3251	property->values[1] = max;
3252
3253	return property;
3254}
3255EXPORT_SYMBOL(drm_property_create_range);
3256
3257/**
3258 * drm_property_add_enum - add a possible value to an enumeration property
3259 * @property: enumeration property to change
3260 * @index: index of the new enumeration
3261 * @value: value of the new enumeration
3262 * @name: symbolic name of the new enumeration
3263 *
3264 * This functions adds enumerations to a property.
3265 *
3266 * It's use is deprecated, drivers should use one of the more specific helpers
3267 * to directly create the property with all enumerations already attached.
3268 *
3269 * Returns:
3270 * Zero on success, error code on failure.
3271 */
3272int drm_property_add_enum(struct drm_property *property, int index,
3273			  uint64_t value, const char *name)
3274{
3275	struct drm_property_enum *prop_enum;
3276
3277	if (!(property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)))
3278		return -EINVAL;
3279
3280	/*
3281	 * Bitmask enum properties have the additional constraint of values
3282	 * from 0 to 63
3283	 */
3284	if ((property->flags & DRM_MODE_PROP_BITMASK) && (value > 63))
3285		return -EINVAL;
3286
3287	if (!list_empty(&property->enum_blob_list)) {
3288		list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3289			if (prop_enum->value == value) {
3290				strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3291				prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3292				return 0;
3293			}
3294		}
3295	}
3296
3297	prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3298	if (!prop_enum)
3299		return -ENOMEM;
3300
3301	strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3302	prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3303	prop_enum->value = value;
3304
3305	property->values[index] = value;
3306	list_add_tail(&prop_enum->head, &property->enum_blob_list);
3307	return 0;
3308}
3309EXPORT_SYMBOL(drm_property_add_enum);
3310
3311/**
3312 * drm_property_destroy - destroy a drm property
3313 * @dev: drm device
3314 * @property: property to destry
3315 *
3316 * This function frees a property including any attached resources like
3317 * enumeration values.
3318 */
3319void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3320{
3321	struct drm_property_enum *prop_enum, *pt;
3322
3323	list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
3324		list_del(&prop_enum->head);
3325		kfree(prop_enum);
3326	}
3327
3328	if (property->num_values)
3329		kfree(property->values);
3330	drm_mode_object_put(dev, &property->base);
3331	list_del(&property->head);
3332	kfree(property);
3333}
3334EXPORT_SYMBOL(drm_property_destroy);
3335
3336/**
3337 * drm_object_attach_property - attach a property to a modeset object
3338 * @obj: drm modeset object
3339 * @property: property to attach
3340 * @init_val: initial value of the property
3341 *
3342 * This attaches the given property to the modeset object with the given initial
3343 * value. Currently this function cannot fail since the properties are stored in
3344 * a statically sized array.
3345 */
 
 
 
 
 
 
 
 
 
 
 
3346void drm_object_attach_property(struct drm_mode_object *obj,
3347				struct drm_property *property,
3348				uint64_t init_val)
3349{
3350	int count = obj->properties->count;
3351
3352	if (count == DRM_OBJECT_MAX_PROPERTY) {
3353		WARN(1, "Failed to attach object property (type: 0x%x). Please "
3354			"increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3355			"you see this message on the same object type.\n",
3356			obj->type);
3357		return;
3358	}
3359
3360	obj->properties->ids[count] = property->base.id;
3361	obj->properties->values[count] = init_val;
3362	obj->properties->count++;
3363}
3364EXPORT_SYMBOL(drm_object_attach_property);
3365
3366/**
3367 * drm_object_property_set_value - set the value of a property
3368 * @obj: drm mode object to set property value for
3369 * @property: property to set
3370 * @val: value the property should be set to
3371 *
3372 * This functions sets a given property on a given object. This function only
3373 * changes the software state of the property, it does not call into the
3374 * driver's ->set_property callback.
3375 *
3376 * Returns:
3377 * Zero on success, error code on failure.
3378 */
3379int drm_object_property_set_value(struct drm_mode_object *obj,
3380				  struct drm_property *property, uint64_t val)
3381{
3382	int i;
3383
3384	for (i = 0; i < obj->properties->count; i++) {
3385		if (obj->properties->ids[i] == property->base.id) {
3386			obj->properties->values[i] = val;
3387			return 0;
3388		}
3389	}
3390
3391	return -EINVAL;
3392}
3393EXPORT_SYMBOL(drm_object_property_set_value);
3394
3395/**
3396 * drm_object_property_get_value - retrieve the value of a property
3397 * @obj: drm mode object to get property value from
3398 * @property: property to retrieve
3399 * @val: storage for the property value
3400 *
3401 * This function retrieves the softare state of the given property for the given
3402 * property. Since there is no driver callback to retrieve the current property
3403 * value this might be out of sync with the hardware, depending upon the driver
3404 * and property.
3405 *
3406 * Returns:
3407 * Zero on success, error code on failure.
3408 */
3409int drm_object_property_get_value(struct drm_mode_object *obj,
3410				  struct drm_property *property, uint64_t *val)
3411{
3412	int i;
3413
3414	for (i = 0; i < obj->properties->count; i++) {
3415		if (obj->properties->ids[i] == property->base.id) {
3416			*val = obj->properties->values[i];
3417			return 0;
3418		}
3419	}
3420
3421	return -EINVAL;
3422}
3423EXPORT_SYMBOL(drm_object_property_get_value);
3424
3425/**
3426 * drm_mode_getproperty_ioctl - get the current value of a connector's property
3427 * @dev: DRM device
3428 * @data: ioctl data
3429 * @file_priv: DRM file info
3430 *
3431 * This function retrieves the current value for an connectors's property.
3432 *
3433 * Called by the user via ioctl.
3434 *
3435 * Returns:
3436 * Zero on success, errno on failure.
3437 */
3438int drm_mode_getproperty_ioctl(struct drm_device *dev,
3439			       void *data, struct drm_file *file_priv)
3440{
3441	struct drm_mode_object *obj;
3442	struct drm_mode_get_property *out_resp = data;
3443	struct drm_property *property;
3444	int enum_count = 0;
3445	int blob_count = 0;
3446	int value_count = 0;
3447	int ret = 0, i;
3448	int copied;
3449	struct drm_property_enum *prop_enum;
3450	struct drm_mode_property_enum __user *enum_ptr;
3451	struct drm_property_blob *prop_blob;
3452	uint32_t __user *blob_id_ptr;
3453	uint64_t __user *values_ptr;
3454	uint32_t __user *blob_length_ptr;
3455
3456	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3457		return -EINVAL;
3458
3459	drm_modeset_lock_all(dev);
3460	obj = drm_mode_object_find(dev, out_resp->prop_id, DRM_MODE_OBJECT_PROPERTY);
3461	if (!obj) {
3462		ret = -ENOENT;
3463		goto done;
3464	}
3465	property = obj_to_property(obj);
3466
3467	if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
3468		list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3469			enum_count++;
3470	} else if (property->flags & DRM_MODE_PROP_BLOB) {
3471		list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3472			blob_count++;
3473	}
3474
3475	value_count = property->num_values;
3476
3477	strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3478	out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3479	out_resp->flags = property->flags;
3480
3481	if ((out_resp->count_values >= value_count) && value_count) {
3482		values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
3483		for (i = 0; i < value_count; i++) {
3484			if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3485				ret = -EFAULT;
3486				goto done;
3487			}
3488		}
3489	}
3490	out_resp->count_values = value_count;
3491
3492	if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
3493		if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3494			copied = 0;
3495			enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
3496			list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3497
3498				if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3499					ret = -EFAULT;
3500					goto done;
3501				}
3502
3503				if (copy_to_user(&enum_ptr[copied].name,
3504						 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3505					ret = -EFAULT;
3506					goto done;
3507				}
3508				copied++;
3509			}
3510		}
3511		out_resp->count_enum_blobs = enum_count;
3512	}
3513
3514	if (property->flags & DRM_MODE_PROP_BLOB) {
3515		if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3516			copied = 0;
3517			blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3518			blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
3519
3520			list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3521				if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3522					ret = -EFAULT;
3523					goto done;
3524				}
3525
3526				if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3527					ret = -EFAULT;
3528					goto done;
3529				}
3530
3531				copied++;
3532			}
3533		}
3534		out_resp->count_enum_blobs = blob_count;
3535	}
3536done:
3537	drm_modeset_unlock_all(dev);
3538	return ret;
3539}
3540
3541static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3542							  void *data)
3543{
3544	struct drm_property_blob *blob;
3545	int ret;
3546
3547	if (!length || !data)
3548		return NULL;
3549
3550	blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3551	if (!blob)
3552		return NULL;
3553
3554	ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3555	if (ret) {
3556		kfree(blob);
3557		return NULL;
3558	}
3559
3560	blob->length = length;
3561
3562	memcpy(blob->data, data, length);
3563
3564	list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3565	return blob;
3566}
3567
3568static void drm_property_destroy_blob(struct drm_device *dev,
3569			       struct drm_property_blob *blob)
3570{
3571	drm_mode_object_put(dev, &blob->base);
3572	list_del(&blob->head);
3573	kfree(blob);
3574}
3575
3576/**
3577 * drm_mode_getblob_ioctl - get the contents of a blob property value
3578 * @dev: DRM device
3579 * @data: ioctl data
3580 * @file_priv: DRM file info
3581 *
3582 * This function retrieves the contents of a blob property. The value stored in
3583 * an object's blob property is just a normal modeset object id.
3584 *
3585 * Called by the user via ioctl.
3586 *
3587 * Returns:
3588 * Zero on success, errno on failure.
3589 */
3590int drm_mode_getblob_ioctl(struct drm_device *dev,
3591			   void *data, struct drm_file *file_priv)
3592{
3593	struct drm_mode_object *obj;
3594	struct drm_mode_get_blob *out_resp = data;
3595	struct drm_property_blob *blob;
3596	int ret = 0;
3597	void __user *blob_ptr;
3598
3599	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3600		return -EINVAL;
3601
3602	drm_modeset_lock_all(dev);
3603	obj = drm_mode_object_find(dev, out_resp->blob_id, DRM_MODE_OBJECT_BLOB);
3604	if (!obj) {
3605		ret = -ENOENT;
3606		goto done;
3607	}
3608	blob = obj_to_blob(obj);
3609
3610	if (out_resp->length == blob->length) {
3611		blob_ptr = (void __user *)(unsigned long)out_resp->data;
3612		if (copy_to_user(blob_ptr, blob->data, blob->length)){
3613			ret = -EFAULT;
3614			goto done;
3615		}
3616	}
3617	out_resp->length = blob->length;
3618
3619done:
3620	drm_modeset_unlock_all(dev);
3621	return ret;
3622}
3623
3624/**
3625 * drm_mode_connector_update_edid_property - update the edid property of a connector
3626 * @connector: drm connector
3627 * @edid: new value of the edid property
3628 *
3629 * This function creates a new blob modeset object and assigns its id to the
3630 * connector's edid property.
3631 *
3632 * Returns:
3633 * Zero on success, errno on failure.
3634 */
3635int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3636					    struct edid *edid)
3637{
3638	struct drm_device *dev = connector->dev;
3639	int ret, size;
3640
3641	if (connector->edid_blob_ptr)
3642		drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3643
3644	/* Delete edid, when there is none. */
3645	if (!edid) {
3646		connector->edid_blob_ptr = NULL;
3647		ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
3648		return ret;
3649	}
3650
3651	size = EDID_LENGTH * (1 + edid->extensions);
3652	connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3653							    size, edid);
3654	if (!connector->edid_blob_ptr)
3655		return -EINVAL;
3656
3657	ret = drm_object_property_set_value(&connector->base,
3658					       dev->mode_config.edid_property,
3659					       connector->edid_blob_ptr->base.id);
3660
3661	return ret;
3662}
3663EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3664
3665static bool drm_property_change_is_valid(struct drm_property *property,
3666					 uint64_t value)
3667{
3668	if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3669		return false;
3670	if (property->flags & DRM_MODE_PROP_RANGE) {
3671		if (value < property->values[0] || value > property->values[1])
3672			return false;
3673		return true;
3674	} else if (property->flags & DRM_MODE_PROP_BITMASK) {
3675		int i;
3676		uint64_t valid_mask = 0;
3677		for (i = 0; i < property->num_values; i++)
3678			valid_mask |= (1ULL << property->values[i]);
3679		return !(value & ~valid_mask);
3680	} else if (property->flags & DRM_MODE_PROP_BLOB) {
3681		/* Only the driver knows */
3682		return true;
3683	} else {
3684		int i;
3685		for (i = 0; i < property->num_values; i++)
3686			if (property->values[i] == value)
3687				return true;
3688		return false;
3689	}
3690}
3691
3692/**
3693 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
3694 * @dev: DRM device
3695 * @data: ioctl data
3696 * @file_priv: DRM file info
3697 *
3698 * This function sets the current value for a connectors's property. It also
3699 * calls into a driver's ->set_property callback to update the hardware state
3700 *
3701 * Called by the user via ioctl.
3702 *
3703 * Returns:
3704 * Zero on success, errno on failure.
3705 */
3706int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3707				       void *data, struct drm_file *file_priv)
3708{
3709	struct drm_mode_connector_set_property *conn_set_prop = data;
3710	struct drm_mode_obj_set_property obj_set_prop = {
3711		.value = conn_set_prop->value,
3712		.prop_id = conn_set_prop->prop_id,
3713		.obj_id = conn_set_prop->connector_id,
3714		.obj_type = DRM_MODE_OBJECT_CONNECTOR
3715	};
3716
3717	/* It does all the locking and checking we need */
3718	return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
3719}
3720
3721static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3722					   struct drm_property *property,
3723					   uint64_t value)
3724{
3725	int ret = -EINVAL;
3726	struct drm_connector *connector = obj_to_connector(obj);
3727
3728	/* Do DPMS ourselves */
3729	if (property == connector->dev->mode_config.dpms_property) {
3730		if (connector->funcs->dpms)
3731			(*connector->funcs->dpms)(connector, (int)value);
3732		ret = 0;
3733	} else if (connector->funcs->set_property)
3734		ret = connector->funcs->set_property(connector, property, value);
3735
3736	/* store the property value if successful */
3737	if (!ret)
3738		drm_object_property_set_value(&connector->base, property, value);
3739	return ret;
3740}
3741
3742static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3743				      struct drm_property *property,
3744				      uint64_t value)
3745{
3746	int ret = -EINVAL;
3747	struct drm_crtc *crtc = obj_to_crtc(obj);
3748
3749	if (crtc->funcs->set_property)
3750		ret = crtc->funcs->set_property(crtc, property, value);
3751	if (!ret)
3752		drm_object_property_set_value(obj, property, value);
3753
3754	return ret;
3755}
3756
3757static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3758				      struct drm_property *property,
3759				      uint64_t value)
3760{
3761	int ret = -EINVAL;
3762	struct drm_plane *plane = obj_to_plane(obj);
3763
3764	if (plane->funcs->set_property)
3765		ret = plane->funcs->set_property(plane, property, value);
3766	if (!ret)
3767		drm_object_property_set_value(obj, property, value);
3768
3769	return ret;
3770}
3771
3772/**
3773 * drm_mode_getproperty_ioctl - get the current value of a object's property
3774 * @dev: DRM device
3775 * @data: ioctl data
3776 * @file_priv: DRM file info
3777 *
3778 * This function retrieves the current value for an object's property. Compared
3779 * to the connector specific ioctl this one is extended to also work on crtc and
3780 * plane objects.
3781 *
3782 * Called by the user via ioctl.
3783 *
3784 * Returns:
3785 * Zero on success, errno on failure.
3786 */
3787int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3788				      struct drm_file *file_priv)
3789{
3790	struct drm_mode_obj_get_properties *arg = data;
3791	struct drm_mode_object *obj;
3792	int ret = 0;
3793	int i;
3794	int copied = 0;
3795	int props_count = 0;
3796	uint32_t __user *props_ptr;
3797	uint64_t __user *prop_values_ptr;
3798
3799	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3800		return -EINVAL;
3801
3802	drm_modeset_lock_all(dev);
3803
3804	obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3805	if (!obj) {
3806		ret = -ENOENT;
3807		goto out;
3808	}
3809	if (!obj->properties) {
3810		ret = -EINVAL;
3811		goto out;
3812	}
3813
3814	props_count = obj->properties->count;
3815
3816	/* This ioctl is called twice, once to determine how much space is
3817	 * needed, and the 2nd time to fill it. */
3818	if ((arg->count_props >= props_count) && props_count) {
3819		copied = 0;
3820		props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3821		prop_values_ptr = (uint64_t __user *)(unsigned long)
3822				  (arg->prop_values_ptr);
3823		for (i = 0; i < props_count; i++) {
3824			if (put_user(obj->properties->ids[i],
3825				     props_ptr + copied)) {
3826				ret = -EFAULT;
3827				goto out;
3828			}
3829			if (put_user(obj->properties->values[i],
3830				     prop_values_ptr + copied)) {
3831				ret = -EFAULT;
3832				goto out;
3833			}
3834			copied++;
3835		}
3836	}
3837	arg->count_props = props_count;
3838out:
3839	drm_modeset_unlock_all(dev);
3840	return ret;
3841}
3842
3843/**
3844 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
3845 * @dev: DRM device
3846 * @data: ioctl data
3847 * @file_priv: DRM file info
3848 *
3849 * This function sets the current value for an object's property. It also calls
3850 * into a driver's ->set_property callback to update the hardware state.
3851 * Compared to the connector specific ioctl this one is extended to also work on
3852 * crtc and plane objects.
3853 *
3854 * Called by the user via ioctl.
3855 *
3856 * Returns:
3857 * Zero on success, errno on failure.
3858 */
3859int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
3860				    struct drm_file *file_priv)
3861{
3862	struct drm_mode_obj_set_property *arg = data;
3863	struct drm_mode_object *arg_obj;
3864	struct drm_mode_object *prop_obj;
3865	struct drm_property *property;
3866	int ret = -EINVAL;
3867	int i;
3868
3869	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3870		return -EINVAL;
3871
3872	drm_modeset_lock_all(dev);
3873
3874	arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3875	if (!arg_obj) {
3876		ret = -ENOENT;
3877		goto out;
3878	}
3879	if (!arg_obj->properties)
3880		goto out;
3881
3882	for (i = 0; i < arg_obj->properties->count; i++)
3883		if (arg_obj->properties->ids[i] == arg->prop_id)
3884			break;
3885
3886	if (i == arg_obj->properties->count)
3887		goto out;
3888
3889	prop_obj = drm_mode_object_find(dev, arg->prop_id,
3890					DRM_MODE_OBJECT_PROPERTY);
3891	if (!prop_obj) {
3892		ret = -ENOENT;
3893		goto out;
3894	}
3895	property = obj_to_property(prop_obj);
3896
3897	if (!drm_property_change_is_valid(property, arg->value))
3898		goto out;
3899
3900	switch (arg_obj->type) {
3901	case DRM_MODE_OBJECT_CONNECTOR:
3902		ret = drm_mode_connector_set_obj_prop(arg_obj, property,
3903						      arg->value);
3904		break;
3905	case DRM_MODE_OBJECT_CRTC:
3906		ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
3907		break;
3908	case DRM_MODE_OBJECT_PLANE:
3909		ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
3910		break;
3911	}
3912
3913out:
3914	drm_modeset_unlock_all(dev);
3915	return ret;
3916}
3917
3918/**
3919 * drm_mode_connector_attach_encoder - attach a connector to an encoder
3920 * @connector: connector to attach
3921 * @encoder: encoder to attach @connector to
3922 *
3923 * This function links up a connector to an encoder. Note that the routing
3924 * restrictions between encoders and crtcs are exposed to userspace through the
3925 * possible_clones and possible_crtcs bitmasks.
3926 *
3927 * Returns:
3928 * Zero on success, errno on failure.
3929 */
3930int drm_mode_connector_attach_encoder(struct drm_connector *connector,
3931				      struct drm_encoder *encoder)
3932{
3933	int i;
3934
3935	for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3936		if (connector->encoder_ids[i] == 0) {
3937			connector->encoder_ids[i] = encoder->base.id;
3938			return 0;
3939		}
3940	}
3941	return -ENOMEM;
3942}
3943EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
3944
3945/**
3946 * drm_mode_crtc_set_gamma_size - set the gamma table size
3947 * @crtc: CRTC to set the gamma table size for
3948 * @gamma_size: size of the gamma table
3949 *
3950 * Drivers which support gamma tables should set this to the supported gamma
3951 * table size when initializing the CRTC. Currently the drm core only supports a
3952 * fixed gamma table size.
3953 *
3954 * Returns:
3955 * Zero on success, errno on failure.
3956 */
 
 
 
3957int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
3958				 int gamma_size)
3959{
3960	crtc->gamma_size = gamma_size;
3961
3962	crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
3963	if (!crtc->gamma_store) {
3964		crtc->gamma_size = 0;
3965		return -ENOMEM;
3966	}
3967
3968	return 0;
3969}
3970EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
3971
3972/**
3973 * drm_mode_gamma_set_ioctl - set the gamma table
3974 * @dev: DRM device
3975 * @data: ioctl data
3976 * @file_priv: DRM file info
3977 *
3978 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
3979 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
3980 *
3981 * Called by the user via ioctl.
3982 *
3983 * Returns:
3984 * Zero on success, errno on failure.
3985 */
3986int drm_mode_gamma_set_ioctl(struct drm_device *dev,
3987			     void *data, struct drm_file *file_priv)
3988{
3989	struct drm_mode_crtc_lut *crtc_lut = data;
3990	struct drm_mode_object *obj;
3991	struct drm_crtc *crtc;
3992	void *r_base, *g_base, *b_base;
3993	int size;
3994	int ret = 0;
3995
3996	if (!drm_core_check_feature(dev, DRIVER_MODESET))
3997		return -EINVAL;
3998
3999	drm_modeset_lock_all(dev);
4000	obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
4001	if (!obj) {
4002		ret = -ENOENT;
4003		goto out;
4004	}
4005	crtc = obj_to_crtc(obj);
4006
4007	if (crtc->funcs->gamma_set == NULL) {
4008		ret = -ENOSYS;
4009		goto out;
4010	}
4011
4012	/* memcpy into gamma store */
4013	if (crtc_lut->gamma_size != crtc->gamma_size) {
4014		ret = -EINVAL;
4015		goto out;
4016	}
4017
4018	size = crtc_lut->gamma_size * (sizeof(uint16_t));
4019	r_base = crtc->gamma_store;
4020	if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4021		ret = -EFAULT;
4022		goto out;
4023	}
4024
4025	g_base = r_base + size;
4026	if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4027		ret = -EFAULT;
4028		goto out;
4029	}
4030
4031	b_base = g_base + size;
4032	if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4033		ret = -EFAULT;
4034		goto out;
4035	}
4036
4037	crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
4038
4039out:
4040	drm_modeset_unlock_all(dev);
4041	return ret;
4042
4043}
4044
4045/**
4046 * drm_mode_gamma_get_ioctl - get the gamma table
4047 * @dev: DRM device
4048 * @data: ioctl data
4049 * @file_priv: DRM file info
4050 *
4051 * Copy the current gamma table into the storage provided. This also provides
4052 * the gamma table size the driver expects, which can be used to size the
4053 * allocated storage.
4054 *
4055 * Called by the user via ioctl.
4056 *
4057 * Returns:
4058 * Zero on success, errno on failure.
4059 */
4060int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4061			     void *data, struct drm_file *file_priv)
4062{
4063	struct drm_mode_crtc_lut *crtc_lut = data;
4064	struct drm_mode_object *obj;
4065	struct drm_crtc *crtc;
4066	void *r_base, *g_base, *b_base;
4067	int size;
4068	int ret = 0;
4069
4070	if (!drm_core_check_feature(dev, DRIVER_MODESET))
4071		return -EINVAL;
4072
4073	drm_modeset_lock_all(dev);
4074	obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
4075	if (!obj) {
4076		ret = -ENOENT;
4077		goto out;
4078	}
4079	crtc = obj_to_crtc(obj);
4080
4081	/* memcpy into gamma store */
4082	if (crtc_lut->gamma_size != crtc->gamma_size) {
4083		ret = -EINVAL;
4084		goto out;
4085	}
4086
4087	size = crtc_lut->gamma_size * (sizeof(uint16_t));
4088	r_base = crtc->gamma_store;
4089	if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4090		ret = -EFAULT;
4091		goto out;
4092	}
4093
4094	g_base = r_base + size;
4095	if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4096		ret = -EFAULT;
4097		goto out;
4098	}
4099
4100	b_base = g_base + size;
4101	if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4102		ret = -EFAULT;
4103		goto out;
4104	}
4105out:
4106	drm_modeset_unlock_all(dev);
4107	return ret;
4108}
4109
4110/**
4111 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4112 * @dev: DRM device
4113 * @data: ioctl data
4114 * @file_priv: DRM file info
4115 *
4116 * This schedules an asynchronous update on a given CRTC, called page flip.
4117 * Optionally a drm event is generated to signal the completion of the event.
4118 * Generic drivers cannot assume that a pageflip with changed framebuffer
4119 * properties (including driver specific metadata like tiling layout) will work,
4120 * but some drivers support e.g. pixel format changes through the pageflip
4121 * ioctl.
4122 *
4123 * Called by the user via ioctl.
4124 *
4125 * Returns:
4126 * Zero on success, errno on failure.
4127 */
4128int drm_mode_page_flip_ioctl(struct drm_device *dev,
4129			     void *data, struct drm_file *file_priv)
4130{
4131	struct drm_mode_crtc_page_flip *page_flip = data;
4132	struct drm_mode_object *obj;
4133	struct drm_crtc *crtc;
4134	struct drm_framebuffer *fb = NULL, *old_fb = NULL;
4135	struct drm_pending_vblank_event *e = NULL;
4136	unsigned long flags;
4137	int ret = -EINVAL;
4138
4139	if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4140	    page_flip->reserved != 0)
4141		return -EINVAL;
4142
4143	if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4144		return -EINVAL;
4145
4146	obj = drm_mode_object_find(dev, page_flip->crtc_id, DRM_MODE_OBJECT_CRTC);
4147	if (!obj)
4148		return -ENOENT;
4149	crtc = obj_to_crtc(obj);
4150
4151	mutex_lock(&crtc->mutex);
4152	if (crtc->primary->fb == NULL) {
4153		/* The framebuffer is currently unbound, presumably
4154		 * due to a hotplug event, that userspace has not
4155		 * yet discovered.
4156		 */
4157		ret = -EBUSY;
4158		goto out;
4159	}
4160
4161	if (crtc->funcs->page_flip == NULL)
4162		goto out;
4163
4164	fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
4165	if (!fb) {
4166		ret = -ENOENT;
4167		goto out;
4168	}
4169
4170	ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4171	if (ret)
4172		goto out;
4173
4174	if (crtc->primary->fb->pixel_format != fb->pixel_format) {
4175		DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4176		ret = -EINVAL;
 
 
4177		goto out;
4178	}
4179
4180	if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4181		ret = -ENOMEM;
4182		spin_lock_irqsave(&dev->event_lock, flags);
4183		if (file_priv->event_space < sizeof e->event) {
4184			spin_unlock_irqrestore(&dev->event_lock, flags);
4185			goto out;
4186		}
4187		file_priv->event_space -= sizeof e->event;
4188		spin_unlock_irqrestore(&dev->event_lock, flags);
4189
4190		e = kzalloc(sizeof *e, GFP_KERNEL);
4191		if (e == NULL) {
4192			spin_lock_irqsave(&dev->event_lock, flags);
4193			file_priv->event_space += sizeof e->event;
4194			spin_unlock_irqrestore(&dev->event_lock, flags);
4195			goto out;
4196		}
4197
4198		e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
4199		e->event.base.length = sizeof e->event;
4200		e->event.user_data = page_flip->user_data;
4201		e->base.event = &e->event.base;
4202		e->base.file_priv = file_priv;
4203		e->base.destroy =
4204			(void (*) (struct drm_pending_event *)) kfree;
4205	}
4206
4207	old_fb = crtc->primary->fb;
4208	ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
4209	if (ret) {
4210		if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4211			spin_lock_irqsave(&dev->event_lock, flags);
4212			file_priv->event_space += sizeof e->event;
4213			spin_unlock_irqrestore(&dev->event_lock, flags);
4214			kfree(e);
4215		}
4216		/* Keep the old fb, don't unref it. */
4217		old_fb = NULL;
4218	} else {
4219		/*
4220		 * Warn if the driver hasn't properly updated the crtc->fb
4221		 * field to reflect that the new framebuffer is now used.
4222		 * Failing to do so will screw with the reference counting
4223		 * on framebuffers.
4224		 */
4225		WARN_ON(crtc->primary->fb != fb);
4226		/* Unref only the old framebuffer. */
4227		fb = NULL;
4228	}
4229
4230out:
4231	if (fb)
4232		drm_framebuffer_unreference(fb);
4233	if (old_fb)
4234		drm_framebuffer_unreference(old_fb);
4235	mutex_unlock(&crtc->mutex);
4236
4237	return ret;
4238}
4239
4240/**
4241 * drm_mode_config_reset - call ->reset callbacks
4242 * @dev: drm device
4243 *
4244 * This functions calls all the crtc's, encoder's and connector's ->reset
4245 * callback. Drivers can use this in e.g. their driver load or resume code to
4246 * reset hardware and software state.
4247 */
4248void drm_mode_config_reset(struct drm_device *dev)
4249{
4250	struct drm_crtc *crtc;
4251	struct drm_encoder *encoder;
4252	struct drm_connector *connector;
4253
4254	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4255		if (crtc->funcs->reset)
4256			crtc->funcs->reset(crtc);
4257
4258	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4259		if (encoder->funcs->reset)
4260			encoder->funcs->reset(encoder);
4261
4262	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4263		connector->status = connector_status_unknown;
4264
4265		if (connector->funcs->reset)
4266			connector->funcs->reset(connector);
4267	}
4268}
4269EXPORT_SYMBOL(drm_mode_config_reset);
4270
4271/**
4272 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4273 * @dev: DRM device
4274 * @data: ioctl data
4275 * @file_priv: DRM file info
4276 *
4277 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4278 * TTM or something else entirely) and returns the resulting buffer handle. This
4279 * handle can then be wrapped up into a framebuffer modeset object.
4280 *
4281 * Note that userspace is not allowed to use such objects for render
4282 * acceleration - drivers must create their own private ioctls for such a use
4283 * case.
4284 *
4285 * Called by the user via ioctl.
4286 *
4287 * Returns:
4288 * Zero on success, errno on failure.
4289 */
4290int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4291			       void *data, struct drm_file *file_priv)
4292{
4293	struct drm_mode_create_dumb *args = data;
4294	u32 cpp, stride, size;
4295
4296	if (!dev->driver->dumb_create)
4297		return -ENOSYS;
4298	if (!args->width || !args->height || !args->bpp)
4299		return -EINVAL;
4300
4301	/* overflow checks for 32bit size calculations */
4302	cpp = DIV_ROUND_UP(args->bpp, 8);
4303	if (cpp > 0xffffffffU / args->width)
4304		return -EINVAL;
4305	stride = cpp * args->width;
4306	if (args->height > 0xffffffffU / stride)
4307		return -EINVAL;
4308
4309	/* test for wrap-around */
4310	size = args->height * stride;
4311	if (PAGE_ALIGN(size) == 0)
4312		return -EINVAL;
4313
4314	return dev->driver->dumb_create(file_priv, dev, args);
4315}
4316
4317/**
4318 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4319 * @dev: DRM device
4320 * @data: ioctl data
4321 * @file_priv: DRM file info
4322 *
4323 * Allocate an offset in the drm device node's address space to be able to
4324 * memory map a dumb buffer.
4325 *
4326 * Called by the user via ioctl.
4327 *
4328 * Returns:
4329 * Zero on success, errno on failure.
4330 */
4331int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4332			     void *data, struct drm_file *file_priv)
4333{
4334	struct drm_mode_map_dumb *args = data;
4335
4336	/* call driver ioctl to get mmap offset */
4337	if (!dev->driver->dumb_map_offset)
4338		return -ENOSYS;
4339
4340	return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4341}
4342
4343/**
4344 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4345 * @dev: DRM device
4346 * @data: ioctl data
4347 * @file_priv: DRM file info
4348 *
4349 * This destroys the userspace handle for the given dumb backing storage buffer.
4350 * Since buffer objects must be reference counted in the kernel a buffer object
4351 * won't be immediately freed if a framebuffer modeset object still uses it.
4352 *
4353 * Called by the user via ioctl.
4354 *
4355 * Returns:
4356 * Zero on success, errno on failure.
4357 */
4358int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4359				void *data, struct drm_file *file_priv)
4360{
4361	struct drm_mode_destroy_dumb *args = data;
4362
4363	if (!dev->driver->dumb_destroy)
4364		return -ENOSYS;
4365
4366	return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4367}
4368
4369/**
4370 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4371 * @format: pixel format (DRM_FORMAT_*)
4372 * @depth: storage for the depth value
4373 * @bpp: storage for the bpp value
4374 *
4375 * This only supports RGB formats here for compat with code that doesn't use
4376 * pixel formats directly yet.
4377 */
4378void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4379			  int *bpp)
4380{
4381	switch (format) {
4382	case DRM_FORMAT_C8:
4383	case DRM_FORMAT_RGB332:
4384	case DRM_FORMAT_BGR233:
4385		*depth = 8;
4386		*bpp = 8;
4387		break;
4388	case DRM_FORMAT_XRGB1555:
4389	case DRM_FORMAT_XBGR1555:
4390	case DRM_FORMAT_RGBX5551:
4391	case DRM_FORMAT_BGRX5551:
4392	case DRM_FORMAT_ARGB1555:
4393	case DRM_FORMAT_ABGR1555:
4394	case DRM_FORMAT_RGBA5551:
4395	case DRM_FORMAT_BGRA5551:
4396		*depth = 15;
4397		*bpp = 16;
4398		break;
4399	case DRM_FORMAT_RGB565:
4400	case DRM_FORMAT_BGR565:
4401		*depth = 16;
4402		*bpp = 16;
4403		break;
4404	case DRM_FORMAT_RGB888:
4405	case DRM_FORMAT_BGR888:
4406		*depth = 24;
4407		*bpp = 24;
4408		break;
4409	case DRM_FORMAT_XRGB8888:
4410	case DRM_FORMAT_XBGR8888:
4411	case DRM_FORMAT_RGBX8888:
4412	case DRM_FORMAT_BGRX8888:
4413		*depth = 24;
4414		*bpp = 32;
4415		break;
4416	case DRM_FORMAT_XRGB2101010:
4417	case DRM_FORMAT_XBGR2101010:
4418	case DRM_FORMAT_RGBX1010102:
4419	case DRM_FORMAT_BGRX1010102:
4420	case DRM_FORMAT_ARGB2101010:
4421	case DRM_FORMAT_ABGR2101010:
4422	case DRM_FORMAT_RGBA1010102:
4423	case DRM_FORMAT_BGRA1010102:
4424		*depth = 30;
4425		*bpp = 32;
4426		break;
4427	case DRM_FORMAT_ARGB8888:
4428	case DRM_FORMAT_ABGR8888:
4429	case DRM_FORMAT_RGBA8888:
4430	case DRM_FORMAT_BGRA8888:
4431		*depth = 32;
4432		*bpp = 32;
4433		break;
4434	default:
4435		DRM_DEBUG_KMS("unsupported pixel format %s\n",
4436			      drm_get_format_name(format));
4437		*depth = 0;
4438		*bpp = 0;
4439		break;
4440	}
4441}
4442EXPORT_SYMBOL(drm_fb_get_bpp_depth);
4443
4444/**
4445 * drm_format_num_planes - get the number of planes for format
4446 * @format: pixel format (DRM_FORMAT_*)
4447 *
4448 * Returns:
4449 * The number of planes used by the specified pixel format.
4450 */
4451int drm_format_num_planes(uint32_t format)
4452{
4453	switch (format) {
4454	case DRM_FORMAT_YUV410:
4455	case DRM_FORMAT_YVU410:
4456	case DRM_FORMAT_YUV411:
4457	case DRM_FORMAT_YVU411:
4458	case DRM_FORMAT_YUV420:
4459	case DRM_FORMAT_YVU420:
4460	case DRM_FORMAT_YUV422:
4461	case DRM_FORMAT_YVU422:
4462	case DRM_FORMAT_YUV444:
4463	case DRM_FORMAT_YVU444:
4464		return 3;
4465	case DRM_FORMAT_NV12:
4466	case DRM_FORMAT_NV21:
4467	case DRM_FORMAT_NV16:
4468	case DRM_FORMAT_NV61:
4469	case DRM_FORMAT_NV24:
4470	case DRM_FORMAT_NV42:
4471		return 2;
4472	default:
4473		return 1;
4474	}
4475}
4476EXPORT_SYMBOL(drm_format_num_planes);
4477
4478/**
4479 * drm_format_plane_cpp - determine the bytes per pixel value
4480 * @format: pixel format (DRM_FORMAT_*)
4481 * @plane: plane index
4482 *
4483 * Returns:
4484 * The bytes per pixel value for the specified plane.
4485 */
4486int drm_format_plane_cpp(uint32_t format, int plane)
4487{
4488	unsigned int depth;
4489	int bpp;
4490
4491	if (plane >= drm_format_num_planes(format))
4492		return 0;
4493
4494	switch (format) {
4495	case DRM_FORMAT_YUYV:
4496	case DRM_FORMAT_YVYU:
4497	case DRM_FORMAT_UYVY:
4498	case DRM_FORMAT_VYUY:
4499		return 2;
4500	case DRM_FORMAT_NV12:
4501	case DRM_FORMAT_NV21:
4502	case DRM_FORMAT_NV16:
4503	case DRM_FORMAT_NV61:
4504	case DRM_FORMAT_NV24:
4505	case DRM_FORMAT_NV42:
4506		return plane ? 2 : 1;
4507	case DRM_FORMAT_YUV410:
4508	case DRM_FORMAT_YVU410:
4509	case DRM_FORMAT_YUV411:
4510	case DRM_FORMAT_YVU411:
4511	case DRM_FORMAT_YUV420:
4512	case DRM_FORMAT_YVU420:
4513	case DRM_FORMAT_YUV422:
4514	case DRM_FORMAT_YVU422:
4515	case DRM_FORMAT_YUV444:
4516	case DRM_FORMAT_YVU444:
4517		return 1;
4518	default:
4519		drm_fb_get_bpp_depth(format, &depth, &bpp);
4520		return bpp >> 3;
4521	}
4522}
4523EXPORT_SYMBOL(drm_format_plane_cpp);
4524
4525/**
4526 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
4527 * @format: pixel format (DRM_FORMAT_*)
4528 *
4529 * Returns:
4530 * The horizontal chroma subsampling factor for the
4531 * specified pixel format.
4532 */
4533int drm_format_horz_chroma_subsampling(uint32_t format)
4534{
4535	switch (format) {
4536	case DRM_FORMAT_YUV411:
4537	case DRM_FORMAT_YVU411:
4538	case DRM_FORMAT_YUV410:
4539	case DRM_FORMAT_YVU410:
4540		return 4;
4541	case DRM_FORMAT_YUYV:
4542	case DRM_FORMAT_YVYU:
4543	case DRM_FORMAT_UYVY:
4544	case DRM_FORMAT_VYUY:
4545	case DRM_FORMAT_NV12:
4546	case DRM_FORMAT_NV21:
4547	case DRM_FORMAT_NV16:
4548	case DRM_FORMAT_NV61:
4549	case DRM_FORMAT_YUV422:
4550	case DRM_FORMAT_YVU422:
4551	case DRM_FORMAT_YUV420:
4552	case DRM_FORMAT_YVU420:
4553		return 2;
4554	default:
4555		return 1;
4556	}
4557}
4558EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
4559
4560/**
4561 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
4562 * @format: pixel format (DRM_FORMAT_*)
4563 *
4564 * Returns:
4565 * The vertical chroma subsampling factor for the
4566 * specified pixel format.
4567 */
4568int drm_format_vert_chroma_subsampling(uint32_t format)
4569{
4570	switch (format) {
4571	case DRM_FORMAT_YUV410:
4572	case DRM_FORMAT_YVU410:
4573		return 4;
4574	case DRM_FORMAT_YUV420:
4575	case DRM_FORMAT_YVU420:
4576	case DRM_FORMAT_NV12:
4577	case DRM_FORMAT_NV21:
4578		return 2;
4579	default:
4580		return 1;
4581	}
4582}
4583EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
4584
4585/**
4586 * drm_mode_config_init - initialize DRM mode_configuration structure
4587 * @dev: DRM device
4588 *
4589 * Initialize @dev's mode_config structure, used for tracking the graphics
4590 * configuration of @dev.
4591 *
4592 * Since this initializes the modeset locks, no locking is possible. Which is no
4593 * problem, since this should happen single threaded at init time. It is the
4594 * driver's problem to ensure this guarantee.
4595 *
4596 */
4597void drm_mode_config_init(struct drm_device *dev)
4598{
4599	mutex_init(&dev->mode_config.mutex);
4600	mutex_init(&dev->mode_config.idr_mutex);
4601	mutex_init(&dev->mode_config.fb_lock);
4602	INIT_LIST_HEAD(&dev->mode_config.fb_list);
4603	INIT_LIST_HEAD(&dev->mode_config.crtc_list);
4604	INIT_LIST_HEAD(&dev->mode_config.connector_list);
4605	INIT_LIST_HEAD(&dev->mode_config.bridge_list);
4606	INIT_LIST_HEAD(&dev->mode_config.encoder_list);
4607	INIT_LIST_HEAD(&dev->mode_config.property_list);
4608	INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
4609	INIT_LIST_HEAD(&dev->mode_config.plane_list);
4610	idr_init(&dev->mode_config.crtc_idr);
4611
4612	drm_modeset_lock_all(dev);
4613	drm_mode_create_standard_connector_properties(dev);
4614	drm_mode_create_standard_plane_properties(dev);
4615	drm_modeset_unlock_all(dev);
4616
4617	/* Just to be sure */
4618	dev->mode_config.num_fb = 0;
4619	dev->mode_config.num_connector = 0;
4620	dev->mode_config.num_crtc = 0;
4621	dev->mode_config.num_encoder = 0;
4622	dev->mode_config.num_overlay_plane = 0;
4623	dev->mode_config.num_total_plane = 0;
4624}
4625EXPORT_SYMBOL(drm_mode_config_init);
4626
4627/**
4628 * drm_mode_config_cleanup - free up DRM mode_config info
4629 * @dev: DRM device
4630 *
4631 * Free up all the connectors and CRTCs associated with this DRM device, then
4632 * free up the framebuffers and associated buffer objects.
4633 *
4634 * Note that since this /should/ happen single-threaded at driver/device
4635 * teardown time, no locking is required. It's the driver's job to ensure that
4636 * this guarantee actually holds true.
4637 *
4638 * FIXME: cleanup any dangling user buffer objects too
4639 */
4640void drm_mode_config_cleanup(struct drm_device *dev)
4641{
4642	struct drm_connector *connector, *ot;
4643	struct drm_crtc *crtc, *ct;
4644	struct drm_encoder *encoder, *enct;
4645	struct drm_bridge *bridge, *brt;
4646	struct drm_framebuffer *fb, *fbt;
4647	struct drm_property *property, *pt;
4648	struct drm_property_blob *blob, *bt;
4649	struct drm_plane *plane, *plt;
4650
4651	list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
4652				 head) {
4653		encoder->funcs->destroy(encoder);
4654	}
4655
4656	list_for_each_entry_safe(bridge, brt,
4657				 &dev->mode_config.bridge_list, head) {
4658		bridge->funcs->destroy(bridge);
4659	}
4660
4661	list_for_each_entry_safe(connector, ot,
4662				 &dev->mode_config.connector_list, head) {
4663		connector->funcs->destroy(connector);
4664	}
4665
4666	list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
4667				 head) {
4668		drm_property_destroy(dev, property);
4669	}
4670
4671	list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
4672				 head) {
4673		drm_property_destroy_blob(dev, blob);
4674	}
4675
4676	/*
4677	 * Single-threaded teardown context, so it's not required to grab the
4678	 * fb_lock to protect against concurrent fb_list access. Contrary, it
4679	 * would actually deadlock with the drm_framebuffer_cleanup function.
4680	 *
4681	 * Also, if there are any framebuffers left, that's a driver leak now,
4682	 * so politely WARN about this.
4683	 */
4684	WARN_ON(!list_empty(&dev->mode_config.fb_list));
4685	list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
4686		drm_framebuffer_remove(fb);
4687	}
4688
4689	list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
4690				 head) {
4691		plane->funcs->destroy(plane);
4692	}
4693
4694	list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
4695		crtc->funcs->destroy(crtc);
4696	}
4697
4698	idr_destroy(&dev->mode_config.crtc_idr);
4699}
4700EXPORT_SYMBOL(drm_mode_config_cleanup);