]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/hwtracing/intel_th/pci.c
intel_th: msu: Fix single mode with disabled IOMMU
[mirror_ubuntu-hirsute-kernel.git] / drivers / hwtracing / intel_th / pci.c
CommitLineData
50352fa7 1// SPDX-License-Identifier: GPL-2.0
2b0b16d3
AS
2/*
3 * Intel(R) Trace Hub pci driver
4 *
5 * Copyright (C) 2014-2015 Intel Corporation.
2b0b16d3
AS
6 */
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
db73a059
AS
20enum {
21 TH_PCI_CONFIG_BAR = 0,
22 TH_PCI_STH_SW_BAR = 2,
fc027f4c 23 TH_PCI_RTIT_BAR = 4,
db73a059
AS
24};
25
26#define BAR_MASK (BIT(TH_PCI_CONFIG_BAR) | BIT(TH_PCI_STH_SW_BAR))
2b0b16d3 27
a0e7df33
AS
28#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
2b0b16d3
AS
71static int intel_th_pci_probe(struct pci_dev *pdev,
72 const struct pci_device_id *id)
73{
3321371b 74 struct intel_th_drvdata *drvdata = (void *)id->driver_data;
7b7036d4 75 struct resource resource[TH_MMIO_END + TH_NVEC_MAX] = {
db73a059
AS
76 [TH_MMIO_CONFIG] = pdev->resource[TH_PCI_CONFIG_BAR],
77 [TH_MMIO_SW] = pdev->resource[TH_PCI_STH_SW_BAR],
78 };
7b7036d4 79 int err, r = TH_MMIO_SW + 1, i;
2b0b16d3 80 struct intel_th *th;
2b0b16d3
AS
81
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
fc027f4c
AS
90 if (pdev->resource[TH_PCI_RTIT_BAR].start) {
91 resource[TH_MMIO_RTIT] = pdev->resource[TH_PCI_RTIT_BAR];
92 r++;
93 }
94
7b7036d4
AS
95 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 }
62a59302
AS
101
102 th = intel_th_alloc(&pdev->dev, drvdata, resource, r);
2b0b16d3
AS
103 if (IS_ERR(th))
104 return PTR_ERR(th);
2b0b16d3 105
a0e7df33
AS
106 th->activate = intel_th_pci_activate;
107 th->deactivate = intel_th_pci_deactivate;
108
e9b2b3e7
AS
109 pci_set_master(pdev);
110
2b0b16d3
AS
111 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);
7b7036d4
AS
119
120 pci_free_irq_vectors(pdev);
2b0b16d3
AS
121}
122
a0e7df33
AS
123static const struct intel_th_drvdata intel_th_2x = {
124 .tscu_enable = 1,
4c5bb6eb 125 .has_mintctl = 1,
a0e7df33
AS
126};
127
2b0b16d3
AS
128static 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 },
6396b912
AS
137 {
138 /* Apollo Lake */
139 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x5a8e),
140 .driver_data = (kernel_ulong_t)0,
141 },
3f040887
AS
142 {
143 /* Broxton */
144 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0a80),
145 .driver_data = (kernel_ulong_t)0,
146 },
aaa3ca82
AS
147 {
148 /* Broxton B-step */
149 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x1a8e),
150 .driver_data = (kernel_ulong_t)0,
151 },
7a1a47ce
AS
152 {
153 /* Kaby Lake PCH-H */
154 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa2a6),
155 .driver_data = (kernel_ulong_t)0,
156 },
5118ccd3
AS
157 {
158 /* Denverton */
159 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x19e1),
160 .driver_data = (kernel_ulong_t)0,
161 },
24600840
AS
162 {
163 /* Lewisburg PCH */
164 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa1a6),
165 .driver_data = (kernel_ulong_t)0,
166 },
340837f9
AS
167 {
168 /* Gemini Lake */
169 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x318e),
a0e7df33 170 .driver_data = (kernel_ulong_t)&intel_th_2x,
340837f9 171 },
84331e13
AS
172 {
173 /* Cannon Lake H */
174 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa326),
a0e7df33 175 .driver_data = (kernel_ulong_t)&intel_th_2x,
84331e13 176 },
efb3669e
AS
177 {
178 /* Cannon Lake LP */
179 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x9da6),
a0e7df33 180 .driver_data = (kernel_ulong_t)&intel_th_2x,
efb3669e 181 },
920ce7c3
AS
182 {
183 /* Cedar Fork PCH */
184 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x18e1),
185 .driver_data = (kernel_ulong_t)&intel_th_2x,
186 },
59d08d00
AS
187 {
188 /* Ice Lake PCH */
189 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x34a6),
190 .driver_data = (kernel_ulong_t)&intel_th_2x,
191 },
e60e9a4b
AS
192 {
193 /* Comet Lake */
194 PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x02a6),
195 .driver_data = (kernel_ulong_t)&intel_th_2x,
196 },
2b0b16d3
AS
197 { 0 },
198};
199
200MODULE_DEVICE_TABLE(pci, intel_th_pci_id_table);
201
202static struct pci_driver intel_th_pci_driver = {
203 .name = DRIVER_NAME,
204 .id_table = intel_th_pci_id_table,
205 .probe = intel_th_pci_probe,
206 .remove = intel_th_pci_remove,
207};
208
209module_pci_driver(intel_th_pci_driver);
210
211MODULE_LICENSE("GPL v2");
212MODULE_DESCRIPTION("Intel(R) Trace Hub PCI controller driver");
213MODULE_AUTHOR("Alexander Shishkin <alexander.shishkin@intel.com>");