Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259680
b: refs/heads/master
c: 80f51c3
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Jul 5, 2011
1 parent e029931 commit be23c65
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 71138b7f0735d277f71f0d7ba1918c8922f12cce
refs/heads/master: 80f51c32c4b52e88c192de8471135dbbd158cc13
5 changes: 5 additions & 0 deletions trunk/drivers/staging/gma500/mdfld_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,11 @@ static int mdfld_power_up(struct drm_device *dev)
}

const struct psb_ops mdfld_chip_ops = {
.name = "Medfield",
.accel_2d = 0,
.crtc_helper = &mdfld_helper_funcs,
.crtc_funcs = &mdfld_intel_crtc_funcs,

.output_init = mdfld_output_init,

#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
Expand Down
5 changes: 5 additions & 0 deletions trunk/drivers/staging/gma500/mrst_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,11 @@ static int mrst_power_up(struct drm_device *dev)
}

const struct psb_ops mrst_chip_ops = {
.name = "Moorestown",
.accel_2d = 1,
.crtc_helper = &mrst_helper_funcs,
.crtc_funcs = &psb_intel_crtc_funcs,

.output_init = mrst_output_init,

#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
Expand Down
5 changes: 5 additions & 0 deletions trunk/drivers/staging/gma500/psb_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@ int psb_power_up(struct drm_device *dev)
}

const struct psb_ops psb_chip_ops = {
.name = "Poulsbo",
.accel_2d = 1,
.crtc_helper = &psb_intel_helper_funcs,
.crtc_funcs = &psb_intel_crtc_funcs,

.output_init = psb_output_init,

#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
Expand Down
11 changes: 11 additions & 0 deletions trunk/drivers/staging/gma500/psb_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,13 @@ struct drm_psb_private {
*/

struct psb_ops {
const char *name;
unsigned int accel_2d:1;

/* Sub functions */
struct drm_crtc_helper_funcs const *crtc_helper;
struct drm_crtc_funcs const *crtc_funcs;

/* Display management hooks */
int (*output_init)(struct drm_device *dev);
/* Power management hooks */
Expand Down Expand Up @@ -759,6 +766,10 @@ extern const struct drm_crtc_helper_funcs mrst_helper_funcs;
extern void mrst_lvds_init(struct drm_device *dev,
struct psb_intel_mode_device *mode_dev);

/* psb_intel_display.c */
extern const struct drm_crtc_helper_funcs psb_intel_helper_funcs;
extern const struct drm_crtc_funcs psb_intel_crtc_funcs;

/* psb_intel_lvds.c */
extern void psb_intel_lvds_prepare(struct drm_encoder *encoder);
extern void psb_intel_lvds_commit(struct drm_encoder *encoder);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/staging/gma500/psb_fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static int psbfb_ioctl(struct fb_info *info, unsigned int cmd,
case 0x12345678:
if (!capable(CAP_SYS_RAWIO))
return -EPERM;
if (IS_MFLD(dev))
if (!dev_priv->ops->accel_2d)
return -EOPNOTSUPP;
if (get_user(l, p))
return -EFAULT;
Expand Down Expand Up @@ -240,7 +240,7 @@ static struct fb_ops psbfb_ops = {
.fb_ioctl = psbfb_ioctl,
};

static struct fb_ops psbfb_mfld_ops = {
static struct fb_ops psbfb_unaccel_ops = {
.owner = THIS_MODULE,
.fb_check_var = drm_fb_helper_check_var,
.fb_set_par = drm_fb_helper_set_par,
Expand Down Expand Up @@ -426,8 +426,8 @@ static int psbfb_create(struct psb_fbdev *fbdev,

info->flags = FBINFO_DEFAULT;
/* No 2D engine */
if (IS_MFLD(dev))
info->fbops = &psbfb_mfld_ops;
if (!dev_priv->ops->accel_2d)
info->fbops = &psbfb_unaccel_ops;
else
info->fbops = &psbfb_ops;

Expand Down
21 changes: 5 additions & 16 deletions trunk/drivers/staging/gma500/psb_intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ void psb_intel_crtc_destroy(struct drm_crtc *crtc)
kfree(psb_intel_crtc);
}

static const struct drm_crtc_helper_funcs psb_intel_helper_funcs = {
const struct drm_crtc_helper_funcs psb_intel_helper_funcs = {
.dpms = psb_intel_crtc_dpms,
.mode_fixup = psb_intel_crtc_mode_fixup,
.mode_set = psb_intel_crtc_mode_set,
Expand Down Expand Up @@ -1304,12 +1304,8 @@ void psb_intel_crtc_init(struct drm_device *dev, int pipe,
return;
}

if (IS_MFLD(dev))
drm_crtc_init(dev, &psb_intel_crtc->base,
&mdfld_intel_crtc_funcs);
else
drm_crtc_init(dev, &psb_intel_crtc->base,
&psb_intel_crtc_funcs);
/* Set the CRTC operations from the chip specific data */
drm_crtc_init(dev, &psb_intel_crtc->base, dev_priv->ops->crtc_funcs);

drm_mode_crtc_set_gamma_size(&psb_intel_crtc->base, 256);
psb_intel_crtc->pipe = pipe;
Expand All @@ -1332,15 +1328,8 @@ void psb_intel_crtc_init(struct drm_device *dev, int pipe,
psb_intel_crtc->mode_dev = mode_dev;
psb_intel_crtc->cursor_addr = 0;

if (IS_MRST(dev))
drm_crtc_helper_add(&psb_intel_crtc->base,
&mrst_helper_funcs);
else if (IS_MFLD(dev))
drm_crtc_helper_add(&psb_intel_crtc->base,
&mdfld_helper_funcs);
else
drm_crtc_helper_add(&psb_intel_crtc->base,
&psb_intel_helper_funcs);
drm_crtc_helper_add(&psb_intel_crtc->base,
dev_priv->ops->crtc_helper);

/* Setup the array of drm_connector pointer array */
psb_intel_crtc->mode_set.crtc = &psb_intel_crtc->base;
Expand Down

0 comments on commit be23c65

Please sign in to comment.