Commit 78d780e0 authored by Krzysztof Helt's avatar Krzysztof Helt Committed by Linus Torvalds

cirrusfb: various Laguna fixes

- The Laguna GD5465 (AGP) has one register more than non-AGP chips.
  Recognize the AGP version and write a tile control register only on the
  AGP version.  Tested only on an AGP card.

- Bump up RAMDAC frequencies after X11 code.  This allow to drive a flat
  panel resolution 1680x1050 at 16bpp from the 4MB card.

- Fix screen start address overflow bits on Laguna cards (CRT1D
  register).

- Fix exit path in the cirrusfb_pci_register() in case of error.
Signed-off-by: default avatarKrzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 99a45847
...@@ -102,7 +102,8 @@ enum cirrus_board { ...@@ -102,7 +102,8 @@ enum cirrus_board {
BT_PICASSO4, /* GD5446 */ BT_PICASSO4, /* GD5446 */
BT_ALPINE, /* GD543x/4x */ BT_ALPINE, /* GD543x/4x */
BT_GD5480, BT_GD5480,
BT_LAGUNA, /* GD546x */ BT_LAGUNA, /* GD5462/64 */
BT_LAGUNAB, /* GD5465 */
}; };
/* /*
...@@ -234,8 +235,18 @@ static const struct cirrusfb_board_info_rec { ...@@ -234,8 +235,18 @@ static const struct cirrusfb_board_info_rec {
[BT_LAGUNA] = { [BT_LAGUNA] = {
.name = "CL Laguna", .name = "CL Laguna",
.maxclock = { .maxclock = {
/* guess */ /* taken from X11 code */
135100, 135100, 135100, 135100, 135100, 170000, 170000, 170000, 170000, 135100,
},
.init_sr07 = false,
.init_sr1f = false,
.scrn_start_bit19 = true,
},
[BT_LAGUNAB] = {
.name = "CL Laguna AGP",
.maxclock = {
/* taken from X11 code */
170000, 250000, 170000, 170000, 135100,
}, },
.init_sr07 = false, .init_sr07 = false,
.init_sr1f = false, .init_sr1f = false,
...@@ -258,7 +269,7 @@ static struct pci_device_id cirrusfb_pci_table[] = { ...@@ -258,7 +269,7 @@ static struct pci_device_id cirrusfb_pci_table[] = {
CHIP(PCI_DEVICE_ID_CIRRUS_5446, BT_PICASSO4), /* Picasso 4 is 5446 */ CHIP(PCI_DEVICE_ID_CIRRUS_5446, BT_PICASSO4), /* Picasso 4 is 5446 */
CHIP(PCI_DEVICE_ID_CIRRUS_5462, BT_LAGUNA), /* CL Laguna */ CHIP(PCI_DEVICE_ID_CIRRUS_5462, BT_LAGUNA), /* CL Laguna */
CHIP(PCI_DEVICE_ID_CIRRUS_5464, BT_LAGUNA), /* CL Laguna 3D */ CHIP(PCI_DEVICE_ID_CIRRUS_5464, BT_LAGUNA), /* CL Laguna 3D */
CHIP(PCI_DEVICE_ID_CIRRUS_5465, BT_LAGUNA), /* CL Laguna 3DA*/ CHIP(PCI_DEVICE_ID_CIRRUS_5465, BT_LAGUNAB), /* CL Laguna 3DA*/
{ 0, } { 0, }
}; };
MODULE_DEVICE_TABLE(pci, cirrusfb_pci_table); MODULE_DEVICE_TABLE(pci, cirrusfb_pci_table);
...@@ -385,6 +396,11 @@ static void cirrusfb_dbg_print_regs(struct fb_info *info, ...@@ -385,6 +396,11 @@ static void cirrusfb_dbg_print_regs(struct fb_info *info,
/*****************************************************************************/ /*****************************************************************************/
/*** BEGIN Interface Used by the World ***************************************/ /*** BEGIN Interface Used by the World ***************************************/
static inline int is_laguna(const struct cirrusfb_info *cinfo)
{
return cinfo->btype == BT_LAGUNA || cinfo->btype == BT_LAGUNAB;
}
static int opencount; static int opencount;
/*--- Open /dev/fbx ---------------------------------------------------------*/ /*--- Open /dev/fbx ---------------------------------------------------------*/
...@@ -814,13 +830,16 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -814,13 +830,16 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
cirrusfb_set_mclk_as_source(info, divMCLK); cirrusfb_set_mclk_as_source(info, divMCLK);
} }
} }
if (cinfo->btype == BT_LAGUNA) { if (is_laguna(cinfo)) {
long pcifc = fb_readl(cinfo->laguna_mmio + 0x3fc); long pcifc = fb_readl(cinfo->laguna_mmio + 0x3fc);
unsigned char tile = fb_readb(cinfo->laguna_mmio + 0x407); unsigned char tile = fb_readb(cinfo->laguna_mmio + 0x407);
unsigned short tile_control; unsigned short tile_control;
tile_control = fb_readw(cinfo->laguna_mmio + 0x2c4); if (cinfo->btype == BT_LAGUNAB) {
fb_writew(tile_control & ~0x80, cinfo->laguna_mmio + 0x2c4); tile_control = fb_readw(cinfo->laguna_mmio + 0x2c4);
tile_control &= ~0x80;
fb_writew(tile_control, cinfo->laguna_mmio + 0x2c4);
}
fb_writel(pcifc | 0x10000000l, cinfo->laguna_mmio + 0x3fc); fb_writel(pcifc | 0x10000000l, cinfo->laguna_mmio + 0x3fc);
fb_writeb(tile & 0x3f, cinfo->laguna_mmio + 0x407); fb_writeb(tile & 0x3f, cinfo->laguna_mmio + 0x407);
...@@ -842,7 +861,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -842,7 +861,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
dev_dbg(info->device, "CL_SEQR1B: %d\n", (int) tmp); dev_dbg(info->device, "CL_SEQR1B: %d\n", (int) tmp);
/* Laguna chipset has reversed clock registers */ /* Laguna chipset has reversed clock registers */
if (cinfo->btype == BT_LAGUNA) { if (is_laguna(cinfo)) {
vga_wseq(regbase, CL_SEQRE, tmp); vga_wseq(regbase, CL_SEQRE, tmp);
vga_wseq(regbase, CL_SEQR1E, nom); vga_wseq(regbase, CL_SEQR1E, nom);
} else { } else {
...@@ -873,7 +892,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -873,7 +892,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
tmp |= 0x40; tmp |= 0x40;
if (var->sync & FB_SYNC_VERT_HIGH_ACT) if (var->sync & FB_SYNC_VERT_HIGH_ACT)
tmp |= 0x80; tmp |= 0x80;
if (cinfo->btype == BT_LAGUNA) if (is_laguna(cinfo))
tmp |= 0xc; tmp |= 0xc;
WGen(cinfo, VGA_MIS_W, tmp); WGen(cinfo, VGA_MIS_W, tmp);
...@@ -908,6 +927,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -908,6 +927,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
break; break;
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
vga_wseq(regbase, CL_SEQR7, vga_wseq(regbase, CL_SEQR7,
vga_rseq(regbase, CL_SEQR7) & ~0x01); vga_rseq(regbase, CL_SEQR7) & ~0x01);
break; break;
...@@ -947,6 +967,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -947,6 +967,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
case BT_ALPINE: case BT_ALPINE:
case BT_GD5480: case BT_GD5480:
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
/* do nothing */ /* do nothing */
break; break;
...@@ -991,6 +1012,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -991,6 +1012,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
break; break;
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
vga_wseq(regbase, CL_SEQR7, vga_wseq(regbase, CL_SEQR7,
vga_rseq(regbase, CL_SEQR7) | 0x01); vga_rseq(regbase, CL_SEQR7) | 0x01);
threshold |= 0x10; threshold |= 0x10;
...@@ -1030,6 +1052,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -1030,6 +1052,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
case BT_GD5480: case BT_GD5480:
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
/* do nothing */ /* do nothing */
break; break;
...@@ -1096,6 +1119,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -1096,6 +1119,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
break; break;
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
vga_wseq(regbase, CL_SEQR7, vga_wseq(regbase, CL_SEQR7,
vga_rseq(regbase, CL_SEQR7) & ~0x01); vga_rseq(regbase, CL_SEQR7) & ~0x01);
control |= 0x2000; control |= 0x2000;
...@@ -1166,6 +1190,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -1166,6 +1190,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
break; break;
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
vga_wseq(regbase, CL_SEQR7, vga_wseq(regbase, CL_SEQR7,
vga_rseq(regbase, CL_SEQR7) & ~0x01); vga_rseq(regbase, CL_SEQR7) & ~0x01);
control |= 0x6000; control |= 0x6000;
...@@ -1208,7 +1233,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -1208,7 +1233,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
if (cirrusfb_board_info[cinfo->btype].scrn_start_bit19) if (cirrusfb_board_info[cinfo->btype].scrn_start_bit19)
vga_wcrt(regbase, CL_CRT1D, (pitch >> 9) & 1); vga_wcrt(regbase, CL_CRT1D, (pitch >> 9) & 1);
if (cinfo->btype == BT_LAGUNA) { if (is_laguna(cinfo)) {
tmp = 0; tmp = 0;
if ((htotal + 5) & 256) if ((htotal + 5) & 256)
tmp |= 128; tmp |= 128;
...@@ -1234,7 +1259,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info) ...@@ -1234,7 +1259,7 @@ static int cirrusfb_set_par_foo(struct fb_info *info)
/* From SetOffset(): Turn on VideoEnable bit in Attribute controller */ /* From SetOffset(): Turn on VideoEnable bit in Attribute controller */
AttrOn(cinfo); AttrOn(cinfo);
if (cinfo->btype == BT_LAGUNA) { if (is_laguna(cinfo)) {
/* no tiles */ /* no tiles */
fb_writew(control | 0x1000, cinfo->laguna_mmio + 0x402); fb_writew(control | 0x1000, cinfo->laguna_mmio + 0x402);
fb_writew(format, cinfo->laguna_mmio + 0xc0); fb_writew(format, cinfo->laguna_mmio + 0xc0);
...@@ -1332,7 +1357,7 @@ static int cirrusfb_pan_display(struct fb_var_screeninfo *var, ...@@ -1332,7 +1357,7 @@ static int cirrusfb_pan_display(struct fb_var_screeninfo *var,
xpix = (unsigned char) ((xoffset % 4) * 2); xpix = (unsigned char) ((xoffset % 4) * 2);
} }
if (cinfo->btype != BT_LAGUNA) if (!is_laguna(cinfo))
cirrusfb_WaitBLT(cinfo->regbase); cirrusfb_WaitBLT(cinfo->regbase);
/* lower 8 + 8 bits of screen start address */ /* lower 8 + 8 bits of screen start address */
...@@ -1353,8 +1378,11 @@ static int cirrusfb_pan_display(struct fb_var_screeninfo *var, ...@@ -1353,8 +1378,11 @@ static int cirrusfb_pan_display(struct fb_var_screeninfo *var,
/* construct bit 19 of screen start address */ /* construct bit 19 of screen start address */
if (cirrusfb_board_info[cinfo->btype].scrn_start_bit19) { if (cirrusfb_board_info[cinfo->btype].scrn_start_bit19) {
tmp = vga_rcrt(cinfo->regbase, CL_CRT1D) & ~0x80; tmp = vga_rcrt(cinfo->regbase, CL_CRT1D);
tmp |= (base >> 12) & 0x80; if (is_laguna(cinfo))
tmp = (tmp & ~0x18) | ((base >> 16) & 0x18);
else
tmp = (tmp & ~0x80) | ((base >> 12) & 0x80);
vga_wcrt(cinfo->regbase, CL_CRT1D, tmp); vga_wcrt(cinfo->regbase, CL_CRT1D, tmp);
} }
...@@ -1365,7 +1393,7 @@ static int cirrusfb_pan_display(struct fb_var_screeninfo *var, ...@@ -1365,7 +1393,7 @@ static int cirrusfb_pan_display(struct fb_var_screeninfo *var,
if (info->var.bits_per_pixel == 1) if (info->var.bits_per_pixel == 1)
vga_wattr(cinfo->regbase, CL_AR33, xpix); vga_wattr(cinfo->regbase, CL_AR33, xpix);
if (cinfo->btype != BT_LAGUNA) if (!is_laguna(cinfo))
cirrusfb_WaitBLT(cinfo->regbase); cirrusfb_WaitBLT(cinfo->regbase);
return 0; return 0;
...@@ -1486,6 +1514,7 @@ static void init_vgachip(struct fb_info *info) ...@@ -1486,6 +1514,7 @@ static void init_vgachip(struct fb_info *info)
break; break;
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
case BT_ALPINE: case BT_ALPINE:
/* Nothing to do to reset the board. */ /* Nothing to do to reset the board. */
break; break;
...@@ -1530,6 +1559,7 @@ static void init_vgachip(struct fb_info *info) ...@@ -1530,6 +1559,7 @@ static void init_vgachip(struct fb_info *info)
break; break;
case BT_ALPINE: case BT_ALPINE:
case BT_LAGUNA: case BT_LAGUNA:
case BT_LAGUNAB:
break; break;
case BT_SD64: case BT_SD64:
vga_wseq(cinfo->regbase, CL_SEQRF, 0xb8); vga_wseq(cinfo->regbase, CL_SEQRF, 0xb8);
...@@ -1611,7 +1641,7 @@ static void init_vgachip(struct fb_info *info) ...@@ -1611,7 +1641,7 @@ static void init_vgachip(struct fb_info *info)
/* Bit Mask: no mask at all */ /* Bit Mask: no mask at all */
vga_wgfx(cinfo->regbase, VGA_GFX_BIT_MASK, 0xff); vga_wgfx(cinfo->regbase, VGA_GFX_BIT_MASK, 0xff);
if (cinfo->btype == BT_ALPINE || cinfo->btype == BT_LAGUNA) if (cinfo->btype == BT_ALPINE || is_laguna(cinfo))
/* (5434 can't have bit 3 set for bitblt) */ /* (5434 can't have bit 3 set for bitblt) */
vga_wgfx(cinfo->regbase, CL_GRB, 0x20); vga_wgfx(cinfo->regbase, CL_GRB, 0x20);
else else
...@@ -1802,7 +1832,7 @@ static void cirrusfb_imageblit(struct fb_info *info, ...@@ -1802,7 +1832,7 @@ static void cirrusfb_imageblit(struct fb_info *info,
{ {
struct cirrusfb_info *cinfo = info->par; struct cirrusfb_info *cinfo = info->par;
if (cinfo->btype != BT_LAGUNA) if (!is_laguna(cinfo))
cirrusfb_WaitBLT(cinfo->regbase); cirrusfb_WaitBLT(cinfo->regbase);
cfb_imageblit(info, image); cfb_imageblit(info, image);
} }
...@@ -1831,7 +1861,7 @@ static unsigned int __devinit cirrusfb_get_memsize(struct fb_info *info, ...@@ -1831,7 +1861,7 @@ static unsigned int __devinit cirrusfb_get_memsize(struct fb_info *info,
unsigned long mem; unsigned long mem;
struct cirrusfb_info *cinfo = info->par; struct cirrusfb_info *cinfo = info->par;
if (cinfo->btype == BT_LAGUNA) { if (is_laguna(cinfo)) {
unsigned char SR14 = vga_rseq(regbase, CL_SEQR14); unsigned char SR14 = vga_rseq(regbase, CL_SEQR14);
mem = ((SR14 & 7) + 1) << 20; mem = ((SR14 & 7) + 1) << 20;
...@@ -1950,7 +1980,7 @@ static int __devinit cirrusfb_set_fbinfo(struct fb_info *info) ...@@ -1950,7 +1980,7 @@ static int __devinit cirrusfb_set_fbinfo(struct fb_info *info)
| FBINFO_HWACCEL_YPAN | FBINFO_HWACCEL_YPAN
| FBINFO_HWACCEL_FILLRECT | FBINFO_HWACCEL_FILLRECT
| FBINFO_HWACCEL_COPYAREA; | FBINFO_HWACCEL_COPYAREA;
if (noaccel || cinfo->btype == BT_LAGUNA) if (noaccel || is_laguna(cinfo))
info->flags |= FBINFO_HWACCEL_DISABLED; info->flags |= FBINFO_HWACCEL_DISABLED;
info->fbops = &cirrusfb_ops; info->fbops = &cirrusfb_ops;
if (cinfo->btype == BT_GD5480) { if (cinfo->btype == BT_GD5480) {
...@@ -2060,7 +2090,7 @@ static int __devinit cirrusfb_pci_register(struct pci_dev *pdev, ...@@ -2060,7 +2090,7 @@ static int __devinit cirrusfb_pci_register(struct pci_dev *pdev,
if (!info) { if (!info) {
printk(KERN_ERR "cirrusfb: could not allocate memory\n"); printk(KERN_ERR "cirrusfb: could not allocate memory\n");
ret = -ENOMEM; ret = -ENOMEM;
goto err_disable; goto err_out;
} }
cinfo = info->par; cinfo = info->par;
...@@ -2127,10 +2157,11 @@ static int __devinit cirrusfb_pci_register(struct pci_dev *pdev, ...@@ -2127,10 +2157,11 @@ static int __devinit cirrusfb_pci_register(struct pci_dev *pdev,
pci_set_drvdata(pdev, info); pci_set_drvdata(pdev, info);
ret = cirrusfb_register(info); ret = cirrusfb_register(info);
if (ret) if (!ret)
iounmap(info->screen_base); return 0;
return ret;
pci_set_drvdata(pdev, NULL);
iounmap(info->screen_base);
err_release_legacy: err_release_legacy:
if (release_io_ports) if (release_io_ports)
release_region(0x3C0, 32); release_region(0x3C0, 32);
...@@ -2140,10 +2171,9 @@ static int __devinit cirrusfb_pci_register(struct pci_dev *pdev, ...@@ -2140,10 +2171,9 @@ static int __devinit cirrusfb_pci_register(struct pci_dev *pdev,
#endif #endif
pci_release_regions(pdev); pci_release_regions(pdev);
err_release_fb: err_release_fb:
if (cinfo->laguna_mmio == NULL) if (cinfo->laguna_mmio != NULL)
iounmap(cinfo->laguna_mmio); iounmap(cinfo->laguna_mmio);
framebuffer_release(info); framebuffer_release(info);
err_disable:
err_out: err_out:
return ret; return ret;
} }
...@@ -2439,7 +2469,7 @@ static void WHDR(const struct cirrusfb_info *cinfo, unsigned char val) ...@@ -2439,7 +2469,7 @@ static void WHDR(const struct cirrusfb_info *cinfo, unsigned char val)
{ {
unsigned char dummy; unsigned char dummy;
if (cinfo->btype == BT_LAGUNA) if (is_laguna(cinfo))
return; return;
if (cinfo->btype == BT_PICASSO) { if (cinfo->btype == BT_PICASSO) {
/* Klaus' hint for correct access to HDR on some boards */ /* Klaus' hint for correct access to HDR on some boards */
...@@ -2509,7 +2539,7 @@ static void WClut(struct cirrusfb_info *cinfo, unsigned char regnum, unsigned ch ...@@ -2509,7 +2539,7 @@ static void WClut(struct cirrusfb_info *cinfo, unsigned char regnum, unsigned ch
if (cinfo->btype == BT_PICASSO || cinfo->btype == BT_PICASSO4 || if (cinfo->btype == BT_PICASSO || cinfo->btype == BT_PICASSO4 ||
cinfo->btype == BT_ALPINE || cinfo->btype == BT_GD5480 || cinfo->btype == BT_ALPINE || cinfo->btype == BT_GD5480 ||
cinfo->btype == BT_LAGUNA) { is_laguna(cinfo)) {
/* but DAC data register IS, at least for Picasso II */ /* but DAC data register IS, at least for Picasso II */
if (cinfo->btype == BT_PICASSO) if (cinfo->btype == BT_PICASSO)
data += 0xfff; data += 0xfff;
......
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