Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 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 | |
Paul Gortmaker | 2d1a8a4 | 2011-08-30 18:16:33 -0400 | [diff] [blame] | 28 | #include <linux/export.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 29 | #include <drm/drmP.h> |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 30 | |
Lespiau, Damien | 66cc8b6 | 2013-08-20 00:53:10 +0100 | [diff] [blame] | 31 | /* |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 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 | |
Lespiau, Damien | 66cc8b6 | 2013-08-20 00:53:10 +0100 | [diff] [blame] | 42 | static int drm_get_platform_dev(struct platform_device *platdev, |
| 43 | struct drm_driver *driver) |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 44 | { |
| 45 | struct drm_device *dev; |
| 46 | int ret; |
| 47 | |
| 48 | DRM_DEBUG("\n"); |
| 49 | |
David Herrmann | 1bb7253 | 2013-10-02 11:23:34 +0200 | [diff] [blame] | 50 | dev = drm_dev_alloc(driver, &platdev->dev); |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 51 | if (!dev) |
| 52 | return -ENOMEM; |
| 53 | |
| 54 | dev->platformdev = platdev; |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 55 | |
David Herrmann | c22f0ac | 2013-10-02 11:23:35 +0200 | [diff] [blame] | 56 | ret = drm_dev_register(dev, 0); |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 57 | if (ret) |
David Herrmann | c22f0ac | 2013-10-02 11:23:35 +0200 | [diff] [blame] | 58 | goto err_free; |
Dave Airlie | b64c115 | 2010-09-14 20:14:38 +1000 | [diff] [blame] | 59 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 60 | DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n", |
| 61 | driver->name, driver->major, driver->minor, driver->patchlevel, |
| 62 | driver->date, dev->primary->index); |
| 63 | |
| 64 | return 0; |
| 65 | |
David Herrmann | c22f0ac | 2013-10-02 11:23:35 +0200 | [diff] [blame] | 66 | err_free: |
David Herrmann | 099d1c2 | 2014-01-29 10:21:36 +0100 | [diff] [blame] | 67 | drm_dev_unref(dev); |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 68 | return ret; |
| 69 | } |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 70 | |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 71 | int drm_platform_set_busid(struct drm_device *dev, struct drm_master *master) |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 72 | { |
David Herrmann | d0a3916 | 2014-08-29 12:12:41 +0200 | [diff] [blame] | 73 | int id; |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 74 | |
Rob Clark | b19c19a | 2012-03-06 10:20:36 -0600 | [diff] [blame] | 75 | id = dev->platformdev->id; |
David Herrmann | d0a3916 | 2014-08-29 12:12:41 +0200 | [diff] [blame] | 76 | if (id < 0) |
Rob Clark | b19c19a | 2012-03-06 10:20:36 -0600 | [diff] [blame] | 77 | id = 0; |
| 78 | |
David Herrmann | d0a3916 | 2014-08-29 12:12:41 +0200 | [diff] [blame] | 79 | master->unique = kasprintf(GFP_KERNEL, "platform:%s:%02d", |
| 80 | dev->platformdev->name, id); |
| 81 | if (!master->unique) |
| 82 | return -ENOMEM; |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 83 | |
David Herrmann | d0a3916 | 2014-08-29 12:12:41 +0200 | [diff] [blame] | 84 | master->unique_len = strlen(master->unique); |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 85 | return 0; |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 86 | } |
David Herrmann | 915b4d1 | 2014-08-29 12:12:43 +0200 | [diff] [blame] | 87 | EXPORT_SYMBOL(drm_platform_set_busid); |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 88 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 89 | /** |
Thierry Reding | c6a1af8a | 2014-05-19 13:39:07 +0200 | [diff] [blame] | 90 | * drm_platform_init - Register a platform device with the DRM subsystem |
| 91 | * @driver: DRM device driver |
| 92 | * @platform_device: platform device to register |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 93 | * |
Thierry Reding | c6a1af8a | 2014-05-19 13:39:07 +0200 | [diff] [blame] | 94 | * Registers the specified DRM device driver and platform device with the DRM |
| 95 | * subsystem, initializing a drm_device structure and calling the driver's |
| 96 | * .load() function. |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 97 | * |
Thierry Reding | c6a1af8a | 2014-05-19 13:39:07 +0200 | [diff] [blame] | 98 | * Return: 0 on success or a negative error code on failure. |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 99 | */ |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 100 | int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device) |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 101 | { |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 102 | DRM_DEBUG("\n"); |
| 103 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 104 | return drm_get_platform_dev(platform_device, driver); |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 105 | } |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 106 | EXPORT_SYMBOL(drm_platform_init); |