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