mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 02:46:06 +00:00
6cad22853c
Currently it's not possible to test the WAs for platforms using gmdid since they don't have the IP information on the descriptor struct. In order to allow that, add a stub function for read_gmdid() that is activated when the test executes, replacing the iomap and read of the real register. Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Link: https://lore.kernel.org/r/20231129232807.1499826-5-lucas.demarchi@intel.com Link: https://lore.kernel.org/r/20231205133954.2089546-3-lucas.demarchi@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
24 lines
526 B
C
24 lines
526 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_STEP_H_
|
|
#define _XE_STEP_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include "xe_step_types.h"
|
|
|
|
struct xe_device;
|
|
|
|
struct xe_step_info xe_step_pre_gmdid_get(struct xe_device *xe);
|
|
struct xe_step_info xe_step_gmdid_get(struct xe_device *xe,
|
|
u32 graphics_gmdid_revid,
|
|
u32 media_gmdid_revid);
|
|
static inline u32 xe_step_to_gmdid(enum xe_step step) { return step - STEP_A0; }
|
|
|
|
const char *xe_step_name(enum xe_step step);
|
|
|
|
#endif
|