drm.c 13.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
 *
 * 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.
 */

10 11
#include <linux/host1x.h>

T
Thierry Reding 已提交
12
#include "drm.h"
13
#include "gem.h"
T
Thierry Reding 已提交
14 15 16 17 18 19 20 21

#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

22 23 24 25
struct tegra_drm_file {
	struct list_head contexts;
};

26
static int tegra_drm_load(struct drm_device *drm, unsigned long flags)
27
{
28
	struct host1x_device *device = to_host1x_device(drm->dev);
29
	struct tegra_drm *tegra;
30 31
	int err;

32
	tegra = kzalloc(sizeof(*tegra), GFP_KERNEL);
33
	if (!tegra)
34 35
		return -ENOMEM;

36
	dev_set_drvdata(drm->dev, tegra);
37 38 39 40
	mutex_init(&tegra->clients_lock);
	INIT_LIST_HEAD(&tegra->clients);
	drm->dev_private = tegra;
	tegra->drm = drm;
T
Thierry Reding 已提交
41 42 43

	drm_mode_config_init(drm);

44
	err = host1x_device_init(device);
T
Thierry Reding 已提交
45 46 47
	if (err < 0)
		return err;

48 49 50 51 52
	/*
	 * 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ä 已提交
53
	drm->irq_enabled = true;
54

55 56 57 58
	err = drm_vblank_init(drm, drm->mode_config.num_crtc);
	if (err < 0)
		return err;

T
Thierry Reding 已提交
59 60 61 62 63 64 65 66 67 68 69
	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)
{
70 71 72
	struct host1x_device *device = to_host1x_device(drm->dev);
	int err;

T
Thierry Reding 已提交
73 74 75
	drm_kms_helper_poll_fini(drm);
	tegra_drm_fb_exit(drm);

76 77 78 79
	err = host1x_device_exit(device);
	if (err < 0)
		return err;

T
Thierry Reding 已提交
80 81 82 83 84 85 86
	drm_mode_config_cleanup(drm);

	return 0;
}

static int tegra_drm_open(struct drm_device *drm, struct drm_file *filp)
{
87
	struct tegra_drm_file *fpriv;
T
Terje Bergstrom 已提交
88 89 90 91 92 93 94 95

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

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

T
Thierry Reding 已提交
96 97 98
	return 0;
}

99
static void tegra_drm_context_free(struct tegra_drm_context *context)
T
Terje Bergstrom 已提交
100 101 102 103 104
{
	context->client->ops->close_channel(context);
	kfree(context);
}

T
Thierry Reding 已提交
105 106
static void tegra_drm_lastclose(struct drm_device *drm)
{
107
	struct tegra_drm *tegra = drm->dev_private;
T
Thierry Reding 已提交
108

109
	tegra_fbdev_restore_mode(tegra->fbdev);
T
Thierry Reding 已提交
110 111
}

T
Terje Bergstrom 已提交
112
#ifdef CONFIG_DRM_TEGRA_STAGING
113 114 115 116 117
static struct tegra_drm_context *tegra_drm_get_context(__u64 context)
{
	return (struct tegra_drm_context *)(uintptr_t)context;
}

118
static bool tegra_drm_file_owns_context(struct tegra_drm_file *file,
119
					struct tegra_drm_context *context)
T
Terje Bergstrom 已提交
120
{
121
	struct tegra_drm_context *ctx;
T
Terje Bergstrom 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

	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);

157
	args->offset = drm_vma_node_offset_addr(&bo->gem.vma_node);
T
Terje Bergstrom 已提交
158 159 160 161 162 163 164 165 166

	drm_gem_object_unreference(gem);

	return 0;
}

static int tegra_syncpt_read(struct drm_device *drm, void *data,
			     struct drm_file *file)
{
167
	struct host1x *host = dev_get_drvdata(drm->dev->parent);
T
Terje Bergstrom 已提交
168
	struct drm_tegra_syncpt_read *args = data;
169
	struct host1x_syncpt *sp;
T
Terje Bergstrom 已提交
170

171
	sp = host1x_syncpt_get(host, args->id);
T
Terje Bergstrom 已提交
172 173 174 175 176 177 178 179 180 181
	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)
{
182
	struct host1x *host1x = dev_get_drvdata(drm->dev->parent);
T
Terje Bergstrom 已提交
183
	struct drm_tegra_syncpt_incr *args = data;
184
	struct host1x_syncpt *sp;
T
Terje Bergstrom 已提交
185

186
	sp = host1x_syncpt_get(host1x, args->id);
T
Terje Bergstrom 已提交
187 188 189
	if (!sp)
		return -EINVAL;

190
	return host1x_syncpt_incr(sp);
T
Terje Bergstrom 已提交
191 192 193 194 195
}

static int tegra_syncpt_wait(struct drm_device *drm, void *data,
			     struct drm_file *file)
{
196
	struct host1x *host1x = dev_get_drvdata(drm->dev->parent);
T
Terje Bergstrom 已提交
197
	struct drm_tegra_syncpt_wait *args = data;
198
	struct host1x_syncpt *sp;
T
Terje Bergstrom 已提交
199

200
	sp = host1x_syncpt_get(host1x, args->id);
T
Terje Bergstrom 已提交
201 202 203 204 205 206 207 208 209 210
	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)
{
211
	struct tegra_drm_file *fpriv = file->driver_priv;
212
	struct tegra_drm *tegra = drm->dev_private;
T
Terje Bergstrom 已提交
213
	struct drm_tegra_open_channel *args = data;
214
	struct tegra_drm_context *context;
215
	struct tegra_drm_client *client;
T
Terje Bergstrom 已提交
216 217 218 219 220 221
	int err = -ENODEV;

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

222
	list_for_each_entry(client, &tegra->clients, list)
223
		if (client->base.class == args->client) {
T
Terje Bergstrom 已提交
224 225 226 227 228 229
			err = client->ops->open_channel(client, context);
			if (err)
				break;

			list_add(&context->list, &fpriv->contexts);
			args->context = (uintptr_t)context;
230
			context->client = client;
T
Terje Bergstrom 已提交
231 232 233 234 235 236 237 238 239 240
			return 0;
		}

	kfree(context);
	return err;
}

static int tegra_close_channel(struct drm_device *drm, void *data,
			       struct drm_file *file)
{
241
	struct tegra_drm_file *fpriv = file->driver_priv;
242
	struct drm_tegra_close_channel *args = data;
243 244 245
	struct tegra_drm_context *context;

	context = tegra_drm_get_context(args->context);
T
Terje Bergstrom 已提交
246

247
	if (!tegra_drm_file_owns_context(fpriv, context))
T
Terje Bergstrom 已提交
248 249 250
		return -EINVAL;

	list_del(&context->list);
251
	tegra_drm_context_free(context);
T
Terje Bergstrom 已提交
252 253 254 255 256 257 258

	return 0;
}

static int tegra_get_syncpt(struct drm_device *drm, void *data,
			    struct drm_file *file)
{
259
	struct tegra_drm_file *fpriv = file->driver_priv;
T
Terje Bergstrom 已提交
260
	struct drm_tegra_get_syncpt *args = data;
261
	struct tegra_drm_context *context;
T
Terje Bergstrom 已提交
262 263
	struct host1x_syncpt *syncpt;

264 265
	context = tegra_drm_get_context(args->context);

266
	if (!tegra_drm_file_owns_context(fpriv, context))
T
Terje Bergstrom 已提交
267 268
		return -ENODEV;

269
	if (args->index >= context->client->base.num_syncpts)
T
Terje Bergstrom 已提交
270 271
		return -EINVAL;

272
	syncpt = context->client->base.syncpts[args->index];
T
Terje Bergstrom 已提交
273 274 275 276 277 278 279 280
	args->id = host1x_syncpt_id(syncpt);

	return 0;
}

static int tegra_submit(struct drm_device *drm, void *data,
			struct drm_file *file)
{
281
	struct tegra_drm_file *fpriv = file->driver_priv;
T
Terje Bergstrom 已提交
282
	struct drm_tegra_submit *args = data;
283 284 285
	struct tegra_drm_context *context;

	context = tegra_drm_get_context(args->context);
T
Terje Bergstrom 已提交
286

287
	if (!tegra_drm_file_owns_context(fpriv, context))
T
Terje Bergstrom 已提交
288 289 290 291 292 293
		return -ENODEV;

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

R
Rob Clark 已提交
294
static const struct drm_ioctl_desc tegra_drm_ioctls[] = {
T
Terje Bergstrom 已提交
295 296 297 298 299 300 301 302 303 304 305
#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 已提交
306 307 308 309 310 311 312
};

static const struct file_operations tegra_drm_fops = {
	.owner = THIS_MODULE,
	.open = drm_open,
	.release = drm_release,
	.unlocked_ioctl = drm_ioctl,
313
	.mmap = tegra_drm_mmap,
T
Thierry Reding 已提交
314 315 316 317 318 319 320 321
	.poll = drm_poll,
	.read = drm_read,
#ifdef CONFIG_COMPAT
	.compat_ioctl = drm_compat_ioctl,
#endif
	.llseek = noop_llseek,
};

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 358 359 360 361 362 363
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);
}

364 365
static void tegra_drm_preclose(struct drm_device *drm, struct drm_file *file)
{
366
	struct tegra_drm_file *fpriv = file->driver_priv;
367
	struct tegra_drm_context *context, *tmp;
368 369 370 371
	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 已提交
372 373

	list_for_each_entry_safe(context, tmp, &fpriv->contexts, list)
374
		tegra_drm_context_free(context);
T
Terje Bergstrom 已提交
375 376

	kfree(fpriv);
377 378
}

379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
#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 已提交
418
struct drm_driver tegra_drm_driver = {
419
	.driver_features = DRIVER_MODESET | DRIVER_GEM,
T
Thierry Reding 已提交
420 421 422
	.load = tegra_drm_load,
	.unload = tegra_drm_unload,
	.open = tegra_drm_open,
423
	.preclose = tegra_drm_preclose,
T
Thierry Reding 已提交
424 425
	.lastclose = tegra_drm_lastclose,

426 427 428 429
	.get_vblank_counter = tegra_drm_get_vblank_counter,
	.enable_vblank = tegra_drm_enable_vblank,
	.disable_vblank = tegra_drm_disable_vblank,

430 431 432 433 434
#if defined(CONFIG_DEBUG_FS)
	.debugfs_init = tegra_debugfs_init,
	.debugfs_cleanup = tegra_debugfs_cleanup,
#endif

435 436 437 438
	.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,
439
	.dumb_destroy = drm_gem_dumb_destroy,
T
Thierry Reding 已提交
440 441 442 443 444 445 446 447 448 449 450 451

	.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,
};
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 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 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

int tegra_drm_register_client(struct tegra_drm *tegra,
			      struct tegra_drm_client *client)
{
	mutex_lock(&tegra->clients_lock);
	list_add_tail(&client->list, &tegra->clients);
	mutex_unlock(&tegra->clients_lock);

	return 0;
}

int tegra_drm_unregister_client(struct tegra_drm *tegra,
				struct tegra_drm_client *client)
{
	mutex_lock(&tegra->clients_lock);
	list_del_init(&client->list);
	mutex_unlock(&tegra->clients_lock);

	return 0;
}

static int host1x_drm_probe(struct host1x_device *device)
{
	return drm_host1x_init(&tegra_drm_driver, device);
}

static int host1x_drm_remove(struct host1x_device *device)
{
	drm_host1x_exit(&tegra_drm_driver, device);

	return 0;
}

static const struct of_device_id host1x_drm_subdevs[] = {
	{ .compatible = "nvidia,tegra20-dc", },
	{ .compatible = "nvidia,tegra20-hdmi", },
	{ .compatible = "nvidia,tegra20-gr2d", },
	{ .compatible = "nvidia,tegra30-dc", },
	{ .compatible = "nvidia,tegra30-hdmi", },
	{ .compatible = "nvidia,tegra30-gr2d", },
	{ /* sentinel */ }
};

static struct host1x_driver host1x_drm_driver = {
	.name = "drm",
	.probe = host1x_drm_probe,
	.remove = host1x_drm_remove,
	.subdevs = host1x_drm_subdevs,
};

static int __init host1x_drm_init(void)
{
	int err;

	err = host1x_driver_register(&host1x_drm_driver);
	if (err < 0)
		return err;

	err = platform_driver_register(&tegra_dc_driver);
	if (err < 0)
		goto unregister_host1x;

	err = platform_driver_register(&tegra_hdmi_driver);
	if (err < 0)
		goto unregister_dc;

	err = platform_driver_register(&tegra_gr2d_driver);
	if (err < 0)
		goto unregister_hdmi;

	return 0;

unregister_hdmi:
	platform_driver_unregister(&tegra_hdmi_driver);
unregister_dc:
	platform_driver_unregister(&tegra_dc_driver);
unregister_host1x:
	host1x_driver_unregister(&host1x_drm_driver);
	return err;
}
module_init(host1x_drm_init);

static void __exit host1x_drm_exit(void)
{
	platform_driver_unregister(&tegra_gr2d_driver);
	platform_driver_unregister(&tegra_hdmi_driver);
	platform_driver_unregister(&tegra_dc_driver);
	host1x_driver_unregister(&host1x_drm_driver);
}
module_exit(host1x_drm_exit);

MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
MODULE_DESCRIPTION("NVIDIA Tegra DRM driver");
MODULE_LICENSE("GPL v2");