tcx.c 12.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/* tcx.c: TCX frame buffer driver
 *
3
 * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net)
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * Copyright (C) 1996,1998 Jakub Jelinek (jj@ultra.linux.cz)
 * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
 *
 * Driver layout based loosely on tgafb.c, see that file for credits.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/fb.h>
#include <linux/mm.h>

#include <asm/io.h>
22 23
#include <asm/prom.h>
#include <asm/of_device.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35
#include <asm/fbio.h>

#include "sbuslib.h"

/*
 * Local functions.
 */

static int tcx_setcolreg(unsigned, unsigned, unsigned, unsigned,
			 unsigned, struct fb_info *);
static int tcx_blank(int, struct fb_info *);

36
static int tcx_mmap(struct fb_info *, struct vm_area_struct *);
37
static int tcx_ioctl(struct fb_info *, unsigned int, unsigned long);
38
static int tcx_pan_display(struct fb_var_screeninfo *, struct fb_info *);
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47

/*
 *  Frame buffer operations
 */

static struct fb_ops tcx_ops = {
	.owner			= THIS_MODULE,
	.fb_setcolreg		= tcx_setcolreg,
	.fb_blank		= tcx_blank,
48
	.fb_pan_display		= tcx_pan_display,
L
Linus Torvalds 已提交
49 50 51 52 53
	.fb_fillrect		= cfb_fillrect,
	.fb_copyarea		= cfb_copyarea,
	.fb_imageblit		= cfb_imageblit,
	.fb_mmap		= tcx_mmap,
	.fb_ioctl		= tcx_ioctl,
54 55 56
#ifdef CONFIG_COMPAT
	.fb_compat_ioctl	= sbusfb_compat_ioctl,
#endif
L
Linus Torvalds 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
};

/* THC definitions */
#define TCX_THC_MISC_REV_SHIFT       16
#define TCX_THC_MISC_REV_MASK        15
#define TCX_THC_MISC_VSYNC_DIS       (1 << 25)
#define TCX_THC_MISC_HSYNC_DIS       (1 << 24)
#define TCX_THC_MISC_RESET           (1 << 12)
#define TCX_THC_MISC_VIDEO           (1 << 10)
#define TCX_THC_MISC_SYNC            (1 << 9)
#define TCX_THC_MISC_VSYNC           (1 << 8)
#define TCX_THC_MISC_SYNC_ENAB       (1 << 7)
#define TCX_THC_MISC_CURS_RES        (1 << 6)
#define TCX_THC_MISC_INT_ENAB        (1 << 5)
#define TCX_THC_MISC_INT             (1 << 4)
#define TCX_THC_MISC_INIT            0x9f
#define TCX_THC_REV_REV_SHIFT        20
#define TCX_THC_REV_REV_MASK         15
#define TCX_THC_REV_MINREV_SHIFT     28
#define TCX_THC_REV_MINREV_MASK      15

/* The contents are unknown */
struct tcx_tec {
80 81 82
	u32 tec_matrix;
	u32 tec_clip;
	u32 tec_vdc;
L
Linus Torvalds 已提交
83 84 85
};

struct tcx_thc {
86
	u32 thc_rev;
L
Linus Torvalds 已提交
87
        u32 thc_pad0[511];
88 89 90 91 92 93 94
	u32 thc_hs;		/* hsync timing */
	u32 thc_hsdvs;
	u32 thc_hd;
	u32 thc_vs;		/* vsync timing */
	u32 thc_vd;
	u32 thc_refresh;
	u32 thc_misc;
L
Linus Torvalds 已提交
95
	u32 thc_pad1[56];
96 97 98
	u32 thc_cursxy;	/* cursor x,y position (16 bits each) */
	u32 thc_cursmask[32];	/* cursor mask bits */
	u32 thc_cursbits[32];	/* what to show where mask enabled */
L
Linus Torvalds 已提交
99 100 101
};

struct bt_regs {
102 103 104 105
	u32 addr;
	u32 color_map;
	u32 control;
	u32 cursor;
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114
};

