drm.c 15.0 KB
Newer Older
T
Thierry Reding 已提交
1 2
/*
 * Copyright (C) 2012 Avionic Design GmbH
T
Terje Bergstrom 已提交
3
 * Copyright (C) 2012-2013 NVIDIA CORPORATION.  All rights reserved.
T
Thierry Reding 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>

#include <linux/dma-mapping.h>
#include <asm/dma-iommu.h>

T
Terje Bergstrom 已提交
17 18 19
#include <drm/drm.h>
#include <drm/drmP.h>

20
#include "host1x_client.h"
21
#include "dev.h"
T
Thierry Reding 已提交
22
#include "drm.h"
23 24
#include "gem.h"
#include "syncpt.h"
T
Thierry Reding 已提交
25 26 27 28 29 30 31 32

#define DRIVER_NAME "tegra"
#define DRIVER_DESC "NVIDIA Tegra graphics"
#define DRIVER_DATE "20120330"
#define DRIVER_MAJOR 0
#define DRIVER_MINOR 0
#define DRIVER_PATCHLEVEL 0

33
struct host1x_subdev {
34 35 36 37 38
	struct host1x_client *client;
	struct device_node *np;
	struct list_head list;
};

39
static int host1x_subdev_add(struct tegra_drm *tegra, struct device_node *np)
40
{
41
	struct host1x_subdev *subdev;
42

43 44
	subdev = kzalloc(sizeof(*subdev), GFP_KERNEL);
	if (!subdev)
45 46
		return -ENOMEM;

47 48
	INIT_LIST_HEAD(&subdev->list);
	subdev->np = of_node_get(np);
49

50
	list_add_tail(&subdev->list, &tegra->subdevs);
51 52 53 54

	return 0;
}

55 56 57
static int host1x_subdev_register(struct tegra_drm *tegra,
				  struct host1x_subdev *subdev,
				  struct host1x_client *client)
58
{
59 60 61 62 63
	mutex_lock(&tegra->subdevs_lock);
	list_del_init(&subdev->list);
	list_add_tail(&subdev->list, &tegra->active);
	subdev->client = client;
	mutex_unlock(&tegra->subdevs_lock);
64 65 66 67

	return 0;
}

68 69
static int host1x_subdev_unregister(struct tegra_drm *tegra,
				    struct host1x_subdev *subdev)
70
{
71 72 73
	mutex_lock(&tegra->subdevs_lock);
	list_del_init(&subdev->list);
	mutex_unlock(&tegra->subdevs_lock);
74

75 76
	of_node_put(subdev->np);
	kfree(subdev);
77 78 79 80

	return 0;
}

81
static int tegra_parse_dt(struct tegra_drm *tegra)
82 83 84 85
{
	static const char * const compat[] = {
		"nvidia,tegra20-dc",
		"nvidia,tegra20-hdmi",
T
Terje Bergstrom 已提交
86
		"nvidia,tegra20-gr2d",
87 88
		"nvidia,tegra30-dc",
		"nvidia,tegra30-hdmi",
T
Terje Bergstrom 已提交
89
		"nvidia,tegra30-gr2d",
90 91 92 93 94 95 96
	};
	unsigned int i;
	int err;

	for (i = 0; i < ARRAY_SIZE(compat); i++) {
		struct device_node *np;

97
		for_each_child_of_node(tegra->dev->of_node, np) {
98 99
			if (of_device_is_compatible(np, compat[i]) &&
			    of_device_is_available(np)) {
100
				err = host1x_subdev_add(tegra, np);
101 102 103 104 105 106 107 108 109
				if (err < 0)
					return err;
			}
		}
	}

	return 0;
}

110
int tegra_drm_alloc(struct platform_device *pdev)
111
{
112
	struct tegra_drm *tegra;
113 114
	int err;

115 116
	tegra = devm_kzalloc(&pdev->dev, sizeof(*tegra), GFP_KERNEL);
	if (!tegra)
117 118
		return -ENOMEM;

119 120 121 122 123 124
	mutex_init(&tegra->subdevs_lock);
	INIT_LIST_HEAD(&tegra->subdevs);
	INIT_LIST_HEAD(&tegra->active);
	mutex_init(&tegra->clients_lock);
	INIT_LIST_HEAD(&tegra->clients);
	tegra->dev = &pdev->dev;
125

126
	err = tegra_parse_dt(tegra);
127 128 129 130 131
	if (err < 0) {
		dev_err(&pdev->dev, "failed to parse DT: %d\n", err);
		return err;
	}

132
	host1x_set_drm_data(&pdev->dev, tegra);
133 134 135 136

	return 0;
}

137
int tegra_drm_init(struct tegra_drm *tegra, struct drm_device *drm)
138 139 140
{
	struct host1x_client *client;

141
	mutex_lock(&tegra->clients_lock);
142

143
	list_for_each_entry(client, &tegra->clients, list) {
144 145 146
		if (client->ops && client->ops->drm_init) {
			int err = client->ops->drm_init(client, drm);
			if (err < 0) {
147
				dev_err(tegra->dev,
148 149
					"DRM setup failed for %s: %d\n",
					dev_name(client->dev), err);
150
				mutex_unlock(&tegra->clients_lock);
151 152 153 154 155
				return err;
			}
		}
	}

156
	mutex_unlock(&tegra->clients_lock);
157 158 159 160

	return 0;
}

161
int tegra_drm_exit(struct tegra_drm *tegra)
162
{
163
	struct platform_device *pdev = to_platform_device(tegra->dev);
164 165
	struct host1x_client *client;

166
	if (!tegra->drm)
167 168
		return 0;

169
	mutex_lock(&tegra->clients_lock);
170

171
	list_for_each_entry_reverse(client, &tegra->clients, list) {
172 173 174
		if (client->ops && client->ops->drm_exit) {
			int err = client->ops->drm_exit(client);
			if (err < 0) {
175
				dev_err(tegra->dev,
176 177
					"DRM cleanup failed for %s: %d\n",
					dev_name(client->dev), err);
178
				mutex_unlock(&tegra->clients_lock);
179 180 181 182 183
				return err;
			}
		}
	}

184
	mutex_unlock(&tegra->clients_lock);
185 186

	drm_platform_exit(&tegra_drm_driver, pdev);
187
	tegra->drm = NULL;
188 189 190 191

	return 0;
}

192
int host1x_register_client(struct tegra_drm *tegra,
193 194
			   struct host1x_client *client)
{
195
	struct host1x_subdev *subdev, *tmp;
196 197
	int err;

198 199 200
	mutex_lock(&tegra->clients_lock);
	list_add_tail(&client->list, &tegra->clients);
	mutex_unlock(&tegra->clients_lock);
201

202 203 204
	list_for_each_entry_safe(subdev, tmp, &tegra->subdevs, list)
		if (subdev->np == client->dev->of_node)
			host1x_subdev_register(tegra, subdev, client);
205

206 207
	if (list_empty(&tegra->subdevs)) {
		struct platform_device *pdev = to_platform_device(tegra->dev);
208 209 210

		err = drm_platform_init(&tegra_drm_driver, pdev);
		if (err < 0) {
211
			dev_err(tegra->dev, "drm_platform_init(): %d\n", err);
212 213 214 215 216 217 218
			return err;
		}
	}

	return 0;
}

219
int host1x_unregister_client(struct tegra_drm *tegra,
220 221
			     struct host1x_client *client)
{
222
	struct host1x_subdev *subdev, *tmp;
223 224
	int err;

225 226 227
	list_for_each_entry_safe(subdev, tmp, &tegra->active, list) {
		if (subdev->client == client) {
			err = tegra_drm_exit(tegra);
228
			if (err < 0) {
229
				dev_err(tegra->dev, "tegra_drm_exit(): %d\n",
230 231 232 233
					err);
				return err;
			}

234
			host1x_subdev_unregister(tegra, subdev);
235 236 237 238
			break;
		}
	}

239
	mutex_lock(&tegra->clients_lock);
240
	list_del_init(&client->list);
241
	mutex_unlock(&tegra->clients_lock);
242 243 244 245

	return 0;
}

T
Thierry Reding 已提交
246 247
static int tegra_drm_load(struct drm_device *drm, unsigned long flags)
{
248
	struct tegra_drm *tegra;
T
Thierry Reding 已提交
249 250
	int err;

251 252 253
	tegra = host1x_get_drm_data(drm->dev);
	drm->dev_private = tegra;
	tegra->drm = drm;
T
Thierry Reding 已提交
254 255 256

	drm_mode_config_init(drm);

257
	err = tegra_drm_init(tegra, drm);
T
Thierry Reding 已提交
258 259 260
	if (err < 0)
		return err;

261 262 263 264 265
	/*
	 * We don't use the drm_irq_install() helpers provided by the DRM
	 * core, so we need to set this manually in order to allow the
	 * DRM_IOCTL_WAIT_VBLANK to operate correctly.
	 */
