2 * drivers/video/tx3912fb.c
4 * Copyright (C) 1999 Harald Koerfgen
5 * Copyright (C) 2001 Steven Hill (sjhill@realitydiluted.com)
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
11 * Framebuffer for LCD controller in TMPR3912/05 and PR31700 processors
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/string.h>
17 #include <linux/tty.h>
18 #include <linux/delay.h>
19 #include <linux/interrupt.h>
20 #include <linux/init.h>
24 #include <asm/bootinfo.h>
25 #include <asm/uaccess.h>
26 #include <asm/tx3912.h>
27 #include <video/tx3912.h>
30 * Frame buffer, palette and console structures
32 static struct fb_info fb_info;
35 static struct fb_fix_screeninfo tx3912fb_fix __initdata = {
37 .smem_len = ((240 * 320)/2),
38 .type = FB_TYPE_PACKED_PIXELS,
39 .visual = FB_VISUAL_TRUECOLOR,
43 .accel = FB_ACCEL_NONE,
46 static struct fb_var_screeninfo tx3912fb_var = {
52 .red = { 0, 4, 0 }, /* ??? */
55 .activate = FB_ACTIVATE_NOW,
65 .vmode = FB_VMODE_NONINTERLACED,
69 * Interface used by the world
71 int tx3912fb_init(void);
73 static int tx3912fb_setcolreg(u_int regno, u_int red, u_int green,
74 u_int blue, u_int transp,
75 struct fb_info *info);
80 #define get_line_length(xres_virtual, bpp) \
81 (u_long) (((int) xres_virtual * (int) bpp + 7) >> 3)
84 * Frame buffer operations structure used by console driver
86 static struct fb_ops tx3912fb_ops = {
88 .fb_setcolreg = tx3912fb_setcolreg,
89 .fb_fillrect = cfb_fillrect,
90 .fb_copyarea = cfb_copyarea,
91 .fb_imageblit = cfb_imageblit,
92 .fb_cursor = soft_cursor,
95 static int tx3912fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
101 get_line_length(var->xres_virtual, var->bits_per_pixel);
102 if ((line_length * var->yres_virtual) > info->fix.smem_len)
108 static int tx3912fb_set_par(struct fb_info *info)
110 u_long tx3912fb_paddr = 0;
112 /* Disable the video logic */
113 outl(inl(TX3912_VIDEO_CTRL1) &
114 ~(TX3912_VIDEO_CTRL1_ENVID | TX3912_VIDEO_CTRL1_DISPON),
118 /* Set start address for DMA transfer */
119 outl(tx3912fb_paddr, TX3912_VIDEO_CTRL3);
121 /* Set end address for DMA transfer */
122 outl((tx3912fb_paddr + tx3912fb_fix.smem_len + 1), TX3912_VIDEO_CTRL4);
124 /* Set the pixel depth */
125 switch (info->var.bits_per_pixel) {
128 outl(inl(TX3912_VIDEO_CTRL1) &
129 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
130 info->fix.visual = FB_VISUAL_MONO10;
134 outl(inl(TX3912_VIDEO_CTRL1) &
135 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
136 outl(inl(TX3912_VIDEO_CTRL1) |
137 TX3912_VIDEO_CTRL1_BITSEL_4BIT_GRAY,
139 info->fix.visual = FB_VISUAL_TRUECOLOR;
143 outl(inl(TX3912_VIDEO_CTRL1) &
144 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
145 outl(inl(TX3912_VIDEO_CTRL1) |
146 TX3912_VIDEO_CTRL1_BITSEL_8BIT_COLOR,
148 info->fix.visual = FB_VISUAL_TRUECOLOR;
153 outl(inl(TX3912_VIDEO_CTRL1) &
154 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
155 outl(inl(TX3912_VIDEO_CTRL1) |
156 TX3912_VIDEO_CTRL1_BITSEL_2BIT_GRAY,
158 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
162 /* Enable the video clock */
163 outl(inl(TX3912_CLK_CTRL) | TX3912_CLK_CTRL_ENVIDCLK,
166 /* Unfreeze video logic and enable DF toggle */
167 outl(inl(TX3912_VIDEO_CTRL1) &
168 ~(TX3912_VIDEO_CTRL1_ENFREEZEFRAME |
169 TX3912_VIDEO_CTRL1_DFMODE)
170 , TX3912_VIDEO_CTRL1);
173 /* Enable the video logic */
174 outl(inl(TX3912_VIDEO_CTRL1) |
175 (TX3912_VIDEO_CTRL1_ENVID | TX3912_VIDEO_CTRL1_DISPON),
178 info->fix.line_length = get_line_length(var->xres_virtual,
179 var->bits_per_pixel);
183 * Set a single color register
185 static int tx3912fb_setcolreg(u_int regno, u_int red, u_int green,
186 u_int blue, u_int transp,
187 struct fb_info *info)
193 ((u32 *)(info->pseudo_palette))[regno] = ((red & 0xe000) >> 8)
194 | ((green & 0xe000) >> 11)
195 | ((blue & 0xc000) >> 14);
199 int __init tx3912fb_setup(char *options);
202 * Initialization of the framebuffer
204 int __init tx3912fb_init(void)
206 u_long tx3912fb_paddr = 0;
207 int size = (info->var.bits_per_pixel == 8) ? 256 : 16;
210 if (fb_get_options("tx3912fb", &option))
212 tx3912fb_setup(option);
214 /* Disable the video logic */
215 outl(inl(TX3912_VIDEO_CTRL1) &
216 ~(TX3912_VIDEO_CTRL1_ENVID | TX3912_VIDEO_CTRL1_DISPON),
220 /* Set start address for DMA transfer */
221 outl(tx3912fb_paddr, TX3912_VIDEO_CTRL3);
223 /* Set end address for DMA transfer */
224 outl((tx3912fb_paddr + tx3912fb_fix.smem_len + 1), TX3912_VIDEO_CTRL4);
226 /* Set the pixel depth */
227 switch (tx3912fb_var.bits_per_pixel) {
230 outl(inl(TX3912_VIDEO_CTRL1) &
231 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
232 tx3912fb_fix.visual = FB_VISUAL_MONO10;
236 outl(inl(TX3912_VIDEO_CTRL1) &
237 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
238 outl(inl(TX3912_VIDEO_CTRL1) |
239 TX3912_VIDEO_CTRL1_BITSEL_4BIT_GRAY,
241 tx3912fb_fix.visual = FB_VISUAL_TRUECOLOR;
242 tx3912fb_fix.grayscale = 1;
246 outl(inl(TX3912_VIDEO_CTRL1) &
247 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
248 outl(inl(TX3912_VIDEO_CTRL1) |
249 TX3912_VIDEO_CTRL1_BITSEL_8BIT_COLOR,
251 tx3912fb_fix.visual = FB_VISUAL_TRUECOLOR;
256 outl(inl(TX3912_VIDEO_CTRL1) &
257 ~TX3912_VIDEO_CTRL1_BITSEL_MASK, TX3912_VIDEO_CTRL1);
258 outl(inl(TX3912_VIDEO_CTRL1) |
259 TX3912_VIDEO_CTRL1_BITSEL_2BIT_GRAY,
261 tx3912fb_fix.visual = FB_VISUAL_PSEUDOCOLOR;
262 tx3912fb_fix.grayscale = 1;
266 /* Enable the video clock */
267 outl(inl(TX3912_CLK_CTRL) | TX3912_CLK_CTRL_ENVIDCLK,
270 /* Unfreeze video logic and enable DF toggle */
271 outl(inl(TX3912_VIDEO_CTRL1) &
272 ~(TX3912_VIDEO_CTRL1_ENFREEZEFRAME | TX3912_VIDEO_CTRL1_DFMODE),
276 /* Clear the framebuffer */
277 memset((void *) tx3912fb_fix.smem_start, 0xff, tx3912fb_fix.smem_len);
280 /* Enable the video logic */
281 outl(inl(TX3912_VIDEO_CTRL1) |
282 (TX3912_VIDEO_CTRL1_ENVID | TX3912_VIDEO_CTRL1_DISPON),
288 tx3912fb_fix.line_length =
289 get_line_length(tx3912fb_var.xres_virtual, tx3912fb_var.bits_per_pixel);
290 if ((tx3912fb_fix.line_length * tx3912fb_var.yres_virtual) > tx3912fb_fix.smem_len)
293 fb_info.fbops = &tx3912fb_ops;
294 fb_info.var = tx3912fb_var;
295 fb_info.fix = tx3912fb_fix;
296 fb_info.pseudo_palette = pseudo_palette;
297 fb_info.flags = FBINFO_DEFAULT;
299 /* Clear the framebuffer */
300 memset((void *) fb_info.fix.smem_start, 0xff, fb_info.fix.smem_len);
303 fb_alloc_cmap(&info->cmap, size, 0);
305 if (register_framebuffer(&fb_info) < 0)
308 printk(KERN_INFO "fb%d: TX3912 frame buffer using %uKB.\n",
309 fb_info.node, (u_int) (fb_info.fix.smem_len >> 10));
313 int __init tx3912fb_setup(char *options)
317 if (!options || !*options)
320 while ((this_opt = strsep(&options, ","))) {
321 if (!strncmp(options, "bpp:", 4))
322 tx3912fb_var.bits_per_pixel = simple_strtoul(options+4, NULL, 0);
327 module_init(tx3912fb_init);
328 MODULE_LICENSE("GPL");