Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at for-next 28 lines 657 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6#ifndef _XE_REG_SR_ 7#define _XE_REG_SR_ 8 9/* 10 * Reg save/restore bookkeeping 11 */ 12 13struct xe_device; 14struct xe_gt; 15struct xe_hw_engine; 16struct xe_reg_sr; 17struct xe_reg_sr_entry; 18struct drm_printer; 19 20int xe_reg_sr_init(struct xe_reg_sr *sr, const char *name, struct xe_device *xe); 21void xe_reg_sr_dump(struct xe_reg_sr *sr, struct drm_printer *p); 22 23int xe_reg_sr_add(struct xe_reg_sr *sr, const struct xe_reg_sr_entry *e, 24 struct xe_gt *gt); 25void xe_reg_sr_apply_mmio(struct xe_reg_sr *sr, struct xe_gt *gt); 26void xe_reg_sr_apply_whitelist(struct xe_hw_engine *hwe); 27 28#endif