V
Ville Syrjälä 已提交
266
	drm->irq_enabled = true;
267

268 269 270 271
	err = drm_vblank_init(drm, drm->mode_config.num_crtc);
	if (err < 0)
		return err;

T
Thierry Reding 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
	err = tegra_drm_fb_init(drm);
	if (err < 0)
		return err;

	drm_kms_helper_poll_init(drm);

	return 0;
}

static int tegra_drm_unload(struct drm_device *drm)
{
	drm_kms_helper_poll_fini(drm);
	tegra_drm_fb_exit(drm);

	drm_mode_config_cleanup(drm);

	return 0;
}

static int tegra_drm_open(struct drm_device *drm, struct drm_file *filp)
{
T
Terje Bergstrom 已提交
293 294 295 296 297 298 299 300 301
	struct host1x_drm_file *fpriv;

	fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
	if (!fpriv)
		return -ENOMEM;

	INIT_LIST_HEAD(&fpriv->contexts);
	filp->driver_priv = fpriv;

T
Thierry Reding 已提交
302 303 304
	return 0;
}

T
Terje Bergstrom 已提交
305 306 307 308 309 310
static void host1x_drm_context_free(struct host1x_drm_context *context)
{
	context->client->ops->close_channel(context);
	kfree(context);
}

T
Thierry Reding 已提交
311 312
static void tegra_drm_lastclose(struct drm_device *drm)
{
313
	struct tegra_drm *tegra = drm->dev_private;
T
Thierry Reding 已提交
314

315
	tegra_fbdev_restore_mode(tegra->fbdev);
T
Thierry Reding 已提交
316 317
}

