drivers/gpu/drm/xe/xe_printk.h
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xe/xe_printk.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/xe/xe_printk.h- Extension
.h- Size
- 3313 bytes
- Lines
- 130
- Domain
- Driver Families
- Bucket
- drivers/gpu
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
drm/drm_print.hxe_device_types.h
Detected Declarations
function __xe_printfn_errfunction __xe_printfn_infofunction __xe_printfn_dbgfunction xe_err_printerfunction xe_info_printerfunction xe_dbg_printer
Annotated Snippet
#ifndef _XE_PRINTK_H_
#define _XE_PRINTK_H_
#include <drm/drm_print.h>
#include "xe_device_types.h"
#define __XE_PRINTK_FMT(_xe, _fmt, _args...) _fmt, ##_args
#define xe_printk(_xe, _level, _fmt, ...) \
drm_##_level(&(_xe)->drm, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
#define xe_err(_xe, _fmt, ...) \
xe_printk((_xe), err, _fmt, ##__VA_ARGS__)
#define xe_err_once(_xe, _fmt, ...) \
xe_printk((_xe), err_once, _fmt, ##__VA_ARGS__)
#define xe_err_ratelimited(_xe, _fmt, ...) \
xe_printk((_xe), err_ratelimited, _fmt, ##__VA_ARGS__)
#define xe_warn(_xe, _fmt, ...) \
xe_printk((_xe), warn, _fmt, ##__VA_ARGS__)
#define xe_notice(_xe, _fmt, ...) \
xe_printk((_xe), notice, _fmt, ##__VA_ARGS__)
#define xe_info(_xe, _fmt, ...) \
xe_printk((_xe), info, _fmt, ##__VA_ARGS__)
#define xe_dbg(_xe, _fmt, ...) \
xe_printk((_xe), dbg, _fmt, ##__VA_ARGS__)
#define xe_WARN_type(_xe, _type, _condition, _fmt, ...) \
drm_WARN##_type(&(_xe)->drm, _condition, _fmt, ## __VA_ARGS__)
#define xe_WARN(_xe, _condition, _fmt, ...) \
xe_WARN_type((_xe),, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
#define xe_WARN_ONCE(_xe, _condition, _fmt, ...) \
xe_WARN_type((_xe), _ONCE, _condition, __XE_PRINTK_FMT((_xe), _fmt, ## __VA_ARGS__))
#define xe_WARN_ON(_xe, _condition) \
xe_WARN((_xe), _condition, "%s(%s)", "WARN_ON", __stringify(_condition))
#define xe_WARN_ON_ONCE(_xe, _condition) \
xe_WARN_ONCE((_xe), _condition, "%s(%s)", "WARN_ON_ONCE", __stringify(_condition))
static inline void __xe_printfn_err(struct drm_printer *p, struct va_format *vaf)
{
struct xe_device *xe = p->arg;
xe_err(xe, "%pV", vaf);
}
static inline void __xe_printfn_info(struct drm_printer *p, struct va_format *vaf)
{
struct xe_device *xe = p->arg;
xe_info(xe, "%pV", vaf);
}
static inline void __xe_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
{
struct xe_device *xe = p->arg;
struct drm_printer ddp;
/*
* The original xe_dbg() callsite annotations are useless here,
* redirect to the tweaked drm_dbg_printer() instead.
*/
ddp = drm_dbg_printer(&xe->drm, DRM_UT_DRIVER, NULL);
ddp.origin = p->origin;
drm_printf(&ddp, __XE_PRINTK_FMT(xe, "%pV", vaf));
}
/**
* xe_err_printer - Construct a &drm_printer that outputs to xe_err()
* @xe: the &xe_device pointer to use in xe_err()
*
* Return: The &drm_printer object.
*/
static inline struct drm_printer xe_err_printer(struct xe_device *xe)
{
struct drm_printer p = {
.printfn = __xe_printfn_err,
.arg = xe,
};
return p;
Annotation
- Immediate include surface: `drm/drm_print.h`, `xe_device_types.h`.
- Detected declarations: `function __xe_printfn_err`, `function __xe_printfn_info`, `function __xe_printfn_dbg`, `function xe_err_printer`, `function xe_info_printer`, `function xe_dbg_printer`.
- Atlas domain: Driver Families / drivers/gpu.
- 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.