1 /* sunxvr2500.c: Sun 3DLABS XVR-2500 et al. fb driver for sparc64 systems
8 #include <linux/aperture.h>
9 #include <linux/kernel.h>
11 #include <linux/pci.h>
12 #include <linux/init.h>
13 #include <linux/of_device.h>
21 char __iomem *fb_base;
22 unsigned long fb_base_phys;
24 struct device_node *of_node;
31 u32 pseudo_palette[16];
34 static int s3d_get_props(struct s3d_info *sp)
36 sp->width = of_getintprop_default(sp->of_node, "width", 0);
37 sp->height = of_getintprop_default(sp->of_node, "height", 0);
38 sp->depth = of_getintprop_default(sp->of_node, "depth", 8);
40 if (!sp->width || !sp->height) {
41 printk(KERN_ERR "s3d: Critical properties missing for %s\n",
49 static int s3d_setcolreg(unsigned regno,
50 unsigned red, unsigned green, unsigned blue,
51 unsigned transp, struct fb_info *info)
60 value = (blue << 24) | (green << 16) | (red << 8);
61 ((u32 *)info->pseudo_palette)[regno] = value;
67 static const struct fb_ops s3d_ops = {
69 .fb_setcolreg = s3d_setcolreg,
70 .fb_fillrect = cfb_fillrect,
71 .fb_copyarea = cfb_copyarea,
72 .fb_imageblit = cfb_imageblit,
75 static int s3d_set_fbinfo(struct s3d_info *sp)
77 struct fb_info *info = sp->info;
78 struct fb_var_screeninfo *var = &info->var;
80 info->flags = FBINFO_DEFAULT;
81 info->fbops = &s3d_ops;
82 info->screen_base = sp->fb_base;
83 info->screen_size = sp->fb_size;
85 info->pseudo_palette = sp->pseudo_palette;
87 /* Fill fix common fields */
88 strscpy(info->fix.id, "s3d", sizeof(info->fix.id));
89 info->fix.smem_start = sp->fb_base_phys;
90 info->fix.smem_len = sp->fb_size;
91 info->fix.type = FB_TYPE_PACKED_PIXELS;
92 if (sp->depth == 32 || sp->depth == 24)
93 info->fix.visual = FB_VISUAL_TRUECOLOR;
95 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
97 var->xres = sp->width;
98 var->yres = sp->height;
99 var->xres_virtual = var->xres;
100 var->yres_virtual = var->yres;
101 var->bits_per_pixel = sp->depth;
105 var->green.offset = 16;
106 var->green.length = 8;
107 var->blue.offset = 24;
108 var->blue.length = 8;
109 var->transp.offset = 0;
110 var->transp.length = 0;
112 if (fb_alloc_cmap(&info->cmap, 256, 0)) {
113 printk(KERN_ERR "s3d: Cannot allocate color map.\n");
120 static int s3d_pci_register(struct pci_dev *pdev,
121 const struct pci_device_id *ent)
123 struct fb_info *info;
127 err = aperture_remove_conflicting_pci_devices(pdev, "s3dfb");
131 err = pci_enable_device(pdev);
133 printk(KERN_ERR "s3d: Cannot enable PCI device %s\n",
138 info = framebuffer_alloc(sizeof(struct s3d_info), &pdev->dev);
147 sp->of_node = pci_device_to_OF_node(pdev);
149 printk(KERN_ERR "s3d: Cannot find OF node of %s\n",
155 sp->fb_base_phys = pci_resource_start (pdev, 1);
157 err = pci_request_region(pdev, 1, "s3d framebuffer");
159 printk("s3d: Cannot request region 1 for %s\n",
164 err = s3d_get_props(sp);
166 goto err_release_pci;
168 /* XXX 'linebytes' is often wrong, it is equal to the width
169 * XXX with depth of 32 on my XVR-2500 which is clearly not
170 * XXX right. So we don't try to use it.
174 info->fix.line_length = sp->width;
177 info->fix.line_length = sp->width * 2;
180 info->fix.line_length = sp->width * 3;
183 info->fix.line_length = sp->width * 4;
186 sp->fb_size = info->fix.line_length * sp->height;
188 sp->fb_base = ioremap(sp->fb_base_phys, sp->fb_size);
191 goto err_release_pci;
194 err = s3d_set_fbinfo(sp);
198 pci_set_drvdata(pdev, info);
200 printk("s3d: Found device at %s\n", pci_name(pdev));
202 err = register_framebuffer(info);
204 printk(KERN_ERR "s3d: Could not register framebuffer %s\n",
212 iounmap(sp->fb_base);
215 pci_release_region(pdev, 1);
218 framebuffer_release(info);
221 pci_disable_device(pdev);
227 static const struct pci_device_id s3d_pci_table[] = {
228 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002c), },
229 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002d), },
230 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002e), },
231 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002f), },
232 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0030), },
233 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0031), },
234 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032), },
235 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0033), },
239 static struct pci_driver s3d_driver = {
241 .suppress_bind_attrs = true,
244 .id_table = s3d_pci_table,
245 .probe = s3d_pci_register,
248 static int __init s3d_init(void)
250 if (fb_modesetting_disabled("s3d"))
253 if (fb_get_options("s3d", NULL))
256 return pci_register_driver(&s3d_driver);
258 device_initcall(s3d_init);