pm2fb.c 48.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Permedia2 framebuffer driver.
 *
 * 2.5/2.6 driver:
 * Copyright (c) 2003 Jim Hague (jim.hague@acm.org)
 *
 * based on 2.4 driver:
 * Copyright (c) 1998-2000 Ilario Nardinocchi (nardinoc@CS.UniBO.IT)
 * Copyright (c) 1999 Jakub Jelinek (jakub@redhat.com)
 *
 * and additional input from James Simmon's port of Hannu Mallat's tdfx
 * driver.
 *
K
Krzysztof Helt 已提交
14
 * I have a Creative Graphics Blaster Exxtreme card - pm2fb on x86. I
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23 24 25 26
 * have no access to other pm2fb implementations. Sparc (and thus
 * hopefully other big-endian) devices now work, thanks to a lot of
 * testing work by Ron Murray. I have no access to CVision hardware,
 * and therefore for now I am omitting the CVision code.
 *
 * Multiple boards support has been on the TODO list for ages.
 * Don't expect this to change.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License. See the file COPYING in the main directory of this archive for
 * more details.
 *
K
Krzysztof Helt 已提交
27
 *
L
Linus Torvalds 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/fb.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <video/permedia2.h>
#include <video/cvisionppc.h>

#if !defined(__LITTLE_ENDIAN) && !defined(__BIG_ENDIAN)
#error	"The endianness of the target host has not been defined."
#endif

#if !defined(CONFIG_PCI)
#error "Only generic PCI cards supported."
#endif

#undef PM2FB_MASTER_DEBUG
#ifdef PM2FB_MASTER_DEBUG
K
Krzysztof Helt 已提交
54
#define DPRINTK(a, b...)	\
55
	printk(KERN_DEBUG "pm2fb: %s: " a, __func__ , ## b)
L
Linus Torvalds 已提交
56
#else
K
Krzysztof Helt 已提交
57
#define DPRINTK(a, b...)
L
Linus Torvalds 已提交
58 59
#endif

K
Krzysztof Helt 已提交
60 61
#define PM2_PIXMAP_SIZE	(1600 * 4)

L
Linus Torvalds 已提交
62
/*
K
Krzysztof Helt 已提交
63
 * Driver data
L
Linus Torvalds 已提交
64
 */
65
static int hwcursor = 1;
66
static char *mode_option;
L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75 76

/*
 * The XFree GLINT driver will (I think to implement hardware cursor
 * support on TVP4010 and similar where there is no RAMDAC - see
 * comment in set_video) always request +ve sync regardless of what
 * the mode requires. This screws me because I have a Sun
 * fixed-frequency monitor which absolutely has to have -ve sync. So
 * these flags allow the user to specify that requests for +ve sync
 * should be silently turned in -ve sync.
 */
77 78
static bool lowhsync;
static bool lowvsync;
79 80
static bool noaccel;
static bool nomtrr;
L
Linus Torvalds 已提交
81 82 83 84 85 86 87 88 89

/*
 * The hardware state of the graphics card that isn't part of the
 * screeninfo.
 */
struct pm2fb_par
{
	pm2type_t	type;		/* Board type */
	unsigned char	__iomem *v_regs;/* virtual address of p_regs */
K
Krzysztof Helt 已提交
90
	u32		memclock;	/* memclock */
L
Linus Torvalds 已提交
91 92 93 94
	u32		video;		/* video flags before blanking */
	u32		mem_config;	/* MemConfig reg at probe */
	u32		mem_control;	/* MemControl reg at probe */
	u32		boot_address;	/* BootAddress reg at probe */
K
Krzysztof Helt 已提交
95
	u32		palette[16];
96
	int		wc_cookie;
L
Linus Torvalds 已提交
97 98 99 100 101 102
};

/*
 * Here we define the default structs fb_fix_screeninfo and fb_var_screeninfo
 * if we don't use modedb.
 */
103
static struct fb_fix_screeninfo pm2fb_fix = {
K
Krzysztof Helt 已提交
104
	.id =		"",
L
Linus Torvalds 已提交
105 106 107 108
	.type =		FB_TYPE_PACKED_PIXELS,
	.visual =	FB_VISUAL_PSEUDOCOLOR,
	.xpanstep =	1,
	.ypanstep =	1,
K
Krzysztof Helt 已提交
109
	.ywrapstep =	0,
110
	.accel =	FB_ACCEL_3DLABS_PERMEDIA2,
L
Linus Torvalds 已提交
111 112 113 114 115
};

/*
 * Default video mode. In case the modedb doesn't work.
 */
116
static const struct fb_var_screeninfo pm2fb_var = {
L
Linus Torvalds 已提交
117
	/* "640x480, 8 bpp @ 60 Hz */
K
Krzysztof Helt 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
	.xres =			640,
	.yres =			480,
	.xres_virtual =		640,
	.yres_virtual =		480,
	.bits_per_pixel =	8,
	.red =			{0, 8, 0},
	.blue =			{0, 8, 0},
	.green =		{0, 8, 0},
	.activate =		FB_ACTIVATE_NOW,
	.height =		-1,
	.width =		-1,
	.accel_flags =		0,
	.pixclock =		39721,
	.left_margin =		40,
	.right_margin =		24,
	.upper_margin =		32,
	.lower_margin =		11,
	.hsync_len =		96,
	.vsync_len =		2,
	.vmode =		FB_VMODE_NONINTERLACED
L
Linus Torvalds 已提交
138 139 140 141 142 143
};

/*
 * Utility functions
 */

K
Krzysztof Helt 已提交
144
static inline u32 pm2_RD(struct pm2fb_par *p, s32 off)
L
Linus Torvalds 已提交
145
{
K
Krzysztof Helt 已提交
146
	return fb_readl(p->v_regs + off);
L
Linus Torvalds 已提交
147 148
}

K
Krzysztof Helt 已提交
149
static inline void pm2_WR(struct pm2fb_par *p, s32 off, u32 v)
L
Linus Torvalds 已提交
150
{
K
Krzysztof Helt 已提交
151
	fb_writel(v, p->v_regs + off);
L
Linus Torvalds 已提交
152 153
}

K
Krzysztof Helt 已提交
154
static inline u32 pm2_RDAC_RD(struct pm2fb_par *p, s32 idx)
L
Linus Torvalds 已提交
155
{
K
Krzysztof Helt 已提交
156
	pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, idx);
L
Linus Torvalds 已提交
157
	mb();
K
Krzysztof Helt 已提交
158 159 160
	return pm2_RD(p, PM2R_RD_INDEXED_DATA);
}

K
Krzysztof Helt 已提交
161
static inline u32 pm2v_RDAC_RD(struct pm2fb_par *p, s32 idx)
K
Krzysztof Helt 已提交
162 163 164 165
{
	pm2_WR(p, PM2VR_RD_INDEX_LOW, idx & 0xff);
	mb();
	return pm2_RD(p,  PM2VR_RD_INDEXED_DATA);
L
Linus Torvalds 已提交
166 167
}

K
Krzysztof Helt 已提交
168
static inline void pm2_RDAC_WR(struct pm2fb_par *p, s32 idx, u32 v)
L
Linus Torvalds 已提交
169
{
K
Krzysztof Helt 已提交
170
	pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, idx);
171
	wmb();
K
Krzysztof Helt 已提交
172
	pm2_WR(p, PM2R_RD_INDEXED_DATA, v);
173
	wmb();
L
Linus Torvalds 已提交
174 175
}

K
Krzysztof Helt 已提交
176
static inline void pm2v_RDAC_WR(struct pm2fb_par *p, s32 idx, u32 v)
L
Linus Torvalds 已提交
177 178
{
	pm2_WR(p, PM2VR_RD_INDEX_LOW, idx & 0xff);
179
	wmb();
L
Linus Torvalds 已提交
180
	pm2_WR(p, PM2VR_RD_INDEXED_DATA, v);
181
	wmb();
L
Linus Torvalds 已提交
182 183 184
}

#ifdef CONFIG_FB_PM2_FIFO_DISCONNECT
K
Krzysztof Helt 已提交
185
#define WAIT_FIFO(p, a)
L
Linus Torvalds 已提交
186
#else
K
Krzysztof Helt 已提交
187
static inline void WAIT_FIFO(struct pm2fb_par *p, u32 a)
L
Linus Torvalds 已提交
188
{
189 190
	while (pm2_RD(p, PM2R_IN_FIFO_SPACE) < a)
		cpu_relax();
L
Linus Torvalds 已提交
191 192 193 194 195 196
}
#endif

/*
 * partial products for the supported horizontal resolutions.
 */
K
Krzysztof Helt 已提交
197
#define PACKPP(p0, p1, p2)	(((p2) << 6) | ((p1) << 3) | (p0))
L
Linus Torvalds 已提交
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
static const struct {
	u16 width;
	u16 pp;
} pp_table[] = {
	{ 32,	PACKPP(1, 0, 0) }, { 64,	PACKPP(1, 1, 0) },
	{ 96,	PACKPP(1, 1, 1) }, { 128,	PACKPP(2, 1, 1) },
	{ 160,	PACKPP(2, 2, 1) }, { 192,	PACKPP(2, 2, 2) },
	{ 224,	PACKPP(3, 2, 1) }, { 256,	PACKPP(3, 2, 2) },
	{ 288,	PACKPP(3, 3, 1) }, { 320,	PACKPP(3, 3, 2) },
	{ 384,	PACKPP(3, 3, 3) }, { 416,	PACKPP(4, 3, 1) },
	{ 448,	PACKPP(4, 3, 2) }, { 512,	PACKPP(4, 3, 3) },
	{ 544,	PACKPP(4, 4, 1) }, { 576,	PACKPP(4, 4, 2) },
	{ 640,	PACKPP(4, 4, 3) }, { 768,	PACKPP(4, 4, 4) },
	{ 800,	PACKPP(5, 4, 1) }, { 832,	PACKPP(5, 4, 2) },
	{ 896,	PACKPP(5, 4, 3) }, { 1024,	PACKPP(5, 4, 4) },
	{ 1056,	PACKPP(5, 5, 1) }, { 1088,	PACKPP(5, 5, 2) },
	{ 1152,	PACKPP(5, 5, 3) }, { 1280,	PACKPP(5, 5, 4) },
	{ 1536,	PACKPP(5, 5, 5) }, { 1568,	PACKPP(6, 5, 1) },
	{ 1600,	PACKPP(6, 5, 2) }, { 1664,	PACKPP(6, 5, 3) },
	{ 1792,	PACKPP(6, 5, 4) }, { 2048,	PACKPP(6, 5, 5) },
	{ 0,	0 } };

static u32 partprod(u32 xres)
{
	int i;

	for (i = 0; pp_table[i].width && pp_table[i].width != xres; i++)
		;
K
Krzysztof Helt 已提交
226
	if (pp_table[i].width == 0)
L
Linus Torvalds 已提交
227 228 229 230 231 232 233
		DPRINTK("invalid width %u\n", xres);
	return pp_table[i].pp;
}

