tx3912fb.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/video/tx3912fb.c
  3.  *
  4.  * Copyright (C) 1999 Harald Koerfgen
  5.  * Copyright (C) 2001 Steven Hill (sjhill@realitydiluted.com)
  6.  *
  7.  * This file is subject to the terms and conditions of the GNU General Public
  8.  * License. See the file COPYING in the main directory of this archive for
  9.  * more details.
  10.  *
  11.  * Framebuffer for LCD controller in TMPR3912/05 and PR31700 processors
  12.  */
  13. #include <linux/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/errno.h>
  16. #include <linux/string.h>
  17. #include <linux/tty.h>
  18. #include <linux/delay.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/init.h>
  21. #include <linux/pm.h>
  22. #include <linux/fb.h>
  23. #include <asm/bootinfo.h>
  24. #include <asm/uaccess.h>
  25. #include <video/fbcon.h>
  26. #include <video/fbcon-mfb.h>
  27. #include <video/fbcon-cfb2.h>
  28. #include <video/fbcon-cfb4.h>
  29. #include <video/fbcon-cfb8.h>
  30. #include "tx3912fb.h"
  31. /*
  32.  * Frame buffer, palette and console structures
  33.  */
  34. static struct fb_info fb_info;
  35. static struct { u_char red, green, blue, pad; } palette[256];
  36. static struct display global_disp;
  37. static int currcon = 0;
  38. /*
  39.  * Interface used by the world
  40.  */
  41. static int tx3912fb_get_fix(struct fb_fix_screeninfo *fix, int con,
  42. struct fb_info *info);
  43. static int tx3912fb_get_var(struct fb_var_screeninfo *var, int con,
  44. struct fb_info *info);
  45. static int tx3912fb_set_var(struct fb_var_screeninfo *var, int con,
  46. struct fb_info *info);
  47. static int tx3912fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  48. struct fb_info *info);
  49. static int tx3912fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  50. struct fb_info *info);
  51. static int tx3912fb_ioctl(struct inode *inode, struct file *file, u_int cmd,
  52. u_long arg, int con, struct fb_info *info);
  53. /*
  54.  * Interface used by console driver
  55.  */
  56. int tx3912fb_init(void);
  57. static int tx3912fbcon_switch(int con, struct fb_info *info);
  58. static int tx3912fbcon_updatevar(int con, struct fb_info *info);
  59. static void tx3912fbcon_blank(int blank, struct fb_info *info);
  60. /*
  61.  * Macros
  62.  */
  63. #define get_line_length(xres_virtual, bpp) 
  64. (u_long) (((int) xres_virtual * (int) bpp + 7) >> 3)
  65. /*
  66.  * Internal routines
  67.  */
  68. static int tx3912fb_getcolreg(u_int regno, u_int *red, u_int *green,
  69. u_int *blue, u_int *transp, struct fb_info *info);
  70. static int tx3912fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  71. u_int transp, struct fb_info *info);
  72. static void tx3912fb_install_cmap(int con, struct fb_info *info);
  73. /*
  74.  * Frame buffer operations structure used by console driver
  75.  */
  76. static struct fb_ops tx3912fb_ops = {
  77. owner: THIS_MODULE,
  78. fb_get_fix: tx3912fb_get_fix,
  79. fb_get_var: tx3912fb_get_var,
  80. fb_set_var: tx3912fb_set_var,
  81. fb_get_cmap: tx3912fb_get_cmap,
  82. fb_set_cmap: tx3912fb_set_cmap,
  83. fb_ioctl: tx3912fb_ioctl,
  84. };
  85. /*
  86.  *  Get fixed display data
  87.  */
  88. static int tx3912fb_get_fix(struct fb_fix_screeninfo *fix, int con,
  89. struct fb_info *info)
  90. {
  91. struct display *display;
  92. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  93. strcpy(fix->id, TX3912FB_NAME);
  94. if (con == -1)
  95. display = &global_disp;
  96. else
  97. display = &fb_display[con];
  98. fix->smem_start = tx3912fb_vaddr;
  99. fix->smem_len = tx3912fb_size;
  100. fix->type = display->type;
  101. fix->type_aux = display->type_aux;
  102. fix->xpanstep = 0;
  103. fix->ypanstep = display->ypanstep;
  104. fix->ywrapstep = display->ywrapstep;
  105. fix->visual = display->visual;
  106. fix->line_length = display->line_length;
  107. fix->accel = FB_ACCEL_NONE;
  108. return 0;
  109. }
  110. /*
  111.  * Get user display data
  112.  */
  113. static int tx3912fb_get_var(struct fb_var_screeninfo *var, int con,
  114. struct fb_info *info)
  115. {
  116. if (con == -1)
  117. *var = tx3912fb_info;
  118. else
  119. *var = fb_display[con].var;
  120. return 0;
  121. }
  122. /*
  123.  *  Set user display data
  124.  */
  125. static int tx3912fb_set_var(struct fb_var_screeninfo *var, int con,
  126. struct fb_info *info)
  127. {
  128. int err, activate = var->activate;
  129. int oldxres, oldyres, oldvxres, oldvyres, oldbpp;
  130. u_long line_length;
  131. struct display *display;
  132. if (con == -1)
  133. display = &global_disp;
  134. else
  135. display = &fb_display[con];
  136. /*
  137.  * FB_VMODE_CONUPDATE and FB_VMODE_SMOOTH_XPAN are equal
  138.  * as FB_VMODE_SMOOTH_XPAN is only used internally
  139.  */
  140. if (var->vmode & FB_VMODE_CONUPDATE) {
  141. var->xoffset = display->var.xoffset;
  142. var->yoffset = display->var.yoffset;
  143. var->vmode |= FB_VMODE_YWRAP;
  144. }
  145. /*
  146.  * Make sure values are in range
  147.  */
  148. if (!var->xres)
  149. var->xres = 1;
  150. if (!var->yres)
  151. var->yres = 1;
  152. if (var->xres > var->xres_virtual)
  153. var->xres_virtual = var->xres;
  154. if (var->yres > var->yres_virtual)
  155. var->yres_virtual = var->yres;
  156. if (var->bits_per_pixel <= 1)
  157. var->bits_per_pixel = 1;
  158. else if (var->bits_per_pixel <= 2)
  159. var->bits_per_pixel = 2;
  160. else if (var->bits_per_pixel <= 4)
  161. var->bits_per_pixel = 4;
  162. else if (var->bits_per_pixel <= 8)
  163. var->bits_per_pixel = 8;
  164. else
  165. return -EINVAL;
  166. /*
  167.  * Memory limit
  168.  */
  169. line_length = get_line_length(var->xres_virtual, var->bits_per_pixel);
  170. if ((line_length * var->yres_virtual) > tx3912fb_size)
  171. return -ENOMEM;
  172. /*
  173.  * This is only for color and we only support 8-bit color
  174.  */
  175. if (var->bits_per_pixel) {
  176. /* RGB 332 */
  177. var->red.offset = 5;
  178. var->red.length = 3;
  179. var->green.offset = 2;
  180. var->green.length = 3;
  181. var->blue.offset = 0;
  182. var->blue.length = 2;
  183. var->transp.offset = 0;
  184. var->transp.length = 0;
  185. }
  186. var->red.msb_right = 0;
  187. var->green.msb_right = 0;
  188. var->blue.msb_right = 0;
  189. var->transp.msb_right = 0;
  190. /*
  191.  * Make changes if necessary
  192.  */
  193. if ((activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
  194. oldxres = display->var.xres;
  195. oldyres = display->var.yres;
  196. oldvxres = display->var.xres_virtual;
  197. oldvyres = display->var.yres_virtual;
  198. oldbpp = display->var.bits_per_pixel;
  199. display->var = *var;
  200. if (oldxres != var->xres || oldyres != var->yres ||
  201.     oldvxres != var->xres_virtual ||
  202.     oldvyres != var->yres_virtual ||
  203.     oldbpp != var->bits_per_pixel) {
  204. display->screen_base = (u_char *) tx3912fb_vaddr;
  205. switch (var->bits_per_pixel) {
  206. case 1:
  207. display->visual = FB_VISUAL_MONO10;
  208. break;
  209. case 2:
  210. display->visual = FB_VISUAL_PSEUDOCOLOR;
  211. case 4:
  212. case 8:
  213. display->visual = FB_VISUAL_TRUECOLOR;
  214. break;
  215. }
  216. display->type = FB_TYPE_PACKED_PIXELS;
  217. display->type_aux = 0;
  218. display->ypanstep = 0;
  219. display->ywrapstep = 0;
  220. display->next_line =
  221. display->line_length =
  222. get_line_length(var->xres_virtual,
  223. var->bits_per_pixel);
  224. display->can_soft_blank = 0;
  225. display->inverse = FB_IS_INVERSE;
  226. switch (var->bits_per_pixel) {
  227. #ifdef CONFIG_FBCON_MFB
  228. case 1:
  229. display->dispsw = &fbcon_mfb;
  230. break;
  231. #endif
  232. #ifdef CONFIG_FBCON_CFB2
  233. case 2:
  234. display->dispsw = &fbcon_cfb2;
  235. break;
  236. #endif
  237. #ifdef CONFIG_FBCON_CFB4
  238. case 4:
  239. display->dispsw = &fbcon_cfb4;
  240. break;
  241. #endif
  242. #ifdef CONFIG_FBCON_CFB8
  243. case 8:
  244. display->dispsw = &fbcon_cfb8;
  245. display->dispsw_data = fbcon_cmap.cfb8;
  246. break;
  247. #endif
  248. default:
  249. display->dispsw = &fbcon_dummy;
  250. break;
  251.      }
  252. if (fb_info.changevar)
  253. (*fb_info.changevar)(con);
  254. }
  255. if (oldbpp != var->bits_per_pixel) {
  256. if ((err = fb_alloc_cmap(&display->cmap, 0, 0)))
  257. return err;
  258. tx3912fb_install_cmap(con, info);
  259. }
  260. }
  261. return 0;
  262. }
  263. /*
  264.  *  Get the colormap
  265.  */
  266. static int tx3912fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  267. struct fb_info *info)
  268. {
  269. if (con == currcon)
  270. return fb_get_cmap(cmap, kspc, tx3912fb_getcolreg, info);
  271. else if (fb_display[con].cmap.len) /* non default colormap? */
  272. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  273. else
  274. fb_copy_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel), cmap, kspc ? 0 : 2);
  275. return 0;
  276. }
  277. /*
  278.  *  Set the Colormap
  279.  */
  280. static int tx3912fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  281. struct fb_info *info)
  282. {
  283. int err;
  284. if (!fb_display[con].cmap.len)
  285. if ((err = fb_alloc_cmap(&fb_display[con].cmap,
  286. 1<<fb_display[con].var.bits_per_pixel, 0)))
  287. return err;
  288. if (con == currcon)
  289. return fb_set_cmap(cmap, kspc, tx3912fb_setcolreg, info);
  290. else
  291. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  292. return 0;
  293. }
  294. /*
  295.  *  Framebuffer ioctl
  296.  */
  297. static int tx3912fb_ioctl(struct inode *inode, struct file *file, u_int cmd,
  298. u_long arg, int con, struct fb_info *info)
  299. {
  300. return -EINVAL;
  301. }
  302. /*
  303.  * Initialization of the framebuffer
  304.  */
  305. int __init tx3912fb_init(void)
  306. {
  307. /* Stop the video logic when frame completes */
  308. VidCtrl1 |= ENFREEZEFRAME;
  309. IntClear1 |= INT1_LCDINT;
  310. while (!(IntStatus1 & INT1_LCDINT));
  311. /* Disable the video logic */
  312. VidCtrl1 &= ~(ENVID | DISPON);
  313. udelay(200);
  314. /* Set start address for DMA transfer */
  315. VidCtrl3 = tx3912fb_paddr &
  316. (TX3912_VIDCTRL3_VIDBANK_MASK | TX3912_VIDCTRL3_VIDBASEHI_MASK);
  317. /* Set end address for DMA transfer */
  318. VidCtrl4 = (tx3912fb_paddr + tx3912fb_size + 1) &
  319. TX3912_VIDCTRL4_VIDBASELO_MASK;
  320. /* Set the pixel depth */
  321. switch (tx3912fb_info.bits_per_pixel) {
  322. case 1:
  323. /* Monochrome */
  324. VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
  325. break;
  326. case 4:
  327. /* 4-bit gray */
  328. VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
  329. VidCtrl1 |= TX3912_VIDCTRL1_4BIT_GRAY;
  330. break;
  331. case 8:
  332. /* 8-bit color */
  333. VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
  334. VidCtrl1 |= TX3912_VIDCTRL1_8BIT_COLOR;
  335. break;
  336. case 2:
  337. default:
  338. /* 2-bit gray */
  339. VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
  340. VidCtrl1 |= TX3912_VIDCTRL1_2BIT_GRAY;
  341. break;
  342. }
  343. /* Unfreeze video logic and enable DF toggle */
  344. VidCtrl1 &= ~(ENFREEZEFRAME | DFMODE);
  345. udelay(200);
  346. /* Clear the framebuffer */
  347. memset((void *) tx3912fb_vaddr, 0xff, tx3912fb_size);
  348. udelay(200);
  349. /* Enable the video logic */
  350. VidCtrl1 |= (DISPON | ENVID);
  351. strcpy(fb_info.modename, TX3912FB_NAME);
  352. fb_info.changevar = NULL;
  353. fb_info.node = -1;
  354. fb_info.fbops = &tx3912fb_ops;
  355. fb_info.disp = &global_disp;
  356. fb_info.switch_con = &tx3912fbcon_switch;
  357. fb_info.updatevar = &tx3912fbcon_updatevar;
  358. fb_info.blank = &tx3912fbcon_blank;
  359. fb_info.flags = FBINFO_FLAG_DEFAULT;
  360. tx3912fb_set_var(&tx3912fb_info, -1, &fb_info);
  361. if (register_framebuffer(&fb_info) < 0)
  362. return -1;
  363. printk (KERN_INFO "fb%d: TX3912 frame buffer using %uKB.n",
  364. GET_FB_IDX(fb_info.node), (u_int) (tx3912fb_size >> 10));
  365. return 0;
  366. }
  367. /*
  368.  * Switch the console to be the framebuffer
  369.  */
  370. static int tx3912fbcon_switch(int con, struct fb_info *info)
  371. {
  372. /* Save off the color map if needed */
  373. if (fb_display[currcon].cmap.len)
  374. fb_get_cmap(&fb_display[currcon].cmap, 1,
  375. tx3912fb_getcolreg, info);
  376. /* Make the switch */
  377. currcon = con;
  378. /* Install new colormap */
  379. tx3912fb_install_cmap(con, info);
  380. return 0;
  381. }
  382. /*
  383.  * Update variable structure
  384.  */
  385. static int tx3912fbcon_updatevar(int con, struct fb_info *info)
  386. {
  387. /* Nothing */
  388. return 0;
  389. }
  390. /*
  391.  * Blank the display
  392.  */
  393. static void tx3912fbcon_blank(int blank, struct fb_info *info)
  394. {
  395. /* FIXME */
  396. printk("tx3912fbcon_blankn");
  397. }
  398. /*
  399.  * Read a single color register
  400.  */
  401. static int tx3912fb_getcolreg(u_int regno, u_int *red, u_int *green,
  402. u_int *blue, u_int *transp, struct fb_info *info)
  403. {
  404. if (regno > 255)
  405. return 1;
  406. #if FB_IS_GREY
  407. {
  408. u_int grey;
  409.             
  410. grey = regno * 255 / 15;
  411. #if FB_IS_INVERSE
  412. grey ^= 255;
  413. #endif
  414. grey |= grey << 8;
  415. *red = grey;
  416. *green = grey;
  417. *blue = grey;
  418. }
  419. #else
  420. *red = (palette[regno].red<<8) | palette[regno].red;
  421. *green = (palette[regno].green<<8) | palette[regno].green;
  422. *blue = (palette[regno].blue<<8) | palette[regno].blue;
  423. #endif
  424. *transp = 0;
  425. return 0;
  426. }
  427. /*
  428.  * Set a single color register
  429.  */
  430. static int tx3912fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  431. u_int transp, struct fb_info *info)
  432. {
  433. if (regno > 255)
  434. return 1;
  435. #ifdef FBCON_HAS_CFB8
  436. if( regno < 16 )
  437. fbcon_cmap.cfb8[regno] = ((red & 0xe000) >> 8)
  438. | ((green & 0xe000) >> 11)
  439. | ((blue & 0xc000) >> 14);
  440. #endif 
  441. red >>= 8;
  442. green >>= 8;
  443. blue >>= 8;
  444. palette[regno].red = red;
  445. palette[regno].green = green;
  446. palette[regno].blue = blue;
  447. return 0;
  448. }
  449. /*
  450.  * Install the color map
  451.  */
  452. static void tx3912fb_install_cmap(int con, struct fb_info *info)
  453. {
  454. if (con != currcon)
  455. return;
  456. if (fb_display[con].cmap.len)
  457. fb_set_cmap(&fb_display[con].cmap, 1, tx3912fb_setcolreg, info);
  458. else
  459. fb_set_cmap(fb_default_cmap(1 << fb_display[con].var.bits_per_pixel), 1, tx3912fb_setcolreg, info);
  460. }
  461. MODULE_LICENSE("GPL");