]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
drm/i915: add per-output hotplug callback for KMS
authorKeith Packard <keithp@keithp.com>
Wed, 6 May 2009 18:48:58 +0000 (11:48 -0700)
committerKeith Packard <keithp@keithp.com>
Thu, 18 Jun 2009 22:54:06 +0000 (15:54 -0700)
This allows each output to deal with plug/unplug events as needed.

Signed-off-by: Keith Packard <keithp@keithp.com>
drivers/gpu/drm/i915/i915_irq.c
drivers/gpu/drm/i915/intel_drv.h

index b86b7b7130c603beca04456ccca0abc4c5bbfbcc..228546f6eaa4f2ca876b70c1166677bb095d55ec 100644 (file)
@@ -232,7 +232,17 @@ static void i915_hotplug_work_func(struct work_struct *work)
        drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
                                                    hotplug_work);
        struct drm_device *dev = dev_priv->dev;
-
+       struct drm_mode_config *mode_config = &dev->mode_config;
+       struct drm_connector *connector;
+
+       if (mode_config->num_connector) {
+               list_for_each_entry(connector, &mode_config->connector_list, head) {
+                       struct intel_output *intel_output = to_intel_output(connector);
+       
+                       if (intel_output->hot_plug)
+                               (*intel_output->hot_plug) (intel_output);
+               }
+       }
        /* Just fire off a uevent and let userspace tell us what to do */
        drm_sysfs_hotplug_event(dev);
 }
index d89a2fed35af8802025f33ba3421d8c7bd609a5c..c5858792c80635828eca4927cccbddbf181fc8a5 100644 (file)
@@ -83,6 +83,7 @@ struct intel_output {
        bool load_detect_temp;
        bool needs_tv_clock;
        void *dev_priv;
+       void (*hot_plug)(struct intel_output *);
 };
 
 struct intel_crtc {