static u32 to3264(u32 timing, int bpp, int is64)
{
	switch (bpp) {
K
Krzysztof Helt 已提交
234 235
	case 24:
		timing *= 3;
236
		/* fall through */
L
Linus Torvalds 已提交
237
	case 8:
K
Krzysztof Helt 已提交
238
		timing >>= 1;
239
		/* fall through */
L
Linus Torvalds 已提交
240
	case 16:
K
Krzysztof Helt 已提交
241
		timing >>= 1;
L
Linus Torvalds 已提交
242 243 244
	case 32:
		break;
	}
K
Krzysztof Helt 已提交
245 246
	if (is64)
		timing >>= 1;
L
Linus Torvalds 已提交
247 248 249
	return timing;
}

K
Krzysztof Helt 已提交
250 251
static void pm2_mnp(u32 clk, unsigned char *mm, unsigned char *nn,
		    unsigned char *pp)
L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264
{
	unsigned char m;
	unsigned char n;
	unsigned char p;
	u32 f;
	s32 curr;
	s32 delta = 100000;

	*mm = *nn = *pp = 0;
	for (n = 2; n < 15; n++) {
		for (m = 2; m; m++) {
			f = PM2_REFERENCE_CLOCK * m / n;
			if (f >= 150000 && f <= 300000) {
K
Krzysztof Helt 已提交
265 266 267 268 269 270 271
				for (p = 0; p < 5; p++, f >>= 1) {
					curr = (clk > f) ? clk - f : f - clk;
					if (curr < delta) {
						delta = curr;
						*mm = m;
						*nn = n;
						*pp = p;
L
Linus Torvalds 已提交
272 273 274 275 276 277 278
					}
				}
			}
		}
	}
}

K
Krzysztof Helt 已提交
279 280
static void pm2v_mnp(u32 clk, unsigned char *mm, unsigned char *nn,
		     unsigned char *pp)
L
Linus Torvalds 已提交
281 282 283 284 285 286 287 288
{
	unsigned char m;
	unsigned char n;
	unsigned char p;
	u32 f;
	s32 delta = 1000;

	*mm = *nn = *pp = 0;
K
Krzysztof Helt 已提交
289
	for (m = 1; m < 128; m++) {
290
		for (n = 2 * m + 1; n; n++) {
K
Krzysztof Helt 已提交
291 292 293 294 295 296 297
			for (p = 0; p < 2; p++) {
				f = (PM2_REFERENCE_CLOCK >> (p + 1)) * n / m;
				if (clk > f - delta && clk < f + delta) {
					delta = (clk > f) ? clk - f : f - clk;
					*mm = m;
					*nn = n;
					*pp = p;
L
Linus Torvalds 已提交
298 299 300 301 302 303
				}
			}
		}
	}
}

K
Krzysztof Helt 已提交
304 305
static void clear_palette(struct pm2fb_par *p)
{
K
Krzysztof Helt 已提交
306
	int i = 256;
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314 315 316 317 318

	WAIT_FIFO(p, 1);
	pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, 0);
	wmb();
	while (i--) {
		WAIT_FIFO(p, 3);
		pm2_WR(p, PM2R_RD_PALETTE_DATA, 0);
		pm2_WR(p, PM2R_RD_PALETTE_DATA, 0);
		pm2_WR(p, PM2R_RD_PALETTE_DATA, 0);
	}
}

K
Krzysztof Helt 已提交
319
static void reset_card(struct pm2fb_par *p)
L
Linus Torvalds 已提交
320 321 322 323 324 325
{
	if (p->type == PM2_TYPE_PERMEDIA2V)
		pm2_WR(p, PM2VR_RD_INDEX_HIGH, 0);
	pm2_WR(p, PM2R_RESET_STATUS, 0);
	mb();
	while (pm2_RD(p, PM2R_RESET_STATUS) & PM2F_BEING_RESET)
326
		cpu_relax();
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
	mb();
#ifdef CONFIG_FB_PM2_FIFO_DISCONNECT
	DPRINTK("FIFO disconnect enabled\n");
	pm2_WR(p, PM2R_FIFO_DISCON, 1);
	mb();
#endif

	/* Restore stashed memory config information from probe */
	WAIT_FIFO(p, 3);
	pm2_WR(p, PM2R_MEM_CONTROL, p->mem_control);
	pm2_WR(p, PM2R_BOOT_ADDRESS, p->boot_address);
	wmb();
	pm2_WR(p, PM2R_MEM_CONFIG, p->mem_config);
}

K
Krzysztof Helt 已提交
342
static void reset_config(struct pm2fb_par *p)
L
Linus Torvalds 已提交
343
{
344
	WAIT_FIFO(p, 53);
K
Krzysztof Helt 已提交
345
	pm2_WR(p, PM2R_CHIP_CONFIG, pm2_RD(p, PM2R_CHIP_CONFIG) &
K
Krzysztof Helt 已提交
346
			~(PM2F_VGA_ENABLE | PM2F_VGA_FIXED));
L
Linus Torvalds 已提交
347 348 349 350 351 352 353 354
	pm2_WR(p, PM2R_BYPASS_WRITE_MASK, ~(0L));
	pm2_WR(p, PM2R_FRAMEBUFFER_WRITE_MASK, ~(0L));
	pm2_WR(p, PM2R_FIFO_CONTROL, 0);
	pm2_WR(p, PM2R_APERTURE_ONE, 0);
	pm2_WR(p, PM2R_APERTURE_TWO, 0);
	pm2_WR(p, PM2R_RASTERIZER_MODE, 0);
	pm2_WR(p, PM2R_DELTA_MODE, PM2F_DELTA_ORDER_RGB);
	pm2_WR(p, PM2R_LB_READ_FORMAT, 0);
K
Krzysztof Helt 已提交
355
	pm2_WR(p, PM2R_LB_WRITE_FORMAT, 0);
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	pm2_WR(p, PM2R_LB_READ_MODE, 0);
	pm2_WR(p, PM2R_LB_SOURCE_OFFSET, 0);
	pm2_WR(p, PM2R_FB_SOURCE_OFFSET, 0);
	pm2_WR(p, PM2R_FB_PIXEL_OFFSET, 0);
	pm2_WR(p, PM2R_FB_WINDOW_BASE, 0);
	pm2_WR(p, PM2R_LB_WINDOW_BASE, 0);
	pm2_WR(p, PM2R_FB_SOFT_WRITE_MASK, ~(0L));
	pm2_WR(p, PM2R_FB_HARD_WRITE_MASK, ~(0L));
	pm2_WR(p, PM2R_FB_READ_PIXEL, 0);
	pm2_WR(p, PM2R_DITHER_MODE, 0);
	pm2_WR(p, PM2R_AREA_STIPPLE_MODE, 0);
	pm2_WR(p, PM2R_DEPTH_MODE, 0);
	pm2_WR(p, PM2R_STENCIL_MODE, 0);
	pm2_WR(p, PM2R_TEXTURE_ADDRESS_MODE, 0);
	pm2_WR(p, PM2R_TEXTURE_READ_MODE, 0);
	pm2_WR(p, PM2R_TEXEL_LUT_MODE, 0);
	pm2_WR(p, PM2R_YUV_MODE, 0);
	pm2_WR(p, PM2R_COLOR_DDA_MODE, 0);
	pm2_WR(p, PM2R_TEXTURE_COLOR_MODE, 0);
	pm2_WR(p, PM2R_FOG_MODE, 0);
	pm2_WR(p, PM2R_ALPHA_BLEND_MODE, 0);
	pm2_WR(p, PM2R_LOGICAL_OP_MODE, 0);
	pm2_WR(p, PM2R_STATISTICS_MODE, 0);
	pm2_WR(p, PM2R_SCISSOR_MODE, 0);
	pm2_WR(p, PM2R_FILTER_MODE, PM2F_SYNCHRONIZATION);
381
	pm2_WR(p, PM2R_RD_PIXEL_MASK, 0xff);
L
Linus Torvalds 已提交
382 383 384 385 386
	switch (p->type) {
	case PM2_TYPE_PERMEDIA2:
		pm2_RDAC_WR(p, PM2I_RD_MODE_CONTROL, 0); /* no overlay */
		pm2_RDAC_WR(p, PM2I_RD_CURSOR_CONTROL, 0);
		pm2_RDAC_WR(p, PM2I_RD_MISC_CONTROL, PM2F_RD_PALETTE_WIDTH_8);
K
Krzysztof Helt 已提交
387 388 389 390 391
		pm2_RDAC_WR(p, PM2I_RD_COLOR_KEY_CONTROL, 0);
		pm2_RDAC_WR(p, PM2I_RD_OVERLAY_KEY, 0);
		pm2_RDAC_WR(p, PM2I_RD_RED_KEY, 0);
		pm2_RDAC_WR(p, PM2I_RD_GREEN_KEY, 0);
		pm2_RDAC_WR(p, PM2I_RD_BLUE_KEY, 0);
L
Linus Torvalds 已提交
392 393 394 395 396 397 398
		break;
	case PM2_TYPE_PERMEDIA2V:
		pm2v_RDAC_WR(p, PM2VI_RD_MISC_CONTROL, 1); /* 8bit */
		break;
	}
}

K
Krzysztof Helt 已提交
399
static void set_aperture(struct pm2fb_par *p, u32 depth)
L
Linus Torvalds 已提交
400 401 402 403 404 405
{
	/*
	 * The hardware is little-endian. When used in big-endian
	 * hosts, the on-chip aperture settings are used where
	 * possible to translate from host to card byte order.
	 */
K
Krzysztof Helt 已提交
406
	WAIT_FIFO(p, 2);
L
Linus Torvalds 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
#ifdef __LITTLE_ENDIAN
	pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_STANDARD);
#else
	switch (depth) {
	case 24:	/* RGB->BGR */
		/*
		 * We can't use the aperture to translate host to
		 * card byte order here, so we switch to BGR mode
		 * in pm2fb_set_par().
		 */
	case 8:		/* B->B */
		pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_STANDARD);
		break;
	case 16:	/* HL->LH */
		pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_HALFWORDSWAP);
		break;
	case 32:	/* RGBA->ABGR */
		pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_BYTESWAP);
		break;
	}
#endif

K
Krzysztof Helt 已提交
429
	/* We don't use aperture two, so this may be superflous */
L
Linus Torvalds 已提交
430 431 432
	pm2_WR(p, PM2R_APERTURE_TWO, PM2F_APERTURE_STANDARD);
}

K
Krzysztof Helt 已提交
433
static void set_color(struct pm2fb_par *p, unsigned char regno,
L
Linus Torvalds 已提交
434 435 436 437 438 439 440 441 442 443 444 445
		      unsigned char r, unsigned char g, unsigned char b)
{
	WAIT_FIFO(p, 4);
	pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, regno);
	wmb();
	pm2_WR(p, PM2R_RD_PALETTE_DATA, r);
	wmb();
	pm2_WR(p, PM2R_RD_PALETTE_DATA, g);
	wmb();
	pm2_WR(p, PM2R_RD_PALETTE_DATA, b);
}

