mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-05 05:32:05 +00:00
dm: pci: pt: use uint64_t for igd dsm gpa/hpa
Since Intel Processor Graphics Gen11, Base Data of Stolen Memory (BDSM) register is extended to 64 bit, allowing BIOS to assign an above 4G address. This patch changes the type of hpa/gpa variables to uint64_t to properly handle such case. Tracked-On: #8432 Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com> Reviewed-by: Jian Jun Chen <jian.jun.chen@intel.com>
This commit is contained in:
parent
adc384b9ac
commit
dbaa099dd7
@ -60,8 +60,8 @@
|
||||
|
||||
extern uint64_t audio_nhlt_len;
|
||||
|
||||
uint32_t gpu_dsm_hpa = 0;
|
||||
uint32_t gpu_dsm_gpa = 0;
|
||||
uint64_t gpu_dsm_hpa = 0;
|
||||
uint64_t gpu_dsm_gpa = 0;
|
||||
uint32_t gpu_opregion_hpa = 0;
|
||||
uint32_t gpu_opregion_gpa = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user