#define TCX_MMAP_ENTRIES 14

struct tcx_par {
	spinlock_t		lock;
	struct bt_regs		__iomem *bt;
	struct tcx_thc		__iomem *thc;
	struct tcx_tec		__iomem *tec;
115
	u32			__iomem *cplane;
L
Linus Torvalds 已提交
116 117 118 119 120

	u32			flags;
#define TCX_FLAG_BLANKED	0x00000001

	unsigned long		physbase;
121
	unsigned long		which_io;
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130
	unsigned long		fbsize;

	struct sbus_mmap_map	mmap_map[TCX_MMAP_ENTRIES];
	int			lowdepth;
};

/* Reset control plane so that WID is 8-bit plane. */
static void __tcx_set_control_plane (struct tcx_par *par)
{
131
	u32 __iomem *p, *pend;
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
        
	if (par->lowdepth)
		return;

	p = par->cplane;
	if (p == NULL)
		return;
	for (pend = p + par->fbsize; p < pend; p++) {
		u32 tmp = sbus_readl(p);

		tmp &= 0xffffff;
		sbus_writel(tmp, p);
	}
}
                                                
static void tcx_reset (struct fb_info *info)
{
	struct tcx_par *par = (struct tcx_par *) info->par;
	unsigned long flags;

	spin_lock_irqsave(&par->lock, flags);
	__tcx_set_control_plane(par);
	spin_unlock_irqrestore(&par->lock, flags);
}

157 158 159 160 161 162
static int tcx_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
{
	tcx_reset(info);
	return 0;
}

L
Linus Torvalds 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
/**
 *      tcx_setcolreg - Optional function. Sets a color register.
 *      @regno: boolean, 0 copy local, 1 get_user() function
 *      @red: frame buffer colormap structure
 *      @green: The green value which can be up to 16 bits wide
 *      @blue:  The blue value which can be up to 16 bits wide.
 *      @transp: If supported the alpha value which can be up to 16 bits wide.
 *      @info: frame buffer info structure
 */
static int tcx_setcolreg(unsigned regno,
			 unsigned red, unsigned green, unsigned blue,
			 unsigned transp, struct fb_info *info)
{
	struct tcx_par *par = (struct tcx_par *) info->par;
	struct bt_regs __iomem *bt = par->bt;
	unsigned long flags;

	if (regno >= 256)
		return 1;

	red >>= 8;
	green >>= 8;
	blue >>= 8;

	spin_lock_irqsave(&par->lock, flags);

	sbus_writel(regno << 24, &bt->addr);
	sbus_writel(red << 24, &bt->color_map);
	sbus_writel(green << 24, &bt->color_map);
	sbus_writel(blue << 24, &bt->color_map);

	spin_unlock_irqrestore(&par->lock, flags);

	return 0;
}

/**
 *      tcx_blank - Optional function.  Blanks the display.
 *      @blank_mode: the blank mode we want.
 *      @info: frame buffer structure that represents a single frame buffer
 */
static int
tcx_blank(int blank, struct fb_info *info)
{
	struct tcx_par *par = (struct tcx_par *) info->par;
	struct tcx_thc __iomem *thc = par->thc;
	unsigned long flags;
	u32 val;

	spin_lock_irqsave(&par->lock, flags);

	val = sbus_readl(&thc->thc_misc);

	switch (blank) {
	case FB_BLANK_UNBLANK: /* Unblanking */
		val &= ~(TCX_THC_MISC_VSYNC_DIS |
			 TCX_THC_MISC_HSYNC_DIS);
		val |= TCX_THC_MISC_VIDEO;
		par->flags &= ~TCX_FLAG_BLANKED;
		break;

	case FB_BLANK_NORMAL: /* Normal blanking */
		val &= ~TCX_THC_MISC_VIDEO;
		par->flags |= TCX_FLAG_BLANKED;
		break;

	case FB_BLANK_VSYNC_SUSPEND: /* VESA blank (vsync off) */
		val |= TCX_THC_MISC_VSYNC_DIS;
		break;
	case FB_BLANK_HSYNC_SUSPEND: /* VESA blank (hsync off) */
		val |= TCX_THC_MISC_HSYNC_DIS;
		break;

	case FB_BLANK_POWERDOWN: /* Poweroff */
		break;
	};

	sbus_writel(val, &thc->thc_misc);

	spin_unlock_irqrestore(&par->lock, flags);

	return 0;
}