K
Krzysztof Helt 已提交
446
static void set_memclock(struct pm2fb_par *par, u32 clk)
L
Linus Torvalds 已提交
447 448 449 450
{
	int i;
	unsigned char m, n, p;

451 452 453
	switch (par->type) {
	case PM2_TYPE_PERMEDIA2V:
		pm2v_mnp(clk/2, &m, &n, &p);
K
Krzysztof Helt 已提交
454
		WAIT_FIFO(par, 12);
455 456 457 458 459 460 461
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, PM2VI_RD_MCLK_CONTROL >> 8);
		pm2v_RDAC_WR(par, PM2VI_RD_MCLK_CONTROL, 0);
		pm2v_RDAC_WR(par, PM2VI_RD_MCLK_PRESCALE, m);
		pm2v_RDAC_WR(par, PM2VI_RD_MCLK_FEEDBACK, n);
		pm2v_RDAC_WR(par, PM2VI_RD_MCLK_POSTSCALE, p);
		pm2v_RDAC_WR(par, PM2VI_RD_MCLK_CONTROL, 1);
		rmb();
K
Krzysztof Helt 已提交
462 463 464
		for (i = 256; i; i--)
			if (pm2v_RDAC_RD(par, PM2VI_RD_MCLK_CONTROL) & 2)
				break;
465 466 467 468 469 470 471 472 473 474 475
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0);
		break;
	case PM2_TYPE_PERMEDIA2:
		pm2_mnp(clk, &m, &n, &p);
		WAIT_FIFO(par, 10);
		pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_3, 6);
		pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_1, m);
		pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_2, n);
		pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_3, 8|p);
		pm2_RDAC_RD(par, PM2I_RD_MEMORY_CLOCK_STATUS);
		rmb();
K
Krzysztof Helt 已提交
476 477 478
		for (i = 256; i; i--)
			if (pm2_RD(par, PM2R_RD_INDEXED_DATA) & PM2F_PLL_LOCKED)
				break;
479 480
		break;
	}
L
Linus Torvalds 已提交
481 482
}

K
Krzysztof Helt 已提交
483
static void set_pixclock(struct pm2fb_par *par, u32 clk)
L
Linus Torvalds 已提交
484 485 486 487 488 489 490
{
	int i;
	unsigned char m, n, p;

	switch (par->type) {
	case PM2_TYPE_PERMEDIA2:
		pm2_mnp(clk, &m, &n, &p);
K
Krzysztof Helt 已提交
491
		WAIT_FIFO(par, 10);
L
Linus Torvalds 已提交
492 493 494 495 496 497
		pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A3, 0);
		pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A1, m);
		pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A2, n);
		pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A3, 8|p);
		pm2_RDAC_RD(par, PM2I_RD_PIXEL_CLOCK_STATUS);
		rmb();
K
Krzysztof Helt 已提交
498 499 500
		for (i = 256; i; i--)
			if (pm2_RD(par, PM2R_RD_INDEXED_DATA) & PM2F_PLL_LOCKED)
				break;
L
Linus Torvalds 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513
		break;
	case PM2_TYPE_PERMEDIA2V:
		pm2v_mnp(clk/2, &m, &n, &p);
		WAIT_FIFO(par, 8);
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, PM2VI_RD_CLK0_PRESCALE >> 8);
		pm2v_RDAC_WR(par, PM2VI_RD_CLK0_PRESCALE, m);
		pm2v_RDAC_WR(par, PM2VI_RD_CLK0_FEEDBACK, n);
		pm2v_RDAC_WR(par, PM2VI_RD_CLK0_POSTSCALE, p);
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0);
		break;
	}
}

K
Krzysztof Helt 已提交
514 515
static void set_video(struct pm2fb_par *p, u32 video)
{
L
Linus Torvalds 已提交
516
	u32 tmp;
K
Krzysztof Helt 已提交
517
	u32 vsync = video;
L
Linus Torvalds 已提交
518 519

	DPRINTK("video = 0x%x\n", video);
K
Krzysztof Helt 已提交
520

L
Linus Torvalds 已提交
521 522 523 524 525 526
	/*
	 * The hardware cursor needs +vsync to recognise vert retrace.
	 * We may not be using the hardware cursor, but the X Glint
	 * driver may well. So always set +hsync/+vsync and then set
	 * the RAMDAC to invert the sync if necessary.
	 */
K
Krzysztof Helt 已提交
527 528
	vsync &= ~(PM2F_HSYNC_MASK | PM2F_VSYNC_MASK);
	vsync |= PM2F_HSYNC_ACT_HIGH | PM2F_VSYNC_ACT_HIGH;
L
Linus Torvalds 已提交
529

530
	WAIT_FIFO(p, 3);
L
Linus Torvalds 已提交
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
	pm2_WR(p, PM2R_VIDEO_CONTROL, vsync);

	switch (p->type) {
	case PM2_TYPE_PERMEDIA2:
		tmp = PM2F_RD_PALETTE_WIDTH_8;
		if ((video & PM2F_HSYNC_MASK) == PM2F_HSYNC_ACT_LOW)
			tmp |= 4; /* invert hsync */
		if ((video & PM2F_VSYNC_MASK) == PM2F_VSYNC_ACT_LOW)
			tmp |= 8; /* invert vsync */
		pm2_RDAC_WR(p, PM2I_RD_MISC_CONTROL, tmp);
		break;
	case PM2_TYPE_PERMEDIA2V:
		tmp = 0;
		if ((video & PM2F_HSYNC_MASK) == PM2F_HSYNC_ACT_LOW)
			tmp |= 1; /* invert hsync */
		if ((video & PM2F_VSYNC_MASK) == PM2F_VSYNC_ACT_LOW)
			tmp |= 4; /* invert vsync */
		pm2v_RDAC_WR(p, PM2VI_RD_SYNC_CONTROL, tmp);
		break;
	}
}

/*
K
Krzysztof Helt 已提交
554 555 556
 *	pm2fb_check_var - Optional function. Validates a var passed in.
 *	@var: frame buffer variable screen structure
 *	@info: frame buffer structure that represents a single frame buffer
L
Linus Torvalds 已提交
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
 *
 *	Checks to see if the hardware supports the state requested by
 *	var passed in.
 *
 *	Returns negative errno on error, or zero on success.
 */
static int pm2fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
{
	u32 lpitch;

	if (var->bits_per_pixel != 8  && var->bits_per_pixel != 16 &&
	    var->bits_per_pixel != 24 && var->bits_per_pixel != 32) {
		DPRINTK("depth not supported: %u\n", var->bits_per_pixel);
		return -EINVAL;
	}

	if (var->xres != var->xres_virtual) {
K
Krzysztof Helt 已提交
574 575
		DPRINTK("virtual x resolution != "
			"physical x resolution not supported\n");
L
Linus Torvalds 已提交
576 577 578 579
		return -EINVAL;
	}

	if (var->yres > var->yres_virtual) {
K
Krzysztof Helt 已提交
580 581
		DPRINTK("virtual y resolution < "
			"physical y resolution not possible\n");
L
Linus Torvalds 已提交
582 583 584
		return -EINVAL;
	}

585 586 587 588 589
	/* permedia cannot blit over 2048 */
	if (var->yres_virtual > 2047) {
		var->yres_virtual = 2047;
	}

L
Linus Torvalds 已提交
590 591 592 593 594 595 596 597 598 599 600
	if (var->xoffset) {
		DPRINTK("xoffset not supported\n");
		return -EINVAL;
	}

	if ((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
		DPRINTK("interlace not supported\n");
		return -EINVAL;
	}

	var->xres = (var->xres + 15) & ~15; /* could sometimes be 8 */
K
Krzysztof Helt 已提交
601
	lpitch = var->xres * ((var->bits_per_pixel + 7) >> 3);
K
Krzysztof Helt 已提交
602

L
Linus Torvalds 已提交
603 604 605 606
	if (var->xres < 320 || var->xres > 1600) {
		DPRINTK("width not supported: %u\n", var->xres);
		return -EINVAL;
	}
K
Krzysztof Helt 已提交
607

L
Linus Torvalds 已提交
608 609 610 611
	if (var->yres < 200 || var->yres > 1200) {
		DPRINTK("height not supported: %u\n", var->yres);
		return -EINVAL;
	}
K
Krzysztof Helt 已提交
612

L
Linus Torvalds 已提交
613 614 615 616 617
	if (lpitch * var->yres_virtual > info->fix.smem_len) {
		DPRINTK("no memory for screen (%ux%ux%u)\n",
			var->xres, var->yres_virtual, var->bits_per_pixel);
		return -EINVAL;
	}
K
Krzysztof Helt 已提交
618

L
Linus Torvalds 已提交
619
	if (PICOS2KHZ(var->pixclock) > PM2_MAX_PIXCLOCK) {
K
Krzysztof Helt 已提交
620 621
		DPRINTK("pixclock too high (%ldKHz)\n",
			PICOS2KHZ(var->pixclock));
L
Linus Torvalds 已提交
622 623 624
		return -EINVAL;
	}

625 626
	var->transp.offset = 0;
	var->transp.length = 0;
K
Krzysztof Helt 已提交
627
	switch (var->bits_per_pixel) {
L
Linus Torvalds 已提交
628
	case 8:
K
Krzysztof Helt 已提交
629 630 631
		var->red.length = 8;
		var->green.length = 8;
		var->blue.length = 8;
L
Linus Torvalds 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
		break;
	case 16:
		var->red.offset   = 11;
		var->red.length   = 5;
		var->green.offset = 5;
		var->green.length = 6;
		var->blue.offset  = 0;
		var->blue.length  = 5;
		break;
	case 32:
		var->transp.offset = 24;
		var->transp.length = 8;
		var->red.offset	  = 16;
		var->green.offset = 8;
		var->blue.offset  = 0;
K
Krzysztof Helt 已提交
647 648 649
		var->red.length = 8;
		var->green.length = 8;
		var->blue.length = 8;
L
Linus Torvalds 已提交
650 651 652 653 654 655 656 657 658 659
		break;
	case 24:
#ifdef __BIG_ENDIAN
		var->red.offset   = 0;
		var->blue.offset  = 16;
#else
		var->red.offset   = 16;
		var->blue.offset  = 0;
#endif
		var->green.offset = 8;
K
Krzysztof Helt 已提交
660 661 662
		var->red.length = 8;
		var->green.length = 8;
		var->blue.length = 8;
L
Linus Torvalds 已提交
663 664
		break;
	}
K
Krzysztof Helt 已提交
665 666
	var->height = -1;
	var->width = -1;
K
Krzysztof Helt 已提交
667

L
Linus Torvalds 已提交
668
	var->accel_flags = 0;	/* Can't mmap if this is on */
K
Krzysztof Helt 已提交
669

L
Linus Torvalds 已提交
670 671 672 673 674 675
	DPRINTK("Checking graphics mode at %dx%d depth %d\n",
		var->xres, var->yres, var->bits_per_pixel);
	return 0;
}

/**
K
Krzysztof Helt 已提交
676 677
 *	pm2fb_set_par - Alters the hardware state.
 *	@info: frame buffer structure that represents a single frame buffer
L
Linus Torvalds 已提交
678 679 680 681 682 683
 *
 *	Using the fb_var_screeninfo in fb_info we set the resolution of the
 *	this particular framebuffer.
 */
static int pm2fb_set_par(struct fb_info *info)
{
684
	struct pm2fb_par *par = info->par;
L
Linus Torvalds 已提交
685
	u32 pixclock;
K
Krzysztof Helt 已提交
686 687 688
	u32 width = (info->var.xres_virtual + 7) & ~7;
	u32 height = info->var.yres_virtual;
	u32 depth = (info->var.bits_per_pixel + 7) & ~7;
L
Linus Torvalds 已提交
689 690 691 692 693 694 695 696 697
	u32 hsstart, hsend, hbend, htotal;
	u32 vsstart, vsend, vbend, vtotal;
	u32 stride;
	u32 base;
	u32 video = 0;
	u32 clrmode = PM2F_RD_COLOR_MODE_RGB | PM2F_RD_GUI_ACTIVE;
	u32 txtmap = 0;
	u32 pixsize = 0;
	u32 clrformat = 0;
698
	u32 misc = 1; /* 8-bit DAC */
K
Krzysztof Helt 已提交
699
	u32 xres = (info->var.xres + 31) & ~31;
L
Linus Torvalds 已提交
700 701 702 703 704
	int data64;

	reset_card(par);
	reset_config(par);
	clear_palette(par);
K
Krzysztof Helt 已提交
705
	if (par->memclock)
L
Linus Torvalds 已提交
706
		set_memclock(par, par->memclock);
K
Krzysztof Helt 已提交
707

L
Linus Torvalds 已提交
708 709 710 711 712 713 714 715
	depth = (depth > 32) ? 32 : depth;
	data64 = depth > 8 || par->type == PM2_TYPE_PERMEDIA2V;

	pixclock = PICOS2KHZ(info->var.pixclock);
	if (pixclock > PM2_MAX_PIXCLOCK) {
		DPRINTK("pixclock too high (%uKHz)\n", pixclock);
		return -EINVAL;
	}
K
Krzysztof Helt 已提交
716

L
Linus Torvalds 已提交
717 718 719 720 721 722 723 724
	hsstart = to3264(info->var.right_margin, depth, data64);
	hsend = hsstart + to3264(info->var.hsync_len, depth, data64);
	hbend = hsend + to3264(info->var.left_margin, depth, data64);
	htotal = to3264(xres, depth, data64) + hbend - 1;
	vsstart = (info->var.lower_margin)
		? info->var.lower_margin - 1
		: 0;	/* FIXME! */
	vsend = info->var.lower_margin + info->var.vsync_len - 1;
K
Krzysztof Helt 已提交
725 726
	vbend = info->var.lower_margin + info->var.vsync_len +
		info->var.upper_margin;
L
Linus Torvalds 已提交
727 728 729 730 731
	vtotal = info->var.yres + vbend - 1;
	stride = to3264(width, depth, 1);
	base = to3264(info->var.yoffset * xres + info->var.xoffset, depth, 1);
	if (data64)
		video |= PM2F_DATA_64_ENABLE;
K
Krzysztof Helt 已提交
732

L
Linus Torvalds 已提交
733 734 735 736 737 738
	if (info->var.sync & FB_SYNC_HOR_HIGH_ACT) {
		if (lowhsync) {
			DPRINTK("ignoring +hsync, using -hsync.\n");
			video |= PM2F_HSYNC_ACT_LOW;
		} else
			video |= PM2F_HSYNC_ACT_HIGH;
K
Krzysztof Helt 已提交
739
	} else
L
Linus Torvalds 已提交
740
		video |= PM2F_HSYNC_ACT_LOW;
K
Krzysztof Helt 已提交
741

L
Linus Torvalds 已提交
742 743 744 745 746 747
	if (info->var.sync & FB_SYNC_VERT_HIGH_ACT) {
		if (lowvsync) {
			DPRINTK("ignoring +vsync, using -vsync.\n");
			video |= PM2F_VSYNC_ACT_LOW;
		} else
			video |= PM2F_VSYNC_ACT_HIGH;
K
Krzysztof Helt 已提交
748
	} else
L
Linus Torvalds 已提交
749
		video |= PM2F_VSYNC_ACT_LOW;
K
Krzysztof Helt 已提交
750

K
Krzysztof Helt 已提交
751
	if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
L
Linus Torvalds 已提交
752 753 754
		DPRINTK("interlaced not supported\n");
		return -EINVAL;
	}
K
Krzysztof Helt 已提交
755
	if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE)
