mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 12:46:53 +07:00
ab3595bc4f
Sometimes it would be most enlightening to debug systems by replacing the VBT to be used. For example, in the referenced bug the BIOS provides different VBT depending on the boot mode (UEFI vs. legacy). It would be interesting to try the failing boot mode with the VBT from the working boot, and see if that makes a difference. Add a module parameter to load the VBT using the firmware loader, not unlike the EDID firmware mechanism. As a starting point for experimenting, one can pick up the BIOS provided VBT from /sys/kernel/debug/dri/0/i915_opregion/i915_vbt. v2: clarify firmware load return value check (Bob) v3: kfree the loaded firmware blob References: https://bugs.freedesktop.org/show_bug.cgi?id=97822#c83 Reviewed-by: Bob Paauwe <bob.j.paauwe@intel.com> Acked-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20170817115209.25912-1-jani.nikula@intel.com
83 lines
2.7 KiB
C
83 lines
2.7 KiB
C
/*
|
|
* Copyright © 2015 Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#ifndef _I915_PARAMS_H_
|
|
#define _I915_PARAMS_H_
|
|
|
|
#include <linux/cache.h> /* for __read_mostly */
|
|
|
|
#define I915_PARAMS_FOR_EACH(func) \
|
|
func(char *, vbt_firmware); \
|
|
func(int, modeset); \
|
|
func(int, panel_ignore_lid); \
|
|
func(int, semaphores); \
|
|
func(int, lvds_channel_mode); \
|
|
func(int, panel_use_ssc); \
|
|
func(int, vbt_sdvo_panel_type); \
|
|
func(int, enable_rc6); \
|
|
func(int, enable_dc); \
|
|
func(int, enable_fbc); \
|
|
func(int, enable_ppgtt); \
|
|
func(int, enable_execlists); \
|
|
func(int, enable_psr); \
|
|
func(int, disable_power_well); \
|
|
func(int, enable_ips); \
|
|
func(int, invert_brightness); \
|
|
func(int, enable_guc_loading); \
|
|
func(int, enable_guc_submission); \
|
|
func(int, guc_log_level); \
|
|
func(char *, guc_firmware_path); \
|
|
func(char *, huc_firmware_path); \
|
|
func(int, use_mmio_flip); \
|
|
func(int, mmio_debug); \
|
|
func(int, edp_vswing); \
|
|
func(int, reset); \
|
|
func(unsigned int, inject_load_failure); \
|
|
/* leave bools at the end to not create holes */ \
|
|
func(bool, alpha_support); \
|
|
func(bool, enable_cmd_parser); \
|
|
func(bool, enable_hangcheck); \
|
|
func(bool, fastboot); \
|
|
func(bool, prefault_disable); \
|
|
func(bool, load_detect_test); \
|
|
func(bool, force_reset_modeset_test); \
|
|
func(bool, error_capture); \
|
|
func(bool, disable_display); \
|
|
func(bool, verbose_state_checks); \
|
|
func(bool, nuclear_pageflip); \
|
|
func(bool, enable_dp_mst); \
|
|
func(bool, enable_dpcd_backlight); \
|
|
func(bool, enable_gvt)
|
|
|
|
#define MEMBER(T, member) T member
|
|
struct i915_params {
|
|
I915_PARAMS_FOR_EACH(MEMBER);
|
|
};
|
|
#undef MEMBER
|
|
|
|
extern struct i915_params i915 __read_mostly;
|
|
|
|
#endif
|
|
|