1 // SPDX-License-Identifier: GPL-2.0
3 * Slim Bootloader(SBL) firmware update signaling driver
5 * Slim Bootloader is a small, open-source, non UEFI compliant, boot firmware
6 * optimized for running on certain Intel platforms.
8 * SBL exposes an ACPI-WMI device via /sys/bus/wmi/devices/<INTEL_WMI_SBL_GUID>.
9 * This driver further adds "firmware_update_request" device attribute.
10 * This attribute normally has a value of 0 and userspace can signal SBL
11 * to update firmware, on next reboot, by writing a value of 1.
13 * More details of SBL firmware update process is available at:
14 * https://slimbootloader.github.io/security/firmware-update.html
17 #include <linux/acpi.h>
18 #include <linux/device.h>
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <linux/sysfs.h>
22 #include <linux/wmi.h>
24 #define INTEL_WMI_SBL_GUID "44FADEB1-B204-40F2-8581-394BBDC1B651"
26 static int get_fwu_request(struct device
*dev
, u32
*out
)
28 struct acpi_buffer result
= {ACPI_ALLOCATE_BUFFER
, NULL
};
29 union acpi_object
*obj
;
32 status
= wmi_query_block(INTEL_WMI_SBL_GUID
, 0, &result
);
33 if (ACPI_FAILURE(status
)) {
34 dev_err(dev
, "wmi_query_block failed\n");
38 obj
= (union acpi_object
*)result
.pointer
;
39 if (!obj
|| obj
->type
!= ACPI_TYPE_INTEGER
) {
40 dev_warn(dev
, "wmi_query_block returned invalid value\n");
45 *out
= obj
->integer
.value
;
51 static int set_fwu_request(struct device
*dev
, u32 in
)
53 struct acpi_buffer input
;
58 input
.length
= sizeof(u32
);
59 input
.pointer
= &value
;
61 status
= wmi_set_block(INTEL_WMI_SBL_GUID
, 0, &input
);
62 if (ACPI_FAILURE(status
)) {
63 dev_err(dev
, "wmi_set_block failed\n");
70 static ssize_t
firmware_update_request_show(struct device
*dev
,
71 struct device_attribute
*attr
,
77 ret
= get_fwu_request(dev
, &val
);
81 return sprintf(buf
, "%d\n", val
);
84 static ssize_t
firmware_update_request_store(struct device
*dev
,
85 struct device_attribute
*attr
,
86 const char *buf
, size_t count
)
91 ret
= kstrtouint(buf
, 0, &val
);
95 /* May later be extended to support values other than 0 and 1 */
99 ret
= set_fwu_request(dev
, val
);
105 static DEVICE_ATTR_RW(firmware_update_request
);
107 static struct attribute
*firmware_update_attrs
[] = {
108 &dev_attr_firmware_update_request
.attr
,
111 ATTRIBUTE_GROUPS(firmware_update
);
113 static int intel_wmi_sbl_fw_update_probe(struct wmi_device
*wdev
,
116 dev_info(&wdev
->dev
, "Slim Bootloader signaling driver attached\n");
120 static int intel_wmi_sbl_fw_update_remove(struct wmi_device
*wdev
)
122 dev_info(&wdev
->dev
, "Slim Bootloader signaling driver removed\n");
126 static const struct wmi_device_id intel_wmi_sbl_id_table
[] = {
127 { .guid_string
= INTEL_WMI_SBL_GUID
},
130 MODULE_DEVICE_TABLE(wmi
, intel_wmi_sbl_id_table
);
132 static struct wmi_driver intel_wmi_sbl_fw_update_driver
= {
134 .name
= "intel-wmi-sbl-fw-update",
135 .dev_groups
= firmware_update_groups
,
137 .probe
= intel_wmi_sbl_fw_update_probe
,
138 .remove
= intel_wmi_sbl_fw_update_remove
,
139 .id_table
= intel_wmi_sbl_id_table
,
141 module_wmi_driver(intel_wmi_sbl_fw_update_driver
);
143 MODULE_AUTHOR("Jithu Joseph <jithu.joseph@intel.com>");
144 MODULE_DESCRIPTION("Slim Bootloader firmware update signaling driver");
145 MODULE_LICENSE("GPL v2");