Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | // SPDX-License-Identifier: GPL-2.0 /* * Intel Platform Monitoring Technology Crashlog driver * * Copyright (c) 2020, Intel Corporation. * All Rights Reserved. * * Author: "Alexander Duyck" <alexander.h.duyck@linux.intel.com> */ #include <linux/auxiliary_bus.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/pci.h> #include <linux/slab.h> #include <linux/uaccess.h> #include <linux/overflow.h> #include "../vsec.h" #include "class.h" /* Crashlog discovery header types */ #define CRASH_TYPE_OOBMSM 1 /* Control Flags */ #define CRASHLOG_FLAG_DISABLE BIT(28) /* * Bits 29 and 30 control the state of bit 31. * * Bit 29 will clear bit 31, if set, allowing a new crashlog to be captured. * Bit 30 will immediately trigger a crashlog to be generated, setting bit 31. * Bit 31 is the read-only status with a 1 indicating log is complete. */ #define CRASHLOG_FLAG_TRIGGER_CLEAR BIT(29) #define CRASHLOG_FLAG_TRIGGER_EXECUTE BIT(30) #define CRASHLOG_FLAG_TRIGGER_COMPLETE BIT(31) #define CRASHLOG_FLAG_TRIGGER_MASK GENMASK(31, 28) /* Crashlog Discovery Header */ #define CONTROL_OFFSET 0x0 #define GUID_OFFSET 0x4 #define BASE_OFFSET 0x8 #define SIZE_OFFSET 0xC #define GET_ACCESS(v) ((v) & GENMASK(3, 0)) #define GET_TYPE(v) (((v) & GENMASK(7, 4)) >> 4) #define GET_VERSION(v) (((v) & GENMASK(19, 16)) >> 16) /* size is in bytes */ #define GET_SIZE(v) ((v) * sizeof(u32)) struct crashlog_entry { /* entry must be first member of struct */ struct intel_pmt_entry entry; struct mutex control_mutex; }; struct pmt_crashlog_priv { int num_entries; struct crashlog_entry entry[]; }; /* * I/O */ static bool pmt_crashlog_complete(struct intel_pmt_entry *entry) { u32 control = readl(entry->disc_table + CONTROL_OFFSET); /* return current value of the crashlog complete flag */ return !!(control & CRASHLOG_FLAG_TRIGGER_COMPLETE); } static bool pmt_crashlog_disabled(struct intel_pmt_entry *entry) { u32 control = readl(entry->disc_table + CONTROL_OFFSET); /* return current value of the crashlog disabled flag */ return !!(control & CRASHLOG_FLAG_DISABLE); } static bool pmt_crashlog_supported(struct intel_pmt_entry *entry) { u32 discovery_header = readl(entry->disc_table + CONTROL_OFFSET); u32 crash_type, version; crash_type = GET_TYPE(discovery_header); version = GET_VERSION(discovery_header); /* * Currently we only recognize OOBMSM version 0 devices. * We can ignore all other crashlog devices in the system. */ return crash_type == CRASH_TYPE_OOBMSM && version == 0; } static void pmt_crashlog_set_disable(struct intel_pmt_entry *entry, bool disable) { u32 control = readl(entry->disc_table + CONTROL_OFFSET); /* clear trigger bits so we are only modifying disable flag */ control &= ~CRASHLOG_FLAG_TRIGGER_MASK; if (disable) control |= CRASHLOG_FLAG_DISABLE; else control &= ~CRASHLOG_FLAG_DISABLE; writel(control, entry->disc_table + CONTROL_OFFSET); } static void pmt_crashlog_set_clear(struct intel_pmt_entry *entry) { u32 control = readl(entry->disc_table + CONTROL_OFFSET); control &= ~CRASHLOG_FLAG_TRIGGER_MASK; control |= CRASHLOG_FLAG_TRIGGER_CLEAR; writel(control, entry->disc_table + CONTROL_OFFSET); } static void pmt_crashlog_set_execute(struct intel_pmt_entry *entry) { u32 control = readl(entry->disc_table + CONTROL_OFFSET); control &= ~CRASHLOG_FLAG_TRIGGER_MASK; control |= CRASHLOG_FLAG_TRIGGER_EXECUTE; writel(control, entry->disc_table + CONTROL_OFFSET); } /* * sysfs */ static ssize_t enable_show(struct device *dev, struct device_attribute *attr, char *buf) { struct intel_pmt_entry *entry = dev_get_drvdata(dev); int enabled = !pmt_crashlog_disabled(entry); return sprintf(buf, "%d\n", enabled); } static ssize_t enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct crashlog_entry *entry; bool enabled; int result; entry = dev_get_drvdata(dev); result = kstrtobool(buf, &enabled); if (result) return result; mutex_lock(&entry->control_mutex); pmt_crashlog_set_disable(&entry->entry, !enabled); mutex_unlock(&entry->control_mutex); return count; } static DEVICE_ATTR_RW(enable); static ssize_t trigger_show(struct device *dev, struct device_attribute *attr, char *buf) { struct intel_pmt_entry *entry; int trigger; entry = dev_get_drvdata(dev); trigger = pmt_crashlog_complete(entry); return sprintf(buf, "%d\n", trigger); } static ssize_t trigger_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { struct crashlog_entry *entry; bool trigger; int result; entry = dev_get_drvdata(dev); result = kstrtobool(buf, &trigger); if (result) return result; mutex_lock(&entry->control_mutex); if (!trigger) { pmt_crashlog_set_clear(&entry->entry); } else if (pmt_crashlog_complete(&entry->entry)) { /* we cannot trigger a new crash if one is still pending */ result = -EEXIST; goto err; } else if (pmt_crashlog_disabled(&entry->entry)) { /* if device is currently disabled, return busy */ result = -EBUSY; goto err; } else { pmt_crashlog_set_execute(&entry->entry); } result = count; err: mutex_unlock(&entry->control_mutex); return result; } static DEVICE_ATTR_RW(trigger); static struct attribute *pmt_crashlog_attrs[] = { &dev_attr_enable.attr, &dev_attr_trigger.attr, NULL }; static const struct attribute_group pmt_crashlog_group = { .attrs = pmt_crashlog_attrs, }; static int pmt_crashlog_header_decode(struct intel_pmt_entry *entry, struct intel_pmt_header *header, struct device *dev) { void __iomem *disc_table = entry->disc_table; struct crashlog_entry *crashlog; if (!pmt_crashlog_supported(entry)) return 1; /* initialize control mutex */ crashlog = container_of(entry, struct crashlog_entry, entry); mutex_init(&crashlog->control_mutex); header->access_type = GET_ACCESS(readl(disc_table)); header->guid = readl(disc_table + GUID_OFFSET); header->base_offset = readl(disc_table + BASE_OFFSET); /* Size is measured in DWORDS, but accessor returns bytes */ header->size = GET_SIZE(readl(disc_table + SIZE_OFFSET)); return 0; } static DEFINE_XARRAY_ALLOC(crashlog_array); static struct intel_pmt_namespace pmt_crashlog_ns = { .name = "crashlog", .xa = &crashlog_array, .attr_grp = &pmt_crashlog_group, .pmt_header_decode = pmt_crashlog_header_decode, }; /* * initialization */ static void pmt_crashlog_remove(struct auxiliary_device *auxdev) { struct pmt_crashlog_priv *priv = auxiliary_get_drvdata(auxdev); int i; for (i = 0; i < priv->num_entries; i++) intel_pmt_dev_destroy(&priv->entry[i].entry, &pmt_crashlog_ns); } static int pmt_crashlog_probe(struct auxiliary_device *auxdev, const struct auxiliary_device_id *id) { struct intel_vsec_device *intel_vsec_dev = auxdev_to_ivdev(auxdev); struct pmt_crashlog_priv *priv; size_t size; int i, ret; size = struct_size(priv, entry, intel_vsec_dev->num_resources); priv = devm_kzalloc(&auxdev->dev, size, GFP_KERNEL); if (!priv) return -ENOMEM; auxiliary_set_drvdata(auxdev, priv); for (i = 0; i < intel_vsec_dev->num_resources; i++) { struct intel_pmt_entry *entry = &priv->entry[priv->num_entries].entry; ret = intel_pmt_dev_create(entry, &pmt_crashlog_ns, intel_vsec_dev, i); if (ret < 0) goto abort_probe; if (ret) continue; priv->num_entries++; } return 0; abort_probe: pmt_crashlog_remove(auxdev); return ret; } static const struct auxiliary_device_id pmt_crashlog_id_table[] = { { .name = "intel_vsec.crashlog" }, {} }; MODULE_DEVICE_TABLE(auxiliary, pmt_crashlog_id_table); static struct auxiliary_driver pmt_crashlog_aux_driver = { .id_table = pmt_crashlog_id_table, .remove = pmt_crashlog_remove, .probe = pmt_crashlog_probe, }; static int __init pmt_crashlog_init(void) { return auxiliary_driver_register(&pmt_crashlog_aux_driver); } static void __exit pmt_crashlog_exit(void) { auxiliary_driver_unregister(&pmt_crashlog_aux_driver); xa_destroy(&crashlog_array); } module_init(pmt_crashlog_init); module_exit(pmt_crashlog_exit); MODULE_AUTHOR("Alexander Duyck <alexander.h.duyck@linux.intel.com>"); MODULE_DESCRIPTION("Intel PMT Crashlog driver"); MODULE_LICENSE("GPL v2"); MODULE_IMPORT_NS(INTEL_PMT); |