1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (c) 2011, Intel Corporation.
10 * - we need to work out if the MMU is relevant (eg for
11 * accelerated operations on a GEM object)
14 #include <linux/pagemap.h>
17 #include <drm/drm_vma_manager.h>
22 static vm_fault_t psb_gem_fault(struct vm_fault *vmf);
24 static void psb_gem_free_object(struct drm_gem_object *obj)
26 struct gtt_range *gtt = container_of(obj, struct gtt_range, gem);
28 /* Remove the list map if one is present */
29 drm_gem_free_mmap_offset(obj);
30 drm_gem_object_release(obj);
32 /* This must occur last as it frees up the memory of the GEM object */
33 psb_gtt_free_range(obj->dev, gtt);
36 static const struct vm_operations_struct psb_gem_vm_ops = {
37 .fault = psb_gem_fault,
38 .open = drm_gem_vm_open,
39 .close = drm_gem_vm_close,
42 const struct drm_gem_object_funcs psb_gem_object_funcs = {
43 .free = psb_gem_free_object,
44 .vm_ops = &psb_gem_vm_ops,
48 * psb_gem_create - create a mappable object
49 * @file: the DRM file of the client
51 * @size: the size requested
52 * @handlep: returned handle (opaque number)
56 * Create a GEM object, fill in the boilerplate and attach a handle to
57 * it so that userspace can speak about it. This does the core work
58 * for the various methods that do/will create GEM objects for things
60 int psb_gem_create(struct drm_file *file, struct drm_device *dev, u64 size,
61 u32 *handlep, int stolen, u32 align)
67 size = roundup(size, PAGE_SIZE);
69 /* Allocate our object - for now a direct gtt range which is not
70 stolen memory backed */
71 r = psb_gtt_alloc_range(dev, size, "gem", 0, PAGE_SIZE);
73 dev_err(dev->dev, "no memory for %lld byte GEM object\n", size);
76 r->gem.funcs = &psb_gem_object_funcs;
77 /* Initialize the extra goodies GEM needs to do all the hard work */
78 if (drm_gem_object_init(dev, &r->gem, size) != 0) {
79 psb_gtt_free_range(dev, r);
80 /* GEM doesn't give an error code so use -ENOMEM */
81 dev_err(dev->dev, "GEM init failed for %lld\n", size);
84 /* Limit the object to 32bit mappings */
85 mapping_set_gfp_mask(r->gem.filp->f_mapping, GFP_KERNEL | __GFP_DMA32);
86 /* Give the object a handle so we can carry it more easily */
87 ret = drm_gem_handle_create(file, &r->gem, &handle);
89 dev_err(dev->dev, "GEM handle failed for %p, %lld\n",
91 drm_gem_object_release(&r->gem);
92 psb_gtt_free_range(dev, r);
95 /* We have the initial and handle reference but need only one now */
96 drm_gem_object_put(&r->gem);
102 * psb_gem_dumb_create - create a dumb buffer
103 * @file: our client file
105 * @args: the requested arguments copied from userspace
107 * Allocate a buffer suitable for use for a frame buffer of the
108 * form described by user space. Give userspace a handle by which
111 int psb_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
112 struct drm_mode_create_dumb *args)
114 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
115 args->size = args->pitch * args->height;
116 return psb_gem_create(file, dev, args->size, &args->handle, 0,
121 * psb_gem_fault - pagefault handler for GEM objects
124 * Invoked when a fault occurs on an mmap of a GEM managed area. GEM
125 * does most of the work for us including the actual map/unmap calls
126 * but we need to do the actual page work.
128 * This code eventually needs to handle faulting objects in and out
129 * of the GTT and repacking it when we run out of space. We can put
130 * that off for now and for our simple uses
132 * The VMA was set up by GEM. In doing so it also ensured that the
133 * vma->vm_private_data points to the GEM object that is backing this
136 static vm_fault_t psb_gem_fault(struct vm_fault *vmf)
138 struct vm_area_struct *vma = vmf->vma;
139 struct drm_gem_object *obj;
145 struct drm_device *dev;
146 struct drm_psb_private *dev_priv;
148 obj = vma->vm_private_data; /* GEM object */
150 dev_priv = dev->dev_private;
152 r = container_of(obj, struct gtt_range, gem); /* Get the gtt range */
154 /* Make sure we don't parallel update on a fault, nor move or remove
155 something from beneath our feet */
156 mutex_lock(&dev_priv->mmap_mutex);
158 /* For now the mmap pins the object and it stays pinned. As things
159 stand that will do us no harm */
160 if (r->mmapping == 0) {
161 err = psb_gtt_pin(r);
163 dev_err(dev->dev, "gma500: pin failed: %d\n", err);
164 ret = vmf_error(err);
170 /* Page relative to the VMA start - we must calculate this ourselves
171 because vmf->pgoff is the fake GEM offset */
172 page_offset = (vmf->address - vma->vm_start) >> PAGE_SHIFT;
174 /* CPU view of the page, don't go via the GART for CPU writes */
176 pfn = (dev_priv->stolen_base + r->offset) >> PAGE_SHIFT;
178 pfn = page_to_pfn(r->pages[page_offset]);
179 ret = vmf_insert_pfn(vma, vmf->address, pfn);
181 mutex_unlock(&dev_priv->mmap_mutex);