aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/chip.h
diff options
context:
space:
mode:
authorMichael Niewöhner <foss@mniewoehner.de>2020-12-19 14:11:32 +0100
committerNico Huber <nico.h@gmx.de>2021-01-01 21:12:45 +0000
commitc4f8fbdb11ca891e844903643a44cfa6c5bb8871 (patch)
tree2b1df18b5243fdda422ee24da070944c2e9736f5 /src/soc/intel/cannonlake/chip.h
parent97e21d3e956ea2657a63fb98c22548f9fd52afef (diff)
soc/intel/cnl: add panel and backlight configuration code
Add code for panel and backlight configuration. Tested successfully with libgfxinit on Clevo L141CU. Change-Id: If619b28478b4b0d18f28f318c16336e0de76e129 Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48749 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/cannonlake/chip.h')
-rw-r--r--src/soc/intel/cannonlake/chip.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/soc/intel/cannonlake/chip.h b/src/soc/intel/cannonlake/chip.h
index 492ebca9c2..2727aa22a7 100644
--- a/src/soc/intel/cannonlake/chip.h
+++ b/src/soc/intel/cannonlake/chip.h
@@ -5,6 +5,7 @@
#include <intelblocks/cfg.h>
#include <drivers/i2c/designware/dw_i2c.h>
+#include <drivers/intel/gma/gma.h>
#include <intelblocks/gpio.h>
#include <intelblocks/gspi.h>
#include <intelblocks/lpc_lib.h>
@@ -437,6 +438,10 @@ struct soc_intel_cannonlake_config {
* Only override CPU flex ratio if don't want to boot with non-turbo max.
*/
uint8_t cpu_ratio_override;
+
+ struct i915_gpu_panel_config panel_cfg;
+
+ struct i915_gpu_controller_info gfx;
};
typedef struct soc_intel_cannonlake_config config_t;