diff options
author | Jeremy Compostella <jeremy.compostella@intel.com> | 2022-12-02 10:59:49 -0700 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-01-12 02:55:53 +0000 |
commit | 9df11973ca315594edede104ea71edc9c4af7521 (patch) | |
tree | fb1b291bf6f90aa461ae7221b0d933fec5f8f3f5 /src/soc/intel/alderlake/chip.h | |
parent | 4475263bdf6fc712600ef6b7d6faca6a7683353b (diff) |
soc/intel/alderlake: Add romstage early graphics support
BUG=b:252792591
BRANCH=firmware-brya-14505.B
TEST=Verify that VGA text mode is functional in romstage
Change-Id: I727b28bbe180edc2574e09bf03f1534d6282bdb2
Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70303
Reviewed-by: Tarun Tuli <taruntuli@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/alderlake/chip.h')
-rw-r--r-- | src/soc/intel/alderlake/chip.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/chip.h b/src/soc/intel/alderlake/chip.h index 18429b8236..5173b1cf03 100644 --- a/src/soc/intel/alderlake/chip.h +++ b/src/soc/intel/alderlake/chip.h @@ -674,6 +674,11 @@ struct soc_intel_alderlake_config { /* i915 struct for GMA backlight control */ struct i915_gpu_controller_info gfx; + + /* + * IGD panel configuration + */ + struct i915_gpu_panel_config panel_cfg; }; typedef struct soc_intel_alderlake_config config_t; |