mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 10:14:23 +08:00
revert one patch missing some prereqs
-----BEGIN PGP SIGNATURE----- iQIcBAABAgAGBQJYiQ5uAAoJEAx081l5xIa+YTwP/jBQ7yjAACjpPS5SI3ProLd6 FZ8QrvjSv65ez8b59MEKe1Ld5qSyF61CyorA0F3oxA/dV2SG14sjRI8AXteKkoQN XSk2NGiub7c3+Edtr2Cr+pzK91pqwHjtEBLh2Ftex2HrCCq2AP9HNgxU0l0056sH hfplVP1kwavgn2zpbXA99JjoNHk3+UMX/UbUibH3lOhJkaM401cpBhco9yh07rK5 XfckHjnQwTH5jtvocorOq7Zh/cSWFqTWdw+kkW8TawHzT9GdoYSh6B0XR57LLwyB yQ0tHa706oqjWMUW0kxOKB/EjEGsyKDSMuc52qOisvwrgmw0JS/RbqHctfjsGrrb leCtffxe4yFgdB9jFbvyrY5tYt2lrxLm87oiYeB3T/r2SnWhkmyZsNCIJ+IGOkId 1DyuvZnh2UztHpru+TE5frALvM6I/gCF6UwdITAm++yJp87OqWo3fckz+KG5ln6Q 5c0p2jLR15Ii3tbs2q277FZMMOYoO6NMrcDVoDv1pqtG1vFA8ydcLyyPUVBdDF3Z fpGHjOvGXLoQN4QFXXU/6utlZ6Twn0WGfPHQUH6iNL8pxY1JuyyrAkZS6ubFWNQd dt71uznvVMszLAT95pUBhjmtttVh+XIH0BYVejFflpC/JoxR5xWce2Ka0rVPwcHe kpv4K+s1PeTBKijd/t5s =PHLN -----END PGP SIGNATURE----- Merge tag 'drm-fixes-for-v4.10-rc6-revert-one' of git://people.freedesktop.org/~airlied/linux Pull drm revert from Dave Airlie: "Revert one patch missing some prereqs. One of the connector fixes was missing some prereqs, we have an alternate driver fix that should work that I'll send tomorrow. Today is a holiday here so quickly smashing this out" Daniel Vetter explains: "I pushed a locking change to fix a nouveau rpm issue to -fixes that needed the connector_list rework. And that's only in -next, but I missed that. Dave has the revert in a pull, and he'll follow-up with the hack nouveau patch for 4.10, and then we'll reapply the proper fix again for -next and revert the hacks. A bit a mess, but should be sorted soon" * tag 'drm-fixes-for-v4.10-rc6-revert-one' of git://people.freedesktop.org/~airlied/linux: Revert "drm/probe-helpers: Drop locking from poll_enable"
This commit is contained in:
commit
bed7b01609
@ -115,27 +115,24 @@ static int drm_helper_probe_add_cmdline_mode(struct drm_connector *connector)
|
|||||||
|
|
||||||
#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
|
#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
|
||||||
/**
|
/**
|
||||||
* drm_kms_helper_poll_enable - re-enable output polling.
|
* drm_kms_helper_poll_enable_locked - re-enable output polling.
|
||||||
* @dev: drm_device
|
* @dev: drm_device
|
||||||
*
|
*
|
||||||
* This function re-enables the output polling work, after it has been
|
* This function re-enables the output polling work without
|
||||||
* temporarily disabled using drm_kms_helper_poll_disable(), for example over
|
* locking the mode_config mutex.
|
||||||
* suspend/resume.
|
|
||||||
*
|
*
|
||||||
* Drivers can call this helper from their device resume implementation. It is
|
* This is like drm_kms_helper_poll_enable() however it is to be
|
||||||
* an error to call this when the output polling support has not yet been set
|
* called from a context where the mode_config mutex is locked
|
||||||
* up.
|
* already.
|
||||||
*
|
|
||||||
* Note that calls to enable and disable polling must be strictly ordered, which
|
|
||||||
* is automatically the case when they're only call from suspend/resume
|
|
||||||
* callbacks.
|
|
||||||
*/
|
*/
|
||||||
void drm_kms_helper_poll_enable(struct drm_device *dev)
|
void drm_kms_helper_poll_enable_locked(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
bool poll = false;
|
bool poll = false;
|
||||||
struct drm_connector *connector;
|
struct drm_connector *connector;
|
||||||
unsigned long delay = DRM_OUTPUT_POLL_PERIOD;
|
unsigned long delay = DRM_OUTPUT_POLL_PERIOD;
|
||||||
|
|
||||||
|
WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
|
||||||
|
|
||||||
if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
|
if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -163,7 +160,7 @@ void drm_kms_helper_poll_enable(struct drm_device *dev)
|
|||||||
if (poll)
|
if (poll)
|
||||||
schedule_delayed_work(&dev->mode_config.output_poll_work, delay);
|
schedule_delayed_work(&dev->mode_config.output_poll_work, delay);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_kms_helper_poll_enable);
|
EXPORT_SYMBOL(drm_kms_helper_poll_enable_locked);
|
||||||
|
|
||||||
static enum drm_connector_status
|
static enum drm_connector_status
|
||||||
drm_connector_detect(struct drm_connector *connector, bool force)
|
drm_connector_detect(struct drm_connector *connector, bool force)
|
||||||
@ -290,7 +287,7 @@ int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
|
|||||||
|
|
||||||
/* Re-enable polling in case the global poll config changed. */
|
/* Re-enable polling in case the global poll config changed. */
|
||||||
if (drm_kms_helper_poll != dev->mode_config.poll_running)
|
if (drm_kms_helper_poll != dev->mode_config.poll_running)
|
||||||
drm_kms_helper_poll_enable(dev);
|
drm_kms_helper_poll_enable_locked(dev);
|
||||||
|
|
||||||
dev->mode_config.poll_running = drm_kms_helper_poll;
|
dev->mode_config.poll_running = drm_kms_helper_poll;
|
||||||
|
|
||||||
@ -482,12 +479,8 @@ out:
|
|||||||
* This function disables the output polling work.
|
* This function disables the output polling work.
|
||||||
*
|
*
|
||||||
* Drivers can call this helper from their device suspend implementation. It is
|
* Drivers can call this helper from their device suspend implementation. It is
|
||||||
* not an error to call this even when output polling isn't enabled or already
|
* not an error to call this even when output polling isn't enabled or arlready
|
||||||
* disabled. Polling is re-enabled by calling drm_kms_helper_poll_enable().
|
* disabled.
|
||||||
*
|
|
||||||
* Note that calls to enable and disable polling must be strictly ordered, which
|
|
||||||
* is automatically the case when they're only call from suspend/resume
|
|
||||||
* callbacks.
|
|
||||||
*/
|
*/
|
||||||
void drm_kms_helper_poll_disable(struct drm_device *dev)
|
void drm_kms_helper_poll_disable(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
@ -497,6 +490,24 @@ void drm_kms_helper_poll_disable(struct drm_device *dev)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_kms_helper_poll_disable);
|
EXPORT_SYMBOL(drm_kms_helper_poll_disable);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* drm_kms_helper_poll_enable - re-enable output polling.
|
||||||
|
* @dev: drm_device
|
||||||
|
*
|
||||||
|
* This function re-enables the output polling work.
|
||||||
|
*
|
||||||
|
* Drivers can call this helper from their device resume implementation. It is
|
||||||
|
* an error to call this when the output polling support has not yet been set
|
||||||
|
* up.
|
||||||
|
*/
|
||||||
|
void drm_kms_helper_poll_enable(struct drm_device *dev)
|
||||||
|
{
|
||||||
|
mutex_lock(&dev->mode_config.mutex);
|
||||||
|
drm_kms_helper_poll_enable_locked(dev);
|
||||||
|
mutex_unlock(&dev->mode_config.mutex);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(drm_kms_helper_poll_enable);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* drm_kms_helper_poll_init - initialize and enable output polling
|
* drm_kms_helper_poll_init - initialize and enable output polling
|
||||||
* @dev: drm_device
|
* @dev: drm_device
|
||||||
|
@ -180,7 +180,7 @@ static void intel_hpd_irq_storm_disable(struct drm_i915_private *dev_priv)
|
|||||||
|
|
||||||
/* Enable polling and queue hotplug re-enabling. */
|
/* Enable polling and queue hotplug re-enabling. */
|
||||||
if (hpd_disabled) {
|
if (hpd_disabled) {
|
||||||
drm_kms_helper_poll_enable(dev);
|
drm_kms_helper_poll_enable_locked(dev);
|
||||||
mod_delayed_work(system_wq, &dev_priv->hotplug.reenable_work,
|
mod_delayed_work(system_wq, &dev_priv->hotplug.reenable_work,
|
||||||
msecs_to_jiffies(HPD_STORM_REENABLE_DELAY));
|
msecs_to_jiffies(HPD_STORM_REENABLE_DELAY));
|
||||||
}
|
}
|
||||||
@ -511,7 +511,7 @@ static void i915_hpd_poll_init_work(struct work_struct *work)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (enabled)
|
if (enabled)
|
||||||
drm_kms_helper_poll_enable(dev);
|
drm_kms_helper_poll_enable_locked(dev);
|
||||||
|
|
||||||
mutex_unlock(&dev->mode_config.mutex);
|
mutex_unlock(&dev->mode_config.mutex);
|
||||||
|
|
||||||
|
@ -73,5 +73,6 @@ extern void drm_kms_helper_hotplug_event(struct drm_device *dev);
|
|||||||
|
|
||||||
extern void drm_kms_helper_poll_disable(struct drm_device *dev);
|
extern void drm_kms_helper_poll_disable(struct drm_device *dev);
|
||||||
extern void drm_kms_helper_poll_enable(struct drm_device *dev);
|
extern void drm_kms_helper_poll_enable(struct drm_device *dev);
|
||||||
|
extern void drm_kms_helper_poll_enable_locked(struct drm_device *dev);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user