i915_params.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * 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 */

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#define I915_PARAMS_FOR_EACH(func) \
	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); \
49 50
	func(char *, guc_firmware_path); \
	func(char *, huc_firmware_path); \
51 52 53
	func(int, use_mmio_flip); \
	func(int, mmio_debug); \
	func(int, edp_vswing); \
54
	func(int, reset); \
55 56
	func(unsigned int, inject_load_failure); \
	/* leave bools at the end to not create holes */ \
57
	func(bool, alpha_support); \
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	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
73
struct i915_params {
74
	I915_PARAMS_FOR_EACH(MEMBER);
75
};
76
#undef MEMBER
77 78 79 80 81

extern struct i915_params i915 __read_mostly;

#endif