Skip to content

Commit

Permalink
staging: drm/omap: add a workqueue
Browse files Browse the repository at this point in the history
Add a workqueue for omapdrm driver, which is needed for at least a
couple things currently: (1) moving omap_gem_roll() to a non-atomic
context, (2) synchronizing page flips w/ DSS scanout related irq's
(in particular not unmapping previous buffer until DSS finishes
scanout).

Signed-off-by: Rob Clark <rob@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Rob Clark authored and Greg Kroah-Hartman committed Mar 7, 2012
1 parent a890e66 commit 5609f7f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/staging/omapdrm/omap_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,9 @@ static int dev_load(struct drm_device *dev, unsigned long flags)

dev->dev_private = priv;

priv->wq = alloc_workqueue("omapdrm",
WQ_UNBOUND | WQ_NON_REENTRANT, 1);

omap_gem_init(dev);

ret = omap_modeset_init(dev);
Expand Down Expand Up @@ -598,6 +601,8 @@ static int dev_load(struct drm_device *dev, unsigned long flags)

static int dev_unload(struct drm_device *dev)
{
struct omap_drm_private *priv = dev->dev_private;

DBG("unload: dev=%p", dev);

drm_vblank_cleanup(dev);
Expand All @@ -607,6 +612,9 @@ static int dev_unload(struct drm_device *dev)
omap_modeset_free(dev);
omap_gem_deinit(dev);

flush_workqueue(priv->wq);
destroy_workqueue(priv->wq);

kfree(dev->dev_private);
dev->dev_private = NULL;

Expand Down
2 changes: 2 additions & 0 deletions drivers/staging/omapdrm/omap_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ struct omap_drm_private {

struct drm_fb_helper *fbdev;

struct workqueue_struct *wq;

bool has_dmm;
};

Expand Down

0 comments on commit 5609f7f

Please sign in to comment.