blob: 17dc119c7a9849e6b98c296f245f19e93a833256 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Michal Simeka1dfe9c2010-10-07 17:39:03 +100037
38#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -060039#include <asm/dcr.h>
Michal Simeka1dfe9c2010-10-07 17:39:03 +100040#endif
Andrei Konovalov147394c2007-05-08 00:40:18 -070041
42#define DRIVER_NAME "xilinxfb"
John Linndac4ccf2009-06-06 10:43:16 -060043
Andrei Konovalov147394c2007-05-08 00:40:18 -070044
45/*
Michal Simek5130af32013-06-03 12:13:18 +020046 * Xilinx calls it "TFT LCD Controller" though it can also be used for
John Linndac4ccf2009-06-06 10:43:16 -060047 * the VGA port on the Xilinx ML40x board. This is a hardware display
48 * controller for a 640x480 resolution TFT or VGA screen.
Andrei Konovalov147394c2007-05-08 00:40:18 -070049 *
50 * The interface to the framebuffer is nice and simple. There are two
51 * control registers. The first tells the LCD interface where in memory
52 * the frame buffer is (only the 11 most significant bits are used, so
53 * don't start thinking about scrolling). The second allows the LCD to
54 * be turned on or off as well as rotated 180 degrees.
John Linndac4ccf2009-06-06 10:43:16 -060055 *
Michal Simek5130af32013-06-03 12:13:18 +020056 * In case of direct BUS access the second control register will be at
John Linndac4ccf2009-06-06 10:43:16 -060057 * an offset of 4 as compared to the DCR access where the offset is 1
58 * i.e. REG_CTRL. So this is taken care in the function
Michal Simekec05e7a2013-06-03 12:13:17 +020059 * xilinx_fb_out32 where it left shifts the offset 2 times in case of
Michal Simek5130af32013-06-03 12:13:18 +020060 * direct BUS access.
Andrei Konovalov147394c2007-05-08 00:40:18 -070061 */
62#define NUM_REGS 2
63#define REG_FB_ADDR 0
64#define REG_CTRL 1
65#define REG_CTRL_ENABLE 0x0001
66#define REG_CTRL_ROTATE 0x0002
67
68/*
69 * The hardware only handles a single mode: 640x480 24 bit true
70 * color. Each pixel gets a word (32 bits) of memory. Within each word,
71 * the 8 most significant bits are ignored, the next 8 bits are the red
72 * level, the next 8 bits are the green level and the 8 least
73 * significant bits are the blue level. Each row of the LCD uses 1024
74 * words, but only the first 640 pixels are displayed with the other 384
75 * words being ignored. There are 480 rows.
76 */
77#define BYTES_PER_PIXEL 4
78#define BITS_PER_PIXEL (BYTES_PER_PIXEL * 8)
Andrei Konovalov147394c2007-05-08 00:40:18 -070079
80#define RED_SHIFT 16
81#define GREEN_SHIFT 8
82#define BLUE_SHIFT 0
83
84#define PALETTE_ENTRIES_NO 16 /* passed to fb_alloc_cmap() */
85
Michal Simekc4a41bc2014-02-11 07:48:32 +010086/* ML300/403 reference design framebuffer driver platform data struct */
87struct xilinxfb_platform_data {
88 u32 rotate_screen; /* Flag to rotate display 180 degrees */
89 u32 screen_height_mm; /* Physical dimensions of screen in mm */
90 u32 screen_width_mm;
91 u32 xres, yres; /* resolution of screen in pixels */
92 u32 xvirt, yvirt; /* resolution of memory buffer */
93
94 /* Physical address of framebuffer memory; If non-zero, driver
95 * will use provided memory address instead of allocating one from
96 * the consistent pool. */
97 u32 fb_phys;
98};
99
Andrei Konovalov147394c2007-05-08 00:40:18 -0700100/*
Grant Likely01ba1e92007-10-11 04:31:46 +1000101 * Default xilinxfb configuration
102 */
103static struct xilinxfb_platform_data xilinx_fb_default_pdata = {
Grant Likelyb4d6a722007-10-11 04:31:51 +1000104 .xres = 640,
105 .yres = 480,
106 .xvirt = 1024,
Grant Likely86a22492007-10-13 22:13:32 -0600107 .yvirt = 480,
Grant Likely01ba1e92007-10-11 04:31:46 +1000108};
109
110/*
Andrei Konovalov147394c2007-05-08 00:40:18 -0700111 * Here are the default fb_fix_screeninfo and fb_var_screeninfo structures
112 */
Grant Likely3f5b85d2007-07-31 00:37:38 -0700113static struct fb_fix_screeninfo xilinx_fb_fix = {
Andrei Konovalov147394c2007-05-08 00:40:18 -0700114 .id = "Xilinx",
115 .type = FB_TYPE_PACKED_PIXELS,
116 .visual = FB_VISUAL_TRUECOLOR,
Andrei Konovalov147394c2007-05-08 00:40:18 -0700117 .accel = FB_ACCEL_NONE
118};
119
Grant Likely3f5b85d2007-07-31 00:37:38 -0700120static struct fb_var_screeninfo xilinx_fb_var = {
Andrei Konovalov147394c2007-05-08 00:40:18 -0700121 .bits_per_pixel = BITS_PER_PIXEL,
122
123 .red = { RED_SHIFT, 8, 0 },
124 .green = { GREEN_SHIFT, 8, 0 },
125 .blue = { BLUE_SHIFT, 8, 0 },
126 .transp = { 0, 0, 0 },
127
128 .activate = FB_ACTIVATE_NOW
129};
130
John Linndac4ccf2009-06-06 10:43:16 -0600131
Michal Simek5130af32013-06-03 12:13:18 +0200132#define BUS_ACCESS_FLAG 0x1 /* 1 = BUS, 0 = DCR */
Michal Simek2121c332013-06-03 12:13:21 +0200133#define LITTLE_ENDIAN_ACCESS 0x2 /* LITTLE ENDIAN IO functions */
John Linndac4ccf2009-06-06 10:43:16 -0600134
Andrei Konovalov147394c2007-05-08 00:40:18 -0700135struct xilinxfb_drvdata {
136
137 struct fb_info info; /* FB driver info record */
138
John Linndac4ccf2009-06-06 10:43:16 -0600139 phys_addr_t regs_phys; /* phys. address of the control
140 registers */
141 void __iomem *regs; /* virt. address of the control
142 registers */
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000143#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -0600144 dcr_host_t dcr_host;
John Linndac4ccf2009-06-06 10:43:16 -0600145 unsigned int dcr_len;
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000146#endif
Grant Likelyb9a22792007-10-04 10:48:37 -0600147 void *fb_virt; /* virt. address of the frame buffer */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700148 dma_addr_t fb_phys; /* phys. address of the frame buffer */
Grant Likely287e5d62007-10-11 04:31:56 +1000149 int fb_alloced; /* Flag, was the fb memory alloced? */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700150
John Linndac4ccf2009-06-06 10:43:16 -0600151 u8 flags; /* features of the driver */
152
Andrei Konovalov147394c2007-05-08 00:40:18 -0700153 u32 reg_ctrl_default;
154
155 u32 pseudo_palette[PALETTE_ENTRIES_NO];
156 /* Fake palette of 16 colors */
157};
158
159#define to_xilinxfb_drvdata(_info) \
160 container_of(_info, struct xilinxfb_drvdata, info)
161
162/*
Michal Simek5130af32013-06-03 12:13:18 +0200163 * The XPS TFT Controller can be accessed through BUS or DCR interface.
John Linndac4ccf2009-06-06 10:43:16 -0600164 * To perform the read/write on the registers we need to check on
165 * which bus its connected and call the appropriate write API.
Andrei Konovalov147394c2007-05-08 00:40:18 -0700166 */
Michal Simekec05e7a2013-06-03 12:13:17 +0200167static void xilinx_fb_out32(struct xilinxfb_drvdata *drvdata, u32 offset,
John Linndac4ccf2009-06-06 10:43:16 -0600168 u32 val)
169{
Michal Simek2121c332013-06-03 12:13:21 +0200170 if (drvdata->flags & BUS_ACCESS_FLAG) {
171 if (drvdata->flags & LITTLE_ENDIAN_ACCESS)
172 iowrite32(val, drvdata->regs + (offset << 2));
173 else
174 iowrite32be(val, drvdata->regs + (offset << 2));
175 }
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000176#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -0600177 else
178 dcr_write(drvdata->dcr_host, offset, val);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000179#endif
John Linndac4ccf2009-06-06 10:43:16 -0600180}
Andrei Konovalov147394c2007-05-08 00:40:18 -0700181
Michal Simek2121c332013-06-03 12:13:21 +0200182static u32 xilinx_fb_in32(struct xilinxfb_drvdata *drvdata, u32 offset)
183{
184 if (drvdata->flags & BUS_ACCESS_FLAG) {
185 if (drvdata->flags & LITTLE_ENDIAN_ACCESS)
186 return ioread32(drvdata->regs + (offset << 2));
187 else
188 return ioread32be(drvdata->regs + (offset << 2));
189 }
190#ifdef CONFIG_PPC_DCR
191 else
192 return dcr_read(drvdata->dcr_host, offset);
193#endif
194 return 0;
195}
196
Andrei Konovalov147394c2007-05-08 00:40:18 -0700197static int
198xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue,
199 unsigned transp, struct fb_info *fbi)
200{
201 u32 *palette = fbi->pseudo_palette;
202
203 if (regno >= PALETTE_ENTRIES_NO)
204 return -EINVAL;
205
206 if (fbi->var.grayscale) {
207 /* Convert color to grayscale.
208 * grayscale = 0.30*R + 0.59*G + 0.11*B */
209 red = green = blue =
210 (red * 77 + green * 151 + blue * 28 + 127) >> 8;
211 }
212
213 /* fbi->fix.visual is always FB_VISUAL_TRUECOLOR */
214
215 /* We only handle 8 bits of each color. */
216 red >>= 8;
217 green >>= 8;
218 blue >>= 8;
219 palette[regno] = (red << RED_SHIFT) | (green << GREEN_SHIFT) |
220 (blue << BLUE_SHIFT);
221
222 return 0;
223}
224
225static int
226xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
227{
228 struct xilinxfb_drvdata *drvdata = to_xilinxfb_drvdata(fbi);
229
230 switch (blank_mode) {
231 case FB_BLANK_UNBLANK:
232 /* turn on panel */
Michal Simekec05e7a2013-06-03 12:13:17 +0200233 xilinx_fb_out32(drvdata, REG_CTRL, drvdata->reg_ctrl_default);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700234 break;
235
236 case FB_BLANK_NORMAL:
237 case FB_BLANK_VSYNC_SUSPEND:
238 case FB_BLANK_HSYNC_SUSPEND:
239 case FB_BLANK_POWERDOWN:
240 /* turn off panel */
Michal Simekec05e7a2013-06-03 12:13:17 +0200241 xilinx_fb_out32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700242 default:
243 break;
244
245 }
246 return 0; /* success */
247}
248
249static struct fb_ops xilinxfb_ops =
250{
251 .owner = THIS_MODULE,
252 .fb_setcolreg = xilinx_fb_setcolreg,
253 .fb_blank = xilinx_fb_blank,
254 .fb_fillrect = cfb_fillrect,
255 .fb_copyarea = cfb_copyarea,
256 .fb_imageblit = cfb_imageblit,
257};
258
Grant Likely26477622007-10-04 10:48:37 -0600259/* ---------------------------------------------------------------------
260 * Bus independent setup/teardown
261 */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700262
Michal Simeka8f045a2013-06-03 12:13:20 +0200263static int xilinxfb_assign(struct platform_device *pdev,
John Linndac4ccf2009-06-06 10:43:16 -0600264 struct xilinxfb_drvdata *drvdata,
Grant Likely01ba1e92007-10-11 04:31:46 +1000265 struct xilinxfb_platform_data *pdata)
Andrei Konovalov147394c2007-05-08 00:40:18 -0700266{
Grant Likely26477622007-10-04 10:48:37 -0600267 int rc;
Michal Simeka8f045a2013-06-03 12:13:20 +0200268 struct device *dev = &pdev->dev;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000269 int fbsize = pdata->xvirt * pdata->yvirt * BYTES_PER_PIXEL;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700270
Michal Simek5130af32013-06-03 12:13:18 +0200271 if (drvdata->flags & BUS_ACCESS_FLAG) {
Michal Simeka8f045a2013-06-03 12:13:20 +0200272 struct resource *res;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700273
Michal Simeka8f045a2013-06-03 12:13:20 +0200274 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawallb1a93292013-08-19 13:20:40 +0200275 drvdata->regs = devm_ioremap_resource(&pdev->dev, res);
Michal Simek718b90a2013-10-10 08:30:22 +0200276 if (IS_ERR(drvdata->regs))
277 return PTR_ERR(drvdata->regs);
278
Julia Lawallb1a93292013-08-19 13:20:40 +0200279 drvdata->regs_phys = res->start;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700280 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700281
282 /* Allocate the framebuffer memory */
Grant Likely287e5d62007-10-11 04:31:56 +1000283 if (pdata->fb_phys) {
284 drvdata->fb_phys = pdata->fb_phys;
285 drvdata->fb_virt = ioremap(pdata->fb_phys, fbsize);
286 } else {
287 drvdata->fb_alloced = 1;
288 drvdata->fb_virt = dma_alloc_coherent(dev, PAGE_ALIGN(fbsize),
289 &drvdata->fb_phys, GFP_KERNEL);
290 }
291
Andrei Konovalov147394c2007-05-08 00:40:18 -0700292 if (!drvdata->fb_virt) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600293 dev_err(dev, "Could not allocate frame buffer memory\n");
Michal Simek718b90a2013-10-10 08:30:22 +0200294 return -ENOMEM;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700295 }
296
297 /* Clear (turn to black) the framebuffer */
Grant Likelyb4d6a722007-10-11 04:31:51 +1000298 memset_io((void __iomem *)drvdata->fb_virt, 0, fbsize);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700299
300 /* Tell the hardware where the frame buffer is */
Michal Simekec05e7a2013-06-03 12:13:17 +0200301 xilinx_fb_out32(drvdata, REG_FB_ADDR, drvdata->fb_phys);
Michal Simek2121c332013-06-03 12:13:21 +0200302 rc = xilinx_fb_in32(drvdata, REG_FB_ADDR);
303 /* Endianess detection */
304 if (rc != drvdata->fb_phys) {
305 drvdata->flags |= LITTLE_ENDIAN_ACCESS;
306 xilinx_fb_out32(drvdata, REG_FB_ADDR, drvdata->fb_phys);
307 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700308
309 /* Turn on the display */
Grant Likelyf53161d2007-07-31 00:37:39 -0700310 drvdata->reg_ctrl_default = REG_CTRL_ENABLE;
Grant Likely01ba1e92007-10-11 04:31:46 +1000311 if (pdata->rotate_screen)
Grant Likelyf53161d2007-07-31 00:37:39 -0700312 drvdata->reg_ctrl_default |= REG_CTRL_ROTATE;
Michal Simekec05e7a2013-06-03 12:13:17 +0200313 xilinx_fb_out32(drvdata, REG_CTRL,
John Linndac4ccf2009-06-06 10:43:16 -0600314 drvdata->reg_ctrl_default);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700315
316 /* Fill struct fb_info */
317 drvdata->info.device = dev;
Grant Likelyb9a22792007-10-04 10:48:37 -0600318 drvdata->info.screen_base = (void __iomem *)drvdata->fb_virt;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700319 drvdata->info.fbops = &xilinxfb_ops;
320 drvdata->info.fix = xilinx_fb_fix;
321 drvdata->info.fix.smem_start = drvdata->fb_phys;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000322 drvdata->info.fix.smem_len = fbsize;
323 drvdata->info.fix.line_length = pdata->xvirt * BYTES_PER_PIXEL;
324
Andrei Konovalov147394c2007-05-08 00:40:18 -0700325 drvdata->info.pseudo_palette = drvdata->pseudo_palette;
Grant Likely26477622007-10-04 10:48:37 -0600326 drvdata->info.flags = FBINFO_DEFAULT;
327 drvdata->info.var = xilinx_fb_var;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000328 drvdata->info.var.height = pdata->screen_height_mm;
329 drvdata->info.var.width = pdata->screen_width_mm;
330 drvdata->info.var.xres = pdata->xres;
331 drvdata->info.var.yres = pdata->yres;
332 drvdata->info.var.xres_virtual = pdata->xvirt;
333 drvdata->info.var.yres_virtual = pdata->yvirt;
Grant Likely26477622007-10-04 10:48:37 -0600334
335 /* Allocate a colour map */
336 rc = fb_alloc_cmap(&drvdata->info.cmap, PALETTE_ENTRIES_NO, 0);
337 if (rc) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600338 dev_err(dev, "Fail to allocate colormap (%d entries)\n",
Andrei Konovalov147394c2007-05-08 00:40:18 -0700339 PALETTE_ENTRIES_NO);
Grant Likely3fb99ce2007-10-04 10:48:37 -0600340 goto err_cmap;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700341 }
342
Andrei Konovalov147394c2007-05-08 00:40:18 -0700343 /* Register new frame buffer */
Grant Likely26477622007-10-04 10:48:37 -0600344 rc = register_framebuffer(&drvdata->info);
345 if (rc) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600346 dev_err(dev, "Could not register frame buffer\n");
Grant Likely3fb99ce2007-10-04 10:48:37 -0600347 goto err_regfb;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700348 }
349
Michal Simek5130af32013-06-03 12:13:18 +0200350 if (drvdata->flags & BUS_ACCESS_FLAG) {
John Linndac4ccf2009-06-06 10:43:16 -0600351 /* Put a banner in the log (for DEBUG) */
Michal Simekbf265c82013-07-25 15:45:26 +0200352 dev_dbg(dev, "regs: phys=%pa, virt=%p\n",
353 &drvdata->regs_phys, drvdata->regs);
John Linndac4ccf2009-06-06 10:43:16 -0600354 }
Grant Likely258de4b2007-10-04 10:48:36 -0600355 /* Put a banner in the log (for DEBUG) */
Grant Likelyaa296a82009-06-17 00:30:02 -0600356 dev_dbg(dev, "fb: phys=%llx, virt=%p, size=%x\n",
357 (unsigned long long)drvdata->fb_phys, drvdata->fb_virt, fbsize);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000358
Andrei Konovalov147394c2007-05-08 00:40:18 -0700359 return 0; /* success */
360
Grant Likely3fb99ce2007-10-04 10:48:37 -0600361err_regfb:
Andrei Konovalov147394c2007-05-08 00:40:18 -0700362 fb_dealloc_cmap(&drvdata->info.cmap);
363
Grant Likely3fb99ce2007-10-04 10:48:37 -0600364err_cmap:
Grant Likely287e5d62007-10-11 04:31:56 +1000365 if (drvdata->fb_alloced)
366 dma_free_coherent(dev, PAGE_ALIGN(fbsize), drvdata->fb_virt,
367 drvdata->fb_phys);
John Linndac4ccf2009-06-06 10:43:16 -0600368 else
369 iounmap(drvdata->fb_virt);
370
Andrei Konovalov147394c2007-05-08 00:40:18 -0700371 /* Turn off the display */
Michal Simekec05e7a2013-06-03 12:13:17 +0200372 xilinx_fb_out32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700373
Grant Likely26477622007-10-04 10:48:37 -0600374 return rc;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700375}
376
Grant Likely26477622007-10-04 10:48:37 -0600377static int xilinxfb_release(struct device *dev)
Andrei Konovalov147394c2007-05-08 00:40:18 -0700378{
Grant Likely26477622007-10-04 10:48:37 -0600379 struct xilinxfb_drvdata *drvdata = dev_get_drvdata(dev);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700380
381#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
382 xilinx_fb_blank(VESA_POWERDOWN, &drvdata->info);
383#endif
384
385 unregister_framebuffer(&drvdata->info);
386
387 fb_dealloc_cmap(&drvdata->info.cmap);
388
Grant Likely287e5d62007-10-11 04:31:56 +1000389 if (drvdata->fb_alloced)
390 dma_free_coherent(dev, PAGE_ALIGN(drvdata->info.fix.smem_len),
391 drvdata->fb_virt, drvdata->fb_phys);
John Linndac4ccf2009-06-06 10:43:16 -0600392 else
393 iounmap(drvdata->fb_virt);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700394
395 /* Turn off the display */
Michal Simekec05e7a2013-06-03 12:13:17 +0200396 xilinx_fb_out32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700397
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000398#ifdef CONFIG_PPC_DCR
Michal Simek718b90a2013-10-10 08:30:22 +0200399 /* Release the resources, as allocated based on interface */
400 if (!(drvdata->flags & BUS_ACCESS_FLAG))
John Linndac4ccf2009-06-06 10:43:16 -0600401 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000402#endif
Andrei Konovalov147394c2007-05-08 00:40:18 -0700403
Andrei Konovalov147394c2007-05-08 00:40:18 -0700404 return 0;
405}
406
Grant Likely26477622007-10-04 10:48:37 -0600407/* ---------------------------------------------------------------------
Grant Likely31e8d462007-10-04 10:48:37 -0600408 * OF bus binding
409 */
410
Michal Simek353846f2013-10-10 08:30:20 +0200411static int xilinxfb_of_probe(struct platform_device *pdev)
Grant Likely31e8d462007-10-04 10:48:37 -0600412{
Grant Likely31e8d462007-10-04 10:48:37 -0600413 const u32 *prop;
Michal Simek0f5e17c2013-06-03 12:13:16 +0200414 u32 tft_access = 0;
Grant Likely01ba1e92007-10-11 04:31:46 +1000415 struct xilinxfb_platform_data pdata;
Michal Simeka8f045a2013-06-03 12:13:20 +0200416 int size;
John Linndac4ccf2009-06-06 10:43:16 -0600417 struct xilinxfb_drvdata *drvdata;
Grant Likely31e8d462007-10-04 10:48:37 -0600418
Grant Likely01ba1e92007-10-11 04:31:46 +1000419 /* Copy with the default pdata (not a ptr reference!) */
420 pdata = xilinx_fb_default_pdata;
421
Grant Likelyaa296a82009-06-17 00:30:02 -0600422 /* Allocate the driver data region */
Michal Simek5c128df2013-10-10 08:30:21 +0200423 drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL);
424 if (!drvdata)
Grant Likelyaa296a82009-06-17 00:30:02 -0600425 return -ENOMEM;
Grant Likelyaa296a82009-06-17 00:30:02 -0600426
John Linndac4ccf2009-06-06 10:43:16 -0600427 /*
Michal Simek5130af32013-06-03 12:13:18 +0200428 * To check whether the core is connected directly to DCR or BUS
John Linndac4ccf2009-06-06 10:43:16 -0600429 * interface and initialize the tft_access accordingly.
430 */
Michal Simek353846f2013-10-10 08:30:20 +0200431 of_property_read_u32(pdev->dev.of_node, "xlnx,dcr-splb-slave-if",
Michal Simek0f5e17c2013-06-03 12:13:16 +0200432 &tft_access);
John Linndac4ccf2009-06-06 10:43:16 -0600433
434 /*
Michal Simek5130af32013-06-03 12:13:18 +0200435 * Fill the resource structure if its direct BUS interface
John Linndac4ccf2009-06-06 10:43:16 -0600436 * otherwise fill the dcr_host structure.
437 */
438 if (tft_access) {
Michal Simek5130af32013-06-03 12:13:18 +0200439 drvdata->flags |= BUS_ACCESS_FLAG;
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000440 }
441#ifdef CONFIG_PPC_DCR
442 else {
443 int start;
Stephen Rothwell33826d02013-10-29 01:18:22 +1100444 start = dcr_resource_start(pdev->dev.of_node, 0);
445 drvdata->dcr_len = dcr_resource_len(pdev->dev.of_node, 0);
446 drvdata->dcr_host = dcr_map(pdev->dev.of_node, start, drvdata->dcr_len);
Grant Likelyaa296a82009-06-17 00:30:02 -0600447 if (!DCR_MAP_OK(drvdata->dcr_host)) {
Stephen Rothwell33826d02013-10-29 01:18:22 +1100448 dev_err(&pdev->dev, "invalid DCR address\n");
Michal Simeka8f045a2013-06-03 12:13:20 +0200449 return -ENODEV;
John Linndac4ccf2009-06-06 10:43:16 -0600450 }
Grant Likely31e8d462007-10-04 10:48:37 -0600451 }
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000452#endif
Grant Likely31e8d462007-10-04 10:48:37 -0600453
Michal Simek353846f2013-10-10 08:30:20 +0200454 prop = of_get_property(pdev->dev.of_node, "phys-size", &size);
Grant Likely31e8d462007-10-04 10:48:37 -0600455 if ((prop) && (size >= sizeof(u32)*2)) {
Grant Likely01ba1e92007-10-11 04:31:46 +1000456 pdata.screen_width_mm = prop[0];
457 pdata.screen_height_mm = prop[1];
Grant Likely31e8d462007-10-04 10:48:37 -0600458 }
459
Michal Simek353846f2013-10-10 08:30:20 +0200460 prop = of_get_property(pdev->dev.of_node, "resolution", &size);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000461 if ((prop) && (size >= sizeof(u32)*2)) {
462 pdata.xres = prop[0];
463 pdata.yres = prop[1];
464 }
465
Michal Simek353846f2013-10-10 08:30:20 +0200466 prop = of_get_property(pdev->dev.of_node, "virtual-resolution", &size);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000467 if ((prop) && (size >= sizeof(u32)*2)) {
468 pdata.xvirt = prop[0];
469 pdata.yvirt = prop[1];
470 }
471
Michal Simek353846f2013-10-10 08:30:20 +0200472 if (of_find_property(pdev->dev.of_node, "rotate-display", NULL))
Grant Likely01ba1e92007-10-11 04:31:46 +1000473 pdata.rotate_screen = 1;
Grant Likely31e8d462007-10-04 10:48:37 -0600474
Michal Simek353846f2013-10-10 08:30:20 +0200475 dev_set_drvdata(&pdev->dev, drvdata);
476 return xilinxfb_assign(pdev, drvdata, &pdata);
Grant Likely31e8d462007-10-04 10:48:37 -0600477}
478
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800479static int xilinxfb_of_remove(struct platform_device *op)
Grant Likely31e8d462007-10-04 10:48:37 -0600480{
481 return xilinxfb_release(&op->dev);
482}
483
484/* Match table for of_platform binding */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800485static struct of_device_id xilinxfb_of_match[] = {
John Linndac4ccf2009-06-06 10:43:16 -0600486 { .compatible = "xlnx,xps-tft-1.00.a", },
Adrian Alonso652078b2010-07-27 11:24:13 +0000487 { .compatible = "xlnx,xps-tft-2.00.a", },
488 { .compatible = "xlnx,xps-tft-2.01.a", },
Stephen Neuendorffer0e349b02008-01-09 06:35:05 +1100489 { .compatible = "xlnx,plb-tft-cntlr-ref-1.00.a", },
John Linndac4ccf2009-06-06 10:43:16 -0600490 { .compatible = "xlnx,plb-dvi-cntlr-ref-1.00.c", },
Grant Likely31e8d462007-10-04 10:48:37 -0600491 {},
492};
493MODULE_DEVICE_TABLE(of, xilinxfb_of_match);
494
Grant Likely28541d02011-02-22 21:07:43 -0700495static struct platform_driver xilinxfb_of_driver = {
Grant Likely31e8d462007-10-04 10:48:37 -0600496 .probe = xilinxfb_of_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800497 .remove = xilinxfb_of_remove,
Grant Likely31e8d462007-10-04 10:48:37 -0600498 .driver = {
499 .name = DRIVER_NAME,
Grant Likely40182942010-04-13 16:13:02 -0700500 .of_match_table = xilinxfb_of_match,
Grant Likely31e8d462007-10-04 10:48:37 -0600501 },
502};
503
Axel Lin4277f2c2011-11-26 10:25:54 +0800504module_platform_driver(xilinxfb_of_driver);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700505
506MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
John Linndac4ccf2009-06-06 10:43:16 -0600507MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
Andrei Konovalov147394c2007-05-08 00:40:18 -0700508MODULE_LICENSE("GPL");