]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/video/xilinxfb.c
Merge branches 'sh/pio-death', 'sh/nommu', 'sh/clkfwk', 'sh/core' and 'sh/intc-extens...
[net-next-2.6.git] / drivers / video / xilinxfb.c
CommitLineData
147394c8 1/*
dac4ccfb 2 * Xilinx TFT frame buffer driver
147394c8
AK
3 *
4 * Author: MontaVista Software, Inc.
5 * source@mvista.com
6 *
31e8d460
GL
7 * 2002-2007 (c) MontaVista Software, Inc.
8 * 2007 (c) Secret Lab Technologies, Ltd.
dac4ccfb 9 * 2009 (c) Xilinx Inc.
31e8d460
GL
10 *
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
147394c8
AK
14 */
15
16/*
17 * This driver was based on au1100fb.c by MontaVista rewritten for 2.6
18 * by Embedded Alley Solutions <source@embeddedalley.com>, which in turn
19 * was based on skeletonfb.c, Skeleton for a frame buffer device by
20 * Geert Uytterhoeven.
21 */
22
3cb3ec2c 23#include <linux/device.h>
147394c8
AK
24#include <linux/module.h>
25#include <linux/kernel.h>
dac4ccfb 26#include <linux/version.h>
147394c8
AK
27#include <linux/errno.h>
28#include <linux/string.h>
29#include <linux/mm.h>
30#include <linux/fb.h>
31#include <linux/init.h>
32#include <linux/dma-mapping.h>
31e8d460
GL
33#include <linux/of_device.h>
34#include <linux/of_platform.h>
a1dfe9c7 35#include <linux/of_address.h>
dac4ccfb 36#include <linux/io.h>
dc8afdc7 37#include <linux/xilinxfb.h>
5a0e3ad6 38#include <linux/slab.h>
a1dfe9c7
MS
39
40#ifdef CONFIG_PPC_DCR
dac4ccfb 41#include <asm/dcr.h>
a1dfe9c7 42#endif
147394c8
AK
43
44#define DRIVER_NAME "xilinxfb"
dac4ccfb 45
147394c8
AK
46
47/*
48 * Xilinx calls it "PLB TFT LCD Controller" though it can also be used for
dac4ccfb
JL
49 * the VGA port on the Xilinx ML40x board. This is a hardware display
50 * controller for a 640x480 resolution TFT or VGA screen.
147394c8
AK
51 *
52 * The interface to the framebuffer is nice and simple. There are two
53 * control registers. The first tells the LCD interface where in memory
54 * the frame buffer is (only the 11 most significant bits are used, so
55 * don't start thinking about scrolling). The second allows the LCD to
56 * be turned on or off as well as rotated 180 degrees.
dac4ccfb
JL
57 *
58 * In case of direct PLB access the second control register will be at
59 * an offset of 4 as compared to the DCR access where the offset is 1
60 * i.e. REG_CTRL. So this is taken care in the function
61 * xilinx_fb_out_be32 where it left shifts the offset 2 times in case of
62 * direct PLB access.
147394c8
AK
63 */
64#define NUM_REGS 2
65#define REG_FB_ADDR 0
66#define REG_CTRL 1
67#define REG_CTRL_ENABLE 0x0001
68#define REG_CTRL_ROTATE 0x0002
69
70/*
71 * The hardware only handles a single mode: 640x480 24 bit true
72 * color. Each pixel gets a word (32 bits) of memory. Within each word,
73 * the 8 most significant bits are ignored, the next 8 bits are the red
74 * level, the next 8 bits are the green level and the 8 least
75 * significant bits are the blue level. Each row of the LCD uses 1024
76 * words, but only the first 640 pixels are displayed with the other 384
77 * words being ignored. There are 480 rows.
78 */
79#define BYTES_PER_PIXEL 4
80#define BITS_PER_PIXEL (BYTES_PER_PIXEL * 8)
147394c8
AK
81
82#define RED_SHIFT 16
83#define GREEN_SHIFT 8
84#define BLUE_SHIFT 0
85
86#define PALETTE_ENTRIES_NO 16 /* passed to fb_alloc_cmap() */
87
01ba1e9d
GL
88/*
89 * Default xilinxfb configuration
90 */
91static struct xilinxfb_platform_data xilinx_fb_default_pdata = {
b4d6a726
GL
92 .xres = 640,
93 .yres = 480,
94 .xvirt = 1024,
86a2249d 95 .yvirt = 480,
01ba1e9d
GL
96};
97
147394c8
AK
98/*
99 * Here are the default fb_fix_screeninfo and fb_var_screeninfo structures
100 */
3f5b85d1 101static struct fb_fix_screeninfo xilinx_fb_fix = {
147394c8
AK
102 .id = "Xilinx",
103 .type = FB_TYPE_PACKED_PIXELS,
104 .visual = FB_VISUAL_TRUECOLOR,
147394c8
AK
105 .accel = FB_ACCEL_NONE
106};
107
3f5b85d1 108static struct fb_var_screeninfo xilinx_fb_var = {
147394c8
AK
109 .bits_per_pixel = BITS_PER_PIXEL,
110
111 .red = { RED_SHIFT, 8, 0 },
112 .green = { GREEN_SHIFT, 8, 0 },
113 .blue = { BLUE_SHIFT, 8, 0 },
114 .transp = { 0, 0, 0 },
115
116 .activate = FB_ACTIVATE_NOW
117};
118
dac4ccfb
JL
119
120#define PLB_ACCESS_FLAG 0x1 /* 1 = PLB, 0 = DCR */
121
147394c8
AK
122struct xilinxfb_drvdata {
123
124 struct fb_info info; /* FB driver info record */
125
dac4ccfb
JL
126 phys_addr_t regs_phys; /* phys. address of the control
127 registers */
128 void __iomem *regs; /* virt. address of the control
129 registers */
a1dfe9c7 130#ifdef CONFIG_PPC_DCR
dac4ccfb 131 dcr_host_t dcr_host;
dac4ccfb 132 unsigned int dcr_len;
a1dfe9c7 133#endif
b9a22794 134 void *fb_virt; /* virt. address of the frame buffer */
147394c8 135 dma_addr_t fb_phys; /* phys. address of the frame buffer */
287e5d6f 136 int fb_alloced; /* Flag, was the fb memory alloced? */
147394c8 137
dac4ccfb
JL
138 u8 flags; /* features of the driver */
139
147394c8
AK
140 u32 reg_ctrl_default;
141
142 u32 pseudo_palette[PALETTE_ENTRIES_NO];
143 /* Fake palette of 16 colors */
144};
145
146#define to_xilinxfb_drvdata(_info) \
147 container_of(_info, struct xilinxfb_drvdata, info)
148
149/*
dac4ccfb
JL
150 * The XPS TFT Controller can be accessed through PLB or DCR interface.
151 * To perform the read/write on the registers we need to check on
152 * which bus its connected and call the appropriate write API.
147394c8 153 */
dac4ccfb
JL
154static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u32 offset,
155 u32 val)
156{
157 if (drvdata->flags & PLB_ACCESS_FLAG)
158 out_be32(drvdata->regs + (offset << 2), val);
a1dfe9c7 159#ifdef CONFIG_PPC_DCR
dac4ccfb
JL
160 else
161 dcr_write(drvdata->dcr_host, offset, val);
a1dfe9c7 162#endif
dac4ccfb 163}
147394c8
AK
164
165static int
166xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue,
167 unsigned transp, struct fb_info *fbi)
168{
169 u32 *palette = fbi->pseudo_palette;
170
171 if (regno >= PALETTE_ENTRIES_NO)
172 return -EINVAL;
173
174 if (fbi->var.grayscale) {
175 /* Convert color to grayscale.
176 * grayscale = 0.30*R + 0.59*G + 0.11*B */
177 red = green = blue =
178 (red * 77 + green * 151 + blue * 28 + 127) >> 8;
179 }
180
181 /* fbi->fix.visual is always FB_VISUAL_TRUECOLOR */
182
183 /* We only handle 8 bits of each color. */
184 red >>= 8;
185 green >>= 8;
186 blue >>= 8;
187 palette[regno] = (red << RED_SHIFT) | (green << GREEN_SHIFT) |
188 (blue << BLUE_SHIFT);
189
190 return 0;
191}
192
193static int
194xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
195{
196 struct xilinxfb_drvdata *drvdata = to_xilinxfb_drvdata(fbi);
197
198 switch (blank_mode) {
199 case FB_BLANK_UNBLANK:
200 /* turn on panel */
201 xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl_default);
202 break;
203
204 case FB_BLANK_NORMAL:
205 case FB_BLANK_VSYNC_SUSPEND:
206 case FB_BLANK_HSYNC_SUSPEND:
207 case FB_BLANK_POWERDOWN:
208 /* turn off panel */
209 xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
210 default:
211 break;
212
213 }
214 return 0; /* success */
215}
216
217static struct fb_ops xilinxfb_ops =
218{
219 .owner = THIS_MODULE,
220 .fb_setcolreg = xilinx_fb_setcolreg,
221 .fb_blank = xilinx_fb_blank,
222 .fb_fillrect = cfb_fillrect,
223 .fb_copyarea = cfb_copyarea,
224 .fb_imageblit = cfb_imageblit,
225};
226
26477622
GL
227/* ---------------------------------------------------------------------
228 * Bus independent setup/teardown
229 */
147394c8 230
dac4ccfb
JL
231static int xilinxfb_assign(struct device *dev,
232 struct xilinxfb_drvdata *drvdata,
233 unsigned long physaddr,
01ba1e9d 234 struct xilinxfb_platform_data *pdata)
147394c8 235{
26477622 236 int rc;
b4d6a726 237 int fbsize = pdata->xvirt * pdata->yvirt * BYTES_PER_PIXEL;
147394c8 238
dac4ccfb
JL
239 if (drvdata->flags & PLB_ACCESS_FLAG) {
240 /*
241 * Map the control registers in if the controller
242 * is on direct PLB interface.
243 */
244 if (!request_mem_region(physaddr, 8, DRIVER_NAME)) {
245 dev_err(dev, "Couldn't lock memory region at 0x%08lX\n",
246 physaddr);
247 rc = -ENODEV;
248 goto err_region;
249 }
250
251 drvdata->regs_phys = physaddr;
252 drvdata->regs = ioremap(physaddr, 8);
253 if (!drvdata->regs) {
254 dev_err(dev, "Couldn't lock memory region at 0x%08lX\n",
255 physaddr);
256 rc = -ENODEV;
257 goto err_map;
258 }
147394c8 259 }
147394c8
AK
260
261 /* Allocate the framebuffer memory */
287e5d6f
GL
262 if (pdata->fb_phys) {
263 drvdata->fb_phys = pdata->fb_phys;
264 drvdata->fb_virt = ioremap(pdata->fb_phys, fbsize);
265 } else {
266 drvdata->fb_alloced = 1;
267 drvdata->fb_virt = dma_alloc_coherent(dev, PAGE_ALIGN(fbsize),
268 &drvdata->fb_phys, GFP_KERNEL);
269 }
270
147394c8 271 if (!drvdata->fb_virt) {
3cb3ec2c 272 dev_err(dev, "Could not allocate frame buffer memory\n");
26477622 273 rc = -ENOMEM;
dac4ccfb
JL
274 if (drvdata->flags & PLB_ACCESS_FLAG)
275 goto err_fbmem;
276 else
277 goto err_region;
147394c8
AK
278 }
279
280 /* Clear (turn to black) the framebuffer */
b4d6a726 281 memset_io((void __iomem *)drvdata->fb_virt, 0, fbsize);
147394c8
AK
282
283 /* Tell the hardware where the frame buffer is */
284 xilinx_fb_out_be32(drvdata, REG_FB_ADDR, drvdata->fb_phys);
285
286 /* Turn on the display */
f53161d1 287 drvdata->reg_ctrl_default = REG_CTRL_ENABLE;
01ba1e9d 288 if (pdata->rotate_screen)
f53161d1 289 drvdata->reg_ctrl_default |= REG_CTRL_ROTATE;
dac4ccfb
JL
290 xilinx_fb_out_be32(drvdata, REG_CTRL,
291 drvdata->reg_ctrl_default);
147394c8
AK
292
293 /* Fill struct fb_info */
294 drvdata->info.device = dev;
b9a22794 295 drvdata->info.screen_base = (void __iomem *)drvdata->fb_virt;
147394c8
AK
296 drvdata->info.fbops = &xilinxfb_ops;
297 drvdata->info.fix = xilinx_fb_fix;
298 drvdata->info.fix.smem_start = drvdata->fb_phys;
b4d6a726
GL
299 drvdata->info.fix.smem_len = fbsize;
300 drvdata->info.fix.line_length = pdata->xvirt * BYTES_PER_PIXEL;
301
147394c8 302 drvdata->info.pseudo_palette = drvdata->pseudo_palette;
26477622
GL
303 drvdata->info.flags = FBINFO_DEFAULT;
304 drvdata->info.var = xilinx_fb_var;
b4d6a726
GL
305 drvdata->info.var.height = pdata->screen_height_mm;
306 drvdata->info.var.width = pdata->screen_width_mm;
307 drvdata->info.var.xres = pdata->xres;
308 drvdata->info.var.yres = pdata->yres;
309 drvdata->info.var.xres_virtual = pdata->xvirt;
310 drvdata->info.var.yres_virtual = pdata->yvirt;
147394c8 311
26477622
GL
312 /* Allocate a colour map */
313 rc = fb_alloc_cmap(&drvdata->info.cmap, PALETTE_ENTRIES_NO, 0);
314 if (rc) {
3cb3ec2c 315 dev_err(dev, "Fail to allocate colormap (%d entries)\n",
147394c8 316 PALETTE_ENTRIES_NO);
3fb99ce4 317 goto err_cmap;
147394c8
AK
318 }
319
147394c8 320 /* Register new frame buffer */
26477622
GL
321 rc = register_framebuffer(&drvdata->info);
322 if (rc) {
3cb3ec2c 323 dev_err(dev, "Could not register frame buffer\n");
3fb99ce4 324 goto err_regfb;
147394c8
AK
325 }
326
dac4ccfb
JL
327 if (drvdata->flags & PLB_ACCESS_FLAG) {
328 /* Put a banner in the log (for DEBUG) */
329 dev_dbg(dev, "regs: phys=%lx, virt=%p\n", physaddr,
330 drvdata->regs);
331 }
258de4ba 332 /* Put a banner in the log (for DEBUG) */
aa296a89
GL
333 dev_dbg(dev, "fb: phys=%llx, virt=%p, size=%x\n",
334 (unsigned long long)drvdata->fb_phys, drvdata->fb_virt, fbsize);
b4d6a726 335
147394c8
AK
336 return 0; /* success */
337
3fb99ce4 338err_regfb:
147394c8
AK
339 fb_dealloc_cmap(&drvdata->info.cmap);
340
3fb99ce4 341err_cmap:
287e5d6f
GL
342 if (drvdata->fb_alloced)
343 dma_free_coherent(dev, PAGE_ALIGN(fbsize), drvdata->fb_virt,
344 drvdata->fb_phys);
dac4ccfb
JL
345 else
346 iounmap(drvdata->fb_virt);
347
147394c8
AK
348 /* Turn off the display */
349 xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
147394c8 350
3fb99ce4 351err_fbmem:
dac4ccfb
JL
352 if (drvdata->flags & PLB_ACCESS_FLAG)
353 iounmap(drvdata->regs);
26477622
GL
354
355err_map:
dac4ccfb
JL
356 if (drvdata->flags & PLB_ACCESS_FLAG)
357 release_mem_region(physaddr, 8);
147394c8 358
3fb99ce4 359err_region:
147394c8
AK
360 kfree(drvdata);
361 dev_set_drvdata(dev, NULL);
362
26477622 363 return rc;
147394c8
AK
364}
365
26477622 366static int xilinxfb_release(struct device *dev)
147394c8 367{
26477622 368 struct xilinxfb_drvdata *drvdata = dev_get_drvdata(dev);
147394c8
AK
369
370#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
371 xilinx_fb_blank(VESA_POWERDOWN, &drvdata->info);
372#endif
373
374 unregister_framebuffer(&drvdata->info);
375
376 fb_dealloc_cmap(&drvdata->info.cmap);
377
287e5d6f
GL
378 if (drvdata->fb_alloced)
379 dma_free_coherent(dev, PAGE_ALIGN(drvdata->info.fix.smem_len),
380 drvdata->fb_virt, drvdata->fb_phys);
dac4ccfb
JL
381 else
382 iounmap(drvdata->fb_virt);
147394c8
AK
383
384 /* Turn off the display */
385 xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
147394c8 386
dac4ccfb
JL
387 /* Release the resources, as allocated based on interface */
388 if (drvdata->flags & PLB_ACCESS_FLAG) {
389 iounmap(drvdata->regs);
390 release_mem_region(drvdata->regs_phys, 8);
a1dfe9c7
MS
391 }
392#ifdef CONFIG_PPC_DCR
393 else
dac4ccfb 394 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
a1dfe9c7 395#endif
147394c8
AK
396
397 kfree(drvdata);
398 dev_set_drvdata(dev, NULL);
399
400 return 0;
401}
402
31e8d460
GL
403/* ---------------------------------------------------------------------
404 * OF bus binding
405 */
406
31e8d460 407static int __devinit
2dc11581 408xilinxfb_of_probe(struct platform_device *op, const struct of_device_id *match)
31e8d460 409{
31e8d460 410 const u32 *prop;
dac4ccfb
JL
411 u32 *p;
412 u32 tft_access;
01ba1e9d 413 struct xilinxfb_platform_data pdata;
dac4ccfb 414 struct resource res;
a1dfe9c7 415 int size, rc;
dac4ccfb 416 struct xilinxfb_drvdata *drvdata;
31e8d460 417
01ba1e9d
GL
418 /* Copy with the default pdata (not a ptr reference!) */
419 pdata = xilinx_fb_default_pdata;
420
31e8d460
GL
421 dev_dbg(&op->dev, "xilinxfb_of_probe(%p, %p)\n", op, match);
422
aa296a89
GL
423 /* Allocate the driver data region */
424 drvdata = kzalloc(sizeof(*drvdata), GFP_KERNEL);
425 if (!drvdata) {
426 dev_err(&op->dev, "Couldn't allocate device private record\n");
427 return -ENOMEM;
428 }
429
dac4ccfb
JL
430 /*
431 * To check whether the core is connected directly to DCR or PLB
432 * interface and initialize the tft_access accordingly.
433 */
61c7a080 434 p = (u32 *)of_get_property(op->dev.of_node, "xlnx,dcr-splb-slave-if", NULL);
aa296a89 435 tft_access = p ? *p : 0;
dac4ccfb
JL
436
437 /*
438 * Fill the resource structure if its direct PLB interface
439 * otherwise fill the dcr_host structure.
440 */
441 if (tft_access) {
aa296a89 442 drvdata->flags |= PLB_ACCESS_FLAG;
61c7a080 443 rc = of_address_to_resource(op->dev.of_node, 0, &res);
dac4ccfb
JL
444 if (rc) {
445 dev_err(&op->dev, "invalid address\n");
aa296a89 446 goto err;
dac4ccfb 447 }
a1dfe9c7
MS
448 }
449#ifdef CONFIG_PPC_DCR
450 else {
451 int start;
aa296a89 452 res.start = 0;
61c7a080
GL
453 start = dcr_resource_start(op->dev.of_node, 0);
454 drvdata->dcr_len = dcr_resource_len(op->dev.of_node, 0);
455 drvdata->dcr_host = dcr_map(op->dev.of_node, start, drvdata->dcr_len);
aa296a89
GL
456 if (!DCR_MAP_OK(drvdata->dcr_host)) {
457 dev_err(&op->dev, "invalid DCR address\n");
458 goto err;
dac4ccfb 459 }
31e8d460 460 }
a1dfe9c7 461#endif
31e8d460 462
61c7a080 463 prop = of_get_property(op->dev.of_node, "phys-size", &size);
31e8d460 464 if ((prop) && (size >= sizeof(u32)*2)) {
01ba1e9d
GL
465 pdata.screen_width_mm = prop[0];
466 pdata.screen_height_mm = prop[1];
31e8d460
GL
467 }
468
61c7a080 469 prop = of_get_property(op->dev.of_node, "resolution", &size);
b4d6a726
GL
470 if ((prop) && (size >= sizeof(u32)*2)) {
471 pdata.xres = prop[0];
472 pdata.yres = prop[1];
473 }
474
61c7a080 475 prop = of_get_property(op->dev.of_node, "virtual-resolution", &size);
b4d6a726
GL
476 if ((prop) && (size >= sizeof(u32)*2)) {
477 pdata.xvirt = prop[0];
478 pdata.yvirt = prop[1];
479 }
480
61c7a080 481 if (of_find_property(op->dev.of_node, "rotate-display", NULL))
01ba1e9d 482 pdata.rotate_screen = 1;
31e8d460 483
dac4ccfb 484 dev_set_drvdata(&op->dev, drvdata);
aa296a89 485 return xilinxfb_assign(&op->dev, drvdata, res.start, &pdata);
dac4ccfb 486
aa296a89
GL
487 err:
488 kfree(drvdata);
489 return -ENODEV;
31e8d460
GL
490}
491
2dc11581 492static int __devexit xilinxfb_of_remove(struct platform_device *op)
31e8d460
GL
493{
494 return xilinxfb_release(&op->dev);
495}
496
497/* Match table for of_platform binding */
911a3175 498static struct of_device_id xilinxfb_of_match[] __devinitdata = {
dac4ccfb 499 { .compatible = "xlnx,xps-tft-1.00.a", },
652078ba
AA
500 { .compatible = "xlnx,xps-tft-2.00.a", },
501 { .compatible = "xlnx,xps-tft-2.01.a", },
0e349b0e 502 { .compatible = "xlnx,plb-tft-cntlr-ref-1.00.a", },
dac4ccfb 503 { .compatible = "xlnx,plb-dvi-cntlr-ref-1.00.c", },
31e8d460
GL
504 {},
505};
506MODULE_DEVICE_TABLE(of, xilinxfb_of_match);
507
508static struct of_platform_driver xilinxfb_of_driver = {
31e8d460
GL
509 .probe = xilinxfb_of_probe,
510 .remove = __devexit_p(xilinxfb_of_remove),
511 .driver = {
512 .name = DRIVER_NAME,
4018294b
GL
513 .owner = THIS_MODULE,
514 .of_match_table = xilinxfb_of_match,
31e8d460
GL
515 },
516};
517
31e8d460
GL
518
519/* ---------------------------------------------------------------------
520 * Module setup and teardown
521 */
522
147394c8
AK
523static int __init
524xilinxfb_init(void)
525{
dac4ccfb 526 return of_register_platform_driver(&xilinxfb_of_driver);
147394c8
AK
527}
528
529static void __exit
530xilinxfb_cleanup(void)
531{
dac4ccfb 532 of_unregister_platform_driver(&xilinxfb_of_driver);
147394c8
AK
533}
534
535module_init(xilinxfb_init);
536module_exit(xilinxfb_cleanup);
537
538MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
dac4ccfb 539MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
147394c8 540MODULE_LICENSE("GPL");