L
Linus Torvalds 已提交
756
		video |= PM2F_LINE_DOUBLE;
K
Krzysztof Helt 已提交
757
	if ((info->var.activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW)
L
Linus Torvalds 已提交
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
		video |= PM2F_VIDEO_ENABLE;
	par->video = video;

	info->fix.visual =
		(depth == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
	info->fix.line_length = info->var.xres * depth / 8;
	info->cmap.len = 256;

	/*
	 * Settings calculated. Now write them out.
	 */
	if (par->type == PM2_TYPE_PERMEDIA2V) {
		WAIT_FIFO(par, 1);
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0);
	}
K
Krzysztof Helt 已提交
773

L
Linus Torvalds 已提交
774
	set_aperture(par, depth);
K
Krzysztof Helt 已提交
775

L
Linus Torvalds 已提交
776 777 778 779 780
	mb();
	WAIT_FIFO(par, 19);
	switch (depth) {
	case 8:
		pm2_WR(par, PM2R_FB_READ_PIXEL, 0);
781
		clrformat = 0x2e;
L
Linus Torvalds 已提交
782 783 784 785 786 787 788
		break;
	case 16:
		pm2_WR(par, PM2R_FB_READ_PIXEL, 1);
		clrmode |= PM2F_RD_TRUECOLOR | PM2F_RD_PIXELFORMAT_RGB565;
		txtmap = PM2F_TEXTEL_SIZE_16;
		pixsize = 1;
		clrformat = 0x70;
789
		misc |= 8;
L
Linus Torvalds 已提交
790 791 792 793 794 795 796
		break;
	case 32:
		pm2_WR(par, PM2R_FB_READ_PIXEL, 2);
		clrmode |= PM2F_RD_TRUECOLOR | PM2F_RD_PIXELFORMAT_RGBA8888;
		txtmap = PM2F_TEXTEL_SIZE_32;
		pixsize = 2;
		clrformat = 0x20;
797
		misc |= 8;
L
Linus Torvalds 已提交
798 799 800 801 802 803 804
		break;
	case 24:
		pm2_WR(par, PM2R_FB_READ_PIXEL, 4);
		clrmode |= PM2F_RD_TRUECOLOR | PM2F_RD_PIXELFORMAT_RGB888;
		txtmap = PM2F_TEXTEL_SIZE_24;
		pixsize = 4;
		clrformat = 0x20;
805
		misc |= 8;
L
Linus Torvalds 已提交
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
		break;
	}
	pm2_WR(par, PM2R_FB_WRITE_MODE, PM2F_FB_WRITE_ENABLE);
	pm2_WR(par, PM2R_FB_READ_MODE, partprod(xres));
	pm2_WR(par, PM2R_LB_READ_MODE, partprod(xres));
	pm2_WR(par, PM2R_TEXTURE_MAP_FORMAT, txtmap | partprod(xres));
	pm2_WR(par, PM2R_H_TOTAL, htotal);
	pm2_WR(par, PM2R_HS_START, hsstart);
	pm2_WR(par, PM2R_HS_END, hsend);
	pm2_WR(par, PM2R_HG_END, hbend);
	pm2_WR(par, PM2R_HB_END, hbend);
	pm2_WR(par, PM2R_V_TOTAL, vtotal);
	pm2_WR(par, PM2R_VS_START, vsstart);
	pm2_WR(par, PM2R_VS_END, vsend);
	pm2_WR(par, PM2R_VB_END, vbend);
	pm2_WR(par, PM2R_SCREEN_STRIDE, stride);
	wmb();
	pm2_WR(par, PM2R_WINDOW_ORIGIN, 0);
	pm2_WR(par, PM2R_SCREEN_SIZE, (height << 16) | width);
	pm2_WR(par, PM2R_SCISSOR_MODE, PM2F_SCREEN_SCISSOR_ENABLE);
	wmb();
	pm2_WR(par, PM2R_SCREEN_BASE, base);
	wmb();
	set_video(par, video);
830
	WAIT_FIFO(par, 10);
L
Linus Torvalds 已提交
831 832 833
	switch (par->type) {
	case PM2_TYPE_PERMEDIA2:
		pm2_RDAC_WR(par, PM2I_RD_COLOR_MODE, clrmode);
K
Krzysztof Helt 已提交
834
		pm2_RDAC_WR(par, PM2I_RD_COLOR_KEY_CONTROL,
K
Krzysztof Helt 已提交
835
				(depth == 8) ? 0 : PM2F_COLOR_KEY_TEST_OFF);
L
Linus Torvalds 已提交
836 837
		break;
	case PM2_TYPE_PERMEDIA2V:
838
		pm2v_RDAC_WR(par, PM2VI_RD_DAC_CONTROL, 0);
L
Linus Torvalds 已提交
839 840
		pm2v_RDAC_WR(par, PM2VI_RD_PIXEL_SIZE, pixsize);
		pm2v_RDAC_WR(par, PM2VI_RD_COLOR_FORMAT, clrformat);
841 842
		pm2v_RDAC_WR(par, PM2VI_RD_MISC_CONTROL, misc);
		pm2v_RDAC_WR(par, PM2VI_RD_OVERLAY_KEY, 0);
L
Linus Torvalds 已提交
843 844 845 846 847
		break;
	}
	set_pixclock(par, pixclock);
	DPRINTK("Setting graphics mode at %dx%d depth %d\n",
		info->var.xres, info->var.yres, info->var.bits_per_pixel);
K
Krzysztof Helt 已提交
848
	return 0;
L
Linus Torvalds 已提交
849 850 851
}

/**
K
Krzysztof Helt 已提交
852 853 854 855
 *	pm2fb_setcolreg - 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
L
Linus Torvalds 已提交
856
 *	@blue:  The blue value which can be up to 16 bits wide.
K
Krzysztof Helt 已提交
857 858 859 860 861
 *	@transp: If supported the alpha value which can be up to 16 bits wide.
 *	@info: frame buffer info structure
 *
 *	Set a single color register. The values supplied have a 16 bit
 *	magnitude which needs to be scaled in this function for the hardware.
L
Linus Torvalds 已提交
862
 *	Pretty much a direct lift from tdfxfb.c.
K
Krzysztof Helt 已提交
863
 *
L
Linus Torvalds 已提交
864 865 866 867 868 869
 *	Returns negative errno on error, or zero on success.
 */
static int pm2fb_setcolreg(unsigned regno, unsigned red, unsigned green,
			   unsigned blue, unsigned transp,
			   struct fb_info *info)
{
870
	struct pm2fb_par *par = info->par;
L
Linus Torvalds 已提交
871 872

	if (regno >= info->cmap.len)  /* no. of hw registers */
873
		return -EINVAL;
L
Linus Torvalds 已提交
874 875 876 877 878
	/*
	 * Program hardware... do anything you want with transp
	 */

	/* grayscale works only partially under directcolor */
K
Krzysztof Helt 已提交
879 880
	/* grayscale = 0.30*R + 0.59*G + 0.11*B */
	if (info->var.grayscale)
L
Linus Torvalds 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893
		red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;

