1 /**************************************************************************
2 * Copyright (c) 2011, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 **************************************************************************/
24 void drm_gem_object_release_wrap(struct drm_gem_object
*obj
)
26 /* Remove the list map if one is present */
27 if (obj
->map_list
.map
) {
28 struct drm_gem_mm
*mm
= obj
->dev
->mm_private
;
29 struct drm_map_list
*list
= &obj
->map_list
;
30 drm_ht_remove_item(&mm
->offset_hash
, &list
->hash
);
31 drm_mm_put_block(list
->file_offset_node
);
35 drm_gem_object_release(obj
);
39 * gem_create_mmap_offset - invent an mmap offset
42 * Standard implementation of offset generation for mmap as is
43 * duplicated in several drivers. This belongs in GEM.
45 int gem_create_mmap_offset(struct drm_gem_object
*obj
)
47 struct drm_device
*dev
= obj
->dev
;
48 struct drm_gem_mm
*mm
= dev
->mm_private
;
49 struct drm_map_list
*list
;
50 struct drm_local_map
*map
;
53 list
= &obj
->map_list
;
54 list
->map
= kzalloc(sizeof(struct drm_map_list
), GFP_KERNEL
);
55 if (list
->map
== NULL
)
59 map
->size
= obj
->size
;
62 list
->file_offset_node
= drm_mm_search_free(&mm
->offset_manager
,
63 obj
->size
/ PAGE_SIZE
, 0, 0);
64 if (!list
->file_offset_node
) {
65 dev_err(dev
->dev
, "failed to allocate offset for bo %d\n",
70 list
->file_offset_node
= drm_mm_get_block(list
->file_offset_node
,
71 obj
->size
/ PAGE_SIZE
, 0);
72 if (!list
->file_offset_node
) {
76 list
->hash
.key
= list
->file_offset_node
->start
;
77 ret
= drm_ht_insert_item(&mm
->offset_hash
, &list
->hash
);
79 dev_err(dev
->dev
, "failed to add to map hash\n");
85 drm_mm_put_block(list
->file_offset_node
);