1 // SPDX-License-Identifier: GPL-2.0-only
2 /* tcx.c: TCX frame buffer driver
4 * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net)
5 * Copyright (C) 1996,1998 Jakub Jelinek (jj@ultra.linux.cz)
6 * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
7 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
9 * Driver layout based loosely on tgafb.c, see that file for credits.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/string.h>
16 #include <linux/delay.h>
17 #include <linux/init.h>
21 #include <linux/platform_device.h>
32 static int tcx_setcolreg(unsigned, unsigned, unsigned, unsigned,
33 unsigned, struct fb_info
*);
34 static int tcx_blank(int, struct fb_info
*);
35 static int tcx_pan_display(struct fb_var_screeninfo
*, struct fb_info
*);
37 static int tcx_sbusfb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
);
38 static int tcx_sbusfb_ioctl(struct fb_info
*info
, unsigned int cmd
, unsigned long arg
);
41 * Frame buffer operations
44 static const struct fb_ops tcx_ops
= {
46 FB_DEFAULT_SBUS_OPS(tcx
),
47 .fb_setcolreg
= tcx_setcolreg
,
48 .fb_blank
= tcx_blank
,
49 .fb_pan_display
= tcx_pan_display
,
53 #define TCX_THC_MISC_REV_SHIFT 16
54 #define TCX_THC_MISC_REV_MASK 15
55 #define TCX_THC_MISC_VSYNC_DIS (1 << 25)
56 #define TCX_THC_MISC_HSYNC_DIS (1 << 24)
57 #define TCX_THC_MISC_RESET (1 << 12)
58 #define TCX_THC_MISC_VIDEO (1 << 10)
59 #define TCX_THC_MISC_SYNC (1 << 9)
60 #define TCX_THC_MISC_VSYNC (1 << 8)
61 #define TCX_THC_MISC_SYNC_ENAB (1 << 7)
62 #define TCX_THC_MISC_CURS_RES (1 << 6)
63 #define TCX_THC_MISC_INT_ENAB (1 << 5)
64 #define TCX_THC_MISC_INT (1 << 4)
65 #define TCX_THC_MISC_INIT 0x9f
66 #define TCX_THC_REV_REV_SHIFT 20
67 #define TCX_THC_REV_REV_MASK 15
68 #define TCX_THC_REV_MINREV_SHIFT 28
69 #define TCX_THC_REV_MINREV_MASK 15
71 /* The contents are unknown */
81 u32 thc_hs
; /* hsync timing */
84 u32 thc_vs
; /* vsync timing */
89 u32 thc_cursxy
; /* cursor x,y position (16 bits each) */
90 u32 thc_cursmask
[32]; /* cursor mask bits */
91 u32 thc_cursbits
[32]; /* what to show where mask enabled */
101 #define TCX_MMAP_ENTRIES 14
105 struct bt_regs __iomem
*bt
;
106 struct tcx_thc __iomem
*thc
;
107 struct tcx_tec __iomem
*tec
;
111 #define TCX_FLAG_BLANKED 0x00000001
113 unsigned long which_io
;
115 struct sbus_mmap_map mmap_map
[TCX_MMAP_ENTRIES
];
119 /* Reset control plane so that WID is 8-bit plane. */
120 static void __tcx_set_control_plane(struct fb_info
*info
)
122 struct tcx_par
*par
= info
->par
;
123 u32 __iomem
*p
, *pend
;
131 for (pend
= p
+ info
->fix
.smem_len
; p
< pend
; p
++) {
132 u32 tmp
= sbus_readl(p
);
139 static void tcx_reset(struct fb_info
*info
)
141 struct tcx_par
*par
= (struct tcx_par
*) info
->par
;
144 spin_lock_irqsave(&par
->lock
, flags
);
145 __tcx_set_control_plane(info
);
146 spin_unlock_irqrestore(&par
->lock
, flags
);
149 static int tcx_pan_display(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
156 * tcx_setcolreg - Optional function. Sets a color register.
157 * @regno: boolean, 0 copy local, 1 get_user() function
158 * @red: frame buffer colormap structure
159 * @green: The green value which can be up to 16 bits wide
160 * @blue: The blue value which can be up to 16 bits wide.
161 * @transp: If supported the alpha value which can be up to 16 bits wide.
162 * @info: frame buffer info structure
164 static int tcx_setcolreg(unsigned regno
,
165 unsigned red
, unsigned green
, unsigned blue
,
166 unsigned transp
, struct fb_info
*info
)
168 struct tcx_par
*par
= (struct tcx_par
*) info
->par
;
169 struct bt_regs __iomem
*bt
= par
->bt
;
179 spin_lock_irqsave(&par
->lock
, flags
);
181 sbus_writel(regno
<< 24, &bt
->addr
);
182 sbus_writel(red
<< 24, &bt
->color_map
);
183 sbus_writel(green
<< 24, &bt
->color_map
);
184 sbus_writel(blue
<< 24, &bt
->color_map
);
186 spin_unlock_irqrestore(&par
->lock
, flags
);
192 * tcx_blank - Optional function. Blanks the display.
193 * @blank: the blank mode we want.
194 * @info: frame buffer structure that represents a single frame buffer
197 tcx_blank(int blank
, struct fb_info
*info
)
199 struct tcx_par
*par
= (struct tcx_par
*) info
->par
;
200 struct tcx_thc __iomem
*thc
= par
->thc
;
204 spin_lock_irqsave(&par
->lock
, flags
);
206 val
= sbus_readl(&thc
->thc_misc
);
209 case FB_BLANK_UNBLANK
: /* Unblanking */
210 val
&= ~(TCX_THC_MISC_VSYNC_DIS
|
211 TCX_THC_MISC_HSYNC_DIS
);
212 val
|= TCX_THC_MISC_VIDEO
;
213 par
->flags
&= ~TCX_FLAG_BLANKED
;
216 case FB_BLANK_NORMAL
: /* Normal blanking */
217 val
&= ~TCX_THC_MISC_VIDEO
;
218 par
->flags
|= TCX_FLAG_BLANKED
;
221 case FB_BLANK_VSYNC_SUSPEND
: /* VESA blank (vsync off) */
222 val
|= TCX_THC_MISC_VSYNC_DIS
;
224 case FB_BLANK_HSYNC_SUSPEND
: /* VESA blank (hsync off) */
225 val
|= TCX_THC_MISC_HSYNC_DIS
;
228 case FB_BLANK_POWERDOWN
: /* Poweroff */
232 sbus_writel(val
, &thc
->thc_misc
);
234 spin_unlock_irqrestore(&par
->lock
, flags
);
239 static const struct sbus_mmap_map __tcx_mmap_map
[TCX_MMAP_ENTRIES
] = {
242 .size
= SBUS_MMAP_FBSIZE(1)
245 .voff
= TCX_RAM24BIT
,
246 .size
= SBUS_MMAP_FBSIZE(4)
250 .size
= SBUS_MMAP_FBSIZE(8)
254 .size
= SBUS_MMAP_FBSIZE(8)
257 .voff
= TCX_CONTROLPLANE
,
258 .size
= SBUS_MMAP_FBSIZE(4)
262 .size
= SBUS_MMAP_FBSIZE(8)
266 .size
= SBUS_MMAP_FBSIZE(8)
295 static int tcx_sbusfb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
297 struct tcx_par
*par
= (struct tcx_par
*)info
->par
;
299 return sbusfb_mmap_helper(par
->mmap_map
,
300 info
->fix
.smem_start
, info
->fix
.smem_len
,
304 static int tcx_sbusfb_ioctl(struct fb_info
*info
, unsigned int cmd
, unsigned long arg
)
306 struct tcx_par
*par
= (struct tcx_par
*) info
->par
;
308 return sbusfb_ioctl_helper(cmd
, arg
, info
,
310 (par
->lowdepth
? 8 : 24),
319 tcx_init_fix(struct fb_info
*info
, int linebytes
)
321 struct tcx_par
*par
= (struct tcx_par
*)info
->par
;
322 const char *tcx_name
;
329 strscpy(info
->fix
.id
, tcx_name
, sizeof(info
->fix
.id
));
331 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
332 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
334 info
->fix
.line_length
= linebytes
;
336 info
->fix
.accel
= FB_ACCEL_SUN_TCX
;
339 static void tcx_unmap_regs(struct platform_device
*op
, struct fb_info
*info
,
343 of_iounmap(&op
->resource
[7],
344 par
->tec
, sizeof(struct tcx_tec
));
346 of_iounmap(&op
->resource
[9],
347 par
->thc
, sizeof(struct tcx_thc
));
349 of_iounmap(&op
->resource
[8],
350 par
->bt
, sizeof(struct bt_regs
));
352 of_iounmap(&op
->resource
[4],
353 par
->cplane
, info
->fix
.smem_len
* sizeof(u32
));
354 if (info
->screen_base
)
355 of_iounmap(&op
->resource
[0],
356 info
->screen_base
, info
->fix
.smem_len
);
359 static int tcx_probe(struct platform_device
*op
)
361 struct device_node
*dp
= op
->dev
.of_node
;
362 struct fb_info
*info
;
364 int linebytes
, i
, err
;
366 info
= framebuffer_alloc(sizeof(struct tcx_par
), &op
->dev
);
373 spin_lock_init(&par
->lock
);
375 par
->lowdepth
= of_property_read_bool(dp
, "tcx-8-bit");
377 sbusfb_fill_var(&info
->var
, dp
, 8);
378 info
->var
.red
.length
= 8;
379 info
->var
.green
.length
= 8;
380 info
->var
.blue
.length
= 8;
382 linebytes
= of_getintprop_default(dp
, "linebytes",
384 info
->fix
.smem_len
= PAGE_ALIGN(linebytes
* info
->var
.yres
);
386 par
->tec
= of_ioremap(&op
->resource
[7], 0,
387 sizeof(struct tcx_tec
), "tcx tec");
388 par
->thc
= of_ioremap(&op
->resource
[9], 0,
389 sizeof(struct tcx_thc
), "tcx thc");
390 par
->bt
= of_ioremap(&op
->resource
[8], 0,
391 sizeof(struct bt_regs
), "tcx dac");
392 info
->screen_base
= of_ioremap(&op
->resource
[0], 0,
393 info
->fix
.smem_len
, "tcx ram");
394 if (!par
->tec
|| !par
->thc
||
395 !par
->bt
|| !info
->screen_base
)
398 memcpy(&par
->mmap_map
, &__tcx_mmap_map
, sizeof(par
->mmap_map
));
399 if (!par
->lowdepth
) {
400 par
->cplane
= of_ioremap(&op
->resource
[4], 0,
401 info
->fix
.smem_len
* sizeof(u32
),
406 par
->mmap_map
[1].size
= SBUS_MMAP_EMPTY
;
407 par
->mmap_map
[4].size
= SBUS_MMAP_EMPTY
;
408 par
->mmap_map
[5].size
= SBUS_MMAP_EMPTY
;
409 par
->mmap_map
[6].size
= SBUS_MMAP_EMPTY
;
412 info
->fix
.smem_start
= op
->resource
[0].start
;
413 par
->which_io
= op
->resource
[0].flags
& IORESOURCE_BITS
;
415 for (i
= 0; i
< TCX_MMAP_ENTRIES
; i
++) {
431 par
->mmap_map
[i
].poff
= op
->resource
[j
].start
;
434 info
->fbops
= &tcx_ops
;
436 /* Initialize brooktree DAC. */
437 sbus_writel(0x04 << 24, &par
->bt
->addr
); /* color planes */
438 sbus_writel(0xff << 24, &par
->bt
->control
);
439 sbus_writel(0x05 << 24, &par
->bt
->addr
);
440 sbus_writel(0x00 << 24, &par
->bt
->control
);
441 sbus_writel(0x06 << 24, &par
->bt
->addr
); /* overlay plane */
442 sbus_writel(0x73 << 24, &par
->bt
->control
);
443 sbus_writel(0x07 << 24, &par
->bt
->addr
);
444 sbus_writel(0x00 << 24, &par
->bt
->control
);
448 tcx_blank(FB_BLANK_UNBLANK
, info
);
450 if (fb_alloc_cmap(&info
->cmap
, 256, 0))
453 fb_set_cmap(&info
->cmap
, info
);
454 tcx_init_fix(info
, linebytes
);
456 err
= register_framebuffer(info
);
458 goto out_dealloc_cmap
;
460 dev_set_drvdata(&op
->dev
, info
);
462 printk(KERN_INFO
"%pOF: TCX at %lx:%lx, %s\n",
465 info
->fix
.smem_start
,
466 par
->lowdepth
? "8-bit only" : "24-bit depth");
471 fb_dealloc_cmap(&info
->cmap
);
474 tcx_unmap_regs(op
, info
, par
);
475 framebuffer_release(info
);
481 static void tcx_remove(struct platform_device
*op
)
483 struct fb_info
*info
= dev_get_drvdata(&op
->dev
);
484 struct tcx_par
*par
= info
->par
;
486 unregister_framebuffer(info
);
487 fb_dealloc_cmap(&info
->cmap
);
489 tcx_unmap_regs(op
, info
, par
);
491 framebuffer_release(info
);
494 static const struct of_device_id tcx_match
[] = {
500 MODULE_DEVICE_TABLE(of
, tcx_match
);
502 static struct platform_driver tcx_driver
= {
505 .of_match_table
= tcx_match
,
508 .remove
= tcx_remove
,
511 static int __init
tcx_init(void)
513 if (fb_get_options("tcxfb", NULL
))
516 return platform_driver_register(&tcx_driver
);
519 static void __exit
tcx_exit(void)
521 platform_driver_unregister(&tcx_driver
);
524 module_init(tcx_init
);
525 module_exit(tcx_exit
);
527 MODULE_DESCRIPTION("framebuffer driver for TCX chipsets");
528 MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
529 MODULE_VERSION("2.0");
530 MODULE_LICENSE("GPL");