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