blob: 781e45cf60d1c3093950604bc367882f4c3d93e8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Narendra K911e1c92010-07-26 05:56:50 -05002/*
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06003 * Export the firmware instance and label associated with a PCI device to
4 * sysfs
5 *
Narendra K911e1c92010-07-26 05:56:50 -05006 * Copyright (C) 2010 Dell Inc.
7 * by Narendra K <Narendra_K@dell.com>,
8 * Jordan Hargrave <Jordan_Hargrave@dell.com>
9 *
Narendra_K@Dell.com60589892011-03-02 22:34:17 +053010 * PCI Firmware Specification Revision 3.1 section 4.6.7 (DSM for Naming a
11 * PCI or PCI Express Device Under Operating Systems) defines an instance
12 * number and string name. This code retrieves them and exports them to sysfs.
13 * If the system firmware does not provide the ACPI _DSM (Device Specific
14 * Method), then the SMBIOS type 41 instance number and string is exported to
15 * sysfs.
16 *
Narendra K911e1c92010-07-26 05:56:50 -050017 * SMBIOS defines type 41 for onboard pci devices. This code retrieves
18 * the instance number and string from the type 41 record and exports
19 * it to sysfs.
20 *
Alexander A. Klimov7ecd4a82020-06-27 12:30:50 +020021 * Please see https://linux.dell.com/files/biosdevname/ for more
Narendra K911e1c92010-07-26 05:56:50 -050022 * information.
23 */
24
25#include <linux/dmi.h>
26#include <linux/sysfs.h>
27#include <linux/pci.h>
28#include <linux/pci_ids.h>
29#include <linux/module.h>
30#include <linux/device.h>
Narendra_K@Dell.com60589892011-03-02 22:34:17 +053031#include <linux/nls.h>
32#include <linux/acpi.h>
33#include <linux/pci-acpi.h>
Narendra K911e1c92010-07-26 05:56:50 -050034#include "pci.h"
35
Bjorn Helgaas4c859802014-01-13 17:01:11 -070036#ifdef CONFIG_DMI
Narendra K911e1c92010-07-26 05:56:50 -050037enum smbios_attr_enum {
38 SMBIOS_ATTR_NONE = 0,
39 SMBIOS_ATTR_LABEL_SHOW,
40 SMBIOS_ATTR_INSTANCE_SHOW,
41};
42
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040043static size_t find_smbios_instance_string(struct pci_dev *pdev, char *buf,
44 enum smbios_attr_enum attribute)
Narendra K911e1c92010-07-26 05:56:50 -050045{
46 const struct dmi_device *dmi;
47 struct dmi_dev_onboard *donboard;
Sujith Pandel6c51c822017-05-02 06:55:40 -040048 int domain_nr;
Narendra K911e1c92010-07-26 05:56:50 -050049 int bus;
50 int devfn;
51
Sujith Pandel6c51c822017-05-02 06:55:40 -040052 domain_nr = pci_domain_nr(pdev->bus);
Narendra K911e1c92010-07-26 05:56:50 -050053 bus = pdev->bus->number;
54 devfn = pdev->devfn;
55
56 dmi = NULL;
57 while ((dmi = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD,
58 NULL, dmi)) != NULL) {
59 donboard = dmi->device_data;
Sujith Pandel6c51c822017-05-02 06:55:40 -040060 if (donboard && donboard->segment == domain_nr &&
61 donboard->bus == bus &&
62 donboard->devfn == devfn) {
Narendra K911e1c92010-07-26 05:56:50 -050063 if (buf) {
64 if (attribute == SMBIOS_ATTR_INSTANCE_SHOW)
65 return scnprintf(buf, PAGE_SIZE,
66 "%d\n",
67 donboard->instance);
68 else if (attribute == SMBIOS_ATTR_LABEL_SHOW)
69 return scnprintf(buf, PAGE_SIZE,
70 "%s\n",
71 dmi->name);
72 }
73 return strlen(dmi->name);
74 }
75 }
76 return 0;
77}
78
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040079static umode_t smbios_instance_string_exist(struct kobject *kobj,
80 struct attribute *attr, int n)
Narendra K911e1c92010-07-26 05:56:50 -050081{
82 struct device *dev;
83 struct pci_dev *pdev;
84
Geliang Tang554a6032015-12-23 20:28:13 +080085 dev = kobj_to_dev(kobj);
Narendra K911e1c92010-07-26 05:56:50 -050086 pdev = to_pci_dev(dev);
87
88 return find_smbios_instance_string(pdev, NULL, SMBIOS_ATTR_NONE) ?
89 S_IRUGO : 0;
90}
91
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040092static ssize_t smbioslabel_show(struct device *dev,
93 struct device_attribute *attr, char *buf)
Narendra K911e1c92010-07-26 05:56:50 -050094{
95 struct pci_dev *pdev;
96 pdev = to_pci_dev(dev);
97
98 return find_smbios_instance_string(pdev, buf,
99 SMBIOS_ATTR_LABEL_SHOW);
100}
101
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400102static ssize_t smbiosinstance_show(struct device *dev,
103 struct device_attribute *attr, char *buf)
Narendra K911e1c92010-07-26 05:56:50 -0500104{
105 struct pci_dev *pdev;
106 pdev = to_pci_dev(dev);
107
108 return find_smbios_instance_string(pdev, buf,
109 SMBIOS_ATTR_INSTANCE_SHOW);
110}
111
112static struct device_attribute smbios_attr_label = {
Stephen Rothwell763e9db2010-08-04 14:25:31 +1000113 .attr = {.name = "label", .mode = 0444},
Narendra K911e1c92010-07-26 05:56:50 -0500114 .show = smbioslabel_show,
115};
116
117static struct device_attribute smbios_attr_instance = {
Stephen Rothwell763e9db2010-08-04 14:25:31 +1000118 .attr = {.name = "index", .mode = 0444},
Narendra K911e1c92010-07-26 05:56:50 -0500119 .show = smbiosinstance_show,
120};
121
122static struct attribute *smbios_attributes[] = {
123 &smbios_attr_label.attr,
124 &smbios_attr_instance.attr,
125 NULL,
126};
127
Arvind Yadavf4841282017-07-11 14:57:08 +0530128static const struct attribute_group smbios_attr_group = {
Narendra K911e1c92010-07-26 05:56:50 -0500129 .attrs = smbios_attributes,
130 .is_visible = smbios_instance_string_exist,
131};
132
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400133static int pci_create_smbiosname_file(struct pci_dev *pdev)
Narendra K911e1c92010-07-26 05:56:50 -0500134{
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530135 return sysfs_create_group(&pdev->dev.kobj, &smbios_attr_group);
Narendra K911e1c92010-07-26 05:56:50 -0500136}
137
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400138static void pci_remove_smbiosname_file(struct pci_dev *pdev)
Narendra K911e1c92010-07-26 05:56:50 -0500139{
140 sysfs_remove_group(&pdev->dev.kobj, &smbios_attr_group);
141}
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700142#else
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400143static inline int pci_create_smbiosname_file(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700144{
145 return -1;
146}
Narendra K911e1c92010-07-26 05:56:50 -0500147
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400148static inline void pci_remove_smbiosname_file(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700149{
150}
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530151#endif
152
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700153#ifdef CONFIG_ACPI
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530154enum acpi_attr_enum {
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530155 ACPI_ATTR_LABEL_SHOW,
156 ACPI_ATTR_INDEX_SHOW,
157};
158
159static void dsm_label_utf16s_to_utf8s(union acpi_object *obj, char *buf)
160{
161 int len;
Simone Gottidcfa9be2014-06-18 16:55:30 +0200162 len = utf16s_to_utf8s((const wchar_t *)obj->buffer.pointer,
163 obj->buffer.length,
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530164 UTF16_LITTLE_ENDIAN,
165 buf, PAGE_SIZE);
166 buf[len] = '\n';
167}
168
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400169static int dsm_get_label(struct device *dev, char *buf,
170 enum acpi_attr_enum attr)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530171{
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800172 acpi_handle handle;
173 union acpi_object *obj, *tmp;
174 int len = -1;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530175
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800176 handle = ACPI_HANDLE(dev);
177 if (!handle)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530178 return -1;
179
Andy Shevchenko94116f82017-06-05 19:40:46 +0300180 obj = acpi_evaluate_dsm(handle, &pci_acpi_dsm_guid, 0x2,
Krzysztof WilczyƄski3910eba2020-05-26 21:39:05 +0000181 DSM_PCI_DEVICE_NAME, NULL);
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800182 if (!obj)
183 return -1;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530184
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800185 tmp = obj->package.elements;
186 if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 2 &&
187 tmp[0].type == ACPI_TYPE_INTEGER &&
Simone Gottidcfa9be2014-06-18 16:55:30 +0200188 (tmp[1].type == ACPI_TYPE_STRING ||
189 tmp[1].type == ACPI_TYPE_BUFFER)) {
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800190 /*
191 * The second string element is optional even when
192 * this _DSM is implemented; when not implemented,
193 * this entry must return a null string.
194 */
Simone Gottidcfa9be2014-06-18 16:55:30 +0200195 if (attr == ACPI_ATTR_INDEX_SHOW) {
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800196 scnprintf(buf, PAGE_SIZE, "%llu\n", tmp->integer.value);
Simone Gottidcfa9be2014-06-18 16:55:30 +0200197 } else if (attr == ACPI_ATTR_LABEL_SHOW) {
198 if (tmp[1].type == ACPI_TYPE_STRING)
199 scnprintf(buf, PAGE_SIZE, "%s\n",
200 tmp[1].string.pointer);
201 else if (tmp[1].type == ACPI_TYPE_BUFFER)
202 dsm_label_utf16s_to_utf8s(tmp + 1, buf);
203 }
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800204 len = strlen(buf) > 0 ? strlen(buf) : -1;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530205 }
Jiang Liu54e5bb42013-12-19 20:38:12 +0800206
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800207 ACPI_FREE(obj);
Jiang Liu54e5bb42013-12-19 20:38:12 +0800208
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800209 return len;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530210}
211
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400212static bool device_has_dsm(struct device *dev)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530213{
214 acpi_handle handle;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530215
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100216 handle = ACPI_HANDLE(dev);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530217 if (!handle)
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800218 return false;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530219
Andy Shevchenko94116f82017-06-05 19:40:46 +0300220 return !!acpi_check_dsm(handle, &pci_acpi_dsm_guid, 0x2,
Krzysztof WilczyƄski3910eba2020-05-26 21:39:05 +0000221 1 << DSM_PCI_DEVICE_NAME);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530222}
223
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400224static umode_t acpi_index_string_exist(struct kobject *kobj,
225 struct attribute *attr, int n)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530226{
227 struct device *dev;
228
Geliang Tang554a6032015-12-23 20:28:13 +0800229 dev = kobj_to_dev(kobj);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530230
231 if (device_has_dsm(dev))
232 return S_IRUGO;
233
234 return 0;
235}
236
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400237static ssize_t acpilabel_show(struct device *dev,
238 struct device_attribute *attr, char *buf)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530239{
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800240 return dsm_get_label(dev, buf, ACPI_ATTR_LABEL_SHOW);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530241}
242
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400243static ssize_t acpiindex_show(struct device *dev,
244 struct device_attribute *attr, char *buf)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530245{
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800246 return dsm_get_label(dev, buf, ACPI_ATTR_INDEX_SHOW);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530247}
248
249static struct device_attribute acpi_attr_label = {
250 .attr = {.name = "label", .mode = 0444},
251 .show = acpilabel_show,
252};
253
254static struct device_attribute acpi_attr_index = {
255 .attr = {.name = "acpi_index", .mode = 0444},
256 .show = acpiindex_show,
257};
258
259static struct attribute *acpi_attributes[] = {
260 &acpi_attr_label.attr,
261 &acpi_attr_index.attr,
262 NULL,
263};
264
Arvind Yadavf4841282017-07-11 14:57:08 +0530265static const struct attribute_group acpi_attr_group = {
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530266 .attrs = acpi_attributes,
267 .is_visible = acpi_index_string_exist,
268};
269
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400270static int pci_create_acpi_index_label_files(struct pci_dev *pdev)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530271{
272 return sysfs_create_group(&pdev->dev.kobj, &acpi_attr_group);
273}
274
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400275static int pci_remove_acpi_index_label_files(struct pci_dev *pdev)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530276{
277 sysfs_remove_group(&pdev->dev.kobj, &acpi_attr_group);
278 return 0;
279}
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700280#else
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400281static inline int pci_create_acpi_index_label_files(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700282{
283 return -1;
284}
285
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400286static inline int pci_remove_acpi_index_label_files(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700287{
288 return -1;
289}
290
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400291static inline bool device_has_dsm(struct device *dev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700292{
293 return false;
294}
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530295#endif
296
Narendra K911e1c92010-07-26 05:56:50 -0500297void pci_create_firmware_label_files(struct pci_dev *pdev)
298{
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530299 if (device_has_dsm(&pdev->dev))
300 pci_create_acpi_index_label_files(pdev);
301 else
302 pci_create_smbiosname_file(pdev);
Narendra K911e1c92010-07-26 05:56:50 -0500303}
304
305void pci_remove_firmware_label_files(struct pci_dev *pdev)
306{
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530307 if (device_has_dsm(&pdev->dev))
308 pci_remove_acpi_index_label_files(pdev);
309 else
310 pci_remove_smbiosname_file(pdev);
Narendra K911e1c92010-07-26 05:56:50 -0500311}