Elliott Hughes | 180edef | 2023-11-02 00:08:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is auto-generated. Modifications will be lost. |
| 3 | * |
| 4 | * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ |
| 5 | * for more information. |
| 6 | */ |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 7 | #ifndef DRM_FOURCC_H |
| 8 | #define DRM_FOURCC_H |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 9 | #include "drm.h" |
| 10 | #ifdef __cplusplus |
Christopher Ferris | 48fe0ae | 2019-01-10 15:59:33 -0800 | [diff] [blame] | 11 | extern "C" { |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 12 | #endif |
| 13 | #define fourcc_code(a,b,c,d) ((__u32) (a) | ((__u32) (b) << 8) | ((__u32) (c) << 16) | ((__u32) (d) << 24)) |
Christopher Ferris | d32ca14 | 2020-02-04 16:16:51 -0800 | [diff] [blame] | 14 | #define DRM_FORMAT_BIG_ENDIAN (1U << 31) |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 15 | #define DRM_FORMAT_INVALID 0 |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 16 | #define DRM_FORMAT_C1 fourcc_code('C', '1', ' ', ' ') |
| 17 | #define DRM_FORMAT_C2 fourcc_code('C', '2', ' ', ' ') |
| 18 | #define DRM_FORMAT_C4 fourcc_code('C', '4', ' ', ' ') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 19 | #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 20 | #define DRM_FORMAT_D1 fourcc_code('D', '1', ' ', ' ') |
| 21 | #define DRM_FORMAT_D2 fourcc_code('D', '2', ' ', ' ') |
| 22 | #define DRM_FORMAT_D4 fourcc_code('D', '4', ' ', ' ') |
| 23 | #define DRM_FORMAT_D8 fourcc_code('D', '8', ' ', ' ') |
| 24 | #define DRM_FORMAT_R1 fourcc_code('R', '1', ' ', ' ') |
| 25 | #define DRM_FORMAT_R2 fourcc_code('R', '2', ' ', ' ') |
| 26 | #define DRM_FORMAT_R4 fourcc_code('R', '4', ' ', ' ') |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 27 | #define DRM_FORMAT_R8 fourcc_code('R', '8', ' ', ' ') |
Christopher Ferris | a479261 | 2022-01-10 13:51:15 -0800 | [diff] [blame] | 28 | #define DRM_FORMAT_R10 fourcc_code('R', '1', '0', ' ') |
| 29 | #define DRM_FORMAT_R12 fourcc_code('R', '1', '2', ' ') |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 30 | #define DRM_FORMAT_R16 fourcc_code('R', '1', '6', ' ') |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 31 | #define DRM_FORMAT_RG88 fourcc_code('R', 'G', '8', '8') |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 32 | #define DRM_FORMAT_GR88 fourcc_code('G', 'R', '8', '8') |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 33 | #define DRM_FORMAT_RG1616 fourcc_code('R', 'G', '3', '2') |
| 34 | #define DRM_FORMAT_GR1616 fourcc_code('G', 'R', '3', '2') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 35 | #define DRM_FORMAT_RGB332 fourcc_code('R', 'G', 'B', '8') |
| 36 | #define DRM_FORMAT_BGR233 fourcc_code('B', 'G', 'R', '8') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 37 | #define DRM_FORMAT_XRGB4444 fourcc_code('X', 'R', '1', '2') |
| 38 | #define DRM_FORMAT_XBGR4444 fourcc_code('X', 'B', '1', '2') |
| 39 | #define DRM_FORMAT_RGBX4444 fourcc_code('R', 'X', '1', '2') |
| 40 | #define DRM_FORMAT_BGRX4444 fourcc_code('B', 'X', '1', '2') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 41 | #define DRM_FORMAT_ARGB4444 fourcc_code('A', 'R', '1', '2') |
| 42 | #define DRM_FORMAT_ABGR4444 fourcc_code('A', 'B', '1', '2') |
| 43 | #define DRM_FORMAT_RGBA4444 fourcc_code('R', 'A', '1', '2') |
| 44 | #define DRM_FORMAT_BGRA4444 fourcc_code('B', 'A', '1', '2') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 45 | #define DRM_FORMAT_XRGB1555 fourcc_code('X', 'R', '1', '5') |
| 46 | #define DRM_FORMAT_XBGR1555 fourcc_code('X', 'B', '1', '5') |
| 47 | #define DRM_FORMAT_RGBX5551 fourcc_code('R', 'X', '1', '5') |
| 48 | #define DRM_FORMAT_BGRX5551 fourcc_code('B', 'X', '1', '5') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 49 | #define DRM_FORMAT_ARGB1555 fourcc_code('A', 'R', '1', '5') |
| 50 | #define DRM_FORMAT_ABGR1555 fourcc_code('A', 'B', '1', '5') |
| 51 | #define DRM_FORMAT_RGBA5551 fourcc_code('R', 'A', '1', '5') |
| 52 | #define DRM_FORMAT_BGRA5551 fourcc_code('B', 'A', '1', '5') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 53 | #define DRM_FORMAT_RGB565 fourcc_code('R', 'G', '1', '6') |
| 54 | #define DRM_FORMAT_BGR565 fourcc_code('B', 'G', '1', '6') |
| 55 | #define DRM_FORMAT_RGB888 fourcc_code('R', 'G', '2', '4') |
| 56 | #define DRM_FORMAT_BGR888 fourcc_code('B', 'G', '2', '4') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 57 | #define DRM_FORMAT_XRGB8888 fourcc_code('X', 'R', '2', '4') |
| 58 | #define DRM_FORMAT_XBGR8888 fourcc_code('X', 'B', '2', '4') |
| 59 | #define DRM_FORMAT_RGBX8888 fourcc_code('R', 'X', '2', '4') |
| 60 | #define DRM_FORMAT_BGRX8888 fourcc_code('B', 'X', '2', '4') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 61 | #define DRM_FORMAT_ARGB8888 fourcc_code('A', 'R', '2', '4') |
| 62 | #define DRM_FORMAT_ABGR8888 fourcc_code('A', 'B', '2', '4') |
| 63 | #define DRM_FORMAT_RGBA8888 fourcc_code('R', 'A', '2', '4') |
| 64 | #define DRM_FORMAT_BGRA8888 fourcc_code('B', 'A', '2', '4') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 65 | #define DRM_FORMAT_XRGB2101010 fourcc_code('X', 'R', '3', '0') |
| 66 | #define DRM_FORMAT_XBGR2101010 fourcc_code('X', 'B', '3', '0') |
| 67 | #define DRM_FORMAT_RGBX1010102 fourcc_code('R', 'X', '3', '0') |
| 68 | #define DRM_FORMAT_BGRX1010102 fourcc_code('B', 'X', '3', '0') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 69 | #define DRM_FORMAT_ARGB2101010 fourcc_code('A', 'R', '3', '0') |
| 70 | #define DRM_FORMAT_ABGR2101010 fourcc_code('A', 'B', '3', '0') |
| 71 | #define DRM_FORMAT_RGBA1010102 fourcc_code('R', 'A', '3', '0') |
| 72 | #define DRM_FORMAT_BGRA1010102 fourcc_code('B', 'A', '3', '0') |
Christopher Ferris | 3a39c0b | 2021-09-02 00:03:38 +0000 | [diff] [blame] | 73 | #define DRM_FORMAT_XRGB16161616 fourcc_code('X', 'R', '4', '8') |
| 74 | #define DRM_FORMAT_XBGR16161616 fourcc_code('X', 'B', '4', '8') |
| 75 | #define DRM_FORMAT_ARGB16161616 fourcc_code('A', 'R', '4', '8') |
| 76 | #define DRM_FORMAT_ABGR16161616 fourcc_code('A', 'B', '4', '8') |
Christopher Ferris | aeddbcf | 2019-07-08 12:45:46 -0700 | [diff] [blame] | 77 | #define DRM_FORMAT_XRGB16161616F fourcc_code('X', 'R', '4', 'H') |
| 78 | #define DRM_FORMAT_XBGR16161616F fourcc_code('X', 'B', '4', 'H') |
| 79 | #define DRM_FORMAT_ARGB16161616F fourcc_code('A', 'R', '4', 'H') |
| 80 | #define DRM_FORMAT_ABGR16161616F fourcc_code('A', 'B', '4', 'H') |
Christopher Ferris | 05667cd | 2021-02-16 16:01:34 -0800 | [diff] [blame] | 81 | #define DRM_FORMAT_AXBXGXRX106106106106 fourcc_code('A', 'B', '1', '0') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 82 | #define DRM_FORMAT_YUYV fourcc_code('Y', 'U', 'Y', 'V') |
| 83 | #define DRM_FORMAT_YVYU fourcc_code('Y', 'V', 'Y', 'U') |
| 84 | #define DRM_FORMAT_UYVY fourcc_code('U', 'Y', 'V', 'Y') |
| 85 | #define DRM_FORMAT_VYUY fourcc_code('V', 'Y', 'U', 'Y') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 86 | #define DRM_FORMAT_AYUV fourcc_code('A', 'Y', 'U', 'V') |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 87 | #define DRM_FORMAT_AVUY8888 fourcc_code('A', 'V', 'U', 'Y') |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 88 | #define DRM_FORMAT_XYUV8888 fourcc_code('X', 'Y', 'U', 'V') |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 89 | #define DRM_FORMAT_XVUY8888 fourcc_code('X', 'V', 'U', 'Y') |
Christopher Ferris | aeddbcf | 2019-07-08 12:45:46 -0700 | [diff] [blame] | 90 | #define DRM_FORMAT_VUY888 fourcc_code('V', 'U', '2', '4') |
| 91 | #define DRM_FORMAT_VUY101010 fourcc_code('V', 'U', '3', '0') |
| 92 | #define DRM_FORMAT_Y210 fourcc_code('Y', '2', '1', '0') |
| 93 | #define DRM_FORMAT_Y212 fourcc_code('Y', '2', '1', '2') |
| 94 | #define DRM_FORMAT_Y216 fourcc_code('Y', '2', '1', '6') |
| 95 | #define DRM_FORMAT_Y410 fourcc_code('Y', '4', '1', '0') |
| 96 | #define DRM_FORMAT_Y412 fourcc_code('Y', '4', '1', '2') |
| 97 | #define DRM_FORMAT_Y416 fourcc_code('Y', '4', '1', '6') |
| 98 | #define DRM_FORMAT_XVYU2101010 fourcc_code('X', 'V', '3', '0') |
| 99 | #define DRM_FORMAT_XVYU12_16161616 fourcc_code('X', 'V', '3', '6') |
| 100 | #define DRM_FORMAT_XVYU16161616 fourcc_code('X', 'V', '4', '8') |
Christopher Ferris | d842e43 | 2019-03-07 10:21:59 -0800 | [diff] [blame] | 101 | #define DRM_FORMAT_Y0L0 fourcc_code('Y', '0', 'L', '0') |
| 102 | #define DRM_FORMAT_X0L0 fourcc_code('X', '0', 'L', '0') |
| 103 | #define DRM_FORMAT_Y0L2 fourcc_code('Y', '0', 'L', '2') |
| 104 | #define DRM_FORMAT_X0L2 fourcc_code('X', '0', 'L', '2') |
Christopher Ferris | aeddbcf | 2019-07-08 12:45:46 -0700 | [diff] [blame] | 105 | #define DRM_FORMAT_YUV420_8BIT fourcc_code('Y', 'U', '0', '8') |
| 106 | #define DRM_FORMAT_YUV420_10BIT fourcc_code('Y', 'U', '1', '0') |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 107 | #define DRM_FORMAT_XRGB8888_A8 fourcc_code('X', 'R', 'A', '8') |
| 108 | #define DRM_FORMAT_XBGR8888_A8 fourcc_code('X', 'B', 'A', '8') |
| 109 | #define DRM_FORMAT_RGBX8888_A8 fourcc_code('R', 'X', 'A', '8') |
| 110 | #define DRM_FORMAT_BGRX8888_A8 fourcc_code('B', 'X', 'A', '8') |
| 111 | #define DRM_FORMAT_RGB888_A8 fourcc_code('R', '8', 'A', '8') |
| 112 | #define DRM_FORMAT_BGR888_A8 fourcc_code('B', '8', 'A', '8') |
| 113 | #define DRM_FORMAT_RGB565_A8 fourcc_code('R', '5', 'A', '8') |
| 114 | #define DRM_FORMAT_BGR565_A8 fourcc_code('B', '5', 'A', '8') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 115 | #define DRM_FORMAT_NV12 fourcc_code('N', 'V', '1', '2') |
| 116 | #define DRM_FORMAT_NV21 fourcc_code('N', 'V', '2', '1') |
| 117 | #define DRM_FORMAT_NV16 fourcc_code('N', 'V', '1', '6') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 118 | #define DRM_FORMAT_NV61 fourcc_code('N', 'V', '6', '1') |
| 119 | #define DRM_FORMAT_NV24 fourcc_code('N', 'V', '2', '4') |
| 120 | #define DRM_FORMAT_NV42 fourcc_code('N', 'V', '4', '2') |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 121 | #define DRM_FORMAT_NV15 fourcc_code('N', 'V', '1', '5') |
Christopher Ferris | 0f79521 | 2024-01-17 14:17:28 -0800 | [diff] [blame] | 122 | #define DRM_FORMAT_NV20 fourcc_code('N', 'V', '2', '0') |
| 123 | #define DRM_FORMAT_NV30 fourcc_code('N', 'V', '3', '0') |
Christopher Ferris | aeddbcf | 2019-07-08 12:45:46 -0700 | [diff] [blame] | 124 | #define DRM_FORMAT_P210 fourcc_code('P', '2', '1', '0') |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 125 | #define DRM_FORMAT_P010 fourcc_code('P', '0', '1', '0') |
| 126 | #define DRM_FORMAT_P012 fourcc_code('P', '0', '1', '2') |
| 127 | #define DRM_FORMAT_P016 fourcc_code('P', '0', '1', '6') |
Christopher Ferris | 1ed5534 | 2022-03-22 16:06:25 -0700 | [diff] [blame] | 128 | #define DRM_FORMAT_P030 fourcc_code('P', '0', '3', '0') |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 129 | #define DRM_FORMAT_Q410 fourcc_code('Q', '4', '1', '0') |
| 130 | #define DRM_FORMAT_Q401 fourcc_code('Q', '4', '0', '1') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 131 | #define DRM_FORMAT_YUV410 fourcc_code('Y', 'U', 'V', '9') |
| 132 | #define DRM_FORMAT_YVU410 fourcc_code('Y', 'V', 'U', '9') |
| 133 | #define DRM_FORMAT_YUV411 fourcc_code('Y', 'U', '1', '1') |
| 134 | #define DRM_FORMAT_YVU411 fourcc_code('Y', 'V', '1', '1') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 135 | #define DRM_FORMAT_YUV420 fourcc_code('Y', 'U', '1', '2') |
| 136 | #define DRM_FORMAT_YVU420 fourcc_code('Y', 'V', '1', '2') |
| 137 | #define DRM_FORMAT_YUV422 fourcc_code('Y', 'U', '1', '6') |
| 138 | #define DRM_FORMAT_YVU422 fourcc_code('Y', 'V', '1', '6') |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 139 | #define DRM_FORMAT_YUV444 fourcc_code('Y', 'U', '2', '4') |
| 140 | #define DRM_FORMAT_YVU444 fourcc_code('Y', 'V', '2', '4') |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 141 | #define DRM_FORMAT_MOD_VENDOR_NONE 0 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 142 | #define DRM_FORMAT_MOD_VENDOR_INTEL 0x01 |
| 143 | #define DRM_FORMAT_MOD_VENDOR_AMD 0x02 |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 144 | #define DRM_FORMAT_MOD_VENDOR_NVIDIA 0x03 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 145 | #define DRM_FORMAT_MOD_VENDOR_SAMSUNG 0x04 |
| 146 | #define DRM_FORMAT_MOD_VENDOR_QCOM 0x05 |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 147 | #define DRM_FORMAT_MOD_VENDOR_VIVANTE 0x06 |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 148 | #define DRM_FORMAT_MOD_VENDOR_BROADCOM 0x07 |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 149 | #define DRM_FORMAT_MOD_VENDOR_ARM 0x08 |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 150 | #define DRM_FORMAT_MOD_VENDOR_ALLWINNER 0x09 |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 151 | #define DRM_FORMAT_MOD_VENDOR_AMLOGIC 0x0a |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 152 | #define DRM_FORMAT_RESERVED ((1ULL << 56) - 1) |
Christopher Ferris | a479261 | 2022-01-10 13:51:15 -0800 | [diff] [blame] | 153 | #define fourcc_mod_get_vendor(modifier) (((modifier) >> 56) & 0xff) |
| 154 | #define fourcc_mod_is_vendor(modifier,vendor) (fourcc_mod_get_vendor(modifier) == DRM_FORMAT_MOD_VENDOR_ ##vendor) |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 155 | #define fourcc_mod_code(vendor,val) ((((__u64) DRM_FORMAT_MOD_VENDOR_ ##vendor) << 56) | ((val) & 0x00ffffffffffffffULL)) |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 156 | #define DRM_FORMAT_MOD_GENERIC_16_16_TILE DRM_FORMAT_MOD_SAMSUNG_16_16_TILE |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 157 | #define DRM_FORMAT_MOD_INVALID fourcc_mod_code(NONE, DRM_FORMAT_RESERVED) |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 158 | #define DRM_FORMAT_MOD_LINEAR fourcc_mod_code(NONE, 0) |
Christopher Ferris | 05667cd | 2021-02-16 16:01:34 -0800 | [diff] [blame] | 159 | #define DRM_FORMAT_MOD_NONE 0 |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 160 | #define I915_FORMAT_MOD_X_TILED fourcc_mod_code(INTEL, 1) |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 161 | #define I915_FORMAT_MOD_Y_TILED fourcc_mod_code(INTEL, 2) |
| 162 | #define I915_FORMAT_MOD_Yf_TILED fourcc_mod_code(INTEL, 3) |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 163 | #define I915_FORMAT_MOD_Y_TILED_CCS fourcc_mod_code(INTEL, 4) |
| 164 | #define I915_FORMAT_MOD_Yf_TILED_CCS fourcc_mod_code(INTEL, 5) |
Christopher Ferris | bb9fcb4 | 2020-04-06 11:38:04 -0700 | [diff] [blame] | 165 | #define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS fourcc_mod_code(INTEL, 6) |
| 166 | #define I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS fourcc_mod_code(INTEL, 7) |
Christopher Ferris | a9750ed | 2021-05-03 14:02:49 -0700 | [diff] [blame] | 167 | #define I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS_CC fourcc_mod_code(INTEL, 8) |
Christopher Ferris | 80ae69d | 2022-08-02 16:32:21 -0700 | [diff] [blame] | 168 | #define I915_FORMAT_MOD_4_TILED fourcc_mod_code(INTEL, 9) |
| 169 | #define I915_FORMAT_MOD_4_TILED_DG2_RC_CCS fourcc_mod_code(INTEL, 10) |
| 170 | #define I915_FORMAT_MOD_4_TILED_DG2_MC_CCS fourcc_mod_code(INTEL, 11) |
| 171 | #define I915_FORMAT_MOD_4_TILED_DG2_RC_CCS_CC fourcc_mod_code(INTEL, 12) |
Christopher Ferris | 8666d04 | 2023-09-06 14:55:31 -0700 | [diff] [blame] | 172 | #define I915_FORMAT_MOD_4_TILED_MTL_RC_CCS fourcc_mod_code(INTEL, 13) |
| 173 | #define I915_FORMAT_MOD_4_TILED_MTL_MC_CCS fourcc_mod_code(INTEL, 14) |
| 174 | #define I915_FORMAT_MOD_4_TILED_MTL_RC_CCS_CC fourcc_mod_code(INTEL, 15) |
Christopher Ferris | 05d08e9 | 2016-02-04 13:16:38 -0800 | [diff] [blame] | 175 | #define DRM_FORMAT_MOD_SAMSUNG_64_32_TILE fourcc_mod_code(SAMSUNG, 1) |
Christopher Ferris | 86a4837 | 2019-01-10 14:14:59 -0800 | [diff] [blame] | 176 | #define DRM_FORMAT_MOD_SAMSUNG_16_16_TILE fourcc_mod_code(SAMSUNG, 2) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 177 | #define DRM_FORMAT_MOD_QCOM_COMPRESSED fourcc_mod_code(QCOM, 1) |
Christopher Ferris | 80ae69d | 2022-08-02 16:32:21 -0700 | [diff] [blame] | 178 | #define DRM_FORMAT_MOD_QCOM_TILED3 fourcc_mod_code(QCOM, 3) |
| 179 | #define DRM_FORMAT_MOD_QCOM_TILED2 fourcc_mod_code(QCOM, 2) |
Christopher Ferris | 525ce91 | 2017-07-26 13:12:53 -0700 | [diff] [blame] | 180 | #define DRM_FORMAT_MOD_VIVANTE_TILED fourcc_mod_code(VIVANTE, 1) |
| 181 | #define DRM_FORMAT_MOD_VIVANTE_SUPER_TILED fourcc_mod_code(VIVANTE, 2) |
| 182 | #define DRM_FORMAT_MOD_VIVANTE_SPLIT_TILED fourcc_mod_code(VIVANTE, 3) |
| 183 | #define DRM_FORMAT_MOD_VIVANTE_SPLIT_SUPER_TILED fourcc_mod_code(VIVANTE, 4) |
Christopher Ferris | 8b7fdc9 | 2023-02-21 13:36:32 -0800 | [diff] [blame] | 184 | #define VIVANTE_MOD_TS_64_4 (1ULL << 48) |
| 185 | #define VIVANTE_MOD_TS_64_2 (2ULL << 48) |
| 186 | #define VIVANTE_MOD_TS_128_4 (3ULL << 48) |
| 187 | #define VIVANTE_MOD_TS_256_4 (4ULL << 48) |
| 188 | #define VIVANTE_MOD_TS_MASK (0xfULL << 48) |
| 189 | #define VIVANTE_MOD_COMP_DEC400 (1ULL << 52) |
| 190 | #define VIVANTE_MOD_COMP_MASK (0xfULL << 52) |
| 191 | #define VIVANTE_MOD_EXT_MASK (VIVANTE_MOD_TS_MASK | VIVANTE_MOD_COMP_MASK) |
Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 192 | #define DRM_FORMAT_MOD_NVIDIA_TEGRA_TILED fourcc_mod_code(NVIDIA, 1) |
Christopher Ferris | 8177cdf | 2020-08-03 11:53:55 -0700 | [diff] [blame] | 193 | #define DRM_FORMAT_MOD_NVIDIA_BLOCK_LINEAR_2D(c,s,g,k,h) fourcc_mod_code(NVIDIA, (0x10 | ((h) & 0xf) | (((k) & 0xff) << 12) | (((g) & 0x3) << 20) | (((s) & 0x1) << 22) | (((c) & 0x7) << 23))) |
| 194 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(v) DRM_FORMAT_MOD_NVIDIA_BLOCK_LINEAR_2D(0, 0, 0, 0, (v)) |
| 195 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK_ONE_GOB DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(0) |
| 196 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK_TWO_GOB DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(1) |
| 197 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK_FOUR_GOB DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(2) |
| 198 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK_EIGHT_GOB DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(3) |
| 199 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK_SIXTEEN_GOB DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(4) |
| 200 | #define DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK_THIRTYTWO_GOB DRM_FORMAT_MOD_NVIDIA_16BX2_BLOCK(5) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 201 | #define __fourcc_mod_broadcom_param_shift 8 |
| 202 | #define __fourcc_mod_broadcom_param_bits 48 |
| 203 | #define fourcc_mod_broadcom_code(val,params) fourcc_mod_code(BROADCOM, ((((__u64) params) << __fourcc_mod_broadcom_param_shift) | val)) |
| 204 | #define fourcc_mod_broadcom_param(m) ((int) (((m) >> __fourcc_mod_broadcom_param_shift) & ((1ULL << __fourcc_mod_broadcom_param_bits) - 1))) |
| 205 | #define fourcc_mod_broadcom_mod(m) ((m) & ~(((1ULL << __fourcc_mod_broadcom_param_bits) - 1) << __fourcc_mod_broadcom_param_shift)) |
Christopher Ferris | 1308ad3 | 2017-11-14 17:32:13 -0800 | [diff] [blame] | 206 | #define DRM_FORMAT_MOD_BROADCOM_VC4_T_TILED fourcc_mod_code(BROADCOM, 1) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 207 | #define DRM_FORMAT_MOD_BROADCOM_SAND32_COL_HEIGHT(v) fourcc_mod_broadcom_code(2, v) |
| 208 | #define DRM_FORMAT_MOD_BROADCOM_SAND64_COL_HEIGHT(v) fourcc_mod_broadcom_code(3, v) |
| 209 | #define DRM_FORMAT_MOD_BROADCOM_SAND128_COL_HEIGHT(v) fourcc_mod_broadcom_code(4, v) |
| 210 | #define DRM_FORMAT_MOD_BROADCOM_SAND256_COL_HEIGHT(v) fourcc_mod_broadcom_code(5, v) |
| 211 | #define DRM_FORMAT_MOD_BROADCOM_SAND32 DRM_FORMAT_MOD_BROADCOM_SAND32_COL_HEIGHT(0) |
| 212 | #define DRM_FORMAT_MOD_BROADCOM_SAND64 DRM_FORMAT_MOD_BROADCOM_SAND64_COL_HEIGHT(0) |
| 213 | #define DRM_FORMAT_MOD_BROADCOM_SAND128 DRM_FORMAT_MOD_BROADCOM_SAND128_COL_HEIGHT(0) |
| 214 | #define DRM_FORMAT_MOD_BROADCOM_SAND256 DRM_FORMAT_MOD_BROADCOM_SAND256_COL_HEIGHT(0) |
| 215 | #define DRM_FORMAT_MOD_BROADCOM_UIF fourcc_mod_code(BROADCOM, 6) |
Christopher Ferris | d32ca14 | 2020-02-04 16:16:51 -0800 | [diff] [blame] | 216 | #define DRM_FORMAT_MOD_ARM_CODE(__type,__val) fourcc_mod_code(ARM, ((__u64) (__type) << 52) | ((__val) & 0x000fffffffffffffULL)) |
| 217 | #define DRM_FORMAT_MOD_ARM_TYPE_AFBC 0x00 |
| 218 | #define DRM_FORMAT_MOD_ARM_TYPE_MISC 0x01 |
| 219 | #define DRM_FORMAT_MOD_ARM_AFBC(__afbc_mode) DRM_FORMAT_MOD_ARM_CODE(DRM_FORMAT_MOD_ARM_TYPE_AFBC, __afbc_mode) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 220 | #define AFBC_FORMAT_MOD_BLOCK_SIZE_MASK 0xf |
| 221 | #define AFBC_FORMAT_MOD_BLOCK_SIZE_16x16 (1ULL) |
| 222 | #define AFBC_FORMAT_MOD_BLOCK_SIZE_32x8 (2ULL) |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 223 | #define AFBC_FORMAT_MOD_BLOCK_SIZE_64x4 (3ULL) |
| 224 | #define AFBC_FORMAT_MOD_BLOCK_SIZE_32x8_64x4 (4ULL) |
Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 225 | #define AFBC_FORMAT_MOD_YTR (1ULL << 4) |
| 226 | #define AFBC_FORMAT_MOD_SPLIT (1ULL << 5) |
| 227 | #define AFBC_FORMAT_MOD_SPARSE (1ULL << 6) |
| 228 | #define AFBC_FORMAT_MOD_CBR (1ULL << 7) |
| 229 | #define AFBC_FORMAT_MOD_TILED (1ULL << 8) |
| 230 | #define AFBC_FORMAT_MOD_SC (1ULL << 9) |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 231 | #define AFBC_FORMAT_MOD_DB (1ULL << 10) |
| 232 | #define AFBC_FORMAT_MOD_BCH (1ULL << 11) |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 233 | #define AFBC_FORMAT_MOD_USM (1ULL << 12) |
Christopher Ferris | 2abfa9e | 2021-11-01 16:26:06 -0700 | [diff] [blame] | 234 | #define DRM_FORMAT_MOD_ARM_TYPE_AFRC 0x02 |
| 235 | #define DRM_FORMAT_MOD_ARM_AFRC(__afrc_mode) DRM_FORMAT_MOD_ARM_CODE(DRM_FORMAT_MOD_ARM_TYPE_AFRC, __afrc_mode) |
| 236 | #define AFRC_FORMAT_MOD_CU_SIZE_MASK 0xf |
| 237 | #define AFRC_FORMAT_MOD_CU_SIZE_16 (1ULL) |
| 238 | #define AFRC_FORMAT_MOD_CU_SIZE_24 (2ULL) |
| 239 | #define AFRC_FORMAT_MOD_CU_SIZE_32 (3ULL) |
| 240 | #define AFRC_FORMAT_MOD_CU_SIZE_P0(__afrc_cu_size) (__afrc_cu_size) |
| 241 | #define AFRC_FORMAT_MOD_CU_SIZE_P12(__afrc_cu_size) ((__afrc_cu_size) << 4) |
| 242 | #define AFRC_FORMAT_MOD_LAYOUT_SCAN (1ULL << 8) |
Christopher Ferris | d32ca14 | 2020-02-04 16:16:51 -0800 | [diff] [blame] | 243 | #define DRM_FORMAT_MOD_ARM_16X16_BLOCK_U_INTERLEAVED DRM_FORMAT_MOD_ARM_CODE(DRM_FORMAT_MOD_ARM_TYPE_MISC, 1ULL) |
Christopher Ferris | 24f97eb | 2019-05-20 12:58:13 -0700 | [diff] [blame] | 244 | #define DRM_FORMAT_MOD_ALLWINNER_TILED fourcc_mod_code(ALLWINNER, 1) |
Christopher Ferris | a9750ed | 2021-05-03 14:02:49 -0700 | [diff] [blame] | 245 | #define __fourcc_mod_amlogic_layout_mask 0xff |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 246 | #define __fourcc_mod_amlogic_options_shift 8 |
Christopher Ferris | a9750ed | 2021-05-03 14:02:49 -0700 | [diff] [blame] | 247 | #define __fourcc_mod_amlogic_options_mask 0xff |
Christopher Ferris | 25c18d4 | 2020-10-14 17:42:58 -0700 | [diff] [blame] | 248 | #define DRM_FORMAT_MOD_AMLOGIC_FBC(__layout,__options) fourcc_mod_code(AMLOGIC, ((__layout) & __fourcc_mod_amlogic_layout_mask) | (((__options) & __fourcc_mod_amlogic_options_mask) << __fourcc_mod_amlogic_options_shift)) |
| 249 | #define AMLOGIC_FBC_LAYOUT_BASIC (1ULL) |
| 250 | #define AMLOGIC_FBC_LAYOUT_SCATTER (2ULL) |
| 251 | #define AMLOGIC_FBC_OPTION_MEM_SAVING (1ULL << 0) |
Christopher Ferris | 05667cd | 2021-02-16 16:01:34 -0800 | [diff] [blame] | 252 | #define AMD_FMT_MOD fourcc_mod_code(AMD, 0) |
| 253 | #define IS_AMD_FMT_MOD(val) (((val) >> 56) == DRM_FORMAT_MOD_VENDOR_AMD) |
| 254 | #define AMD_FMT_MOD_TILE_VER_GFX9 1 |
| 255 | #define AMD_FMT_MOD_TILE_VER_GFX10 2 |
| 256 | #define AMD_FMT_MOD_TILE_VER_GFX10_RBPLUS 3 |
Christopher Ferris | 7447a1c | 2022-10-04 18:24:44 -0700 | [diff] [blame] | 257 | #define AMD_FMT_MOD_TILE_VER_GFX11 4 |
Christopher Ferris | 05667cd | 2021-02-16 16:01:34 -0800 | [diff] [blame] | 258 | #define AMD_FMT_MOD_TILE_GFX9_64K_S 9 |
| 259 | #define AMD_FMT_MOD_TILE_GFX9_64K_D 10 |
| 260 | #define AMD_FMT_MOD_TILE_GFX9_64K_S_X 25 |
| 261 | #define AMD_FMT_MOD_TILE_GFX9_64K_D_X 26 |
| 262 | #define AMD_FMT_MOD_TILE_GFX9_64K_R_X 27 |
Christopher Ferris | 7447a1c | 2022-10-04 18:24:44 -0700 | [diff] [blame] | 263 | #define AMD_FMT_MOD_TILE_GFX11_256K_R_X 31 |
Christopher Ferris | 05667cd | 2021-02-16 16:01:34 -0800 | [diff] [blame] | 264 | #define AMD_FMT_MOD_DCC_BLOCK_64B 0 |
| 265 | #define AMD_FMT_MOD_DCC_BLOCK_128B 1 |
| 266 | #define AMD_FMT_MOD_DCC_BLOCK_256B 2 |
| 267 | #define AMD_FMT_MOD_TILE_VERSION_SHIFT 0 |
| 268 | #define AMD_FMT_MOD_TILE_VERSION_MASK 0xFF |
| 269 | #define AMD_FMT_MOD_TILE_SHIFT 8 |
| 270 | #define AMD_FMT_MOD_TILE_MASK 0x1F |
| 271 | #define AMD_FMT_MOD_DCC_SHIFT 13 |
| 272 | #define AMD_FMT_MOD_DCC_MASK 0x1 |
| 273 | #define AMD_FMT_MOD_DCC_RETILE_SHIFT 14 |
| 274 | #define AMD_FMT_MOD_DCC_RETILE_MASK 0x1 |
| 275 | #define AMD_FMT_MOD_DCC_PIPE_ALIGN_SHIFT 15 |
| 276 | #define AMD_FMT_MOD_DCC_PIPE_ALIGN_MASK 0x1 |
| 277 | #define AMD_FMT_MOD_DCC_INDEPENDENT_64B_SHIFT 16 |
| 278 | #define AMD_FMT_MOD_DCC_INDEPENDENT_64B_MASK 0x1 |
| 279 | #define AMD_FMT_MOD_DCC_INDEPENDENT_128B_SHIFT 17 |
| 280 | #define AMD_FMT_MOD_DCC_INDEPENDENT_128B_MASK 0x1 |
| 281 | #define AMD_FMT_MOD_DCC_MAX_COMPRESSED_BLOCK_SHIFT 18 |
| 282 | #define AMD_FMT_MOD_DCC_MAX_COMPRESSED_BLOCK_MASK 0x3 |
| 283 | #define AMD_FMT_MOD_DCC_CONSTANT_ENCODE_SHIFT 20 |
| 284 | #define AMD_FMT_MOD_DCC_CONSTANT_ENCODE_MASK 0x1 |
| 285 | #define AMD_FMT_MOD_PIPE_XOR_BITS_SHIFT 21 |
| 286 | #define AMD_FMT_MOD_PIPE_XOR_BITS_MASK 0x7 |
| 287 | #define AMD_FMT_MOD_BANK_XOR_BITS_SHIFT 24 |
| 288 | #define AMD_FMT_MOD_BANK_XOR_BITS_MASK 0x7 |
| 289 | #define AMD_FMT_MOD_PACKERS_SHIFT 27 |
| 290 | #define AMD_FMT_MOD_PACKERS_MASK 0x7 |
| 291 | #define AMD_FMT_MOD_RB_SHIFT 30 |
| 292 | #define AMD_FMT_MOD_RB_MASK 0x7 |
| 293 | #define AMD_FMT_MOD_PIPE_SHIFT 33 |
| 294 | #define AMD_FMT_MOD_PIPE_MASK 0x7 |
Christopher Ferris | 80ae69d | 2022-08-02 16:32:21 -0700 | [diff] [blame] | 295 | #define AMD_FMT_MOD_SET(field,value) ((__u64) (value) << AMD_FMT_MOD_ ##field ##_SHIFT) |
Christopher Ferris | 05667cd | 2021-02-16 16:01:34 -0800 | [diff] [blame] | 296 | #define AMD_FMT_MOD_GET(field,value) (((value) >> AMD_FMT_MOD_ ##field ##_SHIFT) & AMD_FMT_MOD_ ##field ##_MASK) |
Christopher Ferris | 80ae69d | 2022-08-02 16:32:21 -0700 | [diff] [blame] | 297 | #define AMD_FMT_MOD_CLEAR(field) (~((__u64) AMD_FMT_MOD_ ##field ##_MASK << AMD_FMT_MOD_ ##field ##_SHIFT)) |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 298 | #ifdef __cplusplus |
Christopher Ferris | 48fe0ae | 2019-01-10 15:59:33 -0800 | [diff] [blame] | 299 | } |
Christopher Ferris | 106b3a8 | 2016-08-24 12:15:38 -0700 | [diff] [blame] | 300 | #endif |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 301 | #endif |