drm/radeon/uvd: revert lower msg&fb buffer requirements on UVD3
[deliverable/linux.git] / drivers / gpu / drm / drm_platform.c
CommitLineData
dcdb1674
JC
1/*
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
2d1a8a48 28#include <linux/export.h>
760285e7 29#include <drm/drmP.h>
dcdb1674 30
66cc8b6b 31/*
dcdb1674
JC
32 * 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
66cc8b6b
LD
42static int drm_get_platform_dev(struct platform_device *platdev,
43 struct drm_driver *driver)
dcdb1674
JC
44{
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
b64c115e
DA
57 mutex_lock(&drm_global_mutex);
58
dcdb1674
JC
59 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)) {
dcdb1674
JC
67 ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
68 if (ret)
69 goto err_g1;
70 }
71
1793126f
DH
72 if (drm_core_check_feature(dev, DRIVER_RENDER) && drm_rnodes) {
73 ret = drm_get_minor(dev, &dev->render, DRM_MINOR_RENDER);
74 if (ret)
75 goto err_g11;
76 }
77
dcdb1674
JC
78 ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY);
79 if (ret)
80 goto err_g2;
81
82 if (dev->driver->load) {
83 ret = dev->driver->load(dev, 0);
84 if (ret)
85 goto err_g3;
86 }
87
88 /* setup the grouping for the legacy output */
89 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
90 ret = drm_mode_group_init_legacy_group(dev,
91 &dev->primary->mode_group);
92 if (ret)
93 goto err_g3;
94 }
95
96 list_add_tail(&dev->driver_item, &driver->device_list);
97
b64c115e
DA
98 mutex_unlock(&drm_global_mutex);
99
dcdb1674
JC
100 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
101 driver->name, driver->major, driver->minor, driver->patchlevel,
102 driver->date, dev->primary->index);
103
104 return 0;
105
106err_g3:
107 drm_put_minor(&dev->primary);
108err_g2:
1793126f
DH
109 if (dev->render)
110 drm_put_minor(&dev->render);
111err_g11:
dcdb1674
JC
112 if (drm_core_check_feature(dev, DRIVER_MODESET))
113 drm_put_minor(&dev->control);
114err_g1:
115 kfree(dev);
b64c115e 116 mutex_unlock(&drm_global_mutex);
dcdb1674
JC
117 return ret;
118}
dcdb1674 119
8410ea3b
DA
120static int drm_platform_get_irq(struct drm_device *dev)
121{
122 return platform_get_irq(dev->platformdev, 0);
123}
124
125static const char *drm_platform_get_name(struct drm_device *dev)
126{
127 return dev->platformdev->name;
128}
129
130static int drm_platform_set_busid(struct drm_device *dev, struct drm_master *master)
131{
b19c19af 132 int len, ret, id;
8410ea3b 133
28a4a163
RC
134 master->unique_len = 13 + strlen(dev->platformdev->name);
135 master->unique_size = master->unique_len;
8410ea3b
DA
136 master->unique = kmalloc(master->unique_len + 1, GFP_KERNEL);
137
138 if (master->unique == NULL)
139 return -ENOMEM;
140
b19c19af
RC
141 id = dev->platformdev->id;
142
143 /* if only a single instance of the platform device, id will be
144 * set to -1.. use 0 instead to avoid a funny looking bus-id:
145 */
146 if (id == -1)
147 id = 0;
148
8410ea3b 149 len = snprintf(master->unique, master->unique_len,
b19c19af 150 "platform:%s:%02d", dev->platformdev->name, id);
8410ea3b
DA
151
152 if (len > master->unique_len) {
153 DRM_ERROR("Unique buffer overflowed\n");
154 ret = -EINVAL;
155 goto err;
156 }
157
158 dev->devname =
159 kmalloc(strlen(dev->platformdev->name) +
160 master->unique_len + 2, GFP_KERNEL);
161
162 if (dev->devname == NULL) {
163 ret = -ENOMEM;
164 goto err;
165 }
166
167 sprintf(dev->devname, "%s@%s", dev->platformdev->name,
168 master->unique);
169 return 0;
170err:
171 return ret;
172}
173
174static struct drm_bus drm_platform_bus = {
175 .bus_type = DRIVER_BUS_PLATFORM,
176 .get_irq = drm_platform_get_irq,
177 .get_name = drm_platform_get_name,
178 .set_busid = drm_platform_set_busid,
179};
180
dcdb1674 181/**
8410ea3b 182 * Platform device initialization. Called direct from modules.
dcdb1674
JC
183 *
184 * \return zero on success or a negative number on failure.
185 *
186 * Initializes a drm_device structures,registering the
187 * stubs
188 *
189 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
190 * after the initialization for driver customization.
191 */
192
8410ea3b 193int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device)
dcdb1674 194{
8410ea3b
DA
195 DRM_DEBUG("\n");
196
197 driver->kdriver.platform_device = platform_device;
198 driver->bus = &drm_platform_bus;
199 INIT_LIST_HEAD(&driver->device_list);
200 return drm_get_platform_dev(platform_device, driver);
201}
202EXPORT_SYMBOL(drm_platform_init);
203
204void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device)
205{
206 struct drm_device *dev, *tmp;
207 DRM_DEBUG("\n");
208
209 list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item)
210 drm_put_dev(dev);
211 DRM_INFO("Module unloaded\n");
dcdb1674 212}
8410ea3b 213EXPORT_SYMBOL(drm_platform_exit);
This page took 0.343914 seconds and 5 git commands to generate.