drm/i915: stop conflating HAS_DISPLAY() and disabled display
Stop setting ->pipe_mask to zero when display is disabled, allowing us to have different code paths for not actually having display hardware, and having display hardware disabled. This lets us develop those two avenues independently. There are no functional changes for when there is no display. However, all uses of for_each_pipe() and for_each_pipe_masked() will start running for the disabled display case. Put one of the more significant ones behind checks for INTEL_DISPLAY_ENABLED(), otherwise the cases should not be hit with disabled display, or they seem benign. Fingers crossed. All in all, this might not be the ideal solution. In fact we may have had something along the lines of this in the past, but we ended up conflating the two cases. Possibly even by recommendation by yours truly; I did not dare dig up that part of the history. But the perfect is the enemy of the good, this is a straightforward change, and lets us get actual work done in both fronts without interfering with each other. Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: José Roberto de Souza <jose.souza@intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190916092901.31440-1-jani.nikula@intel.com
This commit is contained in:
parent
2e7f76c1e4
commit
ef404bc659
|
@ -16167,6 +16167,7 @@ int intel_modeset_init(struct drm_device *dev)
|
||||||
INTEL_NUM_PIPES(dev_priv),
|
INTEL_NUM_PIPES(dev_priv),
|
||||||
INTEL_NUM_PIPES(dev_priv) > 1 ? "s" : "");
|
INTEL_NUM_PIPES(dev_priv) > 1 ? "s" : "");
|
||||||
|
|
||||||
|
if (HAS_DISPLAY(dev_priv) && INTEL_DISPLAY_ENABLED(dev_priv)) {
|
||||||
for_each_pipe(dev_priv, pipe) {
|
for_each_pipe(dev_priv, pipe) {
|
||||||
ret = intel_crtc_init(dev_priv, pipe);
|
ret = intel_crtc_init(dev_priv, pipe);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
@ -16174,6 +16175,7 @@ int intel_modeset_init(struct drm_device *dev)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
intel_shared_dpll_init(dev);
|
intel_shared_dpll_init(dev);
|
||||||
intel_update_fdi_pll_freq(dev_priv);
|
intel_update_fdi_pll_freq(dev_priv);
|
||||||
|
|
|
@ -894,11 +894,7 @@ void intel_device_info_runtime_init(struct drm_i915_private *dev_priv)
|
||||||
runtime->num_sprites[pipe] = 1;
|
runtime->num_sprites[pipe] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i915_modparams.disable_display) {
|
if (HAS_DISPLAY(dev_priv) && IS_GEN_RANGE(dev_priv, 7, 8) &&
|
||||||
DRM_INFO("Display disabled (module parameter)\n");
|
|
||||||
info->pipe_mask = 0;
|
|
||||||
} else if (HAS_DISPLAY(dev_priv) &&
|
|
||||||
(IS_GEN_RANGE(dev_priv, 7, 8)) &&
|
|
||||||
HAS_PCH_SPLIT(dev_priv)) {
|
HAS_PCH_SPLIT(dev_priv)) {
|
||||||
u32 fuse_strap = I915_READ(FUSE_STRAP);
|
u32 fuse_strap = I915_READ(FUSE_STRAP);
|
||||||
u32 sfuse_strap = I915_READ(SFUSE_STRAP);
|
u32 sfuse_strap = I915_READ(SFUSE_STRAP);
|
||||||
|
|
Loading…
Reference in New Issue