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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/video/accel.c - nVidia RIVA 128/TNT/TNT2 fb driver
  3.  *
  4.  * Copyright 2000 Jindrich Makovicka, Ani Joshi
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file COPYING in the main directory of this archive
  8.  * for more details.
  9.  */
  10. #include "rivafb.h"
  11. /* acceleration routines */
  12. inline void wait_for_idle(struct rivafb_info *rinfo)
  13. {
  14. while (rinfo->riva.Busy(&rinfo->riva));
  15. }
  16. /* set copy ROP, no mask */
  17. static void riva_setup_ROP(struct rivafb_info *rinfo)
  18. {
  19. RIVA_FIFO_FREE(rinfo->riva, Patt, 5);
  20. rinfo->riva.Patt->Shape = 0;
  21. rinfo->riva.Patt->Color0 = 0xffffffff;
  22. rinfo->riva.Patt->Color1 = 0xffffffff;
  23. rinfo->riva.Patt->Monochrome[0] = 0xffffffff;
  24. rinfo->riva.Patt->Monochrome[1] = 0xffffffff;
  25. RIVA_FIFO_FREE(rinfo->riva, Rop, 1);
  26. rinfo->riva.Rop->Rop3 = 0xCC;
  27. }
  28. void riva_setup_accel(struct rivafb_info *rinfo)
  29. {
  30. RIVA_FIFO_FREE(rinfo->riva, Clip, 2);
  31. rinfo->riva.Clip->TopLeft     = 0x0;
  32. rinfo->riva.Clip->WidthHeight = 0x80008000;
  33. riva_setup_ROP(rinfo);
  34. wait_for_idle(rinfo);
  35. }
  36. static void riva_rectfill(struct rivafb_info *rinfo, int sy,
  37.   int sx, int height, int width, u_int color)
  38. {
  39. RIVA_FIFO_FREE(rinfo->riva, Bitmap, 1);
  40. rinfo->riva.Bitmap->Color1A = color;
  41. RIVA_FIFO_FREE(rinfo->riva, Bitmap, 2);
  42. rinfo->riva.Bitmap->UnclippedRectangle[0].TopLeft     = (sx << 16) | sy; 
  43. rinfo->riva.Bitmap->UnclippedRectangle[0].WidthHeight = (width << 16) | height;
  44. }
  45. static void fbcon_riva_bmove(struct display *p, int sy, int sx, int dy, int dx,
  46.     int height, int width)
  47. {
  48. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  49. sx *= fontwidth(p);
  50. sy *= fontheight(p);
  51. dx *= fontwidth(p);
  52. dy *= fontheight(p);
  53. width *= fontwidth(p);
  54. height *= fontheight(p);
  55. RIVA_FIFO_FREE(rinfo->riva, Blt, 3);
  56. rinfo->riva.Blt->TopLeftSrc  = (sy << 16) | sx;
  57. rinfo->riva.Blt->TopLeftDst  = (dy << 16) | dx;
  58. rinfo->riva.Blt->WidthHeight = (height  << 16) | width;
  59. }
  60. static void riva_clear_margins(struct vc_data *conp, struct display *p,
  61. int bottom_only, u32 bgx)
  62. {
  63. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  64. unsigned int right_start = conp->vc_cols*fontwidth(p);
  65. unsigned int bottom_start = conp->vc_rows*fontheight(p);
  66. unsigned int right_width, bottom_width;
  67. if (!bottom_only && (right_width = p->var.xres - right_start))
  68. riva_rectfill(rinfo, 0, right_start, p->var.yres_virtual,
  69.       right_width, bgx);
  70. if ((bottom_width = p->var.yres - bottom_start))
  71. riva_rectfill(rinfo, p->var.yoffset + bottom_start, 0,
  72.       bottom_width, right_start, bgx);
  73. }
  74. static u8 byte_rev[256] = {
  75. 0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, 0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
  76. 0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8, 0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8, 
  77. 0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4, 0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4, 
  78. 0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec, 0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc, 
  79. 0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2, 0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2, 
  80. 0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea, 0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa, 
  81. 0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6, 0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6, 
  82. 0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee, 0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe, 
  83. 0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1, 0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1, 
  84. 0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9, 0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9, 
  85. 0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5, 0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5, 
  86. 0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed, 0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd, 
  87. 0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3, 0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3, 
  88. 0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb, 0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb, 
  89. 0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7, 0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7, 
  90. 0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef, 0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff,
  91. };
  92. static inline void fbcon_reverse_order(u32 *l)
  93. {
  94. u8 *a = (u8 *)l;
  95. *a++ = byte_rev[*a];
  96. /* *a++ = byte_rev[*a];
  97. *a++ = byte_rev[*a];*/
  98. *a = byte_rev[*a];
  99. }
  100. static void fbcon_riva_writechr(struct vc_data *conp, struct display *p,
  101.         int c, int fgx, int bgx, int yy, int xx)
  102. {
  103. u8 *cdat;
  104. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  105. int w, h;
  106. volatile u32 *d;
  107. u32 cdat2;
  108. int i, j, cnt;
  109. w = fontwidth(p);
  110. h = fontheight(p);
  111. if (w <= 8)
  112. cdat = p->fontdata + (c & p->charmask) * h;
  113. else
  114. cdat = p->fontdata + ((c & p->charmask) * h << 1);
  115.         RIVA_FIFO_FREE(rinfo->riva, Bitmap, 7);
  116.         rinfo->riva.Bitmap->ClipE.TopLeft     = (yy << 16) | (xx & 0xFFFF);
  117.         rinfo->riva.Bitmap->ClipE.BottomRight = ((yy+h) << 16) | ((xx+w) & 0xffff);
  118.         rinfo->riva.Bitmap->Color0E           = bgx;
  119.         rinfo->riva.Bitmap->Color1E           = fgx;
  120.         rinfo->riva.Bitmap->WidthHeightInE  = (h << 16) | 32;
  121.         rinfo->riva.Bitmap->WidthHeightOutE = (h << 16) | 32;
  122.         rinfo->riva.Bitmap->PointE          = (yy << 16) | (xx & 0xFFFF);
  123. d = &rinfo->riva.Bitmap->MonochromeData01E;
  124. for (i = h; i > 0; i-=16) {
  125. if (i >= 16)
  126. cnt = 16;
  127. else
  128. cnt = i;
  129. RIVA_FIFO_FREE(rinfo->riva, Bitmap, cnt);
  130. for (j = 0; j < cnt; j++) {
  131. if (w <= 8) 
  132. cdat2 = *cdat++;
  133. else
  134. cdat2 = *((u16*)cdat)++;
  135. fbcon_reverse_order(&cdat2);
  136. d[j] = cdat2;
  137. }
  138. }
  139. }
  140. #ifdef FBCON_HAS_CFB8
  141. void fbcon_riva8_setup(struct display *p)
  142. {
  143.     p->next_line = p->line_length ? p->line_length : p->var.xres_virtual;
  144.     p->next_plane = 0;
  145. }
  146. static void fbcon_riva8_clear(struct vc_data *conp, struct display *p, int sy,
  147.      int sx, int height, int width)
  148. {
  149. u32 bgx;
  150. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  151. bgx = attr_bgcol_ec(p, conp);
  152. sx *= fontwidth(p);
  153. sy *= fontheight(p);
  154. width *= fontwidth(p);
  155. height *= fontheight(p);
  156. riva_rectfill(rinfo, sy, sx, height, width, bgx);
  157. }
  158. static void fbcon_riva8_putc(struct vc_data *conp, struct display *p, int c,
  159.     int yy, int xx)
  160. {
  161. u32 fgx,bgx;
  162. fgx = attr_fgcol(p,c);
  163. bgx = attr_bgcol(p,c);
  164. xx *= fontwidth(p);
  165. yy *= fontheight(p);
  166. fbcon_riva_writechr(conp, p, c, fgx, bgx, yy, xx);
  167. }
  168. static void fbcon_riva8_putcs(struct vc_data *conp, struct display *p,
  169.      const unsigned short *s, int count, int yy,
  170.      int xx)
  171. {
  172. u16 c;
  173. u32 fgx,bgx;
  174. xx *= fontwidth(p);
  175. yy *= fontheight(p);
  176. c = scr_readw(s);
  177. fgx = attr_fgcol(p, c);
  178. bgx = attr_bgcol(p, c);
  179. while (count--) {
  180. c = scr_readw(s++);
  181. fbcon_riva_writechr(conp, p, c, fgx, bgx, yy, xx);
  182. xx += fontwidth(p);
  183. }
  184. }
  185. static void fbcon_riva8_revc(struct display *p, int xx, int yy)
  186. {
  187. struct rivafb_info *rinfo = (struct rivafb_info *) (p->fb_info);
  188. xx *= fontwidth(p);
  189. yy *= fontheight(p);
  190. RIVA_FIFO_FREE(rinfo->riva, Rop, 1);
  191. rinfo->riva.Rop->Rop3 = 0x66; // XOR
  192. riva_rectfill(rinfo, yy, xx, fontheight(p), fontwidth(p), 0x0f);
  193. RIVA_FIFO_FREE(rinfo->riva, Rop, 1);
  194. rinfo->riva.Rop->Rop3 = 0xCC; // back to COPY
  195. }
  196. static void fbcon_riva8_clear_margins(struct vc_data *conp, struct display *p,
  197.        int bottom_only)
  198. {
  199. riva_clear_margins(conp, p, bottom_only, attr_bgcol_ec(p, conp));
  200. }
  201. struct display_switch fbcon_riva8 = {
  202. setup: fbcon_riva8_setup,
  203. bmove: fbcon_riva_bmove,
  204. clear: fbcon_riva8_clear,
  205. putc: fbcon_riva8_putc,
  206. putcs: fbcon_riva8_putcs,
  207. revc: fbcon_riva8_revc,
  208. clear_margins: fbcon_riva8_clear_margins,
  209. fontwidthmask: FONTWIDTHRANGE(4, 16)
  210. };
  211. #endif
  212. #if defined(FBCON_HAS_CFB16) || defined(FBCON_HAS_CFB32)
  213. static void fbcon_riva1632_revc(struct display *p, int xx, int yy)
  214. {
  215. struct rivafb_info *rinfo = (struct rivafb_info *) (p->fb_info);
  216. xx *= fontwidth(p);
  217. yy *= fontheight(p);
  218. RIVA_FIFO_FREE(rinfo->riva, Rop, 1);
  219. rinfo->riva.Rop->Rop3 = 0x66; // XOR
  220. riva_rectfill(rinfo, yy, xx, fontheight(p), fontwidth(p), 0xffffffff);
  221. RIVA_FIFO_FREE(rinfo->riva, Rop, 1);
  222. rinfo->riva.Rop->Rop3 = 0xCC; // back to COPY
  223. }
  224. #endif
  225. #ifdef FBCON_HAS_CFB16
  226. void fbcon_riva16_setup(struct display *p)
  227. {
  228.     p->next_line = p->line_length ? p->line_length : p->var.xres_virtual<<1;
  229.     p->next_plane = 0;
  230. }
  231. static void fbcon_riva16_clear(struct vc_data *conp, struct display *p, int sy,
  232.      int sx, int height, int width)
  233. {
  234. u32 bgx;
  235. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  236. bgx = ((u_int16_t*)p->dispsw_data)[attr_bgcol_ec(p, conp)];
  237. sx *= fontwidth(p);
  238. sy *= fontheight(p);
  239. width *= fontwidth(p);
  240. height *= fontheight(p);
  241. riva_rectfill(rinfo, sy, sx, height, width, bgx);
  242. }
  243. static inline void convert_bgcolor_16(u32 *col)
  244. {
  245. *col = ((*col & 0x00007C00) << 9)
  246.              | ((*col & 0x000003E0) << 6)
  247.              | ((*col & 0x0000001F) << 3)
  248.              |          0xFF000000;
  249. }
  250. static void fbcon_riva16_putc(struct vc_data *conp, struct display *p, int c,
  251.     int yy, int xx)
  252. {
  253. u32 fgx,bgx;
  254. fgx = ((u16 *)p->dispsw_data)[attr_fgcol(p,c)];
  255. bgx = ((u16 *)p->dispsw_data)[attr_bgcol(p,c)];
  256. if (p->var.green.length == 6)
  257. convert_bgcolor_16(&bgx);
  258. xx *= fontwidth(p);
  259. yy *= fontheight(p);
  260. fbcon_riva_writechr(conp, p, c, fgx, bgx, yy, xx);
  261. }
  262. static void fbcon_riva16_putcs(struct vc_data *conp, struct display *p,
  263.      const unsigned short *s, int count, int yy,
  264.      int xx)
  265. {
  266. u16 c;
  267. u32 fgx,bgx;
  268. xx *= fontwidth(p);
  269. yy *= fontheight(p);
  270. c = scr_readw(s);
  271. fgx = ((u16 *)p->dispsw_data)[attr_fgcol(p, c)];
  272. bgx = ((u16 *)p->dispsw_data)[attr_bgcol(p, c)];
  273. if (p->var.green.length == 6)
  274. convert_bgcolor_16(&bgx);
  275. while (count--) {
  276. c = scr_readw(s++);
  277. fbcon_riva_writechr(conp, p, c, fgx, bgx, yy, xx);
  278. xx += fontwidth(p);
  279. }
  280. }
  281. static void fbcon_riva16_clear_margins(struct vc_data *conp, struct display *p,
  282.        int bottom_only)
  283. {
  284. riva_clear_margins(conp, p, bottom_only, ((u16 *)p->dispsw_data)[attr_bgcol_ec(p, conp)]);
  285. }
  286. struct display_switch fbcon_riva16 = {
  287. setup: fbcon_riva16_setup,
  288. bmove: fbcon_riva_bmove,
  289. clear: fbcon_riva16_clear,
  290. putc: fbcon_riva16_putc,
  291. putcs: fbcon_riva16_putcs,
  292. revc: fbcon_riva1632_revc,
  293. clear_margins: fbcon_riva16_clear_margins,
  294. fontwidthmask: FONTWIDTHRANGE(4, 16)
  295. };
  296. #endif
  297. #ifdef FBCON_HAS_CFB32
  298. void fbcon_riva32_setup(struct display *p)
  299. {
  300.     p->next_line = p->line_length ? p->line_length : p->var.xres_virtual<<2;
  301.     p->next_plane = 0;
  302. }
  303. static void fbcon_riva32_clear(struct vc_data *conp, struct display *p, int sy,
  304.      int sx, int height, int width)
  305. {
  306. u32 bgx;
  307. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  308. bgx = ((u_int32_t*)p->dispsw_data)[attr_bgcol_ec(p, conp)];
  309. sx *= fontwidth(p);
  310. sy *= fontheight(p);
  311. width *= fontwidth(p);
  312. height *= fontheight(p);
  313. riva_rectfill(rinfo, sy, sx, height, width, bgx);
  314. }
  315. static void fbcon_riva32_putc(struct vc_data *conp, struct display *p, int c,
  316.     int yy, int xx)
  317. {
  318. u32 fgx,bgx;
  319. fgx = ((u32 *)p->dispsw_data)[attr_fgcol(p,c)];
  320. bgx = ((u32 *)p->dispsw_data)[attr_bgcol(p,c)];
  321. xx *= fontwidth(p);
  322. yy *= fontheight(p);
  323. fbcon_riva_writechr(conp, p, c, fgx, bgx, yy, xx);
  324. }
  325. static void fbcon_riva32_putcs(struct vc_data *conp, struct display *p,
  326.      const unsigned short *s, int count, int yy,
  327.      int xx)
  328. {
  329. u16 c;
  330. u32 fgx,bgx;
  331. xx *= fontwidth(p);
  332. yy *= fontheight(p);
  333. c = scr_readw(s);
  334. fgx = ((u32 *)p->dispsw_data)[attr_fgcol(p, c)];
  335. bgx = ((u32 *)p->dispsw_data)[attr_bgcol(p, c)];
  336. while (count--) {
  337. c = scr_readw(s++);
  338. fbcon_riva_writechr(conp, p, c, fgx, bgx, yy, xx);
  339. xx += fontwidth(p);
  340. }
  341. }
  342. static void fbcon_riva32_clear_margins(struct vc_data *conp, struct display *p,
  343.        int bottom_only)
  344. {
  345. riva_clear_margins(conp, p, bottom_only, ((u32 *)p->dispsw_data)[attr_bgcol_ec(p, conp)]);
  346. }
  347. struct display_switch fbcon_riva32 = {
  348. setup: fbcon_riva32_setup,
  349. bmove: fbcon_riva_bmove,
  350. clear: fbcon_riva32_clear,
  351. putc: fbcon_riva32_putc,
  352. putcs: fbcon_riva32_putcs,
  353. revc: fbcon_riva1632_revc,
  354. clear_margins: fbcon_riva32_clear_margins,
  355. fontwidthmask: FONTWIDTHRANGE(4, 16)
  356. };
  357. #endif