static struct sbus_mmap_map __tcx_mmap_map[TCX_MMAP_ENTRIES] = {
	{
		.voff	= TCX_RAM8BIT,
		.size	= SBUS_MMAP_FBSIZE(1)
	},
	{
		.voff	= TCX_RAM24BIT,
		.size	= SBUS_MMAP_FBSIZE(4)
	},
	{
		.voff	= TCX_UNK3,
		.size	= SBUS_MMAP_FBSIZE(8)
	},
	{
		.voff	= TCX_UNK4,
		.size	= SBUS_MMAP_FBSIZE(8)
	},
	{
		.voff	= TCX_CONTROLPLANE,
		.size	= SBUS_MMAP_FBSIZE(4)
	},
	{
		.voff	= TCX_UNK6,
		.size	= SBUS_MMAP_FBSIZE(8)
	},
	{
		.voff	= TCX_UNK7,
		.size	= SBUS_MMAP_FBSIZE(8)
	},
	{
		.voff	= TCX_TEC,
		.size	= PAGE_SIZE
	},
	{
		.voff	= TCX_BTREGS,
		.size	= PAGE_SIZE
	},
	{
		.voff	= TCX_THC,
		.size	= PAGE_SIZE
	},
	{
		.voff	= TCX_DHC,
		.size	= PAGE_SIZE
	},
	{
		.voff	= TCX_ALT,
		.size	= PAGE_SIZE
	},
	{
		.voff	= TCX_UNK2,
		.size	= 0x20000
	},
	{ .size = 0 }
};

303
static int tcx_mmap(struct fb_info *info, struct vm_area_struct *vma)
L
Linus Torvalds 已提交
304 305 306 307 308
{
	struct tcx_par *par = (struct tcx_par *)info->par;

	return sbusfb_mmap_helper(par->mmap_map,
				  par->physbase, par->fbsize,
309
				  par->which_io, vma);
L
Linus Torvalds 已提交
310 311
}

312 313
static int tcx_ioctl(struct fb_info *info, unsigned int cmd,
		     unsigned long arg)
L
Linus Torvalds 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
{
	struct tcx_par *par = (struct tcx_par *) info->par;

	return sbusfb_ioctl_helper(cmd, arg, info,
				   FBTYPE_TCXCOLOR,
				   (par->lowdepth ? 8 : 24),
				   par->fbsize);
}

/*
 *  Initialisation
 */

static void
tcx_init_fix(struct fb_info *info, int linebytes)
{
	struct tcx_par *par = (struct tcx_par *)info->par;
	const char *tcx_name;

	if (par->lowdepth)
		tcx_name = "TCX8";
	else
		tcx_name = "TCX24";

	strlcpy(info->fix.id, tcx_name, sizeof(info->fix.id));

	info->fix.type = FB_TYPE_PACKED_PIXELS;
	info->fix.visual = FB_VISUAL_PSEUDOCOLOR;

	info->fix.line_length = linebytes;

	info->fix.accel = FB_ACCEL_SUN_TCX;
}

struct all_info {
	struct fb_info info;
	struct tcx_par par;
};

353
static void tcx_unmap_regs(struct of_device *op, struct all_info *all)
L
Linus Torvalds 已提交
354
{
355
	if (all->par.tec)
356 357
		of_iounmap(&op->resource[7],
			   all->par.tec, sizeof(struct tcx_tec));
358
	if (all->par.thc)
359 360
		of_iounmap(&op->resource[9],
			   all->par.thc, sizeof(struct tcx_thc));
361
	if (all->par.bt)
362 363
		of_iounmap(&op->resource[8],
			   all->par.bt, sizeof(struct bt_regs));
364
	if (all->par.cplane)
365 366
		of_iounmap(&op->resource[4],
			   all->par.cplane, all->par.fbsize * sizeof(u32));
367
	if (all->info.screen_base)
368 369
		of_iounmap(&op->resource[0],
			   all->info.screen_base, all->par.fbsize);
370
}
L
Linus Torvalds 已提交
371

