blob: 04828482600b26434ff0ce78c975c6b6cddb5a63 [file] [log] [blame]
Alexander Shishkin39f40342015-09-22 15:47:14 +03001/*
2 * Intel(R) Trace Hub data structures
3 *
4 * Copyright (C) 2014-2015 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 */
15
16#ifndef __INTEL_TH_H__
17#define __INTEL_TH_H__
18
19/* intel_th_device device types */
20enum {
21 /* Devices that generate trace data */
22 INTEL_TH_SOURCE = 0,
23 /* Output ports (MSC, PTI) */
24 INTEL_TH_OUTPUT,
25 /* Switch, the Global Trace Hub (GTH) */
26 INTEL_TH_SWITCH,
27};
28
29/**
30 * struct intel_th_output - descriptor INTEL_TH_OUTPUT type devices
31 * @port: output port number, assigned by the switch
32 * @type: GTH_{MSU,CTP,PTI}
Alexander Shishkin4d02cef2016-02-15 19:11:55 +020033 * @scratchpad: scratchpad bits to flag when this output is enabled
Alexander Shishkin39f40342015-09-22 15:47:14 +030034 * @multiblock: true for multiblock output configuration
35 * @active: true when this output is enabled
36 *
37 * Output port descriptor, used by switch driver to tell which output
38 * port this output device corresponds to. Filled in at output device's
39 * probe time by switch::assign(). Passed from output device driver to
40 * switch related code to enable/disable its port.
41 */
42struct intel_th_output {
43 int port;
44 unsigned int type;
Alexander Shishkin4d02cef2016-02-15 19:11:55 +020045 unsigned int scratchpad;
Alexander Shishkin39f40342015-09-22 15:47:14 +030046 bool multiblock;
47 bool active;
48};
49
50/**
51 * struct intel_th_device - device on the intel_th bus
52 * @dev: device
53 * @resource: array of resources available to this device
54 * @num_resources: number of resources in @resource array
55 * @type: INTEL_TH_{SOURCE,OUTPUT,SWITCH}
56 * @id: device instance or -1
57 * @output: output descriptor for INTEL_TH_OUTPUT devices
58 * @name: device name to match the driver
59 */
60struct intel_th_device {
61 struct device dev;
62 struct resource *resource;
63 unsigned int num_resources;
64 unsigned int type;
65 int id;
66
67 /* INTEL_TH_OUTPUT specific */
68 struct intel_th_output output;
69
70 char name[];
71};
72
73#define to_intel_th_device(_d) \
74 container_of((_d), struct intel_th_device, dev)
75
76/**
77 * intel_th_device_get_resource() - obtain @num'th resource of type @type
78 * @thdev: the device to search the resource for
79 * @type: resource type
80 * @num: number of the resource
81 */
82static inline struct resource *
83intel_th_device_get_resource(struct intel_th_device *thdev, unsigned int type,
84 unsigned int num)
85{
86 int i;
87
88 for (i = 0; i < thdev->num_resources; i++)
89 if (resource_type(&thdev->resource[i]) == type && !num--)
90 return &thdev->resource[i];
91
92 return NULL;
93}
94
95/**
96 * intel_th_output_assigned() - if an output device is assigned to a switch port
97 * @thdev: the output device
98 *
99 * Return: true if the device is INTEL_TH_OUTPUT *and* is assigned a port
100 */
101static inline bool
102intel_th_output_assigned(struct intel_th_device *thdev)
103{
104 return thdev->type == INTEL_TH_OUTPUT &&
105 thdev->output.port >= 0;
106}
107
108/**
109 * struct intel_th_driver - driver for an intel_th_device device
110 * @driver: generic driver
111 * @probe: probe method
112 * @remove: remove method
113 * @assign: match a given output type device against available outputs
114 * @unassign: deassociate an output type device from an output port
115 * @enable: enable tracing for a given output device
116 * @disable: disable tracing for a given output device
117 * @fops: file operations for device nodes
Alexander Shishkinb5edbf12016-03-04 19:42:48 +0200118 * @attr_group: attributes provided by the driver
Alexander Shishkin39f40342015-09-22 15:47:14 +0300119 *
120 * Callbacks @probe and @remove are required for all device types.
121 * Switch device driver needs to fill in @assign, @enable and @disable
122 * callbacks.
123 */
124struct intel_th_driver {
125 struct device_driver driver;
126 int (*probe)(struct intel_th_device *thdev);
127 void (*remove)(struct intel_th_device *thdev);
128 /* switch (GTH) ops */
129 int (*assign)(struct intel_th_device *thdev,
130 struct intel_th_device *othdev);
131 void (*unassign)(struct intel_th_device *thdev,
132 struct intel_th_device *othdev);
133 void (*enable)(struct intel_th_device *thdev,
134 struct intel_th_output *output);
135 void (*disable)(struct intel_th_device *thdev,
136 struct intel_th_output *output);
137 /* output ops */
138 void (*irq)(struct intel_th_device *thdev);
139 int (*activate)(struct intel_th_device *thdev);
140 void (*deactivate)(struct intel_th_device *thdev);
141 /* file_operations for those who want a device node */
142 const struct file_operations *fops;
Alexander Shishkinb5edbf12016-03-04 19:42:48 +0200143 /* optional attributes */
144 struct attribute_group *attr_group;
Alexander Shishkin39f40342015-09-22 15:47:14 +0300145
146 /* source ops */
147 int (*set_output)(struct intel_th_device *thdev,
148 unsigned int master);
149};
150
151#define to_intel_th_driver(_d) \
152 container_of((_d), struct intel_th_driver, driver)
153
Alexander Shishkinf18a9532016-03-07 17:04:45 +0200154#define to_intel_th_driver_or_null(_d) \
155 ((_d) ? to_intel_th_driver(_d) : NULL)
156
Alexander Shishkin39f40342015-09-22 15:47:14 +0300157static inline struct intel_th_device *
158to_intel_th_hub(struct intel_th_device *thdev)
159{
160 struct device *parent = thdev->dev.parent;
161
162 if (!parent)
163 return NULL;
164
165 return to_intel_th_device(parent);
166}
167
168struct intel_th *
169intel_th_alloc(struct device *dev, struct resource *devres,
170 unsigned int ndevres, int irq);
171void intel_th_free(struct intel_th *th);
172
173int intel_th_driver_register(struct intel_th_driver *thdrv);
174void intel_th_driver_unregister(struct intel_th_driver *thdrv);
175
176int intel_th_trace_enable(struct intel_th_device *thdev);
177int intel_th_trace_disable(struct intel_th_device *thdev);
178int intel_th_set_output(struct intel_th_device *thdev,
179 unsigned int master);
180
181enum {
182 TH_MMIO_CONFIG = 0,
183 TH_MMIO_SW = 2,
184 TH_MMIO_END,
185};
186
187#define TH_SUBDEVICE_MAX 6
188#define TH_POSSIBLE_OUTPUTS 8
189#define TH_CONFIGURABLE_MASTERS 256
190#define TH_MSC_MAX 2
191
192/**
193 * struct intel_th - Intel TH controller
194 * @dev: driver core's device
195 * @thdev: subdevices
196 * @hub: "switch" subdevice (GTH)
197 * @id: this Intel TH controller's device ID in the system
198 * @major: device node major for output devices
199 */
200struct intel_th {
201 struct device *dev;
202
203 struct intel_th_device *thdev[TH_SUBDEVICE_MAX];
204 struct intel_th_device *hub;
205
206 int id;
207 int major;
Alexander Shishkina36aa802016-06-30 11:51:44 +0300208#ifdef CONFIG_MODULES
209 struct work_struct request_module_work;
210#endif /* CONFIG_MODULES */
Alexander Shishkin39f40342015-09-22 15:47:14 +0300211#ifdef CONFIG_INTEL_TH_DEBUG
212 struct dentry *dbg;
213#endif
214};
215
216/*
217 * Register windows
218 */
219enum {
220 /* Global Trace Hub (GTH) */
221 REG_GTH_OFFSET = 0x0000,
222 REG_GTH_LENGTH = 0x2000,
223
224 /* Software Trace Hub (STH) [0x4000..0x4fff] */
225 REG_STH_OFFSET = 0x4000,
226 REG_STH_LENGTH = 0x2000,
227
228 /* Memory Storage Unit (MSU) [0xa0000..0xa1fff] */
229 REG_MSU_OFFSET = 0xa0000,
230 REG_MSU_LENGTH = 0x02000,
231
232 /* Internal MSU trace buffer [0x80000..0x9ffff] */
233 BUF_MSU_OFFSET = 0x80000,
234 BUF_MSU_LENGTH = 0x20000,
235
236 /* PTI output == same window as GTH */
237 REG_PTI_OFFSET = REG_GTH_OFFSET,
238 REG_PTI_LENGTH = REG_GTH_LENGTH,
239
240 /* DCI Handler (DCIH) == some window as MSU */
241 REG_DCIH_OFFSET = REG_MSU_OFFSET,
242 REG_DCIH_LENGTH = REG_MSU_LENGTH,
243};
244
245/*
246 * GTH, output ports configuration
247 */
248enum {
249 GTH_NONE = 0,
250 GTH_MSU, /* memory/usb */
251 GTH_CTP, /* Common Trace Port */
252 GTH_PTI = 4, /* MIPI-PTI */
253};
254
Alexander Shishkin4d02cef2016-02-15 19:11:55 +0200255/*
256 * Scratchpad bits: tell firmware and external debuggers
257 * what we are up to.
258 */
259enum {
260 /* Memory is the primary destination */
261 SCRPD_MEM_IS_PRIM_DEST = BIT(0),
262 /* XHCI DbC is the primary destination */
263 SCRPD_DBC_IS_PRIM_DEST = BIT(1),
264 /* PTI is the primary destination */
265 SCRPD_PTI_IS_PRIM_DEST = BIT(2),
266 /* BSSB is the primary destination */
267 SCRPD_BSSB_IS_PRIM_DEST = BIT(3),
268 /* PTI is the alternate destination */
269 SCRPD_PTI_IS_ALT_DEST = BIT(4),
270 /* BSSB is the alternate destination */
271 SCRPD_BSSB_IS_ALT_DEST = BIT(5),
272 /* DeepSx exit occurred */
273 SCRPD_DEEPSX_EXIT = BIT(6),
274 /* S4 exit occurred */
275 SCRPD_S4_EXIT = BIT(7),
276 /* S5 exit occurred */
277 SCRPD_S5_EXIT = BIT(8),
278 /* MSU controller 0/1 is enabled */
279 SCRPD_MSC0_IS_ENABLED = BIT(9),
280 SCRPD_MSC1_IS_ENABLED = BIT(10),
281 /* Sx exit occurred */
282 SCRPD_SX_EXIT = BIT(11),
283 /* Trigger Unit is enabled */
284 SCRPD_TRIGGER_IS_ENABLED = BIT(12),
285 SCRPD_ODLA_IS_ENABLED = BIT(13),
286 SCRPD_SOCHAP_IS_ENABLED = BIT(14),
287 SCRPD_STH_IS_ENABLED = BIT(15),
288 SCRPD_DCIH_IS_ENABLED = BIT(16),
289 SCRPD_VER_IS_ENABLED = BIT(17),
290 /* External debugger is using Intel TH */
291 SCRPD_DEBUGGER_IN_USE = BIT(24),
292};
293
Alexander Shishkin39f40342015-09-22 15:47:14 +0300294#endif