panfrost: Pipe in compressed texture feature mask
[mesa.git] / src / panfrost / encoder / pan_device.h
1 /**************************************************************************
2 *
3 * Copyright 2018-2019 Alyssa Rosenzweig
4 * Copyright 2018-2019 Collabora, Ltd.
5 * Copyright © 2015 Intel Corporation
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
28 **************************************************************************/
29
30 #ifndef PAN_DEVICE_H
31 #define PAN_DEVICE_H
32
33 #include <xf86drm.h>
34 #include "renderonly/renderonly.h"
35 #include "util/u_dynarray.h"
36 #include "util/bitset.h"
37 #include "util/list.h"
38 #include "util/sparse_array.h"
39
40 #include <panfrost-misc.h>
41
42 /* Driver limits */
43 #define PAN_MAX_CONST_BUFFERS 16
44
45 /* Transient slab size. This is a balance between fragmentation against cache
46 * locality and ease of bookkeeping */
47
48 #define TRANSIENT_SLAB_PAGES (32) /* 128kb */
49 #define TRANSIENT_SLAB_SIZE (4096 * TRANSIENT_SLAB_PAGES)
50
51 /* Maximum number of transient slabs so we don't need dynamic arrays. Most
52 * interesting Mali boards are 4GB RAM max, so if the entire RAM was filled
53 * with transient slabs, you could never exceed (4GB / TRANSIENT_SLAB_SIZE)
54 * allocations anyway. By capping, we can use a fixed-size bitset for tracking
55 * free slabs, eliminating quite a bit of complexity. We can pack the free
56 * state of 8 slabs into a single byte, so for 128kb transient slabs the bitset
57 * occupies a cheap 4kb of memory */
58
59 #define MAX_TRANSIENT_SLABS (1024*1024 / TRANSIENT_SLAB_PAGES)
60
61 /* How many power-of-two levels in the BO cache do we want? 2^12
62 * minimum chosen as it is the page size that all allocations are
63 * rounded to */
64
65 #define MIN_BO_CACHE_BUCKET (12) /* 2^12 = 4KB */
66 #define MAX_BO_CACHE_BUCKET (22) /* 2^22 = 4MB */
67
68 /* Fencepost problem, hence the off-by-one */
69 #define NR_BO_CACHE_BUCKETS (MAX_BO_CACHE_BUCKET - MIN_BO_CACHE_BUCKET + 1)
70
71 struct panfrost_device {
72 /* For ralloc */
73 void *memctx;
74
75 int fd;
76
77 /* Properties of the GPU in use */
78 unsigned gpu_id;
79 unsigned core_count;
80 unsigned thread_tls_alloc;
81 unsigned quirks;
82
83 /* Bitmask of supported compressed texture formats */
84 uint32_t compressed_formats;
85
86 /* debug flags, see pan_util.h how to interpret */
87 unsigned debug;
88
89 drmVersionPtr kernel_version;
90
91 struct renderonly *ro;
92
93 pthread_mutex_t bo_map_lock;
94 struct util_sparse_array bo_map;
95
96 struct {
97 pthread_mutex_t lock;
98
99 /* List containing all cached BOs sorted in LRU (Least
100 * Recently Used) order. This allows us to quickly evict BOs
101 * that are more than 1 second old.
102 */
103 struct list_head lru;
104
105 /* The BO cache is a set of buckets with power-of-two sizes
106 * ranging from 2^12 (4096, the page size) to
107 * 2^(12 + MAX_BO_CACHE_BUCKETS).
108 * Each bucket is a linked list of free panfrost_bo objects. */
109
110 struct list_head buckets[NR_BO_CACHE_BUCKETS];
111 } bo_cache;
112 };
113
114 void
115 panfrost_open_device(void *memctx, int fd, struct panfrost_device *dev);
116
117 void
118 panfrost_close_device(struct panfrost_device *dev);
119
120 bool
121 panfrost_supports_compressed_format(struct panfrost_device *dev, unsigned fmt);
122
123 static inline struct panfrost_bo *
124 pan_lookup_bo(struct panfrost_device *dev, uint32_t gem_handle)
125 {
126 return util_sparse_array_get(&dev->bo_map, gem_handle);
127 }
128
129 #endif