arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / powerpc / kernel / secure_boot.c
blob4b982324d3681930de92674ce55f9835b65ae879
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 2019 IBM Corporation
4 * Author: Nayna Jain
5 */
6 #include <linux/types.h>
7 #include <linux/of.h>
8 #include <asm/secure_boot.h>
10 static struct device_node *get_ppc_fw_sb_node(void)
12 static const struct of_device_id ids[] = {
13 { .compatible = "ibm,secureboot", },
14 { .compatible = "ibm,secureboot-v1", },
15 { .compatible = "ibm,secureboot-v2", },
16 {},
19 return of_find_matching_node(NULL, ids);
22 bool is_ppc_secureboot_enabled(void)
24 struct device_node *node;
25 bool enabled = false;
27 node = get_ppc_fw_sb_node();
28 enabled = of_property_read_bool(node, "os-secureboot-enforcing");
30 of_node_put(node);
32 pr_info("Secure boot mode %s\n", enabled ? "enabled" : "disabled");
34 return enabled;
37 bool is_ppc_trustedboot_enabled(void)
39 struct device_node *node;
40 bool enabled = false;
42 node = get_ppc_fw_sb_node();
43 enabled = of_property_read_bool(node, "trusted-enabled");
45 of_node_put(node);
47 pr_info("Trusted boot mode %s\n", enabled ? "enabled" : "disabled");
49 return enabled;