1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
// SPDX-License-Identifier: MIT
/*
* Copyright © 2021 Intel Corporation
*/
#include <sys/ioctl.h>
#include <stdlib.h>
#include "igt.h"
#include "igt_x86.h"
#include "igt_rand.h"
#include "intel_allocator.h"
#include "igt_map.h"
struct intel_allocator *
intel_allocator_reloc_create(int fd, uint64_t start, uint64_t end);
struct intel_allocator_reloc {
struct igt_map *objects;
uint32_t prng;
uint64_t start;
uint64_t end;
uint64_t offset;
/* statistics */
uint64_t allocated_objects;
};
struct intel_allocator_record {
uint32_t handle;
uint64_t offset;
uint64_t size;
uint8_t pat_index;
};
/* Keep the low 256k clear, for negative deltas */
#define BIAS (256 << 10)
static void map_entry_free_func(struct igt_map_entry *entry)
{
free(entry->data);
}
static void intel_allocator_reloc_get_address_range(struct intel_allocator *ial,
uint64_t *startp,
uint64_t *endp)
{
struct intel_allocator_reloc *ialr = ial->priv;
if (startp)
*startp = ialr->start;
if (endp)
*endp = ialr->end;
}
static uint64_t intel_allocator_reloc_alloc(struct intel_allocator *ial,
uint32_t handle, uint64_t size,
uint64_t alignment, uint8_t pat_index,
enum allocator_strategy strategy)
{
struct intel_allocator_record *rec;
struct intel_allocator_reloc *ialr = ial->priv;
uint64_t offset, aligned_offset;
(void) strategy;
rec = igt_map_search(ialr->objects, &handle);
if (rec) {
offset = rec->offset;
igt_assert(rec->size == size);
igt_assert(rec->pat_index == pat_index);
} else {
aligned_offset = ALIGN(ialr->offset, alignment);
/* Check we won't exceed end */
if (aligned_offset + size > ialr->end)
aligned_offset = ALIGN(ialr->start, alignment);
/* Check that the object fits in the address range */
if (aligned_offset + size > ialr->end)
return ALLOC_INVALID_ADDRESS;
offset = aligned_offset;
rec = malloc(sizeof(*rec));
rec->handle = handle;
rec->offset = offset;
rec->size = size;
rec->pat_index = pat_index;
igt_map_insert(ialr->objects, &rec->handle, rec);
ialr->offset = offset + size;
ialr->allocated_objects++;
}
return offset;
}
static bool intel_allocator_reloc_free(struct intel_allocator *ial,
uint32_t handle)
{
struct intel_allocator_record *rec = NULL;
struct intel_allocator_reloc *ialr = ial->priv;
struct igt_map_entry *entry;
entry = igt_map_search_entry(ialr->objects, &handle);
if (entry) {
igt_map_remove_entry(ialr->objects, entry);
if (entry->data) {
rec = (struct intel_allocator_record *) entry->data;
ialr->allocated_objects--;
free(rec);
return true;
}
}
return false;
}
static inline bool __same(const struct intel_allocator_record *rec,
uint32_t handle, uint64_t size, uint64_t offset)
{
return rec->handle == handle && rec->size == size &&
DECANONICAL(rec->offset) == DECANONICAL(offset);
}
static bool intel_allocator_reloc_is_allocated(struct intel_allocator *ial,
uint32_t handle, uint64_t size,
uint64_t offset)
{
struct intel_allocator_record *rec;
struct intel_allocator_reloc *ialr;
bool same = false;
igt_assert(ial);
ialr = (struct intel_allocator_reloc *) ial->priv;
igt_assert(ialr);
igt_assert(handle);
rec = igt_map_search(ialr->objects, &handle);
if (rec && __same(rec, handle, size, offset))
same = true;
return same;
}
static void intel_allocator_reloc_destroy(struct intel_allocator *ial)
{
struct intel_allocator_reloc *ialr;
igt_assert(ial);
ialr = (struct intel_allocator_reloc *) ial->priv;
igt_map_destroy(ialr->objects, map_entry_free_func);
free(ial->priv);
free(ial);
}
static bool intel_allocator_reloc_reserve(struct intel_allocator *ial,
uint32_t handle,
uint64_t start, uint64_t end)
{
(void) ial;
(void) handle;
(void) start;
(void) end;
return false;
}
static bool intel_allocator_reloc_unreserve(struct intel_allocator *ial,
uint32_t handle,
uint64_t start, uint64_t end)
{
(void) ial;
(void) handle;
(void) start;
(void) end;
return false;
}
static bool intel_allocator_reloc_is_reserved(struct intel_allocator *ial,
uint64_t start, uint64_t end)
{
(void) ial;
(void) start;
(void) end;
return false;
}
static void intel_allocator_reloc_print(struct intel_allocator *ial, bool full)
{
struct intel_allocator_reloc *ialr = ial->priv;
(void) full;
igt_info("<ial: %p, fd: %d> allocated objects: %" PRIx64 "\n",
ial, ial->fd, ialr->allocated_objects);
}
static bool intel_allocator_reloc_is_empty(struct intel_allocator *ial)
{
struct intel_allocator_reloc *ialr = ial->priv;
return !ialr->allocated_objects;
}
struct intel_allocator *
intel_allocator_reloc_create(int fd, uint64_t start, uint64_t end)
{
struct intel_allocator *ial;
struct intel_allocator_reloc *ialr;
igt_debug("Using reloc allocator\n");
ial = calloc(1, sizeof(*ial));
igt_assert(ial);
ial->fd = fd;
ial->get_address_range = intel_allocator_reloc_get_address_range;
ial->alloc = intel_allocator_reloc_alloc;
ial->free = intel_allocator_reloc_free;
ial->is_allocated = intel_allocator_reloc_is_allocated;
ial->reserve = intel_allocator_reloc_reserve;
ial->unreserve = intel_allocator_reloc_unreserve;
ial->is_reserved = intel_allocator_reloc_is_reserved;
ial->destroy = intel_allocator_reloc_destroy;
ial->print = intel_allocator_reloc_print;
ial->is_empty = intel_allocator_reloc_is_empty;
ialr = ial->priv = calloc(1, sizeof(*ialr));
igt_assert(ial->priv);
ialr->objects = igt_map_create(igt_map_hash_32, igt_map_equal_32);
ialr->prng = (uint32_t) to_user_pointer(ial);
start = max_t(uint64_t, start, BIAS);
igt_assert(start < end);
ialr->offset = ialr->start = start;
ialr->end = end;
ialr->allocated_objects = 0;
return ial;
}
|