diff options
author | Dave Airlie <airlied@redhat.com> | 2014-09-02 18:30:48 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-09-02 18:30:48 -0400 |
commit | a18b29f0c6bd17703b5eb88c3b2184a26d173135 (patch) | |
tree | 3fca23029941a04d6c911a136c1023da211989e2 /drivers/gpu/drm/i915/i915_params.c | |
parent | 04cd214516d8a6f0f8c0116185d6e360df0860d2 (diff) | |
parent | 604effb782a8a4d9a20c8af16bcbf86d742db119 (diff) |
Merge tag 'drm-intel-next-2014-09-01' of git://anongit.freedesktop.org/drm-intel into drm-next
drm-intel-next-2014-08-22:
- basic code for execlist, which is the fancy new cmd submission on gen8. Still
disabled by default (Ben, Oscar Mateo, Thomas Daniel et al)
- remove the useless usage of console_lock for I915_FBDEV=n (Chris)
- clean up relations between ctx and ppgtt
- clean up ppgtt lifetime handling (Michel Thierry)
- various cursor code improvements from Ville
- execbuffer code cleanups and secure batch fixes (Chris)
- prep work for dev -> dev_priv transition (Chris)
- some of the prep patches for the seqno -> request object transition (Chris)
- various small improvements all over
* tag 'drm-intel-next-2014-09-01' of git://anongit.freedesktop.org/drm-intel: (86 commits)
drm/i915: fix suspend/resume for GENs w/o runtime PM support
drm/i915: Update DRIVER_DATE to 20140822
drm: fix plane rotation when restoring fbdev configuration
drm/i915/bdw: Disable execlists by default
drm/i915/bdw: Enable Logical Ring Contexts (hence, Execlists)
drm/i915/bdw: Document Logical Rings, LR contexts and Execlists
drm/i915/bdw: Print context state in debugfs
drm/i915/bdw: Display context backing obj & ringbuffer info in debugfs
drm/i915/bdw: Display execlists info in debugfs
drm/i915/bdw: Disable semaphores for Execlists
drm/i915/bdw: Make sure gpu reset still works with Execlists
drm/i915/bdw: Don't write PDP in the legacy way when using LRCs
drm/i915: Track cursor changes as frontbuffer tracking flushes
drm/i915/bdw: Help out the ctx switch interrupt handler
drm/i915/bdw: Avoid non-lite-restore preemptions
drm/i915/bdw: Handle context switch events
drm/i915/bdw: Two-stage execlist submit process
drm/i915/bdw: Write the tail pointer, LRC style
drm/i915/bdw: Implement context switching (somewhat)
drm/i915/bdw: Emission of requests with logical rings
...
Conflicts:
drivers/gpu/drm/i915/i915_drv.c
Diffstat (limited to 'drivers/gpu/drm/i915/i915_params.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_params.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_params.c b/drivers/gpu/drm/i915/i915_params.c index 7f84dd263ee8..139f490d464d 100644 --- a/drivers/gpu/drm/i915/i915_params.c +++ b/drivers/gpu/drm/i915/i915_params.c | |||
@@ -35,6 +35,7 @@ struct i915_params i915 __read_mostly = { | |||
35 | .vbt_sdvo_panel_type = -1, | 35 | .vbt_sdvo_panel_type = -1, |
36 | .enable_rc6 = -1, | 36 | .enable_rc6 = -1, |
37 | .enable_fbc = -1, | 37 | .enable_fbc = -1, |
38 | .enable_execlists = 0, | ||
38 | .enable_hangcheck = true, | 39 | .enable_hangcheck = true, |
39 | .enable_ppgtt = -1, | 40 | .enable_ppgtt = -1, |
40 | .enable_psr = 0, | 41 | .enable_psr = 0, |
@@ -118,6 +119,11 @@ MODULE_PARM_DESC(enable_ppgtt, | |||
118 | "Override PPGTT usage. " | 119 | "Override PPGTT usage. " |
119 | "(-1=auto [default], 0=disabled, 1=aliasing, 2=full)"); | 120 | "(-1=auto [default], 0=disabled, 1=aliasing, 2=full)"); |
120 | 121 | ||
122 | module_param_named(enable_execlists, i915.enable_execlists, int, 0400); | ||
123 | MODULE_PARM_DESC(enable_execlists, | ||
124 | "Override execlists usage. " | ||
125 | "(-1=auto, 0=disabled [default], 1=enabled)"); | ||
126 | |||
121 | module_param_named(enable_psr, i915.enable_psr, int, 0600); | 127 | module_param_named(enable_psr, i915.enable_psr, int, 0600); |
122 | MODULE_PARM_DESC(enable_psr, "Enable PSR (default: false)"); | 128 | MODULE_PARM_DESC(enable_psr, "Enable PSR (default: false)"); |
123 | 129 | ||