T
Terje Bergstrom 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
#ifdef CONFIG_DRM_TEGRA_STAGING
static bool host1x_drm_file_owns_context(struct host1x_drm_file *file,
					 struct host1x_drm_context *context)
{
	struct host1x_drm_context *ctx;

	list_for_each_entry(ctx, &file->contexts, list)
		if (ctx == context)
			return true;

	return false;
}

static int tegra_gem_create(struct drm_device *drm, void *data,
			    struct drm_file *file)
{
	struct drm_tegra_gem_create *args = data;
	struct tegra_bo *bo;

	bo = tegra_bo_create_with_handle(file, drm, args->size,
					 &args->handle);
	if (IS_ERR(bo))
		return PTR_ERR(bo);

	return 0;
}

static int tegra_gem_mmap(struct drm_device *drm, void *data,
			  struct drm_file *file)
{
	struct drm_tegra_gem_mmap *args = data;
	struct drm_gem_object *gem;
	struct tegra_bo *bo;

	gem = drm_gem_object_lookup(drm, file, args->handle);
	if (!gem)
		return -EINVAL;

	bo = to_tegra_bo(gem);

358
	args->offset = drm_vma_node_offset_addr(&bo->gem.vma_node);
T
Terje Bergstrom 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388

	drm_gem_object_unreference(gem);

	return 0;
}

static int tegra_syncpt_read(struct drm_device *drm, void *data,
			     struct drm_file *file)
{
	struct drm_tegra_syncpt_read *args = data;
	struct host1x *host = dev_get_drvdata(drm->dev);
	struct host1x_syncpt *sp = host1x_syncpt_get(host, args->id);

	if (!sp)
		return -EINVAL;

	args->value = host1x_syncpt_read_min(sp);
	return 0;
}

static int tegra_syncpt_incr(struct drm_device *drm, void *data,
			     struct drm_file *file)
{
	struct drm_tegra_syncpt_incr *args = data;
	struct host1x *host = dev_get_drvdata(drm->dev);
	struct host1x_syncpt *sp = host1x_syncpt_get(host, args->id);

	if (!sp)
		return -EINVAL;

389
	return host1x_syncpt_incr(sp);
T
Terje Bergstrom 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
}

static int tegra_syncpt_wait(struct drm_device *drm, void *data,
			     struct drm_file *file)
{
	struct drm_tegra_syncpt_wait *args = data;
	struct host1x *host = dev_get_drvdata(drm->dev);
	struct host1x_syncpt *sp = host1x_syncpt_get(host, args->id);

	if (!sp)
		return -EINVAL;

	return host1x_syncpt_wait(sp, args->thresh, args->timeout,
				  &args->value);
}

static int tegra_open_channel(struct drm_device *drm, void *data,
			      struct drm_file *file)
{
409 410
	struct host1x_drm_file *fpriv = file->driver_priv;
	struct tegra_drm *tegra = drm->dev_private;
T
Terje Bergstrom 已提交
411 412
	struct drm_tegra_open_channel *args = data;
	struct host1x_drm_context *context;
413
	struct host1x_client *client;
T
Terje Bergstrom 已提交
414 415 416 417 418 419
	int err = -ENODEV;

