15
15
static const struct qcom_ubwc_cfg_data msm8937_data = {
16
16
.ubwc_enc_version = UBWC_1_0 ,
17
17
.ubwc_dec_version = UBWC_1_0 ,
18
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL1 |
19
+ UBWC_SWIZZLE_ENABLE_LVL2 |
20
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
18
21
.highest_bank_bit = 14 ,
19
22
};
20
23
21
24
static const struct qcom_ubwc_cfg_data msm8998_data = {
22
25
.ubwc_enc_version = UBWC_1_0 ,
23
26
.ubwc_dec_version = UBWC_1_0 ,
27
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL1 |
28
+ UBWC_SWIZZLE_ENABLE_LVL2 |
29
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
24
30
.highest_bank_bit = 15 ,
25
31
};
26
32
@@ -70,6 +76,8 @@ static const struct qcom_ubwc_cfg_data sc7280_data = {
70
76
static const struct qcom_ubwc_cfg_data sc8180x_data = {
71
77
.ubwc_enc_version = UBWC_3_0 ,
72
78
.ubwc_dec_version = UBWC_3_0 ,
79
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL2 |
80
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
73
81
.highest_bank_bit = 16 ,
74
82
.macrotile_mode = true,
75
83
};
@@ -87,12 +95,16 @@ static const struct qcom_ubwc_cfg_data sc8280xp_data = {
87
95
static const struct qcom_ubwc_cfg_data sdm670_data = {
88
96
.ubwc_enc_version = UBWC_2_0 ,
89
97
.ubwc_dec_version = UBWC_2_0 ,
98
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL2 |
99
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
90
100
.highest_bank_bit = 14 ,
91
101
};
92
102
93
103
static const struct qcom_ubwc_cfg_data sdm845_data = {
94
104
.ubwc_enc_version = UBWC_2_0 ,
95
105
.ubwc_dec_version = UBWC_2_0 ,
106
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL2 |
107
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
96
108
.highest_bank_bit = 15 ,
97
109
};
98
110
@@ -118,6 +130,8 @@ static const struct qcom_ubwc_cfg_data sm6125_data = {
118
130
static const struct qcom_ubwc_cfg_data sm6150_data = {
119
131
.ubwc_enc_version = UBWC_2_0 ,
120
132
.ubwc_dec_version = UBWC_2_0 ,
133
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL2 |
134
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
121
135
.highest_bank_bit = 14 ,
122
136
};
123
137
@@ -133,12 +147,16 @@ static const struct qcom_ubwc_cfg_data sm6350_data = {
133
147
static const struct qcom_ubwc_cfg_data sm7150_data = {
134
148
.ubwc_enc_version = UBWC_2_0 ,
135
149
.ubwc_dec_version = UBWC_2_0 ,
150
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL2 |
151
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
136
152
.highest_bank_bit = 14 ,
137
153
};
138
154
139
155
static const struct qcom_ubwc_cfg_data sm8150_data = {
140
156
.ubwc_enc_version = UBWC_3_0 ,
141
157
.ubwc_dec_version = UBWC_3_0 ,
158
+ .ubwc_swizzle = UBWC_SWIZZLE_ENABLE_LVL2 |
159
+ UBWC_SWIZZLE_ENABLE_LVL3 ,
142
160
.highest_bank_bit = 15 ,
143
161
};
144
162
0 commit comments