Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Intel Vendor Specific Extended Capabilities auxiliary bus driver
4 *
5 * Copyright (c) 2021, Intel Corporation.
6 * All Rights Reserved.
7 *
8 * Author: David E. Box <david.e.box@linux.intel.com>
9 *
10 * This driver discovers and creates auxiliary devices for Intel defined PCIe
11 * "Vendor Specific" and "Designated Vendor Specific" Extended Capabilities,
12 * VSEC and DVSEC respectively. The driver supports features on specific PCIe
13 * endpoints that exist primarily to expose them.
14 */
15
16#include <linux/auxiliary_bus.h>
17#include <linux/bits.h>
18#include <linux/cleanup.h>
19#include <linux/delay.h>
20#include <linux/idr.h>
21#include <linux/intel_vsec.h>
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/pci.h>
25#include <linux/types.h>
26
27#define PMT_XA_START 0
28#define PMT_XA_MAX INT_MAX
29#define PMT_XA_LIMIT XA_LIMIT(PMT_XA_START, PMT_XA_MAX)
30
31static DEFINE_IDA(intel_vsec_ida);
32static DEFINE_IDA(intel_vsec_sdsi_ida);
33static DEFINE_XARRAY_ALLOC(auxdev_array);
34
35static const char *intel_vsec_name(enum intel_vsec_id id)
36{
37 switch (id) {
38 case VSEC_ID_TELEMETRY:
39 return "telemetry";
40
41 case VSEC_ID_WATCHER:
42 return "watcher";
43
44 case VSEC_ID_CRASHLOG:
45 return "crashlog";
46
47 case VSEC_ID_SDSI:
48 return "sdsi";
49
50 case VSEC_ID_TPMI:
51 return "tpmi";
52
53 default:
54 return NULL;
55 }
56}
57
58static bool intel_vsec_supported(u16 id, unsigned long caps)
59{
60 switch (id) {
61 case VSEC_ID_TELEMETRY:
62 return !!(caps & VSEC_CAP_TELEMETRY);
63 case VSEC_ID_WATCHER:
64 return !!(caps & VSEC_CAP_WATCHER);
65 case VSEC_ID_CRASHLOG:
66 return !!(caps & VSEC_CAP_CRASHLOG);
67 case VSEC_ID_SDSI:
68 return !!(caps & VSEC_CAP_SDSI);
69 case VSEC_ID_TPMI:
70 return !!(caps & VSEC_CAP_TPMI);
71 default:
72 return false;
73 }
74}
75
76static void intel_vsec_remove_aux(void *data)
77{
78 auxiliary_device_delete(data);
79 auxiliary_device_uninit(data);
80}
81
82static void intel_vsec_dev_release(struct device *dev)
83{
84 struct intel_vsec_device *intel_vsec_dev = dev_to_ivdev(dev);
85
86 xa_erase(&auxdev_array, intel_vsec_dev->id);
87
88 ida_free(intel_vsec_dev->ida, intel_vsec_dev->auxdev.id);
89
90 kfree(intel_vsec_dev->resource);
91 kfree(intel_vsec_dev);
92}
93
94int intel_vsec_add_aux(struct pci_dev *pdev, struct device *parent,
95 struct intel_vsec_device *intel_vsec_dev,
96 const char *name)
97{
98 struct auxiliary_device *auxdev = &intel_vsec_dev->auxdev;
99 int ret, id;
100
101 if (!parent)
102 return -EINVAL;
103
104 ret = xa_alloc(&auxdev_array, &intel_vsec_dev->id, intel_vsec_dev,
105 PMT_XA_LIMIT, GFP_KERNEL);
106 if (ret < 0) {
107 kfree(intel_vsec_dev->resource);
108 kfree(intel_vsec_dev);
109 return ret;
110 }
111
112 id = ida_alloc(intel_vsec_dev->ida, GFP_KERNEL);
113 if (id < 0) {
114 xa_erase(&auxdev_array, intel_vsec_dev->id);
115 kfree(intel_vsec_dev->resource);
116 kfree(intel_vsec_dev);
117 return id;
118 }
119
120 auxdev->id = id;
121 auxdev->name = name;
122 auxdev->dev.parent = parent;
123 auxdev->dev.release = intel_vsec_dev_release;
124
125 ret = auxiliary_device_init(auxdev);
126 if (ret < 0) {
127 intel_vsec_dev_release(&auxdev->dev);
128 return ret;
129 }
130
131 ret = auxiliary_device_add(auxdev);
132 if (ret < 0) {
133 auxiliary_device_uninit(auxdev);
134 return ret;
135 }
136
137 return devm_add_action_or_reset(parent, intel_vsec_remove_aux,
138 auxdev);
139}
140EXPORT_SYMBOL_NS_GPL(intel_vsec_add_aux, "INTEL_VSEC");
141
142static int intel_vsec_add_dev(struct pci_dev *pdev, struct intel_vsec_header *header,
143 struct intel_vsec_platform_info *info)
144{
145 struct intel_vsec_device __free(kfree) *intel_vsec_dev = NULL;
146 struct resource __free(kfree) *res = NULL;
147 struct resource *tmp;
148 struct device *parent;
149 unsigned long quirks = info->quirks;
150 u64 base_addr;
151 int i;
152
153 if (info->parent)
154 parent = info->parent;
155 else
156 parent = &pdev->dev;
157
158 if (!intel_vsec_supported(header->id, info->caps))
159 return -EINVAL;
160
161 if (!header->num_entries) {
162 dev_dbg(&pdev->dev, "Invalid 0 entry count for header id %d\n", header->id);
163 return -EINVAL;
164 }
165
166 if (!header->entry_size) {
167 dev_dbg(&pdev->dev, "Invalid 0 entry size for header id %d\n", header->id);
168 return -EINVAL;
169 }
170
171 intel_vsec_dev = kzalloc(sizeof(*intel_vsec_dev), GFP_KERNEL);
172 if (!intel_vsec_dev)
173 return -ENOMEM;
174
175 res = kcalloc(header->num_entries, sizeof(*res), GFP_KERNEL);
176 if (!res)
177 return -ENOMEM;
178
179 if (quirks & VSEC_QUIRK_TABLE_SHIFT)
180 header->offset >>= TABLE_OFFSET_SHIFT;
181
182 if (info->base_addr)
183 base_addr = info->base_addr;
184 else
185 base_addr = pdev->resource[header->tbir].start;
186
187 /*
188 * The DVSEC/VSEC contains the starting offset and count for a block of
189 * discovery tables. Create a resource array of these tables to the
190 * auxiliary device driver.
191 */
192 for (i = 0, tmp = res; i < header->num_entries; i++, tmp++) {
193 tmp->start = base_addr + header->offset + i * (header->entry_size * sizeof(u32));
194 tmp->end = tmp->start + (header->entry_size * sizeof(u32)) - 1;
195 tmp->flags = IORESOURCE_MEM;
196
197 /* Check resource is not in use */
198 if (!request_mem_region(tmp->start, resource_size(tmp), ""))
199 return -EBUSY;
200
201 release_mem_region(tmp->start, resource_size(tmp));
202 }
203
204 intel_vsec_dev->pcidev = pdev;
205 intel_vsec_dev->resource = no_free_ptr(res);
206 intel_vsec_dev->num_resources = header->num_entries;
207 intel_vsec_dev->quirks = info->quirks;
208 intel_vsec_dev->base_addr = info->base_addr;
209 intel_vsec_dev->priv_data = info->priv_data;
210
211 if (header->id == VSEC_ID_SDSI)
212 intel_vsec_dev->ida = &intel_vsec_sdsi_ida;
213 else
214 intel_vsec_dev->ida = &intel_vsec_ida;
215
216 /*
217 * Pass the ownership of intel_vsec_dev and resource within it to
218 * intel_vsec_add_aux()
219 */
220 return intel_vsec_add_aux(pdev, parent, no_free_ptr(intel_vsec_dev),
221 intel_vsec_name(header->id));
222}
223
224static bool intel_vsec_walk_header(struct pci_dev *pdev,
225 struct intel_vsec_platform_info *info)
226{
227 struct intel_vsec_header **header = info->headers;
228 bool have_devices = false;
229 int ret;
230
231 for ( ; *header; header++) {
232 ret = intel_vsec_add_dev(pdev, *header, info);
233 if (!ret)
234 have_devices = true;
235 }
236
237 return have_devices;
238}
239
240static bool intel_vsec_walk_dvsec(struct pci_dev *pdev,
241 struct intel_vsec_platform_info *info)
242{
243 bool have_devices = false;
244 int pos = 0;
245
246 do {
247 struct intel_vsec_header header;
248 u32 table, hdr;
249 u16 vid;
250 int ret;
251
252 pos = pci_find_next_ext_capability(pdev, pos, PCI_EXT_CAP_ID_DVSEC);
253 if (!pos)
254 break;
255
256 pci_read_config_dword(pdev, pos + PCI_DVSEC_HEADER1, &hdr);
257 vid = PCI_DVSEC_HEADER1_VID(hdr);
258 if (vid != PCI_VENDOR_ID_INTEL)
259 continue;
260
261 /* Support only revision 1 */
262 header.rev = PCI_DVSEC_HEADER1_REV(hdr);
263 if (header.rev != 1) {
264 dev_info(&pdev->dev, "Unsupported DVSEC revision %d\n", header.rev);
265 continue;
266 }
267
268 header.length = PCI_DVSEC_HEADER1_LEN(hdr);
269
270 pci_read_config_byte(pdev, pos + INTEL_DVSEC_ENTRIES, &header.num_entries);
271 pci_read_config_byte(pdev, pos + INTEL_DVSEC_SIZE, &header.entry_size);
272 pci_read_config_dword(pdev, pos + INTEL_DVSEC_TABLE, &table);
273
274 header.tbir = INTEL_DVSEC_TABLE_BAR(table);
275 header.offset = INTEL_DVSEC_TABLE_OFFSET(table);
276
277 pci_read_config_dword(pdev, pos + PCI_DVSEC_HEADER2, &hdr);
278 header.id = PCI_DVSEC_HEADER2_ID(hdr);
279
280 ret = intel_vsec_add_dev(pdev, &header, info);
281 if (ret)
282 continue;
283
284 have_devices = true;
285 } while (true);
286
287 return have_devices;
288}
289
290static bool intel_vsec_walk_vsec(struct pci_dev *pdev,
291 struct intel_vsec_platform_info *info)
292{
293 bool have_devices = false;
294 int pos = 0;
295
296 do {
297 struct intel_vsec_header header;
298 u32 table, hdr;
299 int ret;
300
301 pos = pci_find_next_ext_capability(pdev, pos, PCI_EXT_CAP_ID_VNDR);
302 if (!pos)
303 break;
304
305 pci_read_config_dword(pdev, pos + PCI_VNDR_HEADER, &hdr);
306
307 /* Support only revision 1 */
308 header.rev = PCI_VNDR_HEADER_REV(hdr);
309 if (header.rev != 1) {
310 dev_info(&pdev->dev, "Unsupported VSEC revision %d\n", header.rev);
311 continue;
312 }
313
314 header.id = PCI_VNDR_HEADER_ID(hdr);
315 header.length = PCI_VNDR_HEADER_LEN(hdr);
316
317 /* entry, size, and table offset are the same as DVSEC */
318 pci_read_config_byte(pdev, pos + INTEL_DVSEC_ENTRIES, &header.num_entries);
319 pci_read_config_byte(pdev, pos + INTEL_DVSEC_SIZE, &header.entry_size);
320 pci_read_config_dword(pdev, pos + INTEL_DVSEC_TABLE, &table);
321
322 header.tbir = INTEL_DVSEC_TABLE_BAR(table);
323 header.offset = INTEL_DVSEC_TABLE_OFFSET(table);
324
325 ret = intel_vsec_add_dev(pdev, &header, info);
326 if (ret)
327 continue;
328
329 have_devices = true;
330 } while (true);
331
332 return have_devices;
333}
334
335void intel_vsec_register(struct pci_dev *pdev,
336 struct intel_vsec_platform_info *info)
337{
338 if (!pdev || !info || !info->headers)
339 return;
340
341 intel_vsec_walk_header(pdev, info);
342}
343EXPORT_SYMBOL_NS_GPL(intel_vsec_register, "INTEL_VSEC");
344
345static int intel_vsec_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
346{
347 struct intel_vsec_platform_info *info;
348 bool have_devices = false;
349 int ret;
350
351 ret = pcim_enable_device(pdev);
352 if (ret)
353 return ret;
354
355 pci_save_state(pdev);
356 info = (struct intel_vsec_platform_info *)id->driver_data;
357 if (!info)
358 return -EINVAL;
359
360 if (intel_vsec_walk_dvsec(pdev, info))
361 have_devices = true;
362
363 if (intel_vsec_walk_vsec(pdev, info))
364 have_devices = true;
365
366 if (info && (info->quirks & VSEC_QUIRK_NO_DVSEC) &&
367 intel_vsec_walk_header(pdev, info))
368 have_devices = true;
369
370 if (!have_devices)
371 return -ENODEV;
372
373 return 0;
374}
375
376/* DG1 info */
377static struct intel_vsec_header dg1_header = {
378 .length = 0x10,
379 .id = 2,
380 .num_entries = 1,
381 .entry_size = 3,
382 .tbir = 0,
383 .offset = 0x466000,
384};
385
386static struct intel_vsec_header *dg1_headers[] = {
387 &dg1_header,
388 NULL
389};
390
391static const struct intel_vsec_platform_info dg1_info = {
392 .caps = VSEC_CAP_TELEMETRY,
393 .headers = dg1_headers,
394 .quirks = VSEC_QUIRK_NO_DVSEC | VSEC_QUIRK_EARLY_HW,
395};
396
397/* MTL info */
398static const struct intel_vsec_platform_info mtl_info = {
399 .caps = VSEC_CAP_TELEMETRY,
400};
401
402/* OOBMSM info */
403static const struct intel_vsec_platform_info oobmsm_info = {
404 .caps = VSEC_CAP_TELEMETRY | VSEC_CAP_SDSI | VSEC_CAP_TPMI,
405};
406
407/* TGL info */
408static const struct intel_vsec_platform_info tgl_info = {
409 .caps = VSEC_CAP_TELEMETRY,
410 .quirks = VSEC_QUIRK_TABLE_SHIFT | VSEC_QUIRK_EARLY_HW,
411};
412
413/* LNL info */
414static const struct intel_vsec_platform_info lnl_info = {
415 .caps = VSEC_CAP_TELEMETRY | VSEC_CAP_WATCHER,
416};
417
418#define PCI_DEVICE_ID_INTEL_VSEC_ADL 0x467d
419#define PCI_DEVICE_ID_INTEL_VSEC_DG1 0x490e
420#define PCI_DEVICE_ID_INTEL_VSEC_MTL_M 0x7d0d
421#define PCI_DEVICE_ID_INTEL_VSEC_MTL_S 0xad0d
422#define PCI_DEVICE_ID_INTEL_VSEC_OOBMSM 0x09a7
423#define PCI_DEVICE_ID_INTEL_VSEC_RPL 0xa77d
424#define PCI_DEVICE_ID_INTEL_VSEC_TGL 0x9a0d
425#define PCI_DEVICE_ID_INTEL_VSEC_LNL_M 0x647d
426#define PCI_DEVICE_ID_INTEL_VSEC_PTL 0xb07d
427static const struct pci_device_id intel_vsec_pci_ids[] = {
428 { PCI_DEVICE_DATA(INTEL, VSEC_ADL, &tgl_info) },
429 { PCI_DEVICE_DATA(INTEL, VSEC_DG1, &dg1_info) },
430 { PCI_DEVICE_DATA(INTEL, VSEC_MTL_M, &mtl_info) },
431 { PCI_DEVICE_DATA(INTEL, VSEC_MTL_S, &mtl_info) },
432 { PCI_DEVICE_DATA(INTEL, VSEC_OOBMSM, &oobmsm_info) },
433 { PCI_DEVICE_DATA(INTEL, VSEC_RPL, &tgl_info) },
434 { PCI_DEVICE_DATA(INTEL, VSEC_TGL, &tgl_info) },
435 { PCI_DEVICE_DATA(INTEL, VSEC_LNL_M, &lnl_info) },
436 { PCI_DEVICE_DATA(INTEL, VSEC_PTL, &mtl_info) },
437 { }
438};
439MODULE_DEVICE_TABLE(pci, intel_vsec_pci_ids);
440
441static pci_ers_result_t intel_vsec_pci_error_detected(struct pci_dev *pdev,
442 pci_channel_state_t state)
443{
444 pci_ers_result_t status = PCI_ERS_RESULT_NEED_RESET;
445
446 dev_info(&pdev->dev, "PCI error detected, state %d", state);
447
448 if (state == pci_channel_io_perm_failure)
449 status = PCI_ERS_RESULT_DISCONNECT;
450 else
451 pci_disable_device(pdev);
452
453 return status;
454}
455
456static pci_ers_result_t intel_vsec_pci_slot_reset(struct pci_dev *pdev)
457{
458 struct intel_vsec_device *intel_vsec_dev;
459 pci_ers_result_t status = PCI_ERS_RESULT_DISCONNECT;
460 const struct pci_device_id *pci_dev_id;
461 unsigned long index;
462
463 dev_info(&pdev->dev, "Resetting PCI slot\n");
464
465 msleep(2000);
466 if (pci_enable_device(pdev)) {
467 dev_info(&pdev->dev,
468 "Failed to re-enable PCI device after reset.\n");
469 goto out;
470 }
471
472 status = PCI_ERS_RESULT_RECOVERED;
473
474 xa_for_each(&auxdev_array, index, intel_vsec_dev) {
475 /* check if pdev doesn't match */
476 if (pdev != intel_vsec_dev->pcidev)
477 continue;
478 devm_release_action(&pdev->dev, intel_vsec_remove_aux,
479 &intel_vsec_dev->auxdev);
480 }
481 pci_disable_device(pdev);
482 pci_restore_state(pdev);
483 pci_dev_id = pci_match_id(intel_vsec_pci_ids, pdev);
484 intel_vsec_pci_probe(pdev, pci_dev_id);
485
486out:
487 return status;
488}
489
490static void intel_vsec_pci_resume(struct pci_dev *pdev)
491{
492 dev_info(&pdev->dev, "Done resuming PCI device\n");
493}
494
495static const struct pci_error_handlers intel_vsec_pci_err_handlers = {
496 .error_detected = intel_vsec_pci_error_detected,
497 .slot_reset = intel_vsec_pci_slot_reset,
498 .resume = intel_vsec_pci_resume,
499};
500
501static struct pci_driver intel_vsec_pci_driver = {
502 .name = "intel_vsec",
503 .id_table = intel_vsec_pci_ids,
504 .probe = intel_vsec_pci_probe,
505 .err_handler = &intel_vsec_pci_err_handlers,
506};
507module_pci_driver(intel_vsec_pci_driver);
508
509MODULE_AUTHOR("David E. Box <david.e.box@linux.intel.com>");
510MODULE_DESCRIPTION("Intel Extended Capabilities auxiliary bus driver");
511MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Intel Vendor Specific Extended Capabilities auxiliary bus driver
4 *
5 * Copyright (c) 2021, Intel Corporation.
6 * All Rights Reserved.
7 *
8 * Author: David E. Box <david.e.box@linux.intel.com>
9 *
10 * This driver discovers and creates auxiliary devices for Intel defined PCIe
11 * "Vendor Specific" and "Designated Vendor Specific" Extended Capabilities,
12 * VSEC and DVSEC respectively. The driver supports features on specific PCIe
13 * endpoints that exist primarily to expose them.
14 */
15
16#include <linux/auxiliary_bus.h>
17#include <linux/bits.h>
18#include <linux/cleanup.h>
19#include <linux/delay.h>
20#include <linux/kernel.h>
21#include <linux/idr.h>
22#include <linux/module.h>
23#include <linux/pci.h>
24#include <linux/types.h>
25
26#include "vsec.h"
27
28#define PMT_XA_START 0
29#define PMT_XA_MAX INT_MAX
30#define PMT_XA_LIMIT XA_LIMIT(PMT_XA_START, PMT_XA_MAX)
31
32static DEFINE_IDA(intel_vsec_ida);
33static DEFINE_IDA(intel_vsec_sdsi_ida);
34static DEFINE_XARRAY_ALLOC(auxdev_array);
35
36static const char *intel_vsec_name(enum intel_vsec_id id)
37{
38 switch (id) {
39 case VSEC_ID_TELEMETRY:
40 return "telemetry";
41
42 case VSEC_ID_WATCHER:
43 return "watcher";
44
45 case VSEC_ID_CRASHLOG:
46 return "crashlog";
47
48 case VSEC_ID_SDSI:
49 return "sdsi";
50
51 case VSEC_ID_TPMI:
52 return "tpmi";
53
54 default:
55 return NULL;
56 }
57}
58
59static bool intel_vsec_supported(u16 id, unsigned long caps)
60{
61 switch (id) {
62 case VSEC_ID_TELEMETRY:
63 return !!(caps & VSEC_CAP_TELEMETRY);
64 case VSEC_ID_WATCHER:
65 return !!(caps & VSEC_CAP_WATCHER);
66 case VSEC_ID_CRASHLOG:
67 return !!(caps & VSEC_CAP_CRASHLOG);
68 case VSEC_ID_SDSI:
69 return !!(caps & VSEC_CAP_SDSI);
70 case VSEC_ID_TPMI:
71 return !!(caps & VSEC_CAP_TPMI);
72 default:
73 return false;
74 }
75}
76
77static void intel_vsec_remove_aux(void *data)
78{
79 auxiliary_device_delete(data);
80 auxiliary_device_uninit(data);
81}
82
83static DEFINE_MUTEX(vsec_ida_lock);
84
85static void intel_vsec_dev_release(struct device *dev)
86{
87 struct intel_vsec_device *intel_vsec_dev = dev_to_ivdev(dev);
88
89 xa_erase(&auxdev_array, intel_vsec_dev->id);
90
91 mutex_lock(&vsec_ida_lock);
92 ida_free(intel_vsec_dev->ida, intel_vsec_dev->auxdev.id);
93 mutex_unlock(&vsec_ida_lock);
94
95 kfree(intel_vsec_dev->resource);
96 kfree(intel_vsec_dev);
97}
98
99int intel_vsec_add_aux(struct pci_dev *pdev, struct device *parent,
100 struct intel_vsec_device *intel_vsec_dev,
101 const char *name)
102{
103 struct auxiliary_device *auxdev = &intel_vsec_dev->auxdev;
104 int ret, id;
105
106 if (!parent)
107 return -EINVAL;
108
109 ret = xa_alloc(&auxdev_array, &intel_vsec_dev->id, intel_vsec_dev,
110 PMT_XA_LIMIT, GFP_KERNEL);
111 if (ret < 0) {
112 kfree(intel_vsec_dev->resource);
113 kfree(intel_vsec_dev);
114 return ret;
115 }
116
117 mutex_lock(&vsec_ida_lock);
118 id = ida_alloc(intel_vsec_dev->ida, GFP_KERNEL);
119 mutex_unlock(&vsec_ida_lock);
120 if (id < 0) {
121 xa_erase(&auxdev_array, intel_vsec_dev->id);
122 kfree(intel_vsec_dev->resource);
123 kfree(intel_vsec_dev);
124 return id;
125 }
126
127 auxdev->id = id;
128 auxdev->name = name;
129 auxdev->dev.parent = parent;
130 auxdev->dev.release = intel_vsec_dev_release;
131
132 ret = auxiliary_device_init(auxdev);
133 if (ret < 0) {
134 intel_vsec_dev_release(&auxdev->dev);
135 return ret;
136 }
137
138 ret = auxiliary_device_add(auxdev);
139 if (ret < 0) {
140 auxiliary_device_uninit(auxdev);
141 return ret;
142 }
143
144 return devm_add_action_or_reset(parent, intel_vsec_remove_aux,
145 auxdev);
146}
147EXPORT_SYMBOL_NS_GPL(intel_vsec_add_aux, INTEL_VSEC);
148
149static int intel_vsec_add_dev(struct pci_dev *pdev, struct intel_vsec_header *header,
150 struct intel_vsec_platform_info *info)
151{
152 struct intel_vsec_device __free(kfree) *intel_vsec_dev = NULL;
153 struct resource __free(kfree) *res = NULL;
154 struct resource *tmp;
155 struct device *parent;
156 unsigned long quirks = info->quirks;
157 u64 base_addr;
158 int i;
159
160 if (info->parent)
161 parent = info->parent;
162 else
163 parent = &pdev->dev;
164
165 if (!intel_vsec_supported(header->id, info->caps))
166 return -EINVAL;
167
168 if (!header->num_entries) {
169 dev_dbg(&pdev->dev, "Invalid 0 entry count for header id %d\n", header->id);
170 return -EINVAL;
171 }
172
173 if (!header->entry_size) {
174 dev_dbg(&pdev->dev, "Invalid 0 entry size for header id %d\n", header->id);
175 return -EINVAL;
176 }
177
178 intel_vsec_dev = kzalloc(sizeof(*intel_vsec_dev), GFP_KERNEL);
179 if (!intel_vsec_dev)
180 return -ENOMEM;
181
182 res = kcalloc(header->num_entries, sizeof(*res), GFP_KERNEL);
183 if (!res)
184 return -ENOMEM;
185
186 if (quirks & VSEC_QUIRK_TABLE_SHIFT)
187 header->offset >>= TABLE_OFFSET_SHIFT;
188
189 if (info->base_addr)
190 base_addr = info->base_addr;
191 else
192 base_addr = pdev->resource[header->tbir].start;
193
194 /*
195 * The DVSEC/VSEC contains the starting offset and count for a block of
196 * discovery tables. Create a resource array of these tables to the
197 * auxiliary device driver.
198 */
199 for (i = 0, tmp = res; i < header->num_entries; i++, tmp++) {
200 tmp->start = base_addr + header->offset + i * (header->entry_size * sizeof(u32));
201 tmp->end = tmp->start + (header->entry_size * sizeof(u32)) - 1;
202 tmp->flags = IORESOURCE_MEM;
203
204 /* Check resource is not in use */
205 if (!request_mem_region(tmp->start, resource_size(tmp), ""))
206 return -EBUSY;
207
208 release_mem_region(tmp->start, resource_size(tmp));
209 }
210
211 intel_vsec_dev->pcidev = pdev;
212 intel_vsec_dev->resource = no_free_ptr(res);
213 intel_vsec_dev->num_resources = header->num_entries;
214 intel_vsec_dev->quirks = info->quirks;
215 intel_vsec_dev->base_addr = info->base_addr;
216
217 if (header->id == VSEC_ID_SDSI)
218 intel_vsec_dev->ida = &intel_vsec_sdsi_ida;
219 else
220 intel_vsec_dev->ida = &intel_vsec_ida;
221
222 /*
223 * Pass the ownership of intel_vsec_dev and resource within it to
224 * intel_vsec_add_aux()
225 */
226 return intel_vsec_add_aux(pdev, parent, no_free_ptr(intel_vsec_dev),
227 intel_vsec_name(header->id));
228}
229
230static bool intel_vsec_walk_header(struct pci_dev *pdev,
231 struct intel_vsec_platform_info *info)
232{
233 struct intel_vsec_header **header = info->headers;
234 bool have_devices = false;
235 int ret;
236
237 for ( ; *header; header++) {
238 ret = intel_vsec_add_dev(pdev, *header, info);
239 if (!ret)
240 have_devices = true;
241 }
242
243 return have_devices;
244}
245
246static bool intel_vsec_walk_dvsec(struct pci_dev *pdev,
247 struct intel_vsec_platform_info *info)
248{
249 bool have_devices = false;
250 int pos = 0;
251
252 do {
253 struct intel_vsec_header header;
254 u32 table, hdr;
255 u16 vid;
256 int ret;
257
258 pos = pci_find_next_ext_capability(pdev, pos, PCI_EXT_CAP_ID_DVSEC);
259 if (!pos)
260 break;
261
262 pci_read_config_dword(pdev, pos + PCI_DVSEC_HEADER1, &hdr);
263 vid = PCI_DVSEC_HEADER1_VID(hdr);
264 if (vid != PCI_VENDOR_ID_INTEL)
265 continue;
266
267 /* Support only revision 1 */
268 header.rev = PCI_DVSEC_HEADER1_REV(hdr);
269 if (header.rev != 1) {
270 dev_info(&pdev->dev, "Unsupported DVSEC revision %d\n", header.rev);
271 continue;
272 }
273
274 header.length = PCI_DVSEC_HEADER1_LEN(hdr);
275
276 pci_read_config_byte(pdev, pos + INTEL_DVSEC_ENTRIES, &header.num_entries);
277 pci_read_config_byte(pdev, pos + INTEL_DVSEC_SIZE, &header.entry_size);
278 pci_read_config_dword(pdev, pos + INTEL_DVSEC_TABLE, &table);
279
280 header.tbir = INTEL_DVSEC_TABLE_BAR(table);
281 header.offset = INTEL_DVSEC_TABLE_OFFSET(table);
282
283 pci_read_config_dword(pdev, pos + PCI_DVSEC_HEADER2, &hdr);
284 header.id = PCI_DVSEC_HEADER2_ID(hdr);
285
286 ret = intel_vsec_add_dev(pdev, &header, info);
287 if (ret)
288 continue;
289
290 have_devices = true;
291 } while (true);
292
293 return have_devices;
294}
295
296static bool intel_vsec_walk_vsec(struct pci_dev *pdev,
297 struct intel_vsec_platform_info *info)
298{
299 bool have_devices = false;
300 int pos = 0;
301
302 do {
303 struct intel_vsec_header header;
304 u32 table, hdr;
305 int ret;
306
307 pos = pci_find_next_ext_capability(pdev, pos, PCI_EXT_CAP_ID_VNDR);
308 if (!pos)
309 break;
310
311 pci_read_config_dword(pdev, pos + PCI_VNDR_HEADER, &hdr);
312
313 /* Support only revision 1 */
314 header.rev = PCI_VNDR_HEADER_REV(hdr);
315 if (header.rev != 1) {
316 dev_info(&pdev->dev, "Unsupported VSEC revision %d\n", header.rev);
317 continue;
318 }
319
320 header.id = PCI_VNDR_HEADER_ID(hdr);
321 header.length = PCI_VNDR_HEADER_LEN(hdr);
322
323 /* entry, size, and table offset are the same as DVSEC */
324 pci_read_config_byte(pdev, pos + INTEL_DVSEC_ENTRIES, &header.num_entries);
325 pci_read_config_byte(pdev, pos + INTEL_DVSEC_SIZE, &header.entry_size);
326 pci_read_config_dword(pdev, pos + INTEL_DVSEC_TABLE, &table);
327
328 header.tbir = INTEL_DVSEC_TABLE_BAR(table);
329 header.offset = INTEL_DVSEC_TABLE_OFFSET(table);
330
331 ret = intel_vsec_add_dev(pdev, &header, info);
332 if (ret)
333 continue;
334
335 have_devices = true;
336 } while (true);
337
338 return have_devices;
339}
340
341void intel_vsec_register(struct pci_dev *pdev,
342 struct intel_vsec_platform_info *info)
343{
344 if (!pdev || !info)
345 return;
346
347 intel_vsec_walk_header(pdev, info);
348}
349EXPORT_SYMBOL_NS_GPL(intel_vsec_register, INTEL_VSEC);
350
351static int intel_vsec_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
352{
353 struct intel_vsec_platform_info *info;
354 bool have_devices = false;
355 int ret;
356
357 ret = pcim_enable_device(pdev);
358 if (ret)
359 return ret;
360
361 pci_save_state(pdev);
362 info = (struct intel_vsec_platform_info *)id->driver_data;
363 if (!info)
364 return -EINVAL;
365
366 if (intel_vsec_walk_dvsec(pdev, info))
367 have_devices = true;
368
369 if (intel_vsec_walk_vsec(pdev, info))
370 have_devices = true;
371
372 if (info && (info->quirks & VSEC_QUIRK_NO_DVSEC) &&
373 intel_vsec_walk_header(pdev, info))
374 have_devices = true;
375
376 if (!have_devices)
377 return -ENODEV;
378
379 return 0;
380}
381
382/* DG1 info */
383static struct intel_vsec_header dg1_header = {
384 .length = 0x10,
385 .id = 2,
386 .num_entries = 1,
387 .entry_size = 3,
388 .tbir = 0,
389 .offset = 0x466000,
390};
391
392static struct intel_vsec_header *dg1_headers[] = {
393 &dg1_header,
394 NULL
395};
396
397static const struct intel_vsec_platform_info dg1_info = {
398 .caps = VSEC_CAP_TELEMETRY,
399 .headers = dg1_headers,
400 .quirks = VSEC_QUIRK_NO_DVSEC | VSEC_QUIRK_EARLY_HW,
401};
402
403/* MTL info */
404static const struct intel_vsec_platform_info mtl_info = {
405 .caps = VSEC_CAP_TELEMETRY,
406};
407
408/* OOBMSM info */
409static const struct intel_vsec_platform_info oobmsm_info = {
410 .caps = VSEC_CAP_TELEMETRY | VSEC_CAP_SDSI | VSEC_CAP_TPMI,
411};
412
413/* TGL info */
414static const struct intel_vsec_platform_info tgl_info = {
415 .caps = VSEC_CAP_TELEMETRY,
416 .quirks = VSEC_QUIRK_TABLE_SHIFT | VSEC_QUIRK_EARLY_HW,
417};
418
419/* LNL info */
420static const struct intel_vsec_platform_info lnl_info = {
421 .caps = VSEC_CAP_TELEMETRY | VSEC_CAP_WATCHER,
422};
423
424#define PCI_DEVICE_ID_INTEL_VSEC_ADL 0x467d
425#define PCI_DEVICE_ID_INTEL_VSEC_DG1 0x490e
426#define PCI_DEVICE_ID_INTEL_VSEC_MTL_M 0x7d0d
427#define PCI_DEVICE_ID_INTEL_VSEC_MTL_S 0xad0d
428#define PCI_DEVICE_ID_INTEL_VSEC_OOBMSM 0x09a7
429#define PCI_DEVICE_ID_INTEL_VSEC_RPL 0xa77d
430#define PCI_DEVICE_ID_INTEL_VSEC_TGL 0x9a0d
431#define PCI_DEVICE_ID_INTEL_VSEC_LNL_M 0x647d
432static const struct pci_device_id intel_vsec_pci_ids[] = {
433 { PCI_DEVICE_DATA(INTEL, VSEC_ADL, &tgl_info) },
434 { PCI_DEVICE_DATA(INTEL, VSEC_DG1, &dg1_info) },
435 { PCI_DEVICE_DATA(INTEL, VSEC_MTL_M, &mtl_info) },
436 { PCI_DEVICE_DATA(INTEL, VSEC_MTL_S, &mtl_info) },
437 { PCI_DEVICE_DATA(INTEL, VSEC_OOBMSM, &oobmsm_info) },
438 { PCI_DEVICE_DATA(INTEL, VSEC_RPL, &tgl_info) },
439 { PCI_DEVICE_DATA(INTEL, VSEC_TGL, &tgl_info) },
440 { PCI_DEVICE_DATA(INTEL, VSEC_LNL_M, &lnl_info) },
441 { }
442};
443MODULE_DEVICE_TABLE(pci, intel_vsec_pci_ids);
444
445static pci_ers_result_t intel_vsec_pci_error_detected(struct pci_dev *pdev,
446 pci_channel_state_t state)
447{
448 pci_ers_result_t status = PCI_ERS_RESULT_NEED_RESET;
449
450 dev_info(&pdev->dev, "PCI error detected, state %d", state);
451
452 if (state == pci_channel_io_perm_failure)
453 status = PCI_ERS_RESULT_DISCONNECT;
454 else
455 pci_disable_device(pdev);
456
457 return status;
458}
459
460static pci_ers_result_t intel_vsec_pci_slot_reset(struct pci_dev *pdev)
461{
462 struct intel_vsec_device *intel_vsec_dev;
463 pci_ers_result_t status = PCI_ERS_RESULT_DISCONNECT;
464 const struct pci_device_id *pci_dev_id;
465 unsigned long index;
466
467 dev_info(&pdev->dev, "Resetting PCI slot\n");
468
469 msleep(2000);
470 if (pci_enable_device(pdev)) {
471 dev_info(&pdev->dev,
472 "Failed to re-enable PCI device after reset.\n");
473 goto out;
474 }
475
476 status = PCI_ERS_RESULT_RECOVERED;
477
478 xa_for_each(&auxdev_array, index, intel_vsec_dev) {
479 /* check if pdev doesn't match */
480 if (pdev != intel_vsec_dev->pcidev)
481 continue;
482 devm_release_action(&pdev->dev, intel_vsec_remove_aux,
483 &intel_vsec_dev->auxdev);
484 }
485 pci_disable_device(pdev);
486 pci_restore_state(pdev);
487 pci_dev_id = pci_match_id(intel_vsec_pci_ids, pdev);
488 intel_vsec_pci_probe(pdev, pci_dev_id);
489
490out:
491 return status;
492}
493
494static void intel_vsec_pci_resume(struct pci_dev *pdev)
495{
496 dev_info(&pdev->dev, "Done resuming PCI device\n");
497}
498
499static const struct pci_error_handlers intel_vsec_pci_err_handlers = {
500 .error_detected = intel_vsec_pci_error_detected,
501 .slot_reset = intel_vsec_pci_slot_reset,
502 .resume = intel_vsec_pci_resume,
503};
504
505static struct pci_driver intel_vsec_pci_driver = {
506 .name = "intel_vsec",
507 .id_table = intel_vsec_pci_ids,
508 .probe = intel_vsec_pci_probe,
509 .err_handler = &intel_vsec_pci_err_handlers,
510};
511module_pci_driver(intel_vsec_pci_driver);
512
513MODULE_AUTHOR("David E. Box <david.e.box@linux.intel.com>");
514MODULE_DESCRIPTION("Intel Extended Capabilities auxiliary bus driver");
515MODULE_LICENSE("GPL v2");