mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
SoC remapper is used to map different HW functions in the SoC to their respective drivers. Initialize SoC remapper during driver load. Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com> Link: https://patch.msgid.link/20251223183943.3175941-6-umesh.nerlige.ramappa@intel.com
14 lines
225 B
C
14 lines
225 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2025 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_SOC_REMAPPER_H_
|
|
#define _XE_SOC_REMAPPER_H_
|
|
|
|
#include "xe_device_types.h"
|
|
|
|
int xe_soc_remapper_init(struct xe_device *xe);
|
|
|
|
#endif
|