Home | History | Annotate | Line # | Download | only in i915
      1  1.1  riastrad /*	$NetBSD: i915_params.h,v 1.2 2021/12/18 23:45:28 riastradh Exp $	*/
      2  1.1  riastrad 
      3  1.1  riastrad /*
      4  1.1  riastrad  * Copyright  2015 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 "Software"),
      8  1.1  riastrad  * to deal in the Software without restriction, including without limitation
      9  1.1  riastrad  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     10  1.1  riastrad  * and/or sell copies of the Software, and to permit persons to whom the
     11  1.1  riastrad  * Software is furnished to do so, subject to the following conditions:
     12  1.1  riastrad  *
     13  1.1  riastrad  * The above copyright notice and this permission notice (including the next
     14  1.1  riastrad  * paragraph) shall be included in all copies or substantial portions of the
     15  1.1  riastrad  * Software.
     16  1.1  riastrad  *
     17  1.1  riastrad  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     18  1.1  riastrad  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     19  1.1  riastrad  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     20  1.1  riastrad  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     21  1.1  riastrad  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     22  1.1  riastrad  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
     23  1.1  riastrad  * IN THE SOFTWARE.
     24  1.1  riastrad  *
     25  1.1  riastrad  */
     26  1.1  riastrad 
     27  1.1  riastrad #ifndef _I915_PARAMS_H_
     28  1.1  riastrad #define _I915_PARAMS_H_
     29  1.1  riastrad 
     30  1.1  riastrad #include <linux/bitops.h>
     31  1.1  riastrad #include <linux/cache.h> /* for __read_mostly */
     32  1.1  riastrad 
     33  1.1  riastrad struct drm_printer;
     34  1.1  riastrad 
     35  1.1  riastrad #define ENABLE_GUC_SUBMISSION		BIT(0)
     36  1.1  riastrad #define ENABLE_GUC_LOAD_HUC		BIT(1)
     37  1.1  riastrad 
     38  1.1  riastrad /*
     39  1.1  riastrad  * Invoke param, a function-like macro, for each i915 param, with arguments:
     40  1.1  riastrad  *
     41  1.1  riastrad  * param(type, name, value)
     42  1.1  riastrad  *
     43  1.1  riastrad  * type: parameter type, one of {bool, int, unsigned int, char *}
     44  1.1  riastrad  * name: name of the parameter
     45  1.1  riastrad  * value: initial/default value of the parameter
     46  1.1  riastrad  */
     47  1.1  riastrad #define I915_PARAMS_FOR_EACH(param) \
     48  1.1  riastrad 	param(char *, vbt_firmware, NULL) \
     49  1.1  riastrad 	param(int, modeset, -1) \
     50  1.1  riastrad 	param(int, lvds_channel_mode, 0) \
     51  1.1  riastrad 	param(int, panel_use_ssc, -1) \
     52  1.1  riastrad 	param(int, vbt_sdvo_panel_type, -1) \
     53  1.1  riastrad 	param(int, enable_dc, -1) \
     54  1.1  riastrad 	param(int, enable_fbc, -1) \
     55  1.1  riastrad 	param(int, enable_psr, -1) \
     56  1.1  riastrad 	param(int, disable_power_well, -1) \
     57  1.1  riastrad 	param(int, enable_ips, 1) \
     58  1.1  riastrad 	param(int, invert_brightness, 0) \
     59  1.1  riastrad 	param(int, enable_guc, 0) \
     60  1.1  riastrad 	param(int, guc_log_level, -1) \
     61  1.1  riastrad 	param(char *, guc_firmware_path, NULL) \
     62  1.1  riastrad 	param(char *, huc_firmware_path, NULL) \
     63  1.1  riastrad 	param(char *, dmc_firmware_path, NULL) \
     64  1.1  riastrad 	param(int, mmio_debug, -IS_ENABLED(CONFIG_DRM_I915_DEBUG_MMIO)) \
     65  1.1  riastrad 	param(int, edp_vswing, 0) \
     66  1.1  riastrad 	param(int, reset, 3) \
     67  1.1  riastrad 	param(unsigned int, inject_probe_failure, 0) \
     68  1.1  riastrad 	param(int, fastboot, -1) \
     69  1.1  riastrad 	param(int, enable_dpcd_backlight, 0) \
     70  1.1  riastrad 	param(char *, force_probe, CONFIG_DRM_I915_FORCE_PROBE) \
     71  1.1  riastrad 	param(unsigned long, fake_lmem_start, 0) \
     72  1.1  riastrad 	/* leave bools at the end to not create holes */ \
     73  1.1  riastrad 	param(bool, alpha_support, IS_ENABLED(CONFIG_DRM_I915_ALPHA_SUPPORT)) \
     74  1.1  riastrad 	param(bool, enable_hangcheck, true) \
     75  1.1  riastrad 	param(bool, prefault_disable, false) \
     76  1.1  riastrad 	param(bool, load_detect_test, false) \
     77  1.1  riastrad 	param(bool, force_reset_modeset_test, false) \
     78  1.1  riastrad 	param(bool, error_capture, true) \
     79  1.1  riastrad 	param(bool, disable_display, false) \
     80  1.1  riastrad 	param(bool, verbose_state_checks, true) \
     81  1.1  riastrad 	param(bool, nuclear_pageflip, false) \
     82  1.1  riastrad 	param(bool, enable_dp_mst, true) \
     83  1.1  riastrad 	param(bool, enable_gvt, false)
     84  1.1  riastrad 
     85  1.1  riastrad #define MEMBER(T, member, ...) T member;
     86  1.1  riastrad struct i915_params {
     87  1.1  riastrad 	I915_PARAMS_FOR_EACH(MEMBER);
     88  1.1  riastrad };
     89  1.1  riastrad #undef MEMBER
     90  1.1  riastrad 
     91  1.1  riastrad extern struct i915_params i915_modparams __read_mostly;
     92  1.1  riastrad 
     93  1.1  riastrad void i915_params_dump(const struct i915_params *params, struct drm_printer *p);
     94  1.1  riastrad void i915_params_copy(struct i915_params *dest, const struct i915_params *src);
     95  1.1  riastrad void i915_params_free(struct i915_params *params);
     96  1.1  riastrad 
     97  1.1  riastrad #endif
     98  1.1  riastrad 
     99