summaryrefslogtreecommitdiff
path: root/drivers/video/tegra/host/vi/vi.c
blob: a6f902a1ac7b6e258c8cb9833112873bf3622d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * drivers/video/tegra/host/vi/vi.c
 *
 * Tegra Graphics Host VI
 *
 * Copyright (c) 2012, NVIDIA Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/resource.h>

#include <mach/iomap.h>

#include "dev.h"
#include "bus_client.h"

static int __devinit vi_probe(struct nvhost_device *dev)
{
	int err = 0;

	err = nvhost_client_device_get_resources(dev);
	if (err)
		return err;

	return nvhost_client_device_init(dev);
}

static int __exit vi_remove(struct nvhost_device *dev)
{
	/* Add clean-up */
	return 0;
}

static int vi_suspend(struct nvhost_device *dev, pm_message_t state)
{
	return nvhost_client_device_suspend(dev);
}

static int vi_resume(struct nvhost_device *dev)
{
	dev_info(&dev->dev, "resuming\n");
	return 0;
}

static struct resource vi_resources = {
	.name = "regs",
	.start = TEGRA_VI_BASE,
	.end = TEGRA_VI_BASE + TEGRA_VI_SIZE - 1,
	.flags = IORESOURCE_MEM,
};

struct nvhost_device *vi_device;

static struct nvhost_driver vi_driver = {
	.probe = vi_probe,
	.remove = __exit_p(vi_remove),
#ifdef CONFIG_PM
	.suspend = vi_suspend,
	.resume = vi_resume,
#endif
	.driver = {
		.owner = THIS_MODULE,
		.name = "vi",
	}
};

static int __init vi_init(void)
{
	int err;

	vi_device = nvhost_get_device("vi");
	if (!vi_device)
		return -ENXIO;

	vi_device->resource = &vi_resources;
	vi_device->num_resources = 1;
	err = nvhost_device_register(vi_device);
	if (err)
		return err;

	return nvhost_driver_register(&vi_driver);
}

static void __exit vi_exit(void)
{
	nvhost_driver_unregister(&vi_driver);
}

module_init(vi_init);
module_exit(vi_exit);