]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
911e1c9b N |
2 | /* |
3 | * Purpose: Export the firmware instance and label associated with | |
4 | * a pci device to sysfs | |
5 | * Copyright (C) 2010 Dell Inc. | |
6 | * by Narendra K <[email protected]>, | |
7 | * Jordan Hargrave <[email protected]> | |
8 | * | |
6058989b ND |
9 | * PCI Firmware Specification Revision 3.1 section 4.6.7 (DSM for Naming a |
10 | * PCI or PCI Express Device Under Operating Systems) defines an instance | |
11 | * number and string name. This code retrieves them and exports them to sysfs. | |
12 | * If the system firmware does not provide the ACPI _DSM (Device Specific | |
13 | * Method), then the SMBIOS type 41 instance number and string is exported to | |
14 | * sysfs. | |
15 | * | |
911e1c9b N |
16 | * SMBIOS defines type 41 for onboard pci devices. This code retrieves |
17 | * the instance number and string from the type 41 record and exports | |
18 | * it to sysfs. | |
19 | * | |
6ca7227b | 20 | * Please see http://linux.dell.com/files/biosdevname/ for more |
911e1c9b N |
21 | * information. |
22 | */ | |
23 | ||
24 | #include <linux/dmi.h> | |
25 | #include <linux/sysfs.h> | |
26 | #include <linux/pci.h> | |
27 | #include <linux/pci_ids.h> | |
28 | #include <linux/module.h> | |
29 | #include <linux/device.h> | |
6058989b ND |
30 | #include <linux/nls.h> |
31 | #include <linux/acpi.h> | |
32 | #include <linux/pci-acpi.h> | |
911e1c9b N |
33 | #include "pci.h" |
34 | ||
4c859804 | 35 | #ifdef CONFIG_DMI |
911e1c9b N |
36 | enum smbios_attr_enum { |
37 | SMBIOS_ATTR_NONE = 0, | |
38 | SMBIOS_ATTR_LABEL_SHOW, | |
39 | SMBIOS_ATTR_INSTANCE_SHOW, | |
40 | }; | |
41 | ||
3c78bc61 RD |
42 | static size_t find_smbios_instance_string(struct pci_dev *pdev, char *buf, |
43 | enum smbios_attr_enum attribute) | |
911e1c9b N |
44 | { |
45 | const struct dmi_device *dmi; | |
46 | struct dmi_dev_onboard *donboard; | |
6c51c82c | 47 | int domain_nr; |
911e1c9b N |
48 | int bus; |
49 | int devfn; | |
50 | ||
6c51c82c | 51 | domain_nr = pci_domain_nr(pdev->bus); |
911e1c9b N |
52 | bus = pdev->bus->number; |
53 | devfn = pdev->devfn; | |
54 | ||
55 | dmi = NULL; | |
56 | while ((dmi = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD, | |
57 | NULL, dmi)) != NULL) { | |
58 | donboard = dmi->device_data; | |
6c51c82c SP |
59 | if (donboard && donboard->segment == domain_nr && |
60 | donboard->bus == bus && | |
61 | donboard->devfn == devfn) { | |
911e1c9b N |
62 | if (buf) { |
63 | if (attribute == SMBIOS_ATTR_INSTANCE_SHOW) | |
64 | return scnprintf(buf, PAGE_SIZE, | |
65 | "%d\n", | |
66 | donboard->instance); | |
67 | else if (attribute == SMBIOS_ATTR_LABEL_SHOW) | |
68 | return scnprintf(buf, PAGE_SIZE, | |
69 | "%s\n", | |
70 | dmi->name); | |
71 | } | |
72 | return strlen(dmi->name); | |
73 | } | |
74 | } | |
75 | return 0; | |
76 | } | |
77 | ||
3c78bc61 RD |
78 | static umode_t smbios_instance_string_exist(struct kobject *kobj, |
79 | struct attribute *attr, int n) | |
911e1c9b N |
80 | { |
81 | struct device *dev; | |
82 | struct pci_dev *pdev; | |
83 | ||
554a6037 | 84 | dev = kobj_to_dev(kobj); |
911e1c9b N |
85 | pdev = to_pci_dev(dev); |
86 | ||
87 | return find_smbios_instance_string(pdev, NULL, SMBIOS_ATTR_NONE) ? | |
88 | S_IRUGO : 0; | |
89 | } | |
90 | ||
3c78bc61 RD |
91 | static ssize_t smbioslabel_show(struct device *dev, |
92 | struct device_attribute *attr, char *buf) | |
911e1c9b N |
93 | { |
94 | struct pci_dev *pdev; | |
95 | pdev = to_pci_dev(dev); | |
96 | ||
97 | return find_smbios_instance_string(pdev, buf, | |
98 | SMBIOS_ATTR_LABEL_SHOW); | |
99 | } | |
100 | ||
3c78bc61 RD |
101 | static ssize_t smbiosinstance_show(struct device *dev, |
102 | struct device_attribute *attr, char *buf) | |
911e1c9b N |
103 | { |
104 | struct pci_dev *pdev; | |
105 | pdev = to_pci_dev(dev); | |
106 | ||
107 | return find_smbios_instance_string(pdev, buf, | |
108 | SMBIOS_ATTR_INSTANCE_SHOW); | |
109 | } | |
110 | ||
111 | static struct device_attribute smbios_attr_label = { | |
763e9db9 | 112 | .attr = {.name = "label", .mode = 0444}, |
911e1c9b N |
113 | .show = smbioslabel_show, |
114 | }; | |
115 | ||
116 | static struct device_attribute smbios_attr_instance = { | |
763e9db9 | 117 | .attr = {.name = "index", .mode = 0444}, |
911e1c9b N |
118 | .show = smbiosinstance_show, |
119 | }; | |
120 | ||
121 | static struct attribute *smbios_attributes[] = { | |
122 | &smbios_attr_label.attr, | |
123 | &smbios_attr_instance.attr, | |
124 | NULL, | |
125 | }; | |
126 | ||
f4841285 | 127 | static const struct attribute_group smbios_attr_group = { |
911e1c9b N |
128 | .attrs = smbios_attributes, |
129 | .is_visible = smbios_instance_string_exist, | |
130 | }; | |
131 | ||
3c78bc61 | 132 | static int pci_create_smbiosname_file(struct pci_dev *pdev) |
911e1c9b | 133 | { |
6058989b | 134 | return sysfs_create_group(&pdev->dev.kobj, &smbios_attr_group); |
911e1c9b N |
135 | } |
136 | ||
3c78bc61 | 137 | static void pci_remove_smbiosname_file(struct pci_dev *pdev) |
911e1c9b N |
138 | { |
139 | sysfs_remove_group(&pdev->dev.kobj, &smbios_attr_group); | |
140 | } | |
4c859804 | 141 | #else |
3c78bc61 | 142 | static inline int pci_create_smbiosname_file(struct pci_dev *pdev) |
6058989b ND |
143 | { |
144 | return -1; | |
145 | } | |
146 | ||
3c78bc61 | 147 | static inline void pci_remove_smbiosname_file(struct pci_dev *pdev) |
07eefe1c | 148 | { |
07eefe1c | 149 | } |
4c859804 | 150 | #endif |
07eefe1c | 151 | |
4c859804 | 152 | #ifdef CONFIG_ACPI |
6058989b | 153 | enum acpi_attr_enum { |
6058989b ND |
154 | ACPI_ATTR_LABEL_SHOW, |
155 | ACPI_ATTR_INDEX_SHOW, | |
156 | }; | |
157 | ||
158 | static void dsm_label_utf16s_to_utf8s(union acpi_object *obj, char *buf) | |
159 | { | |
160 | int len; | |
dcfa9be8 SG |
161 | len = utf16s_to_utf8s((const wchar_t *)obj->buffer.pointer, |
162 | obj->buffer.length, | |
6058989b ND |
163 | UTF16_LITTLE_ENDIAN, |
164 | buf, PAGE_SIZE); | |
165 | buf[len] = '\n'; | |
166 | } | |
167 | ||
3c78bc61 RD |
168 | static int dsm_get_label(struct device *dev, char *buf, |
169 | enum acpi_attr_enum attr) | |
6058989b | 170 | { |
1d0fcef7 JL |
171 | acpi_handle handle; |
172 | union acpi_object *obj, *tmp; | |
173 | int len = -1; | |
174 | ||
175 | handle = ACPI_HANDLE(dev); | |
176 | if (!handle) | |
6058989b ND |
177 | return -1; |
178 | ||
94116f81 | 179 | obj = acpi_evaluate_dsm(handle, &pci_acpi_dsm_guid, 0x2, |
1d0fcef7 JL |
180 | DEVICE_LABEL_DSM, NULL); |
181 | if (!obj) | |
182 | return -1; | |
183 | ||
184 | tmp = obj->package.elements; | |
185 | if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 2 && | |
186 | tmp[0].type == ACPI_TYPE_INTEGER && | |
dcfa9be8 SG |
187 | (tmp[1].type == ACPI_TYPE_STRING || |
188 | tmp[1].type == ACPI_TYPE_BUFFER)) { | |
2fc59fe2 JL |
189 | /* |
190 | * The second string element is optional even when | |
191 | * this _DSM is implemented; when not implemented, | |
192 | * this entry must return a null string. | |
193 | */ | |
dcfa9be8 | 194 | if (attr == ACPI_ATTR_INDEX_SHOW) { |
2fc59fe2 | 195 | scnprintf(buf, PAGE_SIZE, "%llu\n", tmp->integer.value); |
dcfa9be8 SG |
196 | } else if (attr == ACPI_ATTR_LABEL_SHOW) { |
197 | if (tmp[1].type == ACPI_TYPE_STRING) | |
198 | scnprintf(buf, PAGE_SIZE, "%s\n", | |
199 | tmp[1].string.pointer); | |
200 | else if (tmp[1].type == ACPI_TYPE_BUFFER) | |
201 | dsm_label_utf16s_to_utf8s(tmp + 1, buf); | |
202 | } | |
2fc59fe2 | 203 | len = strlen(buf) > 0 ? strlen(buf) : -1; |
6058989b | 204 | } |
54e5bb46 | 205 | |
1d0fcef7 | 206 | ACPI_FREE(obj); |
54e5bb46 | 207 | |
1d0fcef7 | 208 | return len; |
6058989b ND |
209 | } |
210 | ||
3c78bc61 | 211 | static bool device_has_dsm(struct device *dev) |
6058989b ND |
212 | { |
213 | acpi_handle handle; | |
6058989b | 214 | |
3a83f992 | 215 | handle = ACPI_HANDLE(dev); |
6058989b | 216 | if (!handle) |
2fc59fe2 | 217 | return false; |
6058989b | 218 | |
94116f81 | 219 | return !!acpi_check_dsm(handle, &pci_acpi_dsm_guid, 0x2, |
2fc59fe2 | 220 | 1 << DEVICE_LABEL_DSM); |
6058989b ND |
221 | } |
222 | ||
3c78bc61 RD |
223 | static umode_t acpi_index_string_exist(struct kobject *kobj, |
224 | struct attribute *attr, int n) | |
6058989b ND |
225 | { |
226 | struct device *dev; | |
227 | ||
554a6037 | 228 | dev = kobj_to_dev(kobj); |
6058989b ND |
229 | |
230 | if (device_has_dsm(dev)) | |
231 | return S_IRUGO; | |
232 | ||
233 | return 0; | |
234 | } | |
235 | ||
3c78bc61 RD |
236 | static ssize_t acpilabel_show(struct device *dev, |
237 | struct device_attribute *attr, char *buf) | |
6058989b | 238 | { |
1d0fcef7 | 239 | return dsm_get_label(dev, buf, ACPI_ATTR_LABEL_SHOW); |
6058989b ND |
240 | } |
241 | ||
3c78bc61 RD |
242 | static ssize_t acpiindex_show(struct device *dev, |
243 | struct device_attribute *attr, char *buf) | |
6058989b | 244 | { |
1d0fcef7 | 245 | return dsm_get_label(dev, buf, ACPI_ATTR_INDEX_SHOW); |
6058989b ND |
246 | } |
247 | ||
248 | static struct device_attribute acpi_attr_label = { | |
249 | .attr = {.name = "label", .mode = 0444}, | |
250 | .show = acpilabel_show, | |
251 | }; | |
252 | ||
253 | static struct device_attribute acpi_attr_index = { | |
254 | .attr = {.name = "acpi_index", .mode = 0444}, | |
255 | .show = acpiindex_show, | |
256 | }; | |
257 | ||
258 | static struct attribute *acpi_attributes[] = { | |
259 | &acpi_attr_label.attr, | |
260 | &acpi_attr_index.attr, | |
261 | NULL, | |
262 | }; | |
263 | ||
f4841285 | 264 | static const struct attribute_group acpi_attr_group = { |
6058989b ND |
265 | .attrs = acpi_attributes, |
266 | .is_visible = acpi_index_string_exist, | |
267 | }; | |
268 | ||
3c78bc61 | 269 | static int pci_create_acpi_index_label_files(struct pci_dev *pdev) |
6058989b ND |
270 | { |
271 | return sysfs_create_group(&pdev->dev.kobj, &acpi_attr_group); | |
272 | } | |
273 | ||
3c78bc61 | 274 | static int pci_remove_acpi_index_label_files(struct pci_dev *pdev) |
6058989b ND |
275 | { |
276 | sysfs_remove_group(&pdev->dev.kobj, &acpi_attr_group); | |
277 | return 0; | |
278 | } | |
4c859804 | 279 | #else |
3c78bc61 | 280 | static inline int pci_create_acpi_index_label_files(struct pci_dev *pdev) |
4c859804 BH |
281 | { |
282 | return -1; | |
283 | } | |
284 | ||
3c78bc61 | 285 | static inline int pci_remove_acpi_index_label_files(struct pci_dev *pdev) |
4c859804 BH |
286 | { |
287 | return -1; | |
288 | } | |
289 | ||
3c78bc61 | 290 | static inline bool device_has_dsm(struct device *dev) |
4c859804 BH |
291 | { |
292 | return false; | |
293 | } | |
6058989b ND |
294 | #endif |
295 | ||
911e1c9b N |
296 | void pci_create_firmware_label_files(struct pci_dev *pdev) |
297 | { | |
6058989b ND |
298 | if (device_has_dsm(&pdev->dev)) |
299 | pci_create_acpi_index_label_files(pdev); | |
300 | else | |
301 | pci_create_smbiosname_file(pdev); | |
911e1c9b N |
302 | } |
303 | ||
304 | void pci_remove_firmware_label_files(struct pci_dev *pdev) | |
305 | { | |
6058989b ND |
306 | if (device_has_dsm(&pdev->dev)) |
307 | pci_remove_acpi_index_label_files(pdev); | |
308 | else | |
309 | pci_remove_smbiosname_file(pdev); | |
911e1c9b | 310 | } |