Daniel Vetter | 2d431fd | 2012-10-03 13:44:30 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: |
| 24 | * Mika Kuoppala <mika.kuoppala@intel.com> |
| 25 | */ |
| 26 | |
| 27 | #include <stdlib.h> |
| 28 | #include <string.h> |
| 29 | #include <assert.h> |
| 30 | #include <fcntl.h> |
| 31 | #include <unistd.h> |
| 32 | #include <pthread.h> |
| 33 | |
| 34 | #include "drmtest.h" |
| 35 | #include "i915_drm.h" |
| 36 | #include "intel_bufmgr.h" |
| 37 | |
| 38 | /* Testcase: check parallel access to tiled memory |
| 39 | * |
| 40 | * Parallel access to tiled memory caused sigbus |
| 41 | */ |
| 42 | |
| 43 | #define NUM_THREADS 2 |
| 44 | #define WIDTH 4096 |
| 45 | #define HEIGHT 4096 |
| 46 | |
| 47 | struct thread_ctx { |
| 48 | drm_intel_bo *bo; |
| 49 | }; |
| 50 | |
| 51 | static drm_intel_bufmgr *bufmgr; |
| 52 | static struct thread_ctx tctx[NUM_THREADS]; |
| 53 | |
| 54 | static void *copy_fn(void *p) |
| 55 | { |
| 56 | unsigned char *buf; |
| 57 | struct thread_ctx *c = p; |
| 58 | |
| 59 | buf = malloc(WIDTH * HEIGHT); |
| 60 | if (buf == NULL) |
| 61 | return (void *)1; |
| 62 | |
| 63 | memcpy(buf, c->bo->virtual, WIDTH * HEIGHT); |
| 64 | |
| 65 | free(buf); |
| 66 | return (void *)0; |
| 67 | } |
| 68 | |
| 69 | static int copy_tile_threaded(drm_intel_bo *bo) |
| 70 | { |
| 71 | int i; |
| 72 | int r; |
| 73 | pthread_t thr[NUM_THREADS]; |
| 74 | void *status; |
| 75 | |
| 76 | for (i = 0; i < NUM_THREADS; i++) { |
| 77 | tctx[i].bo = bo; |
| 78 | r = pthread_create(&thr[i], NULL, copy_fn, (void *)&tctx[i]); |
| 79 | assert(r == 0); |
| 80 | } |
| 81 | |
| 82 | for (i = 0; i < NUM_THREADS; i++) { |
| 83 | pthread_join(thr[i], &status); |
| 84 | assert(status == 0); |
| 85 | } |
| 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | |
| 90 | int main(int argc, char **argv) |
| 91 | { |
| 92 | int fd; |
| 93 | drm_intel_bo *bo; |
| 94 | uint32_t tiling_mode = I915_TILING_Y; |
| 95 | unsigned long pitch = 0; |
| 96 | int r; |
| 97 | |
Daniel Vetter | 1caaf0a | 2013-08-12 12:17:35 +0200 | [diff] [blame^] | 98 | igt_skip_on_simulation(); |
Damien Lespiau | 5fa15f7 | 2013-04-29 18:40:39 +0100 | [diff] [blame] | 99 | |
Daniel Vetter | 2d431fd | 2012-10-03 13:44:30 +0200 | [diff] [blame] | 100 | fd = drm_open_any(); |
| 101 | assert(fd >= 0); |
| 102 | |
| 103 | bufmgr = drm_intel_bufmgr_gem_init(fd, 4096); |
| 104 | assert(bufmgr); |
| 105 | |
| 106 | bo = drm_intel_bo_alloc_tiled(bufmgr, "mmap bo", WIDTH, HEIGHT, 1, |
| 107 | &tiling_mode, &pitch, 0); |
| 108 | assert(bo); |
| 109 | |
| 110 | r = drm_intel_gem_bo_map_gtt(bo); |
| 111 | assert(!r); |
| 112 | |
| 113 | r = copy_tile_threaded(bo); |
| 114 | assert(!r); |
| 115 | |
| 116 | r = drm_intel_gem_bo_unmap_gtt(bo); |
| 117 | assert(!r); |
| 118 | |
| 119 | drm_intel_bo_unreference(bo); |
| 120 | drm_intel_bufmgr_destroy(bufmgr); |
| 121 | |
| 122 | close(fd); |
| 123 | |
| 124 | return 0; |
| 125 | } |