Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 1 | /************************************************************************** |
| 2 | * |
| 3 | * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA |
| 4 | * All Rights Reserved. |
| 5 | * |
| 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: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice (including the |
| 15 | * next paragraph) shall be included in all copies or substantial portions |
| 16 | * of the Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 21 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, |
| 22 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 23 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 24 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 25 | * |
| 26 | **************************************************************************/ |
| 27 | /* |
| 28 | * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> |
| 29 | * Keith Packard. |
| 30 | */ |
| 31 | |
Joe Perches | 25d0479 | 2012-03-16 21:43:50 -0700 | [diff] [blame] | 32 | #define pr_fmt(fmt) "[TTM] " fmt |
| 33 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 34 | #include <drm/ttm/ttm_module.h> |
| 35 | #include <drm/ttm/ttm_bo_driver.h> |
| 36 | #include <drm/ttm/ttm_page_alloc.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 37 | #include <drm/ttm/ttm_placement.h> |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 38 | #include <linux/agp_backend.h> |
| 39 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 41 | #include <linux/io.h> |
| 42 | #include <asm/agp.h> |
| 43 | |
| 44 | struct ttm_agp_backend { |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 45 | struct ttm_tt ttm; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 46 | struct agp_memory *mem; |
| 47 | struct agp_bridge_data *bridge; |
| 48 | }; |
| 49 | |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 50 | static int ttm_agp_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem) |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 51 | { |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 52 | struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm); |
| 53 | struct drm_mm_node *node = bo_mem->mm_node; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 54 | struct agp_memory *mem; |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 55 | int ret, cached = (bo_mem->placement & TTM_PL_FLAG_CACHED); |
| 56 | unsigned i; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 57 | |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 58 | mem = agp_allocate_memory(agp_be->bridge, ttm->num_pages, AGP_USER_MEMORY); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 59 | if (unlikely(mem == NULL)) |
| 60 | return -ENOMEM; |
| 61 | |
| 62 | mem->page_count = 0; |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 63 | for (i = 0; i < ttm->num_pages; i++) { |
| 64 | struct page *page = ttm->pages[i]; |
| 65 | |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 66 | if (!page) |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 67 | page = ttm->dummy_read_page; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 68 | |
Dave Airlie | 07613ba | 2009-06-12 14:11:41 +1000 | [diff] [blame] | 69 | mem->pages[mem->page_count++] = page; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 70 | } |
| 71 | agp_be->mem = mem; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 72 | |
| 73 | mem->is_flushed = 1; |
| 74 | mem->type = (cached) ? AGP_USER_CACHED_MEMORY : AGP_USER_MEMORY; |
| 75 | |
Ben Skeggs | d961db7 | 2010-08-05 10:48:18 +1000 | [diff] [blame] | 76 | ret = agp_bind_memory(mem, node->start); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 77 | if (ret) |
Joe Perches | 25d0479 | 2012-03-16 21:43:50 -0700 | [diff] [blame] | 78 | pr_err("AGP Bind memory failed\n"); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 79 | |
| 80 | return ret; |
| 81 | } |
| 82 | |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 83 | static int ttm_agp_unbind(struct ttm_tt *ttm) |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 84 | { |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 85 | struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 86 | |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 87 | if (agp_be->mem) { |
| 88 | if (agp_be->mem->is_bound) |
| 89 | return agp_unbind_memory(agp_be->mem); |
| 90 | agp_free_memory(agp_be->mem); |
| 91 | agp_be->mem = NULL; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 92 | } |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 93 | return 0; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 94 | } |
| 95 | |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 96 | static void ttm_agp_destroy(struct ttm_tt *ttm) |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 97 | { |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 98 | struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 99 | |
| 100 | if (agp_be->mem) |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 101 | ttm_agp_unbind(ttm); |
Jerome Glisse | dea7e0a | 2012-01-03 17:37:37 -0500 | [diff] [blame] | 102 | ttm_tt_fini(ttm); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 103 | kfree(agp_be); |
| 104 | } |
| 105 | |
| 106 | static struct ttm_backend_func ttm_agp_func = { |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 107 | .bind = ttm_agp_bind, |
| 108 | .unbind = ttm_agp_unbind, |
| 109 | .destroy = ttm_agp_destroy, |
| 110 | }; |
| 111 | |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 112 | struct ttm_tt *ttm_agp_tt_create(struct ttm_bo_device *bdev, |
| 113 | struct agp_bridge_data *bridge, |
| 114 | unsigned long size, uint32_t page_flags, |
| 115 | struct page *dummy_read_page) |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 116 | { |
| 117 | struct ttm_agp_backend *agp_be; |
| 118 | |
| 119 | agp_be = kmalloc(sizeof(*agp_be), GFP_KERNEL); |
| 120 | if (!agp_be) |
| 121 | return NULL; |
| 122 | |
| 123 | agp_be->mem = NULL; |
| 124 | agp_be->bridge = bridge; |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 125 | agp_be->ttm.func = &ttm_agp_func; |
| 126 | |
| 127 | if (ttm_tt_init(&agp_be->ttm, bdev, size, page_flags, dummy_read_page)) { |
Masanari Iida | 7a444d1 | 2014-02-12 22:46:25 +0900 | [diff] [blame] | 128 | kfree(agp_be); |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 129 | return NULL; |
| 130 | } |
| 131 | |
| 132 | return &agp_be->ttm; |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 133 | } |
Jerome Glisse | 649bf3c | 2011-11-01 20:46:13 -0400 | [diff] [blame] | 134 | EXPORT_SYMBOL(ttm_agp_tt_create); |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 135 | |
Jerome Glisse | dea7e0a | 2012-01-03 17:37:37 -0500 | [diff] [blame] | 136 | int ttm_agp_tt_populate(struct ttm_tt *ttm) |
| 137 | { |
| 138 | if (ttm->state != tt_unpopulated) |
| 139 | return 0; |
| 140 | |
| 141 | return ttm_pool_populate(ttm); |
| 142 | } |
| 143 | EXPORT_SYMBOL(ttm_agp_tt_populate); |
| 144 | |
| 145 | void ttm_agp_tt_unpopulate(struct ttm_tt *ttm) |
| 146 | { |
| 147 | ttm_pool_unpopulate(ttm); |
| 148 | } |
| 149 | EXPORT_SYMBOL(ttm_agp_tt_unpopulate); |