Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 1 | /* |
| 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 */ |
| 20 | enum { |
| 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 Shishkin | 4d02cef | 2016-02-15 19:11:55 +0200 | [diff] [blame] | 33 | * @scratchpad: scratchpad bits to flag when this output is enabled |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 34 | * @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 | */ |
| 42 | struct intel_th_output { |
| 43 | int port; |
| 44 | unsigned int type; |
Alexander Shishkin | 4d02cef | 2016-02-15 19:11:55 +0200 | [diff] [blame] | 45 | unsigned int scratchpad; |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 46 | 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 |
Alexander Shishkin | c49a759 | 2016-09-19 17:07:47 +0300 | [diff] [blame] | 57 | * @host_mode: Intel TH is controlled by an external debug host |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 58 | * @output: output descriptor for INTEL_TH_OUTPUT devices |
| 59 | * @name: device name to match the driver |
| 60 | */ |
| 61 | struct intel_th_device { |
| 62 | struct device dev; |
| 63 | struct resource *resource; |
| 64 | unsigned int num_resources; |
| 65 | unsigned int type; |
| 66 | int id; |
| 67 | |
Alexander Shishkin | c49a759 | 2016-09-19 17:07:47 +0300 | [diff] [blame] | 68 | /* INTEL_TH_SWITCH specific */ |
| 69 | bool host_mode; |
| 70 | |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 71 | /* INTEL_TH_OUTPUT specific */ |
| 72 | struct intel_th_output output; |
| 73 | |
| 74 | char name[]; |
| 75 | }; |
| 76 | |
| 77 | #define to_intel_th_device(_d) \ |
| 78 | container_of((_d), struct intel_th_device, dev) |
| 79 | |
| 80 | /** |
| 81 | * intel_th_device_get_resource() - obtain @num'th resource of type @type |
| 82 | * @thdev: the device to search the resource for |
| 83 | * @type: resource type |
| 84 | * @num: number of the resource |
| 85 | */ |
| 86 | static inline struct resource * |
| 87 | intel_th_device_get_resource(struct intel_th_device *thdev, unsigned int type, |
| 88 | unsigned int num) |
| 89 | { |
| 90 | int i; |
| 91 | |
| 92 | for (i = 0; i < thdev->num_resources; i++) |
| 93 | if (resource_type(&thdev->resource[i]) == type && !num--) |
| 94 | return &thdev->resource[i]; |
| 95 | |
| 96 | return NULL; |
| 97 | } |
| 98 | |
Alexander Shishkin | 5376be6 | 2016-11-18 14:51:05 +0200 | [diff] [blame] | 99 | /* |
| 100 | * GTH, output ports configuration |
| 101 | */ |
| 102 | enum { |
| 103 | GTH_NONE = 0, |
| 104 | GTH_MSU, /* memory/usb */ |
| 105 | GTH_CTP, /* Common Trace Port */ |
| 106 | GTH_PTI = 4, /* MIPI-PTI */ |
| 107 | }; |
| 108 | |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 109 | /** |
| 110 | * intel_th_output_assigned() - if an output device is assigned to a switch port |
| 111 | * @thdev: the output device |
| 112 | * |
| 113 | * Return: true if the device is INTEL_TH_OUTPUT *and* is assigned a port |
| 114 | */ |
| 115 | static inline bool |
| 116 | intel_th_output_assigned(struct intel_th_device *thdev) |
| 117 | { |
| 118 | return thdev->type == INTEL_TH_OUTPUT && |
Alexander Shishkin | 5376be6 | 2016-11-18 14:51:05 +0200 | [diff] [blame] | 119 | (thdev->output.port >= 0 || |
| 120 | thdev->output.type == GTH_NONE); |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | /** |
| 124 | * struct intel_th_driver - driver for an intel_th_device device |
| 125 | * @driver: generic driver |
| 126 | * @probe: probe method |
| 127 | * @remove: remove method |
| 128 | * @assign: match a given output type device against available outputs |
| 129 | * @unassign: deassociate an output type device from an output port |
| 130 | * @enable: enable tracing for a given output device |
| 131 | * @disable: disable tracing for a given output device |
Alexander Shishkin | bd581f2 | 2016-06-29 19:35:22 +0300 | [diff] [blame] | 132 | * @irq: interrupt callback |
| 133 | * @activate: enable tracing on the output's side |
| 134 | * @deactivate: disable tracing on the output's side |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 135 | * @fops: file operations for device nodes |
Alexander Shishkin | b5edbf1 | 2016-03-04 19:42:48 +0200 | [diff] [blame] | 136 | * @attr_group: attributes provided by the driver |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 137 | * |
| 138 | * Callbacks @probe and @remove are required for all device types. |
| 139 | * Switch device driver needs to fill in @assign, @enable and @disable |
| 140 | * callbacks. |
| 141 | */ |
| 142 | struct intel_th_driver { |
| 143 | struct device_driver driver; |
| 144 | int (*probe)(struct intel_th_device *thdev); |
| 145 | void (*remove)(struct intel_th_device *thdev); |
| 146 | /* switch (GTH) ops */ |
| 147 | int (*assign)(struct intel_th_device *thdev, |
| 148 | struct intel_th_device *othdev); |
| 149 | void (*unassign)(struct intel_th_device *thdev, |
| 150 | struct intel_th_device *othdev); |
| 151 | void (*enable)(struct intel_th_device *thdev, |
| 152 | struct intel_th_output *output); |
| 153 | void (*disable)(struct intel_th_device *thdev, |
| 154 | struct intel_th_output *output); |
| 155 | /* output ops */ |
| 156 | void (*irq)(struct intel_th_device *thdev); |
| 157 | int (*activate)(struct intel_th_device *thdev); |
| 158 | void (*deactivate)(struct intel_th_device *thdev); |
| 159 | /* file_operations for those who want a device node */ |
| 160 | const struct file_operations *fops; |
Alexander Shishkin | b5edbf1 | 2016-03-04 19:42:48 +0200 | [diff] [blame] | 161 | /* optional attributes */ |
| 162 | struct attribute_group *attr_group; |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 163 | |
| 164 | /* source ops */ |
| 165 | int (*set_output)(struct intel_th_device *thdev, |
| 166 | unsigned int master); |
| 167 | }; |
| 168 | |
| 169 | #define to_intel_th_driver(_d) \ |
| 170 | container_of((_d), struct intel_th_driver, driver) |
| 171 | |
Alexander Shishkin | f18a953 | 2016-03-07 17:04:45 +0200 | [diff] [blame] | 172 | #define to_intel_th_driver_or_null(_d) \ |
| 173 | ((_d) ? to_intel_th_driver(_d) : NULL) |
| 174 | |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 175 | static inline struct intel_th_device * |
Alexander Shishkin | 5e06723 | 2016-11-18 15:05:01 +0200 | [diff] [blame^] | 176 | to_intel_th_parent(struct intel_th_device *thdev) |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 177 | { |
| 178 | struct device *parent = thdev->dev.parent; |
| 179 | |
| 180 | if (!parent) |
| 181 | return NULL; |
| 182 | |
| 183 | return to_intel_th_device(parent); |
| 184 | } |
| 185 | |
Alexander Shishkin | 5e06723 | 2016-11-18 15:05:01 +0200 | [diff] [blame^] | 186 | static inline struct intel_th_device * |
| 187 | to_intel_th_hub(struct intel_th_device *thdev) |
| 188 | { |
| 189 | /* |
| 190 | * subdevice tree is flat: if this one is not a switch, its |
| 191 | * parent must be |
| 192 | */ |
| 193 | if (thdev->type == INTEL_TH_SWITCH) |
| 194 | return thdev; |
| 195 | |
| 196 | return to_intel_th_parent(thdev); |
| 197 | } |
| 198 | |
| 199 | static inline struct intel_th *to_intel_th(struct intel_th_device *thdev) |
| 200 | { |
| 201 | thdev = to_intel_th_hub(thdev); |
| 202 | |
| 203 | if (WARN_ON_ONCE(!thdev || thdev->type != INTEL_TH_SWITCH)) |
| 204 | return NULL; |
| 205 | |
| 206 | return dev_get_drvdata(thdev->dev.parent); |
| 207 | } |
| 208 | |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 209 | struct intel_th * |
| 210 | intel_th_alloc(struct device *dev, struct resource *devres, |
| 211 | unsigned int ndevres, int irq); |
| 212 | void intel_th_free(struct intel_th *th); |
| 213 | |
| 214 | int intel_th_driver_register(struct intel_th_driver *thdrv); |
| 215 | void intel_th_driver_unregister(struct intel_th_driver *thdrv); |
| 216 | |
| 217 | int intel_th_trace_enable(struct intel_th_device *thdev); |
| 218 | int intel_th_trace_disable(struct intel_th_device *thdev); |
| 219 | int intel_th_set_output(struct intel_th_device *thdev, |
| 220 | unsigned int master); |
| 221 | |
| 222 | enum { |
| 223 | TH_MMIO_CONFIG = 0, |
| 224 | TH_MMIO_SW = 2, |
| 225 | TH_MMIO_END, |
| 226 | }; |
| 227 | |
| 228 | #define TH_SUBDEVICE_MAX 6 |
| 229 | #define TH_POSSIBLE_OUTPUTS 8 |
| 230 | #define TH_CONFIGURABLE_MASTERS 256 |
| 231 | #define TH_MSC_MAX 2 |
| 232 | |
| 233 | /** |
| 234 | * struct intel_th - Intel TH controller |
| 235 | * @dev: driver core's device |
| 236 | * @thdev: subdevices |
| 237 | * @hub: "switch" subdevice (GTH) |
| 238 | * @id: this Intel TH controller's device ID in the system |
| 239 | * @major: device node major for output devices |
| 240 | */ |
| 241 | struct intel_th { |
| 242 | struct device *dev; |
| 243 | |
| 244 | struct intel_th_device *thdev[TH_SUBDEVICE_MAX]; |
| 245 | struct intel_th_device *hub; |
| 246 | |
| 247 | int id; |
| 248 | int major; |
Alexander Shishkin | a36aa80 | 2016-06-30 11:51:44 +0300 | [diff] [blame] | 249 | #ifdef CONFIG_MODULES |
| 250 | struct work_struct request_module_work; |
| 251 | #endif /* CONFIG_MODULES */ |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 252 | #ifdef CONFIG_INTEL_TH_DEBUG |
| 253 | struct dentry *dbg; |
| 254 | #endif |
| 255 | }; |
| 256 | |
| 257 | /* |
| 258 | * Register windows |
| 259 | */ |
| 260 | enum { |
| 261 | /* Global Trace Hub (GTH) */ |
| 262 | REG_GTH_OFFSET = 0x0000, |
| 263 | REG_GTH_LENGTH = 0x2000, |
| 264 | |
| 265 | /* Software Trace Hub (STH) [0x4000..0x4fff] */ |
| 266 | REG_STH_OFFSET = 0x4000, |
| 267 | REG_STH_LENGTH = 0x2000, |
| 268 | |
| 269 | /* Memory Storage Unit (MSU) [0xa0000..0xa1fff] */ |
| 270 | REG_MSU_OFFSET = 0xa0000, |
| 271 | REG_MSU_LENGTH = 0x02000, |
| 272 | |
| 273 | /* Internal MSU trace buffer [0x80000..0x9ffff] */ |
| 274 | BUF_MSU_OFFSET = 0x80000, |
| 275 | BUF_MSU_LENGTH = 0x20000, |
| 276 | |
| 277 | /* PTI output == same window as GTH */ |
| 278 | REG_PTI_OFFSET = REG_GTH_OFFSET, |
| 279 | REG_PTI_LENGTH = REG_GTH_LENGTH, |
| 280 | |
| 281 | /* DCI Handler (DCIH) == some window as MSU */ |
| 282 | REG_DCIH_OFFSET = REG_MSU_OFFSET, |
| 283 | REG_DCIH_LENGTH = REG_MSU_LENGTH, |
| 284 | }; |
| 285 | |
| 286 | /* |
Alexander Shishkin | 4d02cef | 2016-02-15 19:11:55 +0200 | [diff] [blame] | 287 | * Scratchpad bits: tell firmware and external debuggers |
| 288 | * what we are up to. |
| 289 | */ |
| 290 | enum { |
| 291 | /* Memory is the primary destination */ |
| 292 | SCRPD_MEM_IS_PRIM_DEST = BIT(0), |
| 293 | /* XHCI DbC is the primary destination */ |
| 294 | SCRPD_DBC_IS_PRIM_DEST = BIT(1), |
| 295 | /* PTI is the primary destination */ |
| 296 | SCRPD_PTI_IS_PRIM_DEST = BIT(2), |
| 297 | /* BSSB is the primary destination */ |
| 298 | SCRPD_BSSB_IS_PRIM_DEST = BIT(3), |
| 299 | /* PTI is the alternate destination */ |
| 300 | SCRPD_PTI_IS_ALT_DEST = BIT(4), |
| 301 | /* BSSB is the alternate destination */ |
| 302 | SCRPD_BSSB_IS_ALT_DEST = BIT(5), |
| 303 | /* DeepSx exit occurred */ |
| 304 | SCRPD_DEEPSX_EXIT = BIT(6), |
| 305 | /* S4 exit occurred */ |
| 306 | SCRPD_S4_EXIT = BIT(7), |
| 307 | /* S5 exit occurred */ |
| 308 | SCRPD_S5_EXIT = BIT(8), |
| 309 | /* MSU controller 0/1 is enabled */ |
| 310 | SCRPD_MSC0_IS_ENABLED = BIT(9), |
| 311 | SCRPD_MSC1_IS_ENABLED = BIT(10), |
| 312 | /* Sx exit occurred */ |
| 313 | SCRPD_SX_EXIT = BIT(11), |
| 314 | /* Trigger Unit is enabled */ |
| 315 | SCRPD_TRIGGER_IS_ENABLED = BIT(12), |
| 316 | SCRPD_ODLA_IS_ENABLED = BIT(13), |
| 317 | SCRPD_SOCHAP_IS_ENABLED = BIT(14), |
| 318 | SCRPD_STH_IS_ENABLED = BIT(15), |
| 319 | SCRPD_DCIH_IS_ENABLED = BIT(16), |
| 320 | SCRPD_VER_IS_ENABLED = BIT(17), |
| 321 | /* External debugger is using Intel TH */ |
| 322 | SCRPD_DEBUGGER_IN_USE = BIT(24), |
| 323 | }; |
| 324 | |
Alexander Shishkin | 39f4034 | 2015-09-22 15:47:14 +0300 | [diff] [blame] | 325 | #endif |