Home | History | Annotate | Line # | Download | only in drm
drm_dma.c revision 1.1.1.2.28.1
      1  1.1.1.2.28.1  pgoyette /*	$NetBSD: drm_dma.c,v 1.1.1.2.28.1 2018/09/06 06:56:09 pgoyette Exp $	*/
      2  1.1.1.2.28.1  pgoyette 
      3           1.1  riastrad /**
      4           1.1  riastrad  * \file drm_dma.c
      5           1.1  riastrad  * DMA IOCTL and function support
      6           1.1  riastrad  *
      7           1.1  riastrad  * \author Rickard E. (Rik) Faith <faith (at) valinux.com>
      8           1.1  riastrad  * \author Gareth Hughes <gareth (at) valinux.com>
      9           1.1  riastrad  */
     10           1.1  riastrad 
     11           1.1  riastrad /*
     12           1.1  riastrad  * Created: Fri Mar 19 14:30:16 1999 by faith (at) valinux.com
     13           1.1  riastrad  *
     14           1.1  riastrad  * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
     15           1.1  riastrad  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
     16           1.1  riastrad  * All Rights Reserved.
     17           1.1  riastrad  *
     18           1.1  riastrad  * Permission is hereby granted, free of charge, to any person obtaining a
     19           1.1  riastrad  * copy of this software and associated documentation files (the "Software"),
     20           1.1  riastrad  * to deal in the Software without restriction, including without limitation
     21           1.1  riastrad  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     22           1.1  riastrad  * and/or sell copies of the Software, and to permit persons to whom the
     23           1.1  riastrad  * Software is furnished to do so, subject to the following conditions:
     24           1.1  riastrad  *
     25           1.1  riastrad  * The above copyright notice and this permission notice (including the next
     26           1.1  riastrad  * paragraph) shall be included in all copies or substantial portions of the
     27           1.1  riastrad  * Software.
     28           1.1  riastrad  *
     29           1.1  riastrad  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     30           1.1  riastrad  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     31           1.1  riastrad  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     32           1.1  riastrad  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
     33           1.1  riastrad  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
     34           1.1  riastrad  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
     35           1.1  riastrad  * OTHER DEALINGS IN THE SOFTWARE.
     36           1.1  riastrad  */
     37           1.1  riastrad 
     38  1.1.1.2.28.1  pgoyette #include <sys/cdefs.h>
     39  1.1.1.2.28.1  pgoyette __KERNEL_RCSID(0, "$NetBSD: drm_dma.c,v 1.1.1.2.28.1 2018/09/06 06:56:09 pgoyette Exp $");
     40  1.1.1.2.28.1  pgoyette 
     41           1.1  riastrad #include <linux/export.h>
     42           1.1  riastrad #include <drm/drmP.h>
     43  1.1.1.2.28.1  pgoyette #include "drm_legacy.h"
     44           1.1  riastrad 
     45           1.1  riastrad /**
     46           1.1  riastrad  * Initialize the DMA data.
     47           1.1  riastrad  *
     48           1.1  riastrad  * \param dev DRM device.
     49           1.1  riastrad  * \return zero on success or a negative value on failure.
     50           1.1  riastrad  *
     51           1.1  riastrad  * Allocate and initialize a drm_device_dma structure.
     52           1.1  riastrad  */
     53       1.1.1.2  riastrad int drm_legacy_dma_setup(struct drm_device *dev)
     54           1.1  riastrad {
     55           1.1  riastrad 	int i;
     56           1.1  riastrad 
     57       1.1.1.2  riastrad 	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA) ||
     58       1.1.1.2  riastrad 	    drm_core_check_feature(dev, DRIVER_MODESET)) {
     59       1.1.1.2  riastrad 		return 0;
     60       1.1.1.2  riastrad 	}
     61       1.1.1.2  riastrad 
     62       1.1.1.2  riastrad 	dev->buf_use = 0;
     63       1.1.1.2  riastrad 	atomic_set(&dev->buf_alloc, 0);
     64       1.1.1.2  riastrad 
     65           1.1  riastrad 	dev->dma = kzalloc(sizeof(*dev->dma), GFP_KERNEL);
     66           1.1  riastrad 	if (!dev->dma)
     67           1.1  riastrad 		return -ENOMEM;
     68           1.1  riastrad 
     69           1.1  riastrad 	for (i = 0; i <= DRM_MAX_ORDER; i++)
     70           1.1  riastrad 		memset(&dev->dma->bufs[i], 0, sizeof(dev->dma->bufs[0]));
     71           1.1  riastrad 
     72           1.1  riastrad 	return 0;
     73           1.1  riastrad }
     74           1.1  riastrad 
     75           1.1  riastrad /**
     76           1.1  riastrad  * Cleanup the DMA resources.
     77           1.1  riastrad  *
     78           1.1  riastrad  * \param dev DRM device.
     79           1.1  riastrad  *
     80           1.1  riastrad  * Free all pages associated with DMA buffers, the buffers and pages lists, and
     81           1.1  riastrad  * finally the drm_device::dma structure itself.
     82           1.1  riastrad  */
     83       1.1.1.2  riastrad void drm_legacy_dma_takedown(struct drm_device *dev)
     84           1.1  riastrad {
     85           1.1  riastrad 	struct drm_device_dma *dma = dev->dma;
     86           1.1  riastrad 	int i, j;
     87           1.1  riastrad 
     88       1.1.1.2  riastrad 	if (!drm_core_check_feature(dev, DRIVER_HAVE_DMA) ||
     89       1.1.1.2  riastrad 	    drm_core_check_feature(dev, DRIVER_MODESET)) {
     90       1.1.1.2  riastrad 		return;
     91       1.1.1.2  riastrad 	}
     92       1.1.1.2  riastrad 
     93           1.1  riastrad 	if (!dma)
     94           1.1  riastrad 		return;
     95           1.1  riastrad 
     96           1.1  riastrad 	/* Clear dma buffers */
     97           1.1  riastrad 	for (i = 0; i <= DRM_MAX_ORDER; i++) {
     98           1.1  riastrad 		if (dma->bufs[i].seg_count) {
     99           1.1  riastrad 			DRM_DEBUG("order %d: buf_count = %d,"
    100           1.1  riastrad 				  " seg_count = %d\n",
    101           1.1  riastrad 				  i,
    102           1.1  riastrad 				  dma->bufs[i].buf_count,
    103           1.1  riastrad 				  dma->bufs[i].seg_count);
    104           1.1  riastrad 			for (j = 0; j < dma->bufs[i].seg_count; j++) {
    105           1.1  riastrad 				if (dma->bufs[i].seglist[j]) {
    106           1.1  riastrad 					drm_pci_free(dev, dma->bufs[i].seglist[j]);
    107           1.1  riastrad 				}
    108           1.1  riastrad 			}
    109           1.1  riastrad 			kfree(dma->bufs[i].seglist);
    110           1.1  riastrad 		}
    111           1.1  riastrad 		if (dma->bufs[i].buf_count) {
    112           1.1  riastrad 			for (j = 0; j < dma->bufs[i].buf_count; j++) {
    113           1.1  riastrad 				kfree(dma->bufs[i].buflist[j].dev_private);
    114           1.1  riastrad 			}
    115           1.1  riastrad 			kfree(dma->bufs[i].buflist);
    116           1.1  riastrad 		}
    117           1.1  riastrad 	}
    118           1.1  riastrad 
    119           1.1  riastrad 	kfree(dma->buflist);
    120           1.1  riastrad 	kfree(dma->pagelist);
    121           1.1  riastrad 	kfree(dev->dma);
    122           1.1  riastrad 	dev->dma = NULL;
    123           1.1  riastrad }
    124           1.1  riastrad 
    125           1.1  riastrad /**
    126           1.1  riastrad  * Free a buffer.
    127           1.1  riastrad  *
    128           1.1  riastrad  * \param dev DRM device.
    129           1.1  riastrad  * \param buf buffer to free.
    130           1.1  riastrad  *
    131           1.1  riastrad  * Resets the fields of \p buf.
    132           1.1  riastrad  */
    133  1.1.1.2.28.1  pgoyette void drm_legacy_free_buffer(struct drm_device *dev, struct drm_buf * buf)
    134           1.1  riastrad {
    135           1.1  riastrad 	if (!buf)
    136           1.1  riastrad 		return;
    137           1.1  riastrad 
    138           1.1  riastrad 	buf->waiting = 0;
    139           1.1  riastrad 	buf->pending = 0;
    140           1.1  riastrad 	buf->file_priv = NULL;
    141           1.1  riastrad 	buf->used = 0;
    142           1.1  riastrad }
    143           1.1  riastrad 
    144           1.1  riastrad /**
    145           1.1  riastrad  * Reclaim the buffers.
    146           1.1  riastrad  *
    147           1.1  riastrad  * \param file_priv DRM file private.
    148           1.1  riastrad  *
    149           1.1  riastrad  * Frees each buffer associated with \p file_priv not already on the hardware.
    150           1.1  riastrad  */
    151  1.1.1.2.28.1  pgoyette void drm_legacy_reclaim_buffers(struct drm_device *dev,
    152  1.1.1.2.28.1  pgoyette 				struct drm_file *file_priv)
    153           1.1  riastrad {
    154           1.1  riastrad 	struct drm_device_dma *dma = dev->dma;
    155           1.1  riastrad 	int i;
    156           1.1  riastrad 
    157           1.1  riastrad 	if (!dma)
    158           1.1  riastrad 		return;
    159           1.1  riastrad 	for (i = 0; i < dma->buf_count; i++) {
    160           1.1  riastrad 		if (dma->buflist[i]->file_priv == file_priv) {
    161           1.1  riastrad 			switch (dma->buflist[i]->list) {
    162           1.1  riastrad 			case DRM_LIST_NONE:
    163  1.1.1.2.28.1  pgoyette 				drm_legacy_free_buffer(dev, dma->buflist[i]);
    164           1.1  riastrad 				break;
    165           1.1  riastrad 			case DRM_LIST_WAIT:
    166           1.1  riastrad 				dma->buflist[i]->list = DRM_LIST_RECLAIM;
    167           1.1  riastrad 				break;
    168           1.1  riastrad 			default:
    169           1.1  riastrad 				/* Buffer already on hardware. */
    170           1.1  riastrad 				break;
    171           1.1  riastrad 			}
    172           1.1  riastrad 		}
    173           1.1  riastrad 	}
    174           1.1  riastrad }
    175