intel/isl: Add a helper to convert tilings from ISL to i915
[mesa.git] / src / intel / isl / isl_drm.c
1 /*
2 * Copyright 2017 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 DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25 #include <stdlib.h>
26
27 #include <drm_fourcc.h>
28 #include <i915_drm.h>
29
30 #include "isl.h"
31 #include "common/gen_device_info.h"
32
33 uint32_t
34 isl_tiling_to_i915_tiling(enum isl_tiling tiling)
35 {
36 switch (tiling) {
37 case ISL_TILING_LINEAR:
38 return I915_TILING_NONE;
39
40 case ISL_TILING_X:
41 return I915_TILING_X;
42
43 case ISL_TILING_Y0:
44 return I915_TILING_Y;
45
46 case ISL_TILING_W:
47 case ISL_TILING_Yf:
48 case ISL_TILING_Ys:
49 case ISL_TILING_HIZ:
50 case ISL_TILING_CCS:
51 return I915_TILING_NONE;
52 }
53
54 unreachable("Invalid ISL tiling");
55 }
56
57 struct isl_drm_modifier_info modifier_info[] = {
58 {
59 .modifier = DRM_FORMAT_MOD_NONE,
60 .name = "DRM_FORMAT_MOD_NONE",
61 .tiling = ISL_TILING_LINEAR,
62 },
63 {
64 .modifier = I915_FORMAT_MOD_X_TILED,
65 .name = "I915_FORMAT_MOD_X_TILED",
66 .tiling = ISL_TILING_X,
67 },
68 {
69 .modifier = I915_FORMAT_MOD_Y_TILED,
70 .name = "I915_FORMAT_MOD_Y_TILED",
71 .tiling = ISL_TILING_Y0,
72 },
73 };
74
75 const struct isl_drm_modifier_info *
76 isl_drm_modifier_get_info(uint64_t modifier)
77 {
78 for (unsigned i = 0; i < ARRAY_SIZE(modifier_info); i++) {
79 if (modifier_info[i].modifier == modifier)
80 return &modifier_info[i];
81 }
82
83 return NULL;
84 }