	/* Directcolor:
	 *   var->{color}.offset contains start of bitfield
	 *   var->{color}.length contains length of bitfield
	 *   {hardwarespecific} contains width of DAC
	 *   cmap[X] is programmed to
	 *   (X << red.offset) | (X << green.offset) | (X << blue.offset)
	 *   RAMDAC[X] is programmed to (red, green, blue)
	 *
	 * Pseudocolor:
	 *    uses offset = 0 && length = DAC register width.
	 *    var->{color}.offset is 0
894
	 *    var->{color}.length contains width of DAC
L
Linus Torvalds 已提交
895 896 897 898 899 900 901 902 903 904 905
	 *    cmap is not used
	 *    DAC[X] is programmed to (red, green, blue)
	 * Truecolor:
	 *    does not use RAMDAC (usually has 3 of them).
	 *    var->{color}.offset contains start of bitfield
	 *    var->{color}.length contains length of bitfield
	 *    cmap is programmed to
	 *    (red << red.offset) | (green << green.offset) |
	 *    (blue << blue.offset) | (transp << transp.offset)
	 *    RAMDAC does not exist
	 */
K
Krzysztof Helt 已提交
906
#define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF -(val)) >> 16)
L
Linus Torvalds 已提交
907 908 909 910 911 912 913 914 915
	switch (info->fix.visual) {
	case FB_VISUAL_TRUECOLOR:
	case FB_VISUAL_PSEUDOCOLOR:
		red = CNVT_TOHW(red, info->var.red.length);
		green = CNVT_TOHW(green, info->var.green.length);
		blue = CNVT_TOHW(blue, info->var.blue.length);
		transp = CNVT_TOHW(transp, info->var.transp.length);
		break;
	case FB_VISUAL_DIRECTCOLOR:
K
Krzysztof Helt 已提交
916 917 918
		/* example here assumes 8 bit DAC. Might be different
		 * for your hardware */
		red = CNVT_TOHW(red, 8);
L
Linus Torvalds 已提交
919 920 921 922 923 924 925 926 927 928 929 930
		green = CNVT_TOHW(green, 8);
		blue = CNVT_TOHW(blue, 8);
		/* hey, there is bug in transp handling... */
		transp = CNVT_TOHW(transp, 8);
		break;
	}
#undef CNVT_TOHW
	/* Truecolor has hardware independent palette */
	if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
		u32 v;

		if (regno >= 16)
931
			return -EINVAL;
L
Linus Torvalds 已提交
932 933 934 935 936 937 938 939

		v = (red << info->var.red.offset) |
			(green << info->var.green.offset) |
			(blue << info->var.blue.offset) |
			(transp << info->var.transp.offset);

		switch (info->var.bits_per_pixel) {
		case 8:
K
Krzysztof Helt 已提交
940 941
			break;
		case 16:
L
Linus Torvalds 已提交
942
		case 24:
K
Krzysztof Helt 已提交
943 944
		case 32:
			par->palette[regno] = v;
L
Linus Torvalds 已提交
945 946 947
			break;
		}
		return 0;
K
Krzysztof Helt 已提交
948
	} else if (info->fix.visual == FB_VISUAL_PSEUDOCOLOR)
L
Linus Torvalds 已提交
949 950 951 952 953 954
		set_color(par, regno, red, green, blue);

	return 0;
}

/**
K
Krzysztof Helt 已提交
955 956 957
 *	pm2fb_pan_display - Pans the display.
 *	@var: frame buffer variable screen structure
 *	@info: frame buffer structure that represents a single frame buffer
L
Linus Torvalds 已提交
958 959
 *
 *	Pan (or wrap, depending on the `vmode' field) the display using the
K
Krzysztof Helt 已提交
960 961
 *	`xoffset' and `yoffset' fields of the `var' structure.
 *	If the values don't fit, return -EINVAL.
L
Linus Torvalds 已提交
962
 *
K
Krzysztof Helt 已提交
963
 *	Returns negative errno on error, or zero on success.
L
Linus Torvalds 已提交
964 965 966 967 968
 *
 */
static int pm2fb_pan_display(struct fb_var_screeninfo *var,
			     struct fb_info *info)
{
969
	struct pm2fb_par *p = info->par;
L
Linus Torvalds 已提交
970
	u32 base;
971 972
	u32 depth = (info->var.bits_per_pixel + 7) & ~7;
	u32 xres = (info->var.xres + 31) & ~31;
L
Linus Torvalds 已提交
973 974 975 976

	depth = (depth > 32) ? 32 : depth;
	base = to3264(var->yoffset * xres + var->xoffset, depth, 1);
	WAIT_FIFO(p, 1);
K
Krzysztof Helt 已提交
977
	pm2_WR(p, PM2R_SCREEN_BASE, base);
L
Linus Torvalds 已提交
978 979 980 981
	return 0;
}

/**
K
Krzysztof Helt 已提交
982 983 984
 *	pm2fb_blank - Blanks the display.
 *	@blank_mode: the blank mode we want.
 *	@info: frame buffer structure that represents a single frame buffer
L
Linus Torvalds 已提交
985
 *
K
Krzysztof Helt 已提交
986 987 988 989 990 991 992
 *	Blank the screen if blank_mode != 0, else unblank. Return 0 if
 *	blanking succeeded, != 0 if un-/blanking failed due to e.g. a
 *	video mode which doesn't support it. Implements VESA suspend
 *	and powerdown modes on hardware that supports disabling hsync/vsync:
 *	blank_mode == 2: suspend vsync
 *	blank_mode == 3: suspend hsync
 *	blank_mode == 4: powerdown
L
Linus Torvalds 已提交
993
 *
K
Krzysztof Helt 已提交
994
 *	Returns negative errno on error, or zero on success.
L
Linus Torvalds 已提交
995 996 997 998
 *
 */
static int pm2fb_blank(int blank_mode, struct fb_info *info)
{
999
	struct pm2fb_par *par = info->par;
L
Linus Torvalds 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
	u32 video = par->video;

	DPRINTK("blank_mode %d\n", blank_mode);

	switch (blank_mode) {
	case FB_BLANK_UNBLANK:
		/* Screen: On */
		video |= PM2F_VIDEO_ENABLE;
		break;
	case FB_BLANK_NORMAL:
		/* Screen: Off */
		video &= ~PM2F_VIDEO_ENABLE;
		break;
	case FB_BLANK_VSYNC_SUSPEND:
		/* VSync: Off */
K
Krzysztof Helt 已提交
1015
		video &= ~(PM2F_VSYNC_MASK | PM2F_BLANK_LOW);
L
Linus Torvalds 已提交
1016 1017 1018
		break;
	case FB_BLANK_HSYNC_SUSPEND:
		/* HSync: Off */
K
Krzysztof Helt 已提交
1019
		video &= ~(PM2F_HSYNC_MASK | PM2F_BLANK_LOW);
L
Linus Torvalds 已提交
1020 1021 1022
		break;
	case FB_BLANK_POWERDOWN:
		/* HSync: Off, VSync: Off */
K
Krzysztof Helt 已提交
1023
		video &= ~(PM2F_VSYNC_MASK | PM2F_HSYNC_MASK | PM2F_BLANK_LOW);
L
Linus Torvalds 已提交
1024 1025 1026 1027 1028 1029
		break;
	}
	set_video(par, video);
	return 0;
}

A
Antonino A. Daplas 已提交
1030 1031 1032 1033 1034 1035 1036 1037 1038
static int pm2fb_sync(struct fb_info *info)
{
	struct pm2fb_par *par = info->par;

	WAIT_FIFO(par, 1);
	pm2_WR(par, PM2R_SYNC, 0);
	mb();
	do {
		while (pm2_RD(par, PM2R_OUT_FIFO_WORDS) == 0)
1039
			cpu_relax();
A
Antonino A. Daplas 已提交
1040 1041 1042 1043 1044
	} while (pm2_RD(par, PM2R_OUT_FIFO) != PM2TAG(PM2R_SYNC));

	return 0;
}

K
Krzysztof Helt 已提交
1045
static void pm2fb_fillrect(struct fb_info *info,
1046 1047
				const struct fb_fillrect *region)
{
K
Krzysztof Helt 已提交
1048
	struct pm2fb_par *par = info->par;
1049 1050 1051
	struct fb_fillrect modded;
	int vxres, vyres;
	u32 color = (info->fix.visual == FB_VISUAL_TRUECOLOR) ?
K
Krzysztof Helt 已提交
1052
		((u32 *)info->pseudo_palette)[region->color] : region->color;
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066

	if (info->state != FBINFO_STATE_RUNNING)
		return;
	if ((info->flags & FBINFO_HWACCEL_DISABLED) ||
		region->rop != ROP_COPY ) {
		cfb_fillrect(info, region);
		return;
	}

	vxres = info->var.xres_virtual;
	vyres = info->var.yres_virtual;

	memcpy(&modded, region, sizeof(struct fb_fillrect));

K
Krzysztof Helt 已提交
1067 1068
	if (!modded.width || !modded.height ||
	    modded.dx >= vxres || modded.dy >= vyres)
1069 1070
		return;

K
Krzysztof Helt 已提交
1071
	if (modded.dx + modded.width  > vxres)
1072
		modded.width  = vxres - modded.dx;
K
Krzysztof Helt 已提交
1073
	if (modded.dy + modded.height > vyres)
1074 1075
		modded.height = vyres - modded.dy;

K
Krzysztof Helt 已提交
1076
	if (info->var.bits_per_pixel == 8)
1077
		color |= color << 8;
K
Krzysztof Helt 已提交
1078
	if (info->var.bits_per_pixel <= 16)
1079 1080
		color |= color << 16;

K
Krzysztof Helt 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
	WAIT_FIFO(par, 3);
	pm2_WR(par, PM2R_CONFIG, PM2F_CONFIG_FB_WRITE_ENABLE);
	pm2_WR(par, PM2R_RECTANGLE_ORIGIN, (modded.dy << 16) | modded.dx);
	pm2_WR(par, PM2R_RECTANGLE_SIZE, (modded.height << 16) | modded.width);
	if (info->var.bits_per_pixel != 24) {
		WAIT_FIFO(par, 2);
		pm2_WR(par, PM2R_FB_BLOCK_COLOR, color);
		wmb();
		pm2_WR(par, PM2R_RENDER,
				PM2F_RENDER_RECTANGLE | PM2F_RENDER_FASTFILL);
	} else {
1092 1093 1094 1095 1096
		WAIT_FIFO(par, 4);
		pm2_WR(par, PM2R_COLOR_DDA_MODE, 1);
		pm2_WR(par, PM2R_CONSTANT_COLOR, color);
		wmb();
		pm2_WR(par, PM2R_RENDER,
K
Krzysztof Helt 已提交
1097 1098
				PM2F_RENDER_RECTANGLE |
				PM2F_INCREASE_X | PM2F_INCREASE_Y );
1099
		pm2_WR(par, PM2R_COLOR_DDA_MODE, 0);
K
Krzysztof Helt 已提交
1100
	}
1101 1102 1103 1104 1105
}

