powerpc/powernv: Support firmware disable of RFI flush
authorMichael Ellerman <mpe@ellerman.id.au>
Thu, 22 Feb 2018 13:00:11 +0000 (00:00 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 23 Feb 2018 05:55:42 +0000 (16:55 +1100)
Some versions of firmware will have a setting that can be configured
to disable the RFI flush, add support for it.

Fixes: 6e032b350cd1 ("powerpc/powernv: Check device-tree for RFI flush settings")
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/platforms/powernv/setup.c

index 4fb21e1..092715b 100644 (file)
@@ -80,6 +80,10 @@ static void pnv_setup_rfi_flush(void)
                if (np && of_property_read_bool(np, "disabled"))
                        enable--;
 
+               np = of_get_child_by_name(fw_features, "speculation-policy-favor-security");
+               if (np && of_property_read_bool(np, "disabled"))
+                       enable = 0;
+
                of_node_put(np);
                of_node_put(fw_features);
        }