blob: e9d90b53bbc46325f199a9d684cdf9f5e12430cc [file] [log] [blame]
Alexander Shishkin50352fa2018-03-28 18:46:15 +03001// SPDX-License-Identifier: GPL-2.0
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +03002/*
3 * Intel(R) Trace Hub pci driver
4 *
5 * Copyright (C) 2014-2015 Intel Corporation.
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +03006 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include <linux/types.h>
11#include <linux/module.h>
12#include <linux/device.h>
13#include <linux/sysfs.h>
14#include <linux/pci.h>
15
16#include "intel_th.h"
17
18#define DRIVER_NAME "intel_th_pci"
19
Alexander Shishkindb73a052019-05-03 11:44:36 +030020enum {
21 TH_PCI_CONFIG_BAR = 0,
22 TH_PCI_STH_SW_BAR = 2,
Alexander Shishkinfc027f42019-05-03 11:44:38 +030023 TH_PCI_RTIT_BAR = 4,
Alexander Shishkindb73a052019-05-03 11:44:36 +030024};
25
26#define BAR_MASK (BIT(TH_PCI_CONFIG_BAR) | BIT(TH_PCI_STH_SW_BAR))
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +030027
Alexander Shishkina0e7df32017-02-24 16:09:40 +020028#define PCI_REG_NPKDSC 0x80
29#define NPKDSC_TSACT BIT(5)
30
31static int intel_th_pci_activate(struct intel_th *th)
32{
33 struct pci_dev *pdev = to_pci_dev(th->dev);
34 u32 npkdsc;
35 int err;
36
37 if (!INTEL_TH_CAP(th, tscu_enable))
38 return 0;
39
40 err = pci_read_config_dword(pdev, PCI_REG_NPKDSC, &npkdsc);
41 if (!err) {
42 npkdsc |= NPKDSC_TSACT;
43 err = pci_write_config_dword(pdev, PCI_REG_NPKDSC, npkdsc);
44 }
45
46 if (err)
47 dev_err(&pdev->dev, "failed to read NPKDSC register\n");
48
49 return err;
50}
51
52static void intel_th_pci_deactivate(struct intel_th *th)
53{
54 struct pci_dev *pdev = to_pci_dev(th->dev);
55 u32 npkdsc;
56 int err;
57
58 if (!INTEL_TH_CAP(th, tscu_enable))
59 return;
60
61 err = pci_read_config_dword(pdev, PCI_REG_NPKDSC, &npkdsc);
62 if (!err) {
63 npkdsc |= NPKDSC_TSACT;
64 err = pci_write_config_dword(pdev, PCI_REG_NPKDSC, npkdsc);
65 }
66
67 if (err)
68 dev_err(&pdev->dev, "failed to read NPKDSC register\n");
69}
70
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +030071static int intel_th_pci_probe(struct pci_dev *pdev,
72 const struct pci_device_id *id)
73{
Alexander Shishkin33213712017-08-18 17:57:35 +030074 struct intel_th_drvdata *drvdata = (void *)id->driver_data;
Alexander Shishkin7b7036d2019-05-03 11:44:40 +030075 struct resource resource[TH_MMIO_END + TH_NVEC_MAX] = {
Alexander Shishkindb73a052019-05-03 11:44:36 +030076 [TH_MMIO_CONFIG] = pdev->resource[TH_PCI_CONFIG_BAR],
77 [TH_MMIO_SW] = pdev->resource[TH_PCI_STH_SW_BAR],
78 };
Alexander Shishkin7b7036d2019-05-03 11:44:40 +030079 int err, r = TH_MMIO_SW + 1, i;
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +030080 struct intel_th *th;
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +030081
82 err = pcim_enable_device(pdev);
83 if (err)
84 return err;
85
86 err = pcim_iomap_regions_request_all(pdev, BAR_MASK, DRIVER_NAME);
87 if (err)
88 return err;
89
Alexander Shishkinfc027f42019-05-03 11:44:38 +030090 if (pdev->resource[TH_PCI_RTIT_BAR].start) {
91 resource[TH_MMIO_RTIT] = pdev->resource[TH_PCI_RTIT_BAR];
92 r++;
93 }
94
Alexander Shishkin7b7036d2019-05-03 11:44:40 +030095 err = pci_alloc_irq_vectors(pdev, 1, 8, PCI_IRQ_ALL_TYPES);
96 if (err > 0)
97 for (i = 0; i < err; i++, r++) {
98 resource[r].flags = IORESOURCE_IRQ;
99 resource[r].start = pci_irq_vector(pdev, i);
100 }
Alexander Shishkin62a59302019-05-03 11:44:39 +0300101
102 th = intel_th_alloc(&pdev->dev, drvdata, resource, r);
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +0300103 if (IS_ERR(th))
104 return PTR_ERR(th);
105
Alexander Shishkina0e7df32017-02-24 16:09:40 +0200106 th->activate = intel_th_pci_activate;
107 th->deactivate = intel_th_pci_deactivate;
108
Alexander Shishkine9b2b3e2017-08-10 11:10:58 +0300109 pci_set_master(pdev);
110
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +0300111 return 0;
112}
113
114static void intel_th_pci_remove(struct pci_dev *pdev)
115{
116 struct intel_th *th = pci_get_drvdata(pdev);
117
118 intel_th_free(th);
Alexander Shishkin7b7036d2019-05-03 11:44:40 +0300119
120 pci_free_irq_vectors(pdev);
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +0300121}
122
Alexander Shishkina0e7df32017-02-24 16:09:40 +0200123static const struct intel_th_drvdata intel_th_2x = {
124 .tscu_enable = 1,
Alexander Shishkin4c5bb6e2019-05-03 11:44:42 +0300125 .has_mintctl = 1,
Alexander Shishkina0e7df32017-02-24 16:09:40 +0200126};
127
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +0300128static const struct pci_device_id intel_th_pci_id_table[] = {
129 {
130 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9d26),
131 .driver_data = (kernel_ulong_t)0,
132 },
133 {
134 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa126),
135 .driver_data = (kernel_ulong_t)0,
136 },
Alexander Shishkin6396b912015-12-22 17:25:22 +0200137 {
138 /* Apollo Lake */
139 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x5a8e),
140 .driver_data = (kernel_ulong_t)0,
141 },
Alexander Shishkin3f040882015-12-22 17:25:23 +0200142 {
143 /* Broxton */
144 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0a80),
145 .driver_data = (kernel_ulong_t)0,
146 },
Alexander Shishkinaaa3ca82016-04-08 18:26:52 +0300147 {
148 /* Broxton B-step */
149 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x1a8e),
150 .driver_data = (kernel_ulong_t)0,
151 },
Alexander Shishkin7a1a47c2016-06-28 18:55:23 +0300152 {
153 /* Kaby Lake PCH-H */
154 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa2a6),
155 .driver_data = (kernel_ulong_t)0,
156 },
Alexander Shishkin5118ccd2015-09-08 14:03:55 +0300157 {
158 /* Denverton */
159 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x19e1),
160 .driver_data = (kernel_ulong_t)0,
161 },
Alexander Shishkin340837f2016-06-30 16:10:51 +0300162 {
Alexander Shishkin24600842017-09-19 18:47:42 +0300163 /* Lewisburg PCH */
164 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa1a6),
165 .driver_data = (kernel_ulong_t)0,
166 },
167 {
Alexander Shishkin164eb562019-08-21 10:49:54 +0300168 /* Lewisburg PCH */
169 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa226),
170 .driver_data = (kernel_ulong_t)0,
171 },
172 {
Alexander Shishkin340837f2016-06-30 16:10:51 +0300173 /* Gemini Lake */
174 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x318e),
Alexander Shishkina0e7df32017-02-24 16:09:40 +0200175 .driver_data = (kernel_ulong_t)&intel_th_2x,
Alexander Shishkin340837f2016-06-30 16:10:51 +0300176 },
Alexander Shishkin84331e12016-06-30 16:11:13 +0300177 {
178 /* Cannon Lake H */
179 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa326),
Alexander Shishkina0e7df32017-02-24 16:09:40 +0200180 .driver_data = (kernel_ulong_t)&intel_th_2x,
Alexander Shishkin84331e12016-06-30 16:11:13 +0300181 },
Alexander Shishkinefb36692016-06-30 16:11:31 +0300182 {
183 /* Cannon Lake LP */
184 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9da6),
Alexander Shishkina0e7df32017-02-24 16:09:40 +0200185 .driver_data = (kernel_ulong_t)&intel_th_2x,
Alexander Shishkinefb36692016-06-30 16:11:31 +0300186 },
Alexander Shishkin920ce7c2017-09-19 18:47:41 +0300187 {
188 /* Cedar Fork PCH */
189 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x18e1),
190 .driver_data = (kernel_ulong_t)&intel_th_2x,
191 },
Alexander Shishkin59d08d002018-09-18 16:10:49 +0300192 {
193 /* Ice Lake PCH */
194 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x34a6),
195 .driver_data = (kernel_ulong_t)&intel_th_2x,
196 },
Alexander Shishkine60e9a42019-04-17 10:35:36 +0300197 {
198 /* Comet Lake */
199 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x02a6),
200 .driver_data = (kernel_ulong_t)&intel_th_2x,
201 },
Alexander Shishkin4aa5aed2019-06-21 19:19:30 +0300202 {
Alexander Shishkin3adbb572019-10-28 09:06:50 +0200203 /* Comet Lake PCH */
204 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x06a6),
205 .driver_data = (kernel_ulong_t)&intel_th_2x,
206 },
207 {
Alexander Shishkine4de2a52019-12-17 13:55:24 +0200208 /* Comet Lake PCH-V */
209 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa3a6),
210 .driver_data = (kernel_ulong_t)&intel_th_2x,
211 },
212 {
Alexander Shishkin4aa5aed2019-06-21 19:19:30 +0300213 /* Ice Lake NNPI */
214 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x45c5),
215 .driver_data = (kernel_ulong_t)&intel_th_2x,
216 },
Alexander Shishkin9c782552019-08-21 10:49:55 +0300217 {
Alexander Shishkin6a174342019-11-20 15:08:05 +0200218 /* Ice Lake CPU */
219 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8a29),
220 .driver_data = (kernel_ulong_t)&intel_th_2x,
221 },
222 {
Alexander Shishkin6e6c18b2019-11-20 15:08:06 +0200223 /* Tiger Lake CPU */
224 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9a33),
225 .driver_data = (kernel_ulong_t)&intel_th_2x,
226 },
227 {
Alexander Shishkin9c782552019-08-21 10:49:55 +0300228 /* Tiger Lake PCH */
229 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa0a6),
230 .driver_data = (kernel_ulong_t)&intel_th_2x,
231 },
Alexander Shishkin9d554992019-10-28 09:06:51 +0200232 {
233 /* Jasper Lake PCH */
234 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4da6),
235 .driver_data = (kernel_ulong_t)&intel_th_2x,
236 },
Alexander Shishkin88385862019-12-17 13:55:25 +0200237 {
238 /* Elkhart Lake */
239 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4b26),
240 .driver_data = (kernel_ulong_t)&intel_th_2x,
241 },
Alexander Shishkin2b0b16d2015-09-22 15:47:15 +0300242 { 0 },
243};
244
245MODULE_DEVICE_TABLE(pci, intel_th_pci_id_table);
246
247static struct pci_driver intel_th_pci_driver = {
248 .name = DRIVER_NAME,
249 .id_table = intel_th_pci_id_table,
250 .probe = intel_th_pci_probe,
251 .remove = intel_th_pci_remove,
252};
253
254module_pci_driver(intel_th_pci_driver);
255
256MODULE_LICENSE("GPL v2");
257MODULE_DESCRIPTION("Intel(R) Trace Hub PCI controller driver");
258MODULE_AUTHOR("Alexander Shishkin <alexander.shishkin@intel.com>");