blob: 80d78076c679c041fd03c0ed5fad2518c1ed7d67 [file] [log] [blame]
Lucas Stachea1f5722017-01-16 16:09:51 +01001/*
2 * Copyright (C) 2017 Etnaviv Project
3 *
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.
7 *
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
11 * more details.
12 *
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/>.
15 */
16
17#ifndef __ETNAVIV_CMDBUF_H__
18#define __ETNAVIV_CMDBUF_H__
19
Lucas Stachea1f5722017-01-16 16:09:51 +010020#include <linux/types.h>
21
Lucas Stache66774d2017-01-16 17:29:57 +010022struct etnaviv_gpu;
23struct etnaviv_cmdbuf_suballoc;
24
Lucas Stachea1f5722017-01-16 16:09:51 +010025struct etnaviv_cmdbuf {
Lucas Stache66774d2017-01-16 17:29:57 +010026 /* suballocator this cmdbuf is allocated from */
27 struct etnaviv_cmdbuf_suballoc *suballoc;
Lucas Stachea1f5722017-01-16 16:09:51 +010028 /* user context key, must be unique between all active users */
29 struct etnaviv_file_private *ctx;
30 /* cmdbuf properties */
Lucas Stache66774d2017-01-16 17:29:57 +010031 int suballoc_offset;
Lucas Stachea1f5722017-01-16 16:09:51 +010032 void *vaddr;
Lucas Stachea1f5722017-01-16 16:09:51 +010033 u32 size;
34 u32 user_size;
Lucas Stachea1f5722017-01-16 16:09:51 +010035 /* fence after which this buffer is to be disposed */
36 struct dma_fence *fence;
37 /* target exec state */
38 u32 exec_state;
39 /* per GPU in-flight list */
40 struct list_head node;
41 /* BOs attached to this command buffer */
42 unsigned int nr_bos;
43 struct etnaviv_vram_mapping *bo_map[0];
44};
45
Lucas Stache66774d2017-01-16 17:29:57 +010046struct etnaviv_cmdbuf_suballoc *
47etnaviv_cmdbuf_suballoc_new(struct etnaviv_gpu * gpu);
48void etnaviv_cmdbuf_suballoc_destroy(struct etnaviv_cmdbuf_suballoc *suballoc);
49
50struct etnaviv_cmdbuf *
51etnaviv_cmdbuf_new(struct etnaviv_cmdbuf_suballoc *suballoc, u32 size,
52 size_t nr_bos);
53void etnaviv_cmdbuf_free(struct etnaviv_cmdbuf *cmdbuf);
54
Lucas Stachc3ef4b82017-01-16 16:52:44 +010055u32 etnaviv_cmdbuf_get_va(struct etnaviv_cmdbuf *buf);
Lucas Stach9912b4d2017-01-16 17:00:08 +010056dma_addr_t etnaviv_cmdbuf_get_pa(struct etnaviv_cmdbuf *buf);
Lucas Stachc3ef4b82017-01-16 16:52:44 +010057
Lucas Stachea1f5722017-01-16 16:09:51 +010058#endif /* __ETNAVIV_CMDBUF_H__ */