blob: 84c664ea8eb9d014e101f3d22f614352cde306ef [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/*
Michal Simek5130af32013-06-03 12:13:18 +020047 * Xilinx calls it "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 *
Michal Simek5130af32013-06-03 12:13:18 +020057 * In case of direct BUS access the second control register will be at
John Linndac4ccf2009-06-06 10:43:16 -060058 * 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
Michal Simekec05e7a2013-06-03 12:13:17 +020060 * xilinx_fb_out32 where it left shifts the offset 2 times in case of
Michal Simek5130af32013-06-03 12:13:18 +020061 * direct BUS 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
Michal Simek5130af32013-06-03 12:13:18 +0200119#define BUS_ACCESS_FLAG 0x1 /* 1 = BUS, 0 = DCR */
Michal Simek2121c332013-06-03 12:13:21 +0200120#define LITTLE_ENDIAN_ACCESS 0x2 /* LITTLE ENDIAN IO functions */
John Linndac4ccf2009-06-06 10:43:16 -0600121
Andrei Konovalov147394c2007-05-08 00:40:18 -0700122struct xilinxfb_drvdata {
123
124 struct fb_info info; /* FB driver info record */
125
John Linndac4ccf2009-06-06 10:43:16 -0600126 phys_addr_t regs_phys; /* phys. address of the control
127 registers */
128 void __iomem *regs; /* virt. address of the control
129 registers */
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000130#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -0600131 dcr_host_t dcr_host;
John Linndac4ccf2009-06-06 10:43:16 -0600132 unsigned int dcr_len;
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000133#endif
Grant Likelyb9a22792007-10-04 10:48:37 -0600134 void *fb_virt; /* virt. address of the frame buffer */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700135 dma_addr_t fb_phys; /* phys. address of the frame buffer */
Grant Likely287e5d62007-10-11 04:31:56 +1000136 int fb_alloced; /* Flag, was the fb memory alloced? */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700137
John Linndac4ccf2009-06-06 10:43:16 -0600138 u8 flags; /* features of the driver */
139
Andrei Konovalov147394c2007-05-08 00:40:18 -0700140 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/*
Michal Simek5130af32013-06-03 12:13:18 +0200150 * The XPS TFT Controller can be accessed through BUS or DCR interface.
John Linndac4ccf2009-06-06 10:43:16 -0600151 * To perform the read/write on the registers we need to check on
152 * which bus its connected and call the appropriate write API.
Andrei Konovalov147394c2007-05-08 00:40:18 -0700153 */
Michal Simekec05e7a2013-06-03 12:13:17 +0200154static void xilinx_fb_out32(struct xilinxfb_drvdata *drvdata, u32 offset,
John Linndac4ccf2009-06-06 10:43:16 -0600155 u32 val)
156{
Michal Simek2121c332013-06-03 12:13:21 +0200157 if (drvdata->flags & BUS_ACCESS_FLAG) {
158 if (drvdata->flags & LITTLE_ENDIAN_ACCESS)
159 iowrite32(val, drvdata->regs + (offset << 2));
160 else
161 iowrite32be(val, drvdata->regs + (offset << 2));
162 }
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000163#ifdef CONFIG_PPC_DCR
John Linndac4ccf2009-06-06 10:43:16 -0600164 else
165 dcr_write(drvdata->dcr_host, offset, val);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000166#endif
John Linndac4ccf2009-06-06 10:43:16 -0600167}
Andrei Konovalov147394c2007-05-08 00:40:18 -0700168
Michal Simek2121c332013-06-03 12:13:21 +0200169static u32 xilinx_fb_in32(struct xilinxfb_drvdata *drvdata, u32 offset)
170{
171 if (drvdata->flags & BUS_ACCESS_FLAG) {
172 if (drvdata->flags & LITTLE_ENDIAN_ACCESS)
173 return ioread32(drvdata->regs + (offset << 2));
174 else
175 return ioread32be(drvdata->regs + (offset << 2));
176 }
177#ifdef CONFIG_PPC_DCR
178 else
179 return dcr_read(drvdata->dcr_host, offset);
180#endif
181 return 0;
182}
183
Andrei Konovalov147394c2007-05-08 00:40:18 -0700184static int
185xilinx_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue,
186 unsigned transp, struct fb_info *fbi)
187{
188 u32 *palette = fbi->pseudo_palette;
189
190 if (regno >= PALETTE_ENTRIES_NO)
191 return -EINVAL;
192
193 if (fbi->var.grayscale) {
194 /* Convert color to grayscale.
195 * grayscale = 0.30*R + 0.59*G + 0.11*B */
196 red = green = blue =
197 (red * 77 + green * 151 + blue * 28 + 127) >> 8;
198 }
199
200 /* fbi->fix.visual is always FB_VISUAL_TRUECOLOR */
201
202 /* We only handle 8 bits of each color. */
203 red >>= 8;
204 green >>= 8;
205 blue >>= 8;
206 palette[regno] = (red << RED_SHIFT) | (green << GREEN_SHIFT) |
207 (blue << BLUE_SHIFT);
208
209 return 0;
210}
211
212static int
213xilinx_fb_blank(int blank_mode, struct fb_info *fbi)
214{
215 struct xilinxfb_drvdata *drvdata = to_xilinxfb_drvdata(fbi);
216
217 switch (blank_mode) {
218 case FB_BLANK_UNBLANK:
219 /* turn on panel */
Michal Simekec05e7a2013-06-03 12:13:17 +0200220 xilinx_fb_out32(drvdata, REG_CTRL, drvdata->reg_ctrl_default);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700221 break;
222
223 case FB_BLANK_NORMAL:
224 case FB_BLANK_VSYNC_SUSPEND:
225 case FB_BLANK_HSYNC_SUSPEND:
226 case FB_BLANK_POWERDOWN:
227 /* turn off panel */
Michal Simekec05e7a2013-06-03 12:13:17 +0200228 xilinx_fb_out32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700229 default:
230 break;
231
232 }
233 return 0; /* success */
234}
235
236static struct fb_ops xilinxfb_ops =
237{
238 .owner = THIS_MODULE,
239 .fb_setcolreg = xilinx_fb_setcolreg,
240 .fb_blank = xilinx_fb_blank,
241 .fb_fillrect = cfb_fillrect,
242 .fb_copyarea = cfb_copyarea,
243 .fb_imageblit = cfb_imageblit,
244};
245
Grant Likely26477622007-10-04 10:48:37 -0600246/* ---------------------------------------------------------------------
247 * Bus independent setup/teardown
248 */
Andrei Konovalov147394c2007-05-08 00:40:18 -0700249
Michal Simeka8f045a2013-06-03 12:13:20 +0200250static int xilinxfb_assign(struct platform_device *pdev,
John Linndac4ccf2009-06-06 10:43:16 -0600251 struct xilinxfb_drvdata *drvdata,
Grant Likely01ba1e92007-10-11 04:31:46 +1000252 struct xilinxfb_platform_data *pdata)
Andrei Konovalov147394c2007-05-08 00:40:18 -0700253{
Grant Likely26477622007-10-04 10:48:37 -0600254 int rc;
Michal Simeka8f045a2013-06-03 12:13:20 +0200255 struct device *dev = &pdev->dev;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000256 int fbsize = pdata->xvirt * pdata->yvirt * BYTES_PER_PIXEL;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700257
Michal Simek5130af32013-06-03 12:13:18 +0200258 if (drvdata->flags & BUS_ACCESS_FLAG) {
Michal Simeka8f045a2013-06-03 12:13:20 +0200259 struct resource *res;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700260
Michal Simeka8f045a2013-06-03 12:13:20 +0200261 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawallb1a93292013-08-19 13:20:40 +0200262 drvdata->regs = devm_ioremap_resource(&pdev->dev, res);
263 if (IS_ERR(drvdata->regs)) {
264 rc = PTR_ERR(drvdata->regs);
Michal Simeka8f045a2013-06-03 12:13:20 +0200265 goto err_region;
John Linndac4ccf2009-06-06 10:43:16 -0600266 }
Julia Lawallb1a93292013-08-19 13:20:40 +0200267 drvdata->regs_phys = res->start;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700268 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700269
270 /* Allocate the framebuffer memory */
Grant Likely287e5d62007-10-11 04:31:56 +1000271 if (pdata->fb_phys) {
272 drvdata->fb_phys = pdata->fb_phys;
273 drvdata->fb_virt = ioremap(pdata->fb_phys, fbsize);
274 } else {
275 drvdata->fb_alloced = 1;
276 drvdata->fb_virt = dma_alloc_coherent(dev, PAGE_ALIGN(fbsize),
277 &drvdata->fb_phys, GFP_KERNEL);
278 }
279
Andrei Konovalov147394c2007-05-08 00:40:18 -0700280 if (!drvdata->fb_virt) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600281 dev_err(dev, "Could not allocate frame buffer memory\n");
Grant Likely26477622007-10-04 10:48:37 -0600282 rc = -ENOMEM;
Michal Simek5130af32013-06-03 12:13:18 +0200283 if (drvdata->flags & BUS_ACCESS_FLAG)
John Linndac4ccf2009-06-06 10:43:16 -0600284 goto err_fbmem;
285 else
286 goto err_region;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700287 }
288
289 /* Clear (turn to black) the framebuffer */
Grant Likelyb4d6a722007-10-11 04:31:51 +1000290 memset_io((void __iomem *)drvdata->fb_virt, 0, fbsize);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700291
292 /* Tell the hardware where the frame buffer is */
Michal Simekec05e7a2013-06-03 12:13:17 +0200293 xilinx_fb_out32(drvdata, REG_FB_ADDR, drvdata->fb_phys);
Michal Simek2121c332013-06-03 12:13:21 +0200294 rc = xilinx_fb_in32(drvdata, REG_FB_ADDR);
295 /* Endianess detection */
296 if (rc != drvdata->fb_phys) {
297 drvdata->flags |= LITTLE_ENDIAN_ACCESS;
298 xilinx_fb_out32(drvdata, REG_FB_ADDR, drvdata->fb_phys);
299 }
Andrei Konovalov147394c2007-05-08 00:40:18 -0700300
301 /* Turn on the display */
Grant Likelyf53161d2007-07-31 00:37:39 -0700302 drvdata->reg_ctrl_default = REG_CTRL_ENABLE;
Grant Likely01ba1e92007-10-11 04:31:46 +1000303 if (pdata->rotate_screen)
Grant Likelyf53161d2007-07-31 00:37:39 -0700304 drvdata->reg_ctrl_default |= REG_CTRL_ROTATE;
Michal Simekec05e7a2013-06-03 12:13:17 +0200305 xilinx_fb_out32(drvdata, REG_CTRL,
John Linndac4ccf2009-06-06 10:43:16 -0600306 drvdata->reg_ctrl_default);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700307
308 /* Fill struct fb_info */
309 drvdata->info.device = dev;
Grant Likelyb9a22792007-10-04 10:48:37 -0600310 drvdata->info.screen_base = (void __iomem *)drvdata->fb_virt;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700311 drvdata->info.fbops = &xilinxfb_ops;
312 drvdata->info.fix = xilinx_fb_fix;
313 drvdata->info.fix.smem_start = drvdata->fb_phys;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000314 drvdata->info.fix.smem_len = fbsize;
315 drvdata->info.fix.line_length = pdata->xvirt * BYTES_PER_PIXEL;
316
Andrei Konovalov147394c2007-05-08 00:40:18 -0700317 drvdata->info.pseudo_palette = drvdata->pseudo_palette;
Grant Likely26477622007-10-04 10:48:37 -0600318 drvdata->info.flags = FBINFO_DEFAULT;
319 drvdata->info.var = xilinx_fb_var;
Grant Likelyb4d6a722007-10-11 04:31:51 +1000320 drvdata->info.var.height = pdata->screen_height_mm;
321 drvdata->info.var.width = pdata->screen_width_mm;
322 drvdata->info.var.xres = pdata->xres;
323 drvdata->info.var.yres = pdata->yres;
324 drvdata->info.var.xres_virtual = pdata->xvirt;
325 drvdata->info.var.yres_virtual = pdata->yvirt;
Grant Likely26477622007-10-04 10:48:37 -0600326
327 /* Allocate a colour map */
328 rc = fb_alloc_cmap(&drvdata->info.cmap, PALETTE_ENTRIES_NO, 0);
329 if (rc) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600330 dev_err(dev, "Fail to allocate colormap (%d entries)\n",
Andrei Konovalov147394c2007-05-08 00:40:18 -0700331 PALETTE_ENTRIES_NO);
Grant Likely3fb99ce2007-10-04 10:48:37 -0600332 goto err_cmap;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700333 }
334
Andrei Konovalov147394c2007-05-08 00:40:18 -0700335 /* Register new frame buffer */
Grant Likely26477622007-10-04 10:48:37 -0600336 rc = register_framebuffer(&drvdata->info);
337 if (rc) {
Grant Likely3cb3ec22007-10-04 10:48:36 -0600338 dev_err(dev, "Could not register frame buffer\n");
Grant Likely3fb99ce2007-10-04 10:48:37 -0600339 goto err_regfb;
Andrei Konovalov147394c2007-05-08 00:40:18 -0700340 }
341
Michal Simek5130af32013-06-03 12:13:18 +0200342 if (drvdata->flags & BUS_ACCESS_FLAG) {
John Linndac4ccf2009-06-06 10:43:16 -0600343 /* Put a banner in the log (for DEBUG) */
Michal Simekbf265c82013-07-25 15:45:26 +0200344 dev_dbg(dev, "regs: phys=%pa, virt=%p\n",
345 &drvdata->regs_phys, drvdata->regs);
John Linndac4ccf2009-06-06 10:43:16 -0600346 }
Grant Likely258de4b2007-10-04 10:48:36 -0600347 /* Put a banner in the log (for DEBUG) */
Grant Likelyaa296a82009-06-17 00:30:02 -0600348 dev_dbg(dev, "fb: phys=%llx, virt=%p, size=%x\n",
349 (unsigned long long)drvdata->fb_phys, drvdata->fb_virt, fbsize);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000350
Andrei Konovalov147394c2007-05-08 00:40:18 -0700351 return 0; /* success */
352
Grant Likely3fb99ce2007-10-04 10:48:37 -0600353err_regfb:
Andrei Konovalov147394c2007-05-08 00:40:18 -0700354 fb_dealloc_cmap(&drvdata->info.cmap);
355
Grant Likely3fb99ce2007-10-04 10:48:37 -0600356err_cmap:
Grant Likely287e5d62007-10-11 04:31:56 +1000357 if (drvdata->fb_alloced)
358 dma_free_coherent(dev, PAGE_ALIGN(fbsize), drvdata->fb_virt,
359 drvdata->fb_phys);
John Linndac4ccf2009-06-06 10:43:16 -0600360 else
361 iounmap(drvdata->fb_virt);
362
Andrei Konovalov147394c2007-05-08 00:40:18 -0700363 /* Turn off the display */
Michal Simekec05e7a2013-06-03 12:13:17 +0200364 xilinx_fb_out32(drvdata, REG_CTRL, 0);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700365
Grant Likely3fb99ce2007-10-04 10:48:37 -0600366err_fbmem:
Michal Simek5130af32013-06-03 12:13:18 +0200367 if (drvdata->flags & BUS_ACCESS_FLAG)
Michal Simeka8f045a2013-06-03 12:13:20 +0200368 devm_iounmap(dev, drvdata->regs);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700369
Grant Likely3fb99ce2007-10-04 10:48:37 -0600370err_region:
Andrei Konovalov147394c2007-05-08 00:40:18 -0700371 kfree(drvdata);
372 dev_set_drvdata(dev, NULL);
373
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
John Linndac4ccf2009-06-06 10:43:16 -0600398 /* Release the resources, as allocated based on interface */
Michal Simeka8f045a2013-06-03 12:13:20 +0200399 if (drvdata->flags & BUS_ACCESS_FLAG)
400 devm_iounmap(dev, drvdata->regs);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000401#ifdef CONFIG_PPC_DCR
402 else
John Linndac4ccf2009-06-06 10:43:16 -0600403 dcr_unmap(drvdata->dcr_host, drvdata->dcr_len);
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000404#endif
Andrei Konovalov147394c2007-05-08 00:40:18 -0700405
406 kfree(drvdata);
407 dev_set_drvdata(dev, NULL);
408
409 return 0;
410}
411
Grant Likely26477622007-10-04 10:48:37 -0600412/* ---------------------------------------------------------------------
Grant Likely31e8d462007-10-04 10:48:37 -0600413 * OF bus binding
414 */
415
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800416static int xilinxfb_of_probe(struct platform_device *op)
Grant Likely31e8d462007-10-04 10:48:37 -0600417{
Grant Likely31e8d462007-10-04 10:48:37 -0600418 const u32 *prop;
Michal Simek0f5e17c2013-06-03 12:13:16 +0200419 u32 tft_access = 0;
Grant Likely01ba1e92007-10-11 04:31:46 +1000420 struct xilinxfb_platform_data pdata;
Michal Simeka8f045a2013-06-03 12:13:20 +0200421 int size;
John Linndac4ccf2009-06-06 10:43:16 -0600422 struct xilinxfb_drvdata *drvdata;
Grant Likely31e8d462007-10-04 10:48:37 -0600423
Grant Likely01ba1e92007-10-11 04:31:46 +1000424 /* Copy with the default pdata (not a ptr reference!) */
425 pdata = xilinx_fb_default_pdata;
426
Grant Likelyaa296a82009-06-17 00:30:02 -0600427 /* Allocate the driver data region */
428 drvdata = kzalloc(sizeof(*drvdata), GFP_KERNEL);
429 if (!drvdata) {
430 dev_err(&op->dev, "Couldn't allocate device private record\n");
431 return -ENOMEM;
432 }
433
John Linndac4ccf2009-06-06 10:43:16 -0600434 /*
Michal Simek5130af32013-06-03 12:13:18 +0200435 * To check whether the core is connected directly to DCR or BUS
John Linndac4ccf2009-06-06 10:43:16 -0600436 * interface and initialize the tft_access accordingly.
437 */
Michal Simek0f5e17c2013-06-03 12:13:16 +0200438 of_property_read_u32(op->dev.of_node, "xlnx,dcr-splb-slave-if",
439 &tft_access);
John Linndac4ccf2009-06-06 10:43:16 -0600440
441 /*
Michal Simek5130af32013-06-03 12:13:18 +0200442 * Fill the resource structure if its direct BUS interface
John Linndac4ccf2009-06-06 10:43:16 -0600443 * otherwise fill the dcr_host structure.
444 */
445 if (tft_access) {
Michal Simek5130af32013-06-03 12:13:18 +0200446 drvdata->flags |= BUS_ACCESS_FLAG;
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000447 }
448#ifdef CONFIG_PPC_DCR
449 else {
450 int start;
Grant Likely61c7a082010-04-13 16:12:29 -0700451 start = dcr_resource_start(op->dev.of_node, 0);
452 drvdata->dcr_len = dcr_resource_len(op->dev.of_node, 0);
453 drvdata->dcr_host = dcr_map(op->dev.of_node, start, drvdata->dcr_len);
Grant Likelyaa296a82009-06-17 00:30:02 -0600454 if (!DCR_MAP_OK(drvdata->dcr_host)) {
455 dev_err(&op->dev, "invalid DCR address\n");
Michal Simeka8f045a2013-06-03 12:13:20 +0200456 kfree(drvdata);
457 return -ENODEV;
John Linndac4ccf2009-06-06 10:43:16 -0600458 }
Grant Likely31e8d462007-10-04 10:48:37 -0600459 }
Michal Simeka1dfe9c2010-10-07 17:39:03 +1000460#endif
Grant Likely31e8d462007-10-04 10:48:37 -0600461
Grant Likely61c7a082010-04-13 16:12:29 -0700462 prop = of_get_property(op->dev.of_node, "phys-size", &size);
Grant Likely31e8d462007-10-04 10:48:37 -0600463 if ((prop) && (size >= sizeof(u32)*2)) {
Grant Likely01ba1e92007-10-11 04:31:46 +1000464 pdata.screen_width_mm = prop[0];
465 pdata.screen_height_mm = prop[1];
Grant Likely31e8d462007-10-04 10:48:37 -0600466 }
467
Grant Likely61c7a082010-04-13 16:12:29 -0700468 prop = of_get_property(op->dev.of_node, "resolution", &size);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000469 if ((prop) && (size >= sizeof(u32)*2)) {
470 pdata.xres = prop[0];
471 pdata.yres = prop[1];
472 }
473
Grant Likely61c7a082010-04-13 16:12:29 -0700474 prop = of_get_property(op->dev.of_node, "virtual-resolution", &size);
Grant Likelyb4d6a722007-10-11 04:31:51 +1000475 if ((prop) && (size >= sizeof(u32)*2)) {
476 pdata.xvirt = prop[0];
477 pdata.yvirt = prop[1];
478 }
479
Grant Likely61c7a082010-04-13 16:12:29 -0700480 if (of_find_property(op->dev.of_node, "rotate-display", NULL))
Grant Likely01ba1e92007-10-11 04:31:46 +1000481 pdata.rotate_screen = 1;
Grant Likely31e8d462007-10-04 10:48:37 -0600482
John Linndac4ccf2009-06-06 10:43:16 -0600483 dev_set_drvdata(&op->dev, drvdata);
Michal Simeka8f045a2013-06-03 12:13:20 +0200484 return xilinxfb_assign(op, drvdata, &pdata);
Grant Likely31e8d462007-10-04 10:48:37 -0600485}
486
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800487static int xilinxfb_of_remove(struct platform_device *op)
Grant Likely31e8d462007-10-04 10:48:37 -0600488{
489 return xilinxfb_release(&op->dev);
490}
491
492/* Match table for of_platform binding */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800493static struct of_device_id xilinxfb_of_match[] = {
John Linndac4ccf2009-06-06 10:43:16 -0600494 { .compatible = "xlnx,xps-tft-1.00.a", },
Adrian Alonso652078b2010-07-27 11:24:13 +0000495 { .compatible = "xlnx,xps-tft-2.00.a", },
496 { .compatible = "xlnx,xps-tft-2.01.a", },
Stephen Neuendorffer0e349b02008-01-09 06:35:05 +1100497 { .compatible = "xlnx,plb-tft-cntlr-ref-1.00.a", },
John Linndac4ccf2009-06-06 10:43:16 -0600498 { .compatible = "xlnx,plb-dvi-cntlr-ref-1.00.c", },
Grant Likely31e8d462007-10-04 10:48:37 -0600499 {},
500};
501MODULE_DEVICE_TABLE(of, xilinxfb_of_match);
502
Grant Likely28541d02011-02-22 21:07:43 -0700503static struct platform_driver xilinxfb_of_driver = {
Grant Likely31e8d462007-10-04 10:48:37 -0600504 .probe = xilinxfb_of_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800505 .remove = xilinxfb_of_remove,
Grant Likely31e8d462007-10-04 10:48:37 -0600506 .driver = {
507 .name = DRIVER_NAME,
Grant Likely40182942010-04-13 16:13:02 -0700508 .owner = THIS_MODULE,
509 .of_match_table = xilinxfb_of_match,
Grant Likely31e8d462007-10-04 10:48:37 -0600510 },
511};
512
Axel Lin4277f2c2011-11-26 10:25:54 +0800513module_platform_driver(xilinxfb_of_driver);
Andrei Konovalov147394c2007-05-08 00:40:18 -0700514
515MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
John Linndac4ccf2009-06-06 10:43:16 -0600516MODULE_DESCRIPTION("Xilinx TFT frame buffer driver");
Andrei Konovalov147394c2007-05-08 00:40:18 -0700517MODULE_LICENSE("GPL");