Commit 29292bc6 authored by Jouni Högander's avatar Jouni Högander
parent 942d6541
...@@ -27,6 +27,9 @@ static struct intel_display_params intel_display_modparams __read_mostly = { ...@@ -27,6 +27,9 @@ static struct intel_display_params intel_display_modparams __read_mostly = {
* debugfs mode to 0. * debugfs mode to 0.
*/ */
intel_display_param_named_unsafe(vbt_firmware, charp, 0400,
"Load VBT from specified file under /lib/firmware");
intel_display_param_named_unsafe(enable_fbc, int, 0400, intel_display_param_named_unsafe(enable_fbc, int, 0400,
"Enable frame buffer compression for power savings " "Enable frame buffer compression for power savings "
"(default: -1 (use per-chip default))"); "(default: -1 (use per-chip default))");
......
...@@ -24,6 +24,7 @@ struct drm_i915_private; ...@@ -24,6 +24,7 @@ struct drm_i915_private;
* debugfs file * debugfs file
*/ */
#define INTEL_DISPLAY_PARAMS_FOR_EACH(param) \ #define INTEL_DISPLAY_PARAMS_FOR_EACH(param) \
param(char *, vbt_firmware, NULL, 0400) \
param(int, enable_fbc, -1, 0600) \ param(int, enable_fbc, -1, 0600) \
param(int, enable_psr, -1, 0600) \ param(int, enable_psr, -1, 0600) \
param(bool, psr_safest_params, false, 0400) \ param(bool, psr_safest_params, false, 0400) \
......
...@@ -841,7 +841,7 @@ static int intel_load_vbt_firmware(struct drm_i915_private *dev_priv) ...@@ -841,7 +841,7 @@ static int intel_load_vbt_firmware(struct drm_i915_private *dev_priv)
{ {
struct intel_opregion *opregion = &dev_priv->display.opregion; struct intel_opregion *opregion = &dev_priv->display.opregion;
const struct firmware *fw = NULL; const struct firmware *fw = NULL;
const char *name = dev_priv->params.vbt_firmware; const char *name = dev_priv->display.params.vbt_firmware;
int ret; int ret;
if (!name || !*name) if (!name || !*name)
......
...@@ -87,9 +87,6 @@ i915_param_named_unsafe(vbt_sdvo_panel_type, int, 0400, ...@@ -87,9 +87,6 @@ i915_param_named_unsafe(vbt_sdvo_panel_type, int, 0400,
i915_param_named_unsafe(reset, uint, 0400, i915_param_named_unsafe(reset, uint, 0400,
"Attempt GPU resets (0=disabled, 1=full gpu reset, 2=engine reset [default])"); "Attempt GPU resets (0=disabled, 1=full gpu reset, 2=engine reset [default])");
i915_param_named_unsafe(vbt_firmware, charp, 0400,
"Load VBT from specified file under /lib/firmware");
#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
i915_param_named(error_capture, bool, 0400, i915_param_named(error_capture, bool, 0400,
"Record the GPU state following a hang. " "Record the GPU state following a hang. "
......
...@@ -46,7 +46,6 @@ struct drm_printer; ...@@ -46,7 +46,6 @@ struct drm_printer;
* debugfs file * debugfs file
*/ */
#define I915_PARAMS_FOR_EACH(param) \ #define I915_PARAMS_FOR_EACH(param) \
param(char *, vbt_firmware, NULL, 0400) \
param(int, modeset, -1, 0400) \ param(int, modeset, -1, 0400) \
param(int, lvds_channel_mode, 0, 0400) \ param(int, lvds_channel_mode, 0, 0400) \
param(int, panel_use_ssc, -1, 0600) \ param(int, panel_use_ssc, -1, 0600) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment