blob: e68ebf92fa2a5187c0e6b56a5e089a26d0516da2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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 Engelhardt96de0e22007-10-19 23:21:04 +020011 * \author José Fonseca <jrfonseca@tungstengraphics.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * \author Leif Delgass <ldelgass@retinalburn.net>
13 */
14
15/*
Jan Engelhardt96de0e22007-10-19 23:21:04 +020016 * Copyright 2003 José Fonseca.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * 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>
Dave Airlie195b3a22006-04-05 18:12:18 +100040#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "drmP.h"
42
43/**********************************************************************/
44/** \name PCI memory */
45/*@{*/
46
47/**
48 * \brief Allocate a PCI consistent memory block, for DMA.
49 */
Zhenyu Wange6be8d92010-01-05 11:25:05 +080050drm_dma_handle_t *drm_pci_alloc(struct drm_device * dev, size_t size, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Dave Airlie9c8da5e2005-07-10 15:38:56 +100052 drm_dma_handle_t *dmah;
Dave Airlieddf19b92006-03-19 18:56:12 +110053#if 1
54 unsigned long addr;
55 size_t sz;
56#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 /* pci_alloc_consistent only guarantees alignment to the smallest
59 * PAGE_SIZE order which is greater than or equal to the requested size.
60 * Return NULL here for now to make sure nobody tries for larger alignment
61 */
62 if (align > size)
63 return NULL;
64
Dave Airlie9c8da5e2005-07-10 15:38:56 +100065 dmah = kmalloc(sizeof(drm_dma_handle_t), GFP_KERNEL);
66 if (!dmah)
67 return NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100068
Dave Airlie9c8da5e2005-07-10 15:38:56 +100069 dmah->size = size;
Dave Airlieddf19b92006-03-19 18:56:12 +110070 dmah->vaddr = dma_alloc_coherent(&dev->pdev->dev, size, &dmah->busaddr, GFP_KERNEL | __GFP_COMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Dave Airlie9c8da5e2005-07-10 15:38:56 +100072 if (dmah->vaddr == NULL) {
73 kfree(dmah);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return NULL;
Dave Airlie9c8da5e2005-07-10 15:38:56 +100075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Dave Airlie9c8da5e2005-07-10 15:38:56 +100077 memset(dmah->vaddr, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Dave Airlieddf19b92006-03-19 18:56:12 +110079 /* XXX - Is virt_to_page() legal for consistent mem? */
80 /* Reserve */
81 for (addr = (unsigned long)dmah->vaddr, sz = size;
82 sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
83 SetPageReserved(virt_to_page(addr));
84 }
85
Dave Airlie9c8da5e2005-07-10 15:38:56 +100086 return dmah;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
Dave Airlieb5e89ed2005-09-25 14:28:13 +100088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089EXPORT_SYMBOL(drm_pci_alloc);
90
91/**
Dave Airlieddf19b92006-03-19 18:56:12 +110092 * \brief Free a PCI consistent memory block without freeing its descriptor.
Dave Airlie9c8da5e2005-07-10 15:38:56 +100093 *
94 * This function is for internal use in the Linux-specific DRM core code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100096void __drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Dave Airlieddf19b92006-03-19 18:56:12 +110098#if 1
99 unsigned long addr;
100 size_t sz;
101#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Eric Anholt9a298b22009-03-24 12:23:04 -0700103 if (dmah->vaddr) {
Dave Airlieddf19b92006-03-19 18:56:12 +1100104 /* XXX - Is virt_to_page() legal for consistent mem? */
105 /* Unreserve */
106 for (addr = (unsigned long)dmah->vaddr, sz = dmah->size;
107 sz > 0; addr += PAGE_SIZE, sz -= PAGE_SIZE) {
108 ClearPageReserved(virt_to_page(addr));
109 }
110 dma_free_coherent(&dev->pdev->dev, dmah->size, dmah->vaddr,
111 dmah->busaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000114
115/**
116 * \brief Free a PCI consistent memory block
117 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000118void drm_pci_free(struct drm_device * dev, drm_dma_handle_t * dmah)
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000119{
120 __drm_pci_free(dev, dmah);
121 kfree(dmah);
122}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124EXPORT_SYMBOL(drm_pci_free);
125
126/*@}*/