/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _INTEL_VSEC_H #define _INTEL_VSEC_H #include <linux/auxiliary_bus.h> #include <linux/bits.h> #define VSEC_CAP_TELEMETRY … #define VSEC_CAP_WATCHER … #define VSEC_CAP_CRASHLOG … #define VSEC_CAP_SDSI … #define VSEC_CAP_TPMI … /* Intel DVSEC offsets */ #define INTEL_DVSEC_ENTRIES … #define INTEL_DVSEC_SIZE … #define INTEL_DVSEC_TABLE … #define INTEL_DVSEC_TABLE_BAR(x) … #define INTEL_DVSEC_TABLE_OFFSET(x) … #define TABLE_OFFSET_SHIFT … struct pci_dev; struct resource; enum intel_vsec_id { … }; /** * struct intel_vsec_header - Common fields of Intel VSEC and DVSEC registers. * @rev: Revision ID of the VSEC/DVSEC register space * @length: Length of the VSEC/DVSEC register space * @id: ID of the feature * @num_entries: Number of instances of the feature * @entry_size: Size of the discovery table for each feature * @tbir: BAR containing the discovery tables * @offset: BAR offset of start of the first discovery table */ struct intel_vsec_header { … }; enum intel_vsec_quirks { … }; /** * struct pmt_callbacks - Callback infrastructure for PMT devices * ->read_telem() when specified, called by client driver to access PMT data (instead * of direct copy). * @pdev: PCI device reference for the callback's use * @guid: ID of data to acccss * @data: buffer for the data to be copied * @count: size of buffer */ struct pmt_callbacks { … }; /** * struct intel_vsec_platform_info - Platform specific data * @parent: parent device in the auxbus chain * @headers: list of headers to define the PMT client devices to create * @priv_data: private data, usable by parent devices, currently a callback * @caps: bitmask of PMT capabilities for the given headers * @quirks: bitmask of VSEC device quirks * @base_addr: allow a base address to be specified (rather than derived) */ struct intel_vsec_platform_info { … }; /** * struct intel_sec_device - Auxbus specific device information * @auxdev: auxbus device struct for auxbus access * @pcidev: pci device associated with the device * @resource: any resources shared by the parent * @ida: id reference * @num_resources: number of resources * @id: xarray id * @priv_data: any private data needed * @quirks: specified quirks * @base_addr: base address of entries (if specified) */ struct intel_vsec_device { … }; int intel_vsec_add_aux(struct pci_dev *pdev, struct device *parent, struct intel_vsec_device *intel_vsec_dev, const char *name); static inline struct intel_vsec_device *dev_to_ivdev(struct device *dev) { … } static inline struct intel_vsec_device *auxdev_to_ivdev(struct auxiliary_device *auxdev) { … } #if IS_ENABLED(CONFIG_INTEL_VSEC) void intel_vsec_register(struct pci_dev *pdev, struct intel_vsec_platform_info *info); #else static inline void intel_vsec_register(struct pci_dev *pdev, struct intel_vsec_platform_info *info) { } #endif #endif