• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/geode/
1/*
2 * Geode GX display controller.
3 *
4 *   Copyright (C) 2005 Arcom Control Systems Ltd.
5 *
6 *   Portions from AMD's original 2.4 driver:
7 *     Copyright (C) 2004 Advanced Micro Devices, Inc.
8 *
9 *   This program is free software; you can redistribute it and/or modify it
10 *   under the terms of the GNU General Public License as published by * the
11 *   Free Software Foundation; either version 2 of the License, or * (at your
12 *   option) any later version.
13 */
14#include <linux/spinlock.h>
15#include <linux/fb.h>
16#include <linux/delay.h>
17#include <asm/io.h>
18#include <asm/div64.h>
19#include <asm/delay.h>
20#include <linux/cs5535.h>
21
22#include "gxfb.h"
23
24unsigned int gx_frame_buffer_size(void)
25{
26	unsigned int val;
27
28	if (!cs5535_has_vsa2()) {
29		uint32_t hi, lo;
30
31		/* The number of pages is (PMAX - PMIN)+1 */
32		rdmsr(MSR_GLIU_P2D_RO0, lo, hi);
33
34		/* PMAX */
35		val = ((hi & 0xff) << 12) | ((lo & 0xfff00000) >> 20);
36		/* PMIN */
37		val -= (lo & 0x000fffff);
38		val += 1;
39
40		/* The page size is 4k */
41		return (val << 12);
42	}
43
44	/* FB size can be obtained from the VSA II */
45	/* Virtual register class = 0x02 */
46	/* VG_MEM_SIZE(512Kb units) = 0x00 */
47
48	outw(VSA_VR_UNLOCK, VSA_VRC_INDEX);
49	outw(VSA_VR_MEM_SIZE, VSA_VRC_INDEX);
50
51	val = (unsigned int)(inw(VSA_VRC_DATA)) & 0xFFl;
52	return (val << 19);
53}
54
55int gx_line_delta(int xres, int bpp)
56{
57	/* Must be a multiple of 8 bytes. */
58	return (xres * (bpp >> 3) + 7) & ~0x7;
59}
60
61void gx_set_mode(struct fb_info *info)
62{
63	struct gxfb_par *par = info->par;
64	u32 gcfg, dcfg;
65	int hactive, hblankstart, hsyncstart, hsyncend, hblankend, htotal;
66	int vactive, vblankstart, vsyncstart, vsyncend, vblankend, vtotal;
67
68	/* Unlock the display controller registers. */
69	write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
70
71	gcfg = read_dc(par, DC_GENERAL_CFG);
72	dcfg = read_dc(par, DC_DISPLAY_CFG);
73
74	/* Disable the timing generator. */
75	dcfg &= ~DC_DISPLAY_CFG_TGEN;
76	write_dc(par, DC_DISPLAY_CFG, dcfg);
77
78	/* Wait for pending memory requests before disabling the FIFO load. */
79	udelay(100);
80
81	/* Disable FIFO load and compression. */
82	gcfg &= ~(DC_GENERAL_CFG_DFLE | DC_GENERAL_CFG_CMPE |
83			DC_GENERAL_CFG_DECE);
84	write_dc(par, DC_GENERAL_CFG, gcfg);
85
86	/* Setup DCLK and its divisor. */
87	gx_set_dclk_frequency(info);
88
89	/*
90	 * Setup new mode.
91	 */
92
93	/* Clear all unused feature bits. */
94	gcfg &= DC_GENERAL_CFG_YUVM | DC_GENERAL_CFG_VDSE;
95	dcfg = 0;
96
97	/* Set FIFO priority (default 6/5) and enable. */
98	gcfg |= (6 << DC_GENERAL_CFG_DFHPEL_SHIFT) |
99		(5 << DC_GENERAL_CFG_DFHPSL_SHIFT) | DC_GENERAL_CFG_DFLE;
100
101	/* Framebuffer start offset. */
102	write_dc(par, DC_FB_ST_OFFSET, 0);
103
104	/* Line delta and line buffer length. */
105	write_dc(par, DC_GFX_PITCH, info->fix.line_length >> 3);
106	write_dc(par, DC_LINE_SIZE,
107		((info->var.xres * info->var.bits_per_pixel/8) >> 3) + 2);
108
109
110	/* Enable graphics and video data and unmask address lines. */
111	dcfg |= DC_DISPLAY_CFG_GDEN | DC_DISPLAY_CFG_VDEN |
112		DC_DISPLAY_CFG_A20M | DC_DISPLAY_CFG_A18M;
113
114	/* Set pixel format. */
115	switch (info->var.bits_per_pixel) {
116	case 8:
117		dcfg |= DC_DISPLAY_CFG_DISP_MODE_8BPP;
118		break;
119	case 16:
120		dcfg |= DC_DISPLAY_CFG_DISP_MODE_16BPP;
121		break;
122	case 32:
123		dcfg |= DC_DISPLAY_CFG_DISP_MODE_24BPP;
124		dcfg |= DC_DISPLAY_CFG_PALB;
125		break;
126	}
127
128	/* Enable timing generator. */
129	dcfg |= DC_DISPLAY_CFG_TGEN;
130
131	/* Horizontal and vertical timings. */
132	hactive = info->var.xres;
133	hblankstart = hactive;
134	hsyncstart = hblankstart + info->var.right_margin;
135	hsyncend =  hsyncstart + info->var.hsync_len;
136	hblankend = hsyncend + info->var.left_margin;
137	htotal = hblankend;
138
139	vactive = info->var.yres;
140	vblankstart = vactive;
141	vsyncstart = vblankstart + info->var.lower_margin;
142	vsyncend =  vsyncstart + info->var.vsync_len;
143	vblankend = vsyncend + info->var.upper_margin;
144	vtotal = vblankend;
145
146	write_dc(par, DC_H_ACTIVE_TIMING, (hactive - 1)    |
147			((htotal - 1) << 16));
148	write_dc(par, DC_H_BLANK_TIMING, (hblankstart - 1) |
149			((hblankend - 1) << 16));
150	write_dc(par, DC_H_SYNC_TIMING, (hsyncstart - 1)   |
151			((hsyncend - 1) << 16));
152
153	write_dc(par, DC_V_ACTIVE_TIMING, (vactive - 1)    |
154			((vtotal - 1) << 16));
155	write_dc(par, DC_V_BLANK_TIMING, (vblankstart - 1) |
156			((vblankend - 1) << 16));
157	write_dc(par, DC_V_SYNC_TIMING, (vsyncstart - 1)   |
158			((vsyncend - 1) << 16));
159
160	/* Write final register values. */
161	write_dc(par, DC_DISPLAY_CFG, dcfg);
162	write_dc(par, DC_GENERAL_CFG, gcfg);
163
164	gx_configure_display(info);
165
166	/* Relock display controller registers */
167	write_dc(par, DC_UNLOCK, DC_UNLOCK_LOCK);
168}
169
170void gx_set_hw_palette_reg(struct fb_info *info, unsigned regno,
171		unsigned red, unsigned green, unsigned blue)
172{
173	struct gxfb_par *par = info->par;
174	int val;
175
176	/* Hardware palette is in RGB 8-8-8 format. */
177	val  = (red   << 8) & 0xff0000;
178	val |= (green)      & 0x00ff00;
179	val |= (blue  >> 8) & 0x0000ff;
180
181	write_dc(par, DC_PAL_ADDRESS, regno);
182	write_dc(par, DC_PAL_DATA, val);
183}
184