Commit 316b4d64 authored by Jean Delvare's avatar Jean Delvare Committed by Linus Torvalds

matroxfb: get rid of unneeded macros WPMINFO and friends

With multihead support always enabled, these macros are no longer needed
and make the code harder to read.
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Acked-by: default avatarPetr Vandrovec <vandrove@vc.cvut.cz>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fc2d10dd
This diff is collapsed.
...@@ -3,8 +3,10 @@ ...@@ -3,8 +3,10 @@
#include "matroxfb_base.h" #include "matroxfb_base.h"
int matroxfb_g450_setclk(WPMINFO unsigned int fout, unsigned int pll); int matroxfb_g450_setclk(struct matrox_fb_info *minfo, unsigned int fout,
unsigned int g450_mnp2f(CPMINFO unsigned int mnp); unsigned int pll);
void matroxfb_g450_setpll_cond(WPMINFO unsigned int mnp, unsigned int pll); unsigned int g450_mnp2f(const struct matrox_fb_info *minfo, unsigned int mnp);
void matroxfb_g450_setpll_cond(struct matrox_fb_info *minfo, unsigned int mnp,
unsigned int pll);
#endif /* __G450_PLL_H__ */ #endif /* __G450_PLL_H__ */
...@@ -41,7 +41,7 @@ static int matroxfb_read_gpio(struct matrox_fb_info* minfo) { ...@@ -41,7 +41,7 @@ static int matroxfb_read_gpio(struct matrox_fb_info* minfo) {
int v; int v;
matroxfb_DAC_lock_irqsave(flags); matroxfb_DAC_lock_irqsave(flags);
v = matroxfb_DAC_in(PMINFO DAC_XGENIODATA); v = matroxfb_DAC_in(minfo, DAC_XGENIODATA);
matroxfb_DAC_unlock_irqrestore(flags); matroxfb_DAC_unlock_irqrestore(flags);
return v; return v;
} }
...@@ -51,10 +51,10 @@ static void matroxfb_set_gpio(struct matrox_fb_info* minfo, int mask, int val) { ...@@ -51,10 +51,10 @@ static void matroxfb_set_gpio(struct matrox_fb_info* minfo, int mask, int val) {
int v; int v;
matroxfb_DAC_lock_irqsave(flags); matroxfb_DAC_lock_irqsave(flags);
v = (matroxfb_DAC_in(PMINFO DAC_XGENIOCTRL) & mask) | val; v = (matroxfb_DAC_in(minfo, DAC_XGENIOCTRL) & mask) | val;
matroxfb_DAC_out(PMINFO DAC_XGENIOCTRL, v); matroxfb_DAC_out(minfo, DAC_XGENIOCTRL, v);
/* We must reset GENIODATA very often... XFree plays with this register */ /* We must reset GENIODATA very often... XFree plays with this register */
matroxfb_DAC_out(PMINFO DAC_XGENIODATA, 0x00); matroxfb_DAC_out(minfo, DAC_XGENIODATA, 0x00);
matroxfb_DAC_unlock_irqrestore(flags); matroxfb_DAC_unlock_irqrestore(flags);
} }
...@@ -149,8 +149,8 @@ static void* i2c_matroxfb_probe(struct matrox_fb_info* minfo) { ...@@ -149,8 +149,8 @@ static void* i2c_matroxfb_probe(struct matrox_fb_info* minfo) {
return NULL; return NULL;
matroxfb_DAC_lock_irqsave(flags); matroxfb_DAC_lock_irqsave(flags);
matroxfb_DAC_out(PMINFO DAC_XGENIODATA, 0xFF); matroxfb_DAC_out(minfo, DAC_XGENIODATA, 0xFF);
matroxfb_DAC_out(PMINFO DAC_XGENIOCTRL, 0x00); matroxfb_DAC_out(minfo, DAC_XGENIOCTRL, 0x00);
matroxfb_DAC_unlock_irqrestore(flags); matroxfb_DAC_unlock_irqrestore(flags);
switch (minfo->chip) { switch (minfo->chip) {
......
This diff is collapsed.
...@@ -11,8 +11,8 @@ extern struct matrox_switch matrox_mystique; ...@@ -11,8 +11,8 @@ extern struct matrox_switch matrox_mystique;
extern struct matrox_switch matrox_G100; extern struct matrox_switch matrox_G100;
#endif #endif
#ifdef NEED_DAC1064 #ifdef NEED_DAC1064
void DAC1064_global_init(WPMINFO2); void DAC1064_global_init(struct matrox_fb_info *minfo);
void DAC1064_global_restore(WPMINFO2); void DAC1064_global_restore(struct matrox_fb_info *minfo);
#endif #endif
#define M1064_INDEX 0x00 #define M1064_INDEX 0x00
......
This diff is collapsed.
...@@ -107,7 +107,8 @@ static void matroxfb_imageblit(struct fb_info* info, const struct fb_image* imag ...@@ -107,7 +107,8 @@ static void matroxfb_imageblit(struct fb_info* info, const struct fb_image* imag
static void matroxfb_cfb4_fillrect(struct fb_info* info, const struct fb_fillrect* rect); static void matroxfb_cfb4_fillrect(struct fb_info* info, const struct fb_fillrect* rect);
static void matroxfb_cfb4_copyarea(struct fb_info* info, const struct fb_copyarea* area); static void matroxfb_cfb4_copyarea(struct fb_info* info, const struct fb_copyarea* area);
void matrox_cfbX_init(WPMINFO2) { void matrox_cfbX_init(struct matrox_fb_info *minfo)
{
u_int32_t maccess; u_int32_t maccess;
u_int32_t mpitch; u_int32_t mpitch;
u_int32_t mopmode; u_int32_t mopmode;
...@@ -195,7 +196,9 @@ void matrox_cfbX_init(WPMINFO2) { ...@@ -195,7 +196,9 @@ void matrox_cfbX_init(WPMINFO2) {
EXPORT_SYMBOL(matrox_cfbX_init); EXPORT_SYMBOL(matrox_cfbX_init);
static void matrox_accel_bmove(WPMINFO int vxres, int sy, int sx, int dy, int dx, int height, int width) { static void matrox_accel_bmove(struct matrox_fb_info *minfo, int vxres, int sy,
int sx, int dy, int dx, int height, int width)
{
int start, end; int start, end;
CRITFLAGS CRITFLAGS
...@@ -231,7 +234,10 @@ static void matrox_accel_bmove(WPMINFO int vxres, int sy, int sx, int dy, int dx ...@@ -231,7 +234,10 @@ static void matrox_accel_bmove(WPMINFO int vxres, int sy, int sx, int dy, int dx
CRITEND CRITEND
} }
static void matrox_accel_bmove_lin(WPMINFO int vxres, int sy, int sx, int dy, int dx, int height, int width) { static void matrox_accel_bmove_lin(struct matrox_fb_info *minfo, int vxres,
int sy, int sx, int dy, int dx, int height,
int width)
{
int start, end; int start, end;
CRITFLAGS CRITFLAGS
...@@ -274,17 +280,18 @@ static void matroxfb_cfb4_copyarea(struct fb_info* info, const struct fb_copyare ...@@ -274,17 +280,18 @@ static void matroxfb_cfb4_copyarea(struct fb_info* info, const struct fb_copyare
if ((area->sx | area->dx | area->width) & 1) if ((area->sx | area->dx | area->width) & 1)
cfb_copyarea(info, area); cfb_copyarea(info, area);
else else
matrox_accel_bmove_lin(PMINFO minfo->fbcon.var.xres_virtual >> 1, area->sy, area->sx >> 1, area->dy, area->dx >> 1, area->height, area->width >> 1); matrox_accel_bmove_lin(minfo, minfo->fbcon.var.xres_virtual >> 1, area->sy, area->sx >> 1, area->dy, area->dx >> 1, area->height, area->width >> 1);
} }
static void matroxfb_copyarea(struct fb_info* info, const struct fb_copyarea* area) { static void matroxfb_copyarea(struct fb_info* info, const struct fb_copyarea* area) {
MINFO_FROM_INFO(info); MINFO_FROM_INFO(info);
matrox_accel_bmove(PMINFO minfo->fbcon.var.xres_virtual, area->sy, area->sx, area->dy, area->dx, area->height, area->width); matrox_accel_bmove(minfo, minfo->fbcon.var.xres_virtual, area->sy, area->sx, area->dy, area->dx, area->height, area->width);
} }
static void matroxfb_accel_clear(WPMINFO u_int32_t color, int sy, int sx, int height, static void matroxfb_accel_clear(struct matrox_fb_info *minfo, u_int32_t color,
int width) { int sy, int sx, int height, int width)
{
CRITFLAGS CRITFLAGS
DBG(__func__) DBG(__func__)
...@@ -306,12 +313,14 @@ static void matroxfb_fillrect(struct fb_info* info, const struct fb_fillrect* re ...@@ -306,12 +313,14 @@ static void matroxfb_fillrect(struct fb_info* info, const struct fb_fillrect* re
switch (rect->rop) { switch (rect->rop) {
case ROP_COPY: case ROP_COPY:
matroxfb_accel_clear(PMINFO ((u_int32_t*)info->pseudo_palette)[rect->color], rect->dy, rect->dx, rect->height, rect->width); matroxfb_accel_clear(minfo, ((u_int32_t *)info->pseudo_palette)[rect->color], rect->dy, rect->dx, rect->height, rect->width);
break; break;
} }
} }
static void matroxfb_cfb4_clear(WPMINFO u_int32_t bgx, int sy, int sx, int height, int width) { static void matroxfb_cfb4_clear(struct matrox_fb_info *minfo, u_int32_t bgx,
int sy, int sx, int height, int width)
{
int whattodo; int whattodo;
CRITFLAGS CRITFLAGS
...@@ -371,13 +380,15 @@ static void matroxfb_cfb4_fillrect(struct fb_info* info, const struct fb_fillrec ...@@ -371,13 +380,15 @@ static void matroxfb_cfb4_fillrect(struct fb_info* info, const struct fb_fillrec
switch (rect->rop) { switch (rect->rop) {
case ROP_COPY: case ROP_COPY:
matroxfb_cfb4_clear(PMINFO ((u_int32_t*)info->pseudo_palette)[rect->color], rect->dy, rect->dx, rect->height, rect->width); matroxfb_cfb4_clear(minfo, ((u_int32_t *)info->pseudo_palette)[rect->color], rect->dy, rect->dx, rect->height, rect->width);
break; break;
} }
} }
static void matroxfb_1bpp_imageblit(WPMINFO u_int32_t fgx, u_int32_t bgx, static void matroxfb_1bpp_imageblit(struct matrox_fb_info *minfo, u_int32_t fgx,
const u_int8_t* chardata, int width, int height, int yy, int xx) { u_int32_t bgx, const u_int8_t *chardata,
int width, int height, int yy, int xx)
{
u_int32_t step; u_int32_t step;
u_int32_t ydstlen; u_int32_t ydstlen;
u_int32_t xlen; u_int32_t xlen;
...@@ -476,7 +487,7 @@ static void matroxfb_imageblit(struct fb_info* info, const struct fb_image* imag ...@@ -476,7 +487,7 @@ static void matroxfb_imageblit(struct fb_info* info, const struct fb_image* imag
fgx = ((u_int32_t*)info->pseudo_palette)[image->fg_color]; fgx = ((u_int32_t*)info->pseudo_palette)[image->fg_color];
bgx = ((u_int32_t*)info->pseudo_palette)[image->bg_color]; bgx = ((u_int32_t*)info->pseudo_palette)[image->bg_color];
matroxfb_1bpp_imageblit(PMINFO fgx, bgx, image->data, image->width, image->height, image->dy, image->dx); matroxfb_1bpp_imageblit(minfo, fgx, bgx, image->data, image->width, image->height, image->dy, image->dx);
} else { } else {
/* Danger! image->depth is useless: logo painting code always /* Danger! image->depth is useless: logo painting code always
passes framebuffer color depth here, although logo data are passes framebuffer color depth here, although logo data are
......
...@@ -3,6 +3,6 @@ ...@@ -3,6 +3,6 @@
#include "matroxfb_base.h" #include "matroxfb_base.h"
void matrox_cfbX_init(WPMINFO2); void matrox_cfbX_init(struct matrox_fb_info *minfo);
#endif #endif
This diff is collapsed.
...@@ -524,22 +524,15 @@ struct matrox_fb_info { ...@@ -524,22 +524,15 @@ struct matrox_fb_info {
#define info2minfo(info) container_of(info, struct matrox_fb_info, fbcon) #define info2minfo(info) container_of(info, struct matrox_fb_info, fbcon)
#define WPMINFO2 struct matrox_fb_info* minfo
#define WPMINFO WPMINFO2 ,
#define CPMINFO2 const struct matrox_fb_info* minfo
#define CPMINFO CPMINFO2 ,
#define PMINFO2 minfo
#define PMINFO PMINFO2 ,
#define MINFO_FROM(x) struct matrox_fb_info* minfo = x #define MINFO_FROM(x) struct matrox_fb_info* minfo = x
#define MINFO_FROM_INFO(x) MINFO_FROM(info2minfo(x)) #define MINFO_FROM_INFO(x) MINFO_FROM(info2minfo(x))
struct matrox_switch { struct matrox_switch {
int (*preinit)(WPMINFO2); int (*preinit)(struct matrox_fb_info *minfo);
void (*reset)(WPMINFO2); void (*reset)(struct matrox_fb_info *minfo);
int (*init)(WPMINFO struct my_timming*); int (*init)(struct matrox_fb_info *minfo, struct my_timming*);
void (*restore)(WPMINFO2); void (*restore)(struct matrox_fb_info *minfo);
}; };
struct matroxfb_driver { struct matroxfb_driver {
...@@ -729,11 +722,12 @@ void matroxfb_unregister_driver(struct matroxfb_driver* drv); ...@@ -729,11 +722,12 @@ void matroxfb_unregister_driver(struct matroxfb_driver* drv);
#define matroxfb_DAC_unlock() spin_unlock(&minfo->lock.DAC) #define matroxfb_DAC_unlock() spin_unlock(&minfo->lock.DAC)
#define matroxfb_DAC_lock_irqsave(flags) spin_lock_irqsave(&minfo->lock.DAC, flags) #define matroxfb_DAC_lock_irqsave(flags) spin_lock_irqsave(&minfo->lock.DAC, flags)
#define matroxfb_DAC_unlock_irqrestore(flags) spin_unlock_irqrestore(&minfo->lock.DAC, flags) #define matroxfb_DAC_unlock_irqrestore(flags) spin_unlock_irqrestore(&minfo->lock.DAC, flags)
extern void matroxfb_DAC_out(CPMINFO int reg, int val); extern void matroxfb_DAC_out(const struct matrox_fb_info *minfo, int reg,
extern int matroxfb_DAC_in(CPMINFO int reg); int val);
extern int matroxfb_DAC_in(const struct matrox_fb_info *minfo, int reg);
extern void matroxfb_var2my(struct fb_var_screeninfo* fvsi, struct my_timming* mt); extern void matroxfb_var2my(struct fb_var_screeninfo* fvsi, struct my_timming* mt);
extern int matroxfb_wait_for_sync(WPMINFO u_int32_t crtc); extern int matroxfb_wait_for_sync(struct matrox_fb_info *minfo, u_int32_t crtc);
extern int matroxfb_enable_irq(WPMINFO int reenable); extern int matroxfb_enable_irq(struct matrox_fb_info *minfo, int reenable);
#ifdef MATROXFB_USE_SPINLOCKS #ifdef MATROXFB_USE_SPINLOCKS
#define CRITBEGIN spin_lock_irqsave(&minfo->lock.accel, critflags); #define CRITBEGIN spin_lock_irqsave(&minfo->lock.accel, critflags);
......
...@@ -369,8 +369,8 @@ static int matroxfb_dh_set_par(struct fb_info* info) { ...@@ -369,8 +369,8 @@ static int matroxfb_dh_set_par(struct fb_info* info) {
} else { } else {
matroxfb_dh_disable(m2info); matroxfb_dh_disable(m2info);
} }
DAC1064_global_init(PMINFO2); DAC1064_global_init(minfo);
DAC1064_global_restore(PMINFO2); DAC1064_global_restore(minfo);
down_read(&minfo->altout.lock); down_read(&minfo->altout.lock);
for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) { for (out = 0; out < MATROXFB_MAX_OUTPUTS; out++) {
if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2 && if (minfo->outputs[out].src == MATROXFB_SRC_CRTC2 &&
...@@ -401,7 +401,7 @@ static int matroxfb_dh_pan_display(struct fb_var_screeninfo* var, struct fb_info ...@@ -401,7 +401,7 @@ static int matroxfb_dh_pan_display(struct fb_var_screeninfo* var, struct fb_info
static int matroxfb_dh_get_vblank(const struct matroxfb_dh_fb_info* m2info, struct fb_vblank* vblank) { static int matroxfb_dh_get_vblank(const struct matroxfb_dh_fb_info* m2info, struct fb_vblank* vblank) {
MINFO_FROM(m2info->primary_dev); MINFO_FROM(m2info->primary_dev);
matroxfb_enable_irq(PMINFO 0); matroxfb_enable_irq(minfo, 0);
memset(vblank, 0, sizeof(*vblank)); memset(vblank, 0, sizeof(*vblank));
vblank->flags = FB_VBLANK_HAVE_VCOUNT | FB_VBLANK_HAVE_VBLANK; vblank->flags = FB_VBLANK_HAVE_VCOUNT | FB_VBLANK_HAVE_VBLANK;
/* mask out reserved bits + field number (odd/even) */ /* mask out reserved bits + field number (odd/even) */
...@@ -449,7 +449,7 @@ static int matroxfb_dh_ioctl(struct fb_info *info, ...@@ -449,7 +449,7 @@ static int matroxfb_dh_ioctl(struct fb_info *info,
if (crt != 0) if (crt != 0)
return -ENODEV; return -ENODEV;
return matroxfb_wait_for_sync(PMINFO 1); return matroxfb_wait_for_sync(minfo, 1);
} }
case MATROXFB_SET_OUTPUT_MODE: case MATROXFB_SET_OUTPUT_MODE:
case MATROXFB_GET_OUTPUT_MODE: case MATROXFB_GET_OUTPUT_MODE:
...@@ -595,7 +595,9 @@ static struct fb_var_screeninfo matroxfb_dh_defined = { ...@@ -595,7 +595,9 @@ static struct fb_var_screeninfo matroxfb_dh_defined = {
0, {0,0,0,0,0} 0, {0,0,0,0,0}
}; };
static int matroxfb_dh_regit(CPMINFO struct matroxfb_dh_fb_info* m2info) { static int matroxfb_dh_regit(const struct matrox_fb_info *minfo,
struct matroxfb_dh_fb_info *m2info)
{
#define minfo (m2info->primary_dev) #define minfo (m2info->primary_dev)
void* oldcrtc2; void* oldcrtc2;
...@@ -649,7 +651,7 @@ static int matroxfb_dh_regit(CPMINFO struct matroxfb_dh_fb_info* m2info) { ...@@ -649,7 +651,7 @@ static int matroxfb_dh_regit(CPMINFO struct matroxfb_dh_fb_info* m2info) {
static int matroxfb_dh_registerfb(struct matroxfb_dh_fb_info* m2info) { static int matroxfb_dh_registerfb(struct matroxfb_dh_fb_info* m2info) {
#define minfo (m2info->primary_dev) #define minfo (m2info->primary_dev)
if (matroxfb_dh_regit(PMINFO m2info)) { if (matroxfb_dh_regit(minfo, m2info)) {
printk(KERN_ERR "matroxfb_crtc2: secondary head failed to register\n"); printk(KERN_ERR "matroxfb_crtc2: secondary head failed to register\n");
return -1; return -1;
} }
......
...@@ -80,50 +80,57 @@ static int get_ctrl_id(__u32 v4l2_id) { ...@@ -80,50 +80,57 @@ static int get_ctrl_id(__u32 v4l2_id) {
return -EINVAL; return -EINVAL;
} }
static inline int* get_ctrl_ptr(WPMINFO unsigned int idx) { static inline int *get_ctrl_ptr(struct matrox_fb_info *minfo, unsigned int idx)
{
return (int*)((char*)minfo + g450_controls[idx].control); return (int*)((char*)minfo + g450_controls[idx].control);
} }
static void tvo_fill_defaults(WPMINFO2) { static void tvo_fill_defaults(struct matrox_fb_info *minfo)
{
unsigned int i; unsigned int i;
for (i = 0; i < G450CTRLS; i++) { for (i = 0; i < G450CTRLS; i++) {
*get_ctrl_ptr(PMINFO i) = g450_controls[i].desc.default_value; *get_ctrl_ptr(minfo, i) = g450_controls[i].desc.default_value;
} }
} }
static int cve2_get_reg(WPMINFO int reg) { static int cve2_get_reg(struct matrox_fb_info *minfo, int reg)
{
unsigned long flags; unsigned long flags;
int val; int val;
matroxfb_DAC_lock_irqsave(flags); matroxfb_DAC_lock_irqsave(flags);
matroxfb_DAC_out(PMINFO 0x87, reg); matroxfb_DAC_out(minfo, 0x87, reg);
val = matroxfb_DAC_in(PMINFO 0x88); val = matroxfb_DAC_in(minfo, 0x88);
matroxfb_DAC_unlock_irqrestore(flags); matroxfb_DAC_unlock_irqrestore(flags);
return val; return val;
} }
static void cve2_set_reg(WPMINFO int reg, int val) { static void cve2_set_reg(struct matrox_fb_info *minfo, int reg, int val)
{
unsigned long flags; unsigned long flags;
matroxfb_DAC_lock_irqsave(flags); matroxfb_DAC_lock_irqsave(flags);
matroxfb_DAC_out(PMINFO 0x87, reg); matroxfb_DAC_out(minfo, 0x87, reg);
matroxfb_DAC_out(PMINFO 0x88, val); matroxfb_DAC_out(minfo, 0x88, val);
matroxfb_DAC_unlock_irqrestore(flags); matroxfb_DAC_unlock_irqrestore(flags);
} }
static void cve2_set_reg10(WPMINFO int reg, int val) { static void cve2_set_reg10(struct matrox_fb_info *minfo, int reg, int val)
{
unsigned long flags; unsigned long flags;
matroxfb_DAC_lock_irqsave(flags); matroxfb_DAC_lock_irqsave(flags);
matroxfb_DAC_out(PMINFO 0x87, reg); matroxfb_DAC_out(minfo, 0x87, reg);
matroxfb_DAC_out(PMINFO 0x88, val >> 2); matroxfb_DAC_out(minfo, 0x88, val >> 2);
matroxfb_DAC_out(PMINFO 0x87, reg + 1); matroxfb_DAC_out(minfo, 0x87, reg + 1);
matroxfb_DAC_out(PMINFO 0x88, val & 3); matroxfb_DAC_out(minfo, 0x88, val & 3);
matroxfb_DAC_unlock_irqrestore(flags); matroxfb_DAC_unlock_irqrestore(flags);
} }
static void g450_compute_bwlevel(CPMINFO int *bl, int *wl) { static void g450_compute_bwlevel(const struct matrox_fb_info *minfo, int *bl,
int *wl)
{
const int b = minfo->altout.tvo_params.brightness + BLMIN; const int b = minfo->altout.tvo_params.brightness + BLMIN;
const int c = minfo->altout.tvo_params.contrast; const int c = minfo->altout.tvo_params.contrast;
...@@ -162,7 +169,7 @@ static int g450_set_ctrl(void* md, struct v4l2_control *p) { ...@@ -162,7 +169,7 @@ static int g450_set_ctrl(void* md, struct v4l2_control *p) {
/* /*
* Check if changed. * Check if changed.
*/ */
if (p->value == *get_ctrl_ptr(PMINFO i)) return 0; if (p->value == *get_ctrl_ptr(minfo, i)) return 0;
/* /*
* Check limits. * Check limits.
...@@ -173,31 +180,31 @@ static int g450_set_ctrl(void* md, struct v4l2_control *p) { ...@@ -173,31 +180,31 @@ static int g450_set_ctrl(void* md, struct v4l2_control *p) {
/* /*
* Store new value. * Store new value.
*/ */
*get_ctrl_ptr(PMINFO i) = p->value; *get_ctrl_ptr(minfo, i) = p->value;
switch (p->id) { switch (p->id) {
case V4L2_CID_BRIGHTNESS: case V4L2_CID_BRIGHTNESS:
case V4L2_CID_CONTRAST: case V4L2_CID_CONTRAST:
{ {
int blacklevel, whitelevel; int blacklevel, whitelevel;
g450_compute_bwlevel(PMINFO &blacklevel, &whitelevel); g450_compute_bwlevel(minfo, &blacklevel, &whitelevel);
cve2_set_reg10(PMINFO 0x0e, blacklevel); cve2_set_reg10(minfo, 0x0e, blacklevel);
cve2_set_reg10(PMINFO 0x1e, whitelevel); cve2_set_reg10(minfo, 0x1e, whitelevel);
} }
break; break;
case V4L2_CID_SATURATION: case V4L2_CID_SATURATION:
cve2_set_reg(PMINFO 0x20, p->value); cve2_set_reg(minfo, 0x20, p->value);
cve2_set_reg(PMINFO 0x22, p->value); cve2_set_reg(minfo, 0x22, p->value);
break; break;
case V4L2_CID_HUE: case V4L2_CID_HUE:
cve2_set_reg(PMINFO 0x25, p->value); cve2_set_reg(minfo, 0x25, p->value);
break; break;
case MATROXFB_CID_TESTOUT: case MATROXFB_CID_TESTOUT:
{ {
unsigned char val = cve2_get_reg (PMINFO 0x05); unsigned char val = cve2_get_reg(minfo, 0x05);
if (p->value) val |= 0x02; if (p->value) val |= 0x02;
else val &= ~0x02; else val &= ~0x02;
cve2_set_reg(PMINFO 0x05, val); cve2_set_reg(minfo, 0x05, val);
} }
break; break;
} }
...@@ -212,7 +219,7 @@ static int g450_get_ctrl(void* md, struct v4l2_control *p) { ...@@ -212,7 +219,7 @@ static int g450_get_ctrl(void* md, struct v4l2_control *p) {
i = get_ctrl_id(p->id); i = get_ctrl_id(p->id);
if (i < 0) return -EINVAL; if (i < 0) return -EINVAL;
p->value = *get_ctrl_ptr(PMINFO i); p->value = *get_ctrl_ptr(minfo, i);
return 0; return 0;
} }
...@@ -226,7 +233,9 @@ struct output_desc { ...@@ -226,7 +233,9 @@ struct output_desc {
unsigned int v_total; unsigned int v_total;
}; };
static void computeRegs(WPMINFO struct mavenregs* r, struct my_timming* mt, const struct output_desc* outd) { static void computeRegs(struct matrox_fb_info *minfo, struct mavenregs *r,
struct my_timming *mt, const struct output_desc *outd)
{
u_int32_t chromasc; u_int32_t chromasc;
u_int32_t hlen; u_int32_t hlen;
u_int32_t hsl; u_int32_t hsl;
...@@ -251,10 +260,10 @@ static void computeRegs(WPMINFO struct mavenregs* r, struct my_timming* mt, cons ...@@ -251,10 +260,10 @@ static void computeRegs(WPMINFO struct mavenregs* r, struct my_timming* mt, cons
dprintk(KERN_DEBUG "Want %u kHz pixclock\n", (unsigned int)piic); dprintk(KERN_DEBUG "Want %u kHz pixclock\n", (unsigned int)piic);
mnp = matroxfb_g450_setclk(PMINFO piic, M_VIDEO_PLL); mnp = matroxfb_g450_setclk(minfo, piic, M_VIDEO_PLL);
mt->mnp = mnp; mt->mnp = mnp;
mt->pixclock = g450_mnp2f(PMINFO mnp); mt->pixclock = g450_mnp2f(minfo, mnp);
dprintk(KERN_DEBUG "MNP=%08X\n", mnp); dprintk(KERN_DEBUG "MNP=%08X\n", mnp);
...@@ -490,20 +499,22 @@ static void cve2_init_TVdata(int norm, struct mavenregs* data, const struct outp ...@@ -490,20 +499,22 @@ static void cve2_init_TVdata(int norm, struct mavenregs* data, const struct outp
return; return;
} }
#define LR(x) cve2_set_reg(PMINFO (x), m->regs[(x)]) #define LR(x) cve2_set_reg(minfo, (x), m->regs[(x)])
static void cve2_init_TV(WPMINFO const struct mavenregs* m) { static void cve2_init_TV(struct matrox_fb_info *minfo,
const struct mavenregs *m)
{
int i; int i;
LR(0x80); LR(0x80);
LR(0x82); LR(0x83); LR(0x82); LR(0x83);
LR(0x84); LR(0x85); LR(0x84); LR(0x85);
cve2_set_reg(PMINFO 0x3E, 0x01); cve2_set_reg(minfo, 0x3E, 0x01);
for (i = 0; i < 0x3E; i++) { for (i = 0; i < 0x3E; i++) {
LR(i); LR(i);
} }
cve2_set_reg(PMINFO 0x3E, 0x00); cve2_set_reg(minfo, 0x3E, 0x00);
} }
static int matroxfb_g450_compute(void* md, struct my_timming* mt) { static int matroxfb_g450_compute(void* md, struct my_timming* mt) {
...@@ -518,7 +529,7 @@ static int matroxfb_g450_compute(void* md, struct my_timming* mt) { ...@@ -518,7 +529,7 @@ static int matroxfb_g450_compute(void* md, struct my_timming* mt) {
cve2_init_TVdata(minfo->outputs[1].mode, &minfo->hw.maven, &outd); cve2_init_TVdata(minfo->outputs[1].mode, &minfo->hw.maven, &outd);
{ {
int blacklevel, whitelevel; int blacklevel, whitelevel;
g450_compute_bwlevel(PMINFO &blacklevel, &whitelevel); g450_compute_bwlevel(minfo, &blacklevel, &whitelevel);
minfo->hw.maven.regs[0x0E] = blacklevel >> 2; minfo->hw.maven.regs[0x0E] = blacklevel >> 2;
minfo->hw.maven.regs[0x0F] = blacklevel & 3; minfo->hw.maven.regs[0x0F] = blacklevel & 3;
minfo->hw.maven.regs[0x1E] = whitelevel >> 2; minfo->hw.maven.regs[0x1E] = whitelevel >> 2;
...@@ -533,12 +544,12 @@ static int matroxfb_g450_compute(void* md, struct my_timming* mt) { ...@@ -533,12 +544,12 @@ static int matroxfb_g450_compute(void* md, struct my_timming* mt) {
minfo->hw.maven.regs[0x05] |= 0x02; minfo->hw.maven.regs[0x05] |= 0x02;
} }
} }
computeRegs(PMINFO &minfo->hw.maven, mt, outd); computeRegs(minfo, &minfo->hw.maven, mt, outd);
} else if (mt->mnp < 0) { } else if (mt->mnp < 0) {
/* We must program clocks before CRTC2, otherwise interlaced mode /* We must program clocks before CRTC2, otherwise interlaced mode
startup may fail */ startup may fail */
mt->mnp = matroxfb_g450_setclk(PMINFO mt->pixclock, (mt->crtc == MATROXFB_SRC_CRTC1) ? M_PIXEL_PLL_C : M_VIDEO_PLL); mt->mnp = matroxfb_g450_setclk(minfo, mt->pixclock, (mt->crtc == MATROXFB_SRC_CRTC1) ? M_PIXEL_PLL_C : M_VIDEO_PLL);
mt->pixclock = g450_mnp2f(PMINFO mt->mnp); mt->pixclock = g450_mnp2f(minfo, mt->mnp);
} }
dprintk(KERN_DEBUG "Pixclock = %u\n", mt->pixclock); dprintk(KERN_DEBUG "Pixclock = %u\n", mt->pixclock);
return 0; return 0;
...@@ -548,7 +559,7 @@ static int matroxfb_g450_program(void* md) { ...@@ -548,7 +559,7 @@ static int matroxfb_g450_program(void* md) {
MINFO_FROM(md); MINFO_FROM(md);
if (minfo->outputs[1].mode != MATROXFB_OUTPUT_MODE_MONITOR) { if (minfo->outputs[1].mode != MATROXFB_OUTPUT_MODE_MONITOR) {
cve2_init_TV(PMINFO &minfo->hw.maven); cve2_init_TV(minfo, &minfo->hw.maven);
} }
return 0; return 0;
} }
...@@ -567,8 +578,8 @@ static int g450_dvi_compute(void* md, struct my_timming* mt) { ...@@ -567,8 +578,8 @@ static int g450_dvi_compute(void* md, struct my_timming* mt) {
MINFO_FROM(md); MINFO_FROM(md);
if (mt->mnp < 0) { if (mt->mnp < 0) {
mt->mnp = matroxfb_g450_setclk(PMINFO mt->pixclock, (mt->crtc == MATROXFB_SRC_CRTC1) ? M_PIXEL_PLL_C : M_VIDEO_PLL); mt->mnp = matroxfb_g450_setclk(minfo, mt->pixclock, (mt->crtc == MATROXFB_SRC_CRTC1) ? M_PIXEL_PLL_C : M_VIDEO_PLL);
mt->pixclock = g450_mnp2f(PMINFO mt->mnp); mt->pixclock = g450_mnp2f(minfo, mt->mnp);
} }
return 0; return 0;
} }
...@@ -588,10 +599,11 @@ static struct matrox_altout matroxfb_g450_dvi = { ...@@ -588,10 +599,11 @@ static struct matrox_altout matroxfb_g450_dvi = {
.compute = g450_dvi_compute, .compute = g450_dvi_compute,
}; };
void matroxfb_g450_connect(WPMINFO2) { void matroxfb_g450_connect(struct matrox_fb_info *minfo)
{
if (minfo->devflags.g450dac) { if (minfo->devflags.g450dac) {
down_write(&minfo->altout.lock); down_write(&minfo->altout.lock);
tvo_fill_defaults(PMINFO2); tvo_fill_defaults(minfo);
minfo->outputs[1].src = minfo->outputs[1].default_src; minfo->outputs[1].src = minfo->outputs[1].default_src;
minfo->outputs[1].data = minfo; minfo->outputs[1].data = minfo;
minfo->outputs[1].output = &matroxfb_g450_altout; minfo->outputs[1].output = &matroxfb_g450_altout;
...@@ -604,7 +616,8 @@ void matroxfb_g450_connect(WPMINFO2) { ...@@ -604,7 +616,8 @@ void matroxfb_g450_connect(WPMINFO2) {
} }
} }
void matroxfb_g450_shutdown(WPMINFO2) { void matroxfb_g450_shutdown(struct matrox_fb_info *minfo)
{
if (minfo->devflags.g450dac) { if (minfo->devflags.g450dac) {
down_write(&minfo->altout.lock); down_write(&minfo->altout.lock);
minfo->outputs[1].src = MATROXFB_SRC_NONE; minfo->outputs[1].src = MATROXFB_SRC_NONE;
......
...@@ -4,11 +4,11 @@ ...@@ -4,11 +4,11 @@
#include "matroxfb_base.h" #include "matroxfb_base.h"
#ifdef CONFIG_FB_MATROX_G #ifdef CONFIG_FB_MATROX_G
void matroxfb_g450_connect(WPMINFO2); void matroxfb_g450_connect(struct matrox_fb_info *minfo);
void matroxfb_g450_shutdown(WPMINFO2); void matroxfb_g450_shutdown(struct matrox_fb_info *minfo);
#else #else
static inline void matroxfb_g450_connect(WPMINFO2) { }; static inline void matroxfb_g450_connect(struct matrox_fb_info *minfo) { };
static inline void matroxfb_g450_shutdown(WPMINFO2) { }; static inline void matroxfb_g450_shutdown(struct matrox_fb_info *minfo) { };
#endif #endif
#endif /* __MATROXFB_G450_H__ */ #endif /* __MATROXFB_G450_H__ */
...@@ -89,13 +89,15 @@ ...@@ -89,13 +89,15 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/matroxfb.h> #include <linux/matroxfb.h>
void matroxfb_DAC_out(CPMINFO int reg, int val) { void matroxfb_DAC_out(const struct matrox_fb_info *minfo, int reg, int val)
{
DBG_REG(__func__) DBG_REG(__func__)
mga_outb(M_RAMDAC_BASE+M_X_INDEX, reg); mga_outb(M_RAMDAC_BASE+M_X_INDEX, reg);
mga_outb(M_RAMDAC_BASE+M_X_DATAREG, val); mga_outb(M_RAMDAC_BASE+M_X_DATAREG, val);
} }
int matroxfb_DAC_in(CPMINFO int reg) { int matroxfb_DAC_in(const struct matrox_fb_info *minfo, int reg)
{
DBG_REG(__func__) DBG_REG(__func__)
mga_outb(M_RAMDAC_BASE+M_X_INDEX, reg); mga_outb(M_RAMDAC_BASE+M_X_INDEX, reg);
return mga_inb(M_RAMDAC_BASE+M_X_DATAREG); return mga_inb(M_RAMDAC_BASE+M_X_DATAREG);
...@@ -184,7 +186,8 @@ int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int f ...@@ -184,7 +186,8 @@ int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int f
return bestvco; return bestvco;
} }
int matroxfb_vgaHWinit(WPMINFO struct my_timming* m) { int matroxfb_vgaHWinit(struct matrox_fb_info *minfo, struct my_timming *m)
{
unsigned int hd, hs, he, hbe, ht; unsigned int hd, hs, he, hbe, ht;
unsigned int vd, vs, ve, vt, lc; unsigned int vd, vs, ve, vt, lc;
unsigned int wd; unsigned int wd;
...@@ -331,7 +334,8 @@ int matroxfb_vgaHWinit(WPMINFO struct my_timming* m) { ...@@ -331,7 +334,8 @@ int matroxfb_vgaHWinit(WPMINFO struct my_timming* m) {
return 0; return 0;
}; };
void matroxfb_vgaHWrestore(WPMINFO2) { void matroxfb_vgaHWrestore(struct matrox_fb_info *minfo)
{
int i; int i;
struct matrox_hw_state * const hw = &minfo->hw; struct matrox_hw_state * const hw = &minfo->hw;
CRITFLAGS CRITFLAGS
...@@ -522,7 +526,9 @@ static void parse_bios(unsigned char __iomem* vbios, struct matrox_bios* bd) { ...@@ -522,7 +526,9 @@ static void parse_bios(unsigned char __iomem* vbios, struct matrox_bios* bd) {
#endif #endif
} }
static int parse_pins1(WPMINFO const struct matrox_bios* bd) { static int parse_pins1(struct matrox_fb_info *minfo,
const struct matrox_bios *bd)
{
unsigned int maxdac; unsigned int maxdac;
switch (bd->pins[22]) { switch (bd->pins[22]) {
...@@ -542,7 +548,8 @@ static int parse_pins1(WPMINFO const struct matrox_bios* bd) { ...@@ -542,7 +548,8 @@ static int parse_pins1(WPMINFO const struct matrox_bios* bd) {
return 0; return 0;
} }
static void default_pins1(WPMINFO2) { static void default_pins1(struct matrox_fb_info *minfo)
{
/* Millennium */ /* Millennium */
minfo->limits.pixel.vcomax = 220000; minfo->limits.pixel.vcomax = 220000;
minfo->values.pll.system = 50000; minfo->values.pll.system = 50000;
...@@ -550,7 +557,9 @@ static void default_pins1(WPMINFO2) { ...@@ -550,7 +557,9 @@ static void default_pins1(WPMINFO2) {
minfo->values.reg.mctlwtst = 0x00030101; minfo->values.reg.mctlwtst = 0x00030101;
} }
static int parse_pins2(WPMINFO const struct matrox_bios* bd) { static int parse_pins2(struct matrox_fb_info *minfo,
const struct matrox_bios *bd)
{
minfo->limits.pixel.vcomax = minfo->limits.pixel.vcomax =
minfo->limits.system.vcomax = (bd->pins[41] == 0xFF) ? 230000 : ((bd->pins[41] + 100) * 1000); minfo->limits.system.vcomax = (bd->pins[41] == 0xFF) ? 230000 : ((bd->pins[41] + 100) * 1000);
minfo->values.reg.mctlwtst = ((bd->pins[51] & 0x01) ? 0x00000001 : 0) | minfo->values.reg.mctlwtst = ((bd->pins[51] & 0x01) ? 0x00000001 : 0) |
...@@ -562,7 +571,8 @@ static int parse_pins2(WPMINFO const struct matrox_bios* bd) { ...@@ -562,7 +571,8 @@ static int parse_pins2(WPMINFO const struct matrox_bios* bd) {
return 0; return 0;
} }
static void default_pins2(WPMINFO2) { static void default_pins2(struct matrox_fb_info *minfo)
{
/* Millennium II, Mystique */ /* Millennium II, Mystique */
minfo->limits.pixel.vcomax = minfo->limits.pixel.vcomax =
minfo->limits.system.vcomax = 230000; minfo->limits.system.vcomax = 230000;
...@@ -571,7 +581,9 @@ static void default_pins2(WPMINFO2) { ...@@ -571,7 +581,9 @@ static void default_pins2(WPMINFO2) {
minfo->features.pll.ref_freq = 14318; minfo->features.pll.ref_freq = 14318;
} }
static int parse_pins3(WPMINFO const struct matrox_bios* bd) { static int parse_pins3(struct matrox_fb_info *minfo,
const struct matrox_bios *bd)
{
minfo->limits.pixel.vcomax = minfo->limits.pixel.vcomax =
minfo->limits.system.vcomax = (bd->pins[36] == 0xFF) ? 230000 : ((bd->pins[36] + 100) * 1000); minfo->limits.system.vcomax = (bd->pins[36] == 0xFF) ? 230000 : ((bd->pins[36] + 100) * 1000);
minfo->values.reg.mctlwtst = get_unaligned_le32(bd->pins + 48) == 0xFFFFFFFF ? minfo->values.reg.mctlwtst = get_unaligned_le32(bd->pins + 48) == 0xFFFFFFFF ?
...@@ -587,7 +599,8 @@ static int parse_pins3(WPMINFO const struct matrox_bios* bd) { ...@@ -587,7 +599,8 @@ static int parse_pins3(WPMINFO const struct matrox_bios* bd) {
return 0; return 0;
} }
static void default_pins3(WPMINFO2) { static void default_pins3(struct matrox_fb_info *minfo)
{
/* G100, G200 */ /* G100, G200 */
minfo->limits.pixel.vcomax = minfo->limits.pixel.vcomax =
minfo->limits.system.vcomax = 230000; minfo->limits.system.vcomax = 230000;
...@@ -598,7 +611,9 @@ static void default_pins3(WPMINFO2) { ...@@ -598,7 +611,9 @@ static void default_pins3(WPMINFO2) {
minfo->features.pll.ref_freq = 27000; minfo->features.pll.ref_freq = 27000;
} }
static int parse_pins4(WPMINFO const struct matrox_bios* bd) { static int parse_pins4(struct matrox_fb_info *minfo,
const struct matrox_bios *bd)
{
minfo->limits.pixel.vcomax = (bd->pins[ 39] == 0xFF) ? 230000 : bd->pins[ 39] * 4000; minfo->limits.pixel.vcomax = (bd->pins[ 39] == 0xFF) ? 230000 : bd->pins[ 39] * 4000;
minfo->limits.system.vcomax = (bd->pins[ 38] == 0xFF) ? minfo->limits.pixel.vcomax : bd->pins[ 38] * 4000; minfo->limits.system.vcomax = (bd->pins[ 38] == 0xFF) ? minfo->limits.pixel.vcomax : bd->pins[ 38] * 4000;
minfo->values.reg.mctlwtst = get_unaligned_le32(bd->pins + 71); minfo->values.reg.mctlwtst = get_unaligned_le32(bd->pins + 71);
...@@ -615,7 +630,8 @@ static int parse_pins4(WPMINFO const struct matrox_bios* bd) { ...@@ -615,7 +630,8 @@ static int parse_pins4(WPMINFO const struct matrox_bios* bd) {
return 0; return 0;
} }
static void default_pins4(WPMINFO2) { static void default_pins4(struct matrox_fb_info *minfo)
{
/* G400 */ /* G400 */
minfo->limits.pixel.vcomax = minfo->limits.pixel.vcomax =
minfo->limits.system.vcomax = 252000; minfo->limits.system.vcomax = 252000;
...@@ -627,7 +643,9 @@ static void default_pins4(WPMINFO2) { ...@@ -627,7 +643,9 @@ static void default_pins4(WPMINFO2) {
minfo->features.pll.ref_freq = 27000; minfo->features.pll.ref_freq = 27000;
} }
static int parse_pins5(WPMINFO const struct matrox_bios* bd) { static int parse_pins5(struct matrox_fb_info *minfo,
const struct matrox_bios *bd)
{
unsigned int mult; unsigned int mult;
mult = bd->pins[4]?8000:6000; mult = bd->pins[4]?8000:6000;
...@@ -662,7 +680,8 @@ static int parse_pins5(WPMINFO const struct matrox_bios* bd) { ...@@ -662,7 +680,8 @@ static int parse_pins5(WPMINFO const struct matrox_bios* bd) {
return 0; return 0;
} }
static void default_pins5(WPMINFO2) { static void default_pins5(struct matrox_fb_info *minfo)
{
/* Mine 16MB G450 with SDRAM DDR */ /* Mine 16MB G450 with SDRAM DDR */
minfo->limits.pixel.vcomax = minfo->limits.pixel.vcomax =
minfo->limits.system.vcomax = minfo->limits.system.vcomax =
...@@ -686,20 +705,22 @@ static void default_pins5(WPMINFO2) { ...@@ -686,20 +705,22 @@ static void default_pins5(WPMINFO2) {
minfo->values.reg.maccess = 0x00004000; minfo->values.reg.maccess = 0x00004000;
} }
static int matroxfb_set_limits(WPMINFO const struct matrox_bios* bd) { static int matroxfb_set_limits(struct matrox_fb_info *minfo,
const struct matrox_bios *bd)
{
unsigned int pins_version; unsigned int pins_version;
static const unsigned int pinslen[] = { 64, 64, 64, 128, 128 }; static const unsigned int pinslen[] = { 64, 64, 64, 128, 128 };
switch (minfo->chip) { switch (minfo->chip) {
case MGA_2064: default_pins1(PMINFO2); break; case MGA_2064: default_pins1(minfo); break;
case MGA_2164: case MGA_2164:
case MGA_1064: case MGA_1064:
case MGA_1164: default_pins2(PMINFO2); break; case MGA_1164: default_pins2(minfo); break;
case MGA_G100: case MGA_G100:
case MGA_G200: default_pins3(PMINFO2); break; case MGA_G200: default_pins3(minfo); break;
case MGA_G400: default_pins4(PMINFO2); break; case MGA_G400: default_pins4(minfo); break;
case MGA_G450: case MGA_G450:
case MGA_G550: default_pins5(PMINFO2); break; case MGA_G550: default_pins5(minfo); break;
} }
if (!bd->bios_valid) { if (!bd->bios_valid) {
printk(KERN_INFO "matroxfb: Your Matrox device does not have BIOS\n"); printk(KERN_INFO "matroxfb: Your Matrox device does not have BIOS\n");
...@@ -724,22 +745,23 @@ static int matroxfb_set_limits(WPMINFO const struct matrox_bios* bd) { ...@@ -724,22 +745,23 @@ static int matroxfb_set_limits(WPMINFO const struct matrox_bios* bd) {
} }
switch (pins_version) { switch (pins_version) {
case 1: case 1:
return parse_pins1(PMINFO bd); return parse_pins1(minfo, bd);
case 2: case 2:
return parse_pins2(PMINFO bd); return parse_pins2(minfo, bd);
case 3: case 3:
return parse_pins3(PMINFO bd); return parse_pins3(minfo, bd);
case 4: case 4:
return parse_pins4(PMINFO bd); return parse_pins4(minfo, bd);
case 5: case 5:
return parse_pins5(PMINFO bd); return parse_pins5(minfo, bd);
default: default:
printk(KERN_DEBUG "matroxfb: Powerup info version %u is not yet supported\n", pins_version); printk(KERN_DEBUG "matroxfb: Powerup info version %u is not yet supported\n", pins_version);
return -1; return -1;
} }
} }
void matroxfb_read_pins(WPMINFO2) { void matroxfb_read_pins(struct matrox_fb_info *minfo)
{
u32 opt; u32 opt;
u32 biosbase; u32 biosbase;
u32 fbbase; u32 fbbase;
...@@ -775,7 +797,7 @@ void matroxfb_read_pins(WPMINFO2) { ...@@ -775,7 +797,7 @@ void matroxfb_read_pins(WPMINFO2) {
} }
} }
#endif #endif
matroxfb_set_limits(PMINFO &minfo->bios); matroxfb_set_limits(minfo, &minfo->bios);
printk(KERN_INFO "PInS memtype = %u\n", printk(KERN_INFO "PInS memtype = %u\n",
(minfo->values.reg.opt & 0x1C00) >> 10); (minfo->values.reg.opt & 0x1C00) >> 10);
} }
......
...@@ -6,13 +6,16 @@ ...@@ -6,13 +6,16 @@
/* also for modules */ /* also for modules */
int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int freq, unsigned int fmax, int matroxfb_PLL_calcclock(const struct matrox_pll_features* pll, unsigned int freq, unsigned int fmax,
unsigned int* in, unsigned int* feed, unsigned int* post); unsigned int* in, unsigned int* feed, unsigned int* post);
static inline int PLL_calcclock(CPMINFO unsigned int freq, unsigned int fmax, static inline int PLL_calcclock(const struct matrox_fb_info *minfo,
unsigned int* in, unsigned int* feed, unsigned int* post) { unsigned int freq, unsigned int fmax,
unsigned int *in, unsigned int *feed,
unsigned int *post)
{
return matroxfb_PLL_calcclock(&minfo->features.pll, freq, fmax, in, feed, post); return matroxfb_PLL_calcclock(&minfo->features.pll, freq, fmax, in, feed, post);
} }
int matroxfb_vgaHWinit(WPMINFO struct my_timming* m); int matroxfb_vgaHWinit(struct matrox_fb_info *minfo, struct my_timming* m);
void matroxfb_vgaHWrestore(WPMINFO2); void matroxfb_vgaHWrestore(struct matrox_fb_info *minfo);
void matroxfb_read_pins(WPMINFO2); void matroxfb_read_pins(struct matrox_fb_info *minfo);
#endif /* __MATROXFB_MISC_H__ */ #endif /* __MATROXFB_MISC_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment