1 // SPDX-License-Identifier: GPL-2.0
3 * Export Runtime Configuration Interface Table Version 2 (RCI2)
6 * Copyright (C) 2019 Dell Inc
9 * System firmware advertises the address of the RCI2 Table via
10 * an EFI Configuration Table entry. This code retrieves the RCI2
11 * table from the address and exports it to sysfs as a binary
12 * attribute 'rci2' under /sys/firmware/efi/tables directory.
15 #include <linux/kobject.h>
16 #include <linux/device.h>
17 #include <linux/sysfs.h>
18 #include <linux/efi.h>
19 #include <linux/types.h>
22 #define RCI_SIGNATURE "_RC_"
24 struct rci2_table_global_hdr {
40 static u32 rci2_table_len;
41 unsigned long rci2_table_phys __ro_after_init = EFI_INVALID_TABLE_ADDR;
43 static ssize_t raw_table_read(struct file *file, struct kobject *kobj,
44 struct bin_attribute *attr, char *buf,
45 loff_t pos, size_t count)
47 memcpy(buf, attr->private + pos, count);
51 static BIN_ATTR(rci2, S_IRUSR, raw_table_read, NULL, 0);
53 static u16 checksum(void)
55 u8 len_is_odd = rci2_table_len % 2;
56 u32 chksum_len = rci2_table_len;
57 u16 *base = (u16 *)rci2_base;
65 while (offset < chksum_len) {
73 chksum += *(u16 *)(buf);
79 static int __init efi_rci2_sysfs_init(void)
81 struct kobject *tables_kobj;
84 if (rci2_table_phys == EFI_INVALID_TABLE_ADDR)
87 rci2_base = memremap(rci2_table_phys,
88 sizeof(struct rci2_table_global_hdr),
91 pr_debug("RCI2 table init failed - could not map RCI2 table\n");
95 if (strncmp(rci2_base +
96 offsetof(struct rci2_table_global_hdr, rci2_sig),
98 pr_debug("RCI2 table init failed - incorrect signature\n");
103 rci2_table_len = *(u32 *)(rci2_base +
104 offsetof(struct rci2_table_global_hdr,
109 if (!rci2_table_len) {
110 pr_debug("RCI2 table init failed - incorrect table length\n");
114 rci2_base = memremap(rci2_table_phys, rci2_table_len, MEMREMAP_WB);
116 pr_debug("RCI2 table - could not map RCI2 table\n");
120 if (checksum() != 0) {
121 pr_debug("RCI2 table - incorrect checksum\n");
126 tables_kobj = kobject_create_and_add("tables", efi_kobj);
128 pr_debug("RCI2 table - tables_kobj creation failed\n");
132 bin_attr_rci2.size = rci2_table_len;
133 bin_attr_rci2.private = rci2_base;
134 ret = sysfs_create_bin_file(tables_kobj, &bin_attr_rci2);
136 pr_debug("RCI2 table - rci2 sysfs bin file creation failed\n");
137 kobject_del(tables_kobj);
138 kobject_put(tables_kobj);
147 pr_debug("RCI2 table - sysfs initialization failed\n");
150 late_initcall(efi_rci2_sysfs_init);