blob: e3aae4f5b40416495dbc8ddaa2fa21a759cd658d [file] [log] [blame]
Tomeu Vizoso6887ff42019-11-28 10:21:06 +01001/*
2 * Copyright (C) 2019 Collabora, Ltd.
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24#ifndef __PANFROST_QUIRKS_H
25#define __PANFROST_QUIRKS_H
26
27/* Model-specific quirks requiring workarounds/etc. Quirks may be errata
28 * requiring a workaround, or features. We're trying to be quirk-positive
29 * here; quirky is the best! */
30
31/* Whether the GPU lacks the capability for hierarchical tiling, without an
32 * "Advanced Tiling Unit", instead requiring a single bin size for the entire
33 * framebuffer be selected by the driver */
34
35#define MIDGARD_NO_HIER_TILING (1 << 0)
36
37/* Whether this GPU lacks native multiple render target support and accordingly
38 * needs SFBDs instead, with complex lowering with ES3 */
39
40#define MIDGARD_SFBD (1 << 1)
41
Alyssa Rosenzweigc2a8ef92020-03-27 14:39:39 -040042/* Whether fp16 is broken in the compiler. Hopefully this quirk will go away
43 * over time */
44
45#define MIDGARD_BROKEN_FP16 (1 << 2)
46
Alyssa Rosenzweigb096a1d2020-04-06 16:44:04 -040047/* What it says on the tin */
48#define IS_BIFROST (1 << 3)
49
Tomeu Vizosoc4400b02020-05-01 07:36:31 +020050/* What it says on the tin */
51#define HAS_SWIZZLES (1 << 4)
52
Alyssa Rosenzweiga0857e92020-08-21 09:22:34 -040053/* bit 5 unused */
Alyssa Rosenzweig1085f742020-05-21 15:49:30 -040054
Alyssa Rosenzweige53d27d2020-05-13 12:15:28 -040055/* Whether this GPU lacks support for any typed stores in blend shader,
56 * requiring packing instead */
57#define MIDGARD_NO_TYPED_BLEND_STORES (1 << 6)
58
59/* Whether this GPU lacks support for any typed loads, requiring packing */
60#define MIDGARD_NO_TYPED_BLEND_LOADS (1 << 7)
61
62/* Lack support for colour pack/unpack opcodes */
63#define NO_BLEND_PACKS (1 << 8)
64
65/* Has some missing formats for typed loads */
66#define MIDGARD_MISSING_LOADS (1 << 9)
67
Alyssa Rosenzweigacb8dcf2020-07-21 12:34:33 -040068/* Lack support for AFBC */
69#define MIDGARD_NO_AFBC (1 << 10)
70
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -040071/* Quirk collections common to particular uarchs */
72
Alyssa Rosenzweige53d27d2020-05-13 12:15:28 -040073#define MIDGARD_QUIRKS (MIDGARD_BROKEN_FP16 | HAS_SWIZZLES \
74 | MIDGARD_NO_TYPED_BLEND_STORES \
75 | MIDGARD_MISSING_LOADS)
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -040076
Alyssa Rosenzweigacb8dcf2020-07-21 12:34:33 -040077/* TODO: AFBC on Bifrost */
78#define BIFROST_QUIRKS (IS_BIFROST | NO_BLEND_PACKS | MIDGARD_NO_AFBC)
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -040079
Tomeu Vizoso6887ff42019-11-28 10:21:06 +010080static inline unsigned
81panfrost_get_quirks(unsigned gpu_id)
82{
83 switch (gpu_id) {
84 case 0x600:
85 case 0x620:
Alyssa Rosenzweige53d27d2020-05-13 12:15:28 -040086 return MIDGARD_QUIRKS | MIDGARD_SFBD
87 | MIDGARD_NO_TYPED_BLEND_LOADS
Alyssa Rosenzweigacb8dcf2020-07-21 12:34:33 -040088 | NO_BLEND_PACKS | MIDGARD_NO_AFBC;
Tomeu Vizoso6887ff42019-11-28 10:21:06 +010089
90 case 0x720:
Alyssa Rosenzweigacb8dcf2020-07-21 12:34:33 -040091 return MIDGARD_QUIRKS | MIDGARD_SFBD | MIDGARD_NO_HIER_TILING
92 | MIDGARD_NO_AFBC;
Tomeu Vizoso6887ff42019-11-28 10:21:06 +010093
94 case 0x820:
95 case 0x830:
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -040096 return MIDGARD_QUIRKS | MIDGARD_NO_HIER_TILING;
Tomeu Vizoso6887ff42019-11-28 10:21:06 +010097
98 case 0x750:
Alyssa Rosenzweige53d27d2020-05-13 12:15:28 -040099 /* Someone should investigate the broken loads? */
100 return MIDGARD_QUIRKS | MIDGARD_NO_TYPED_BLEND_LOADS
Alyssa Rosenzweiga0857e92020-08-21 09:22:34 -0400101 | NO_BLEND_PACKS;
Alyssa Rosenzweige53d27d2020-05-13 12:15:28 -0400102
Tomeu Vizoso6887ff42019-11-28 10:21:06 +0100103 case 0x860:
104 case 0x880:
Alyssa Rosenzweiga0857e92020-08-21 09:22:34 -0400105 return MIDGARD_QUIRKS;
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -0400106
Tomeu Vizosoc4400b02020-05-01 07:36:31 +0200107 case 0x6000: /* G71 */
Boris Brezillonfefb3e92020-09-23 11:08:02 +0200108 case 0x6221: /* G72 */
Tomeu Vizosoc4400b02020-05-01 07:36:31 +0200109 return BIFROST_QUIRKS | HAS_SWIZZLES;
110
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -0400111 case 0x7093: /* G31 */
112 case 0x7212: /* G52 */
113 return BIFROST_QUIRKS;
Tomeu Vizoso6887ff42019-11-28 10:21:06 +0100114
115 default:
Alyssa Rosenzweig97029c72020-03-24 13:53:18 -0400116 unreachable("Unknown Panfrost GPU ID");
Tomeu Vizoso6887ff42019-11-28 10:21:06 +0100117 }
118}
119
120#endif