]> git.baikalelectronics.ru Git - kernel.git/commit
x86/gpu: Reserve stolen memory for first integrated Intel GPU
authorLucas De Marchi <lucas.demarchi@intel.com>
Fri, 14 Jan 2022 00:28:39 +0000 (16:28 -0800)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 18 Jan 2022 20:19:06 +0000 (14:19 -0600)
commit4622b2515ba76d8dc385becfd6250f1c5299ae8a
treeb87431fad5164121362d182069d0fae99bd8cdca
parentbad68f6c0c96b209be688acd1511fc590315093b
x86/gpu: Reserve stolen memory for first integrated Intel GPU

"Stolen memory" is memory set aside for use by an Intel integrated GPU.
The intel_graphics_quirks() early quirk reserves this memory when it is
called for a GPU that appears in the intel_early_ids[] table of integrated
GPUs.

Previously intel_graphics_quirks() was marked as QFLAG_APPLY_ONCE, so it
was called only for the first Intel GPU found.  If a discrete GPU happened
to be enumerated first, intel_graphics_quirks() was called for it but not
for any integrated GPU found later.  Therefore, stolen memory for such an
integrated GPU was never reserved.

For example, this problem occurs in this Alderlake-P (integrated) + DG2
(discrete) topology where the DG2 is found first, but stolen memory is
associated with the integrated GPU:

  - 00:01.0 Bridge
    `- 03:00.0 DG2 discrete GPU
  - 00:02.0 Integrated GPU (with stolen memory)

Remove the QFLAG_APPLY_ONCE flag and call intel_graphics_quirks() for every
Intel GPU.  Reserve stolen memory for the first GPU that appears in
intel_early_ids[].

[bhelgaas: commit log, add code comment, squash in
https://lore.kernel.org/r/20220118190558.2ququ4vdfjuahicm@ldmartin-desk2]
Link: https://lore.kernel.org/r/20220114002843.2083382-1-lucas.demarchi@intel.com
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: stable@vger.kernel.org
arch/x86/kernel/early-quirks.c