1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2022 Intel Corporation. */
5 #include <linux/delay.h>
7 #include <linux/semaphore.h>
8 #include <linux/slab.h>
13 * Protects against simultaneous tests on multiple cores, or
14 * reloading can file while a test is in progress
16 static DEFINE_SEMAPHORE(ifs_sem);
19 * The sysfs interface to check additional details of last test
20 * cat /sys/devices/system/platform/ifs/details
22 static ssize_t details_show(struct device *dev,
23 struct device_attribute *attr,
26 struct ifs_data *ifsd = ifs_get_data(dev);
28 return sysfs_emit(buf, "%#llx\n", ifsd->scan_details);
31 static DEVICE_ATTR_RO(details);
33 static const char * const status_msg[] = {
34 [SCAN_NOT_TESTED] = "untested",
35 [SCAN_TEST_PASS] = "pass",
36 [SCAN_TEST_FAIL] = "fail"
40 * The sysfs interface to check the test status:
41 * To check the status of last test
42 * cat /sys/devices/platform/ifs/status
44 static ssize_t status_show(struct device *dev,
45 struct device_attribute *attr,
48 struct ifs_data *ifsd = ifs_get_data(dev);
50 return sysfs_emit(buf, "%s\n", status_msg[ifsd->status]);
53 static DEVICE_ATTR_RO(status);
56 * The sysfs interface for single core testing
57 * To start test, for example, cpu5
58 * echo 5 > /sys/devices/platform/ifs/run_test
59 * To check the result:
60 * cat /sys/devices/platform/ifs/result
61 * The sibling core gets tested at the same time.
63 static ssize_t run_test_store(struct device *dev,
64 struct device_attribute *attr,
65 const char *buf, size_t count)
67 struct ifs_data *ifsd = ifs_get_data(dev);
71 rc = kstrtouint(buf, 0, &cpu);
72 if (rc < 0 || cpu >= nr_cpu_ids)
75 if (down_interruptible(&ifs_sem))
81 rc = do_core_test(cpu, dev);
85 return rc ? rc : count;
88 static DEVICE_ATTR_WO(run_test);
90 static ssize_t current_batch_store(struct device *dev,
91 struct device_attribute *attr,
92 const char *buf, size_t count)
94 struct ifs_data *ifsd = ifs_get_data(dev);
95 unsigned int cur_batch;
98 rc = kstrtouint(buf, 0, &cur_batch);
99 if (rc < 0 || cur_batch > 0xff)
102 if (down_interruptible(&ifs_sem))
105 ifsd->cur_batch = cur_batch;
107 rc = ifs_load_firmware(dev);
111 return (rc == 0) ? count : rc;
114 static ssize_t current_batch_show(struct device *dev,
115 struct device_attribute *attr, char *buf)
117 struct ifs_data *ifsd = ifs_get_data(dev);
120 return sysfs_emit(buf, "none\n");
122 return sysfs_emit(buf, "0x%02x\n", ifsd->cur_batch);
125 static DEVICE_ATTR_RW(current_batch);
128 * Display currently loaded IFS image version.
130 static ssize_t image_version_show(struct device *dev,
131 struct device_attribute *attr, char *buf)
133 struct ifs_data *ifsd = ifs_get_data(dev);
136 return sysfs_emit(buf, "%s\n", "none");
138 return sysfs_emit(buf, "%#x\n", ifsd->loaded_version);
141 static DEVICE_ATTR_RO(image_version);
143 /* global scan sysfs attributes */
144 static struct attribute *plat_ifs_attrs[] = {
145 &dev_attr_details.attr,
146 &dev_attr_status.attr,
147 &dev_attr_run_test.attr,
148 &dev_attr_current_batch.attr,
149 &dev_attr_image_version.attr,
153 ATTRIBUTE_GROUPS(plat_ifs);
155 const struct attribute_group **ifs_get_groups(void)
157 return plat_ifs_groups;