blob: 400024b6d512935c55887faf397b4d746d352a56 [file] [log] [blame]
Jordan Crousedcdb1672010-05-27 13:40:25 -06001/*
2 * Derived from drm_pci.c
3 *
4 * Copyright 2003 José Fonseca.
5 * Copyright 2003 Leif Delgass.
6 * Copyright (c) 2009, Code Aurora Forum.
7 * All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
18 * Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 */
27
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040028#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/drmP.h>
Jordan Crousedcdb1672010-05-27 13:40:25 -060030
Lespiau, Damien66cc8b62013-08-20 00:53:10 +010031/*
Jordan Crousedcdb1672010-05-27 13:40:25 -060032 * Register.
33 *
34 * \param platdev - Platform device struture
35 * \return zero on success or a negative number on failure.
36 *
37 * Attempt to gets inter module "drm" information. If we are first
38 * then register the character device and inter module information.
39 * Try and register, if we fail to register, backout previous work.
40 */
41
Lespiau, Damien66cc8b62013-08-20 00:53:10 +010042static int drm_get_platform_dev(struct platform_device *platdev,
43 struct drm_driver *driver)
Jordan Crousedcdb1672010-05-27 13:40:25 -060044{
45 struct drm_device *dev;
46 int ret;
47
48 DRM_DEBUG("\n");
49
50 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
51 if (!dev)
52 return -ENOMEM;
53
54 dev->platformdev = platdev;
55 dev->dev = &platdev->dev;
56
Dave Airlieb64c1152010-09-14 20:14:38 +100057 mutex_lock(&drm_global_mutex);
58
Jordan Crousedcdb1672010-05-27 13:40:25 -060059 ret = drm_fill_in_dev(dev, NULL, driver);
60
61 if (ret) {
62 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
63 goto err_g1;
64 }
65
66 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Jordan Crousedcdb1672010-05-27 13:40:25 -060067 ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
68 if (ret)
69 goto err_g1;
70 }
71
72 ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY);
73 if (ret)
74 goto err_g2;
75
76 if (dev->driver->load) {
77 ret = dev->driver->load(dev, 0);
78 if (ret)
79 goto err_g3;
80 }
81
82 /* setup the grouping for the legacy output */
83 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
84 ret = drm_mode_group_init_legacy_group(dev,
85 &dev->primary->mode_group);
86 if (ret)
87 goto err_g3;
88 }
89
90 list_add_tail(&dev->driver_item, &driver->device_list);
91
Dave Airlieb64c1152010-09-14 20:14:38 +100092 mutex_unlock(&drm_global_mutex);
93
Jordan Crousedcdb1672010-05-27 13:40:25 -060094 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
95 driver->name, driver->major, driver->minor, driver->patchlevel,
96 driver->date, dev->primary->index);
97
98 return 0;
99
100err_g3:
101 drm_put_minor(&dev->primary);
102err_g2:
103 if (drm_core_check_feature(dev, DRIVER_MODESET))
104 drm_put_minor(&dev->control);
105err_g1:
106 kfree(dev);
Dave Airlieb64c1152010-09-14 20:14:38 +1000107 mutex_unlock(&drm_global_mutex);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600108 return ret;
109}
Jordan Crousedcdb1672010-05-27 13:40:25 -0600110
Dave Airlie8410ea32010-12-15 03:16:38 +1000111static int drm_platform_get_irq(struct drm_device *dev)
112{
113 return platform_get_irq(dev->platformdev, 0);
114}
115
116static const char *drm_platform_get_name(struct drm_device *dev)
117{
118 return dev->platformdev->name;
119}
120
121static int drm_platform_set_busid(struct drm_device *dev, struct drm_master *master)
122{
Rob Clarkb19c19a2012-03-06 10:20:36 -0600123 int len, ret, id;
Dave Airlie8410ea32010-12-15 03:16:38 +1000124
Rob Clark28a4a162011-07-14 03:12:43 +0000125 master->unique_len = 13 + strlen(dev->platformdev->name);
126 master->unique_size = master->unique_len;
Dave Airlie8410ea32010-12-15 03:16:38 +1000127 master->unique = kmalloc(master->unique_len + 1, GFP_KERNEL);
128
129 if (master->unique == NULL)
130 return -ENOMEM;
131
Rob Clarkb19c19a2012-03-06 10:20:36 -0600132 id = dev->platformdev->id;
133
134 /* if only a single instance of the platform device, id will be
135 * set to -1.. use 0 instead to avoid a funny looking bus-id:
136 */
137 if (id == -1)
138 id = 0;
139
Dave Airlie8410ea32010-12-15 03:16:38 +1000140 len = snprintf(master->unique, master->unique_len,
Rob Clarkb19c19a2012-03-06 10:20:36 -0600141 "platform:%s:%02d", dev->platformdev->name, id);
Dave Airlie8410ea32010-12-15 03:16:38 +1000142
143 if (len > master->unique_len) {
144 DRM_ERROR("Unique buffer overflowed\n");
145 ret = -EINVAL;
146 goto err;
147 }
148
149 dev->devname =
150 kmalloc(strlen(dev->platformdev->name) +
151 master->unique_len + 2, GFP_KERNEL);
152
153 if (dev->devname == NULL) {
154 ret = -ENOMEM;
155 goto err;
156 }
157
158 sprintf(dev->devname, "%s@%s", dev->platformdev->name,
159 master->unique);
160 return 0;
161err:
162 return ret;
163}
164
165static struct drm_bus drm_platform_bus = {
166 .bus_type = DRIVER_BUS_PLATFORM,
167 .get_irq = drm_platform_get_irq,
168 .get_name = drm_platform_get_name,
169 .set_busid = drm_platform_set_busid,
170};
171
Jordan Crousedcdb1672010-05-27 13:40:25 -0600172/**
Dave Airlie8410ea32010-12-15 03:16:38 +1000173 * Platform device initialization. Called direct from modules.
Jordan Crousedcdb1672010-05-27 13:40:25 -0600174 *
175 * \return zero on success or a negative number on failure.
176 *
177 * Initializes a drm_device structures,registering the
178 * stubs
179 *
180 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
181 * after the initialization for driver customization.
182 */
183
Dave Airlie8410ea32010-12-15 03:16:38 +1000184int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device)
Jordan Crousedcdb1672010-05-27 13:40:25 -0600185{
Dave Airlie8410ea32010-12-15 03:16:38 +1000186 DRM_DEBUG("\n");
187
188 driver->kdriver.platform_device = platform_device;
189 driver->bus = &drm_platform_bus;
190 INIT_LIST_HEAD(&driver->device_list);
191 return drm_get_platform_dev(platform_device, driver);
Jordan Crousedcdb1672010-05-27 13:40:25 -0600192}
Dave Airlie8410ea32010-12-15 03:16:38 +1000193EXPORT_SYMBOL(drm_platform_init);
194
195void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device)
196{
197 struct drm_device *dev, *tmp;
198 DRM_DEBUG("\n");
199
200 list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item)
201 drm_put_dev(dev);
202 DRM_INFO("Module unloaded\n");
203}
204EXPORT_SYMBOL(drm_platform_exit);