Lines Matching +full:0 +full:xe

32 static inline struct xe_device *xe_device_const_cast(const struct xe_device *xe)  in xe_device_const_cast()  argument
34 return (struct xe_device *)xe; in xe_device_const_cast()
44 int xe_device_probe_early(struct xe_device *xe);
45 int xe_device_probe(struct xe_device *xe);
46 void xe_device_remove(struct xe_device *xe);
47 void xe_device_shutdown(struct xe_device *xe);
49 void xe_device_wmb(struct xe_device *xe);
56 static inline struct xe_tile *xe_device_get_root_tile(struct xe_device *xe) in xe_device_get_root_tile() argument
58 return &xe->tiles[0]; in xe_device_get_root_tile()
66 gt_id = 0; in xe_tile_get_gt()
71 static inline struct xe_gt *xe_device_get_gt(struct xe_device *xe, u8 gt_id) in xe_device_get_gt() argument
73 struct xe_tile *root_tile = xe_device_get_root_tile(xe); in xe_device_get_gt()
83 if (MEDIA_VER(xe) >= 13) { in xe_device_get_gt()
86 if (drm_WARN_ON(&xe->drm, gt_id >= XE_MAX_TILES_PER_DEVICE)) in xe_device_get_gt()
87 gt_id = 0; in xe_device_get_gt()
89 gt = xe->tiles[gt_id].primary_gt; in xe_device_get_gt()
95 drm_WARN_ON(&xe->drm, gt->info.id != gt_id); in xe_device_get_gt()
96 drm_WARN_ON(&xe->drm, gt->info.type == XE_GT_TYPE_UNINITIALIZED); in xe_device_get_gt()
113 static inline struct xe_gt *xe_root_mmio_gt(struct xe_device *xe) in xe_root_mmio_gt() argument
115 return xe_device_get_root_tile(xe)->primary_gt; in xe_root_mmio_gt()
118 static inline bool xe_device_uc_enabled(struct xe_device *xe) in xe_device_uc_enabled() argument
120 return !xe->info.force_execlist; in xe_device_uc_enabled()
124 for ((id__) = 0; (id__) < (xe__)->info.tile_count; (id__)++) \
136 for ((id__) = 0; (id__) < (xe__)->info.gt_count; (id__)++) \
144 void xe_device_assert_mem_access(struct xe_device *xe);
146 static inline bool xe_device_has_flat_ccs(struct xe_device *xe) in xe_device_has_flat_ccs() argument
148 return xe->info.has_flat_ccs; in xe_device_has_flat_ccs()
151 static inline bool xe_device_has_sriov(struct xe_device *xe) in xe_device_has_sriov() argument
153 return xe->info.has_sriov; in xe_device_has_sriov()
156 static inline bool xe_device_has_memirq(struct xe_device *xe) in xe_device_has_memirq() argument
158 return GRAPHICS_VERx100(xe) >= 1250; in xe_device_has_memirq()
161 u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size);
163 void xe_device_snapshot_print(struct xe_device *xe, struct drm_printer *p);
165 u64 xe_device_canonicalize_addr(struct xe_device *xe, u64 address);
166 u64 xe_device_uncanonicalize_addr(struct xe_device *xe, u64 address);
168 void xe_device_td_flush(struct xe_device *xe);
169 void xe_device_l2_flush(struct xe_device *xe);
171 static inline bool xe_device_wedged(struct xe_device *xe) in xe_device_wedged() argument
173 return atomic_read(&xe->wedged.flag); in xe_device_wedged()
176 void xe_device_declare_wedged(struct xe_device *xe);
186 * and this is beyond xe kmd.