blob: 60017fc634b57462a92f388f531dbb17efeda235 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* bw2.c: BWTWO frame buffer driver
2 *
David S. Miller50312ce2006-06-29 14:35:52 -07003 * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1996,1998 Jakub Jelinek (jj@ultra.linux.cz)
5 * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
6 * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
7 *
8 * Driver layout based loosely on tgafb.c, see that file for credits.
9 */
10
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/delay.h>
16#include <linux/init.h>
17#include <linux/fb.h>
18#include <linux/mm.h>
Robert Reif6cd5a862008-05-08 21:37:30 -070019#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/fbio.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "sbuslib.h"
25
26/*
27 * Local functions.
28 */
29
30static int bw2_blank(int, struct fb_info *);
31
Christoph Hellwig216d5262006-01-14 13:21:25 -080032static int bw2_mmap(struct fb_info *, struct vm_area_struct *);
Christoph Hellwig67a66802006-01-14 13:21:25 -080033static int bw2_ioctl(struct fb_info *, unsigned int, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
36 * Frame buffer operations
37 */
38
39static struct fb_ops bw2_ops = {
40 .owner = THIS_MODULE,
41 .fb_blank = bw2_blank,
42 .fb_fillrect = cfb_fillrect,
43 .fb_copyarea = cfb_copyarea,
44 .fb_imageblit = cfb_imageblit,
45 .fb_mmap = bw2_mmap,
46 .fb_ioctl = bw2_ioctl,
Christoph Hellwig9ffb83b2005-11-12 12:11:12 -080047#ifdef CONFIG_COMPAT
48 .fb_compat_ioctl = sbusfb_compat_ioctl,
49#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
52/* OBio addresses for the bwtwo registers */
53#define BWTWO_REGISTER_OFFSET 0x400000
54
55struct bt_regs {
David S. Miller50312ce2006-06-29 14:35:52 -070056 u32 addr;
57 u32 color_map;
58 u32 control;
59 u32 cursor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62struct bw2_regs {
63 struct bt_regs cmap;
David S. Miller50312ce2006-06-29 14:35:52 -070064 u8 control;
65 u8 status;
66 u8 cursor_start;
67 u8 cursor_end;
68 u8 h_blank_start;
69 u8 h_blank_end;
70 u8 h_sync_start;
71 u8 h_sync_end;
72 u8 comp_sync_end;
73 u8 v_blank_start_high;
74 u8 v_blank_start_low;
75 u8 v_blank_end;
76 u8 v_sync_start;
77 u8 v_sync_end;
78 u8 xfer_holdoff_start;
79 u8 xfer_holdoff_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
82/* Status Register Constants */
83#define BWTWO_SR_RES_MASK 0x70
84#define BWTWO_SR_1600_1280 0x50
85#define BWTWO_SR_1152_900_76_A 0x40
86#define BWTWO_SR_1152_900_76_B 0x60
87#define BWTWO_SR_ID_MASK 0x0f
88#define BWTWO_SR_ID_MONO 0x02
89#define BWTWO_SR_ID_MONO_ECL 0x03
90#define BWTWO_SR_ID_MSYNC 0x04
91#define BWTWO_SR_ID_NOCONN 0x0a
92
93/* Control Register Constants */
94#define BWTWO_CTL_ENABLE_INTS 0x80
95#define BWTWO_CTL_ENABLE_VIDEO 0x40
96#define BWTWO_CTL_ENABLE_TIMING 0x20
97#define BWTWO_CTL_ENABLE_CURCMP 0x10
98#define BWTWO_CTL_XTAL_MASK 0x0C
99#define BWTWO_CTL_DIVISOR_MASK 0x03
100
101/* Status Register Constants */
102#define BWTWO_STAT_PENDING_INT 0x80
103#define BWTWO_STAT_MSENSE_MASK 0x70
104#define BWTWO_STAT_ID_MASK 0x0f
105
106struct bw2_par {
107 spinlock_t lock;
108 struct bw2_regs __iomem *regs;
109
110 u32 flags;
111#define BW2_FLAG_BLANKED 0x00000001
112
David S. Miller50312ce2006-06-29 14:35:52 -0700113 unsigned long which_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116/**
117 * bw2_blank - Optional function. Blanks the display.
118 * @blank_mode: the blank mode we want.
119 * @info: frame buffer structure that represents a single frame buffer
120 */
121static int
122bw2_blank(int blank, struct fb_info *info)
123{
124 struct bw2_par *par = (struct bw2_par *) info->par;
125 struct bw2_regs __iomem *regs = par->regs;
126 unsigned long flags;
127 u8 val;
128
129 spin_lock_irqsave(&par->lock, flags);
130
131 switch (blank) {
132 case FB_BLANK_UNBLANK: /* Unblanking */
133 val = sbus_readb(&regs->control);
134 val |= BWTWO_CTL_ENABLE_VIDEO;
135 sbus_writeb(val, &regs->control);
136 par->flags &= ~BW2_FLAG_BLANKED;
137 break;
138
139 case FB_BLANK_NORMAL: /* Normal blanking */
140 case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */
141 case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */
142 case FB_BLANK_POWERDOWN: /* Poweroff */
143 val = sbus_readb(&regs->control);
144 val &= ~BWTWO_CTL_ENABLE_VIDEO;
145 sbus_writeb(val, &regs->control);
146 par->flags |= BW2_FLAG_BLANKED;
147 break;
148 }
149
150 spin_unlock_irqrestore(&par->lock, flags);
151
152 return 0;
153}
154
155static struct sbus_mmap_map bw2_mmap_map[] = {
156 {
157 .size = SBUS_MMAP_FBSIZE(1)
158 },
159 { .size = 0 }
160};
161
Christoph Hellwig216d5262006-01-14 13:21:25 -0800162static int bw2_mmap(struct fb_info *info, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 struct bw2_par *par = (struct bw2_par *)info->par;
165
166 return sbusfb_mmap_helper(bw2_mmap_map,
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000167 info->fix.smem_start, info->fix.smem_len,
David S. Miller50312ce2006-06-29 14:35:52 -0700168 par->which_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 vma);
170}
171
Christoph Hellwig67a66802006-01-14 13:21:25 -0800172static int bw2_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return sbusfb_ioctl_helper(cmd, arg, info,
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000175 FBTYPE_SUN2BW, 1, info->fix.smem_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178/*
179 * Initialisation
180 */
181
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800182static void bw2_init_fix(struct fb_info *info, int linebytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 strlcpy(info->fix.id, "bwtwo", sizeof(info->fix.id));
185
186 info->fix.type = FB_TYPE_PACKED_PIXELS;
187 info->fix.visual = FB_VISUAL_MONO01;
188
189 info->fix.line_length = linebytes;
190
191 info->fix.accel = FB_ACCEL_SUN_BWTWO;
192}
193
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800194static u8 bw2regs_1600[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 0x14, 0x8b, 0x15, 0x28, 0x16, 0x03, 0x17, 0x13,
196 0x18, 0x7b, 0x19, 0x05, 0x1a, 0x34, 0x1b, 0x2e,
197 0x1c, 0x00, 0x1d, 0x0a, 0x1e, 0xff, 0x1f, 0x01,
198 0x10, 0x21, 0
199};
200
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800201static u8 bw2regs_ecl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 0x14, 0x65, 0x15, 0x1e, 0x16, 0x04, 0x17, 0x0c,
203 0x18, 0x5e, 0x19, 0x03, 0x1a, 0xa7, 0x1b, 0x23,
204 0x1c, 0x00, 0x1d, 0x08, 0x1e, 0xff, 0x1f, 0x01,
205 0x10, 0x20, 0
206};
207
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800208static u8 bw2regs_analog[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 0x14, 0xbb, 0x15, 0x2b, 0x16, 0x03, 0x17, 0x13,
210 0x18, 0xb0, 0x19, 0x03, 0x1a, 0xa6, 0x1b, 0x22,
211 0x1c, 0x01, 0x1d, 0x05, 0x1e, 0xff, 0x1f, 0x01,
212 0x10, 0x20, 0
213};
214
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800215static u8 bw2regs_76hz[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 0x14, 0xb7, 0x15, 0x27, 0x16, 0x03, 0x17, 0x0f,
217 0x18, 0xae, 0x19, 0x03, 0x1a, 0xae, 0x1b, 0x2a,
218 0x1c, 0x01, 0x1d, 0x09, 0x1e, 0xff, 0x1f, 0x01,
219 0x10, 0x24, 0
220};
221
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800222static u8 bw2regs_66hz[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 0x14, 0xbb, 0x15, 0x2b, 0x16, 0x04, 0x17, 0x14,
224 0x18, 0xae, 0x19, 0x03, 0x1a, 0xa8, 0x1b, 0x24,
225 0x1c, 0x01, 0x1d, 0x05, 0x1e, 0xff, 0x1f, 0x01,
226 0x10, 0x20, 0
227};
228
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800229static int bw2_do_default_mode(struct bw2_par *par, struct fb_info *info,
230 int *linebytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 u8 status, mon;
233 u8 *p;
234
235 status = sbus_readb(&par->regs->status);
236 mon = status & BWTWO_SR_RES_MASK;
237 switch (status & BWTWO_SR_ID_MASK) {
238 case BWTWO_SR_ID_MONO_ECL:
239 if (mon == BWTWO_SR_1600_1280) {
240 p = bw2regs_1600;
241 info->var.xres = info->var.xres_virtual = 1600;
242 info->var.yres = info->var.yres_virtual = 1280;
243 *linebytes = 1600 / 8;
244 } else
245 p = bw2regs_ecl;
246 break;
247
248 case BWTWO_SR_ID_MONO:
249 p = bw2regs_analog;
250 break;
251
252 case BWTWO_SR_ID_MSYNC:
253 if (mon == BWTWO_SR_1152_900_76_A ||
254 mon == BWTWO_SR_1152_900_76_B)
255 p = bw2regs_76hz;
256 else
257 p = bw2regs_66hz;
258 break;
259
260 case BWTWO_SR_ID_NOCONN:
David S. Miller6c8f5b92007-08-24 22:33:15 -0700261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 default:
David S. Miller6c8f5b92007-08-24 22:33:15 -0700264 printk(KERN_ERR "bw2: can't handle SR %02x\n",
265 status);
266 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 for ( ; *p; p += 2) {
269 u8 __iomem *regp = &((u8 __iomem *)par->regs)[p[0]];
270 sbus_writeb(p[1], regp);
271 }
David S. Miller6c8f5b92007-08-24 22:33:15 -0700272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800275static int bw2_probe(struct platform_device *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Anatolij Gustschind4b8b2c2010-06-03 02:20:44 +0200277 struct device_node *dp = op->dev.of_node;
David S. Millerc7f439b2007-07-27 22:31:46 -0700278 struct fb_info *info;
279 struct bw2_par *par;
David S. Miller50312ce2006-06-29 14:35:52 -0700280 int linebytes, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
David S. Millerc7f439b2007-07-27 22:31:46 -0700282 info = framebuffer_alloc(sizeof(struct bw2_par), &op->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
David S. Millerc7f439b2007-07-27 22:31:46 -0700284 err = -ENOMEM;
285 if (!info)
286 goto out_err;
287 par = info->par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
David S. Millerc7f439b2007-07-27 22:31:46 -0700289 spin_lock_init(&par->lock);
David S. Miller50312ce2006-06-29 14:35:52 -0700290
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000291 info->fix.smem_start = op->resource[0].start;
David S. Millerc7f439b2007-07-27 22:31:46 -0700292 par->which_io = op->resource[0].flags & IORESOURCE_BITS;
293
Robert Reif6cd5a862008-05-08 21:37:30 -0700294 sbusfb_fill_var(&info->var, dp, 1);
David S. Miller50312ce2006-06-29 14:35:52 -0700295 linebytes = of_getintprop_default(dp, "linebytes",
David S. Millerc7f439b2007-07-27 22:31:46 -0700296 info->var.xres);
David S. Miller50312ce2006-06-29 14:35:52 -0700297
David S. Millerc7f439b2007-07-27 22:31:46 -0700298 info->var.red.length = info->var.green.length =
299 info->var.blue.length = info->var.bits_per_pixel;
300 info->var.red.offset = info->var.green.offset =
301 info->var.blue.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
David S. Millerc7f439b2007-07-27 22:31:46 -0700303 par->regs = of_ioremap(&op->resource[0], BWTWO_REGISTER_OFFSET,
304 sizeof(struct bw2_regs), "bw2 regs");
305 if (!par->regs)
306 goto out_release_fb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
David S. Miller6c8f5b92007-08-24 22:33:15 -0700308 if (!of_find_property(dp, "width", NULL)) {
309 err = bw2_do_default_mode(par, info, &linebytes);
310 if (err)
311 goto out_unmap_regs;
312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000314 info->fix.smem_len = PAGE_ALIGN(linebytes * info->var.yres);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
David S. Millerc7f439b2007-07-27 22:31:46 -0700316 info->flags = FBINFO_DEFAULT;
317 info->fbops = &bw2_ops;
David S. Miller50312ce2006-06-29 14:35:52 -0700318
David S. Millerc7f439b2007-07-27 22:31:46 -0700319 info->screen_base = of_ioremap(&op->resource[0], 0,
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000320 info->fix.smem_len, "bw2 ram");
Peter Senna Tschudin0ca30b12012-09-18 14:07:57 +0200321 if (!info->screen_base) {
322 err = -ENOMEM;
David S. Millerc7f439b2007-07-27 22:31:46 -0700323 goto out_unmap_regs;
Peter Senna Tschudin0ca30b12012-09-18 14:07:57 +0200324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Robert Reif59f71372008-05-03 21:12:00 -0700326 bw2_blank(FB_BLANK_UNBLANK, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
David S. Millerc7f439b2007-07-27 22:31:46 -0700328 bw2_init_fix(info, linebytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
David S. Millerc7f439b2007-07-27 22:31:46 -0700330 err = register_framebuffer(info);
331 if (err < 0)
332 goto out_unmap_screen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
David S. Millerc7f439b2007-07-27 22:31:46 -0700334 dev_set_drvdata(&op->dev, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Robert Reif194f1a682008-04-27 15:18:57 -0700336 printk(KERN_INFO "%s: bwtwo at %lx:%lx\n",
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000337 dp->full_name, par->which_io, info->fix.smem_start);
David S. Miller50312ce2006-06-29 14:35:52 -0700338
339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
David S. Millerc7f439b2007-07-27 22:31:46 -0700341out_unmap_screen:
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000342 of_iounmap(&op->resource[0], info->screen_base, info->fix.smem_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
David S. Millerc7f439b2007-07-27 22:31:46 -0700344out_unmap_regs:
345 of_iounmap(&op->resource[0], par->regs, sizeof(struct bw2_regs));
346
347out_release_fb:
348 framebuffer_release(info);
349
350out_err:
351 return err;
David S. Miller50312ce2006-06-29 14:35:52 -0700352}
353
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800354static int bw2_remove(struct platform_device *op)
David S. Miller50312ce2006-06-29 14:35:52 -0700355{
David S. Millerc7f439b2007-07-27 22:31:46 -0700356 struct fb_info *info = dev_get_drvdata(&op->dev);
357 struct bw2_par *par = info->par;
David S. Miller50312ce2006-06-29 14:35:52 -0700358
David S. Millerc7f439b2007-07-27 22:31:46 -0700359 unregister_framebuffer(info);
David S. Miller50312ce2006-06-29 14:35:52 -0700360
David S. Millerc7f439b2007-07-27 22:31:46 -0700361 of_iounmap(&op->resource[0], par->regs, sizeof(struct bw2_regs));
Krzysztof Helt3f06cd22009-05-04 10:35:36 +0000362 of_iounmap(&op->resource[0], info->screen_base, info->fix.smem_len);
David S. Miller50312ce2006-06-29 14:35:52 -0700363
David S. Millerc7f439b2007-07-27 22:31:46 -0700364 framebuffer_release(info);
David S. Miller50312ce2006-06-29 14:35:52 -0700365
David S. Millere3a411a32006-12-28 21:01:32 -0800366 dev_set_drvdata(&op->dev, NULL);
David S. Miller50312ce2006-06-29 14:35:52 -0700367
368 return 0;
369}
370
David S. Millerfd098312008-08-31 01:23:17 -0700371static const struct of_device_id bw2_match[] = {
David S. Miller50312ce2006-06-29 14:35:52 -0700372 {
373 .name = "bwtwo",
374 },
375 {},
376};
377MODULE_DEVICE_TABLE(of, bw2_match);
378
Grant Likely28541d02011-02-22 21:07:43 -0700379static struct platform_driver bw2_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700380 .driver = {
381 .name = "bw2",
382 .owner = THIS_MODULE,
383 .of_match_table = bw2_match,
384 },
David S. Miller50312ce2006-06-29 14:35:52 -0700385 .probe = bw2_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800386 .remove = bw2_remove,
David S. Miller50312ce2006-06-29 14:35:52 -0700387};
388
389static int __init bw2_init(void)
390{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (fb_get_options("bw2fb", NULL))
392 return -ENODEV;
393
Grant Likely28541d02011-02-22 21:07:43 -0700394 return platform_driver_register(&bw2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
David S. Miller50312ce2006-06-29 14:35:52 -0700397static void __exit bw2_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Grant Likely28541d02011-02-22 21:07:43 -0700399 platform_driver_unregister(&bw2_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402module_init(bw2_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403module_exit(bw2_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405MODULE_DESCRIPTION("framebuffer driver for BWTWO chipsets");
David S. Miller50312ce2006-06-29 14:35:52 -0700406MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
407MODULE_VERSION("2.0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408MODULE_LICENSE("GPL");