2 * Copyright (C) 2017 Etnaviv Project
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
17 #include <drm/drm_mm.h>
19 #include "etnaviv_cmdbuf.h"
20 #include "etnaviv_gpu.h"
21 #include "etnaviv_mmu.h"
22 #include "etnaviv_perfmon.h"
24 #define SUBALLOC_SIZE SZ_256K
25 #define SUBALLOC_GRANULE SZ_4K
26 #define SUBALLOC_GRANULES (SUBALLOC_SIZE / SUBALLOC_GRANULE)
28 struct etnaviv_cmdbuf_suballoc {
29 /* suballocated dma buffer properties */
30 struct etnaviv_gpu *gpu;
36 struct drm_mm_node vram_node; /* only used on MMUv2 */
38 /* allocation management */
40 DECLARE_BITMAP(granule_map, SUBALLOC_GRANULES);
42 wait_queue_head_t free_event;
45 struct etnaviv_cmdbuf_suballoc *
46 etnaviv_cmdbuf_suballoc_new(struct etnaviv_gpu * gpu)
48 struct etnaviv_cmdbuf_suballoc *suballoc;
51 suballoc = kzalloc(sizeof(*suballoc), GFP_KERNEL);
53 return ERR_PTR(-ENOMEM);
56 mutex_init(&suballoc->lock);
57 init_waitqueue_head(&suballoc->free_event);
59 suballoc->vaddr = dma_alloc_wc(gpu->dev, SUBALLOC_SIZE,
60 &suballoc->paddr, GFP_KERNEL);
64 ret = etnaviv_iommu_get_suballoc_va(gpu, suballoc->paddr,
65 &suballoc->vram_node, SUBALLOC_SIZE,
73 dma_free_wc(gpu->dev, SUBALLOC_SIZE, suballoc->vaddr, suballoc->paddr);
80 void etnaviv_cmdbuf_suballoc_destroy(struct etnaviv_cmdbuf_suballoc *suballoc)
82 etnaviv_iommu_put_suballoc_va(suballoc->gpu, &suballoc->vram_node,
83 SUBALLOC_SIZE, suballoc->iova);
84 dma_free_wc(suballoc->gpu->dev, SUBALLOC_SIZE, suballoc->vaddr,
89 struct etnaviv_cmdbuf *
90 etnaviv_cmdbuf_new(struct etnaviv_cmdbuf_suballoc *suballoc, u32 size,
93 struct etnaviv_cmdbuf *cmdbuf;
94 size_t sz = size_vstruct(nr_bos, sizeof(cmdbuf->bo_map[0]),
96 int granule_offs, order, ret;
98 cmdbuf = kzalloc(sz, GFP_KERNEL);
102 cmdbuf->suballoc = suballoc;
105 order = order_base_2(ALIGN(size, SUBALLOC_GRANULE) / SUBALLOC_GRANULE);
107 mutex_lock(&suballoc->lock);
108 granule_offs = bitmap_find_free_region(suballoc->granule_map,
109 SUBALLOC_GRANULES, order);
110 if (granule_offs < 0) {
111 suballoc->free_space = 0;
112 mutex_unlock(&suballoc->lock);
113 ret = wait_event_interruptible_timeout(suballoc->free_event,
114 suballoc->free_space,
115 msecs_to_jiffies(10 * 1000));
117 dev_err(suballoc->gpu->dev,
118 "Timeout waiting for cmdbuf space\n");
123 mutex_unlock(&suballoc->lock);
124 cmdbuf->suballoc_offset = granule_offs * SUBALLOC_GRANULE;
125 cmdbuf->vaddr = suballoc->vaddr + cmdbuf->suballoc_offset;
130 void etnaviv_cmdbuf_free(struct etnaviv_cmdbuf *cmdbuf)
132 struct etnaviv_cmdbuf_suballoc *suballoc = cmdbuf->suballoc;
133 int order = order_base_2(ALIGN(cmdbuf->size, SUBALLOC_GRANULE) /
136 mutex_lock(&suballoc->lock);
137 bitmap_release_region(suballoc->granule_map,
138 cmdbuf->suballoc_offset / SUBALLOC_GRANULE,
140 suballoc->free_space = 1;
141 mutex_unlock(&suballoc->lock);
142 wake_up_all(&suballoc->free_event);
146 u32 etnaviv_cmdbuf_get_va(struct etnaviv_cmdbuf *buf)
148 return buf->suballoc->iova + buf->suballoc_offset;
151 dma_addr_t etnaviv_cmdbuf_get_pa(struct etnaviv_cmdbuf *buf)
153 return buf->suballoc->paddr + buf->suballoc_offset;