	context = kzalloc(sizeof(*context), GFP_KERNEL);
	if (!context)
		return -ENOMEM;

420
	list_for_each_entry(client, &tegra->clients, list)
T
Terje Bergstrom 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
		if (client->class == args->client) {
			err = client->ops->open_channel(client, context);
			if (err)
				break;

			context->client = client;
			list_add(&context->list, &fpriv->contexts);
			args->context = (uintptr_t)context;
			return 0;
		}

	kfree(context);
	return err;
}

static int tegra_close_channel(struct drm_device *drm, void *data,
			       struct drm_file *file)
{
	struct drm_tegra_close_channel *args = data;
	struct host1x_drm_file *fpriv = file->driver_priv;
	struct host1x_drm_context *context =
		(struct host1x_drm_context *)(uintptr_t)args->context;

	if (!host1x_drm_file_owns_context(fpriv, context))
		return -EINVAL;

	list_del(&context->list);
	host1x_drm_context_free(context);

	return 0;
}

static int tegra_get_syncpt(struct drm_device *drm, void *data,
			    struct drm_file *file)
{
	struct drm_tegra_get_syncpt *args = data;
	struct host1x_drm_file *fpriv = file->driver_priv;
	struct host1x_drm_context *context =
		(struct host1x_drm_context *)(uintptr_t)args->context;
	struct host1x_syncpt *syncpt;

	if (!host1x_drm_file_owns_context(fpriv, context))
		return -ENODEV;

	if (args->index >= context->client->num_syncpts)
		return -EINVAL;

	syncpt = context->client->syncpts[args->index];
	args->id = host1x_syncpt_id(syncpt);

	return 0;
}

static int tegra_submit(struct drm_device *drm, void *data,
			struct drm_file *file)
{
	struct drm_tegra_submit *args = data;
	struct host1x_drm_file *fpriv = file->driver_priv;
	struct host1x_drm_context *context =
		(struct host1x_drm_context *)(uintptr_t)args->context;

	if (!host1x_drm_file_owns_context(fpriv, context))
		return -ENODEV;

	return context->client->ops->submit(context, args, drm, file);
}
#endif

R
Rob Clark 已提交
489
static const struct drm_ioctl_desc tegra_drm_ioctls[] = {
T
Terje Bergstrom 已提交
490 491 492 493 494 495 496 497 498 499 500
#ifdef CONFIG_DRM_TEGRA_STAGING
	DRM_IOCTL_DEF_DRV(TEGRA_GEM_CREATE, tegra_gem_create, DRM_UNLOCKED | DRM_AUTH),
	DRM_IOCTL_DEF_DRV(TEGRA_GEM_MMAP, tegra_gem_mmap, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_SYNCPT_READ, tegra_syncpt_read, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_SYNCPT_INCR, tegra_syncpt_incr, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_SYNCPT_WAIT, tegra_syncpt_wait, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_OPEN_CHANNEL, tegra_open_channel, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_CLOSE_CHANNEL, tegra_close_channel, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_GET_SYNCPT, tegra_get_syncpt, DRM_UNLOCKED),
	DRM_IOCTL_DEF_DRV(TEGRA_SUBMIT, tegra_submit, DRM_UNLOCKED),
#endif
T
Thierry Reding 已提交
501 502 503 504 505 506 507
};

static const struct file_operations tegra_drm_fops = {
	.owner = THIS_MODULE,
	.open = drm_open,
	.release = drm_release,
	.unlocked_ioctl = drm_ioctl,
508
	.mmap = tegra_drm_mmap,
T
Thierry Reding 已提交
509 510 511 512 513 514 515 516
	.poll = drm_poll,
	.read = drm_read,
#ifdef CONFIG_COMPAT
	.compat_ioctl = drm_compat_ioctl,
#endif
	.llseek = noop_llseek,
};

517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
static struct drm_crtc *tegra_crtc_from_pipe(struct drm_device *drm, int pipe)
{
	struct drm_crtc *crtc;

	list_for_each_entry(crtc, &drm->mode_config.crtc_list, head) {
		struct tegra_dc *dc = to_tegra_dc(crtc);

		if (dc->pipe == pipe)
			return crtc;
	}

	return NULL;
}

static u32 tegra_drm_get_vblank_counter(struct drm_device *dev, int crtc)
{
	/* TODO: implement real hardware counter using syncpoints */
	return drm_vblank_count(dev, crtc);
}

