include/drm/intel/i915_pxp_tee_interface.h
Source file repositories/reference/linux-study-clean/include/drm/intel/i915_pxp_tee_interface.h
File Facts
- System
- Linux kernel
- Corpus path
include/drm/intel/i915_pxp_tee_interface.h- Extension
.h- Size
- 1370 bytes
- Lines
- 63
- Domain
- Repository Root And Misc
- Bucket
- include
- Inferred role
- Repository Root And Misc: implementation source
- Status
- source implementation candidate
Why This File Exists
Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/mutex.hlinux/device.h
Detected Declarations
struct scatterliststruct i915_pxp_component_opsstruct i915_pxp_component
Annotated Snippet
struct i915_pxp_component_ops {
/**
* @owner: Module providing the ops.
*/
struct module *owner;
/**
* @send: Send a PXP message.
*/
int (*send)(struct device *dev, const void *message, size_t size,
unsigned long timeout_ms);
/**
* @recv: Receive a PXP message.
*/
int (*recv)(struct device *dev, void *buffer, size_t size,
unsigned long timeout_ms);
/**
* @gsc_command: Send a GSC command.
*/
ssize_t (*gsc_command)(struct device *dev, u8 client_id, u32 fence_id,
struct scatterlist *sg_in, size_t total_in_len,
struct scatterlist *sg_out);
};
/**
* struct i915_pxp_component - Used for communication between i915 and TEE
* drivers for the PXP services
*/
struct i915_pxp_component {
/**
* @tee_dev: device that provide the PXP service from TEE Bus.
*/
struct device *tee_dev;
/**
* @ops: Ops implemented by TEE driver, used by i915 driver.
*/
const struct i915_pxp_component_ops *ops;
/**
* @mutex: To protect the above members.
*/
struct mutex mutex;
};
#endif /* _I915_TEE_PXP_INTERFACE_H_ */
Annotation
- Immediate include surface: `linux/mutex.h`, `linux/device.h`.
- Detected declarations: `struct scatterlist`, `struct i915_pxp_component_ops`, `struct i915_pxp_component`.
- Atlas domain: Repository Root And Misc / include.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.