1 /**************************************************************************
3 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
27 **************************************************************************/
29 * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com>
36 struct drm_ttm_backend *i915_create_ttm_backend_entry(struct drm_device *dev)
38 return drm_agp_init_ttm(dev);
41 int i915_fence_type(struct drm_buffer_object *bo,
45 if (bo->mem.proposed_flags & (DRM_BO_FLAG_READ | DRM_BO_FLAG_WRITE))
52 int i915_invalidate_caches(struct drm_device *dev, uint64_t flags)
55 * FIXME: Only emit once per batchbuffer submission.
58 uint32_t flush_cmd = MI_NO_WRITE_FLUSH;
60 if (flags & DRM_BO_FLAG_READ)
61 flush_cmd |= MI_READ_FLUSH;
62 if (flags & DRM_BO_FLAG_EXE)
63 flush_cmd |= MI_EXE_FLUSH;
65 return i915_emit_mi_flush(dev, flush_cmd);
68 int i915_init_mem_type(struct drm_device *dev, uint32_t type,
69 struct drm_mem_type_manager *man)
72 case DRM_BO_MEM_LOCAL:
73 man->flags = _DRM_FLAG_MEMTYPE_MAPPABLE |
74 _DRM_FLAG_MEMTYPE_CACHED;
75 man->drm_bus_maptype = 0;
79 if (!(drm_core_has_AGP(dev) && dev->agp)) {
80 DRM_ERROR("AGP is not enabled for memory type %u\n",
84 man->io_offset = dev->agp->agp_info.aper_base;
85 man->io_size = dev->agp->agp_info.aper_size * 1024 * 1024;
87 man->flags = _DRM_FLAG_MEMTYPE_MAPPABLE |
88 _DRM_FLAG_MEMTYPE_CSELECT | _DRM_FLAG_NEEDS_IOREMAP;
89 man->drm_bus_maptype = _DRM_AGP;
93 if (!(drm_core_has_AGP(dev) && dev->agp)) {
94 DRM_ERROR("AGP is not enabled for memory type %u\n",
98 man->io_offset = dev->agp->agp_info.aper_base;
99 man->io_size = dev->agp->agp_info.aper_size * 1024 * 1024;
101 man->flags = _DRM_FLAG_MEMTYPE_MAPPABLE |
102 _DRM_FLAG_MEMTYPE_FIXED | _DRM_FLAG_NEEDS_IOREMAP;
103 man->drm_bus_maptype = _DRM_AGP;
106 case DRM_BO_MEM_PRIV0: /* for OS preallocated space */
107 DRM_ERROR("PRIV0 not used yet.\n");
110 DRM_ERROR("Unsupported memory type %u\n", (unsigned)type);
119 * @bo: the buffer object to be evicted
121 * Return the bo flags for a buffer which is not mapped to the hardware.
122 * These will be placed in proposed_flags so that when the move is
123 * finished, they'll end up in bo->mem.flags
125 uint64_t i915_evict_flags(struct drm_buffer_object *bo)
127 switch (bo->mem.mem_type) {
128 case DRM_BO_MEM_LOCAL:
130 return DRM_BO_FLAG_MEM_LOCAL;
132 return DRM_BO_FLAG_MEM_TT | DRM_BO_FLAG_CACHED;
136 #if 0 /* See comment below */
138 static void i915_emit_copy_blit(struct drm_device * dev,
141 uint32_t pages, int direction)
144 uint32_t stride = PAGE_SIZE;
145 struct drm_i915_private *dev_priv = dev->dev_private;
151 i915_kernel_lost_context(dev);
154 if (cur_pages > 2048)
159 OUT_RING(SRC_COPY_BLT_CMD | XY_SRC_COPY_BLT_WRITE_ALPHA |
160 XY_SRC_COPY_BLT_WRITE_RGB);
161 OUT_RING((stride & 0xffff) | (0xcc << 16) | (1 << 24) |
162 (1 << 25) | (direction ? (1 << 30) : 0));
163 OUT_RING((cur_pages << 16) | PAGE_SIZE);
164 OUT_RING(dst_offset);
165 OUT_RING(stride & 0xffff);
166 OUT_RING(src_offset);
172 static int i915_move_blit(struct drm_buffer_object * bo,
173 int evict, int no_wait, struct drm_bo_mem_reg * new_mem)
175 struct drm_bo_mem_reg *old_mem = &bo->mem;
178 if ((old_mem->mem_type == new_mem->mem_type) &&
179 (new_mem->mm_node->start <
180 old_mem->mm_node->start + old_mem->mm_node->size)) {
184 i915_emit_copy_blit(bo->dev,
185 old_mem->mm_node->start << PAGE_SHIFT,
186 new_mem->mm_node->start << PAGE_SHIFT,
187 new_mem->num_pages, dir);
189 i915_emit_mi_flush(bo->dev, MI_READ_FLUSH | MI_EXE_FLUSH);
191 return drm_bo_move_accel_cleanup(bo, evict, no_wait, 0,
193 DRM_I915_FENCE_TYPE_RW,
194 DRM_I915_FENCE_FLAG_FLUSHED, new_mem);
198 * Flip destination ttm into cached-coherent AGP,
199 * then blit and subsequently move out again.
202 static int i915_move_flip(struct drm_buffer_object * bo,
203 int evict, int no_wait, struct drm_bo_mem_reg * new_mem)
205 struct drm_device *dev = bo->dev;
206 struct drm_bo_mem_reg tmp_mem;
210 tmp_mem.mm_node = NULL;
211 tmp_mem.mask = DRM_BO_FLAG_MEM_TT |
212 DRM_BO_FLAG_CACHED | DRM_BO_FLAG_FORCE_CACHING;
214 ret = drm_bo_mem_space(bo, &tmp_mem, no_wait);
218 ret = drm_bind_ttm(bo->ttm, &tmp_mem);
222 ret = i915_move_blit(bo, 1, no_wait, &tmp_mem);
226 ret = drm_bo_move_ttm(bo, evict, no_wait, new_mem);
228 if (tmp_mem.mm_node) {
229 mutex_lock(&dev->struct_mutex);
230 if (tmp_mem.mm_node != bo->pinned_node)
231 drm_mm_put_block(tmp_mem.mm_node);
232 tmp_mem.mm_node = NULL;
233 mutex_unlock(&dev->struct_mutex);
241 * Disable i915_move_flip for now, since we can't guarantee that the hardware
242 * lock is held here. To re-enable we need to make sure either
243 * a) The X server is using DRM to submit commands to the ring, or
244 * b) DRM can use the HP ring for these blits. This means i915 needs to
245 * implement a new ring submission mechanism and fence class.
247 int i915_move(struct drm_buffer_object *bo,
248 int evict, int no_wait, struct drm_bo_mem_reg *new_mem)
250 struct drm_bo_mem_reg *old_mem = &bo->mem;
252 if (old_mem->mem_type == DRM_BO_MEM_LOCAL) {
253 return drm_bo_move_memcpy(bo, evict, no_wait, new_mem);
254 } else if (new_mem->mem_type == DRM_BO_MEM_LOCAL) {
255 if (0) /*i915_move_flip(bo, evict, no_wait, new_mem)*/
256 return drm_bo_move_memcpy(bo, evict, no_wait, new_mem);
258 if (0) /*i915_move_blit(bo, evict, no_wait, new_mem)*/
259 return drm_bo_move_memcpy(bo, evict, no_wait, new_mem);
264 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24))
265 static inline void clflush(volatile void *__p)
267 asm volatile("clflush %0" : "+m" (*(char __force *)__p));
271 static inline void drm_cache_flush_addr(void *virt)
273 #ifdef cpu_has_clflush
276 for (i = 0; i < PAGE_SIZE; i += boot_cpu_data.x86_clflush_size)
281 static inline void drm_cache_flush_page(struct page *p)
283 drm_cache_flush_addr(page_address(p));
286 void i915_flush_ttm(struct drm_ttm *ttm)
296 #ifndef cpu_has_clflush
297 #define cpu_has_clflush 0
299 /* Hopefully nobody has built an x86-64 processor without clflush */
300 if (!cpu_has_clflush) {
307 for (i = ttm->num_pages - 1; i >= 0; i--)
308 drm_cache_flush_page(drm_ttm_get_page(ttm, i));