static void pm2fb_copyarea(struct fb_info *info,
				const struct fb_copyarea *area)
{
K
Krzysztof Helt 已提交
1106
	struct pm2fb_par *par = info->par;
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
	struct fb_copyarea modded;
	u32 vxres, vyres;

	if (info->state != FBINFO_STATE_RUNNING)
		return;
	if (info->flags & FBINFO_HWACCEL_DISABLED) {
		cfb_copyarea(info, area);
		return;
	}

	memcpy(&modded, area, sizeof(struct fb_copyarea));

	vxres = info->var.xres_virtual;
	vyres = info->var.yres_virtual;

K
Krzysztof Helt 已提交
1122 1123 1124
	if (!modded.width || !modded.height ||
	    modded.sx >= vxres || modded.sy >= vyres ||
	    modded.dx >= vxres || modded.dy >= vyres)
1125 1126
		return;

K
Krzysztof Helt 已提交
1127
	if (modded.sx + modded.width > vxres)
1128
		modded.width = vxres - modded.sx;
K
Krzysztof Helt 已提交
1129
	if (modded.dx + modded.width > vxres)
1130
		modded.width = vxres - modded.dx;
K
Krzysztof Helt 已提交
1131
	if (modded.sy + modded.height > vyres)
1132
		modded.height = vyres - modded.sy;
K
Krzysztof Helt 已提交
1133
	if (modded.dy + modded.height > vyres)
1134 1135
		modded.height = vyres - modded.dy;

K
Krzysztof Helt 已提交
1136 1137 1138 1139
	WAIT_FIFO(par, 5);
	pm2_WR(par, PM2R_CONFIG, PM2F_CONFIG_FB_WRITE_ENABLE |
		PM2F_CONFIG_FB_READ_SOURCE_ENABLE);
	pm2_WR(par, PM2R_FB_SOURCE_DELTA,
K
Krzysztof Helt 已提交
1140 1141
			((modded.sy - modded.dy) & 0xfff) << 16 |
			((modded.sx - modded.dx) & 0xfff));
K
Krzysztof Helt 已提交
1142 1143 1144 1145
	pm2_WR(par, PM2R_RECTANGLE_ORIGIN, (modded.dy << 16) | modded.dx);
	pm2_WR(par, PM2R_RECTANGLE_SIZE, (modded.height << 16) | modded.width);
	wmb();
	pm2_WR(par, PM2R_RENDER, PM2F_RENDER_RECTANGLE |
K
Krzysztof Helt 已提交
1146 1147
				(modded.dx < modded.sx ? PM2F_INCREASE_X : 0) |
				(modded.dy < modded.sy ? PM2F_INCREASE_Y : 0));
1148 1149
}

K
Krzysztof Helt 已提交
1150 1151 1152 1153 1154
static void pm2fb_imageblit(struct fb_info *info, const struct fb_image *image)
{
	struct pm2fb_par *par = info->par;
	u32 height = image->height;
	u32 fgx, bgx;
K
Krzysztof Helt 已提交
1155
	const u32 *src = (const u32 *)image->data;
K
Krzysztof Helt 已提交
1156
	u32 xres = (info->var.xres + 31) & ~31;
K
Krzysztof Helt 已提交
1157 1158 1159 1160 1161
	int raster_mode = 1; /* invert bits */

#ifdef __LITTLE_ENDIAN
	raster_mode |= 3 << 7; /* reverse byte order */
#endif
K
Krzysztof Helt 已提交
1162 1163 1164 1165 1166 1167 1168 1169

	if (info->state != FBINFO_STATE_RUNNING)
		return;
	if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1) {
		cfb_imageblit(info, image);
		return;
	}
	switch (info->fix.visual) {
K
Krzysztof Helt 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178
	case FB_VISUAL_PSEUDOCOLOR:
		fgx = image->fg_color;
		bgx = image->bg_color;
		break;
	case FB_VISUAL_TRUECOLOR:
	default:
		fgx = par->palette[image->fg_color];
		bgx = par->palette[image->bg_color];
		break;
K
Krzysztof Helt 已提交
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
	}
	if (info->var.bits_per_pixel == 8) {
		fgx |= fgx << 8;
		bgx |= bgx << 8;
	}
	if (info->var.bits_per_pixel <= 16) {
		fgx |= fgx << 16;
		bgx |= bgx << 16;
	}

	WAIT_FIFO(par, 13);
	pm2_WR(par, PM2R_FB_READ_MODE, partprod(xres));
	pm2_WR(par, PM2R_SCISSOR_MIN_XY,
			((image->dy & 0xfff) << 16) | (image->dx & 0x0fff));
	pm2_WR(par, PM2R_SCISSOR_MAX_XY,
			(((image->dy + image->height) & 0x0fff) << 16) |
			((image->dx + image->width) & 0x0fff));
	pm2_WR(par, PM2R_SCISSOR_MODE, 1);
	/* GXcopy & UNIT_ENABLE */
K
Krzysztof Helt 已提交
1198
	pm2_WR(par, PM2R_LOGICAL_OP_MODE, (0x3 << 1) | 1);
K
Krzysztof Helt 已提交
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
	pm2_WR(par, PM2R_RECTANGLE_ORIGIN,
			((image->dy & 0xfff) << 16) | (image->dx & 0x0fff));
	pm2_WR(par, PM2R_RECTANGLE_SIZE,
			((image->height & 0x0fff) << 16) |
			((image->width) & 0x0fff));
	if (info->var.bits_per_pixel == 24) {
		pm2_WR(par, PM2R_COLOR_DDA_MODE, 1);
		/* clear area */
		pm2_WR(par, PM2R_CONSTANT_COLOR, bgx);
		pm2_WR(par, PM2R_RENDER,
			PM2F_RENDER_RECTANGLE |
K
Krzysztof Helt 已提交
1210
			PM2F_INCREASE_X | PM2F_INCREASE_Y);
K
Krzysztof Helt 已提交
1211 1212
		/* BitMapPackEachScanline */
		pm2_WR(par, PM2R_RASTERIZER_MODE, raster_mode | (1 << 9));
K
Krzysztof Helt 已提交
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
		pm2_WR(par, PM2R_CONSTANT_COLOR, fgx);
		pm2_WR(par, PM2R_RENDER,
			PM2F_RENDER_RECTANGLE |
			PM2F_INCREASE_X | PM2F_INCREASE_Y |
			PM2F_RENDER_SYNC_ON_BIT_MASK);
	} else {
		pm2_WR(par, PM2R_COLOR_DDA_MODE, 0);
		/* clear area */
		pm2_WR(par, PM2R_FB_BLOCK_COLOR, bgx);
		pm2_WR(par, PM2R_RENDER,
			PM2F_RENDER_RECTANGLE |
			PM2F_RENDER_FASTFILL |
K
Krzysztof Helt 已提交
1225
			PM2F_INCREASE_X | PM2F_INCREASE_Y);
K
Krzysztof Helt 已提交
1226
		pm2_WR(par, PM2R_RASTERIZER_MODE, raster_mode);
K
Krzysztof Helt 已提交
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
		pm2_WR(par, PM2R_FB_BLOCK_COLOR, fgx);
		pm2_WR(par, PM2R_RENDER,
			PM2F_RENDER_RECTANGLE |
			PM2F_INCREASE_X | PM2F_INCREASE_Y |
			PM2F_RENDER_FASTFILL |
			PM2F_RENDER_SYNC_ON_BIT_MASK);
	}

	while (height--) {
		int width = ((image->width + 7) >> 3)
				+ info->pixmap.scan_align - 1;
		width >>= 2;
		WAIT_FIFO(par, width);
		while (width--) {
			pm2_WR(par, PM2R_BIT_MASK_PATTERN, *src);
			src++;
		}
	}
	WAIT_FIFO(par, 3);
	pm2_WR(par, PM2R_RASTERIZER_MODE, 0);
	pm2_WR(par, PM2R_COLOR_DDA_MODE, 0);
	pm2_WR(par, PM2R_SCISSOR_MODE, 0);
}

1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
/*
 *	Hardware cursor support.
 */
static const u8 cursor_bits_lookup[16] = {
	0x00, 0x40, 0x10, 0x50, 0x04, 0x44, 0x14, 0x54,
	0x01, 0x41, 0x11, 0x51, 0x05, 0x45, 0x15, 0x55
};

static int pm2vfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
{
	struct pm2fb_par *par = info->par;
1262
	u8 mode = PM2F_CURSORMODE_TYPE_X;
1263 1264
	int x = cursor->image.dx - info->var.xoffset;
	int y = cursor->image.dy - info->var.yoffset;
1265 1266 1267 1268 1269 1270

	if (cursor->enable)
		mode |= PM2F_CURSORMODE_CURSOR_ENABLE;

	pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_MODE, mode);

1271 1272 1273 1274 1275 1276 1277
	if (!cursor->enable)
		x = 2047;	/* push it outside display */
	pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_X_LOW, x & 0xff);
	pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_X_HIGH, (x >> 8) & 0xf);
	pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_Y_LOW, y & 0xff);
	pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_Y_HIGH, (y >> 8) & 0xf);

1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
	/*
	 * If the cursor is not be changed this means either we want the
	 * current cursor state (if enable is set) or we want to query what
	 * we can do with the cursor (if enable is not set)
	 */
	if (!cursor->set)
		return 0;

	if (cursor->set & FB_CUR_SETHOT) {
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_X_HOT,
			     cursor->hot.x & 0x3f);
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_Y_HOT,
			     cursor->hot.y & 0x3f);
	}

	if (cursor->set & FB_CUR_SETCMAP) {
		u32 fg_idx = cursor->image.fg_color;
		u32 bg_idx = cursor->image.bg_color;
		struct fb_cmap cmap = info->cmap;

		/* the X11 driver says one should use these color registers */
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, PM2VI_RD_CURSOR_PALETTE >> 8);
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 0,
			     cmap.red[bg_idx] >> 8 );
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 1,
			     cmap.green[bg_idx] >> 8 );
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 2,
			     cmap.blue[bg_idx] >> 8 );

		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 3,
			     cmap.red[fg_idx] >> 8 );
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 4,
			     cmap.green[fg_idx] >> 8 );
		pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 5,
			     cmap.blue[fg_idx] >> 8 );
		pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0);
	}

	if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) {
		u8 *bitmap = (u8 *)cursor->image.data;
		u8 *mask = (u8 *)cursor->mask;
		int i;
		int pos = PM2VI_RD_CURSOR_PATTERN;

		for (i = 0; i < cursor->image.height; i++) {
			int j = (cursor->image.width + 7) >> 3;
			int k = 8 - j;

			pm2_WR(par, PM2VR_RD_INDEX_HIGH, pos >> 8);

			for (; j > 0; j--) {
				u8 data = *bitmap ^ *mask;

				if (cursor->rop == ROP_COPY)
					data = *mask & *bitmap;
				/* Upper 4 bits of bitmap data */
				pm2v_RDAC_WR(par, pos++,
					cursor_bits_lookup[data >> 4] |
					(cursor_bits_lookup[*mask >> 4] << 1));
				/* Lower 4 bits of bitmap */
				pm2v_RDAC_WR(par, pos++,
					cursor_bits_lookup[data & 0xf] |
					(cursor_bits_lookup[*mask & 0xf] << 1));
				bitmap++;
				mask++;
			}
			for (; k > 0; k--) {
				pm2v_RDAC_WR(par, pos++, 0);
				pm2v_RDAC_WR(par, pos++, 0);
			}
		}

		while (pos < (1024 + PM2VI_RD_CURSOR_PATTERN)) {
			pm2_WR(par, PM2VR_RD_INDEX_HIGH, pos >> 8);
			pm2v_RDAC_WR(par, pos++, 0);
		}

		pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0);
	}
	return 0;
}

