blob: 7e9e79575d9393a3e9bb2a403c8e75a3d0f9d01d [file] [log] [blame]
Narendra K911e1c92010-07-26 05:56:50 -05001/*
2 * Purpose: Export the firmware instance and label associated with
3 * a pci device to sysfs
4 * Copyright (C) 2010 Dell Inc.
5 * by Narendra K <Narendra_K@dell.com>,
6 * Jordan Hargrave <Jordan_Hargrave@dell.com>
7 *
Narendra_K@Dell.com60589892011-03-02 22:34:17 +05308 * PCI Firmware Specification Revision 3.1 section 4.6.7 (DSM for Naming a
9 * PCI or PCI Express Device Under Operating Systems) defines an instance
10 * number and string name. This code retrieves them and exports them to sysfs.
11 * If the system firmware does not provide the ACPI _DSM (Device Specific
12 * Method), then the SMBIOS type 41 instance number and string is exported to
13 * sysfs.
14 *
Narendra K911e1c92010-07-26 05:56:50 -050015 * SMBIOS defines type 41 for onboard pci devices. This code retrieves
16 * the instance number and string from the type 41 record and exports
17 * it to sysfs.
18 *
Naga Venkata Sai Indubhaskar Jupudi6ca72272016-02-09 14:10:16 -080019 * Please see http://linux.dell.com/files/biosdevname/ for more
Narendra K911e1c92010-07-26 05:56:50 -050020 * information.
21 */
22
23#include <linux/dmi.h>
24#include <linux/sysfs.h>
25#include <linux/pci.h>
26#include <linux/pci_ids.h>
27#include <linux/module.h>
28#include <linux/device.h>
Narendra_K@Dell.com60589892011-03-02 22:34:17 +053029#include <linux/nls.h>
30#include <linux/acpi.h>
31#include <linux/pci-acpi.h>
Narendra K911e1c92010-07-26 05:56:50 -050032#include "pci.h"
33
Bjorn Helgaas4c859802014-01-13 17:01:11 -070034#ifdef CONFIG_DMI
Narendra K911e1c92010-07-26 05:56:50 -050035enum smbios_attr_enum {
36 SMBIOS_ATTR_NONE = 0,
37 SMBIOS_ATTR_LABEL_SHOW,
38 SMBIOS_ATTR_INSTANCE_SHOW,
39};
40
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040041static size_t find_smbios_instance_string(struct pci_dev *pdev, char *buf,
42 enum smbios_attr_enum attribute)
Narendra K911e1c92010-07-26 05:56:50 -050043{
44 const struct dmi_device *dmi;
45 struct dmi_dev_onboard *donboard;
Sujith Pandel6c51c822017-05-02 06:55:40 -040046 int domain_nr;
Narendra K911e1c92010-07-26 05:56:50 -050047 int bus;
48 int devfn;
49
Sujith Pandel6c51c822017-05-02 06:55:40 -040050 domain_nr = pci_domain_nr(pdev->bus);
Narendra K911e1c92010-07-26 05:56:50 -050051 bus = pdev->bus->number;
52 devfn = pdev->devfn;
53
54 dmi = NULL;
55 while ((dmi = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD,
56 NULL, dmi)) != NULL) {
57 donboard = dmi->device_data;
Sujith Pandel6c51c822017-05-02 06:55:40 -040058 if (donboard && donboard->segment == domain_nr &&
59 donboard->bus == bus &&
60 donboard->devfn == devfn) {
Narendra K911e1c92010-07-26 05:56:50 -050061 if (buf) {
62 if (attribute == SMBIOS_ATTR_INSTANCE_SHOW)
63 return scnprintf(buf, PAGE_SIZE,
64 "%d\n",
65 donboard->instance);
66 else if (attribute == SMBIOS_ATTR_LABEL_SHOW)
67 return scnprintf(buf, PAGE_SIZE,
68 "%s\n",
69 dmi->name);
70 }
71 return strlen(dmi->name);
72 }
73 }
74 return 0;
75}
76
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040077static umode_t smbios_instance_string_exist(struct kobject *kobj,
78 struct attribute *attr, int n)
Narendra K911e1c92010-07-26 05:56:50 -050079{
80 struct device *dev;
81 struct pci_dev *pdev;
82
Geliang Tang554a6032015-12-23 20:28:13 +080083 dev = kobj_to_dev(kobj);
Narendra K911e1c92010-07-26 05:56:50 -050084 pdev = to_pci_dev(dev);
85
86 return find_smbios_instance_string(pdev, NULL, SMBIOS_ATTR_NONE) ?
87 S_IRUGO : 0;
88}
89
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040090static ssize_t smbioslabel_show(struct device *dev,
91 struct device_attribute *attr, char *buf)
Narendra K911e1c92010-07-26 05:56:50 -050092{
93 struct pci_dev *pdev;
94 pdev = to_pci_dev(dev);
95
96 return find_smbios_instance_string(pdev, buf,
97 SMBIOS_ATTR_LABEL_SHOW);
98}
99
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400100static ssize_t smbiosinstance_show(struct device *dev,
101 struct device_attribute *attr, char *buf)
Narendra K911e1c92010-07-26 05:56:50 -0500102{
103 struct pci_dev *pdev;
104 pdev = to_pci_dev(dev);
105
106 return find_smbios_instance_string(pdev, buf,
107 SMBIOS_ATTR_INSTANCE_SHOW);
108}
109
110static struct device_attribute smbios_attr_label = {
Stephen Rothwell763e9db2010-08-04 14:25:31 +1000111 .attr = {.name = "label", .mode = 0444},
Narendra K911e1c92010-07-26 05:56:50 -0500112 .show = smbioslabel_show,
113};
114
115static struct device_attribute smbios_attr_instance = {
Stephen Rothwell763e9db2010-08-04 14:25:31 +1000116 .attr = {.name = "index", .mode = 0444},
Narendra K911e1c92010-07-26 05:56:50 -0500117 .show = smbiosinstance_show,
118};
119
120static struct attribute *smbios_attributes[] = {
121 &smbios_attr_label.attr,
122 &smbios_attr_instance.attr,
123 NULL,
124};
125
Arvind Yadavf4841282017-07-11 14:57:08 +0530126static const struct attribute_group smbios_attr_group = {
Narendra K911e1c92010-07-26 05:56:50 -0500127 .attrs = smbios_attributes,
128 .is_visible = smbios_instance_string_exist,
129};
130
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400131static int pci_create_smbiosname_file(struct pci_dev *pdev)
Narendra K911e1c92010-07-26 05:56:50 -0500132{
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530133 return sysfs_create_group(&pdev->dev.kobj, &smbios_attr_group);
Narendra K911e1c92010-07-26 05:56:50 -0500134}
135
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400136static void pci_remove_smbiosname_file(struct pci_dev *pdev)
Narendra K911e1c92010-07-26 05:56:50 -0500137{
138 sysfs_remove_group(&pdev->dev.kobj, &smbios_attr_group);
139}
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700140#else
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400141static inline int pci_create_smbiosname_file(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700142{
143 return -1;
144}
Narendra K911e1c92010-07-26 05:56:50 -0500145
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400146static inline void pci_remove_smbiosname_file(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700147{
148}
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530149#endif
150
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700151#ifdef CONFIG_ACPI
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530152enum acpi_attr_enum {
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530153 ACPI_ATTR_LABEL_SHOW,
154 ACPI_ATTR_INDEX_SHOW,
155};
156
157static void dsm_label_utf16s_to_utf8s(union acpi_object *obj, char *buf)
158{
159 int len;
Simone Gottidcfa9be2014-06-18 16:55:30 +0200160 len = utf16s_to_utf8s((const wchar_t *)obj->buffer.pointer,
161 obj->buffer.length,
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530162 UTF16_LITTLE_ENDIAN,
163 buf, PAGE_SIZE);
164 buf[len] = '\n';
165}
166
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400167static int dsm_get_label(struct device *dev, char *buf,
168 enum acpi_attr_enum attr)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530169{
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800170 acpi_handle handle;
171 union acpi_object *obj, *tmp;
172 int len = -1;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530173
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800174 handle = ACPI_HANDLE(dev);
175 if (!handle)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530176 return -1;
177
Andy Shevchenko94116f82017-06-05 19:40:46 +0300178 obj = acpi_evaluate_dsm(handle, &pci_acpi_dsm_guid, 0x2,
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800179 DEVICE_LABEL_DSM, NULL);
180 if (!obj)
181 return -1;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530182
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800183 tmp = obj->package.elements;
184 if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 2 &&
185 tmp[0].type == ACPI_TYPE_INTEGER &&
Simone Gottidcfa9be2014-06-18 16:55:30 +0200186 (tmp[1].type == ACPI_TYPE_STRING ||
187 tmp[1].type == ACPI_TYPE_BUFFER)) {
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800188 /*
189 * The second string element is optional even when
190 * this _DSM is implemented; when not implemented,
191 * this entry must return a null string.
192 */
Simone Gottidcfa9be2014-06-18 16:55:30 +0200193 if (attr == ACPI_ATTR_INDEX_SHOW) {
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800194 scnprintf(buf, PAGE_SIZE, "%llu\n", tmp->integer.value);
Simone Gottidcfa9be2014-06-18 16:55:30 +0200195 } else if (attr == ACPI_ATTR_LABEL_SHOW) {
196 if (tmp[1].type == ACPI_TYPE_STRING)
197 scnprintf(buf, PAGE_SIZE, "%s\n",
198 tmp[1].string.pointer);
199 else if (tmp[1].type == ACPI_TYPE_BUFFER)
200 dsm_label_utf16s_to_utf8s(tmp + 1, buf);
201 }
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800202 len = strlen(buf) > 0 ? strlen(buf) : -1;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530203 }
Jiang Liu54e5bb42013-12-19 20:38:12 +0800204
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800205 ACPI_FREE(obj);
Jiang Liu54e5bb42013-12-19 20:38:12 +0800206
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800207 return len;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530208}
209
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400210static bool device_has_dsm(struct device *dev)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530211{
212 acpi_handle handle;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530213
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100214 handle = ACPI_HANDLE(dev);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530215 if (!handle)
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800216 return false;
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530217
Andy Shevchenko94116f82017-06-05 19:40:46 +0300218 return !!acpi_check_dsm(handle, &pci_acpi_dsm_guid, 0x2,
Jiang Liu2fc59fe2013-12-19 20:38:14 +0800219 1 << DEVICE_LABEL_DSM);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530220}
221
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400222static umode_t acpi_index_string_exist(struct kobject *kobj,
223 struct attribute *attr, int n)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530224{
225 struct device *dev;
226
Geliang Tang554a6032015-12-23 20:28:13 +0800227 dev = kobj_to_dev(kobj);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530228
229 if (device_has_dsm(dev))
230 return S_IRUGO;
231
232 return 0;
233}
234
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400235static ssize_t acpilabel_show(struct device *dev,
236 struct device_attribute *attr, char *buf)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530237{
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800238 return dsm_get_label(dev, buf, ACPI_ATTR_LABEL_SHOW);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530239}
240
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400241static ssize_t acpiindex_show(struct device *dev,
242 struct device_attribute *attr, char *buf)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530243{
Jiang Liu1d0fcef2013-12-19 20:38:13 +0800244 return dsm_get_label(dev, buf, ACPI_ATTR_INDEX_SHOW);
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530245}
246
247static struct device_attribute acpi_attr_label = {
248 .attr = {.name = "label", .mode = 0444},
249 .show = acpilabel_show,
250};
251
252static struct device_attribute acpi_attr_index = {
253 .attr = {.name = "acpi_index", .mode = 0444},
254 .show = acpiindex_show,
255};
256
257static struct attribute *acpi_attributes[] = {
258 &acpi_attr_label.attr,
259 &acpi_attr_index.attr,
260 NULL,
261};
262
Arvind Yadavf4841282017-07-11 14:57:08 +0530263static const struct attribute_group acpi_attr_group = {
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530264 .attrs = acpi_attributes,
265 .is_visible = acpi_index_string_exist,
266};
267
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400268static int pci_create_acpi_index_label_files(struct pci_dev *pdev)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530269{
270 return sysfs_create_group(&pdev->dev.kobj, &acpi_attr_group);
271}
272
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400273static int pci_remove_acpi_index_label_files(struct pci_dev *pdev)
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530274{
275 sysfs_remove_group(&pdev->dev.kobj, &acpi_attr_group);
276 return 0;
277}
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700278#else
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400279static inline int pci_create_acpi_index_label_files(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700280{
281 return -1;
282}
283
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400284static inline int pci_remove_acpi_index_label_files(struct pci_dev *pdev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700285{
286 return -1;
287}
288
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400289static inline bool device_has_dsm(struct device *dev)
Bjorn Helgaas4c859802014-01-13 17:01:11 -0700290{
291 return false;
292}
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530293#endif
294
Narendra K911e1c92010-07-26 05:56:50 -0500295void pci_create_firmware_label_files(struct pci_dev *pdev)
296{
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530297 if (device_has_dsm(&pdev->dev))
298 pci_create_acpi_index_label_files(pdev);
299 else
300 pci_create_smbiosname_file(pdev);
Narendra K911e1c92010-07-26 05:56:50 -0500301}
302
303void pci_remove_firmware_label_files(struct pci_dev *pdev)
304{
Narendra_K@Dell.com60589892011-03-02 22:34:17 +0530305 if (device_has_dsm(&pdev->dev))
306 pci_remove_acpi_index_label_files(pdev);
307 else
308 pci_remove_smbiosname_file(pdev);
Narendra K911e1c92010-07-26 05:56:50 -0500309}