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