au1100fb.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. /*
  2. * BRIEF MODULE DESCRIPTION
  3. * Au1100 LCD Driver.
  4. *
  5. * Rewritten for 2.6 by Embedded Alley Solutions
  6. * <[email protected]>, based on submissions by
  7. * Karl Lessard <[email protected]>
  8. * <[email protected]>
  9. *
  10. * PM support added by Rodolfo Giometti <[email protected]>
  11. * Cursor enable/disable by Rodolfo Giometti <[email protected]>
  12. *
  13. * Copyright 2002 MontaVista Software
  14. * Author: MontaVista Software, Inc.
  15. * [email protected] or [email protected]
  16. *
  17. * Copyright 2002 Alchemy Semiconductor
  18. * Author: Alchemy Semiconductor
  19. *
  20. * Based on:
  21. * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device
  22. * Created 28 Dec 1997 by Geert Uytterhoeven
  23. *
  24. * This program is free software; you can redistribute it and/or modify it
  25. * under the terms of the GNU General Public License as published by the
  26. * Free Software Foundation; either version 2 of the License, or (at your
  27. * option) any later version.
  28. *
  29. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  30. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  31. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  32. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  33. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  34. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  35. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  36. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  37. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  38. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  39. *
  40. * You should have received a copy of the GNU General Public License along
  41. * with this program; if not, write to the Free Software Foundation, Inc.,
  42. * 675 Mass Ave, Cambridge, MA 02139, USA.
  43. */
  44. #include <linux/clk.h>
  45. #include <linux/module.h>
  46. #include <linux/kernel.h>
  47. #include <linux/errno.h>
  48. #include <linux/string.h>
  49. #include <linux/mm.h>
  50. #include <linux/fb.h>
  51. #include <linux/init.h>
  52. #include <linux/interrupt.h>
  53. #include <linux/ctype.h>
  54. #include <linux/dma-mapping.h>
  55. #include <linux/platform_device.h>
  56. #include <linux/slab.h>
  57. #include <asm/mach-au1x00/au1000.h>
  58. #define DEBUG 0
  59. #include "au1100fb.h"
  60. #define DRIVER_NAME "au1100fb"
  61. #define DRIVER_DESC "LCD controller driver for AU1100 processors"
  62. #define to_au1100fb_device(_info) \
  63. (_info ? container_of(_info, struct au1100fb_device, info) : NULL);
  64. /* Bitfields format supported by the controller. Note that the order of formats
  65. * SHOULD be the same as in the LCD_CONTROL_SBPPF field, so we can retrieve the
  66. * right pixel format by doing rgb_bitfields[LCD_CONTROL_SBPPF_XXX >> LCD_CONTROL_SBPPF]
  67. */
  68. struct fb_bitfield rgb_bitfields[][4] =
  69. {
  70. /* Red, Green, Blue, Transp */
  71. { { 10, 6, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
  72. { { 11, 5, 0 }, { 5, 6, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
  73. { { 11, 5, 0 }, { 6, 5, 0 }, { 0, 6, 0 }, { 0, 0, 0 } },
  74. { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 15, 1, 0 } },
  75. { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 1, 0 } },
  76. /* The last is used to describe 12bpp format */
  77. { { 8, 4, 0 }, { 4, 4, 0 }, { 0, 4, 0 }, { 0, 0, 0 } },
  78. };
  79. static struct fb_fix_screeninfo au1100fb_fix = {
  80. .id = "AU1100 FB",
  81. .xpanstep = 1,
  82. .ypanstep = 1,
  83. .type = FB_TYPE_PACKED_PIXELS,
  84. .accel = FB_ACCEL_NONE,
  85. };
  86. static struct fb_var_screeninfo au1100fb_var = {
  87. .activate = FB_ACTIVATE_NOW,
  88. .height = -1,
  89. .width = -1,
  90. .vmode = FB_VMODE_NONINTERLACED,
  91. };
  92. /* fb_blank
  93. * Blank the screen. Depending on the mode, the screen will be
  94. * activated with the backlight color, or desactivated
  95. */
  96. static int au1100fb_fb_blank(int blank_mode, struct fb_info *fbi)
  97. {
  98. struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
  99. print_dbg("fb_blank %d %p", blank_mode, fbi);
  100. switch (blank_mode) {
  101. case VESA_NO_BLANKING:
  102. /* Turn on panel */
  103. fbdev->regs->lcd_control |= LCD_CONTROL_GO;
  104. wmb(); /* drain writebuffer */
  105. break;
  106. case VESA_VSYNC_SUSPEND:
  107. case VESA_HSYNC_SUSPEND:
  108. case VESA_POWERDOWN:
  109. /* Turn off panel */
  110. fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
  111. wmb(); /* drain writebuffer */
  112. break;
  113. default:
  114. break;
  115. }
  116. return 0;
  117. }
  118. /*
  119. * Set hardware with var settings. This will enable the controller with a specific
  120. * mode, normally validated with the fb_check_var method
  121. */
  122. int au1100fb_setmode(struct au1100fb_device *fbdev)
  123. {
  124. struct fb_info *info = &fbdev->info;
  125. u32 words;
  126. int index;
  127. if (!fbdev)
  128. return -EINVAL;
  129. /* Update var-dependent FB info */
  130. if (panel_is_active(fbdev->panel) || panel_is_color(fbdev->panel)) {
  131. if (info->var.bits_per_pixel <= 8) {
  132. /* palettized */
  133. info->var.red.offset = 0;
  134. info->var.red.length = info->var.bits_per_pixel;
  135. info->var.red.msb_right = 0;
  136. info->var.green.offset = 0;
  137. info->var.green.length = info->var.bits_per_pixel;
  138. info->var.green.msb_right = 0;
  139. info->var.blue.offset = 0;
  140. info->var.blue.length = info->var.bits_per_pixel;
  141. info->var.blue.msb_right = 0;
  142. info->var.transp.offset = 0;
  143. info->var.transp.length = 0;
  144. info->var.transp.msb_right = 0;
  145. info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
  146. info->fix.line_length = info->var.xres_virtual /
  147. (8/info->var.bits_per_pixel);
  148. } else {
  149. /* non-palettized */
  150. index = (fbdev->panel->control_base & LCD_CONTROL_SBPPF_MASK) >> LCD_CONTROL_SBPPF_BIT;
  151. info->var.red = rgb_bitfields[index][0];
  152. info->var.green = rgb_bitfields[index][1];
  153. info->var.blue = rgb_bitfields[index][2];
  154. info->var.transp = rgb_bitfields[index][3];
  155. info->fix.visual = FB_VISUAL_TRUECOLOR;
  156. info->fix.line_length = info->var.xres_virtual << 1; /* depth=16 */
  157. }
  158. } else {
  159. /* mono */
  160. info->fix.visual = FB_VISUAL_MONO10;
  161. info->fix.line_length = info->var.xres_virtual / 8;
  162. }
  163. info->screen_size = info->fix.line_length * info->var.yres_virtual;
  164. info->var.rotate = ((fbdev->panel->control_base&LCD_CONTROL_SM_MASK) \
  165. >> LCD_CONTROL_SM_BIT) * 90;
  166. /* Determine BPP mode and format */
  167. fbdev->regs->lcd_control = fbdev->panel->control_base;
  168. fbdev->regs->lcd_horztiming = fbdev->panel->horztiming;
  169. fbdev->regs->lcd_verttiming = fbdev->panel->verttiming;
  170. fbdev->regs->lcd_clkcontrol = fbdev->panel->clkcontrol_base;
  171. fbdev->regs->lcd_intenable = 0;
  172. fbdev->regs->lcd_intstatus = 0;
  173. fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(fbdev->fb_phys);
  174. if (panel_is_dual(fbdev->panel)) {
  175. /* Second panel display seconf half of screen if possible,
  176. * otherwise display the same as the first panel */
  177. if (info->var.yres_virtual >= (info->var.yres << 1)) {
  178. fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys +
  179. (info->fix.line_length *
  180. (info->var.yres_virtual >> 1)));
  181. } else {
  182. fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys);
  183. }
  184. }
  185. words = info->fix.line_length / sizeof(u32);
  186. if (!info->var.rotate || (info->var.rotate == 180)) {
  187. words *= info->var.yres_virtual;
  188. if (info->var.rotate /* 180 */) {
  189. words -= (words % 8); /* should be divisable by 8 */
  190. }
  191. }
  192. fbdev->regs->lcd_words = LCD_WRD_WRDS_N(words);
  193. fbdev->regs->lcd_pwmdiv = 0;
  194. fbdev->regs->lcd_pwmhi = 0;
  195. /* Resume controller */
  196. fbdev->regs->lcd_control |= LCD_CONTROL_GO;
  197. mdelay(10);
  198. au1100fb_fb_blank(VESA_NO_BLANKING, info);
  199. return 0;
  200. }
  201. /* fb_setcolreg
  202. * Set color in LCD palette.
  203. */
  204. int au1100fb_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *fbi)
  205. {
  206. struct au1100fb_device *fbdev;
  207. u32 *palette;
  208. u32 value;
  209. fbdev = to_au1100fb_device(fbi);
  210. palette = fbdev->regs->lcd_palettebase;
  211. if (regno > (AU1100_LCD_NBR_PALETTE_ENTRIES - 1))
  212. return -EINVAL;
  213. if (fbi->var.grayscale) {
  214. /* Convert color to grayscale */
  215. red = green = blue =
  216. (19595 * red + 38470 * green + 7471 * blue) >> 16;
  217. }
  218. if (fbi->fix.visual == FB_VISUAL_TRUECOLOR) {
  219. /* Place color in the pseudopalette */
  220. if (regno > 16)
  221. return -EINVAL;
  222. palette = (u32*)fbi->pseudo_palette;
  223. red >>= (16 - fbi->var.red.length);
  224. green >>= (16 - fbi->var.green.length);
  225. blue >>= (16 - fbi->var.blue.length);
  226. value = (red << fbi->var.red.offset) |
  227. (green << fbi->var.green.offset)|
  228. (blue << fbi->var.blue.offset);
  229. value &= 0xFFFF;
  230. } else if (panel_is_active(fbdev->panel)) {
  231. /* COLOR TFT PALLETTIZED (use RGB 565) */
  232. value = (red & 0xF800)|((green >> 5) & 0x07E0)|((blue >> 11) & 0x001F);
  233. value &= 0xFFFF;
  234. } else if (panel_is_color(fbdev->panel)) {
  235. /* COLOR STN MODE */
  236. value = (((panel_swap_rgb(fbdev->panel) ? blue : red) >> 12) & 0x000F) |
  237. ((green >> 8) & 0x00F0) |
  238. (((panel_swap_rgb(fbdev->panel) ? red : blue) >> 4) & 0x0F00);
  239. value &= 0xFFF;
  240. } else {
  241. /* MONOCHROME MODE */
  242. value = (green >> 12) & 0x000F;
  243. value &= 0xF;
  244. }
  245. palette[regno] = value;
  246. return 0;
  247. }
  248. /* fb_pan_display
  249. * Pan display in x and/or y as specified
  250. */
  251. int au1100fb_fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *fbi)
  252. {
  253. struct au1100fb_device *fbdev;
  254. int dy;
  255. fbdev = to_au1100fb_device(fbi);
  256. print_dbg("fb_pan_display %p %p", var, fbi);
  257. if (!var || !fbdev) {
  258. return -EINVAL;
  259. }
  260. if (var->xoffset - fbi->var.xoffset) {
  261. /* No support for X panning for now! */
  262. return -EINVAL;
  263. }
  264. print_dbg("fb_pan_display 2 %p %p", var, fbi);
  265. dy = var->yoffset - fbi->var.yoffset;
  266. if (dy) {
  267. u32 dmaaddr;
  268. print_dbg("Panning screen of %d lines", dy);
  269. dmaaddr = fbdev->regs->lcd_dmaaddr0;
  270. dmaaddr += (fbi->fix.line_length * dy);
  271. /* TODO: Wait for current frame to finished */
  272. fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
  273. if (panel_is_dual(fbdev->panel)) {
  274. dmaaddr = fbdev->regs->lcd_dmaaddr1;
  275. dmaaddr += (fbi->fix.line_length * dy);
  276. fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
  277. }
  278. }
  279. print_dbg("fb_pan_display 3 %p %p", var, fbi);
  280. return 0;
  281. }
  282. /* fb_mmap
  283. * Map video memory in user space. We don't use the generic fb_mmap method mainly
  284. * to allow the use of the TLB streaming flag (CCA=6)
  285. */
  286. int au1100fb_fb_mmap(struct fb_info *fbi, struct vm_area_struct *vma)
  287. {
  288. struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
  289. pgprot_val(vma->vm_page_prot) |= (6 << 9); //CCA=6
  290. return dma_mmap_coherent(fbdev->dev, vma, fbdev->fb_mem, fbdev->fb_phys,
  291. fbdev->fb_len);
  292. }
  293. static const struct fb_ops au1100fb_ops =
  294. {
  295. .owner = THIS_MODULE,
  296. .fb_setcolreg = au1100fb_fb_setcolreg,
  297. .fb_blank = au1100fb_fb_blank,
  298. .fb_pan_display = au1100fb_fb_pan_display,
  299. .fb_fillrect = cfb_fillrect,
  300. .fb_copyarea = cfb_copyarea,
  301. .fb_imageblit = cfb_imageblit,
  302. .fb_mmap = au1100fb_fb_mmap,
  303. };
  304. /*-------------------------------------------------------------------------*/
  305. static int au1100fb_setup(struct au1100fb_device *fbdev)
  306. {
  307. char *this_opt, *options;
  308. int num_panels = ARRAY_SIZE(known_lcd_panels);
  309. if (num_panels <= 0) {
  310. print_err("No LCD panels supported by driver!");
  311. return -ENODEV;
  312. }
  313. if (fb_get_options(DRIVER_NAME, &options))
  314. return -ENODEV;
  315. if (!options)
  316. return -ENODEV;
  317. while ((this_opt = strsep(&options, ",")) != NULL) {
  318. /* Panel option */
  319. if (!strncmp(this_opt, "panel:", 6)) {
  320. int i;
  321. this_opt += 6;
  322. for (i = 0; i < num_panels; i++) {
  323. if (!strncmp(this_opt, known_lcd_panels[i].name,
  324. strlen(this_opt))) {
  325. fbdev->panel = &known_lcd_panels[i];
  326. fbdev->panel_idx = i;
  327. break;
  328. }
  329. }
  330. if (i >= num_panels) {
  331. print_warn("Panel '%s' not supported!", this_opt);
  332. return -ENODEV;
  333. }
  334. }
  335. /* Unsupported option */
  336. else
  337. print_warn("Unsupported option \"%s\"", this_opt);
  338. }
  339. print_info("Panel=%s", fbdev->panel->name);
  340. return 0;
  341. }
  342. static int au1100fb_drv_probe(struct platform_device *dev)
  343. {
  344. struct au1100fb_device *fbdev;
  345. struct resource *regs_res;
  346. struct clk *c;
  347. /* Allocate new device private */
  348. fbdev = devm_kzalloc(&dev->dev, sizeof(*fbdev), GFP_KERNEL);
  349. if (!fbdev)
  350. return -ENOMEM;
  351. if (au1100fb_setup(fbdev))
  352. goto failed;
  353. platform_set_drvdata(dev, (void *)fbdev);
  354. fbdev->dev = &dev->dev;
  355. /* Allocate region for our registers and map them */
  356. regs_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
  357. if (!regs_res) {
  358. print_err("fail to retrieve registers resource");
  359. return -EFAULT;
  360. }
  361. au1100fb_fix.mmio_start = regs_res->start;
  362. au1100fb_fix.mmio_len = resource_size(regs_res);
  363. if (!devm_request_mem_region(&dev->dev,
  364. au1100fb_fix.mmio_start,
  365. au1100fb_fix.mmio_len,
  366. DRIVER_NAME)) {
  367. print_err("fail to lock memory region at 0x%08lx",
  368. au1100fb_fix.mmio_start);
  369. return -EBUSY;
  370. }
  371. fbdev->regs = (struct au1100fb_regs*)KSEG1ADDR(au1100fb_fix.mmio_start);
  372. print_dbg("Register memory map at %p", fbdev->regs);
  373. print_dbg("phys=0x%08x, size=%d", fbdev->regs_phys, fbdev->regs_len);
  374. c = clk_get(NULL, "lcd_intclk");
  375. if (!IS_ERR(c)) {
  376. fbdev->lcdclk = c;
  377. clk_set_rate(c, 48000000);
  378. clk_prepare_enable(c);
  379. }
  380. /* Allocate the framebuffer to the maximum screen size * nbr of video buffers */
  381. fbdev->fb_len = fbdev->panel->xres * fbdev->panel->yres *
  382. (fbdev->panel->bpp >> 3) * AU1100FB_NBR_VIDEO_BUFFERS;
  383. fbdev->fb_mem = dmam_alloc_coherent(&dev->dev,
  384. PAGE_ALIGN(fbdev->fb_len),
  385. &fbdev->fb_phys, GFP_KERNEL);
  386. if (!fbdev->fb_mem) {
  387. print_err("fail to allocate framebuffer (size: %dK))",
  388. fbdev->fb_len / 1024);
  389. return -ENOMEM;
  390. }
  391. au1100fb_fix.smem_start = fbdev->fb_phys;
  392. au1100fb_fix.smem_len = fbdev->fb_len;
  393. print_dbg("Framebuffer memory map at %p", fbdev->fb_mem);
  394. print_dbg("phys=0x%08x, size=%dK", fbdev->fb_phys, fbdev->fb_len / 1024);
  395. /* load the panel info into the var struct */
  396. au1100fb_var.bits_per_pixel = fbdev->panel->bpp;
  397. au1100fb_var.xres = fbdev->panel->xres;
  398. au1100fb_var.xres_virtual = au1100fb_var.xres;
  399. au1100fb_var.yres = fbdev->panel->yres;
  400. au1100fb_var.yres_virtual = au1100fb_var.yres;
  401. fbdev->info.screen_base = fbdev->fb_mem;
  402. fbdev->info.fbops = &au1100fb_ops;
  403. fbdev->info.fix = au1100fb_fix;
  404. fbdev->info.pseudo_palette =
  405. devm_kcalloc(&dev->dev, 16, sizeof(u32), GFP_KERNEL);
  406. if (!fbdev->info.pseudo_palette)
  407. return -ENOMEM;
  408. if (fb_alloc_cmap(&fbdev->info.cmap, AU1100_LCD_NBR_PALETTE_ENTRIES, 0) < 0) {
  409. print_err("Fail to allocate colormap (%d entries)",
  410. AU1100_LCD_NBR_PALETTE_ENTRIES);
  411. return -EFAULT;
  412. }
  413. fbdev->info.var = au1100fb_var;
  414. /* Set h/w registers */
  415. au1100fb_setmode(fbdev);
  416. /* Register new framebuffer */
  417. if (register_framebuffer(&fbdev->info) < 0) {
  418. print_err("cannot register new framebuffer");
  419. goto failed;
  420. }
  421. return 0;
  422. failed:
  423. if (fbdev->lcdclk) {
  424. clk_disable_unprepare(fbdev->lcdclk);
  425. clk_put(fbdev->lcdclk);
  426. }
  427. if (fbdev->info.cmap.len != 0) {
  428. fb_dealloc_cmap(&fbdev->info.cmap);
  429. }
  430. return -ENODEV;
  431. }
  432. int au1100fb_drv_remove(struct platform_device *dev)
  433. {
  434. struct au1100fb_device *fbdev = NULL;
  435. if (!dev)
  436. return -ENODEV;
  437. fbdev = platform_get_drvdata(dev);
  438. #if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
  439. au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
  440. #endif
  441. fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
  442. /* Clean up all probe data */
  443. unregister_framebuffer(&fbdev->info);
  444. fb_dealloc_cmap(&fbdev->info.cmap);
  445. if (fbdev->lcdclk) {
  446. clk_disable_unprepare(fbdev->lcdclk);
  447. clk_put(fbdev->lcdclk);
  448. }
  449. return 0;
  450. }
  451. #ifdef CONFIG_PM
  452. static struct au1100fb_regs fbregs;
  453. int au1100fb_drv_suspend(struct platform_device *dev, pm_message_t state)
  454. {
  455. struct au1100fb_device *fbdev = platform_get_drvdata(dev);
  456. if (!fbdev)
  457. return 0;
  458. /* Blank the LCD */
  459. au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
  460. clk_disable(fbdev->lcdclk);
  461. memcpy(&fbregs, fbdev->regs, sizeof(struct au1100fb_regs));
  462. return 0;
  463. }
  464. int au1100fb_drv_resume(struct platform_device *dev)
  465. {
  466. struct au1100fb_device *fbdev = platform_get_drvdata(dev);
  467. if (!fbdev)
  468. return 0;
  469. memcpy(fbdev->regs, &fbregs, sizeof(struct au1100fb_regs));
  470. clk_enable(fbdev->lcdclk);
  471. /* Unblank the LCD */
  472. au1100fb_fb_blank(VESA_NO_BLANKING, &fbdev->info);
  473. return 0;
  474. }
  475. #else
  476. #define au1100fb_drv_suspend NULL
  477. #define au1100fb_drv_resume NULL
  478. #endif
  479. static struct platform_driver au1100fb_driver = {
  480. .driver = {
  481. .name = "au1100-lcd",
  482. },
  483. .probe = au1100fb_drv_probe,
  484. .remove = au1100fb_drv_remove,
  485. .suspend = au1100fb_drv_suspend,
  486. .resume = au1100fb_drv_resume,
  487. };
  488. module_platform_driver(au1100fb_driver);
  489. MODULE_DESCRIPTION(DRIVER_DESC);
  490. MODULE_LICENSE("GPL");