diff options
author | Jani Nikula <jani.nikula@intel.com> | 2021-01-08 19:44:09 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2021-01-14 10:19:12 +0200 |
commit | abad6805ee78945d0a36c408997c01055e7077fb (patch) | |
tree | 1cb195af4c9f6a382c094c466c1905c22a728795 /drivers/gpu/drm/i915/Makefile | |
parent | 7853b437391afbfdb65b3de3afb0c52afada4972 (diff) | |
download | linux-abad6805ee78945d0a36c408997c01055e7077fb.tar.bz2 |
drm/i915/pps: abstract panel power sequencer from intel_dp.c
In a long overdue refactoring, split out all panel sequencer code from
intel_dp.c to new intel_pps.[ch].
The first part is mostly just code movement as-is, without cleanups or
functional changes.
We need to add a vlv_get_dpll() helper to get at the vlv/chv dpll from
pps code.
v2: Rebase.
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/14cc59d5734432ad976cd49ff8efce8fa413e5b2.1610127741.git.jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/Makefile')
-rw-r--r-- | drivers/gpu/drm/i915/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index eb0d710cff8c..80b4429ce993 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -248,6 +248,7 @@ i915-y += \ display/intel_lspcon.o \ display/intel_lvds.o \ display/intel_panel.o \ + display/intel_pps.o \ display/intel_sdvo.o \ display/intel_tv.o \ display/intel_vdsc.o \ |