static int pm2fb_cursor(struct fb_info *info, struct fb_cursor *cursor)
{
	struct pm2fb_par *par = info->par;
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
	u8 mode;

	if (!hwcursor)
		return -EINVAL;	/* just to force soft_cursor() call */

	/* Too large of a cursor or wrong bpp :-( */
	if (cursor->image.width > 64 ||
	    cursor->image.height > 64 ||
	    cursor->image.depth > 1)
		return -EINVAL;
1373 1374 1375 1376

	if (par->type == PM2_TYPE_PERMEDIA2V)
		return pm2vfb_cursor(info, cursor);

1377
	mode = 0x40;
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
	if (cursor->enable)
		 mode = 0x43;

	pm2_RDAC_WR(par, PM2I_RD_CURSOR_CONTROL, mode);

	/*
	 * If the cursor is not be changed this means either we want the
	 * current cursor state (if enable is set) or we want to query what
	 * we can do with the cursor (if enable is not set)
	 */
	if (!cursor->set)
		return 0;

	if (cursor->set & FB_CUR_SETPOS) {
1392 1393
		int x = cursor->image.dx - info->var.xoffset + 63;
		int y = cursor->image.dy - info->var.yoffset + 63;
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477

		WAIT_FIFO(par, 4);
		pm2_WR(par, PM2R_RD_CURSOR_X_LSB, x & 0xff);
		pm2_WR(par, PM2R_RD_CURSOR_X_MSB, (x >> 8) & 0x7);
		pm2_WR(par, PM2R_RD_CURSOR_Y_LSB, y & 0xff);
		pm2_WR(par, PM2R_RD_CURSOR_Y_MSB, (y >> 8) & 0x7);
	}

	if (cursor->set & FB_CUR_SETCMAP) {
		u32 fg_idx = cursor->image.fg_color;
		u32 bg_idx = cursor->image.bg_color;

		WAIT_FIFO(par, 7);
		pm2_WR(par, PM2R_RD_CURSOR_COLOR_ADDRESS, 1);
		pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA,
			info->cmap.red[bg_idx] >> 8);
		pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA,
			info->cmap.green[bg_idx] >> 8);
		pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA,
			info->cmap.blue[bg_idx] >> 8);

		pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA,
			info->cmap.red[fg_idx] >> 8);
		pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA,
			info->cmap.green[fg_idx] >> 8);
		pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA,
			info->cmap.blue[fg_idx] >> 8);
	}

	if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) {
		u8 *bitmap = (u8 *)cursor->image.data;
		u8 *mask = (u8 *)cursor->mask;
		int i;

		WAIT_FIFO(par, 1);
		pm2_WR(par, PM2R_RD_PALETTE_WRITE_ADDRESS, 0);

		for (i = 0; i < cursor->image.height; i++) {
			int j = (cursor->image.width + 7) >> 3;
			int k = 8 - j;

			WAIT_FIFO(par, 8);
			for (; j > 0; j--) {
				u8 data = *bitmap ^ *mask;

				if (cursor->rop == ROP_COPY)
					data = *mask & *bitmap;
				/* bitmap data */
				pm2_WR(par, PM2R_RD_CURSOR_DATA, data);
				bitmap++;
				mask++;
			}
			for (; k > 0; k--)
				pm2_WR(par, PM2R_RD_CURSOR_DATA, 0);
		}
		for (; i < 64; i++) {
			int j = 8;
			WAIT_FIFO(par, 8);
			while (j-- > 0)
				pm2_WR(par, PM2R_RD_CURSOR_DATA, 0);
		}

		mask = (u8 *)cursor->mask;
		for (i = 0; i < cursor->image.height; i++) {
			int j = (cursor->image.width + 7) >> 3;
			int k = 8 - j;

			WAIT_FIFO(par, 8);
			for (; j > 0; j--) {
				/* mask */
				pm2_WR(par, PM2R_RD_CURSOR_DATA, *mask);
				mask++;
			}
			for (; k > 0; k--)
				pm2_WR(par, PM2R_RD_CURSOR_DATA, 0);
		}
		for (; i < 64; i++) {
			int j = 8;
			WAIT_FIFO(par, 8);
			while (j-- > 0)
				pm2_WR(par, PM2R_RD_CURSOR_DATA, 0);
		}
	}
	return 0;
1478 1479
}

L
Linus Torvalds 已提交
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
/* ------------ Hardware Independent Functions ------------ */

/*
 *  Frame buffer operations
 */

static struct fb_ops pm2fb_ops = {
	.owner		= THIS_MODULE,
	.fb_check_var	= pm2fb_check_var,
	.fb_set_par	= pm2fb_set_par,
	.fb_setcolreg	= pm2fb_setcolreg,
	.fb_blank	= pm2fb_blank,
	.fb_pan_display	= pm2fb_pan_display,
1493 1494
	.fb_fillrect	= pm2fb_fillrect,
	.fb_copyarea	= pm2fb_copyarea,
K
Krzysztof Helt 已提交
1495
	.fb_imageblit	= pm2fb_imageblit,
A
Antonino A. Daplas 已提交
1496
	.fb_sync	= pm2fb_sync,
1497
	.fb_cursor	= pm2fb_cursor,
L
Linus Torvalds 已提交
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
};

/*
 * PCI stuff
 */


/**
 * Device initialisation
 *
 * Initialise and allocate resource for PCI device.
 *
 * @param	pdev	PCI device.
 * @param	id	PCI device ID.
 */
1513
static int pm2fb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
L
Linus Torvalds 已提交
1514 1515 1516
{
	struct pm2fb_par *default_par;
	struct fb_info *info;
K
Krzysztof Helt 已提交
1517 1518
	int err;
	int retval = -ENXIO;
L
Linus Torvalds 已提交
1519 1520

	err = pci_enable_device(pdev);
K
Krzysztof Helt 已提交
1521
	if (err) {
L
Linus Torvalds 已提交
1522 1523 1524 1525
		printk(KERN_WARNING "pm2fb: Can't enable pdev: %d\n", err);
		return err;
	}

1526
	info = framebuffer_alloc(sizeof(struct pm2fb_par), &pdev->dev);
K
Krzysztof Helt 已提交
1527
	if (!info)
L
Linus Torvalds 已提交
1528
		return -ENOMEM;
1529
	default_par = info->par;
L
Linus Torvalds 已提交
1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557

	switch (pdev->device) {
	case  PCI_DEVICE_ID_TI_TVP4020:
		strcpy(pm2fb_fix.id, "TVP4020");
		default_par->type = PM2_TYPE_PERMEDIA2;
		break;
	case  PCI_DEVICE_ID_3DLABS_PERMEDIA2:
		strcpy(pm2fb_fix.id, "Permedia2");
		default_par->type = PM2_TYPE_PERMEDIA2;
		break;
	case  PCI_DEVICE_ID_3DLABS_PERMEDIA2V:
		strcpy(pm2fb_fix.id, "Permedia2v");
		default_par->type = PM2_TYPE_PERMEDIA2V;
		break;
	}

	pm2fb_fix.mmio_start = pci_resource_start(pdev, 0);
	pm2fb_fix.mmio_len = PM2_REGS_SIZE;

#if defined(__BIG_ENDIAN)
	/*
	 * PM2 has a 64k register file, mapped twice in 128k. Lower
	 * map is little-endian, upper map is big-endian.
	 */
	pm2fb_fix.mmio_start += PM2_REGS_SIZE;
	DPRINTK("Adjusting register base for big-endian.\n");
#endif
	DPRINTK("Register base at 0x%lx\n", pm2fb_fix.mmio_start);
K
Krzysztof Helt 已提交
1558

L
Linus Torvalds 已提交
1559
	/* Registers - request region and map it. */
K
Krzysztof Helt 已提交
1560 1561
	if (!request_mem_region(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len,
				"pm2fb regbase")) {
L
Linus Torvalds 已提交
1562 1563 1564 1565 1566
		printk(KERN_WARNING "pm2fb: Can't reserve regbase.\n");
		goto err_exit_neither;
	}
	default_par->v_regs =
		ioremap_nocache(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len);
K
Krzysztof Helt 已提交
1567
	if (!default_par->v_regs) {
L
Linus Torvalds 已提交
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
		printk(KERN_WARNING "pm2fb: Can't remap %s register area.\n",
		       pm2fb_fix.id);
		release_mem_region(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len);
		goto err_exit_neither;
	}

	/* Stash away memory register info for use when we reset the board */
	default_par->mem_control = pm2_RD(default_par, PM2R_MEM_CONTROL);
	default_par->boot_address = pm2_RD(default_par, PM2R_BOOT_ADDRESS);
	default_par->mem_config = pm2_RD(default_par, PM2R_MEM_CONFIG);
	DPRINTK("MemControl 0x%x BootAddress 0x%x MemConfig 0x%x\n",
		default_par->mem_control, default_par->boot_address,
		default_par->mem_config);

K
Krzysztof Helt 已提交
1582
	if (default_par->mem_control == 0 &&
1583
		default_par->boot_address == 0x31 &&
1584
		default_par->mem_config == 0x259fffff) {
1585
		default_par->memclock = CVPPC_MEMCLOCK;
K
Krzysztof Helt 已提交
1586 1587 1588
		default_par->mem_control = 0;
		default_par->boot_address = 0x20;
		default_par->mem_config = 0xe6002021;
1589 1590
		if (pdev->subsystem_vendor == 0x1048 &&
			pdev->subsystem_device == 0x0a31) {
K
Krzysztof Helt 已提交
1591 1592
			DPRINTK("subsystem_vendor: %04x, "
				"subsystem_device: %04x\n",
1593
				pdev->subsystem_vendor, pdev->subsystem_device);
K
Krzysztof Helt 已提交
1594 1595
			DPRINTK("We have not been initialized by VGA BIOS and "
				"are running on an Elsa Winner 2000 Office\n");
1596
			DPRINTK("Initializing card timings manually...\n");
1597
			default_par->memclock = 100000;
1598 1599 1600
		}
		if (pdev->subsystem_vendor == 0x3d3d &&
			pdev->subsystem_device == 0x0100) {
K
Krzysztof Helt 已提交
1601 1602
			DPRINTK("subsystem_vendor: %04x, "
				"subsystem_device: %04x\n",
1603
				pdev->subsystem_vendor, pdev->subsystem_device);
K
Krzysztof Helt 已提交
1604 1605
			DPRINTK("We have not been initialized by VGA BIOS and "
				"are running on an 3dlabs reference board\n");
1606
			DPRINTK("Initializing card timings manually...\n");
K
Krzysztof Helt 已提交
1607
			default_par->memclock = 74894;
1608
		}
1609 1610
	}

L
Linus Torvalds 已提交
1611
	/* Now work out how big lfb is going to be. */
K
Krzysztof Helt 已提交
1612
	switch (default_par->mem_config & PM2F_MEM_CONFIG_RAM_MASK) {
L
Linus Torvalds 已提交
1613
	case PM2F_MEM_BANKS_1:
K
Krzysztof Helt 已提交
1614
		pm2fb_fix.smem_len = 0x200000;
L
Linus Torvalds 已提交
1615 1616
		break;
	case PM2F_MEM_BANKS_2:
K
Krzysztof Helt 已提交
1617
		pm2fb_fix.smem_len = 0x400000;
L
Linus Torvalds 已提交
1618 1619
		break;
	case PM2F_MEM_BANKS_3:
K
Krzysztof Helt 已提交
1620
		pm2fb_fix.smem_len = 0x600000;
L
Linus Torvalds 已提交
1621 1622
		break;
	case PM2F_MEM_BANKS_4:
K
Krzysztof Helt 已提交
1623
		pm2fb_fix.smem_len = 0x800000;
L
Linus Torvalds 已提交
1624 1625 1626 1627 1628
		break;
	}
	pm2fb_fix.smem_start = pci_resource_start(pdev, 1);

	/* Linear frame buffer - request region and map it. */
K
Krzysztof Helt 已提交
1629 1630
	if (!request_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len,
				"pm2fb smem")) {
L
Linus Torvalds 已提交
1631 1632 1633
		printk(KERN_WARNING "pm2fb: Can't reserve smem.\n");
		goto err_exit_mmio;
	}
