1 // SPDX-License-Identifier: GPL-2.0-only
2 /* p9100.c: P9100 frame buffer driver
4 * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net)
5 * Copyright 1999 Derrick J Brashear (shadow@dementia.org)
7 * Driver layout based loosely on tgafb.c, see that file for credits.
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/string.h>
14 #include <linux/delay.h>
15 #include <linux/init.h>
19 #include <linux/platform_device.h>
30 static int p9100_setcolreg(unsigned, unsigned, unsigned, unsigned,
31 unsigned, struct fb_info
*);
32 static int p9100_blank(int, struct fb_info
*);
34 static int p9100_sbusfb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
);
35 static int p9100_sbusfb_ioctl(struct fb_info
*info
, unsigned int cmd
, unsigned long arg
);
38 * Frame buffer operations
41 static const struct fb_ops p9100_ops
= {
43 FB_DEFAULT_SBUS_OPS(p9100
),
44 .fb_setcolreg
= p9100_setcolreg
,
45 .fb_blank
= p9100_blank
,
48 /* P9100 control registers */
49 #define P9100_SYSCTL_OFF 0x0UL
50 #define P9100_VIDEOCTL_OFF 0x100UL
51 #define P9100_VRAMCTL_OFF 0x180UL
52 #define P9100_RAMDAC_OFF 0x200UL
53 #define P9100_VIDEOCOPROC_OFF 0x400UL
55 /* P9100 command registers */
56 #define P9100_CMD_OFF 0x0UL
58 /* P9100 framebuffer memory */
59 #define P9100_FB_OFF 0x0UL
61 /* 3 bits: 2=8bpp 3=16bpp 5=32bpp 7=24bpp */
62 #define SYS_CONFIG_PIXELSIZE_SHIFT 26
64 #define SCREENPAINT_TIMECTL1_ENABLE_VIDEO 0x20 /* 0 = off, 1 = on */
67 /* Registers for the system control */
76 /* Registers for the video control */
90 u32 vid_screenpaint_addr
;
91 u32 vid_screenpaint_timectl1
;
92 u32 vid_screenpaint_qsfcnt
;
93 u32 vid_screenpaint_timectl2
;
96 /* Registers for the video control */
100 u32 vram_refresh_cnt
;
106 /* Registers for IBM RGB528 Palette */
107 u32 ramdac_cmap_wridx
;
108 u32 ramdac_palette_data
;
109 u32 ramdac_pixel_mask
;
110 u32 ramdac_palette_rdaddr
;
115 u32 ramdac_xxx
[1784];
118 struct p9100_cmd_parameng
{
121 u32 parameng_quadcmd
;
126 struct p9100_regs __iomem
*regs
;
129 #define P9100_FLAG_BLANKED 0x00000001
131 unsigned long which_io
;
135 * p9100_setcolreg - Optional function. Sets a color register.
136 * @regno: boolean, 0 copy local, 1 get_user() function
137 * @red: frame buffer colormap structure
138 * @green: The green value which can be up to 16 bits wide
139 * @blue: The blue value which can be up to 16 bits wide.
140 * @transp: If supported the alpha value which can be up to 16 bits wide.
141 * @info: frame buffer info structure
143 static int p9100_setcolreg(unsigned regno
,
144 unsigned red
, unsigned green
, unsigned blue
,
145 unsigned transp
, struct fb_info
*info
)
147 struct p9100_par
*par
= (struct p9100_par
*) info
->par
;
148 struct p9100_regs __iomem
*regs
= par
->regs
;
158 spin_lock_irqsave(&par
->lock
, flags
);
160 sbus_writel((regno
<< 16), ®s
->ramdac_cmap_wridx
);
161 sbus_writel((red
<< 16), ®s
->ramdac_palette_data
);
162 sbus_writel((green
<< 16), ®s
->ramdac_palette_data
);
163 sbus_writel((blue
<< 16), ®s
->ramdac_palette_data
);
165 spin_unlock_irqrestore(&par
->lock
, flags
);
171 * p9100_blank - Optional function. Blanks the display.
172 * @blank: the blank mode we want.
173 * @info: frame buffer structure that represents a single frame buffer
176 p9100_blank(int blank
, struct fb_info
*info
)
178 struct p9100_par
*par
= (struct p9100_par
*) info
->par
;
179 struct p9100_regs __iomem
*regs
= par
->regs
;
183 spin_lock_irqsave(&par
->lock
, flags
);
186 case FB_BLANK_UNBLANK
: /* Unblanking */
187 val
= sbus_readl(®s
->vid_screenpaint_timectl1
);
188 val
|= SCREENPAINT_TIMECTL1_ENABLE_VIDEO
;
189 sbus_writel(val
, ®s
->vid_screenpaint_timectl1
);
190 par
->flags
&= ~P9100_FLAG_BLANKED
;
193 case FB_BLANK_NORMAL
: /* Normal blanking */
194 case FB_BLANK_VSYNC_SUSPEND
: /* VESA blank (vsync off) */
195 case FB_BLANK_HSYNC_SUSPEND
: /* VESA blank (hsync off) */
196 case FB_BLANK_POWERDOWN
: /* Poweroff */
197 val
= sbus_readl(®s
->vid_screenpaint_timectl1
);
198 val
&= ~SCREENPAINT_TIMECTL1_ENABLE_VIDEO
;
199 sbus_writel(val
, ®s
->vid_screenpaint_timectl1
);
200 par
->flags
|= P9100_FLAG_BLANKED
;
204 spin_unlock_irqrestore(&par
->lock
, flags
);
209 static const struct sbus_mmap_map p9100_mmap_map
[] = {
210 { CG3_MMAP_OFFSET
, 0, SBUS_MMAP_FBSIZE(1) },
214 static int p9100_sbusfb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
216 struct p9100_par
*par
= (struct p9100_par
*)info
->par
;
218 return sbusfb_mmap_helper(p9100_mmap_map
,
219 info
->fix
.smem_start
, info
->fix
.smem_len
,
223 static int p9100_sbusfb_ioctl(struct fb_info
*info
, unsigned int cmd
, unsigned long arg
)
225 /* Make it look like a cg3. */
226 return sbusfb_ioctl_helper(cmd
, arg
, info
,
227 FBTYPE_SUN3COLOR
, 8, info
->fix
.smem_len
);
234 static void p9100_init_fix(struct fb_info
*info
, int linebytes
, struct device_node
*dp
)
236 snprintf(info
->fix
.id
, sizeof(info
->fix
.id
), "%pOFn", dp
);
238 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
239 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
241 info
->fix
.line_length
= linebytes
;
243 info
->fix
.accel
= FB_ACCEL_SUN_CGTHREE
;
246 static int p9100_probe(struct platform_device
*op
)
248 struct device_node
*dp
= op
->dev
.of_node
;
249 struct fb_info
*info
;
250 struct p9100_par
*par
;
253 info
= framebuffer_alloc(sizeof(struct p9100_par
), &op
->dev
);
260 spin_lock_init(&par
->lock
);
262 /* This is the framebuffer and the only resource apps can mmap. */
263 info
->fix
.smem_start
= op
->resource
[2].start
;
264 par
->which_io
= op
->resource
[2].flags
& IORESOURCE_BITS
;
266 sbusfb_fill_var(&info
->var
, dp
, 8);
267 info
->var
.red
.length
= 8;
268 info
->var
.green
.length
= 8;
269 info
->var
.blue
.length
= 8;
271 linebytes
= of_getintprop_default(dp
, "linebytes", info
->var
.xres
);
272 info
->fix
.smem_len
= PAGE_ALIGN(linebytes
* info
->var
.yres
);
274 par
->regs
= of_ioremap(&op
->resource
[0], 0,
275 sizeof(struct p9100_regs
), "p9100 regs");
279 info
->fbops
= &p9100_ops
;
280 info
->screen_base
= of_ioremap(&op
->resource
[2], 0,
281 info
->fix
.smem_len
, "p9100 ram");
282 if (!info
->screen_base
)
285 p9100_blank(FB_BLANK_UNBLANK
, info
);
287 if (fb_alloc_cmap(&info
->cmap
, 256, 0))
288 goto out_unmap_screen
;
290 p9100_init_fix(info
, linebytes
, dp
);
292 err
= register_framebuffer(info
);
294 goto out_dealloc_cmap
;
296 fb_set_cmap(&info
->cmap
, info
);
298 dev_set_drvdata(&op
->dev
, info
);
300 printk(KERN_INFO
"%pOF: p9100 at %lx:%lx\n",
302 par
->which_io
, info
->fix
.smem_start
);
307 fb_dealloc_cmap(&info
->cmap
);
310 of_iounmap(&op
->resource
[2], info
->screen_base
, info
->fix
.smem_len
);
313 of_iounmap(&op
->resource
[0], par
->regs
, sizeof(struct p9100_regs
));
316 framebuffer_release(info
);
322 static void p9100_remove(struct platform_device
*op
)
324 struct fb_info
*info
= dev_get_drvdata(&op
->dev
);
325 struct p9100_par
*par
= info
->par
;
327 unregister_framebuffer(info
);
328 fb_dealloc_cmap(&info
->cmap
);
330 of_iounmap(&op
->resource
[0], par
->regs
, sizeof(struct p9100_regs
));
331 of_iounmap(&op
->resource
[2], info
->screen_base
, info
->fix
.smem_len
);
333 framebuffer_release(info
);
336 static const struct of_device_id p9100_match
[] = {
342 MODULE_DEVICE_TABLE(of
, p9100_match
);
344 static struct platform_driver p9100_driver
= {
347 .of_match_table
= p9100_match
,
349 .probe
= p9100_probe
,
350 .remove
= p9100_remove
,
353 static int __init
p9100_init(void)
355 if (fb_get_options("p9100fb", NULL
))
358 return platform_driver_register(&p9100_driver
);
361 static void __exit
p9100_exit(void)
363 platform_driver_unregister(&p9100_driver
);
366 module_init(p9100_init
);
367 module_exit(p9100_exit
);
369 MODULE_DESCRIPTION("framebuffer driver for P9100 chipsets");
370 MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
371 MODULE_VERSION("2.0");
372 MODULE_LICENSE("GPL");