diff options
Diffstat (limited to 'drivers/gpu/drm/nouveau/nvc0_vram.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nvc0_vram.c | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nvc0_vram.c b/drivers/gpu/drm/nouveau/nvc0_vram.c new file mode 100644 index 000000000000..858eda5dedd1 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nvc0_vram.c | |||
@@ -0,0 +1,99 @@ | |||
1 | /* | ||
2 | * Copyright 2010 Red Hat Inc. | ||
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 shall be included in | ||
12 | * all copies or substantial portions of the Software. | ||
13 | * | ||
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 NONINFRINGEMENT. IN NO EVENT SHALL | ||
17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
20 | * OTHER DEALINGS IN THE SOFTWARE. | ||
21 | * | ||
22 | * Authors: Ben Skeggs | ||
23 | */ | ||
24 | |||
25 | #include "drmP.h" | ||
26 | #include "nouveau_drv.h" | ||
27 | #include "nouveau_mm.h" | ||
28 | |||
29 | bool | ||
30 | nvc0_vram_flags_valid(struct drm_device *dev, u32 tile_flags) | ||
31 | { | ||
32 | switch (tile_flags & NOUVEAU_GEM_TILE_LAYOUT_MASK) { | ||
33 | case 0x0000: | ||
34 | case 0xfe00: | ||
35 | case 0xdb00: | ||
36 | case 0x1100: | ||
37 | return true; | ||
38 | default: | ||
39 | break; | ||
40 | } | ||
41 | |||
42 | return false; | ||
43 | } | ||
44 | |||
45 | int | ||
46 | nvc0_vram_new(struct drm_device *dev, u64 size, u32 align, u32 ncmin, | ||
47 | u32 type, struct nouveau_vram **pvram) | ||
48 | { | ||
49 | struct drm_nouveau_private *dev_priv = dev->dev_private; | ||
50 | struct ttm_bo_device *bdev = &dev_priv->ttm.bdev; | ||
51 | struct ttm_mem_type_manager *man = &bdev->man[TTM_PL_VRAM]; | ||
52 | struct nouveau_mm *mm = man->priv; | ||
53 | struct nouveau_mm_node *r; | ||
54 | struct nouveau_vram *vram; | ||
55 | int ret; | ||
56 | |||
57 | size >>= 12; | ||
58 | align >>= 12; | ||
59 | ncmin >>= 12; | ||
60 | |||
61 | vram = kzalloc(sizeof(*vram), GFP_KERNEL); | ||
62 | if (!vram) | ||
63 | return -ENOMEM; | ||
64 | |||
65 | INIT_LIST_HEAD(&vram->regions); | ||
66 | vram->dev = dev_priv->dev; | ||
67 | vram->memtype = type; | ||
68 | vram->size = size; | ||
69 | |||
70 | mutex_lock(&mm->mutex); | ||
71 | do { | ||
72 | ret = nouveau_mm_get(mm, 1, size, ncmin, align, &r); | ||
73 | if (ret) { | ||
74 | mutex_unlock(&mm->mutex); | ||
75 | nv50_vram_del(dev, &vram); | ||
76 | return ret; | ||
77 | } | ||
78 | |||
79 | list_add_tail(&r->rl_entry, &vram->regions); | ||
80 | size -= r->length; | ||
81 | } while (size); | ||
82 | mutex_unlock(&mm->mutex); | ||
83 | |||
84 | r = list_first_entry(&vram->regions, struct nouveau_mm_node, rl_entry); | ||
85 | vram->offset = (u64)r->offset << 12; | ||
86 | *pvram = vram; | ||
87 | return 0; | ||
88 | } | ||
89 | |||
90 | int | ||
91 | nvc0_vram_init(struct drm_device *dev) | ||
92 | { | ||
93 | struct drm_nouveau_private *dev_priv = dev->dev_private; | ||
94 | |||
95 | dev_priv->vram_size = nv_rd32(dev, 0x10f20c) << 20; | ||
96 | dev_priv->vram_size *= nv_rd32(dev, 0x121c74); | ||
97 | dev_priv->vram_rblock_size = 4096; | ||
98 | return 0; | ||
99 | } | ||