blob: 18084525402ace0afd1c08ada58e2c2a50f5cfad [file] [log] [blame]
Andrei Konovalov147394c2007-05-08 00:40:18 -07001/*
John Linndac4ccf2009-06-06 10:43:16 -06002 * Xilinx TFT frame buffer driver
Andrei Konovalov147394c2007-05-08 00:40:18 -07003 *
4 * Author: MontaVista Software, Inc.
5 * source@mvista.com
6 *
Grant Likely31e8d462007-10-04 10:48:37 -06007 * 2002-2007 (c) MontaVista Software, Inc.
8 * 2007 (c) Secret Lab Technologies, Ltd.
John Linndac4ccf2009-06-06 10:43:16 -06009 * 2009 (c) Xilinx Inc.
Grant Likely31e8d462007-10-04 10:48:37 -060010 *
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.
Andrei Konovalov147394c2007-05-08 00:40:18 -070014 */
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
Grant Likely3cb3ec22007-10-04 10:48:36 -060023#include <linux/device.h>
Andrei Konovalov147394c2007-05-08 00:40:18 -070024#include <linux/module.h>
25#include <linux/kernel.h>
Andrei Konovalov147394c2007-05-08 00:40:18 -070026#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>
Grant Likely31e8d462007-10-04 10:48:37 -060032#include <linux/of_device.h>
33#include <linux/of_platform.h>
Michal Simeka1dfe9c2010-10-07 17:39:03 +100034#include <linux/of_address.h>
John Linndac4ccf2009-06-06 10:43:16 -060035#include <linux/io.h>
Grant Likelydc8afdc2007-10-01 07:47:00 +100036#include <linux/xilinxfb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Michal Simeka1dfe9c2010-10-07 17:39:03 +100038
39#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -060040#include <asm/dcr.h>
Michal Simeka1dfe9c2010-10-07 17:39:03 +100041#endif
Andrei Konovalov147394c2007-05-08 00:40:18 -070042
43#define DRIVER_NAME "xilinxfb"
John Linndac4ccf2009-06-06 10:43:16 -060044
Andrei Konovalov147394c2007-05-08 00:40:18 -070045
46/*
47 * Xilinx calls it "PLB TFT LCD Controller" though it can also be used for
John Linndac4ccf2009-06-06 10:43:16 -060048 * the VGA port on the Xilinx ML40x board. This is a hardware display
49 * controller for a 640x480 resolution TFT or VGA screen.
Andrei Konovalov147394c2007-05-08 00:40:18 -070050 *
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.
John Linndac4ccf2009-06-06 10:43:16 -060056 *
57 * In case of direct PLB access the second control register will be at
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
60 * xilinx_fb_out_be32 where it left shifts the offset 2 times in case of
61 * direct PLB access.
Andrei Konovalov147394c2007-05-08 00:40:18 -070062 */
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)
Andrei Konovalov147394c2007-05-08 00:40:18 -070080
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
87/*
Grant Likely01ba1e92007-10-11 04:31:46 +100088 * Default xilinxfb configuration
89 */
90static struct xilinxfb_platform_data xilinx_fb_default_pdata = {
Grant Likelyb4d6a722007-10-11 04:31:51 +100091 .xres = 640,
92 .yres = 480,
93 .xvirt = 1024,
Grant Likely86a22492007-10-13 22:13:32 -060094 .yvirt = 480,
Grant Likely01ba1e92007-10-11 04:31:46 +100095};
96
97/*
Andrei Konovalov147394c2007-05-08 00:40:18 -070098 * Here are the default fb_fix_screeninfo and fb_var_screeninfo structures
99 */
Grant Likely3f5b85d2007-07-31 00:37:38 -0700100static struct fb_fix_screeninfo xilinx_fb_fix = {
Andrei Konovalov147394c2007-05-08 00:40:18 -0700101 .id = "Xilinx",
102 .type = FB_TYPE_PACKED_PIXELS,
103 .visual = FB_VISUAL_TRUECOLOR,
Andrei Konovalov147394c2007-05-08 00:40:18 -0700104 .accel = FB_ACCEL_NONE
105};
106
Grant Likely3f5b85d2007-07-31 00:37:38 -0700107static struct fb_var_screeninfo xilinx_fb_var = {
Andrei Konovalov147394c2007-05-08 00:40:18 -0700108 .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
John Linndac4ccf2009-06-06 10:43:16 -0600118
119#define PLB_ACCESS_FLAG 0x1 /* 1 = PLB, 0 = DCR */
120
Andrei Konovalov147394c2007-05-08 00:40:18 -0700121struct xilinxfb_drvdata {
122
123 struct fb_info info; /* FB driver info record */
124
John Linndac4ccf2009-06-06 10:43:16 -0600125 phys_addr_t regs_phys; /* phys. address of the control
126 registers */
127 void __iomem *regs; /* virt. address of the control
128 registers */
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000129#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -0600130 dcr_host_t dcr_host;
John Linndac4ccf2009-06-06 10:43:16 -0600131 unsigned int dcr_len;
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000132#endif
Grant Likelyb9a22792007-10-04 10:48:37 -0600133 void *fb_virt; /* virt. address of the frame buffer */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700134 dma_addr_t fb_phys; /* phys. address of the frame buffer */
Grant Likely287e5d62007-10-11 04:31:56 +1000135 int fb_alloced; /* Flag, was the fb memory alloced? */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700136
John Linndac4ccf2009-06-06 10:43:16 -0600137 u8 flags; /* features of the driver */
138
Andrei Konovalov147394c2007-05-08 00:40:18 -0700139 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/*
John Linndac4ccf2009-06-06 10:43:16 -0600149 * The XPS TFT Controller can be accessed through PLB or DCR interface.
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.
Andrei Konovalov147394c2007-05-08 00:40:18 -0700152 */
John Linndac4ccf2009-06-06 10:43:16 -0600153static void xilinx_fb_out_be32(struct xilinxfb_drvdata *drvdata, u32 offset,
154 u32 val)
155{
156 if (drvdata->flags & PLB_ACCESS_FLAG)
157 out_be32(drvdata->regs + (offset << 2), val);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000158#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -0600159 else
160 dcr_write(drvdata->dcr_host, offset, val);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000161#endif
John Linndac4ccf2009-06-06 10:43:16 -0600162}
Andrei Konovalov147394c2007-05-08 00:40:18 -0700163
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 */
200 xilinx_fb_out_be32(drvdata, REG_CTRL, drvdata->reg_ctrl_default);
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 */
208 xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
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
Grant Likely26477622007-10-04 10:48:37 -0600226/* ---------------------------------------------------------------------
227 * Bus independent setup/teardown
228 */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700229
John Linndac4ccf2009-06-06 10:43:16 -0600230static int xilinxfb_assign(struct device *dev,
231 struct xilinxfb_drvdata *drvdata,
232 unsigned long physaddr,
Grant Likely01ba1e92007-10-11 04:31:46 +1000233 struct xilinxfb_platform_data *pdata)
Andrei Konovalov147394c2007-05-08 00:40:18 -0700234{
Grant Likely26477622007-10-04 10:48:37 -0600235 int rc;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000236 int fbsize = pdata->xvirt * pdata->yvirt * BYTES_PER_PIXEL;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700237
John Linndac4ccf2009-06-06 10:43:16 -0600238 if (drvdata->flags & PLB_ACCESS_FLAG) {
239 /*
240 * Map the control registers in if the controller
241 * is on direct PLB interface.
242 */
243 if (!request_mem_region(physaddr, 8, DRIVER_NAME)) {
244 dev_err(dev, "Couldn't lock memory region at 0x%08lX\n",
245 physaddr);
246 rc = -ENODEV;
247 goto err_region;
248 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700249
John Linndac4ccf2009-06-06 10:43:16 -0600250 drvdata->regs_phys = physaddr;
251 drvdata->regs = ioremap(physaddr, 8);
252 if (!drvdata->regs) {
253 dev_err(dev, "Couldn't lock memory region at 0x%08lX\n",
254 physaddr);
255 rc = -ENODEV;
256 goto err_map;
257 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700258 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700259
260 /* Allocate the framebuffer memory */
Grant Likely287e5d62007-10-11 04:31:56 +1000261 if (pdata->fb_phys) {
262 drvdata->fb_phys = pdata->fb_phys;
263 drvdata->fb_virt = ioremap(pdata->fb_phys, fbsize);
264 } else {
265 drvdata->fb_alloced = 1;
266 drvdata->fb_virt = dma_alloc_coherent(dev, PAGE_ALIGN(fbsize),
267 &drvdata->fb_phys, GFP_KERNEL);
268 }
269
Andrei Konovalov147394c2007-05-08 00:40:18 -0700270 if (!drvdata->fb_virt) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600271 dev_err(dev, "Could not allocate frame buffer memory\n");
Grant Likely26477622007-10-04 10:48:37 -0600272 rc = -ENOMEM;
John Linndac4ccf2009-06-06 10:43:16 -0600273 if (drvdata->flags & PLB_ACCESS_FLAG)
274 goto err_fbmem;
275 else
276 goto err_region;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700277 }
278
279 /* Clear (turn to black) the framebuffer */
Grant Likelyb4d6a722007-10-11 04:31:51 +1000280 memset_io((void __iomem *)drvdata->fb_virt, 0, fbsize);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700281
282 /* Tell the hardware where the frame buffer is */
283 xilinx_fb_out_be32(drvdata, REG_FB_ADDR, drvdata->fb_phys);
284
285 /* Turn on the display */
Grant Likelyf53161d2007-07-31 00:37:39 -0700286 drvdata->reg_ctrl_default = REG_CTRL_ENABLE;
Grant Likely01ba1e92007-10-11 04:31:46 +1000287 if (pdata->rotate_screen)
Grant Likelyf53161d2007-07-31 00:37:39 -0700288 drvdata->reg_ctrl_default |= REG_CTRL_ROTATE;
John Linndac4ccf2009-06-06 10:43:16 -0600289 xilinx_fb_out_be32(drvdata, REG_CTRL,
290 drvdata->reg_ctrl_default);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700291
292 /* Fill struct fb_info */
293 drvdata->info.device = dev;
Grant Likelyb9a22792007-10-04 10:48:37 -0600294 drvdata->info.screen_base = (void __iomem *)drvdata->fb_virt;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700295 drvdata->info.fbops = &xilinxfb_ops;
296 drvdata->info.fix = xilinx_fb_fix;
297 drvdata->info.fix.smem_start = drvdata->fb_phys;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000298 drvdata->info.fix.smem_len = fbsize;
299 drvdata->info.fix.line_length = pdata->xvirt * BYTES_PER_PIXEL;
300
Andrei Konovalov147394c2007-05-08 00:40:18 -0700301 drvdata->info.pseudo_palette = drvdata->pseudo_palette;
Grant Likely26477622007-10-04 10:48:37 -0600302 drvdata->info.flags = FBINFO_DEFAULT;
303 drvdata->info.var = xilinx_fb_var;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000304 drvdata->info.var.height = pdata->screen_height_mm;
305 drvdata->info.var.width = pdata->screen_width_mm;
306 drvdata->info.var.xres = pdata->xres;
307 drvdata->info.var.yres = pdata->yres;
308 drvdata->info.var.xres_virtual = pdata->xvirt;
309 drvdata->info.var.yres_virtual = pdata->yvirt;
Grant Likely26477622007-10-04 10:48:37 -0600310
311 /* Allocate a colour map */
312 rc = fb_alloc_cmap(&drvdata->info.cmap, PALETTE_ENTRIES_NO, 0);
313 if (rc) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600314 dev_err(dev, "Fail to allocate colormap (%d entries)\n",
Andrei Konovalov147394c2007-05-08 00:40:18 -0700315 PALETTE_ENTRIES_NO);
Grant Likely3fb99ce2007-10-04 10:48:37 -0600316 goto err_cmap;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700317 }
318
Andrei Konovalov147394c2007-05-08 00:40:18 -0700319 /* Register new frame buffer */
Grant Likely26477622007-10-04 10:48:37 -0600320 rc = register_framebuffer(&drvdata->info);
321 if (rc) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600322 dev_err(dev, "Could not register frame buffer\n");
Grant Likely3fb99ce2007-10-04 10:48:37 -0600323 goto err_regfb;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700324 }
325
John Linndac4ccf2009-06-06 10:43:16 -0600326 if (drvdata->flags & PLB_ACCESS_FLAG) {
327 /* Put a banner in the log (for DEBUG) */
328 dev_dbg(dev, "regs: phys=%lx, virt=%p\n", physaddr,
329 drvdata->regs);
330 }
Grant Likely258de4b2007-10-04 10:48:36 -0600331 /* Put a banner in the log (for DEBUG) */
Grant Likelyaa296a82009-06-17 00:30:02 -0600332 dev_dbg(dev, "fb: phys=%llx, virt=%p, size=%x\n",
333 (unsigned long long)drvdata->fb_phys, drvdata->fb_virt, fbsize);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000334
Andrei Konovalov147394c2007-05-08 00:40:18 -0700335 return 0; /* success */
336
Grant Likely3fb99ce2007-10-04 10:48:37 -0600337err_regfb:
Andrei Konovalov147394c2007-05-08 00:40:18 -0700338 fb_dealloc_cmap(&drvdata->info.cmap);
339
Grant Likely3fb99ce2007-10-04 10:48:37 -0600340err_cmap:
Grant Likely287e5d62007-10-11 04:31:56 +1000341 if (drvdata->fb_alloced)
342 dma_free_coherent(dev, PAGE_ALIGN(fbsize), drvdata->fb_virt,
343 drvdata->fb_phys);
John Linndac4ccf2009-06-06 10:43:16 -0600344 else
345 iounmap(drvdata->fb_virt);
346
Andrei Konovalov147394c2007-05-08 00:40:18 -0700347 /* Turn off the display */
348 xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700349
Grant Likely3fb99ce2007-10-04 10:48:37 -0600350err_fbmem:
John Linndac4ccf2009-06-06 10:43:16 -0600351 if (drvdata->flags & PLB_ACCESS_FLAG)
352 iounmap(drvdata->regs);
Grant Likely26477622007-10-04 10:48:37 -0600353
354err_map:
John Linndac4ccf2009-06-06 10:43:16 -0600355 if (drvdata->flags & PLB_ACCESS_FLAG)
356 release_mem_region(physaddr, 8);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700357
Grant Likely3fb99ce2007-10-04 10:48:37 -0600358err_region:
Andrei Konovalov147394c2007-05-08 00:40:18 -0700359 kfree(drvdata);
360 dev_set_drvdata(dev, NULL);
361
Grant Likely26477622007-10-04 10:48:37 -0600362 return rc;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700363}
364
Grant Likely26477622007-10-04 10:48:37 -0600365static int xilinxfb_release(struct device *dev)
Andrei Konovalov147394c2007-05-08 00:40:18 -0700366{
Grant Likely26477622007-10-04 10:48:37 -0600367 struct xilinxfb_drvdata *drvdata = dev_get_drvdata(dev);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700368
369#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
370 xilinx_fb_blank(VESA_POWERDOWN, &drvdata->info);
371#endif
372
373 unregister_framebuffer(&drvdata->info);
374
375 fb_dealloc_cmap(&drvdata->info.cmap);
376
Grant Likely287e5d62007-10-11 04:31:56 +1000377 if (drvdata->fb_alloced)
378 dma_free_coherent(dev, PAGE_ALIGN(drvdata->info.fix.smem_len),
379 drvdata->fb_virt, drvdata->fb_phys);
John Linndac4ccf2009-06-06 10:43:16 -0600380 else
381 iounmap(drvdata->fb_virt);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700382
383 /* Turn off the display */
384 xilinx_fb_out_be32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700385
John Linndac4ccf2009-06-06 10:43:16 -0600386 /* Release the resources, as allocated based on interface */
387 if (drvdata->flags & PLB_ACCESS_FLAG) {
388 iounmap(drvdata->regs);
389 release_mem_region(drvdata->regs_phys, 8);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000390 }
391#ifdef CONFIG_PPC_DCR
392 else
John Linndac4ccf2009-06-06 10:43:16 -0600393 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000394#endif
Andrei Konovalov147394c2007-05-08 00:40:18 -0700395
396 kfree(drvdata);
397 dev_set_drvdata(dev, NULL);
398
399 return 0;
400}
401
Grant Likely26477622007-10-04 10:48:37 -0600402/* ---------------------------------------------------------------------
Grant Likely31e8d462007-10-04 10:48:37 -0600403 * OF bus binding
404 */
405
Grant Likely28541d02011-02-22 21:07:43 -0700406static int __devinit xilinxfb_of_probe(struct platform_device *op)
Grant Likely31e8d462007-10-04 10:48:37 -0600407{
Grant Likely31e8d462007-10-04 10:48:37 -0600408 const u32 *prop;
John Linndac4ccf2009-06-06 10:43:16 -0600409 u32 *p;
410 u32 tft_access;
Grant Likely01ba1e92007-10-11 04:31:46 +1000411 struct xilinxfb_platform_data pdata;
John Linndac4ccf2009-06-06 10:43:16 -0600412 struct resource res;
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000413 int size, rc;
John Linndac4ccf2009-06-06 10:43:16 -0600414 struct xilinxfb_drvdata *drvdata;
Grant Likely31e8d462007-10-04 10:48:37 -0600415
Grant Likely01ba1e92007-10-11 04:31:46 +1000416 /* Copy with the default pdata (not a ptr reference!) */
417 pdata = xilinx_fb_default_pdata;
418
Grant Likelyaa296a82009-06-17 00:30:02 -0600419 /* Allocate the driver data region */
420 drvdata = kzalloc(sizeof(*drvdata), GFP_KERNEL);
421 if (!drvdata) {
422 dev_err(&op->dev, "Couldn't allocate device private record\n");
423 return -ENOMEM;
424 }
425
John Linndac4ccf2009-06-06 10:43:16 -0600426 /*
427 * To check whether the core is connected directly to DCR or PLB
428 * interface and initialize the tft_access accordingly.
429 */
Grant Likely61c7a082010-04-13 16:12:29 -0700430 p = (u32 *)of_get_property(op->dev.of_node, "xlnx,dcr-splb-slave-if", NULL);
Grant Likelyaa296a82009-06-17 00:30:02 -0600431 tft_access = p ? *p : 0;
John Linndac4ccf2009-06-06 10:43:16 -0600432
433 /*
434 * Fill the resource structure if its direct PLB interface
435 * otherwise fill the dcr_host structure.
436 */
437 if (tft_access) {
Grant Likelyaa296a82009-06-17 00:30:02 -0600438 drvdata->flags |= PLB_ACCESS_FLAG;
Grant Likely61c7a082010-04-13 16:12:29 -0700439 rc = of_address_to_resource(op->dev.of_node, 0, &res);
John Linndac4ccf2009-06-06 10:43:16 -0600440 if (rc) {
441 dev_err(&op->dev, "invalid address\n");
Grant Likelyaa296a82009-06-17 00:30:02 -0600442 goto err;
John Linndac4ccf2009-06-06 10:43:16 -0600443 }
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000444 }
445#ifdef CONFIG_PPC_DCR
446 else {
447 int start;
Grant Likelyaa296a82009-06-17 00:30:02 -0600448 res.start = 0;
Grant Likely61c7a082010-04-13 16:12:29 -0700449 start = dcr_resource_start(op->dev.of_node, 0);
450 drvdata->dcr_len = dcr_resource_len(op->dev.of_node, 0);
451 drvdata->dcr_host = dcr_map(op->dev.of_node, start, drvdata->dcr_len);
Grant Likelyaa296a82009-06-17 00:30:02 -0600452 if (!DCR_MAP_OK(drvdata->dcr_host)) {
453 dev_err(&op->dev, "invalid DCR address\n");
454 goto err;
John Linndac4ccf2009-06-06 10:43:16 -0600455 }
Grant Likely31e8d462007-10-04 10:48:37 -0600456 }
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000457#endif
Grant Likely31e8d462007-10-04 10:48:37 -0600458
Grant Likely61c7a082010-04-13 16:12:29 -0700459 prop = of_get_property(op->dev.of_node, "phys-size", &size);
Grant Likely31e8d462007-10-04 10:48:37 -0600460 if ((prop) && (size >= sizeof(u32)*2)) {
Grant Likely01ba1e92007-10-11 04:31:46 +1000461 pdata.screen_width_mm = prop[0];
462 pdata.screen_height_mm = prop[1];
Grant Likely31e8d462007-10-04 10:48:37 -0600463 }
464
Grant Likely61c7a082010-04-13 16:12:29 -0700465 prop = of_get_property(op->dev.of_node, "resolution", &size);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000466 if ((prop) && (size >= sizeof(u32)*2)) {
467 pdata.xres = prop[0];
468 pdata.yres = prop[1];
469 }
470
Grant Likely61c7a082010-04-13 16:12:29 -0700471 prop = of_get_property(op->dev.of_node, "virtual-resolution", &size);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000472 if ((prop) && (size >= sizeof(u32)*2)) {
473 pdata.xvirt = prop[0];
474 pdata.yvirt = prop[1];
475 }
476
Grant Likely61c7a082010-04-13 16:12:29 -0700477 if (of_find_property(op->dev.of_node, "rotate-display", NULL))
Grant Likely01ba1e92007-10-11 04:31:46 +1000478 pdata.rotate_screen = 1;
Grant Likely31e8d462007-10-04 10:48:37 -0600479
John Linndac4ccf2009-06-06 10:43:16 -0600480 dev_set_drvdata(&op->dev, drvdata);
Grant Likelyaa296a82009-06-17 00:30:02 -0600481 return xilinxfb_assign(&op->dev, drvdata, res.start, &pdata);
John Linndac4ccf2009-06-06 10:43:16 -0600482
Grant Likelyaa296a82009-06-17 00:30:02 -0600483 err:
484 kfree(drvdata);
485 return -ENODEV;
Grant Likely31e8d462007-10-04 10:48:37 -0600486}
487
Grant Likely2dc11582010-08-06 09:25:50 -0600488static int __devexit xilinxfb_of_remove(struct platform_device *op)
Grant Likely31e8d462007-10-04 10:48:37 -0600489{
490 return xilinxfb_release(&op->dev);
491}
492
493/* Match table for of_platform binding */
Grant Likely911a3172008-02-06 10:23:12 -0700494static struct of_device_id xilinxfb_of_match[] __devinitdata = {
John Linndac4ccf2009-06-06 10:43:16 -0600495 { .compatible = "xlnx,xps-tft-1.00.a", },
Adrian Alonso652078b2010-07-27 11:24:13 +0000496 { .compatible = "xlnx,xps-tft-2.00.a", },
497 { .compatible = "xlnx,xps-tft-2.01.a", },
Stephen Neuendorffer0e349b02008-01-09 06:35:05 +1100498 { .compatible = "xlnx,plb-tft-cntlr-ref-1.00.a", },
John Linndac4ccf2009-06-06 10:43:16 -0600499 { .compatible = "xlnx,plb-dvi-cntlr-ref-1.00.c", },
Grant Likely31e8d462007-10-04 10:48:37 -0600500 {},
501};
502MODULE_DEVICE_TABLE(of, xilinxfb_of_match);
503
Grant Likely28541d02011-02-22 21:07:43 -0700504static struct platform_driver xilinxfb_of_driver = {
Grant Likely31e8d462007-10-04 10:48:37 -0600505 .probe = xilinxfb_of_probe,
506 .remove = __devexit_p(xilinxfb_of_remove),
507 .driver = {
508 .name = DRIVER_NAME,
Grant Likely40182942010-04-13 16:13:02 -0700509 .owner = THIS_MODULE,
510 .of_match_table = xilinxfb_of_match,
Grant Likely31e8d462007-10-04 10:48:37 -0600511 },
512};
513
Axel Lin4277f2c2011-11-26 10:25:54 +0800514module_platform_driver(xilinxfb_of_driver);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700515
516MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
John Linndac4ccf2009-06-06 10:43:16 -0600517MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
Andrei Konovalov147394c2007-05-08 00:40:18 -0700518MODULE_LICENSE("GPL");