372 373 374 375 376
static int __devinit tcx_init_one(struct of_device *op)
{
	struct device_node *dp = op->node;
	struct all_info *all;
	int linebytes, i, err;
L
Linus Torvalds 已提交
377

378 379 380
	all = kzalloc(sizeof(*all), GFP_KERNEL);
	if (!all)
		return -ENOMEM;
L
Linus Torvalds 已提交
381 382 383

	spin_lock_init(&all->par.lock);

384 385
	all->par.lowdepth =
		(of_find_property(dp, "tcx-8-bit", NULL) != NULL);
L
Linus Torvalds 已提交
386

387
	sbusfb_fill_var(&all->info.var, dp->node, 8);
388 389 390
	all->info.var.red.length = 8;
	all->info.var.green.length = 8;
	all->info.var.blue.length = 8;
L
Linus Torvalds 已提交
391

392 393
	linebytes = of_getintprop_default(dp, "linebytes",
					  all->info.var.xres);
L
Linus Torvalds 已提交
394 395
	all->par.fbsize = PAGE_ALIGN(linebytes * all->info.var.yres);

396 397 398 399 400 401 402 403 404 405
	all->par.tec = of_ioremap(&op->resource[7], 0,
				  sizeof(struct tcx_tec), "tcx tec");
	all->par.thc = of_ioremap(&op->resource[9], 0,
				  sizeof(struct tcx_thc), "tcx thc");
	all->par.bt = of_ioremap(&op->resource[8], 0,
				 sizeof(struct bt_regs), "tcx dac");
	all->info.screen_base = of_ioremap(&op->resource[0], 0,
					   all->par.fbsize, "tcx ram");
	if (!all->par.tec || !all->par.thc ||
	    !all->par.bt || !all->info.screen_base) {
406
		tcx_unmap_regs(op, all);
407 408 409 410
		kfree(all);
		return -ENOMEM;
	}

L
Linus Torvalds 已提交
411 412
	memcpy(&all->par.mmap_map, &__tcx_mmap_map, sizeof(all->par.mmap_map));
	if (!all->par.lowdepth) {
413 414 415 416
		all->par.cplane = of_ioremap(&op->resource[4], 0,
					     all->par.fbsize * sizeof(u32),
					     "tcx cplane");
		if (!all->par.cplane) {
417
			tcx_unmap_regs(op, all);
418 419 420
			kfree(all);
			return -ENOMEM;
		}
L
Linus Torvalds 已提交
421 422 423 424 425 426 427 428
	} else {
		all->par.mmap_map[1].size = SBUS_MMAP_EMPTY;
		all->par.mmap_map[4].size = SBUS_MMAP_EMPTY;
		all->par.mmap_map[5].size = SBUS_MMAP_EMPTY;
		all->par.mmap_map[6].size = SBUS_MMAP_EMPTY;
	}

	all->par.physbase = 0;
429 430
	all->par.which_io = op->resource[0].flags & IORESOURCE_BITS;

L
Linus Torvalds 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
	for (i = 0; i < TCX_MMAP_ENTRIES; i++) {
		int j;

		switch (i) {
		case 10:
			j = 12;
			break;

		case 11: case 12:
			j = i - 1;
			break;

		default:
			j = i;
			break;
		};
447
		all->par.mmap_map[i].poff = op->resource[j].start;
L
Linus Torvalds 已提交
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
	}

	all->info.flags = FBINFO_DEFAULT;
	all->info.fbops = &tcx_ops;
	all->info.par = &all->par;

	/* Initialize brooktree DAC. */
	sbus_writel(0x04 << 24, &all->par.bt->addr);         /* color planes */
	sbus_writel(0xff << 24, &all->par.bt->control);
	sbus_writel(0x05 << 24, &all->par.bt->addr);
	sbus_writel(0x00 << 24, &all->par.bt->control);
	sbus_writel(0x06 << 24, &all->par.bt->addr);         /* overlay plane */
	sbus_writel(0x73 << 24, &all->par.bt->control);
	sbus_writel(0x07 << 24, &all->par.bt->addr);
	sbus_writel(0x00 << 24, &all->par.bt->control);

	tcx_reset(&all->info);

466
	tcx_blank(FB_BLANK_UNBLANK, &all->info);
L
Linus Torvalds 已提交
467 468

	if (fb_alloc_cmap(&all->info.cmap, 256, 0)) {
469
		tcx_unmap_regs(op, all);
L
Linus Torvalds 已提交
470
		kfree(all);
471
		return -ENOMEM;
L
Linus Torvalds 已提交
472 473
	}

474
	fb_set_cmap(&all->info.cmap, &all->info);
L
Linus Torvalds 已提交
475 476
	tcx_init_fix(&all->info, linebytes);

477 478
	err = register_framebuffer(&all->info);
	if (err < 0) {
L
Linus Torvalds 已提交
479
		fb_dealloc_cmap(&all->info.cmap);
480
		tcx_unmap_regs(op, all);
L
Linus Torvalds 已提交
481
		kfree(all);
482
		return err;
L
Linus Torvalds 已提交
483 484
	}

485
	dev_set_drvdata(&op->dev, all);
L
Linus Torvalds 已提交
486

487 488 489 490
	printk("%s: TCX at %lx:%lx, %s\n",
	       dp->full_name,
	       all->par.which_io,
	       op->resource[0].start,
L
Linus Torvalds 已提交
491
	       all->par.lowdepth ? "8-bit only" : "24-bit depth");
492 493

	return 0;
L
Linus Torvalds 已提交
494 495
}

