From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Damien Lespiau <damien.lespiau@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Provide a parameter to disable loading
Date: Thu, 16 Jan 2014 19:07:09 +0200 [thread overview]
Message-ID: <20140116170708.GN9454@intel.com> (raw)
In-Reply-To: <1389890006-11702-1-git-send-email-damien.lespiau@intel.com>
On Thu, Jan 16, 2014 at 04:33:26PM +0000, Damien Lespiau wrote:
> It can be handy at times to forbid i915 from loading at startup to
> modprobe it later.
modprobe.blacklist=i915
>
> In particular, when trying to debug a problem that occurs at startup,
> it's usually easier to boot into a working machine and modprobe the
> driver at a more convenient time.
>
> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
> ---
> drivers/gpu/drm/i915/i915_drv.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index 61fb9fc..d80e47e 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -38,6 +38,12 @@
> #include <linux/module.h>
> #include <drm/drm_crtc_helper.h>
>
> +static int i915_fail __read_mostly = 0;
> +module_param_named(fail, i915_fail, int, 0400);
> +MODULE_PARM_DESC(fail,
> + "Allow a user to skip loading the i915 driver, "
> + "0=load i915 as usual [default], 1=don't load");
> +
> static int i915_modeset __read_mostly = -1;
> module_param_named(modeset, i915_modeset, int, 0400);
> MODULE_PARM_DESC(modeset,
> @@ -823,6 +829,11 @@ static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
> struct intel_device_info *intel_info =
> (struct intel_device_info *) ent->driver_data;
>
> + if (i915_fail) {
> + DRM_INFO("i915 disabled by module parameter\n");
> + return -ENODEV;
> + }
> +
> if (IS_PRELIMINARY_HW(intel_info) && !i915_preliminary_hw_support) {
> DRM_INFO("This hardware requires preliminary hardware support.\n"
> "See CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT, and/or modparam preliminary_hw_support\n");
> --
> 1.8.3.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Ville Syrjälä
Intel OTC
next prev parent reply other threads:[~2014-01-16 17:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-16 16:33 [PATCH] drm/i915: Provide a parameter to disable loading Damien Lespiau
2014-01-16 17:07 ` Ville Syrjälä [this message]
2014-01-16 17:11 ` Damien Lespiau
2014-06-02 14:16 ` Jani Nikula
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140116170708.GN9454@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=damien.lespiau@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.