1 1.6 riastrad /* $NetBSD: i915_params.c,v 1.6 2021/12/19 01:43:51 riastradh Exp $ */ 2 1.3 riastrad 3 1.1 riastrad /* 4 1.1 riastrad * Copyright 2014 Intel Corporation 5 1.1 riastrad * 6 1.1 riastrad * Permission is hereby granted, free of charge, to any person obtaining a 7 1.1 riastrad * copy of this software and associated documentation files (the 8 1.1 riastrad * "Software"), to deal in the Software without restriction, including 9 1.1 riastrad * without limitation the rights to use, copy, modify, merge, publish, 10 1.1 riastrad * distribute, sub license, and/or sell copies of the Software, and to 11 1.1 riastrad * permit persons to whom the Software is furnished to do so, subject to 12 1.1 riastrad * the following conditions: 13 1.1 riastrad * 14 1.1 riastrad * The above copyright notice and this permission notice (including the 15 1.1 riastrad * next paragraph) shall be included in all copies or substantial portions 16 1.1 riastrad * of the Software. 17 1.1 riastrad * 18 1.1 riastrad * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 1.1 riastrad * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 1.1 riastrad * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 1.1 riastrad * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 1.1 riastrad * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 23 1.1 riastrad * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 24 1.1 riastrad * IN THE SOFTWARE. 25 1.1 riastrad */ 26 1.1 riastrad 27 1.3 riastrad #include <sys/cdefs.h> 28 1.6 riastrad __KERNEL_RCSID(0, "$NetBSD: i915_params.c,v 1.6 2021/12/19 01:43:51 riastradh Exp $"); 29 1.3 riastrad 30 1.5 riastrad #include <drm/drm_print.h> 31 1.5 riastrad 32 1.5 riastrad #include "i915_params.h" 33 1.1 riastrad #include "i915_drv.h" 34 1.1 riastrad 35 1.5 riastrad #define i915_param_named(name, T, perm, desc) \ 36 1.5 riastrad module_param_named(name, i915_modparams.name, T, perm); \ 37 1.5 riastrad MODULE_PARM_DESC(name, desc) 38 1.5 riastrad #define i915_param_named_unsafe(name, T, perm, desc) \ 39 1.5 riastrad module_param_named_unsafe(name, i915_modparams.name, T, perm); \ 40 1.5 riastrad MODULE_PARM_DESC(name, desc) 41 1.5 riastrad 42 1.5 riastrad struct i915_params i915_modparams __read_mostly = { 43 1.5 riastrad #define MEMBER(T, member, value) .member = (value), 44 1.5 riastrad I915_PARAMS_FOR_EACH(MEMBER) 45 1.5 riastrad #undef MEMBER 46 1.1 riastrad }; 47 1.1 riastrad 48 1.5 riastrad i915_param_named(modeset, int, 0400, 49 1.3 riastrad "Use kernel modesetting [KMS] (0=disable, " 50 1.1 riastrad "1=on, -1=force vga console preference [default])"); 51 1.1 riastrad 52 1.5 riastrad i915_param_named_unsafe(enable_dc, int, 0400, 53 1.5 riastrad "Enable power-saving display C-states. " 54 1.5 riastrad "(-1=auto [default]; 0=disable; 1=up to DC5; 2=up to DC6; " 55 1.5 riastrad "3=up to DC5 with DC3CO; 4=up to DC6 with DC3CO)"); 56 1.1 riastrad 57 1.5 riastrad i915_param_named_unsafe(enable_fbc, int, 0600, 58 1.1 riastrad "Enable frame buffer compression for power savings " 59 1.1 riastrad "(default: -1 (use per-chip default))"); 60 1.1 riastrad 61 1.5 riastrad i915_param_named_unsafe(lvds_channel_mode, int, 0400, 62 1.1 riastrad "Specify LVDS channel mode " 63 1.1 riastrad "(0=probe BIOS [default], 1=single-channel, 2=dual-channel)"); 64 1.1 riastrad 65 1.5 riastrad i915_param_named_unsafe(panel_use_ssc, int, 0600, 66 1.1 riastrad "Use Spread Spectrum Clock with panels [LVDS/eDP] " 67 1.1 riastrad "(default: auto from VBT)"); 68 1.1 riastrad 69 1.5 riastrad i915_param_named_unsafe(vbt_sdvo_panel_type, int, 0400, 70 1.1 riastrad "Override/Ignore selection of SDVO panel mode in the VBT " 71 1.1 riastrad "(-2=ignore, -1=auto [default], index in VBT BIOS table)"); 72 1.1 riastrad 73 1.5 riastrad i915_param_named_unsafe(reset, int, 0600, 74 1.5 riastrad "Attempt GPU resets (0=disabled, 1=full gpu reset, 2=engine reset [default])"); 75 1.5 riastrad 76 1.5 riastrad i915_param_named_unsafe(vbt_firmware, charp, 0400, 77 1.5 riastrad "Load VBT from specified file under /lib/firmware"); 78 1.5 riastrad 79 1.5 riastrad #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) 80 1.5 riastrad i915_param_named(error_capture, bool, 0600, 81 1.5 riastrad "Record the GPU state following a hang. " 82 1.5 riastrad "This information in /sys/class/drm/card<N>/error is vital for " 83 1.5 riastrad "triaging and debugging hangs."); 84 1.5 riastrad #endif 85 1.1 riastrad 86 1.5 riastrad i915_param_named_unsafe(enable_hangcheck, bool, 0600, 87 1.1 riastrad "Periodically check GPU activity for detecting hangs. " 88 1.1 riastrad "WARNING: Disabling this can cause system wide hangs. " 89 1.1 riastrad "(default: true)"); 90 1.1 riastrad 91 1.5 riastrad i915_param_named_unsafe(enable_psr, int, 0600, 92 1.5 riastrad "Enable PSR " 93 1.5 riastrad "(0=disabled, 1=enabled) " 94 1.5 riastrad "Default: -1 (use per-chip default)"); 95 1.5 riastrad 96 1.5 riastrad i915_param_named_unsafe(force_probe, charp, 0400, 97 1.5 riastrad "Force probe the driver for specified devices. " 98 1.5 riastrad "See CONFIG_DRM_I915_FORCE_PROBE for details."); 99 1.1 riastrad 100 1.5 riastrad i915_param_named_unsafe(alpha_support, bool, 0400, 101 1.5 riastrad "Deprecated. See i915.force_probe."); 102 1.5 riastrad 103 1.5 riastrad i915_param_named_unsafe(disable_power_well, int, 0400, 104 1.3 riastrad "Disable display power wells when possible " 105 1.3 riastrad "(-1=auto [default], 0=power wells always on, 1=power wells disabled when possible)"); 106 1.1 riastrad 107 1.5 riastrad i915_param_named_unsafe(enable_ips, int, 0600, "Enable IPS (default: true)"); 108 1.1 riastrad 109 1.5 riastrad i915_param_named(fastboot, int, 0600, 110 1.5 riastrad "Try to skip unnecessary mode sets at boot time " 111 1.5 riastrad "(0=disabled, 1=enabled) " 112 1.5 riastrad "Default: -1 (use per-chip default)"); 113 1.1 riastrad 114 1.5 riastrad i915_param_named_unsafe(prefault_disable, bool, 0600, 115 1.1 riastrad "Disable page prefaulting for pread/pwrite/reloc (default:false). " 116 1.1 riastrad "For developers only."); 117 1.1 riastrad 118 1.5 riastrad i915_param_named_unsafe(load_detect_test, bool, 0600, 119 1.3 riastrad "Force-enable the VGA load detect code for testing (default:false). " 120 1.3 riastrad "For developers only."); 121 1.3 riastrad 122 1.5 riastrad i915_param_named_unsafe(force_reset_modeset_test, bool, 0600, 123 1.5 riastrad "Force a modeset during gpu reset for testing (default:false). " 124 1.5 riastrad "For developers only."); 125 1.5 riastrad 126 1.5 riastrad i915_param_named_unsafe(invert_brightness, int, 0600, 127 1.1 riastrad "Invert backlight brightness " 128 1.1 riastrad "(-1 force normal, 0 machine defaults, 1 force inversion), please " 129 1.1 riastrad "report PCI device ID, subsystem vendor and subsystem device ID " 130 1.1 riastrad "to dri-devel (at) lists.freedesktop.org, if your machine needs it. " 131 1.1 riastrad "It will then be included in an upcoming module version."); 132 1.1 riastrad 133 1.5 riastrad i915_param_named(disable_display, bool, 0400, 134 1.5 riastrad "Disable display (default: false)"); 135 1.3 riastrad 136 1.5 riastrad i915_param_named(mmio_debug, int, 0600, 137 1.3 riastrad "Enable the MMIO debug code for the first N failures (default: off). " 138 1.3 riastrad "This may negatively affect performance."); 139 1.3 riastrad 140 1.5 riastrad i915_param_named(verbose_state_checks, bool, 0600, 141 1.3 riastrad "Enable verbose logs (ie. WARN_ON()) in case of unexpected hw state conditions."); 142 1.3 riastrad 143 1.5 riastrad i915_param_named_unsafe(nuclear_pageflip, bool, 0400, 144 1.5 riastrad "Force enable atomic functionality on platforms that don't have full support yet."); 145 1.3 riastrad 146 1.3 riastrad /* WA to get away with the default setting in VBT for early platforms.Will be removed */ 147 1.5 riastrad i915_param_named_unsafe(edp_vswing, int, 0400, 148 1.5 riastrad "Ignore/Override vswing pre-emph table selection from VBT " 149 1.5 riastrad "(0=use value from vbt [default], 1=low power swing(200mV)," 150 1.5 riastrad "2=default swing(400mV))"); 151 1.5 riastrad 152 1.5 riastrad i915_param_named_unsafe(enable_guc, int, 0400, 153 1.5 riastrad "Enable GuC load for GuC submission and/or HuC load. " 154 1.5 riastrad "Required functionality can be selected using bitmask values. " 155 1.5 riastrad "(-1=auto, 0=disable [default], 1=GuC submission, 2=HuC load)"); 156 1.5 riastrad 157 1.5 riastrad i915_param_named(guc_log_level, int, 0400, 158 1.5 riastrad "GuC firmware logging level. Requires GuC to be loaded. " 159 1.5 riastrad "(-1=auto [default], 0=disable, 1..4=enable with verbosity min..max)"); 160 1.5 riastrad 161 1.5 riastrad i915_param_named_unsafe(guc_firmware_path, charp, 0400, 162 1.5 riastrad "GuC firmware path to use instead of the default one"); 163 1.5 riastrad 164 1.5 riastrad i915_param_named_unsafe(huc_firmware_path, charp, 0400, 165 1.5 riastrad "HuC firmware path to use instead of the default one"); 166 1.5 riastrad 167 1.5 riastrad i915_param_named_unsafe(dmc_firmware_path, charp, 0400, 168 1.5 riastrad "DMC firmware path to use instead of the default one"); 169 1.5 riastrad 170 1.5 riastrad i915_param_named_unsafe(enable_dp_mst, bool, 0600, 171 1.5 riastrad "Enable multi-stream transport (MST) for new DisplayPort sinks. (default: true)"); 172 1.5 riastrad 173 1.5 riastrad #if IS_ENABLED(CONFIG_DRM_I915_DEBUG) 174 1.5 riastrad i915_param_named_unsafe(inject_probe_failure, uint, 0400, 175 1.5 riastrad "Force an error after a number of failure check points (0:disabled (default), N:force failure at the Nth failure check point)"); 176 1.5 riastrad #endif 177 1.5 riastrad 178 1.5 riastrad i915_param_named(enable_dpcd_backlight, int, 0600, 179 1.5 riastrad "Enable support for DPCD backlight control" 180 1.5 riastrad "(-1=use per-VBT LFP backlight type setting, 0=disabled [default], 1=enabled)"); 181 1.5 riastrad 182 1.5 riastrad #if IS_ENABLED(CONFIG_DRM_I915_GVT) 183 1.5 riastrad i915_param_named(enable_gvt, bool, 0400, 184 1.5 riastrad "Enable support for Intel GVT-g graphics virtualization host support(default:false)"); 185 1.5 riastrad #endif 186 1.5 riastrad 187 1.5 riastrad #if IS_ENABLED(CONFIG_DRM_I915_UNSTABLE_FAKE_LMEM) 188 1.5 riastrad i915_param_named_unsafe(fake_lmem_start, ulong, 0600, 189 1.5 riastrad "Fake LMEM start offset (default: 0)"); 190 1.5 riastrad #endif 191 1.5 riastrad 192 1.5 riastrad static __always_inline void _print_param(struct drm_printer *p, 193 1.5 riastrad const char *name, 194 1.5 riastrad const char *type, 195 1.5 riastrad const void *x) 196 1.5 riastrad { 197 1.5 riastrad if (!__builtin_strcmp(type, "bool")) 198 1.5 riastrad drm_printf(p, "i915.%s=%s\n", name, yesno(*(const bool *)x)); 199 1.5 riastrad else if (!__builtin_strcmp(type, "int")) 200 1.5 riastrad drm_printf(p, "i915.%s=%d\n", name, *(const int *)x); 201 1.5 riastrad else if (!__builtin_strcmp(type, "unsigned int")) 202 1.5 riastrad drm_printf(p, "i915.%s=%u\n", name, *(const unsigned int *)x); 203 1.5 riastrad else if (!__builtin_strcmp(type, "unsigned long")) 204 1.5 riastrad drm_printf(p, "i915.%s=%lu\n", name, *(const unsigned long *)x); 205 1.5 riastrad else if (!__builtin_strcmp(type, "char *")) 206 1.6 riastrad drm_printf(p, "i915.%s=%s\n", name, *(const char *const *)x); 207 1.5 riastrad else 208 1.5 riastrad WARN_ONCE(1, "no printer defined for param type %s (i915.%s)\n", 209 1.5 riastrad type, name); 210 1.5 riastrad } 211 1.5 riastrad 212 1.5 riastrad /** 213 1.5 riastrad * i915_params_dump - dump i915 modparams 214 1.5 riastrad * @params: i915 modparams 215 1.5 riastrad * @p: the &drm_printer 216 1.5 riastrad * 217 1.5 riastrad * Pretty printer for i915 modparams. 218 1.5 riastrad */ 219 1.5 riastrad void i915_params_dump(const struct i915_params *params, struct drm_printer *p) 220 1.5 riastrad { 221 1.5 riastrad #define PRINT(T, x, ...) _print_param(p, #x, #T, ¶ms->x); 222 1.5 riastrad I915_PARAMS_FOR_EACH(PRINT); 223 1.5 riastrad #undef PRINT 224 1.5 riastrad } 225 1.5 riastrad 226 1.5 riastrad static __always_inline void dup_param(const char *type, void *x) 227 1.5 riastrad { 228 1.5 riastrad if (!__builtin_strcmp(type, "char *")) 229 1.5 riastrad *(void **)x = kstrdup(*(void **)x, GFP_ATOMIC); 230 1.5 riastrad } 231 1.5 riastrad 232 1.5 riastrad void i915_params_copy(struct i915_params *dest, const struct i915_params *src) 233 1.5 riastrad { 234 1.5 riastrad *dest = *src; 235 1.5 riastrad #define DUP(T, x, ...) dup_param(#T, &dest->x); 236 1.5 riastrad I915_PARAMS_FOR_EACH(DUP); 237 1.5 riastrad #undef DUP 238 1.5 riastrad } 239 1.5 riastrad 240 1.5 riastrad static __always_inline void free_param(const char *type, void *x) 241 1.5 riastrad { 242 1.5 riastrad if (!__builtin_strcmp(type, "char *")) { 243 1.5 riastrad kfree(*(void **)x); 244 1.5 riastrad *(void **)x = NULL; 245 1.5 riastrad } 246 1.5 riastrad } 247 1.5 riastrad 248 1.5 riastrad /* free the allocated members, *not* the passed in params itself */ 249 1.5 riastrad void i915_params_free(struct i915_params *params) 250 1.5 riastrad { 251 1.5 riastrad #define FREE(T, x, ...) free_param(#T, ¶ms->x); 252 1.5 riastrad I915_PARAMS_FOR_EACH(FREE); 253 1.5 riastrad #undef FREE 254 1.5 riastrad } 255