1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2023 Intel Corporation 4 */ 5 6 #ifndef _XE_GT_PRINTK_H_ 7 #define _XE_GT_PRINTK_H_ 8 9 #include <drm/drm_print.h> 10 11 #include "xe_device_types.h" 12 13 #define xe_gt_printk(_gt, _level, _fmt, ...) \ 14 drm_##_level(>_to_xe(_gt)->drm, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__) 15 16 #define xe_gt_err(_gt, _fmt, ...) \ 17 xe_gt_printk((_gt), err, _fmt, ##__VA_ARGS__) 18 19 #define xe_gt_warn(_gt, _fmt, ...) \ 20 xe_gt_printk((_gt), warn, _fmt, ##__VA_ARGS__) 21 22 #define xe_gt_notice(_gt, _fmt, ...) \ 23 xe_gt_printk((_gt), notice, _fmt, ##__VA_ARGS__) 24 25 #define xe_gt_info(_gt, _fmt, ...) \ 26 xe_gt_printk((_gt), info, _fmt, ##__VA_ARGS__) 27 28 #define xe_gt_dbg(_gt, _fmt, ...) \ 29 xe_gt_printk((_gt), dbg, _fmt, ##__VA_ARGS__) 30 31 #define xe_gt_err_ratelimited(_gt, _fmt, ...) \ 32 xe_gt_printk((_gt), err_ratelimited, _fmt, ##__VA_ARGS__) 33 34 #define xe_gt_WARN(_gt, _condition, _fmt, ...) \ 35 drm_WARN(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__) 36 37 #define xe_gt_WARN_ONCE(_gt, _condition, _fmt, ...) \ 38 drm_WARN_ONCE(>_to_xe(_gt)->drm, _condition, "GT%u: " _fmt, (_gt)->info.id, ##__VA_ARGS__) 39 40 #define xe_gt_WARN_ON(_gt, _condition) \ 41 xe_gt_WARN((_gt), _condition, "%s(%s)", "gt_WARN_ON", __stringify(_condition)) 42 43 #define xe_gt_WARN_ON_ONCE(_gt, _condition) \ 44 xe_gt_WARN_ONCE((_gt), _condition, "%s(%s)", "gt_WARN_ON_ONCE", __stringify(_condition)) 45 46 #endif 47