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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
/*
* Copyright © 2008 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Authors:
* Eric Anholt <eric@anholt.net>
* Ben Widawsky <ben@bwidawsk.net>
*
*/
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <errno.h>
#include <err.h>
#include <assert.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include "intel_io.h"
#include "igt_core.h"
#include "igt_gt.h"
#include "intel_chipset.h"
/**
* SECTION:intel_io
* @short_description: Register access and sideband I/O library
* @title: I/O
* @include: igt.h
* @section_id: igt-gpu-tools-IO
*
* This library provides register I/O helpers in both a basic version and a more
* fancy version which also handles forcewake and can optionally check registers
* against a white-list. All register function are compatible. Hence the same
* code can be used to decode registers with either of them, or also from a dump
* file using intel_mmio_use_dump_file().
*
* Furthermore this library also provides helper functions for accessing the
* various sideband interfaces found on Valleyview/Baytrail based platforms.
*/
#define FAKEKEY 0x2468ace0
/**
* igt_global_mmio:
*
* Pointer to the register range, initialized using intel_register_access_init()
* or intel_mmio_use_dump_file(). It is not recommended to use this directly.
* This pointer is valid only for one drm device.
*/
void *igt_global_mmio;
/**
* intel_mmio_use_dump_file:
* @mmio_data: mmio structure for IO operations
* @file: name of the register dump file to open
*
* Sets also up mmio_data->igt_mmio to point at the data contained
* in @file. This allows the same code to get reused for dumping and decoding
* from running hardware as from register dumps.
*
* Users are expected to call intel_mmio_unmap_dump_file() after use.
*/
void
intel_mmio_use_dump_file(struct intel_mmio_data *mmio_data, char *file)
{
int fd;
struct stat st;
memset(mmio_data, 0, sizeof(struct intel_mmio_data));
fd = open(file, O_RDWR);
igt_fail_on_f(fd == -1,
"Couldn't open %s\n", file);
fstat(fd, &st);
mmio_data->igt_mmio = mmap(NULL, st.st_size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
igt_fail_on_f(mmio_data->igt_mmio == MAP_FAILED,
"Couldn't mmap %s\n", file);
mmio_data->mmio_size = st.st_size;
igt_global_mmio = mmio_data->igt_mmio;
close(fd);
}
/**
* intel_mmio_unmap_dump_file:
* @mmio_data: mmio structure initialized with intel_mmio_use_dump_file()
*
* Unmaps a dump file mmapped with intel_mmio_use_dump_file()
*/
void intel_mmio_unmap_dump_file(struct intel_mmio_data *mmio_data)
{
if (igt_warn_on_f(mmio_data->dev,
"test bug: arg initialized with a method other than intel_mmio_use_dump_file()\n"))
return;
if (igt_warn_on_f(!mmio_data->mmio_size,
"test bug: arg not initialized\n"))
return;
igt_global_mmio = NULL;
igt_debug_on(munmap(mmio_data->igt_mmio, mmio_data->mmio_size) < 0);
mmio_data->mmio_size = 0;
}
/**
* intel_mmio_use_pci_bar:
* @mmio_data: mmio structure for IO operations
* @pci_dev: intel gracphis pci device
*
* Fill a mmio_data stucture with igt_mmio to point at the mmio bar.
*
* @pci_dev can be obtained from intel_get_pci_device().
*
* Users are expected to call intel_mmio_unmap_pci_bar() after use.
*/
void
intel_mmio_use_pci_bar(struct intel_mmio_data *mmio_data, struct pci_device *pci_dev)
{
uint32_t devid, gen;
int mmio_bar, mmio_size;
int error;
memset(mmio_data, 0, sizeof(struct intel_mmio_data));
devid = pci_dev->device_id;
if (IS_GEN2(devid))
mmio_bar = 1;
else
mmio_bar = 0;
gen = intel_gen(devid);
if (gen < 3)
mmio_size = 512*1024;
else if (gen < 5)
mmio_size = 512*1024;
else
mmio_size = 2*1024*1024;
error = pci_device_map_range (pci_dev,
pci_dev->regions[mmio_bar].base_addr,
mmio_size,
PCI_DEV_MAP_FLAG_WRITABLE,
&mmio_data->igt_mmio);
igt_fail_on_f(error != 0,
"Couldn't map MMIO region\n");
mmio_data->mmio_size = mmio_size;
mmio_data->dev = pci_dev;
igt_global_mmio = mmio_data->igt_mmio;
}
/**
* intel_mmio_unmap_pci_bar:
* @mmio_data: mmio structure initialized with intel_mmio_use_pci_bar()
*
* Unmaps a PCI BAR region mmapped with intel_mmio_use_pci_bar()
*/
void intel_mmio_unmap_pci_bar(struct intel_mmio_data *mmio_data)
{
if (igt_warn_on_f(mmio_data->pci_device_id,
"test bug: arg initialized with a method other than intel_mmio_use_pci_bar()\n"))
return;
if (igt_warn_on_f(!mmio_data->dev,
"test bug: arg not initialized with intel_mmio_use_pci_bar()\n"))
return;
igt_global_mmio = NULL;
igt_debug_on(pci_device_unmap_range(mmio_data->dev,
mmio_data->igt_mmio, mmio_data->mmio_size) < 0);
mmio_data->dev = NULL;
mmio_data->mmio_size = 0;
}
static void
release_forcewake_lock(int fd)
{
close(fd);
}
/**
* intel_register_access_init:
* @mmio_data: mmio structure for IO operations
* @pci_dev: intel graphics pci device
* @safe: use safe register access tables
*
* This initializes the new register access library, which supports forcewake
* handling and also allows register access to be checked with an explicit
* whitelist.
*
* It also initializes mmio_data->igt_mmio like intel_mmio_use_pci_bar().
*
* @pci_dev can be obtained from intel_get_pci_device().
*
* Users are expected to call intel_register_access_fini() after use.
*/
int
intel_register_access_init(struct intel_mmio_data *mmio_data, struct pci_device *pci_dev, int safe, int fd)
{
int ret;
intel_mmio_use_pci_bar(mmio_data, pci_dev);
igt_assert(mmio_data->igt_mmio != NULL);
mmio_data->safe = (safe != 0 &&
intel_gen(pci_dev->device_id) >= 4) ? true : false;
mmio_data->pci_device_id = pci_dev->device_id;
if (mmio_data->safe)
mmio_data->map = intel_get_register_map(mmio_data->pci_device_id);
/* Find where the forcewake lock is. Forcewake doesn't exist
* gen < 6, but the debugfs should do the right things for us.
*/
ret = igt_open_forcewake_handle(fd);
if (ret == -1)
mmio_data->key = FAKEKEY;
else
mmio_data->key = ret;
return 0;
}
static int
intel_register_access_needs_wake(struct intel_mmio_data *mmio_data)
{
return mmio_data->key != FAKEKEY;
}
/**
* intel_register_access_needs_fakewake:
* @mmio_data: mmio structure for IO operations
*
* Returns:
* Non-zero when forcewake initialization failed.
*/
int intel_register_access_needs_fakewake(struct intel_mmio_data *mmio_data)
{
return mmio_data->key == FAKEKEY;
}
/**
* intel_register_access_fini:
* @mmio_data: mmio structure initialized with intel_register_access_init()
*
* Clean up the register access helper initialized with
* intel_register_access_init().
*/
void
intel_register_access_fini(struct intel_mmio_data *mmio_data)
{
if (igt_warn_on_f(!mmio_data->pci_device_id,
"test bug: arg not initialized with intel_register_access_init()\n"))
return;
if (mmio_data->key && intel_register_access_needs_wake(mmio_data))
release_forcewake_lock(mmio_data->key);
mmio_data->pci_device_id = 0;
intel_mmio_unmap_pci_bar(mmio_data);
}
/**
* intel_register_read:
* @mmio_data: mmio structure for IO operations
* @reg: register offset
*
* 32-bit read of the register at @offset. This function only works when the new
* register access helper is initialized with intel_register_access_init().
*
* Compared to INREG() it can do optional checking with the register access
* white lists.
*
* Returns:
* The value read from the register.
*/
uint32_t
intel_register_read(struct intel_mmio_data *mmio_data, uint32_t reg)
{
struct intel_register_range *range;
uint32_t ret;
if (intel_gen(mmio_data->pci_device_id) >= 6)
igt_assert(mmio_data->key != -1);
if (!mmio_data->safe)
goto read_out;
range = intel_get_register_range(mmio_data->map,
reg,
INTEL_RANGE_READ);
if(!range) {
igt_warn("Register read blocked for safety ""(*0x%08x)\n", reg);
ret = 0xffffffff;
goto out;
}
read_out:
ret = ioread32(mmio_data->igt_mmio, reg);
out:
return ret;
}
/**
* intel_register_write:
* @mmio_data: mmio structure for IO operations
* @reg: register offset
* @val: value to write
*
* 32-bit write to the register at @offset. This function only works when the new
* register access helper is initialized with intel_register_access_init().
*
* Compared to OUTREG() it can do optional checking with the register access
* white lists.
*/
void
intel_register_write(struct intel_mmio_data *mmio_data, uint32_t reg, uint32_t val)
{
struct intel_register_range *range;
if (intel_gen(mmio_data->pci_device_id) >= 6)
igt_assert(mmio_data->key != -1);
if (!mmio_data->safe)
goto write_out;
range = intel_get_register_range(mmio_data->map,
reg,
INTEL_RANGE_WRITE);
igt_warn_on_f(!range,
"Register write blocked for safety ""(*0x%08x = 0x%x)\n", reg, val);
write_out:
iowrite32(mmio_data->igt_mmio, reg, val);
}
|