1634
	info->screen_base =
1635
		ioremap_wc(pm2fb_fix.smem_start, pm2fb_fix.smem_len);
K
Krzysztof Helt 已提交
1636
	if (!info->screen_base) {
L
Linus Torvalds 已提交
1637 1638 1639 1640 1641
		printk(KERN_WARNING "pm2fb: Can't ioremap smem area.\n");
		release_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len);
		goto err_exit_mmio;
	}

1642
	if (!nomtrr)
1643 1644
		default_par->wc_cookie = arch_phys_wc_add(pm2fb_fix.smem_start,
							  pm2fb_fix.smem_len);
1645

L
Linus Torvalds 已提交
1646
	info->fbops		= &pm2fb_ops;
K
Krzysztof Helt 已提交
1647
	info->fix		= pm2fb_fix;
1648
	info->pseudo_palette	= default_par->palette;
L
Linus Torvalds 已提交
1649
	info->flags		= FBINFO_DEFAULT |
K
Krzysztof Helt 已提交
1650 1651
				  FBINFO_HWACCEL_YPAN |
				  FBINFO_HWACCEL_COPYAREA |
K
Krzysztof Helt 已提交
1652
				  FBINFO_HWACCEL_IMAGEBLIT |
K
Krzysztof Helt 已提交
1653
				  FBINFO_HWACCEL_FILLRECT;
L
Linus Torvalds 已提交
1654

K
Krzysztof Helt 已提交
1655 1656
	info->pixmap.addr = kmalloc(PM2_PIXMAP_SIZE, GFP_KERNEL);
	if (!info->pixmap.addr) {
K
Krzysztof Helt 已提交
1657
		retval = -ENOMEM;
K
Krzysztof Helt 已提交
1658 1659 1660 1661 1662 1663 1664 1665
		goto err_exit_pixmap;
	}
	info->pixmap.size = PM2_PIXMAP_SIZE;
	info->pixmap.buf_align = 4;
	info->pixmap.scan_align = 4;
	info->pixmap.access_align = 32;
	info->pixmap.flags = FB_PIXMAP_SYSTEM;

1666
	if (noaccel) {
K
Krzysztof Helt 已提交
1667 1668 1669
		printk(KERN_DEBUG "disabling acceleration\n");
		info->flags |= FBINFO_HWACCEL_DISABLED;
		info->pixmap.scan_align = 1;
1670 1671
	}

1672 1673
	if (!mode_option)
		mode_option = "640x480@60";
K
Krzysztof Helt 已提交
1674

1675
	err = fb_find_mode(&info->var, info, mode_option, NULL, 0, NULL, 8);
L
Linus Torvalds 已提交
1676 1677 1678
	if (!err || err == 4)
		info->var = pm2fb_var;

1679 1680
	retval = fb_alloc_cmap(&info->cmap, 256, 0);
	if (retval < 0)
1681
		goto err_exit_both;
L
Linus Torvalds 已提交
1682

1683 1684
	retval = register_framebuffer(info);
	if (retval < 0)
1685
		goto err_exit_all;
L
Linus Torvalds 已提交
1686

J
Joe Perches 已提交
1687 1688
	fb_info(info, "%s frame buffer device, memory = %dK\n",
		info->fix.id, pm2fb_fix.smem_len / 1024);
L
Linus Torvalds 已提交
1689 1690 1691 1692 1693 1694 1695 1696 1697

	/*
	 * Our driver data
	 */
	pci_set_drvdata(pdev, info);

	return 0;

 err_exit_all:
K
Krzysztof Helt 已提交
1698 1699
	fb_dealloc_cmap(&info->cmap);
 err_exit_both:
K
Krzysztof Helt 已提交
1700 1701
	kfree(info->pixmap.addr);
 err_exit_pixmap:
L
Linus Torvalds 已提交
1702 1703 1704 1705 1706 1707 1708
	iounmap(info->screen_base);
	release_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len);
 err_exit_mmio:
	iounmap(default_par->v_regs);
	release_mem_region(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len);
 err_exit_neither:
	framebuffer_release(info);
K
Krzysztof Helt 已提交
1709
	return retval;
L
Linus Torvalds 已提交
1710 1711 1712 1713 1714 1715 1716 1717 1718
}

/**
 * Device removal.
 *
 * Release all device resources.
 *
 * @param	pdev	PCI device to clean up.
 */
1719
static void pm2fb_remove(struct pci_dev *pdev)
L
Linus Torvalds 已提交
1720
{
K
Krzysztof Helt 已提交
1721 1722
	struct fb_info *info = pci_get_drvdata(pdev);
	struct fb_fix_screeninfo *fix = &info->fix;
L
Linus Torvalds 已提交
1723 1724 1725
	struct pm2fb_par *par = info->par;

	unregister_framebuffer(info);
1726
	arch_phys_wc_del(par->wc_cookie);
L
Linus Torvalds 已提交
1727 1728 1729 1730 1731
	iounmap(info->screen_base);
	release_mem_region(fix->smem_start, fix->smem_len);
	iounmap(par->v_regs);
	release_mem_region(fix->mmio_start, fix->mmio_len);

1732
	fb_dealloc_cmap(&info->cmap);
K
Krzysztof Helt 已提交
1733
	kfree(info->pixmap.addr);
1734
	framebuffer_release(info);
L
Linus Torvalds 已提交
1735 1736
}

1737
static const struct pci_device_id pm2fb_id_table[] = {
L
Linus Torvalds 已提交
1738
	{ PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TVP4020,
1739
	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
L
Linus Torvalds 已提交
1740
	{ PCI_VENDOR_ID_3DLABS, PCI_DEVICE_ID_3DLABS_PERMEDIA2,
1741
	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
1742
	{ PCI_VENDOR_ID_3DLABS, PCI_DEVICE_ID_3DLABS_PERMEDIA2V,
1743
	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
L
Linus Torvalds 已提交
1744 1745 1746 1747 1748
	{ 0, }
};

static struct pci_driver pm2fb_driver = {
	.name		= "pm2fb",
K
Krzysztof Helt 已提交
1749 1750
	.id_table	= pm2fb_id_table,
	.probe		= pm2fb_probe,
1751
	.remove		= pm2fb_remove,
L
Linus Torvalds 已提交
1752 1753 1754 1755 1756 1757 1758
};

MODULE_DEVICE_TABLE(pci, pm2fb_id_table);


#ifndef MODULE
/**
J
Joe Perches 已提交
1759
 * Parse user specified options.
L
Linus Torvalds 已提交
1760 1761 1762 1763 1764
 *
 * This is, comma-separated options following `video=pm2fb:'.
 */
static int __init pm2fb_setup(char *options)
{
K
Krzysztof Helt 已提交
1765
	char *this_opt;
L
Linus Torvalds 已提交
1766 1767 1768 1769

	if (!options || !*options)
		return 0;

K
Krzysztof Helt 已提交
1770
	while ((this_opt = strsep(&options, ",")) != NULL) {
L
Linus Torvalds 已提交
1771 1772
		if (!*this_opt)
			continue;
K
Krzysztof Helt 已提交
1773
		if (!strcmp(this_opt, "lowhsync"))
L
Linus Torvalds 已提交
1774
			lowhsync = 1;
K
Krzysztof Helt 已提交
1775
		else if (!strcmp(this_opt, "lowvsync"))
L
Linus Torvalds 已提交
1776
			lowvsync = 1;
1777 1778
		else if (!strncmp(this_opt, "hwcursor=", 9))
			hwcursor = simple_strtoul(this_opt + 9, NULL, 0);
K
Krzysztof Helt 已提交
1779
		else if (!strncmp(this_opt, "nomtrr", 6))
1780
			nomtrr = 1;
K
Krzysztof Helt 已提交
1781
		else if (!strncmp(this_opt, "noaccel", 7))
1782
			noaccel = 1;
K
Krzysztof Helt 已提交
1783
		else
1784
			mode_option = this_opt;
L
Linus Torvalds 已提交
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819
	}
	return 0;
}
#endif


static int __init pm2fb_init(void)
{
#ifndef MODULE
	char *option = NULL;

	if (fb_get_options("pm2fb", &option))
		return -ENODEV;
	pm2fb_setup(option);
#endif

	return pci_register_driver(&pm2fb_driver);
}

module_init(pm2fb_init);

#ifdef MODULE
/*
 *  Cleanup
 */

static void __exit pm2fb_exit(void)
{
	pci_unregister_driver(&pm2fb_driver);
}
#endif

#ifdef MODULE
module_exit(pm2fb_exit);

1820 1821
module_param(mode_option, charp, 0);
MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'");
1822 1823
module_param_named(mode, mode_option, charp, 0);
MODULE_PARM_DESC(mode, "Initial video mode e.g. '648x480-8@60' (deprecated)");
L
Linus Torvalds 已提交
1824 1825 1826 1827
module_param(lowhsync, bool, 0);
MODULE_PARM_DESC(lowhsync, "Force horizontal sync low regardless of mode");
module_param(lowvsync, bool, 0);
MODULE_PARM_DESC(lowvsync, "Force vertical sync low regardless of mode");
1828 1829
module_param(noaccel, bool, 0);
MODULE_PARM_DESC(noaccel, "Disable acceleration");
1830 1831
module_param(hwcursor, int, 0644);
MODULE_PARM_DESC(hwcursor, "Enable hardware cursor "
1832
			"(1=enable, 0=disable, default=1)");
1833 1834
module_param(nomtrr, bool, 0);
MODULE_PARM_DESC(nomtrr, "Disable MTRR support (0 or 1=disabled) (default=0)");
L
Linus Torvalds 已提交
1835 1836 1837 1838 1839

MODULE_AUTHOR("Jim Hague <jim.hague@acm.org>");
MODULE_DESCRIPTION("Permedia2 framebuffer device driver");
MODULE_LICENSE("GPL");
#endif