]>
Commit | Line | Data |
---|---|---|
911e1c9b N |
1 | /* |
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 <[email protected]>, | |
6 | * Jordan Hargrave <[email protected]> | |
7 | * | |
6058989b ND |
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 | |
13 | * sysfs. | |
14 | * | |
911e1c9b N |
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 | |
17 | * it to sysfs. | |
18 | * | |
6ca7227b | 19 | * Please see http://linux.dell.com/files/biosdevname/ for more |
911e1c9b N |
20 | * 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> | |
6058989b ND |
29 | #include <linux/nls.h> |
30 | #include <linux/acpi.h> | |
31 | #include <linux/pci-acpi.h> | |
911e1c9b N |
32 | #include "pci.h" |
33 | ||
4c859804 | 34 | #ifdef CONFIG_DMI |
911e1c9b N |
35 | enum smbios_attr_enum { |
36 | SMBIOS_ATTR_NONE = 0, | |
37 | SMBIOS_ATTR_LABEL_SHOW, | |
38 | SMBIOS_ATTR_INSTANCE_SHOW, | |
39 | }; | |
40 | ||
3c78bc61 RD |
41 | static size_t find_smbios_instance_string(struct pci_dev *pdev, char *buf, |
42 | enum smbios_attr_enum attribute) | |
911e1c9b N |
43 | { |
44 | const struct dmi_device *dmi; | |
45 | struct dmi_dev_onboard *donboard; | |
6c51c82c | 46 | int domain_nr; |
911e1c9b N |
47 | int bus; |
48 | int devfn; | |
49 | ||
6c51c82c | 50 | domain_nr = pci_domain_nr(pdev->bus); |
911e1c9b N |
51 | 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; | |
6c51c82c SP |
58 | if (donboard && donboard->segment == domain_nr && |
59 | donboard->bus == bus && | |
60 | donboard->devfn == devfn) { | |
911e1c9b N |
61 | 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 | ||
3c78bc61 RD |
77 | static umode_t smbios_instance_string_exist(struct kobject *kobj, |
78 | struct attribute *attr, int n) | |
911e1c9b N |
79 | { |
80 | struct device *dev; | |
81 | struct pci_dev *pdev; | |
82 | ||
554a6037 | 83 | dev = kobj_to_dev(kobj); |
911e1c9b N |
84 | pdev = to_pci_dev(dev); |
85 | ||
86 | return find_smbios_instance_string(pdev, NULL, SMBIOS_ATTR_NONE) ? | |
87 | S_IRUGO : 0; | |
88 | } | |
89 | ||
3c78bc61 RD |
90 | static ssize_t smbioslabel_show(struct device *dev, |
91 | struct device_attribute *attr, char *buf) | |
911e1c9b N |
92 | { |
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 | ||
3c78bc61 RD |
100 | static ssize_t smbiosinstance_show(struct device *dev, |
101 | struct device_attribute *attr, char *buf) | |
911e1c9b N |
102 | { |
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 | ||
110 | static struct device_attribute smbios_attr_label = { | |
763e9db9 | 111 | .attr = {.name = "label", .mode = 0444}, |
911e1c9b N |
112 | .show = smbioslabel_show, |
113 | }; | |
114 | ||
115 | static struct device_attribute smbios_attr_instance = { | |
763e9db9 | 116 | .attr = {.name = "index", .mode = 0444}, |
911e1c9b N |
117 | .show = smbiosinstance_show, |
118 | }; | |
119 | ||
120 | static struct attribute *smbios_attributes[] = { | |
121 | &smbios_attr_label.attr, | |
122 | &smbios_attr_instance.attr, | |
123 | NULL, | |
124 | }; | |
125 | ||
f4841285 | 126 | static const struct attribute_group smbios_attr_group = { |
911e1c9b N |
127 | .attrs = smbios_attributes, |
128 | .is_visible = smbios_instance_string_exist, | |
129 | }; | |
130 | ||
3c78bc61 | 131 | static int pci_create_smbiosname_file(struct pci_dev *pdev) |
911e1c9b | 132 | { |
6058989b | 133 | return sysfs_create_group(&pdev->dev.kobj, &smbios_attr_group); |
911e1c9b N |
134 | } |
135 | ||
3c78bc61 | 136 | static void pci_remove_smbiosname_file(struct pci_dev *pdev) |
911e1c9b N |
137 | { |
138 | sysfs_remove_group(&pdev->dev.kobj, &smbios_attr_group); | |
139 | } | |
4c859804 | 140 | #else |
3c78bc61 | 141 | static inline int pci_create_smbiosname_file(struct pci_dev *pdev) |
6058989b ND |
142 | { |
143 | return -1; | |
144 | } | |
145 | ||
3c78bc61 | 146 | static inline void pci_remove_smbiosname_file(struct pci_dev *pdev) |
07eefe1c | 147 | { |
07eefe1c | 148 | } |
4c859804 | 149 | #endif |
07eefe1c | 150 | |
4c859804 | 151 | #ifdef CONFIG_ACPI |
6058989b | 152 | enum acpi_attr_enum { |
6058989b ND |
153 | ACPI_ATTR_LABEL_SHOW, |
154 | ACPI_ATTR_INDEX_SHOW, | |
155 | }; | |
156 | ||
157 | static void dsm_label_utf16s_to_utf8s(union acpi_object *obj, char *buf) | |
158 | { | |
159 | int len; | |
dcfa9be8 SG |
160 | len = utf16s_to_utf8s((const wchar_t *)obj->buffer.pointer, |
161 | obj->buffer.length, | |
6058989b ND |
162 | UTF16_LITTLE_ENDIAN, |
163 | buf, PAGE_SIZE); | |
164 | buf[len] = '\n'; | |
165 | } | |
166 | ||
3c78bc61 RD |
167 | static int dsm_get_label(struct device *dev, char *buf, |
168 | enum acpi_attr_enum attr) | |
6058989b | 169 | { |
1d0fcef7 JL |
170 | acpi_handle handle; |
171 | union acpi_object *obj, *tmp; | |
172 | int len = -1; | |
173 | ||
174 | handle = ACPI_HANDLE(dev); | |
175 | if (!handle) | |
6058989b ND |
176 | return -1; |
177 | ||
94116f81 | 178 | obj = acpi_evaluate_dsm(handle, &pci_acpi_dsm_guid, 0x2, |
1d0fcef7 JL |
179 | DEVICE_LABEL_DSM, NULL); |
180 | if (!obj) | |
181 | return -1; | |
182 | ||
183 | tmp = obj->package.elements; | |
184 | if (obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 2 && | |
185 | tmp[0].type == ACPI_TYPE_INTEGER && | |
dcfa9be8 SG |
186 | (tmp[1].type == ACPI_TYPE_STRING || |
187 | tmp[1].type == ACPI_TYPE_BUFFER)) { | |
2fc59fe2 JL |
188 | /* |
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 | */ | |
dcfa9be8 | 193 | if (attr == ACPI_ATTR_INDEX_SHOW) { |
2fc59fe2 | 194 | scnprintf(buf, PAGE_SIZE, "%llu\n", tmp->integer.value); |
dcfa9be8 SG |
195 | } 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 | } | |
2fc59fe2 | 202 | len = strlen(buf) > 0 ? strlen(buf) : -1; |
6058989b | 203 | } |
54e5bb46 | 204 | |
1d0fcef7 | 205 | ACPI_FREE(obj); |
54e5bb46 | 206 | |
1d0fcef7 | 207 | return len; |
6058989b ND |
208 | } |
209 | ||
3c78bc61 | 210 | static bool device_has_dsm(struct device *dev) |
6058989b ND |
211 | { |
212 | acpi_handle handle; | |
6058989b | 213 | |
3a83f992 | 214 | handle = ACPI_HANDLE(dev); |
6058989b | 215 | if (!handle) |
2fc59fe2 | 216 | return false; |
6058989b | 217 | |
94116f81 | 218 | return !!acpi_check_dsm(handle, &pci_acpi_dsm_guid, 0x2, |
2fc59fe2 | 219 | 1 << DEVICE_LABEL_DSM); |
6058989b ND |
220 | } |
221 | ||
3c78bc61 RD |
222 | static umode_t acpi_index_string_exist(struct kobject *kobj, |
223 | struct attribute *attr, int n) | |
6058989b ND |
224 | { |
225 | struct device *dev; | |
226 | ||
554a6037 | 227 | dev = kobj_to_dev(kobj); |
6058989b ND |
228 | |
229 | if (device_has_dsm(dev)) | |
230 | return S_IRUGO; | |
231 | ||
232 | return 0; | |
233 | } | |
234 | ||
3c78bc61 RD |
235 | static ssize_t acpilabel_show(struct device *dev, |
236 | struct device_attribute *attr, char *buf) | |
6058989b | 237 | { |
1d0fcef7 | 238 | return dsm_get_label(dev, buf, ACPI_ATTR_LABEL_SHOW); |
6058989b ND |
239 | } |
240 | ||
3c78bc61 RD |
241 | static ssize_t acpiindex_show(struct device *dev, |
242 | struct device_attribute *attr, char *buf) | |
6058989b | 243 | { |
1d0fcef7 | 244 | return dsm_get_label(dev, buf, ACPI_ATTR_INDEX_SHOW); |
6058989b ND |
245 | } |
246 | ||
247 | static struct device_attribute acpi_attr_label = { | |
248 | .attr = {.name = "label", .mode = 0444}, | |
249 | .show = acpilabel_show, | |
250 | }; | |
251 | ||
252 | static struct device_attribute acpi_attr_index = { | |
253 | .attr = {.name = "acpi_index", .mode = 0444}, | |
254 | .show = acpiindex_show, | |
255 | }; | |
256 | ||
257 | static struct attribute *acpi_attributes[] = { | |
258 | &acpi_attr_label.attr, | |
259 | &acpi_attr_index.attr, | |
260 | NULL, | |
261 | }; | |
262 | ||
f4841285 | 263 | static const struct attribute_group acpi_attr_group = { |
6058989b ND |
264 | .attrs = acpi_attributes, |
265 | .is_visible = acpi_index_string_exist, | |
266 | }; | |
267 | ||
3c78bc61 | 268 | static int pci_create_acpi_index_label_files(struct pci_dev *pdev) |
6058989b ND |
269 | { |
270 | return sysfs_create_group(&pdev->dev.kobj, &acpi_attr_group); | |
271 | } | |
272 | ||
3c78bc61 | 273 | static int pci_remove_acpi_index_label_files(struct pci_dev *pdev) |
6058989b ND |
274 | { |
275 | sysfs_remove_group(&pdev->dev.kobj, &acpi_attr_group); | |
276 | return 0; | |
277 | } | |
4c859804 | 278 | #else |
3c78bc61 | 279 | static inline int pci_create_acpi_index_label_files(struct pci_dev *pdev) |
4c859804 BH |
280 | { |
281 | return -1; | |
282 | } | |
283 | ||
3c78bc61 | 284 | static inline int pci_remove_acpi_index_label_files(struct pci_dev *pdev) |
4c859804 BH |
285 | { |
286 | return -1; | |
287 | } | |
288 | ||
3c78bc61 | 289 | static inline bool device_has_dsm(struct device *dev) |
4c859804 BH |
290 | { |
291 | return false; | |
292 | } | |
6058989b ND |
293 | #endif |
294 | ||
911e1c9b N |
295 | void pci_create_firmware_label_files(struct pci_dev *pdev) |
296 | { | |
6058989b ND |
297 | if (device_has_dsm(&pdev->dev)) |
298 | pci_create_acpi_index_label_files(pdev); | |
299 | else | |
300 | pci_create_smbiosname_file(pdev); | |
911e1c9b N |
301 | } |
302 | ||
303 | void pci_remove_firmware_label_files(struct pci_dev *pdev) | |
304 | { | |
6058989b ND |
305 | if (device_has_dsm(&pdev->dev)) |
306 | pci_remove_acpi_index_label_files(pdev); | |
307 | else | |
308 | pci_remove_smbiosname_file(pdev); | |
911e1c9b | 309 | } |