aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware
diff options
context:
space:
mode:
authorSteve McIntyre <steve@einval.com>2015-01-09 10:29:53 -0500
committerMatt Fleming <matt.fleming@intel.com>2015-01-12 06:51:32 -0500
commit2859dff97e54db4795b8b7d9606cb8efcec722ff (patch)
tree91836ca6535a94c9fe92972d9c01911f5e0d79ba /drivers/firmware
parent17473c32ce23568d39b076bf56159894bea1c61f (diff)
efi: Expose underlying UEFI firmware platform size to userland
In some cases (e.g. Intel Bay Trail machines), the kernel will happily run in 64-bit even if the underlying UEFI firmware platform is 32-bit. That's great, but it's difficult for userland utilities like grub-install to do the right thing in such a situation. The kernel already knows about the size of the firmware via efi_enabled(EFI_64BIT). Add an extra sysfs interface /sys/firmware/efi/fw_platform_size to expose that information to userland for low-level utilities to use. Signed-off-by: Steve McIntyre <steve@einval.com> Cc: Matthew Garrett <mjg59@srcf.ucam.org> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'drivers/firmware')
-rw-r--r--drivers/firmware/efi/efi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
index ff0bbe383b31..9bdbc0533627 100644
--- a/drivers/firmware/efi/efi.c
+++ b/drivers/firmware/efi/efi.c
@@ -112,15 +112,24 @@ EFI_ATTR_SHOW(fw_vendor);
112EFI_ATTR_SHOW(runtime); 112EFI_ATTR_SHOW(runtime);
113EFI_ATTR_SHOW(config_table); 113EFI_ATTR_SHOW(config_table);
114 114
115static ssize_t fw_platform_size_show(struct kobject *kobj,
116 struct kobj_attribute *attr, char *buf)
117{
118 return sprintf(buf, "%d\n", efi_enabled(EFI_64BIT) ? 64 : 32);
119}
120
115static struct kobj_attribute efi_attr_fw_vendor = __ATTR_RO(fw_vendor); 121static struct kobj_attribute efi_attr_fw_vendor = __ATTR_RO(fw_vendor);
116static struct kobj_attribute efi_attr_runtime = __ATTR_RO(runtime); 122static struct kobj_attribute efi_attr_runtime = __ATTR_RO(runtime);
117static struct kobj_attribute efi_attr_config_table = __ATTR_RO(config_table); 123static struct kobj_attribute efi_attr_config_table = __ATTR_RO(config_table);
124static struct kobj_attribute efi_attr_fw_platform_size =
125 __ATTR_RO(fw_platform_size);
118 126
119static struct attribute *efi_subsys_attrs[] = { 127static struct attribute *efi_subsys_attrs[] = {
120 &efi_attr_systab.attr, 128 &efi_attr_systab.attr,
121 &efi_attr_fw_vendor.attr, 129 &efi_attr_fw_vendor.attr,
122 &efi_attr_runtime.attr, 130 &efi_attr_runtime.attr,
123 &efi_attr_config_table.attr, 131 &efi_attr_config_table.attr,
132 &efi_attr_fw_platform_size.attr,
124 NULL, 133 NULL,
125}; 134};
126 135