static int tegra_drm_enable_vblank(struct drm_device *drm, int pipe)
{
	struct drm_crtc *crtc = tegra_crtc_from_pipe(drm, pipe);
	struct tegra_dc *dc = to_tegra_dc(crtc);

	if (!crtc)
		return -ENODEV;

	tegra_dc_enable_vblank(dc);

	return 0;
}

static void tegra_drm_disable_vblank(struct drm_device *drm, int pipe)
{
	struct drm_crtc *crtc = tegra_crtc_from_pipe(drm, pipe);
	struct tegra_dc *dc = to_tegra_dc(crtc);

	if (crtc)
		tegra_dc_disable_vblank(dc);
}

559 560
static void tegra_drm_preclose(struct drm_device *drm, struct drm_file *file)
{
T
Terje Bergstrom 已提交
561 562
	struct host1x_drm_file *fpriv = file->driver_priv;
	struct host1x_drm_context *context, *tmp;
563 564 565 566
	struct drm_crtc *crtc;

	list_for_each_entry(crtc, &drm->mode_config.crtc_list, head)
		tegra_dc_cancel_page_flip(crtc, file);
T
Terje Bergstrom 已提交
567 568 569 570 571

	list_for_each_entry_safe(context, tmp, &fpriv->contexts, list)
		host1x_drm_context_free(context);

	kfree(fpriv);
572 573
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
#ifdef CONFIG_DEBUG_FS
static int tegra_debugfs_framebuffers(struct seq_file *s, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *)s->private;
	struct drm_device *drm = node->minor->dev;
	struct drm_framebuffer *fb;

	mutex_lock(&drm->mode_config.fb_lock);

	list_for_each_entry(fb, &drm->mode_config.fb_list, head) {
		seq_printf(s, "%3d: user size: %d x %d, depth %d, %d bpp, refcount %d\n",
			   fb->base.id, fb->width, fb->height, fb->depth,
			   fb->bits_per_pixel,
			   atomic_read(&fb->refcount.refcount));
	}

	mutex_unlock(&drm->mode_config.fb_lock);

	return 0;
}

static struct drm_info_list tegra_debugfs_list[] = {
	{ "framebuffers", tegra_debugfs_framebuffers, 0 },
};

static int tegra_debugfs_init(struct drm_minor *minor)
{
	return drm_debugfs_create_files(tegra_debugfs_list,
					ARRAY_SIZE(tegra_debugfs_list),
					minor->debugfs_root, minor);
}

static void tegra_debugfs_cleanup(struct drm_minor *minor)
{
	drm_debugfs_remove_files(tegra_debugfs_list,
				 ARRAY_SIZE(tegra_debugfs_list), minor);
}
#endif

T
Thierry Reding 已提交
613
struct drm_driver tegra_drm_driver = {
614
	.driver_features = DRIVER_MODESET | DRIVER_GEM,
T
Thierry Reding 已提交
615 616 617
	.load = tegra_drm_load,
	.unload = tegra_drm_unload,
	.open = tegra_drm_open,
618
	.preclose = tegra_drm_preclose,
T
Thierry Reding 已提交
619 620
	.lastclose = tegra_drm_lastclose,

621 622 623 624
	.get_vblank_counter = tegra_drm_get_vblank_counter,
	.enable_vblank = tegra_drm_enable_vblank,
	.disable_vblank = tegra_drm_disable_vblank,

625 626 627 628 629
#if defined(CONFIG_DEBUG_FS)
	.debugfs_init = tegra_debugfs_init,
	.debugfs_cleanup = tegra_debugfs_cleanup,
#endif

630 631 632 633
	.gem_free_object = tegra_bo_free_object,
	.gem_vm_ops = &tegra_bo_vm_ops,
	.dumb_create = tegra_bo_dumb_create,
	.dumb_map_offset = tegra_bo_dumb_map_offset,
634
	.dumb_destroy = drm_gem_dumb_destroy,
T
Thierry Reding 已提交
635 636 637 638 639 640 641 642 643 644 645 646

	.ioctls = tegra_drm_ioctls,
	.num_ioctls = ARRAY_SIZE(tegra_drm_ioctls),
	.fops = &tegra_drm_fops,

	.name = DRIVER_NAME,
	.desc = DRIVER_DESC,
	.date = DRIVER_DATE,
	.major = DRIVER_MAJOR,
	.minor = DRIVER_MINOR,
	.patchlevel = DRIVER_PATCHLEVEL,
};