496
static int __devinit tcx_probe(struct of_device *dev, const struct of_device_id *match)
L
Linus Torvalds 已提交
497
{
498
	struct of_device *op = to_of_device(&dev->dev);
L
Linus Torvalds 已提交
499

500 501
	return tcx_init_one(op);
}
L
Linus Torvalds 已提交
502

503
static int __devexit tcx_remove(struct of_device *op)
504
{
505
	struct all_info *all = dev_get_drvdata(&op->dev);
506 507 508 509

	unregister_framebuffer(&all->info);
	fb_dealloc_cmap(&all->info.cmap);

510
	tcx_unmap_regs(op, all);
511 512 513

	kfree(all);

514
	dev_set_drvdata(&op->dev, NULL);
L
Linus Torvalds 已提交
515 516 517 518

	return 0;
}

519 520 521 522 523 524 525
static struct of_device_id tcx_match[] = {
	{
		.name = "SUNW,tcx",
	},
	{},
};
MODULE_DEVICE_TABLE(of, tcx_match);
L
Linus Torvalds 已提交
526

527 528 529 530 531 532
static struct of_platform_driver tcx_driver = {
	.name		= "tcx",
	.match_table	= tcx_match,
	.probe		= tcx_probe,
	.remove		= __devexit_p(tcx_remove),
};
L
Linus Torvalds 已提交
533

534 535 536 537 538 539
int __init tcx_init(void)
{
	if (fb_get_options("tcxfb", NULL))
		return -ENODEV;

	return of_register_driver(&tcx_driver, &of_bus_type);
L
Linus Torvalds 已提交
540 541
}

542
void __exit tcx_exit(void)
L
Linus Torvalds 已提交
543
{
544
	of_unregister_driver(&tcx_driver);
L
Linus Torvalds 已提交
545 546 547 548 549 550
}

module_init(tcx_init);
module_exit(tcx_exit);

MODULE_DESCRIPTION("framebuffer driver for TCX chipsets");
551 552
MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
MODULE_VERSION("2.0");
L
Linus Torvalds 已提交
553
MODULE_LICENSE("GPL");