Commit 48cb98d6 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jens Axboe

[PATCH] Update valkyriefb driver

This updates the valkyriefb driver to the new API.

From Paul Mackerras <paulus@samba.org>:

 "It compiles OK, but I haven't been able to test it.  I have simplified
  the driver quite a bit using the knowledge that there can only ever be
  one valkyrie graphics adaptor in a system - it is the built-in
  graphics adaptor on various ancient mac and powermac machines, and we
  access it at a hard-coded address, so we can only handle one."
parent 4fc51e1f
...@@ -66,15 +66,9 @@ ...@@ -66,15 +66,9 @@
#endif #endif
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <video/fbcon.h> #include "macmodes.h"
#include <video/fbcon-cfb8.h>
#include <video/fbcon-cfb16.h>
#include <video/macmodes.h>
#include "valkyriefb.h" #include "valkyriefb.h"
static int can_soft_blank = 1;
#ifdef CONFIG_MAC #ifdef CONFIG_MAC
/* We don't yet have functions to read the PRAM... perhaps we can /* We don't yet have functions to read the PRAM... perhaps we can
adapt them from the PPC code? */ adapt them from the PPC code? */
...@@ -84,27 +78,17 @@ static int default_cmode = CMODE_8; ...@@ -84,27 +78,17 @@ static int default_cmode = CMODE_8;
static int default_vmode = VMODE_NVRAM; static int default_vmode = VMODE_NVRAM;
static int default_cmode = CMODE_NVRAM; static int default_cmode = CMODE_NVRAM;
#endif #endif
static char fontname[40] __initdata = { 0 };
static int switching = 0;
struct fb_par_valkyrie { struct fb_par_valkyrie {
int vmode, cmode; int vmode, cmode;
int xres, yres; int xres, yres;
int vxres, vyres; int vxres, vyres;
int xoffset, yoffset; struct valkyrie_regvals *init;
}; };
struct fb_info_valkyrie { struct fb_info_valkyrie {
struct fb_info info; struct fb_info info;
struct fb_fix_screeninfo fix;
struct fb_var_screeninfo var;
struct display disp;
struct fb_par_valkyrie par; struct fb_par_valkyrie par;
struct {
__u8 red, green, blue;
} palette[256];
struct cmap_regs *cmap_regs; struct cmap_regs *cmap_regs;
unsigned long cmap_regs_phys; unsigned long cmap_regs_phys;
...@@ -116,9 +100,8 @@ struct fb_info_valkyrie { ...@@ -116,9 +100,8 @@ struct fb_info_valkyrie {
int sense; int sense;
unsigned long total_vram; unsigned long total_vram;
#ifdef FBCON_HAS_CFB16
u16 fbcon_cfb16_cmap[16]; u32 pseudo_palette[16];
#endif
}; };
/* /*
...@@ -127,10 +110,9 @@ struct fb_info_valkyrie { ...@@ -127,10 +110,9 @@ struct fb_info_valkyrie {
int valkyriefb_init(void); int valkyriefb_init(void);
int valkyriefb_setup(char*); int valkyriefb_setup(char*);
static int valkyrie_set_var(struct fb_var_screeninfo *var, int con, static int valkyriefb_check_var(struct fb_var_screeninfo *var,
struct fb_info *info);
static int valkyrie_get_cmap(struct fb_cmap *cmap, int kspc, int con,
struct fb_info *info); struct fb_info *info);
static int valkyriefb_set_par(struct fb_info *info);
static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
u_int transp, struct fb_info *info); u_int transp, struct fb_info *info);
static int valkyriefb_blank(int blank_mode, struct fb_info *info); static int valkyriefb_blank(int blank_mode, struct fb_info *info);
...@@ -138,136 +120,69 @@ static int valkyriefb_blank(int blank_mode, struct fb_info *info); ...@@ -138,136 +120,69 @@ static int valkyriefb_blank(int blank_mode, struct fb_info *info);
static int read_valkyrie_sense(struct fb_info_valkyrie *p); static int read_valkyrie_sense(struct fb_info_valkyrie *p);
static inline int valkyrie_vram_reqd(int video_mode, int color_mode); static inline int valkyrie_vram_reqd(int video_mode, int color_mode);
static void set_valkyrie_clock(unsigned char *params); static void set_valkyrie_clock(unsigned char *params);
static void valkyrie_set_par(const struct fb_par_valkyrie *p, struct fb_info_valkyrie *info);
static inline int valkyrie_par_to_var(struct fb_par_valkyrie *par, struct fb_var_screeninfo *var); static inline int valkyrie_par_to_var(struct fb_par_valkyrie *par, struct fb_var_screeninfo *var);
static int valkyrie_var_to_par(struct fb_var_screeninfo *var, static int valkyrie_var_to_par(struct fb_var_screeninfo *var,
struct fb_par_valkyrie *par, const struct fb_info *fb_info); struct fb_par_valkyrie *par, const struct fb_info *fb_info);
static void valkyrie_init_info(struct fb_info *info, struct fb_info_valkyrie *p); static void valkyrie_init_info(struct fb_info *info, struct fb_info_valkyrie *p);
static void valkyrie_par_to_display(struct fb_par_valkyrie *par, static void valkyrie_par_to_fix(struct fb_par_valkyrie *par, struct fb_fix_screeninfo *fix);
struct display *disp, struct fb_fix_screeninfo *fix, struct fb_info_valkyrie *p);
static void valkyrie_init_display(struct display *disp);
static void valkyrie_par_to_fix(struct fb_par_valkyrie *par, struct fb_fix_screeninfo *fix,
struct fb_info_valkyrie *p);
static void valkyrie_init_fix(struct fb_fix_screeninfo *fix, struct fb_info_valkyrie *p); static void valkyrie_init_fix(struct fb_fix_screeninfo *fix, struct fb_info_valkyrie *p);
static struct fb_ops valkyriefb_ops = { static struct fb_ops valkyriefb_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.fb_set_var = valkyrie_set_var, .fb_check_var = valkyriefb_check_var,
.fb_get_cmap = valkyrie_get_cmap, .fb_set_par = valkyriefb_set_par,
.fb_set_cmap = gen_set_cmap,
.fb_setcolreg = valkyriefb_setcolreg, .fb_setcolreg = valkyriefb_setcolreg,
.fb_blank = valkyriefb_blank, .fb_blank = valkyriefb_blank,
.fb_fillrect = cfb_fillrect,
.fb_copyarea = cfb_copyarea,
.fb_imageblit = cfb_imageblit,
.fb_cursor = soft_cursor,
}; };
static int valkyriefb_getcolreg(u_int regno, u_int *red, u_int *green, /* Sets the video mode according to info->var */
u_int *blue, u_int *transp, struct fb_info *info); static int valkyriefb_set_par(struct fb_info *info)
/* Sets everything according to var */
static int valkyrie_set_var(struct fb_var_screeninfo *var, int con,
struct fb_info *info)
{ {
struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info; struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info;
struct display *disp; volatile struct valkyrie_regs *valkyrie_regs = p->valkyrie_regs;
struct fb_par_valkyrie par; struct fb_par_valkyrie *par = info->par;
int depthchange, err; struct valkyrie_regvals *init;
int err;
disp = (con >= 0) ? &fb_display[con] : &p->disp; if ((err = valkyrie_var_to_par(&info->var, par, info)))
if ((err = valkyrie_var_to_par(var, &par, info))) {
/* printk (KERN_ERR "Error in valkyrie_set_var, calling valkyrie_var_to_par: %d.\n", err); */
return err; return err;
}
if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_NOW) { valkyrie_par_to_fix(par, &info->fix);
/* printk(KERN_ERR "Not activating, in valkyrie_set_var.\n"); */
valkyrie_par_to_var(&par, var);
return 0;
}
/* /* Reset the valkyrie */
* I know, we want to use fb_display[con], but grab certain info out_8(&valkyrie_regs->status.r, 0);
* from p->var instead. udelay(100);
*/
#define DIRTY(x) (p->var.x != var->x)
depthchange = DIRTY(bits_per_pixel);
/* adding "&& !DIRTY(pixclock)" corrects vmode-switching problems */
if(!DIRTY(xres) && !DIRTY(yres) && !DIRTY(xres_virtual) &&
!DIRTY(yres_virtual) && !DIRTY(bits_per_pixel) && !DIRTY(pixclock)) {
valkyrie_par_to_var(&par, var);
p->var = disp->var = *var;
return 0;
}
p->par = par; /* Initialize display timing registers */
valkyrie_par_to_var(&par, var); init = par->init;
p->var = *var; out_8(&valkyrie_regs->mode.r, init->mode | 0x80);
valkyrie_par_to_fix(&par, &p->fix, p); out_8(&valkyrie_regs->depth.r, par->cmode + 3);
valkyrie_par_to_display(&par, disp, &p->fix, p); set_valkyrie_clock(init->clock_params);
p->disp = *disp; udelay(100);
if (info->changevar && !switching) { /* Turn on display */
/* Don't want to do this if just switching consoles. */ out_8(&valkyrie_regs->mode.r, init->mode);
(*info->changevar)(con);
}
if (con == info->currcon)
valkyrie_set_par(&par, p);
if (depthchange)
if ((err = fb_alloc_cmap(&disp->cmap, 0, 0)))
return err;
if (depthchange || switching)
do_install_cmap(con, info);
return 0;
}
static int valkyrie_get_cmap(struct fb_cmap *cmap, int kspc, int con,
struct fb_info *info)
{
if (con == info->currcon) {
/* current console? */
return fb_get_cmap(cmap, kspc, valkyriefb_getcolreg, info);
}
if (fb_display[con].cmap.len) { /* non default colormap? */
fb_copy_cmap(&fb_display[con].cmap, cmap, kspc? 0: 2);
}
else {
int size = fb_display[con].var.bits_per_pixel == 16 ? 32 : 256;
fb_copy_cmap(fb_default_cmap(size), cmap, kspc ? 0 : 2);
}
return 0; return 0;
} }
static int valkyriefb_switch(int con, struct fb_info *fb) static int
valkyriefb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
{ {
struct fb_info_valkyrie *info = (struct fb_info_valkyrie *) fb; int err;
struct fb_par_valkyrie par; struct fb_par_valkyrie par;
if (fb_display[fb->currcon].cmap.len) if ((err = valkyrie_var_to_par(var, &par, info)))
fb_get_cmap(&fb_display[fb->currcon].cmap, 1, valkyriefb_getcolreg, return err;
fb); valkyrie_par_to_var(&par, var);
fb->currcon = con;
#if 1
valkyrie_var_to_par(&fb_display[fb->currcon].var, &par, fb);
valkyrie_set_par(&par, info);
do_install_cmap(con, fb);
#else
/* I see no reason not to do this. Minus info->changevar(). */
/* DOH. This makes valkyrie_set_var compare, you guessed it, */
/* fb_display[con].var (first param), and fb_display[con].var! */
/* Perhaps I just fixed that... */
switching = 1;
valkyrie_set_var(&fb_display[con].var, con, info);
switching = 0;
#endif
return 0;
}
static int valkyriefb_updatevar(int con, struct fb_info *info)
{
return 0; return 0;
} }
static int valkyriefb_blank(int blank_mode, struct fb_info *info)
{
/* /*
* Blank the screen if blank_mode != 0, else unblank. If blank_mode == NULL * Blank the screen if blank_mode != 0, else unblank. If blank_mode == NULL
* then the caller blanks by setting the CLUT (Color Look Up Table) to all * then the caller blanks by setting the CLUT (Color Look Up Table) to all
...@@ -278,22 +193,23 @@ static int valkyriefb_blank(int blank_mode, struct fb_info *info) ...@@ -278,22 +193,23 @@ static int valkyriefb_blank(int blank_mode, struct fb_info *info)
* blank_mode == 3: suspend hsync * blank_mode == 3: suspend hsync
* blank_mode == 4: powerdown * blank_mode == 4: powerdown
*/ */
static int valkyriefb_blank(int blank_mode, struct fb_info *info)
{
struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info; struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info;
struct valkyrie_regvals *init; struct fb_par_valkyrie *par = info->par;
unsigned char vmode; struct valkyrie_regvals *init = par->init;
if (p->disp.can_soft_blank if (init == NULL)
&& ((vmode = p->par.vmode) > 0) return 1;
&& (vmode <= VMODE_MAX)
&& ((init = valkyrie_reg_init[vmode - 1]) != NULL)) {
if (blank_mode)
--blank_mode;
switch (blank_mode) { switch (blank_mode) {
default: /* unblank */ case 0: /* unblank */
out_8(&p->valkyrie_regs->mode.r, init->mode); out_8(&p->valkyrie_regs->mode.r, init->mode);
break; break;
case VESA_VSYNC_SUSPEND: case 1:
case VESA_HSYNC_SUSPEND: return 1; /* get caller to set CLUT to all black */
case VESA_VSYNC_SUSPEND+1:
case VESA_HSYNC_SUSPEND+1:
/* /*
* [kps] Value extracted from MacOS. I don't know * [kps] Value extracted from MacOS. I don't know
* whether this bit disables hsync or vsync, or * whether this bit disables hsync or vsync, or
...@@ -301,25 +217,10 @@ static int valkyriefb_blank(int blank_mode, struct fb_info *info) ...@@ -301,25 +217,10 @@ static int valkyriefb_blank(int blank_mode, struct fb_info *info)
*/ */
out_8(&p->valkyrie_regs->mode.r, init->mode | 0x40); out_8(&p->valkyrie_regs->mode.r, init->mode | 0x40);
break; break;
case VESA_POWERDOWN: case VESA_POWERDOWN+1:
out_8(&p->valkyrie_regs->mode.r, 0x66); out_8(&p->valkyrie_regs->mode.r, 0x66);
break; break;
} }
}
return 0;
}
static int valkyriefb_getcolreg(u_int regno, u_int *red, u_int *green,
u_int *blue, u_int *transp, struct fb_info *info)
{
struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info;
if (regno > 255)
return 1;
*red = (p->palette[regno].red<<8) | p->palette[regno].red;
*green = (p->palette[regno].green<<8) | p->palette[regno].green;
*blue = (p->palette[regno].blue<<8) | p->palette[regno].blue;
return 0; return 0;
} }
...@@ -328,16 +229,13 @@ static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, ...@@ -328,16 +229,13 @@ static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
{ {
struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info; struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) info;
volatile struct cmap_regs *cmap_regs = p->cmap_regs; volatile struct cmap_regs *cmap_regs = p->cmap_regs;
struct fb_par_valkyrie *par = info->par;
if (regno > 255) if (regno > 255)
return 1; return 1;
red >>= 8; red >>= 8;
green >>= 8; green >>= 8;
blue >>= 8; blue >>= 8;
p->palette[regno].red = red;
p->palette[regno].green = green;
p->palette[regno].blue = blue;
/* tell clut which address to fill */ /* tell clut which address to fill */
out_8(&p->cmap_regs->addr, regno); out_8(&p->cmap_regs->addr, regno);
...@@ -347,11 +245,9 @@ static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, ...@@ -347,11 +245,9 @@ static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
out_8(&cmap_regs->lut, green); out_8(&cmap_regs->lut, green);
out_8(&cmap_regs->lut, blue); out_8(&cmap_regs->lut, blue);
if (regno < 16) { if (regno < 16 && par->cmode == CMODE_16)
#ifdef FBCON_HAS_CFB16 ((u32 *)info->pseudo_palette)[regno] =
p->fbcon_cfb16_cmap[regno] = (regno << 10) | (regno << 5) | regno; (regno << 10) | (regno << 5) | regno;
#endif
}
return 0; return 0;
} }
...@@ -359,10 +255,11 @@ static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, ...@@ -359,10 +255,11 @@ static int valkyriefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
static int valkyrie_vram_reqd(int video_mode, int color_mode) static int valkyrie_vram_reqd(int video_mode, int color_mode)
{ {
int pitch; int pitch;
struct valkyrie_regvals *init = valkyrie_reg_init[video_mode-1];
if ((pitch = valkyrie_reg_init[video_mode-1]->pitch[color_mode]) == 0) if ((pitch = init->pitch[color_mode]) == 0)
pitch = 2 * valkyrie_reg_init[video_mode-1]->pitch[0]; pitch = 2 * init->pitch[0];
return valkyrie_reg_init[video_mode-1]->vres * pitch; return init->vres * pitch;
} }
static void set_valkyrie_clock(unsigned char *params) static void set_valkyrie_clock(unsigned char *params)
...@@ -380,14 +277,10 @@ static void set_valkyrie_clock(unsigned char *params) ...@@ -380,14 +277,10 @@ static void set_valkyrie_clock(unsigned char *params)
#endif #endif
} }
static void __init init_valkyrie(struct fb_info_valkyrie *p) static void __init valkyrie_choose_mode(struct fb_info_valkyrie *p)
{ {
struct fb_par_valkyrie *par = &p->par;
struct fb_var_screeninfo var;
int j, k;
p->sense = read_valkyrie_sense(p); p->sense = read_valkyrie_sense(p);
printk(KERN_INFO "Monitor sense value = 0x%x, ", p->sense); printk(KERN_INFO "Monitor sense value = 0x%x\n", p->sense);
/* Try to pick a video mode out of NVRAM if we have one. */ /* Try to pick a video mode out of NVRAM if we have one. */
#ifndef CONFIG_MAC #ifndef CONFIG_MAC
...@@ -409,80 +302,22 @@ static void __init init_valkyrie(struct fb_info_valkyrie *p) ...@@ -409,80 +302,22 @@ static void __init init_valkyrie(struct fb_info_valkyrie *p)
#endif #endif
/* /*
* Reduce the pixel size if we don't have enough VRAM or bandwitdh. * Reduce the pixel size if we don't have enough VRAM or bandwidth.
*/ */
if (default_cmode < CMODE_8 if (default_cmode < CMODE_8 || default_cmode > CMODE_16
|| default_cmode > CMODE_16
|| valkyrie_reg_init[default_vmode-1]->pitch[default_cmode] == 0 || valkyrie_reg_init[default_vmode-1]->pitch[default_cmode] == 0
|| valkyrie_vram_reqd(default_vmode, default_cmode) > p->total_vram) || valkyrie_vram_reqd(default_vmode, default_cmode) > p->total_vram)
default_cmode = CMODE_8; default_cmode = CMODE_8;
printk(KERN_INFO "using video mode %d and color mode %d.\n", default_vmode, default_cmode); printk(KERN_INFO "using video mode %d and color mode %d.\n",
default_vmode, default_cmode);
mac_vmode_to_var(default_vmode, default_cmode, &var);
if (valkyrie_var_to_par(&var, par, &p->info)) {
printk(KERN_ERR "valkyriefb: can't set default video mode\n");
return ;
}
valkyrie_init_fix(&p->fix, p);
valkyrie_par_to_fix(&p->par, &p->fix, p);
valkyrie_par_to_var(&p->par, &p->var);
valkyrie_init_display(&p->disp);
valkyrie_par_to_display(&p->par, &p->disp, &p->fix, p);
valkyrie_init_info(&p->info, p);
/* Initialize colormap */
for (j = 0; j < 16; j++) {
k = color_table[j];
p->palette[j].red = default_red[k];
p->palette[j].green = default_grn[k];
p->palette[j].blue = default_blu[k];
}
valkyrie_set_var (&var, -1, &p->info);
if (register_framebuffer(&p->info) < 0) {
kfree(p);
return;
}
printk(KERN_INFO "fb%d: valkyrie frame buffer device\n", p->info.node);
}
static void valkyrie_set_par(const struct fb_par_valkyrie *par,
struct fb_info_valkyrie *p)
{
struct valkyrie_regvals *init;
volatile struct valkyrie_regs *valkyrie_regs = p->valkyrie_regs;
int vmode, cmode;
vmode = par->vmode;
cmode = par->cmode;
if (vmode <= 0
|| vmode > VMODE_MAX
|| (init = valkyrie_reg_init[vmode - 1]) == NULL)
panic("valkyrie: display mode %d not supported", vmode);
/* Reset the valkyrie */
out_8(&valkyrie_regs->status.r, 0);
udelay(100);
/* Initialize display timing registers */
out_8(&valkyrie_regs->mode.r, init->mode | 0x80);
out_8(&valkyrie_regs->depth.r, cmode + 3);
set_valkyrie_clock(init->clock_params);
udelay(100);
/* Turn on display */
out_8(&valkyrie_regs->mode.r, init->mode);
} }
int __init valkyriefb_init(void) int __init valkyriefb_init(void)
{ {
struct fb_info_valkyrie *p; struct fb_info_valkyrie *p;
unsigned long frame_buffer_phys, cmap_regs_phys, flags; unsigned long frame_buffer_phys, cmap_regs_phys, flags;
int err;
#ifdef CONFIG_MAC #ifdef CONFIG_MAC
if (!MACH_IS_MAC) if (!MACH_IS_MAC)
...@@ -503,8 +338,9 @@ int __init valkyriefb_init(void) ...@@ -503,8 +338,9 @@ int __init valkyriefb_init(void)
if (dp == 0) if (dp == 0)
return 0; return 0;
if(dp->n_addrs != 1) { if (dp->n_addrs != 1) {
printk(KERN_ERR "expecting 1 address for valkyrie (got %d)", dp->n_addrs); printk(KERN_ERR "expecting 1 address for valkyrie (got %d)\n",
dp->n_addrs);
return 0; return 0;
} }
...@@ -515,7 +351,7 @@ int __init valkyriefb_init(void) ...@@ -515,7 +351,7 @@ int __init valkyriefb_init(void)
p = kmalloc(sizeof(*p), GFP_ATOMIC); p = kmalloc(sizeof(*p), GFP_ATOMIC);
if (p == 0) if (p == 0)
return 0; return -ENOMEM;
memset(p, 0, sizeof(*p)); memset(p, 0, sizeof(*p));
/* Map in frame buffer and registers */ /* Map in frame buffer and registers */
...@@ -530,8 +366,36 @@ int __init valkyriefb_init(void) ...@@ -530,8 +366,36 @@ int __init valkyriefb_init(void)
p->cmap_regs = ioremap(p->cmap_regs_phys, 0x1000); p->cmap_regs = ioremap(p->cmap_regs_phys, 0x1000);
p->valkyrie_regs_phys = cmap_regs_phys+0x6000; p->valkyrie_regs_phys = cmap_regs_phys+0x6000;
p->valkyrie_regs = ioremap(p->valkyrie_regs_phys, 0x1000); p->valkyrie_regs = ioremap(p->valkyrie_regs_phys, 0x1000);
init_valkyrie(p); err = -ENOMEM;
if (p->frame_buffer == NULL || p->cmap_regs == NULL
|| p->valkyrie_regs == NULL) {
printk(KERN_ERR "valkyriefb: couldn't map resources\n");
goto out_free;
}
valkyrie_choose_mode(p);
mac_vmode_to_var(default_vmode, default_cmode, &p->info.var);
valkyrie_init_info(&p->info, p);
valkyrie_init_fix(&p->info.fix, p);
if (valkyriefb_set_par(&p->info))
/* "can't happen" */
printk(KERN_ERR "valkyriefb: can't set default video mode\n");
if ((err = register_framebuffer(&p->info)) != 0)
goto out_free;
printk(KERN_INFO "fb%d: valkyrie frame buffer device\n", p->info.node);
return 0; return 0;
out_free:
if (p->frame_buffer)
iounmap(p->frame_buffer);
if (p->cmap_regs)
iounmap(p->cmap_regs);
if (p->valkyrie_regs)
iounmap(p->valkyrie_regs);
kfree(p);
return err;
} }
/* /*
...@@ -565,8 +429,6 @@ static int read_valkyrie_sense(struct fb_info_valkyrie *p) ...@@ -565,8 +429,6 @@ static int read_valkyrie_sense(struct fb_info_valkyrie *p)
* This routine takes a user-supplied var, * This routine takes a user-supplied var,
* and picks the best vmode/cmode from it. * and picks the best vmode/cmode from it.
*/ */
static int valkyrie_var_to_par(struct fb_var_screeninfo *var,
struct fb_par_valkyrie *par, const struct fb_info *fb_info)
/* [bkn] I did a major overhaul of this function. /* [bkn] I did a major overhaul of this function.
* *
...@@ -589,54 +451,55 @@ static int valkyrie_var_to_par(struct fb_var_screeninfo *var, ...@@ -589,54 +451,55 @@ static int valkyrie_var_to_par(struct fb_var_screeninfo *var,
* good start... * good start...
*/ */
static int valkyrie_var_to_par(struct fb_var_screeninfo *var,
struct fb_par_valkyrie *par, const struct fb_info *fb_info)
{ {
int bpp = var->bits_per_pixel; int vmode, cmode;
struct valkyrie_regvals *init; struct valkyrie_regvals *init;
struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) fb_info; struct fb_info_valkyrie *p = (struct fb_info_valkyrie *) fb_info;
if (mac_var_to_vmode(var, &vmode, &cmode) != 0) {
if(mac_var_to_vmode(var, &par->vmode, &par->cmode) != 0) { printk(KERN_ERR "valkyriefb: can't do %dx%dx%d.\n",
printk(KERN_ERR "valkyrie_var_to_par: %dx%dx%d unsuccessful.\n",var->xres,var->yres,var->bits_per_pixel); var->xres, var->yres, var->bits_per_pixel);
return -EINVAL; return -EINVAL;
} }
/* Check if we know about the wanted video mode */ /* Check if we know about the wanted video mode */
if(!valkyrie_reg_init[par->vmode-1]) { if (vmode < 1 || vmode > VMODE_MAX || !valkyrie_reg_init[vmode-1]) {
printk(KERN_ERR "valkyrie_var_to_par: vmode %d not valid.\n", par->vmode); printk(KERN_ERR "valkyriefb: vmode %d not valid.\n", vmode);
return -EINVAL; return -EINVAL;
} }
par->xres = var->xres; if (cmode != CMODE_8 && cmode != CMODE_16) {
par->yres = var->yres; printk(KERN_ERR "valkyriefb: cmode %d not valid.\n", cmode);
par->xoffset = 0; return -EINVAL;
par->yoffset = 0; }
par->vxres = par->xres;
par->vyres = par->yres;
if (var->xres_virtual > var->xres || var->yres_virtual > var->yres if (var->xres_virtual > var->xres || var->yres_virtual > var->yres
|| var->xoffset != 0 || var->yoffset != 0) { || var->xoffset != 0 || var->yoffset != 0) {
return -EINVAL; return -EINVAL;
} }
if (bpp <= 8) init = valkyrie_reg_init[vmode-1];
par->cmode = CMODE_8; if (init->pitch[cmode] == 0) {
else if (bpp <= 16) printk(KERN_ERR "valkyriefb: vmode %d does not support "
par->cmode = CMODE_16; "cmode %d.\n", vmode, cmode);
else {
printk(KERN_ERR "valkyrie_var_to_par: cmode %d not supported.\n", par->cmode);
return -EINVAL; return -EINVAL;
} }
init = valkyrie_reg_init[par->vmode-1]; if (valkyrie_vram_reqd(vmode, cmode) > p->total_vram) {
if (init->pitch[par->cmode] == 0) { printk(KERN_ERR "valkyriefb: not enough ram for vmode %d, "
printk(KERN_ERR "valkyrie_var_to_par: vmode %d does not support cmode %d.\n", par->vmode, par->cmode); "cmode %d.\n", vmode, cmode);
return -EINVAL; return -EINVAL;
} }
if (valkyrie_vram_reqd(par->vmode, par->cmode) > p->total_vram) { par->vmode = vmode;
printk(KERN_ERR "valkyrie_var_to_par: not enough ram for vmode %d, cmode %d.\n", par->vmode, par->cmode); par->cmode = cmode;
return -EINVAL; par->init = init;
} par->xres = var->xres;
par->yres = var->yres;
par->vxres = par->xres;
par->vyres = par->yres;
return 0; return 0;
} }
...@@ -653,6 +516,8 @@ static void valkyrie_init_fix(struct fb_fix_screeninfo *fix, struct fb_info_valk ...@@ -653,6 +516,8 @@ static void valkyrie_init_fix(struct fb_fix_screeninfo *fix, struct fb_info_valk
fix->mmio_start = p->valkyrie_regs_phys; fix->mmio_start = p->valkyrie_regs_phys;
fix->mmio_len = sizeof(struct valkyrie_regs); fix->mmio_len = sizeof(struct valkyrie_regs);
fix->type = FB_TYPE_PACKED_PIXELS; fix->type = FB_TYPE_PACKED_PIXELS;
fix->smem_start = p->frame_buffer_phys + 0x1000;
fix->smem_len = p->total_vram;
fix->type_aux = 0; fix->type_aux = 0;
fix->ywrapstep = 0; fix->ywrapstep = 0;
...@@ -663,67 +528,23 @@ static void valkyrie_init_fix(struct fb_fix_screeninfo *fix, struct fb_info_valk ...@@ -663,67 +528,23 @@ static void valkyrie_init_fix(struct fb_fix_screeninfo *fix, struct fb_info_valk
/* Fix must already be inited above */ /* Fix must already be inited above */
static void valkyrie_par_to_fix(struct fb_par_valkyrie *par, static void valkyrie_par_to_fix(struct fb_par_valkyrie *par,
struct fb_fix_screeninfo *fix, struct fb_fix_screeninfo *fix)
struct fb_info_valkyrie *p)
{ {
fix->smem_start = p->frame_buffer_phys + 0x1000;
#if 1
fix->smem_len = valkyrie_vram_reqd(par->vmode, par->cmode); fix->smem_len = valkyrie_vram_reqd(par->vmode, par->cmode);
#else
fix->smem_len = p->total_vram;
#endif
fix->visual = (par->cmode == CMODE_8) ? fix->visual = (par->cmode == CMODE_8) ?
FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_DIRECTCOLOR; FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_DIRECTCOLOR;
fix->line_length = par->vxres << par->cmode; fix->line_length = par->vxres << par->cmode;
/* ywrapstep, xpanstep, ypanstep */ /* ywrapstep, xpanstep, ypanstep */
} }
static void valkyrie_init_display(struct display *disp)
{
memset(disp, 0, sizeof(*disp));
disp->can_soft_blank = can_soft_blank;
disp->scrollmode = SCROLL_YREDRAW;
}
static void valkyrie_par_to_display(struct fb_par_valkyrie *par,
struct display *disp, struct fb_fix_screeninfo *fix, struct fb_info_valkyrie *p)
{
disp->var = p->var;
if(disp->scrollmode != SCROLL_YREDRAW) {
printk(KERN_ERR "Scroll mode not YREDRAW in valkyrie_par_to_display\n");
disp->scrollmode = SCROLL_YREDRAW;
}
switch (par->cmode) {
#ifdef FBCON_HAS_CFB8
case CMODE_8:
disp->dispsw = &fbcon_cfb8;
break;
#endif
#ifdef FBCON_HAS_CFB16
case CMODE_16:
disp->dispsw = &fbcon_cfb16;
disp->dispsw_data = p->fbcon_cfb16_cmap;
break;
#endif
default:
disp->dispsw = &fbcon_dummy;
break;
}
}
static void __init valkyrie_init_info(struct fb_info *info, struct fb_info_valkyrie *p) static void __init valkyrie_init_info(struct fb_info *info, struct fb_info_valkyrie *p)
{ {
strcpy(info->modename, p->fix.id);
info->fbops = &valkyriefb_ops; info->fbops = &valkyriefb_ops;
info->screen_base = (char *) p->frame_buffer + 0x1000; info->screen_base = (char *) p->frame_buffer + 0x1000;
info->disp = &p->disp;
info->currcon = -1;
strcpy(info->fontname, fontname);
info->changevar = NULL;
info->switch_con = &valkyriefb_switch;
info->updatevar = &valkyriefb_updatevar;
info->flags = FBINFO_FLAG_DEFAULT; info->flags = FBINFO_FLAG_DEFAULT;
info->pseudo_palette = p->pseudo_palette;
fb_alloc_cmap(&info->cmap, 256, 0);
info->par = &p->par;
} }
...@@ -738,18 +559,7 @@ int __init valkyriefb_setup(char *options) ...@@ -738,18 +559,7 @@ int __init valkyriefb_setup(char *options)
return 0; return 0;
while ((this_opt = strsep(&options, ",")) != NULL) { while ((this_opt = strsep(&options, ",")) != NULL) {
if (!strncmp(this_opt, "font:", 5)) { if (!strncmp(this_opt, "vmode:", 6)) {
char *p;
int i;
p = this_opt + 5;
for (i = 0; i < sizeof(fontname) - 1; i++)
if (!*p || *p == ' ' || *p == ',')
break;
memcpy(fontname, this_opt + 5, i);
fontname[i] = 0;
}
else if (!strncmp(this_opt, "vmode:", 6)) {
int vmode = simple_strtoul(this_opt+6, NULL, 0); int vmode = simple_strtoul(this_opt+6, NULL, 0);
if (vmode > 0 && vmode <= VMODE_MAX) if (vmode > 0 && vmode <= VMODE_MAX)
default_vmode = vmode; default_vmode = vmode;
...@@ -766,13 +576,6 @@ int __init valkyriefb_setup(char *options) ...@@ -766,13 +576,6 @@ int __init valkyriefb_setup(char *options)
break; break;
} }
} }
/* XXX - remove these options once blanking has been tested */
else if (!strncmp(this_opt, "noblank", 7)) {
can_soft_blank = 0;
}
else if (!strncmp(this_opt, "blank", 5)) {
can_soft_blank = 1;
}
} }
return 0; return 0;
} }
......
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