@@ -151,6 +151,9 @@ static void __init move_device_tree(void)
151
151
* pa-features property is missing, or a 1/0 to indicate if the feature
152
152
* is supported/not supported. Note that the bit numbers are
153
153
* big-endian to match the definition in PAPR.
154
+ * Note: the 'clear' flag clears the feature if the bit is set in the
155
+ * ibm,pa/pi-features property, it does not set the feature if the
156
+ * bit is clear.
154
157
*/
155
158
struct ibm_feature {
156
159
unsigned long cpu_features ; /* CPU_FTR_xxx bit */
@@ -159,7 +162,7 @@ struct ibm_feature {
159
162
unsigned int cpu_user_ftrs2 ; /* PPC_FEATURE2_xxx bit */
160
163
unsigned char pabyte ; /* byte number in ibm,pa/pi-features */
161
164
unsigned char pabit ; /* bit number (big-endian) */
162
- unsigned char invert ; /* if 1, pa bit set => clear feature */
165
+ unsigned char clear ; /* if 1, pa bit set => clear feature */
163
166
};
164
167
165
168
static struct ibm_feature ibm_pa_features [] __initdata = {
@@ -193,6 +196,7 @@ static struct ibm_feature ibm_pa_features[] __initdata = {
193
196
*/
194
197
static struct ibm_feature ibm_pi_features [] __initdata = {
195
198
{ .pabyte = 0 , .pabit = 3 , .mmu_features = MMU_FTR_NX_DSI },
199
+ { .pabyte = 0 , .pabit = 4 , .cpu_features = CPU_FTR_DBELL , .clear = 1 },
196
200
};
197
201
198
202
static void __init scan_features (unsigned long node , const unsigned char * ftrs ,
@@ -220,12 +224,12 @@ static void __init scan_features(unsigned long node, const unsigned char *ftrs,
220
224
if (fp -> pabyte >= ftrs [0 ])
221
225
continue ;
222
226
bit = (ftrs [2 + fp -> pabyte ] >> (7 - fp -> pabit )) & 1 ;
223
- if (bit ^ fp -> invert ) {
227
+ if (bit && ! fp -> clear ) {
224
228
cur_cpu_spec -> cpu_features |= fp -> cpu_features ;
225
229
cur_cpu_spec -> cpu_user_features |= fp -> cpu_user_ftrs ;
226
230
cur_cpu_spec -> cpu_user_features2 |= fp -> cpu_user_ftrs2 ;
227
231
cur_cpu_spec -> mmu_features |= fp -> mmu_features ;
228
- } else {
232
+ } else if ( bit == fp -> clear ) {
229
233
cur_cpu_spec -> cpu_features &= ~fp -> cpu_features ;
230
234
cur_cpu_spec -> cpu_user_features &= ~fp -> cpu_user_ftrs ;
231
235
cur_cpu_spec -> cpu_user_features2 &= ~fp -> cpu_user_ftrs2 ;
0 commit comments