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>
8 * 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
15 * SMBIOS defines type 41 for onboard pci devices. This code retrieves
16 * the instance number and string from the type 41 record and exports
19 * Please see http://linux.dell.com/wiki/index.php/Oss/libnetdevname for more
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>
29 #include <linux/nls.h>
30 #include <linux/acpi.h>
31 #include <linux/pci-acpi.h>
32 #include <acpi/acpi_bus.h>
35 #define DEVICE_LABEL_DSM 0x07
40 pci_create_smbiosname_file(struct pci_dev *pdev)
46 pci_remove_smbiosname_file(struct pci_dev *pdev)
52 enum smbios_attr_enum {
54 SMBIOS_ATTR_LABEL_SHOW,
55 SMBIOS_ATTR_INSTANCE_SHOW,
59 find_smbios_instance_string(struct pci_dev *pdev, char *buf,
60 enum smbios_attr_enum attribute)
62 const struct dmi_device *dmi;
63 struct dmi_dev_onboard *donboard;
67 bus = pdev->bus->number;
71 while ((dmi = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD,
72 NULL, dmi)) != NULL) {
73 donboard = dmi->device_data;
74 if (donboard && donboard->bus == bus &&
75 donboard->devfn == devfn) {
77 if (attribute == SMBIOS_ATTR_INSTANCE_SHOW)
78 return scnprintf(buf, PAGE_SIZE,
81 else if (attribute == SMBIOS_ATTR_LABEL_SHOW)
82 return scnprintf(buf, PAGE_SIZE,
86 return strlen(dmi->name);
93 smbios_instance_string_exist(struct kobject *kobj, struct attribute *attr,
99 dev = container_of(kobj, struct device, kobj);
100 pdev = to_pci_dev(dev);
102 return find_smbios_instance_string(pdev, NULL, SMBIOS_ATTR_NONE) ?
107 smbioslabel_show(struct device *dev, struct device_attribute *attr, char *buf)
109 struct pci_dev *pdev;
110 pdev = to_pci_dev(dev);
112 return find_smbios_instance_string(pdev, buf,
113 SMBIOS_ATTR_LABEL_SHOW);
117 smbiosinstance_show(struct device *dev,
118 struct device_attribute *attr, char *buf)
120 struct pci_dev *pdev;
121 pdev = to_pci_dev(dev);
123 return find_smbios_instance_string(pdev, buf,
124 SMBIOS_ATTR_INSTANCE_SHOW);
127 static struct device_attribute smbios_attr_label = {
128 .attr = {.name = "label", .mode = 0444},
129 .show = smbioslabel_show,
132 static struct device_attribute smbios_attr_instance = {
133 .attr = {.name = "index", .mode = 0444},
134 .show = smbiosinstance_show,
137 static struct attribute *smbios_attributes[] = {
138 &smbios_attr_label.attr,
139 &smbios_attr_instance.attr,
143 static struct attribute_group smbios_attr_group = {
144 .attrs = smbios_attributes,
145 .is_visible = smbios_instance_string_exist,
149 pci_create_smbiosname_file(struct pci_dev *pdev)
151 return sysfs_create_group(&pdev->dev.kobj, &smbios_attr_group);
155 pci_remove_smbiosname_file(struct pci_dev *pdev)
157 sysfs_remove_group(&pdev->dev.kobj, &smbios_attr_group);
165 pci_create_acpi_index_label_files(struct pci_dev *pdev)
171 pci_remove_acpi_index_label_files(struct pci_dev *pdev)
177 device_has_dsm(struct device *dev)
184 static const char device_label_dsm_uuid[] = {
185 0xD0, 0x37, 0xC9, 0xE5, 0x53, 0x35, 0x7A, 0x4D,
186 0x91, 0x17, 0xEA, 0x4D, 0x19, 0xC3, 0x43, 0x4D
189 enum acpi_attr_enum {
191 ACPI_ATTR_LABEL_SHOW,
192 ACPI_ATTR_INDEX_SHOW,
195 static void dsm_label_utf16s_to_utf8s(union acpi_object *obj, char *buf)
198 len = utf16s_to_utf8s((const wchar_t *)obj->
199 package.elements[1].string.pointer,
200 obj->package.elements[1].string.length,
207 dsm_get_label(acpi_handle handle, int func,
208 struct acpi_buffer *output,
209 char *buf, enum acpi_attr_enum attribute)
211 struct acpi_object_list input;
212 union acpi_object params[4];
213 union acpi_object *obj;
219 input.pointer = params;
220 params[0].type = ACPI_TYPE_BUFFER;
221 params[0].buffer.length = sizeof(device_label_dsm_uuid);
222 params[0].buffer.pointer = (char *)device_label_dsm_uuid;
223 params[1].type = ACPI_TYPE_INTEGER;
224 params[1].integer.value = 0x02;
225 params[2].type = ACPI_TYPE_INTEGER;
226 params[2].integer.value = func;
227 params[3].type = ACPI_TYPE_PACKAGE;
228 params[3].package.count = 0;
229 params[3].package.elements = NULL;
231 err = acpi_evaluate_object(handle, "_DSM", &input, output);
235 obj = (union acpi_object *)output->pointer;
238 case ACPI_TYPE_PACKAGE:
239 if (obj->package.count != 2)
241 len = obj->package.elements[0].integer.value;
243 if (attribute == ACPI_ATTR_INDEX_SHOW)
244 scnprintf(buf, PAGE_SIZE, "%llu\n",
245 obj->package.elements[0].integer.value);
246 else if (attribute == ACPI_ATTR_LABEL_SHOW)
247 dsm_label_utf16s_to_utf8s(obj, buf);
248 kfree(output->pointer);
251 kfree(output->pointer);
255 kfree(output->pointer);
261 device_has_dsm(struct device *dev)
264 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
266 handle = DEVICE_ACPI_HANDLE(dev);
271 if (dsm_get_label(handle, DEVICE_LABEL_DSM, &output, NULL,
279 acpi_index_string_exist(struct kobject *kobj, struct attribute *attr, int n)
283 dev = container_of(kobj, struct device, kobj);
285 if (device_has_dsm(dev))
292 acpilabel_show(struct device *dev, struct device_attribute *attr, char *buf)
294 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
298 handle = DEVICE_ACPI_HANDLE(dev);
303 length = dsm_get_label(handle, DEVICE_LABEL_DSM,
304 &output, buf, ACPI_ATTR_LABEL_SHOW);
313 acpiindex_show(struct device *dev, struct device_attribute *attr, char *buf)
315 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
319 handle = DEVICE_ACPI_HANDLE(dev);
324 length = dsm_get_label(handle, DEVICE_LABEL_DSM,
325 &output, buf, ACPI_ATTR_INDEX_SHOW);
334 static struct device_attribute acpi_attr_label = {
335 .attr = {.name = "label", .mode = 0444},
336 .show = acpilabel_show,
339 static struct device_attribute acpi_attr_index = {
340 .attr = {.name = "acpi_index", .mode = 0444},
341 .show = acpiindex_show,
344 static struct attribute *acpi_attributes[] = {
345 &acpi_attr_label.attr,
346 &acpi_attr_index.attr,
350 static struct attribute_group acpi_attr_group = {
351 .attrs = acpi_attributes,
352 .is_visible = acpi_index_string_exist,
356 pci_create_acpi_index_label_files(struct pci_dev *pdev)
358 return sysfs_create_group(&pdev->dev.kobj, &acpi_attr_group);
362 pci_remove_acpi_index_label_files(struct pci_dev *pdev)
364 sysfs_remove_group(&pdev->dev.kobj, &acpi_attr_group);
369 void pci_create_firmware_label_files(struct pci_dev *pdev)
371 if (device_has_dsm(&pdev->dev))
372 pci_create_acpi_index_label_files(pdev);
374 pci_create_smbiosname_file(pdev);
377 void pci_remove_firmware_label_files(struct pci_dev *pdev)
379 if (device_has_dsm(&pdev->dev))
380 pci_remove_acpi_index_label_files(pdev);
382 pci_remove_smbiosname_file(pdev);