Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* drm_pci.h -- PCI DMA memory management wrappers for DRM -*- linux-c -*- */ |
| 2 | /** |
| 3 | * \file drm_pci.c |
| 4 | * \brief Functions and ioctls to manage PCI memory |
| 5 | * |
| 6 | * \warning These interfaces aren't stable yet. |
| 7 | * |
| 8 | * \todo Implement the remaining ioctl's for the PCI pools. |
| 9 | * \todo The wrappers here are so thin that they would be better off inlined.. |
| 10 | * |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 11 | * \author José Fonseca <jrfonseca@tungstengraphics.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * \author Leif Delgass <ldelgass@retinalburn.net> |
| 13 | */ |
| 14 | |
| 15 | /* |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 16 | * Copyright 2003 José Fonseca. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * Copyright 2003 Leif Delgass. |
| 18 | * All Rights Reserved. |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 21 | * copy of this software and associated documentation files (the "Software"), |
| 22 | * to deal in the Software without restriction, including without limitation |
| 23 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 24 | * and/or sell copies of the Software, and to permit persons to whom the |
| 25 | * Software is furnished to do so, subject to the following conditions: |
| 26 | * |
| 27 | * The above copyright notice and this permission notice (including the next |
| 28 | * paragraph) shall be included in all copies or substantial portions of the |
| 29 | * Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 32 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 33 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 34 | * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 35 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 36 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 37 | */ |
| 38 | |
| 39 | #include <linux/pci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
Dave Airlie | 195b3a2 | 2006-04-05 18:12:18 +1000 | [diff] [blame] | 41 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include "drmP.h" |
| 43 | |
| 44 | /**********************************************************************/ |
| 45 | /** \name PCI memory */ |
| 46 | /*@{*/ |
| 47 | |
| 48 | /** |
| 49 | * \brief Allocate a PCI consistent memory block, for DMA. |
| 50 | */ |
Zhenyu Wang | e6be8d9 | 2010-01-05 11:25:05 +0800 | [diff] [blame] | 51 | drm_dma_handle_t *drm_pci_alloc(struct drm_device * dev, size_t size, size_t align) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | { |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 53 | drm_dma_handle_t *dmah; |
Dave Airlie | ddf19b9 | 2006-03-19 18:56:12 +1100 | [diff] [blame] | 54 | #if 1 |
| 55 | unsigned long addr; |
| 56 | size_t sz; |
| 57 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /* pci_alloc_consistent only guarantees alignment to the smallest |
| 60 | * PAGE_SIZE order which is greater than or equal to the requested size. |
| 61 | * Return NULL here for now to make sure nobody tries for larger alignment |
| 62 | */ |
| 63 | if (align > size) |
| 64 | return NULL; |
| 65 | |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 66 | dmah = kmalloc(sizeof(drm_dma_handle_t), GFP_KERNEL); |
| 67 | if (!dmah) |
| 68 | return NULL; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 69 | |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 70 | dmah->size = size; |
Dave Airlie | ddf19b9 | 2006-03-19 18:56:12 +1100 | [diff] [blame] | 71 | dmah->vaddr = dma_alloc_coherent(&dev->pdev->dev, size, &dmah->busaddr, GFP_KERNEL | __GFP_COMP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 73 | if (dmah->vaddr == NULL) { |
| 74 | kfree(dmah); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | return NULL; |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 76 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 78 | memset(dmah->vaddr, 0, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Dave Airlie | ddf19b9 | 2006-03-19 18:56:12 +1100 | [diff] [blame] | 80 | /* XXX - Is virt_to_page() legal for consistent mem? */ |
| 81 | /* Reserve */ |
| 82 | for (addr = (unsigned long)dmah->vaddr, sz = size; |
| 83 | sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) { |
| 84 | SetPageReserved(virt_to_page(addr)); |
| 85 | } |
| 86 | |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 87 | return dmah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | EXPORT_SYMBOL(drm_pci_alloc); |
| 91 | |
| 92 | /** |
Dave Airlie | ddf19b9 | 2006-03-19 18:56:12 +1100 | [diff] [blame] | 93 | * \brief Free a PCI consistent memory block without freeing its descriptor. |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 94 | * |
| 95 | * This function is for internal use in the Linux-specific DRM core code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 97 | void __drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { |
Dave Airlie | ddf19b9 | 2006-03-19 18:56:12 +1100 | [diff] [blame] | 99 | #if 1 |
| 100 | unsigned long addr; |
| 101 | size_t sz; |
| 102 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 104 | if (dmah->vaddr) { |
Dave Airlie | ddf19b9 | 2006-03-19 18:56:12 +1100 | [diff] [blame] | 105 | /* XXX - Is virt_to_page() legal for consistent mem? */ |
| 106 | /* Unreserve */ |
| 107 | for (addr = (unsigned long)dmah->vaddr, sz = dmah->size; |
| 108 | sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) { |
| 109 | ClearPageReserved(virt_to_page(addr)); |
| 110 | } |
| 111 | dma_free_coherent(&dev->pdev->dev, dmah->size, dmah->vaddr, |
| 112 | dmah->busaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 115 | |
| 116 | /** |
| 117 | * \brief Free a PCI consistent memory block |
| 118 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 119 | void drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah) |
Dave Airlie | 9c8da5e | 2005-07-10 15:38:56 +1000 | [diff] [blame] | 120 | { |
| 121 | __drm_pci_free(dev, dmah); |
| 122 | kfree(dmah); |
| 123 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | EXPORT_SYMBOL(drm_pci_free); |
| 126 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 127 | #ifdef CONFIG_PCI |
| 128 | /** |
| 129 | * Register. |
| 130 | * |
| 131 | * \param pdev - PCI device structure |
| 132 | * \param ent entry from the PCI ID table with device type flags |
| 133 | * \return zero on success or a negative number on failure. |
| 134 | * |
| 135 | * Attempt to gets inter module "drm" information. If we are first |
| 136 | * then register the character device and inter module information. |
| 137 | * Try and register, if we fail to register, backout previous work. |
| 138 | */ |
| 139 | int drm_get_pci_dev(struct pci_dev *pdev, const struct pci_device_id *ent, |
| 140 | struct drm_driver *driver) |
| 141 | { |
| 142 | struct drm_device *dev; |
| 143 | int ret; |
| 144 | |
| 145 | DRM_DEBUG("\n"); |
| 146 | |
| 147 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| 148 | if (!dev) |
| 149 | return -ENOMEM; |
| 150 | |
| 151 | ret = pci_enable_device(pdev); |
| 152 | if (ret) |
| 153 | goto err_g1; |
| 154 | |
| 155 | pci_set_master(pdev); |
| 156 | |
| 157 | dev->pdev = pdev; |
| 158 | dev->dev = &pdev->dev; |
| 159 | |
| 160 | dev->pci_device = pdev->device; |
| 161 | dev->pci_vendor = pdev->vendor; |
| 162 | |
| 163 | #ifdef __alpha__ |
| 164 | dev->hose = pdev->sysdata; |
| 165 | #endif |
| 166 | |
| 167 | if ((ret = drm_fill_in_dev(dev, ent, driver))) { |
| 168 | printk(KERN_ERR "DRM: Fill_in_dev failed.\n"); |
| 169 | goto err_g2; |
| 170 | } |
| 171 | |
| 172 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 173 | pci_set_drvdata(pdev, dev); |
| 174 | ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL); |
| 175 | if (ret) |
| 176 | goto err_g2; |
| 177 | } |
| 178 | |
| 179 | if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY))) |
| 180 | goto err_g3; |
| 181 | |
| 182 | if (dev->driver->load) { |
| 183 | ret = dev->driver->load(dev, ent->driver_data); |
| 184 | if (ret) |
| 185 | goto err_g4; |
| 186 | } |
| 187 | |
| 188 | /* setup the grouping for the legacy output */ |
| 189 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 190 | ret = drm_mode_group_init_legacy_group(dev, |
| 191 | &dev->primary->mode_group); |
| 192 | if (ret) |
| 193 | goto err_g4; |
| 194 | } |
| 195 | |
| 196 | list_add_tail(&dev->driver_item, &driver->device_list); |
| 197 | |
| 198 | DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n", |
| 199 | driver->name, driver->major, driver->minor, driver->patchlevel, |
| 200 | driver->date, pci_name(pdev), dev->primary->index); |
| 201 | |
| 202 | return 0; |
| 203 | |
| 204 | err_g4: |
| 205 | drm_put_minor(&dev->primary); |
| 206 | err_g3: |
| 207 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 208 | drm_put_minor(&dev->control); |
| 209 | err_g2: |
| 210 | pci_disable_device(pdev); |
| 211 | err_g1: |
| 212 | kfree(dev); |
| 213 | return ret; |
| 214 | } |
| 215 | EXPORT_SYMBOL(drm_get_pci_dev); |
| 216 | |
| 217 | /** |
| 218 | * PCI device initialization. Called via drm_init at module load time, |
| 219 | * |
| 220 | * \return zero on success or a negative number on failure. |
| 221 | * |
| 222 | * Initializes a drm_device structures,registering the |
| 223 | * stubs and initializing the AGP device. |
| 224 | * |
| 225 | * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and |
| 226 | * after the initialization for driver customization. |
| 227 | */ |
| 228 | int drm_pci_init(struct drm_driver *driver) |
| 229 | { |
| 230 | struct pci_dev *pdev = NULL; |
| 231 | const struct pci_device_id *pid; |
| 232 | int i; |
| 233 | |
| 234 | if (driver->driver_features & DRIVER_MODESET) |
| 235 | return pci_register_driver(&driver->pci_driver); |
| 236 | |
| 237 | /* If not using KMS, fall back to stealth mode manual scanning. */ |
| 238 | for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) { |
| 239 | pid = &driver->pci_driver.id_table[i]; |
| 240 | |
| 241 | /* Loop around setting up a DRM device for each PCI device |
| 242 | * matching our ID and device class. If we had the internal |
| 243 | * function that pci_get_subsys and pci_get_class used, we'd |
| 244 | * be able to just pass pid in instead of doing a two-stage |
| 245 | * thing. |
| 246 | */ |
| 247 | pdev = NULL; |
| 248 | while ((pdev = |
| 249 | pci_get_subsys(pid->vendor, pid->device, pid->subvendor, |
| 250 | pid->subdevice, pdev)) != NULL) { |
| 251 | if ((pdev->class & pid->class_mask) != pid->class) |
| 252 | continue; |
| 253 | |
| 254 | /* stealth mode requires a manual probe */ |
| 255 | pci_dev_get(pdev); |
| 256 | drm_get_pci_dev(pdev, pid, driver); |
| 257 | } |
| 258 | } |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | #else |
| 263 | |
| 264 | int drm_pci_init(struct drm_driver *driver) |
| 265 | { |
| 266 | return -1; |
| 267 | } |
| 268 | |
| 269 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | /*@}*/ |