kms_fbc_crc: Use I915_TILING_X to create fbs
[platform/upstream/intel-gpu-tools.git] / tools / intel_iosf_sb_read.c
1 /*
2  * Copyright © 2014 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  */
24
25 #include <unistd.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <err.h>
29 #include <string.h>
30 #include "intel_io.h"
31 #include "intel_chipset.h"
32
33 static void usage(const char *name)
34 {
35         printf("Warning : This program will work only on Valleyview\n"
36                "Usage: %s <port> <reg>\n"
37                "\t port/reg : in 0xXXXX format\n",
38                name);
39 }
40
41 int main(int argc, char *argv[])
42 {
43         uint32_t port, reg, val;
44         struct pci_device *dev = intel_get_pci_device();
45
46         if (argc != 3 || !IS_VALLEYVIEW(dev->device_id)) {
47                 usage(argv[0]);
48                 return 1;
49         }
50
51         port = strtoul(argv[1], NULL, 16);
52         reg = strtoul(argv[2], NULL, 16);
53
54         intel_register_access_init(dev, 0);
55
56         val = intel_iosf_sb_read(port, reg);
57         printf("0x%02x/0x%04x : 0x%08x\n", port, reg, val);
58
59         intel_register_access_fini();
60
61         return 0;
62 }