pm3fb.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:114k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/pm3fb.c -- 3DLabs Permedia3 frame buffer device
  3.  *  
  4.  *  Copyright (C) 2001 Romain Dolbeau <dolbeau@irisa.fr>
  5.  *  Based on code written by:
  6.  *           Sven Luther, <luther@dpt-info.u-strasbg.fr>
  7.  *           Alan Hourihane, <alanh@fairlite.demon.co.uk>
  8.  *           Russel King, <rmk@arm.linux.org.uk>
  9.  *  Based on linux/drivers/video/skeletonfb.c:
  10.  * Copyright (C) 1997 Geert Uytterhoeven
  11.  *  Based on linux/driver/video/pm2fb.c:
  12.  *      Copyright (C) 1998-1999 Ilario Nardinocchi (nardinoc@CS.UniBO.IT)
  13.  *      Copyright (C) 1999 Jakub Jelinek (jakub@redhat.com)
  14.  *
  15.  *  This file is subject to the terms and conditions of the GNU General Public
  16.  *  License. See the file COPYING in the main directory of this archive for
  17.  *  more details.
  18.  *
  19.  *  $Header: /cvsroot/linux/drivers/video/pm3fb.c,v 1.1 2002/02/25 19:11:06 marcelo Exp $
  20.  *
  21.  *  CHANGELOG:
  22.  *  Mon Feb 11 10:35:48 MET 2002, v 1.4.11B: Cosmetic update.
  23.  *  Wed Jan 23 14:16:59 MET 2002, v 1.4.11: Preliminary 2.5.x support, patch for 2.5.2.
  24.  *  Wed Nov 28 11:08:29 MET 2001, v 1.4.10: potential bug fix for SDRAM-based board, patch for 2.4.16.
  25.  *  Thu Sep 20 10:24:42 MET DST 2001, v 1.4.9: sync bug fix, preliminary flatpanel support, better timings.
  26.  *  Tue Aug 28 10:13:01 MET DST 2001, v 1.4.8: memory timings check, minor bug fixes.
  27.  *  Wed Jul 18 19:06:14 CEST 2001, v 1.4.7: Mode fix (800x600-100, 1024x768-100 changed), using HW panning + accel bug fix.
  28.  *  Mon Jun 25 10:33:56 MET DST 2001, v 1.4.6: Depth 12 fix, chip reset ioctl, moved memory erase ioctl to DEBUG.
  29.  *  Wed Jun 20 11:13:08 MET DST 2001, v 1.4.5: Fixed missing blinking cursor in 8bpp, code cleaning, memory erase IOCTL.
  30.  *  Mon Jun 18 16:00:27 CEST 2001, v 1.4.4: Depth 12 (RGBA 4444) support, code cleaning.
  31.  *  Fri Jun 15 13:53:01 CEST 2001, v 1.4.3: Removed warnings, depth 15 support, add 'depth' option.
  32.  *  Thu Jun 14 10:13:52 MET DST 2001, v 1.4.2: Fixed depth switching bug, preliminary 15bpp (RGB5551) support.
  33.  *  Thu Apr 12 11:16:45 MET DST 2001, v 1.4.1B: Doc updates.
  34.  *  Fri Apr  6 11:12:53 MET DST 2001, v 1.4.1: Configure.help, minor cleanup
  35.  *  Thu Mar 29 10:56:50 MET DST 2001, v 1.4.0: Module & module options support (note: linux patch changed, 2.2.19 added).
  36.  *  Thu Mar 15 15:30:31 MET 2001, v 1.3.2: Fixed mirroring bug on little-endian.
  37.  *  Wed Mar 14 21:25:54 CET 2001, v 1.3.1: Fixed bug in BlockMove (_bmov).
  38.  *  Tue Mar 13 10:53:19 MET 2001, v 1.3.0: Character drawing hardware support (in all width between 1 and 16), fixes.
  39.  *  Thu Mar  8 10:20:16 MET 2001, v 1.2.2: Better J2000 support, "font:" option.
  40.  *  Tue Mar  6 21:25:04 CET 2001, v 1.2.1: Better acceleration support.
  41.  *  Mon Mar  5 21:54:17 CET 2001, v 1.2.0: Partial acceleration support (clear & bmove)
  42.  *  Mon Mar  5 12:52:15 CET 2001, v 1.1.3: Big pan_display fix.
  43.  *  Sun Mar  4 22:21:50 CET 2001, v 1.1.2: (numerous) bug fixes.
  44.  *  Fri Mar  2 15:54:07 CET 2001, v 1.1.1: Might have Appian J2000 support, resource mangement in 2.4
  45.  *  Wed Feb 28 18:21:35 CET 2001, v 1.1.0: Might have multiple boards support (added, but not yest tested)
  46.  *  Tue Feb 27 17:31:12 CET 2001, v 1.0.6: fixes boot-time mode select, add more default mode
  47.  *  Tue Feb 27 14:01:36 CET 2001, v 1.0.5: fixes (1.0.4 was broken for 2.2), cleaning up
  48.  *  Mon Feb 26 23:17:36 CET 2001, v 1.0.4: preliminary 2.4.x support, dropped (useless on pm3) partial product, more OF fix
  49.  *  Mon Feb 26 20:59:05 CET 2001, v 1.0.3: No more shadow register (and wasted memory), endianess fix, use OF-preset resolution by default
  50.  *  Wed Feb 21 22:09:30 CET 2001, v 1.0.2: Code cleaning for future multiboard support, better OF support, bugs fix
  51.  *  Wed Feb 21 19:58:56 CET 2001, v 1.0.1: OpenFirmware support, fixed memory detection, better debug support, code cleaning
  52.  *  Wed Feb 21 14:47:06 CET 2001, v 1.0.0: First working version
  53.  */
  54. #include <linux/config.h>
  55. #include <linux/module.h>
  56. #include <linux/version.h>
  57. #include <linux/kernel.h>
  58. #include <linux/errno.h>
  59. #include <linux/string.h>
  60. #include <linux/mm.h>
  61. #include <linux/tty.h>
  62. #include <linux/slab.h>
  63. #include <linux/vmalloc.h>
  64. #include <linux/delay.h>
  65. #include <linux/interrupt.h>
  66. #include <linux/fb.h>
  67. #include <linux/init.h>
  68. #include <linux/pci.h>
  69. #include <linux/ioport.h>
  70. #include <video/fbcon.h>
  71. #include <video/fbcon-mfb.h>
  72. #include <video/fbcon-cfb2.h>
  73. #include <video/fbcon-cfb4.h>
  74. #include <video/fbcon-cfb8.h>
  75. #include <video/fbcon-cfb16.h>
  76. #include <video/fbcon-cfb24.h>
  77. #include <video/fbcon-cfb32.h>
  78. #include <asm/io.h>
  79. #include <asm/uaccess.h>
  80. #ifdef CONFIG_FB_OF
  81. #include <asm/prom.h>
  82. #endif
  83. #include "pm3fb.h"
  84. /* ************************************* */
  85. /* ***** The various "global" data ***** */
  86. /* ************************************* */
  87. /* those will need a rework for multiple board support */
  88. /* Driver name */
  89. static const char permedia3_name[16] = "Permedia3";
  90. /* the fb_par struct, mandatory */
  91. struct pm3fb_par {
  92. u32 pixclock; /* pixclock in KHz */
  93. u32 width; /* width of virtual screen */
  94. u32 height; /* height of virtual screen */
  95. u32 hsstart; /* horiz. sync start */
  96. u32 hsend; /* horiz. sync end */
  97. u32 hbend; /* horiz. blank end (also gate end) */
  98. u32 htotal; /* total width (w/ sync & blank) */
  99. u32 vsstart; /* vert. sync start */
  100. u32 vsend; /* vert. sync end */
  101. u32 vbend; /* vert. blank end */
  102. u32 vtotal; /* total height (w/ sync & blank) */
  103. u32 stride; /* screen stride */
  104. u32 base; /* screen base (xoffset+yoffset) in 128 bits unit */
  105. /* NOTE : unlike other pm3 stuff above, stored *after* shiftbpp. don't ask */
  106. u32 depth; /* screen depth (8, 12, 15, 16 or 32) */
  107. u32 video; /* video control (hsync,vsync) */
  108. };
  109. /* memory timings */
  110. struct pm3fb_timings
  111. {
  112. unsigned long caps;
  113. unsigned long timings;
  114. unsigned long control;
  115. unsigned long refresh;
  116. unsigned long powerdown;
  117. };
  118. typedef enum pm3fb_timing_result { pm3fb_timing_ok, pm3fb_timing_problem, pm3fb_timing_retry } pm3fb_timing_result;
  119. #define PM3FB_UNKNOWN_TIMING_VALUE ((unsigned long)-1)
  120. #define PM3FB_UNKNOWN_TIMINGS { PM3FB_UNKNOWN_TIMING_VALUE, PM3FB_UNKNOWN_TIMING_VALUE, PM3FB_UNKNOWN_TIMING_VALUE, PM3FB_UNKNOWN_TIMING_VALUE, PM3FB_UNKNOWN_TIMING_VALUE }
  121. /* the fb_info struct, mandatory */
  122. struct pm3fb_info {
  123. struct fb_info_gen gen;
  124. unsigned long board_num; /* internal board number */
  125. unsigned long use_current;
  126. struct pm3fb_par *current_par;
  127. struct pci_dev *dev;    /* PCI device */
  128. #ifdef SUPPORT_FB_OF
  129. struct device_node *dn; /* OF node for the PCI device */
  130. #endif /* SUPPORT_FB_OF */
  131. unsigned long board_type; /* index in the cardbase */
  132. unsigned char *fb_base; /* framebuffer memory base */
  133. u32 fb_size; /* framebuffer memory size */
  134. unsigned char *p_fb; /* physical address of frame buffer */
  135. unsigned char *v_fb; /* virtual address of frame buffer */
  136. unsigned char *pIOBase; /* physical address of registers region, must be rg_base or rg_base+PM2_REGS_SIZE depending on the host endianness */
  137. unsigned char *vIOBase; /* address of registers after ioremap() */
  138. struct {
  139. u8 transp;
  140. u8 red;
  141. u8 green;
  142. u8 blue;
  143. } palette[256];
  144. union {
  145. #ifdef FBCON_HAS_CFB16
  146. u16 cmap12[16]; /* RGBA 4444 */
  147. u16 cmap15[16]; /* RGBA 5551 */
  148. u16 cmap16[16]; /* RGBA 5650 */
  149. #endif
  150. #ifdef FBCON_HAS_CFB32
  151. u32 cmap32[16];
  152. #endif
  153. } cmap;
  154. struct pm3fb_timings memt;
  155. };
  156. /* regular resolution database*/
  157. static struct {
  158. char name[16];
  159. struct pm3fb_par user_mode;
  160. } mode_base[] __initdata = {
  161. {
  162. "default-800x600", {
  163. 49500, 800, 600, 16, 96, 256, 1056, 1, 4, 25, 625,
  164.     800, 0, 8,
  165.     PM3VideoControl_ENABLE |
  166.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  167.     |
  168.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  169.     | PM3VideoControl_PIXELSIZE_8BIT}}, {
  170. "1024x768-74", {
  171. 78752, 1024, 768, 32, 128, 304, 1328, 1, 4, 38,
  172.     806, 1024, 0, 8,
  173.     PM3VideoControl_ENABLE |
  174.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  175.     |
  176.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  177.     | PM3VideoControl_PIXELSIZE_8BIT}}, {
  178. "1024x768-74-32", {
  179. 78752, 1024, 768, 32, 128, 304, 1328, 1, 4, 38,
  180. 806, 1024, 0, 32,
  181. PM3VideoControl_ENABLE |
  182. PM3VideoControl_HSYNC_ACTIVE_HIGH
  183. |
  184. PM3VideoControl_VSYNC_ACTIVE_HIGH
  185. | PM3VideoControl_PIXELSIZE_32BIT}},
  186. /* Generated mode : "1600x1024", for the SGI 1600SW flat panel*/
  187. {
  188. "SGI1600SW", {
  189. 108000, 1600, 1024, 16, 56, 104, 1704, 3, 6, 32,
  190. 1056, 1600, 0, 8,
  191. PM3VideoControl_ENABLE|
  192. PM3VideoControl_HSYNC_ACTIVE_LOW|PM3VideoControl_VSYNC_ACTIVE_LOW|
  193. PM3VideoControl_PIXELSIZE_32BIT}}, 
  194. /* ##### auto-generated mode, by fbtimings2pm3 */
  195. /* Generated mode : "640x480-60" */
  196. {
  197. "640x480-60", {
  198. 25174, 640, 480, 16, 112, 160, 800, 10, 12, 45,
  199.     525, 640, 0, 8,
  200.     PM3VideoControl_ENABLE |
  201.     PM3VideoControl_HSYNC_ACTIVE_LOW
  202.     |
  203.     PM3VideoControl_VSYNC_ACTIVE_LOW
  204.     | PM3VideoControl_PIXELSIZE_8BIT}},
  205. /* Generated mode : "640x480-72" */
  206. {
  207. "640x480-72", {
  208. 31199, 640, 480, 24, 64, 192, 832, 9, 12, 40, 520,
  209.     640, 0, 8,
  210.     PM3VideoControl_ENABLE |
  211.     PM3VideoControl_HSYNC_ACTIVE_LOW
  212.     |
  213.     PM3VideoControl_VSYNC_ACTIVE_LOW
  214.     | PM3VideoControl_PIXELSIZE_8BIT}},
  215. /* Generated mode : "640x480-75" */
  216. {
  217. "640x480-75", {
  218. 31499, 640, 480, 16, 80, 200, 840, 1, 4, 20, 500,
  219.     640, 0, 8,
  220.     PM3VideoControl_ENABLE |
  221.     PM3VideoControl_HSYNC_ACTIVE_LOW
  222.     |
  223.     PM3VideoControl_VSYNC_ACTIVE_LOW
  224.     | PM3VideoControl_PIXELSIZE_8BIT}},
  225. /* Generated mode : "640x480-90" */
  226. {
  227. "640x480-90", {
  228. 39909, 640, 480, 32, 72, 192, 832, 25, 39, 53, 533,
  229.     640, 0, 8,
  230.     PM3VideoControl_ENABLE |
  231.     PM3VideoControl_HSYNC_ACTIVE_LOW
  232.     |
  233.     PM3VideoControl_VSYNC_ACTIVE_LOW
  234.     | PM3VideoControl_PIXELSIZE_8BIT}},
  235. /* Generated mode : "640x480-100" */
  236. {
  237. "640x480-100", {
  238. 44899, 640, 480, 32, 160, 208, 848, 22, 34, 51,
  239.     531, 640, 0, 8,
  240.     PM3VideoControl_ENABLE |
  241.     PM3VideoControl_HSYNC_ACTIVE_LOW
  242.     |
  243.     PM3VideoControl_VSYNC_ACTIVE_LOW
  244.     | PM3VideoControl_PIXELSIZE_8BIT}},
  245. /* Generated mode : "800x600-48-lace" */
  246. /* INTERLACED NOT SUPPORTED
  247.   {"800x600-48-lace", {35999, 800, 600, 80, 208, 264, 1064, 11, 23, 102, 702, 800, 0, 8, PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_HIGH|PM3VideoControl_VSYNC_ACTIVE_HIGH|PM3VideoControl_PIXELSIZE_8BIT}}, 
  248.    INTERLACED NOT SUPPORTED */
  249. /* Generated mode : "800x600-56" */
  250. {
  251. "800x600-56", {
  252. 35999, 800, 600, 24, 96, 224, 1024, 1, 3, 25, 625,
  253.     800, 0, 8,
  254.     PM3VideoControl_ENABLE |
  255.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  256.     |
  257.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  258.     | PM3VideoControl_PIXELSIZE_8BIT}},
  259. /* Generated mode : "800x600-60" */
  260. {
  261. "800x600-60", {
  262. 40000, 800, 600, 40, 168, 256, 1056, 1, 5, 28, 628,
  263.     800, 0, 8,
  264.     PM3VideoControl_ENABLE |
  265.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  266.     |
  267.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  268.     | PM3VideoControl_PIXELSIZE_8BIT}},
  269. /* Generated mode : "800x600-70" */
  270. {
  271. "800x600-70", {
  272. 44899, 800, 600, 24, 168, 208, 1008, 9, 21, 36,
  273.     636, 800, 0, 8,
  274.     PM3VideoControl_ENABLE |
  275.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  276.     |
  277.     PM3VideoControl_VSYNC_ACTIVE_LOW
  278.     | PM3VideoControl_PIXELSIZE_8BIT}},
  279. /* Generated mode : "800x600-72" */
  280. {
  281. "800x600-72", {
  282. 50000, 800, 600, 56, 176, 240, 1040, 37, 43, 66,
  283.     666, 800, 0, 8,
  284.     PM3VideoControl_ENABLE |
  285.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  286.     |
  287.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  288.     | PM3VideoControl_PIXELSIZE_8BIT}},
  289. /* Generated mode : "800x600-75" */
  290. {
  291. "800x600-75", {
  292. 49497, 800, 600, 16, 96, 256, 1056, 1, 4, 25, 625,
  293.     800, 0, 8,
  294.     PM3VideoControl_ENABLE |
  295.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  296.     |
  297.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  298.     | PM3VideoControl_PIXELSIZE_8BIT}},
  299. /* Generated mode : "800x600-90" */
  300. {
  301. "800x600-90", {
  302. 56637, 800, 600, 8, 72, 192, 992, 8, 19, 35, 635,
  303.     800, 0, 8,
  304.     PM3VideoControl_ENABLE |
  305.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  306.     |
  307.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  308.     | PM3VideoControl_PIXELSIZE_8BIT}},
  309. /* Generated mode : "800x600-100", from /etc/fb.modes */
  310. /* DISABLED, hsstart == 0
  311. {
  312. "800x600-100", {
  313. 67499, 800, 600, 0, 64, 280, 1080, 7, 11, 25, 625,
  314.     800, 0, 8,
  315.     PM3VideoControl_ENABLE |
  316.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  317.     |
  318.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  319.     | PM3VideoControl_PIXELSIZE_8BIT}},
  320. */
  321. /* Generated mode : "800x600-100", from ??? */
  322. {
  323. "800x600-100", {
  324. 69650, 800, 600, 64, 128, 288, 1088, 4, 10, 40, 640, 800, 0, 8,
  325. PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_LOW|
  326. PM3VideoControl_VSYNC_ACTIVE_LOW|PM3VideoControl_PIXELSIZE_8BIT}},
  327. /* Generated mode : "1024x768-43-lace" */
  328. /* INTERLACED NOT SUPPORTED
  329.   {"1024x768-43-lace", {44899, 1024, 768, 8, 184, 240, 1264, 1, 9, 49, 817, 1024, 0, 8, PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_HIGH|PM3VideoControl_VSYNC_ACTIVE_HIGH|PM3VideoControl_PIXELSIZE_8BIT}}, 
  330.    INTERLACED NOT SUPPORTED */
  331. /* Generated mode : "1024x768-60" */
  332. {
  333. "1024x768-60", {
  334. 64998, 1024, 768, 24, 160, 320, 1344, 3, 9, 38,
  335.     806, 1024, 0, 8,
  336.     PM3VideoControl_ENABLE |
  337.     PM3VideoControl_HSYNC_ACTIVE_LOW
  338.     |
  339.     PM3VideoControl_VSYNC_ACTIVE_LOW
  340.     | PM3VideoControl_PIXELSIZE_8BIT}},
  341. /* Generated mode : "1024x768-70" */
  342. {
  343. "1024x768-70", {
  344. 74996, 1024, 768, 24, 160, 304, 1328, 3, 9, 38,
  345.     806, 1024, 0, 8,
  346.     PM3VideoControl_ENABLE |
  347.     PM3VideoControl_HSYNC_ACTIVE_LOW
  348.     |
  349.     PM3VideoControl_VSYNC_ACTIVE_LOW
  350.     | PM3VideoControl_PIXELSIZE_8BIT}},
  351. /* Generated mode : "1024x768-72" */
  352. {
  353. "1024x768-72", {
  354. 74996, 10224, 768, 24, 160, 264, 10488, 3, 9, 38,
  355.     806, 10224, 0, 8,
  356.     PM3VideoControl_ENABLE |
  357.     PM3VideoControl_HSYNC_ACTIVE_LOW
  358.     |
  359.     PM3VideoControl_VSYNC_ACTIVE_LOW
  360.     | PM3VideoControl_PIXELSIZE_8BIT}},
  361. /* Generated mode : "1024x768-75" */
  362. {
  363. "1024x768-75", {
  364. 78746, 1024, 768, 16, 112, 288, 1312, 1, 4, 32,
  365.     800, 1024, 0, 8,
  366.     PM3VideoControl_ENABLE |
  367.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  368.     |
  369.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  370.     | PM3VideoControl_PIXELSIZE_8BIT}},
  371. /* Generated mode : "1024x768-90" */
  372. {
  373. "1024x768-90", {
  374. 100000, 1024, 768, 0, 96, 288, 1312, 21, 36, 77,
  375.     845, 1024, 0, 8,
  376.     PM3VideoControl_ENABLE |
  377.     PM3VideoControl_HSYNC_ACTIVE_LOW
  378.     |
  379.     PM3VideoControl_VSYNC_ACTIVE_LOW
  380.     | PM3VideoControl_PIXELSIZE_8BIT}},
  381. /* Generated mode : "1024x768-100", from /etc/fb.modes */
  382. /* DISABLED, vsstart == 0
  383. {
  384. "1024x768-100", {
  385. 109998, 1024, 768, 0, 88, 368, 1392, 0, 8, 24, 792,
  386.     1024, 0, 8,
  387.     PM3VideoControl_ENABLE |
  388.     PM3VideoControl_HSYNC_ACTIVE_LOW
  389.     |
  390.     PM3VideoControl_VSYNC_ACTIVE_LOW
  391.     | PM3VideoControl_PIXELSIZE_8BIT}},
  392. */
  393. /* Generated mode : "1024x768-100", from ??? */
  394. {
  395. "1024x768-100", {
  396. 115500, 1024, 768, 32, 224, 416, 1440, 3, 13, 34, 802, 1024, 0, 8,
  397. PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_LOW|
  398. PM3VideoControl_VSYNC_ACTIVE_LOW|PM3VideoControl_PIXELSIZE_8BIT}},
  399. /* Generated mode : "1152x864-43-lace" */
  400. /* INTERLACED NOT SUPPORTED
  401.   {"1152x864-43-lace", {64998, 1152, 864, 72, 200, 264, 1416, 78, 87, 191, 1055, 1152, 0, 8, PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_HIGH|PM3VideoControl_VSYNC_ACTIVE_HIGH|PM3VideoControl_PIXELSIZE_8BIT}}, 
  402.    INTERLACED NOT SUPPORTED */
  403. /* Generated mode : "1152x864-47-lace" */
  404. /* INTERLACED NOT SUPPORTED
  405.   {"1152x864-47-lace", {64998, 1152, 864, 88, 216, 296, 1448, 30, 39, 83, 947, 1152, 0, 8, PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_HIGH|PM3VideoControl_VSYNC_ACTIVE_HIGH|PM3VideoControl_PIXELSIZE_8BIT}}, 
  406.    INTERLACED NOT SUPPORTED */
  407. /* Generated mode : "1152x864-60" */
  408. {
  409. "1152x864-60", {
  410. 80000, 1152, 864, 64, 176, 304, 1456, 6, 11, 52,
  411.     916, 1152, 0, 8,
  412.     PM3VideoControl_ENABLE |
  413.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  414.     |
  415.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  416.     | PM3VideoControl_PIXELSIZE_8BIT}},
  417. /* Generated mode : "1152x864-70" */
  418. {
  419. "1152x864-70", {
  420. 100000, 1152, 864, 40, 192, 360, 1512, 13, 24, 81,
  421.     945, 1152, 0, 8,
  422.     PM3VideoControl_ENABLE |
  423.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  424.     |
  425.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  426.     | PM3VideoControl_PIXELSIZE_8BIT}},
  427. /* Generated mode : "1152x864-75" */
  428. {
  429. "1152x864-75", {
  430. 109998, 1152, 864, 24, 168, 312, 1464, 45, 53, 138,
  431.     1002, 1152, 0, 8,
  432.     PM3VideoControl_ENABLE |
  433.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  434.     |
  435.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  436.     | PM3VideoControl_PIXELSIZE_8BIT}},
  437. /* Generated mode : "1152x864-80" */
  438. {
  439. "1152x864-80", {
  440. 109998, 1152, 864, 16, 128, 288, 1440, 30, 37, 94,
  441.     958, 1152, 0, 8,
  442.     PM3VideoControl_ENABLE |
  443.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  444.     |
  445.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  446.     | PM3VideoControl_PIXELSIZE_8BIT}},
  447. /* Generated mode : "1280x1024-43-lace" */
  448. /* INTERLACED NOT SUPPORTED
  449.   {"1280x1024-43-lace", {80000, 1024, 1024, 80, 160, 320, 1344, 50, 60, 125, 1149, 1024, 0, 8, PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_HIGH|PM3VideoControl_VSYNC_ACTIVE_HIGH|PM3VideoControl_PIXELSIZE_8BIT}}, 
  450.    INTERLACED NOT SUPPORTED */
  451. /* Generated mode : "1280x1024-47-lace" */
  452. /* INTERLACED NOT SUPPORTED
  453.   {"1280x1024-47-lace", {80000, 1280, 1024, 80, 160, 320, 1600, 1, 11, 29, 1053, 1280, 0, 8, PM3VideoControl_ENABLE|PM3VideoControl_HSYNC_ACTIVE_HIGH|PM3VideoControl_VSYNC_ACTIVE_HIGH|PM3VideoControl_PIXELSIZE_8BIT}}, 
  454.    INTERLACED NOT SUPPORTED */
  455. /* Generated mode : "1280x1024-60" */
  456. {
  457. "1280x1024-60", {
  458. 107991, 1280, 1024, 48, 160, 408, 1688, 1, 4, 42,
  459.     1066, 1280, 0, 8,
  460.     PM3VideoControl_ENABLE |
  461.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  462.     |
  463.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  464.     | PM3VideoControl_PIXELSIZE_8BIT}},
  465. /* Generated mode : "1280x1024-70" */
  466. {
  467. "1280x1024-70", {
  468. 125992, 1280, 1024, 80, 192, 408, 1688, 1, 6, 42,
  469.     1066, 1280, 0, 8,
  470.     PM3VideoControl_ENABLE |
  471.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  472.     |
  473.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  474.     | PM3VideoControl_PIXELSIZE_8BIT}},
  475. /* Generated mode : "1280x1024-74" */
  476. {
  477. "1280x1024-74", {
  478. 134989, 1280, 1024, 32, 176, 432, 1712, 0, 30, 40,
  479.     1064, 1280, 0, 8,
  480.     PM3VideoControl_ENABLE |
  481.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  482.     |
  483.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  484.     | PM3VideoControl_PIXELSIZE_8BIT}},
  485. /* Generated mode : "1280x1024-75" */
  486. {
  487. "1280x1024-75", {
  488. 134989, 1280, 1024, 16, 160, 408, 1688, 1, 4, 42,
  489.     1066, 1280, 0, 8,
  490.     PM3VideoControl_ENABLE |
  491.     PM3VideoControl_HSYNC_ACTIVE_HIGH
  492.     |
  493.     PM3VideoControl_VSYNC_ACTIVE_HIGH
  494.     | PM3VideoControl_PIXELSIZE_8BIT}},
  495. /* Generated mode : "1600x1200-60" */
  496. {
  497. "1600x1200-60", {
  498. 155981, 1600, 1200, 32, 192, 448, 2048, 10, 18, 70,
  499.     1270, 1600, 0, 8,
  500.     PM3VideoControl_ENABLE |
  501.     PM3VideoControl_HSYNC_ACTIVE_LOW
  502.     |
  503.     PM3VideoControl_VSYNC_ACTIVE_LOW
  504.     | PM3VideoControl_PIXELSIZE_8BIT}},
  505. /* Generated mode : "1600x1200-66" */
  506. {
  507. "1600x1200-66", {
  508. 171998, 1600, 1200, 40, 176, 480, 2080, 3, 6, 53,
  509.     1253, 1600, 0, 8,
  510.     PM3VideoControl_ENABLE |
  511.     PM3VideoControl_HSYNC_ACTIVE_LOW
  512.     |
  513.     PM3VideoControl_VSYNC_ACTIVE_LOW
  514.     | PM3VideoControl_PIXELSIZE_8BIT}},
  515. /* Generated mode : "1600x1200-76" */
  516. {
  517. "1600x1200-76", {
  518. 197980, 1600, 1200, 40, 176, 480, 2080, 3, 8, 50,
  519.     1250, 1600, 0, 8,
  520.     PM3VideoControl_ENABLE |
  521.     PM3VideoControl_HSYNC_ACTIVE_LOW
  522.     |
  523.     PM3VideoControl_VSYNC_ACTIVE_LOW
  524.     | PM3VideoControl_PIXELSIZE_8BIT}},
  525. /* ##### end of auto-generated mode */
  526. {
  527. "",}
  528. };
  529. /* more mandatory stuff (see skeletonfb.c + framebuffer driver HOWTO */
  530. static struct pm3fb_info fb_info[PM3_MAX_BOARD];
  531. static struct pm3fb_par current_par[PM3_MAX_BOARD];
  532. static int current_par_valid[PM3_MAX_BOARD];
  533. /* to allow explicit filtering of board */
  534. short bus[PM3_MAX_BOARD];
  535. short slot[PM3_MAX_BOARD];
  536. short func[PM3_MAX_BOARD];
  537. short disable[PM3_MAX_BOARD];
  538. short noaccel[PM3_MAX_BOARD];
  539. char fontn[PM3_MAX_BOARD][PM3_FONTNAME_SIZE];
  540. short depth[PM3_MAX_BOARD];
  541. short flatpanel[PM3_MAX_BOARD];
  542. static struct display disp[PM3_MAX_BOARD];
  543. static char g_options[PM3_OPTIONS_SIZE] __initdata = "pm3fb,dummy";
  544. short printtimings = 0;
  545. short forcesize[PM3_MAX_BOARD];
  546. /* ********************* */
  547. /* ***** prototype ***** */
  548. /* ********************* */
  549. /* card-specific */
  550. static void pm3fb_j2000_setup(struct pm3fb_info *l_fb_info);
  551. /* permedia3-specific */
  552. static pm3fb_timing_result pm3fb_preserve_memory_timings(struct pm3fb_info *l_fb_info);
  553. static pm3fb_timing_result pm3fb_try_memory_timings(struct pm3fb_info *l_fb_info);
  554. static void pm3fb_write_memory_timings(struct pm3fb_info *l_fb_info);
  555. static unsigned long pm3fb_read_dac_reg(struct pm3fb_info *l_fb_info,
  556. unsigned long r);
  557. static unsigned long pm3fb_CalculateClock(struct pm3fb_info *l_fb_info, unsigned long reqclock, /* In kHz units */
  558.   unsigned long refclock, /* In kHz units */
  559.   unsigned char *prescale, /* ClkPreScale */
  560.   unsigned char *feedback, /* ClkFeedBackScale */
  561.   unsigned char *postscale
  562.   /* ClkPostScale */ );
  563. static void pm3fb_clear_memory(struct pm3fb_info *l_fb_info, u32 cc);
  564. static void pm3fb_clear_colormap(struct pm3fb_info *l_fb_info, unsigned char r, unsigned char g, unsigned char b);
  565. static void pm3fb_common_init(struct pm3fb_info *l_fb_info);
  566. static int pm3fb_Shiftbpp(struct pm3fb_info *l_fb_info,
  567.   unsigned long depth, int v);
  568. static int pm3fb_Unshiftbpp(struct pm3fb_info *l_fb_info,
  569.     unsigned long depth, int v);
  570. static void pm3fb_mapIO(struct pm3fb_info *l_fb_info);
  571. static void pm3fb_unmapIO(struct pm3fb_info *l_fb_info);
  572. #if defined(PM3FB_MASTER_DEBUG) && (PM3FB_MASTER_DEBUG >= 2)
  573. static void pm3fb_show_cur_mode(struct pm3fb_info *l_fb_info);
  574. #endif
  575. static void pm3fb_show_cur_timing(struct pm3fb_info *l_fb_info);
  576. static void pm3fb_write_mode(struct pm3fb_info *l_fb_info);
  577. static void pm3fb_read_mode(struct pm3fb_info *l_fb_info,
  578.     struct pm3fb_par *curpar);
  579. static unsigned long pm3fb_size_memory(struct pm3fb_info *l_fb_info);
  580. /* accelerated permedia3-specific */
  581. #ifdef PM3FB_USE_ACCEL
  582. static void pm3fb_wait_pm3(struct pm3fb_info *l_fb_info);
  583. static void pm3fb_init_engine(struct pm3fb_info *l_fb_info);
  584. #ifdef FBCON_HAS_CFB32
  585. static void pm3fb_cfb32_clear(struct vc_data *conp,
  586.       struct display *p,
  587.       int sy, int sx, int height, int width);
  588. static void pm3fb_cfb32_clear_margins(struct vc_data *conp,
  589.       struct display *p, int bottom_only);
  590. #endif /* FBCON_HAS_CFB32 */
  591. #ifdef FBCON_HAS_CFB16
  592. static void pm3fb_cfb16_clear(struct vc_data *conp,
  593.       struct display *p,
  594.       int sy, int sx, int height, int width);
  595. static void pm3fb_cfb16_clear_margins(struct vc_data *conp,
  596.       struct display *p, int bottom_only);
  597. #endif /* FBCON_HAS_CFB16 */
  598. #ifdef FBCON_HAS_CFB8
  599. static void pm3fb_cfb8_clear(struct vc_data *conp,
  600.      struct display *p,
  601.      int sy, int sx, int height, int width);
  602. static void pm3fb_cfb8_clear_margins(struct vc_data *conp,
  603.      struct display *p, int bottom_only);
  604. #endif /* FBCON_HAS_CFB8 */
  605. #if defined(FBCON_HAS_CFB8) || defined(FBCON_HAS_CFB16) || defined(FBCON_HAS_CFB32)
  606. static void pm3fb_cfbX_bmove(struct display *p,
  607.      int sy, int sx,
  608.      int dy, int dx, int height, int width);
  609. static void pm3fb_cfbX_putc(struct vc_data *conp, struct display *p,
  610.     int c, int yy, int xx);
  611. static void pm3fb_cfbX_putcs(struct vc_data *conp, struct display *p,
  612.      const unsigned short *s, int count, int yy,
  613.      int xx);
  614. static void pm3fb_cfbX_revc(struct display *p, int xx, int yy);
  615. #endif /* FBCON_HAS_CFB8 || FBCON_HAS_CFB16 || FBCON_HAS_CFB32 */
  616. #endif /* PM3FB_USE_ACCEL */
  617. /* pre-init */
  618. static void pm3fb_mode_setup(char *mode, unsigned long board_num);
  619. static void pm3fb_pciid_setup(char *pciid, unsigned long board_num);
  620. static char *pm3fb_boardnum_setup(char *options, unsigned long *bn);
  621. static void pm3fb_real_setup(char *options);
  622. /* fbdev */
  623. static int pm3fb_open(struct fb_info *info, int user);
  624. static int pm3fb_release(struct fb_info *info, int user);
  625. static int pm3fb_encode_fix(struct fb_fix_screeninfo *fix,
  626.     const void *par, struct fb_info_gen *info);
  627. static int pm3fb_decode_var(const struct fb_var_screeninfo *var,
  628.     void *par, struct fb_info_gen *info);
  629. static void pm3fb_encode_depth(struct fb_var_screeninfo *var, long d);
  630. static int pm3fb_encode_var(struct fb_var_screeninfo *var,
  631.     const void *par, struct fb_info_gen *info);
  632. static void pm3fb_get_par(void *par, struct fb_info_gen *info);
  633. static void pm3fb_set_par(const void *par, struct fb_info_gen *info);
  634. static void pm3fb_set_color(struct pm3fb_info *l_fb_info,
  635.     unsigned char regno, unsigned char r,
  636.     unsigned char g, unsigned char b);
  637. static int pm3fb_getcolreg(unsigned regno, unsigned *red, unsigned *green,
  638.    unsigned *blue, unsigned *transp,
  639.    struct fb_info *info);
  640. static int pm3fb_setcolreg(unsigned regno, unsigned red, unsigned green,
  641.    unsigned blue, unsigned transp,
  642.    struct fb_info *info);
  643. static int pm3fb_blank(int blank_mode, struct fb_info_gen *info);
  644. static void pm3fb_set_disp(const void *par, struct display *disp,
  645.    struct fb_info_gen *info);
  646. static void pm3fb_detect(void);
  647. static int pm3fb_pan_display(const struct fb_var_screeninfo *var,
  648.      struct fb_info_gen *info);
  649. static int pm3fb_ioctl(struct inode *inode, struct file *file,
  650.                        u_int cmd, u_long arg, int con,
  651.        struct fb_info *info);
  652. /* the struct that hold them together */
  653. #ifdef KERNEL_2_2
  654. struct fbgen_hwswitch pm3fb_switch = {
  655. pm3fb_detect, pm3fb_encode_fix, pm3fb_decode_var, pm3fb_encode_var,
  656. pm3fb_get_par, pm3fb_set_par, pm3fb_getcolreg, pm3fb_setcolreg,
  657. pm3fb_pan_display, pm3fb_blank, pm3fb_set_disp
  658. };
  659. static struct fb_ops pm3fb_ops = {
  660. pm3fb_open, pm3fb_release,
  661. fbgen_get_fix, fbgen_get_var, fbgen_set_var,
  662. fbgen_get_cmap, fbgen_set_cmap, fbgen_pan_display, pm3fb_ioctl,
  663.     NULL, NULL
  664. };
  665. #endif /* KERNEL_2_2 */
  666. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  667. struct fbgen_hwswitch pm3fb_switch = {
  668. pm3fb_detect, pm3fb_encode_fix, pm3fb_decode_var, pm3fb_encode_var,
  669. pm3fb_get_par, pm3fb_set_par, pm3fb_getcolreg, pm3fb_setcolreg,
  670. pm3fb_pan_display, pm3fb_blank, pm3fb_set_disp
  671. };
  672. static struct fb_ops pm3fb_ops = {
  673. THIS_MODULE,
  674. pm3fb_open, pm3fb_release,
  675. fbgen_get_fix, fbgen_get_var, fbgen_set_var,
  676. fbgen_get_cmap, fbgen_set_cmap, fbgen_pan_display, pm3fb_ioctl, NULL, NULL
  677. };
  678. #endif /* KERNEL_2_4 or KERNEL_2_5 */
  679. #ifdef PM3FB_USE_ACCEL
  680. #ifdef FBCON_HAS_CFB32
  681. static struct display_switch pm3fb_cfb32 = {
  682. fbcon_cfb32_setup, pm3fb_cfbX_bmove, pm3fb_cfb32_clear,
  683. pm3fb_cfbX_putc, pm3fb_cfbX_putcs, pm3fb_cfbX_revc,
  684. NULL /* cursor() */ , NULL /* set_font() */ ,
  685. pm3fb_cfb32_clear_margins,
  686. FONTWIDTHRANGE(1, 16) /* true only if accelerated... */
  687. };
  688. #endif /* FBCON_HAS_CFB32 */
  689. #ifdef FBCON_HAS_CFB16
  690. static struct display_switch pm3fb_cfb16 = {
  691. fbcon_cfb16_setup, pm3fb_cfbX_bmove, pm3fb_cfb16_clear,
  692. pm3fb_cfbX_putc, pm3fb_cfbX_putcs, pm3fb_cfbX_revc,
  693. NULL /* cursor() */ , NULL /* set_font() */ ,
  694. pm3fb_cfb16_clear_margins,
  695. FONTWIDTHRANGE(1, 16) /* true only if accelerated... */
  696. };
  697. #endif /* FBCON_HAS_CFB16 */
  698. #ifdef FBCON_HAS_CFB8
  699. static struct display_switch pm3fb_cfb8 = {
  700. fbcon_cfb8_setup, pm3fb_cfbX_bmove, pm3fb_cfb8_clear,
  701. pm3fb_cfbX_putc, pm3fb_cfbX_putcs, pm3fb_cfbX_revc,
  702. NULL /* cursor() */ , NULL /* set_font() */ ,
  703. pm3fb_cfb8_clear_margins,
  704. FONTWIDTHRANGE(1, 16) /* true only if accelerated... */
  705. };
  706. #endif /* FBCON_HAS_CFB8 */
  707. #endif /* PM3FB_USE_ACCEL */
  708. /* ****************************** */
  709. /* ***** card-specific data ***** */
  710. /* ****************************** */
  711. struct pm3fb_card_timings {
  712. unsigned long memsize; /* 0 for last value (i.e. default) */
  713. struct pm3fb_timings memt;
  714. };
  715. static struct pm3fb_card_timings t_FormacProFormance3[] = {
  716. { 16, { 0x02e311b8, 0x06100205, 0x08000002, 0x00000079, 0x00000000} },
  717. { 0, { 0x02e311b8, 0x06100205, 0x08000002, 0x00000079, 0x00000000} } /* from 16 MB PF3 */
  718. };
  719. static struct pm3fb_card_timings t_AppianJeronimo2000[] = {
  720. { 32, { 0x02e311B8, 0x07424905, 0x0c000003, 0x00000061, 0x00000000} },
  721. { 0, { 0x02e311B8, 0x07424905, 0x0c000003, 0x00000061, 0x00000000} } /* from 32MB J2000 */
  722. };
  723. static struct pm3fb_card_timings t_3DLabsOxygenVX1[] = {
  724. { 32, { 0x30e311b8, 0x08501204, 0x08000002, 0x0000006b, 0x00000000} },
  725. { 0, { 0x30e311b8, 0x08501204, 0x08000002, 0x0000006b, 0x00000000} } /* from 32MB VX1 */
  726. };
  727. static struct {
  728. char cardname[32]; /* recognized card name */
  729. u16 subvendor; /* subvendor of the card */
  730. u16 subdevice; /* subdevice of the card */
  731. u8  func; /* function of the card to which the extra init apply */
  732. void (*specific_setup)(struct pm3fb_info *l_fb_info); /* card/func specific setup, done before _any_ FB access */
  733. struct pm3fb_card_timings *c_memt; /* defauls timings for the boards */
  734. } cardbase[] = {
  735. { "Unknown Permedia3 board", 0xFFFF, 0xFFFF, 0xFF, NULL, NULL },
  736. { "Appian Jeronimo 2000 head 1", 0x1097, 0x3d32, 1, NULL,
  737.   t_AppianJeronimo2000
  738. },
  739. { "Appian Jeronimo 2000 head 2", 0x1097, 0x3d32, 2, pm3fb_j2000_setup,
  740.   t_AppianJeronimo2000
  741. },
  742. { "Formac ProFormance 3", PCI_VENDOR_ID_3DLABS, 0x000a, 0, NULL, /* Formac use 3DLabs ID ?!? */
  743.   t_FormacProFormance3
  744. },
  745. { "3DLabs Permedia3 Create!", PCI_VENDOR_ID_3DLABS, 0x0127, 0, NULL, NULL },
  746. { "3DLabs Oxygen VX1 PCI", PCI_VENDOR_ID_3DLABS, 0x0121, 0, NULL,
  747.   t_3DLabsOxygenVX1
  748. },
  749. { "3DLabs Oxygen VX1 AGP", PCI_VENDOR_ID_3DLABS, 0x0125, 0, NULL, NULL },
  750. { "3DLabs Oxygen VX1-16 AGP", PCI_VENDOR_ID_3DLABS, 0x0140, 0, NULL, NULL },
  751. { "3DLabs Oxygen VX1-1600SW PCI", PCI_VENDOR_ID_3DLABS, 0x0800, 0, NULL, NULL },
  752. { "", 0x0, 0x0, 0, NULL, NULL }
  753. };
  754. /* ********************************** */
  755. /* ***** card-specific function ***** */
  756. /* ********************************** */
  757. static void pm3fb_j2000_setup(struct pm3fb_info *l_fb_info)
  758. {       /* the appian j2000 require more initialization of the second head */
  759. /* l_fb_info must point to the _second_ head of the J2000 */
  760. DTRACE;
  761. l_fb_info->memt = t_AppianJeronimo2000[0].memt; /* 32 MB, first and only j2000 ? */
  762. pm3fb_write_memory_timings(l_fb_info);
  763. }
  764. /* *************************************** */
  765. /* ***** permedia3-specific function ***** */
  766. /* *************************************** */
  767. static pm3fb_timing_result pm3fb_preserve_memory_timings(struct pm3fb_info *l_fb_info)
  768. {
  769. l_fb_info->memt.caps = PM3_READ_REG(PM3LocalMemCaps);
  770. l_fb_info->memt.timings = PM3_READ_REG(PM3LocalMemTimings);
  771. l_fb_info->memt.control = PM3_READ_REG(PM3LocalMemControl);
  772. l_fb_info->memt.refresh = PM3_READ_REG(PM3LocalMemRefresh);
  773. l_fb_info->memt.powerdown = PM3_READ_REG(PM3LocalMemPowerDown);
  774. if ((l_fb_info->memt.caps == PM3FB_UNKNOWN_TIMING_VALUE) ||
  775.     (l_fb_info->memt.timings == PM3FB_UNKNOWN_TIMING_VALUE) ||
  776.     (l_fb_info->memt.control == PM3FB_UNKNOWN_TIMING_VALUE) ||
  777.     (l_fb_info->memt.refresh == PM3FB_UNKNOWN_TIMING_VALUE) ||
  778.     (l_fb_info->memt.powerdown == PM3FB_UNKNOWN_TIMING_VALUE))
  779. {
  780. printk(KERN_ERR "pm3fb: invalid memory timings in permedia3 board #%ldn", l_fb_info->board_num);
  781. return(pm3fb_try_memory_timings(l_fb_info));
  782. }
  783. return(pm3fb_timing_ok);
  784. }
  785. static pm3fb_timing_result pm3fb_try_memory_timings(struct pm3fb_info *l_fb_info)
  786. {
  787. if (cardbase[l_fb_info->board_type].c_memt)
  788. {
  789. int i = 0, done = 0;
  790. while (!done)
  791. {
  792. if ((cardbase[l_fb_info->board_type].c_memt[i].memsize == l_fb_info->fb_size)
  793.     || !(cardbase[l_fb_info->board_type].c_memt[i].memsize))
  794. { /* will use the 0-sized timings by default */
  795. done = 1;
  796. l_fb_info->memt = cardbase[l_fb_info->board_type].c_memt[i].memt;
  797. printk(KERN_WARNING  "pm3fb: trying to use predefined memory timings for permedia3 board #%ld (%s, %ld MB)n",
  798.        l_fb_info->board_num,
  799.        cardbase[l_fb_info->board_type].cardname,
  800.        cardbase[l_fb_info->board_type].c_memt[i].memsize);
  801. pm3fb_write_memory_timings(l_fb_info);
  802. return(pm3fb_timing_retry);
  803. }
  804. i++;
  805. }
  806. } else
  807. return(pm3fb_timing_problem);
  808. return(pm3fb_timing_ok);
  809. }
  810. static void pm3fb_write_memory_timings(struct pm3fb_info *l_fb_info)
  811. {
  812. unsigned char m, n, p;
  813. unsigned long clockused;
  814. PM3_SLOW_WRITE_REG(PM3LocalMemCaps, l_fb_info->memt.caps);
  815. PM3_SLOW_WRITE_REG(PM3LocalMemTimings, l_fb_info->memt.timings);
  816. PM3_SLOW_WRITE_REG(PM3LocalMemControl, l_fb_info->memt.control);
  817. PM3_SLOW_WRITE_REG(PM3LocalMemRefresh, l_fb_info->memt.refresh);
  818. PM3_SLOW_WRITE_REG(PM3LocalMemPowerDown, l_fb_info->memt.powerdown);
  819. clockused =
  820.     pm3fb_CalculateClock(l_fb_info, 2 * 105000, PM3_REF_CLOCK, &m,
  821.  &n, &p);
  822. PM3_WRITE_DAC_REG(PM3RD_KClkPreScale, m);
  823. PM3_WRITE_DAC_REG(PM3RD_KClkFeedbackScale, n);
  824. PM3_WRITE_DAC_REG(PM3RD_KClkPostScale, p);
  825. PM3_WRITE_DAC_REG(PM3RD_KClkControl,
  826.   PM3RD_KClkControl_STATE_RUN |
  827.   PM3RD_KClkControl_SOURCE_PLL |
  828.   PM3RD_KClkControl_ENABLE);
  829. PM3_WRITE_DAC_REG(PM3RD_MClkControl,
  830.   PM3RD_MClkControl_STATE_RUN |
  831.   PM3RD_MClkControl_SOURCE_KCLK |
  832.   PM3RD_MClkControl_ENABLE);
  833. PM3_WRITE_DAC_REG(PM3RD_SClkControl,
  834.   PM3RD_SClkControl_STATE_RUN |
  835.   PM3RD_SClkControl_SOURCE_PCLK |
  836.   PM3RD_SClkControl_ENABLE);
  837. }
  838. static unsigned long pm3fb_read_dac_reg(struct pm3fb_info *l_fb_info,
  839. unsigned long r)
  840. {
  841. DASSERT((l_fb_info->vIOBase != (unsigned char *) (-1)),
  842. "l_fb_info->vIOBase mapped in read dac regn");
  843. PM3_SET_INDEX(r);
  844. mb();
  845. return (PM3_READ_REG(PM3RD_IndexedData));
  846. }
  847. /* Calculating various clock parameter */
  848. static unsigned long pm3fb_CalculateClock(struct pm3fb_info *l_fb_info, unsigned long reqclock, /* In kHz units */
  849.   unsigned long refclock, /* In kHz units */
  850.   unsigned char *prescale, /* ClkPreScale */
  851.   unsigned char *feedback, /* ClkFeedBackScale */
  852.   unsigned char *postscale
  853.   /* ClkPostScale */ )
  854. {
  855. int f, pre, post;
  856. unsigned long freq;
  857. long freqerr = 1000;
  858. unsigned long actualclock = 0;
  859. DTRACE;
  860. for (f = 1; f < 256; f++) {
  861. for (pre = 1; pre < 256; pre++) {
  862. for (post = 0; post < 5; post++) {
  863. freq =
  864.     ((2 * refclock * f) /
  865.      (pre * (1 << post)));
  866. if ((reqclock > freq - freqerr)
  867.     && (reqclock < freq + freqerr)) {
  868. freqerr =
  869.     (reqclock >
  870.      freq) ? reqclock -
  871.     freq : freq - reqclock;
  872. *feedback = f;
  873. *prescale = pre;
  874. *postscale = post;
  875. actualclock = freq;
  876. }
  877. }
  878. }
  879. }
  880. return (actualclock);
  881. }
  882. static int pm3fb_Shiftbpp(struct pm3fb_info *l_fb_info,
  883.   unsigned long depth, int v)
  884. {
  885. DTRACE;
  886. switch (depth) {
  887. case 8:
  888. return (v >> 4);
  889. case 12:
  890. case 15:
  891. case 16:
  892. return (v >> 3);
  893. case 32:
  894. return (v >> 2);
  895. }
  896. DPRINTK(1, "Unsupported depth %ldn", depth);
  897. return (0);
  898. }
  899. static int pm3fb_Unshiftbpp(struct pm3fb_info *l_fb_info,
  900.     unsigned long depth, int v)
  901. {
  902. DTRACE;
  903. switch (depth) {
  904. case 8:
  905. return (v << 4);
  906. case 12:
  907. case 15:
  908. case 16:
  909. return (v << 3);
  910. case 32:
  911. return (v << 2);
  912. }
  913. DPRINTK(1, "Unsupported depth %ldn", depth);
  914. return (0);
  915. }
  916. static void pm3fb_mapIO(struct pm3fb_info *l_fb_info)
  917. {
  918. DTRACE;
  919. l_fb_info->vIOBase =
  920.     ioremap((unsigned long) l_fb_info->pIOBase, PM3_REGS_SIZE);
  921. l_fb_info->v_fb =
  922.     ioremap((unsigned long) l_fb_info->p_fb, l_fb_info->fb_size);
  923. DPRINTK(2, "IO mapping : IOBase %lx / %lx, fb %lx / %lxn",
  924. (unsigned long) l_fb_info->pIOBase,
  925. (unsigned long) l_fb_info->vIOBase,
  926. (unsigned long) l_fb_info->p_fb,
  927. (unsigned long) l_fb_info->v_fb);
  928. }
  929. static void pm3fb_unmapIO(struct pm3fb_info *l_fb_info)
  930. {
  931. DTRACE;
  932. iounmap(l_fb_info->vIOBase);
  933. iounmap(l_fb_info->v_fb);
  934. l_fb_info->vIOBase = (unsigned char *) -1;
  935. l_fb_info->v_fb = (unsigned char *) -1;
  936. }
  937. #if defined(PM3FB_MASTER_DEBUG) && (PM3FB_MASTER_DEBUG >= 2)
  938. static void pm3fb_show_cur_mode(struct pm3fb_info *l_fb_info)
  939. {
  940. DPRINTK(2, "PM3Aperture0: 0x%08xn", PM3_READ_REG(PM3Aperture0));
  941. DPRINTK(2, "PM3Aperture1: 0x%08xn", PM3_READ_REG(PM3Aperture1));
  942. DPRINTK(2, "PM3ByAperture1Mode: 0x%08xn",
  943. PM3_READ_REG(PM3ByAperture1Mode));
  944. DPRINTK(2, "PM3ByAperture2Mode: 0x%08xn",
  945. PM3_READ_REG(PM3ByAperture2Mode));
  946. DPRINTK(2, "PM3ChipConfig: 0x%08xn", PM3_READ_REG(PM3ChipConfig));
  947. DPRINTK(2, "PM3FIFODis: 0x%08xn", PM3_READ_REG(PM3FIFODis));
  948. DPRINTK(2, "PM3HTotal: 0x%08xn", PM3_READ_REG(PM3HTotal));
  949. DPRINTK(2, "PM3HbEnd: 0x%08xn", PM3_READ_REG(PM3HbEnd));
  950. DPRINTK(2, "PM3HgEnd: 0x%08xn", PM3_READ_REG(PM3HgEnd));
  951. DPRINTK(2, "PM3HsEnd: 0x%08xn", PM3_READ_REG(PM3HsEnd));
  952. DPRINTK(2, "PM3HsStart: 0x%08xn", PM3_READ_REG(PM3HsStart));
  953. DPRINTK(2, "PM3MemBypassWriteMask: 0x%08xn",
  954. PM3_READ_REG(PM3MemBypassWriteMask));
  955. DPRINTK(2, "PM3RD_IndexControl: 0x%08xn",
  956. PM3_READ_REG(PM3RD_IndexControl));
  957. DPRINTK(2, "PM3ScreenBase: 0x%08xn", PM3_READ_REG(PM3ScreenBase));
  958. DPRINTK(2, "PM3ScreenStride: 0x%08xn",
  959. PM3_READ_REG(PM3ScreenStride));
  960. DPRINTK(2, "PM3VClkCtl: 0x%08xn", PM3_READ_REG(PM3VClkCtl));
  961. DPRINTK(2, "PM3VTotal: 0x%08xn", PM3_READ_REG(PM3VTotal));
  962. DPRINTK(2, "PM3VbEnd: 0x%08xn", PM3_READ_REG(PM3VbEnd));
  963. DPRINTK(2, "PM3VideoControl: 0x%08xn",
  964. PM3_READ_REG(PM3VideoControl));
  965. DPRINTK(2, "PM3VsEnd: 0x%08xn", PM3_READ_REG(PM3VsEnd));
  966. DPRINTK(2, "PM3VsStart: 0x%08xn", PM3_READ_REG(PM3VsStart));
  967. DPRINTK(2, "PM3RD_ColorFormat: %ldn",
  968. PM3_READ_DAC_REG(PM3RD_ColorFormat));
  969. DPRINTK(2, "PM3RD_DACControl: %ldn",
  970. PM3_READ_DAC_REG(PM3RD_DACControl));
  971. DPRINTK(2, "PM3RD_DClk0FeedbackScale: %ldn",
  972. PM3_READ_DAC_REG(PM3RD_DClk0FeedbackScale));
  973. DPRINTK(2, "PM3RD_DClk0PostScale: %ldn",
  974. PM3_READ_DAC_REG(PM3RD_DClk0PostScale));
  975. DPRINTK(2, "PM3RD_DClk0PreScale: %ldn",
  976. PM3_READ_DAC_REG(PM3RD_DClk0PreScale));
  977. DPRINTK(2, "[not set] PM3RD_IndexControl: %ldn",
  978. PM3_READ_DAC_REG(PM3RD_IndexControl));
  979. DPRINTK(2, "PM3RD_MiscControl: %ldn",
  980. PM3_READ_DAC_REG(PM3RD_MiscControl));
  981. DPRINTK(2, "PM3RD_PixelSize: %ldn",
  982. PM3_READ_DAC_REG(PM3RD_PixelSize));
  983. DPRINTK(2, "PM3RD_SyncControl: %ldn",
  984. PM3_READ_DAC_REG(PM3RD_SyncControl));
  985. }
  986. #endif /* defined(PM3FB_MASTER_DEBUG) && (PM3FB_MASTER_DEBUG >= 2) */
  987. static void pm3fb_show_cur_timing(struct pm3fb_info *l_fb_info)
  988. {
  989. u16 subvendor, subdevice;
  990. if ((!pci_read_config_word
  991.      (l_fb_info->dev, PCI_SUBSYSTEM_VENDOR_ID, &subvendor))
  992.     &&
  993.     (!pci_read_config_word
  994.      (l_fb_info->dev, PCI_SUBSYSTEM_ID, &subdevice))) {
  995. /* well, nothing... */
  996. } else {
  997. subvendor = subdevice = (u16)-1;
  998. }
  999. printk(KERN_INFO "pm3fb: memory timings for board #%ld (subvendor: 0x%hx, subdevice: 0x%hx)n", l_fb_info->board_num, subvendor, subdevice);
  1000. printk(KERN_INFO " PM3LocalMemCaps: 0x%08xn",
  1001.        PM3_READ_REG(PM3LocalMemCaps));
  1002. printk(KERN_INFO " PM3LocalMemTimings: 0x%08xn",
  1003.        PM3_READ_REG(PM3LocalMemTimings));
  1004. printk(KERN_INFO " PM3LocalMemControl: 0x%08xn",
  1005.        PM3_READ_REG(PM3LocalMemControl));
  1006. printk(KERN_INFO " PM3LocalMemRefresh: 0x%08xn",
  1007.        PM3_READ_REG(PM3LocalMemRefresh));
  1008. printk(KERN_INFO " PM3LocalMemPowerDown: 0x%08xn",
  1009.        PM3_READ_REG(PM3LocalMemPowerDown));
  1010. }
  1011. /* write the mode to registers */
  1012. static void pm3fb_write_mode(struct pm3fb_info *l_fb_info)
  1013. {
  1014. char tempsync = 0x00, tempmisc = 0x00;
  1015. DTRACE;
  1016. PM3_SLOW_WRITE_REG(PM3MemBypassWriteMask, 0xffffffff);
  1017. PM3_SLOW_WRITE_REG(PM3Aperture0, 0x00000000);
  1018. PM3_SLOW_WRITE_REG(PM3Aperture1, 0x00000000);
  1019. PM3_SLOW_WRITE_REG(PM3FIFODis, 0x00000007);
  1020. PM3_SLOW_WRITE_REG(PM3HTotal,
  1021.    pm3fb_Shiftbpp(l_fb_info,
  1022.   l_fb_info->current_par->depth,
  1023.   l_fb_info->current_par->htotal -
  1024.   1));
  1025. PM3_SLOW_WRITE_REG(PM3HsEnd,
  1026.    pm3fb_Shiftbpp(l_fb_info,
  1027.   l_fb_info->current_par->depth,
  1028.   l_fb_info->current_par->hsend));
  1029. PM3_SLOW_WRITE_REG(PM3HsStart,
  1030.    pm3fb_Shiftbpp(l_fb_info,
  1031.   l_fb_info->current_par->depth,
  1032.   l_fb_info->current_par->
  1033.   hsstart));
  1034. PM3_SLOW_WRITE_REG(PM3HbEnd,
  1035.    pm3fb_Shiftbpp(l_fb_info,
  1036.   l_fb_info->current_par->depth,
  1037.   l_fb_info->current_par->hbend));
  1038. PM3_SLOW_WRITE_REG(PM3HgEnd,
  1039.    pm3fb_Shiftbpp(l_fb_info,
  1040.   l_fb_info->current_par->depth,
  1041.   l_fb_info->current_par->hbend));
  1042. PM3_SLOW_WRITE_REG(PM3ScreenStride,
  1043.    pm3fb_Shiftbpp(l_fb_info,
  1044.   l_fb_info->current_par->depth,
  1045.   l_fb_info->current_par->stride));
  1046. PM3_SLOW_WRITE_REG(PM3VTotal, l_fb_info->current_par->vtotal - 1);
  1047. PM3_SLOW_WRITE_REG(PM3VsEnd, l_fb_info->current_par->vsend - 1);
  1048. PM3_SLOW_WRITE_REG(PM3VsStart,
  1049.    l_fb_info->current_par->vsstart - 1);
  1050. PM3_SLOW_WRITE_REG(PM3VbEnd, l_fb_info->current_par->vbend);
  1051. switch (l_fb_info->current_par->depth) {
  1052. case 8:
  1053. PM3_SLOW_WRITE_REG(PM3ByAperture1Mode,
  1054.    PM3ByApertureMode_PIXELSIZE_8BIT);
  1055. PM3_SLOW_WRITE_REG(PM3ByAperture2Mode,
  1056.    PM3ByApertureMode_PIXELSIZE_8BIT);
  1057. break;
  1058. case 12:
  1059. case 15:
  1060. case 16:
  1061. #ifndef __BIG_ENDIAN
  1062. PM3_SLOW_WRITE_REG(PM3ByAperture1Mode,
  1063.    PM3ByApertureMode_PIXELSIZE_16BIT);
  1064. PM3_SLOW_WRITE_REG(PM3ByAperture2Mode,
  1065.    PM3ByApertureMode_PIXELSIZE_16BIT);
  1066. #else
  1067. PM3_SLOW_WRITE_REG(PM3ByAperture1Mode,
  1068.    PM3ByApertureMode_PIXELSIZE_16BIT |
  1069.    PM3ByApertureMode_BYTESWAP_BADC);
  1070. PM3_SLOW_WRITE_REG(PM3ByAperture2Mode,
  1071.    PM3ByApertureMode_PIXELSIZE_16BIT |
  1072.    PM3ByApertureMode_BYTESWAP_BADC);
  1073. #endif /* ! __BIG_ENDIAN */
  1074. break;
  1075. case 32:
  1076. #ifndef __BIG_ENDIAN
  1077. PM3_SLOW_WRITE_REG(PM3ByAperture1Mode,
  1078.    PM3ByApertureMode_PIXELSIZE_32BIT);
  1079. PM3_SLOW_WRITE_REG(PM3ByAperture2Mode,
  1080.    PM3ByApertureMode_PIXELSIZE_32BIT);
  1081. #else
  1082. PM3_SLOW_WRITE_REG(PM3ByAperture1Mode,
  1083.    PM3ByApertureMode_PIXELSIZE_32BIT |
  1084.    PM3ByApertureMode_BYTESWAP_DCBA);
  1085. PM3_SLOW_WRITE_REG(PM3ByAperture2Mode,
  1086.    PM3ByApertureMode_PIXELSIZE_32BIT |
  1087.    PM3ByApertureMode_BYTESWAP_DCBA);
  1088. #endif /* ! __BIG_ENDIAN */
  1089. break;
  1090. default:
  1091. DPRINTK(1, "Unsupported depth %dn",
  1092. l_fb_info->current_par->depth);
  1093. break;
  1094. }
  1095. /*
  1096.  * Oxygen VX1 - it appears that setting PM3VideoControl and
  1097.  * then PM3RD_SyncControl to the same SYNC settings undoes
  1098.  * any net change - they seem to xor together.  Only set the
  1099.  * sync options in PM3RD_SyncControl.  --rmk
  1100.  */
  1101. {
  1102. unsigned int video = l_fb_info->current_par->video;
  1103. video &= ~(PM3VideoControl_HSYNC_MASK |
  1104.    PM3VideoControl_VSYNC_MASK);
  1105. video |= PM3VideoControl_HSYNC_ACTIVE_HIGH |
  1106.  PM3VideoControl_VSYNC_ACTIVE_HIGH;
  1107. PM3_SLOW_WRITE_REG(PM3VideoControl, video);
  1108. }
  1109. PM3_SLOW_WRITE_REG(PM3VClkCtl,
  1110.    (PM3_READ_REG(PM3VClkCtl) & 0xFFFFFFFC));
  1111. PM3_SLOW_WRITE_REG(PM3ScreenBase, l_fb_info->current_par->base);
  1112. PM3_SLOW_WRITE_REG(PM3ChipConfig,
  1113.    (PM3_READ_REG(PM3ChipConfig) & 0xFFFFFFFD));
  1114. {
  1115. unsigned char m; /* ClkPreScale */
  1116. unsigned char n; /* ClkFeedBackScale */
  1117. unsigned char p; /* ClkPostScale */
  1118. (void)pm3fb_CalculateClock(l_fb_info, l_fb_info->current_par->pixclock, PM3_REF_CLOCK, &m, &n, &p);
  1119. DPRINTK(2,
  1120. "Pixclock: %d, Pre: %d, Feedback: %d, Post: %dn",
  1121. l_fb_info->current_par->pixclock, (int) m, (int) n,
  1122. (int) p);
  1123. PM3_WRITE_DAC_REG(PM3RD_DClk0PreScale, m);
  1124. PM3_WRITE_DAC_REG(PM3RD_DClk0FeedbackScale, n);
  1125. PM3_WRITE_DAC_REG(PM3RD_DClk0PostScale, p);
  1126. }
  1127. /*
  1128.    PM3_WRITE_DAC_REG(PM3RD_IndexControl, 0x00);
  1129.  */
  1130. /*
  1131.    PM3_SLOW_WRITE_REG(PM3RD_IndexControl, 0x00);
  1132.  */
  1133. if ((l_fb_info->current_par->video & PM3VideoControl_HSYNC_MASK) ==
  1134.     PM3VideoControl_HSYNC_ACTIVE_HIGH)
  1135. tempsync |= PM3RD_SyncControl_HSYNC_ACTIVE_HIGH;
  1136. if ((l_fb_info->current_par->video & PM3VideoControl_VSYNC_MASK) ==
  1137.     PM3VideoControl_VSYNC_ACTIVE_HIGH)
  1138. tempsync |= PM3RD_SyncControl_VSYNC_ACTIVE_HIGH;
  1139. PM3_WRITE_DAC_REG(PM3RD_SyncControl, tempsync);
  1140. DPRINTK(2, "PM3RD_SyncControl: %dn", tempsync);
  1141. if (flatpanel[l_fb_info->board_num])
  1142. {
  1143. PM3_WRITE_DAC_REG(PM3RD_DACControl, PM3RD_DACControl_BLANK_PEDESTAL_ENABLE);
  1144. PM3_WAIT(2);
  1145. PM3_WRITE_REG(PM3VSConfiguration, 0x06);
  1146. PM3_WRITE_REG(0x5a00, 1 << 14); /* black magic... */
  1147. tempmisc = PM3RD_MiscControl_VSB_OUTPUT_ENABLE;
  1148. }
  1149. else
  1150. PM3_WRITE_DAC_REG(PM3RD_DACControl, 0x00);
  1151. switch (l_fb_info->current_par->depth) {
  1152. case 8:
  1153. PM3_WRITE_DAC_REG(PM3RD_PixelSize,
  1154.   PM3RD_PixelSize_8_BIT_PIXELS);
  1155. PM3_WRITE_DAC_REG(PM3RD_ColorFormat,
  1156.   PM3RD_ColorFormat_CI8_COLOR |
  1157.   PM3RD_ColorFormat_COLOR_ORDER_BLUE_LOW);
  1158. tempmisc |= PM3RD_MiscControl_HIGHCOLOR_RES_ENABLE;
  1159. break;
  1160. case 12:
  1161. PM3_WRITE_DAC_REG(PM3RD_PixelSize,
  1162.   PM3RD_PixelSize_16_BIT_PIXELS);
  1163. PM3_WRITE_DAC_REG(PM3RD_ColorFormat,
  1164.   PM3RD_ColorFormat_4444_COLOR |
  1165.   PM3RD_ColorFormat_COLOR_ORDER_BLUE_LOW |
  1166.   PM3RD_ColorFormat_LINEAR_COLOR_EXT_ENABLE);
  1167. tempmisc |= PM3RD_MiscControl_DIRECTCOLOR_ENABLE |
  1168. PM3RD_MiscControl_HIGHCOLOR_RES_ENABLE;
  1169. break;
  1170. case 15:
  1171. PM3_WRITE_DAC_REG(PM3RD_PixelSize,
  1172.   PM3RD_PixelSize_16_BIT_PIXELS);
  1173. PM3_WRITE_DAC_REG(PM3RD_ColorFormat,
  1174.   PM3RD_ColorFormat_5551_FRONT_COLOR |
  1175.   PM3RD_ColorFormat_COLOR_ORDER_BLUE_LOW |
  1176.   PM3RD_ColorFormat_LINEAR_COLOR_EXT_ENABLE);
  1177. tempmisc |= PM3RD_MiscControl_DIRECTCOLOR_ENABLE |
  1178. PM3RD_MiscControl_HIGHCOLOR_RES_ENABLE;
  1179. break;
  1180. case 16:
  1181. PM3_WRITE_DAC_REG(PM3RD_PixelSize,
  1182.   PM3RD_PixelSize_16_BIT_PIXELS);
  1183. PM3_WRITE_DAC_REG(PM3RD_ColorFormat,
  1184.   PM3RD_ColorFormat_565_FRONT_COLOR |
  1185.   PM3RD_ColorFormat_COLOR_ORDER_BLUE_LOW |
  1186.   PM3RD_ColorFormat_LINEAR_COLOR_EXT_ENABLE);
  1187. tempmisc |= PM3RD_MiscControl_DIRECTCOLOR_ENABLE |
  1188. PM3RD_MiscControl_HIGHCOLOR_RES_ENABLE;
  1189. break;
  1190. case 32:
  1191. PM3_WRITE_DAC_REG(PM3RD_PixelSize,
  1192.   PM3RD_PixelSize_32_BIT_PIXELS);
  1193. PM3_WRITE_DAC_REG(PM3RD_ColorFormat,
  1194.   PM3RD_ColorFormat_8888_COLOR |
  1195.   PM3RD_ColorFormat_COLOR_ORDER_BLUE_LOW);
  1196. tempmisc |= PM3RD_MiscControl_DIRECTCOLOR_ENABLE |
  1197. PM3RD_MiscControl_HIGHCOLOR_RES_ENABLE;
  1198. break;
  1199. }
  1200. PM3_WRITE_DAC_REG(PM3RD_MiscControl, tempmisc);
  1201. PM3_SHOW_CUR_MODE;
  1202. }
  1203. static void pm3fb_read_mode(struct pm3fb_info *l_fb_info,
  1204.     struct pm3fb_par *curpar)
  1205. {
  1206. unsigned long pixsize1, pixsize2, clockused;
  1207. unsigned long pre, feedback, post;
  1208. DTRACE;
  1209. clockused = PM3_READ_REG(PM3VClkCtl);
  1210. switch (clockused) {
  1211. case 3:
  1212. pre = PM3_READ_DAC_REG(PM3RD_DClk3PreScale);
  1213. feedback = PM3_READ_DAC_REG(PM3RD_DClk3FeedbackScale);
  1214. post = PM3_READ_DAC_REG(PM3RD_DClk3PostScale);
  1215. DPRINTK(2,
  1216. "DClk3 parameter: Pre: %ld, Feedback: %ld, Post: %ld ; giving pixclock: %ldn",
  1217. pre, feedback, post, PM3_SCALE_TO_CLOCK(pre,
  1218. feedback,
  1219. post));
  1220. break;
  1221. case 2:
  1222. pre = PM3_READ_DAC_REG(PM3RD_DClk2PreScale);
  1223. feedback = PM3_READ_DAC_REG(PM3RD_DClk2FeedbackScale);
  1224. post = PM3_READ_DAC_REG(PM3RD_DClk2PostScale);
  1225. DPRINTK(2,
  1226. "DClk2 parameter: Pre: %ld, Feedback: %ld, Post: %ld ; giving pixclock: %ldn",
  1227. pre, feedback, post, PM3_SCALE_TO_CLOCK(pre,
  1228. feedback,
  1229. post));
  1230. break;
  1231. case 1:
  1232. pre = PM3_READ_DAC_REG(PM3RD_DClk1PreScale);
  1233. feedback = PM3_READ_DAC_REG(PM3RD_DClk1FeedbackScale);
  1234. post = PM3_READ_DAC_REG(PM3RD_DClk1PostScale);
  1235. DPRINTK(2,
  1236. "DClk1 parameter: Pre: %ld, Feedback: %ld, Post: %ld ; giving pixclock: %ldn",
  1237. pre, feedback, post, PM3_SCALE_TO_CLOCK(pre,
  1238. feedback,
  1239. post));
  1240. break;
  1241. case 0:
  1242. pre = PM3_READ_DAC_REG(PM3RD_DClk0PreScale);
  1243. feedback = PM3_READ_DAC_REG(PM3RD_DClk0FeedbackScale);
  1244. post = PM3_READ_DAC_REG(PM3RD_DClk0PostScale);
  1245. DPRINTK(2,
  1246. "DClk0 parameter: Pre: %ld, Feedback: %ld, Post: %ld ; giving pixclock: %ldn",
  1247. pre, feedback, post, PM3_SCALE_TO_CLOCK(pre,
  1248. feedback,
  1249. post));
  1250. break;
  1251. default:
  1252. pre = feedback = post = 0;
  1253. DPRINTK(1, "Unknowk D clock used : %ldn", clockused);
  1254. break;
  1255. }
  1256. curpar->pixclock = PM3_SCALE_TO_CLOCK(pre, feedback, post);
  1257. pixsize1 =
  1258.     PM3ByApertureMode_PIXELSIZE_MASK &
  1259.     (PM3_READ_REG(PM3ByAperture1Mode));
  1260. pixsize2 =
  1261.     PM3ByApertureMode_PIXELSIZE_MASK &
  1262.     (PM3_READ_REG(PM3ByAperture2Mode));
  1263. DASSERT((pixsize1 == pixsize2),
  1264. "pixsize the same in both aperturen");
  1265. if (pixsize1 & PM3ByApertureMode_PIXELSIZE_32BIT)
  1266. curpar->depth = 32;
  1267. else if (pixsize1 & PM3ByApertureMode_PIXELSIZE_16BIT)
  1268. {
  1269. curpar->depth = 16;
  1270. }
  1271. else
  1272. curpar->depth = 8;
  1273. /* not sure if I need to add one on the next ; it give better result with */
  1274. curpar->htotal =
  1275.     pm3fb_Unshiftbpp(l_fb_info, curpar->depth,
  1276.      1 + PM3_READ_REG(PM3HTotal));
  1277. curpar->hsend =
  1278.     pm3fb_Unshiftbpp(l_fb_info, curpar->depth,
  1279.      PM3_READ_REG(PM3HsEnd));
  1280. curpar->hsstart =
  1281.     pm3fb_Unshiftbpp(l_fb_info, curpar->depth,
  1282.      PM3_READ_REG(PM3HsStart));
  1283. curpar->hbend =
  1284.     pm3fb_Unshiftbpp(l_fb_info, curpar->depth,
  1285.      PM3_READ_REG(PM3HbEnd));
  1286. curpar->stride =
  1287.     pm3fb_Unshiftbpp(l_fb_info, curpar->depth,
  1288.      PM3_READ_REG(PM3ScreenStride));
  1289. curpar->vtotal = 1 + PM3_READ_REG(PM3VTotal);
  1290. curpar->vsend = 1 + PM3_READ_REG(PM3VsEnd);
  1291. curpar->vsstart = 1 + PM3_READ_REG(PM3VsStart);
  1292. curpar->vbend = PM3_READ_REG(PM3VbEnd);
  1293. curpar->video = PM3_READ_REG(PM3VideoControl);
  1294. curpar->base = PM3_READ_REG(PM3ScreenBase);
  1295. curpar->width = curpar->htotal - curpar->hbend; /* make virtual == displayed resolution */
  1296. curpar->height = curpar->vtotal - curpar->vbend;
  1297. DPRINTK(2, "Found : %d * %d, %d Khz, stride is %08xn",
  1298. curpar->width, curpar->height, curpar->pixclock,
  1299. curpar->stride);
  1300. }
  1301. static unsigned long pm3fb_size_memory(struct pm3fb_info *l_fb_info)
  1302. {
  1303. unsigned long memsize = 0, tempBypass, i, temp1, temp2;
  1304. u16 subvendor, subdevice;
  1305. pm3fb_timing_result ptr;
  1306. DTRACE;
  1307. l_fb_info->fb_size = 64 * 1024 * 1024; /* pm3 aperture always 64 MB */
  1308. pm3fb_mapIO(l_fb_info); /* temporary map IO */
  1309. DASSERT((l_fb_info->vIOBase != NULL),
  1310. "IO successfully mapped before mem detectn");
  1311. DASSERT((l_fb_info->v_fb != NULL),
  1312. "FB successfully mapped before mem detectn");
  1313. /* card-specific stuff, *before* accessing *any* FB memory */
  1314. if ((!pci_read_config_word
  1315.      (l_fb_info->dev, PCI_SUBSYSTEM_VENDOR_ID, &subvendor))
  1316.     &&
  1317.     (!pci_read_config_word
  1318.      (l_fb_info->dev, PCI_SUBSYSTEM_ID, &subdevice))) {
  1319. i = 0; l_fb_info->board_type = 0;
  1320. while ((cardbase[i].cardname[0]) && !(l_fb_info->board_type)) {
  1321. if ((cardbase[i].subvendor == subvendor) &&
  1322.     (cardbase[i].subdevice == subdevice) &&
  1323.     (cardbase[i].func == PCI_FUNC(l_fb_info->dev->devfn))) {
  1324. DPRINTK(2, "Card #%ld is an %sn",
  1325. l_fb_info->board_num,
  1326. cardbase[i].cardname);
  1327. if (cardbase[i].specific_setup)
  1328. cardbase[i].specific_setup(l_fb_info);
  1329. l_fb_info->board_type = i;
  1330. }
  1331. i++;
  1332. }
  1333. if (!l_fb_info->board_type) {
  1334. DPRINTK(1, "Card #%ld is an unknown 0x%04x / 0x%04xn",
  1335. l_fb_info->board_num, subvendor, subdevice);
  1336. }
  1337. } else {
  1338. printk(KERN_ERR "pm3fb: Error: pci_read_config_word failed, board #%ldn",
  1339.        l_fb_info->board_num);
  1340. }
  1341. if (printtimings)
  1342. pm3fb_show_cur_timing(l_fb_info);
  1343. /* card-specific setup is done, we preserve the final
  1344.            memory timing for future reference */
  1345. if ((ptr = pm3fb_preserve_memory_timings(l_fb_info)) == pm3fb_timing_problem) { /* memory timings were wrong ! oops.... */
  1346. return(0);
  1347. }
  1348. tempBypass = PM3_READ_REG(PM3MemBypassWriteMask);
  1349. DPRINTK(2, "PM3MemBypassWriteMask was: 0x%08lxn", tempBypass);
  1350. PM3_SLOW_WRITE_REG(PM3MemBypassWriteMask, 0xFFFFFFFF);
  1351. /* pm3 split up memory, replicates, and do a lot of nasty stuff IMHO ;-) */
  1352. for (i = 0; i < 32; i++) {
  1353. #ifdef KERNEL_2_2
  1354. #ifdef MUST_BYTESWAP
  1355. writel(__swab32(i * 0x00345678),
  1356.        (l_fb_info->v_fb + (i * 1048576)));
  1357. #else
  1358. writel(i * 0x00345678, (l_fb_info->v_fb + (i * 1048576)));
  1359. #endif
  1360. mb();
  1361. #ifdef MUST_BYTESWAP
  1362. temp1 = __swab32(readl((l_fb_info->v_fb + (i * 1048576))));
  1363. #else
  1364. temp1 = readl((l_fb_info->v_fb + (i * 1048576)));
  1365. #endif
  1366. #endif /* KERNEL_2_2 */
  1367. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  1368. fb_writel(i * 0x00345678,
  1369.   (l_fb_info->v_fb + (i * 1048576)));
  1370. mb();
  1371. temp1 = fb_readl((l_fb_info->v_fb + (i * 1048576)));
  1372. #endif /* KERNEL_2_4 or KERNEL_2_5 */
  1373. /* Let's check for wrapover, write will fail at 16MB boundary */
  1374. if (temp1 == (i * 0x00345678))
  1375. memsize = i;
  1376. else
  1377. break;
  1378. }
  1379. DPRINTK(2, "First detect pass already got %ld MBn", memsize + 1);
  1380. if (memsize == i) {
  1381. for (i = 0; i < 32; i++) {
  1382. /* Clear first 32MB ; 0 is 0, no need to byteswap */
  1383. writel(0x0000000,
  1384.        (l_fb_info->v_fb + (i * 1048576)));
  1385. mb();
  1386. }
  1387. for (i = 32; i < 64; i++) {
  1388. #ifdef KERNEL_2_2
  1389. #ifdef MUST_BYTESWAP
  1390. writel(__swab32(i * 0x00345678),
  1391.        (l_fb_info->v_fb + (i * 1048576)));
  1392. #else
  1393. writel(i * 0x00345678,
  1394.        (l_fb_info->v_fb + (i * 1048576)));
  1395. #endif
  1396. mb();
  1397. #ifdef MUST_BYTESWAP
  1398. temp1 =
  1399.     __swab32(readl
  1400.      ((l_fb_info->v_fb + (i * 1048576))));
  1401. temp2 =
  1402.     __swab32(readl
  1403.      ((l_fb_info->v_fb +
  1404.        ((i - 32) * 1048576))));
  1405. #else
  1406. temp1 = readl((l_fb_info->v_fb + (i * 1048576)));
  1407. temp2 =
  1408.     readl((l_fb_info->v_fb +
  1409.    ((i - 32) * 1048576)));
  1410. #endif
  1411. #endif /* KERNEL_2_2 */
  1412. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  1413. fb_writel(i * 0x00345678,
  1414.   (l_fb_info->v_fb + (i * 1048576)));
  1415. mb();
  1416. temp1 =
  1417.     fb_readl((l_fb_info->v_fb + (i * 1048576)));
  1418. temp2 =
  1419.     fb_readl((l_fb_info->v_fb +
  1420.       ((i - 32) * 1048576)));
  1421. #endif /* KERNEL_2_4 or KERNEL_2_5 */
  1422. if ((temp1 == (i * 0x00345678)) && (temp2 == 0)) /* different value, different RAM... */
  1423. memsize = i;
  1424. else
  1425. break;
  1426. }
  1427. }
  1428. DPRINTK(2, "Second detect pass got %ld MBn", memsize + 1);
  1429. PM3_SLOW_WRITE_REG(PM3MemBypassWriteMask, tempBypass);
  1430. pm3fb_unmapIO(l_fb_info);
  1431. memsize = 1048576 * (memsize + 1);
  1432. DPRINTK(2, "Returning 0x%08lx bytesn", memsize);
  1433. if (forcesize[l_fb_info->board_num] && ((forcesize[l_fb_info->board_num] * 1048576) != memsize))
  1434. {
  1435. printk(KERN_WARNING "pm3fb: mismatch between probed (%ld MB) and specified (%hd MB) memory size, using SPECIFIED !n", memsize, forcesize[l_fb_info->board_num]);
  1436. memsize = 1048576 * forcesize[l_fb_info->board_num];
  1437. }
  1438. l_fb_info->fb_size = memsize;
  1439. if (ptr == pm3fb_timing_retry)
  1440. {
  1441. printk(KERN_WARNING "pm3fb: retrying memory timings check");
  1442. if (pm3fb_try_memory_timings(l_fb_info) == pm3fb_timing_problem)
  1443. return(0);
  1444. }
  1445. return (memsize);
  1446. }
  1447. static void pm3fb_clear_memory(struct pm3fb_info *l_fb_info, u32 cc)
  1448. {
  1449. int i;
  1450. DTRACE;
  1451. for (i = 0; i < (l_fb_info->fb_size / sizeof(u32)) ; i++) /* clear entire FB memory to black */
  1452. {
  1453. #ifdef KERNEL_2_2
  1454. #ifdef MUST_BYTESWAP
  1455. writel(__swab32(cc), (l_fb_info->v_fb + (i * sizeof(u32))));
  1456. #else
  1457. writel(cc, (l_fb_info->v_fb + (i * sizeof(u32))));
  1458. #endif
  1459. #endif
  1460. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  1461. fb_writel(cc, (l_fb_info->v_fb + (i * sizeof(u32))));
  1462. #endif
  1463. }
  1464. }
  1465. static void pm3fb_clear_colormap(struct pm3fb_info *l_fb_info, unsigned char r, unsigned char g, unsigned char b)
  1466. {
  1467. int i;
  1468. DTRACE;
  1469. for (i = 0; i < 256 ; i++) /* fill color map with white */
  1470. pm3fb_set_color(l_fb_info, i, r, g, b);
  1471. }
  1472. /* common initialisation */
  1473. static void pm3fb_common_init(struct pm3fb_info *l_fb_info)
  1474. {
  1475. DTRACE;
  1476. DPRINTK(2, "Initializing board #%ld @ %lxn", l_fb_info->board_num,
  1477. (unsigned long) l_fb_info);
  1478. strcpy(l_fb_info->gen.info.modename, permedia3_name);
  1479. disp[l_fb_info->board_num].scrollmode = 0; /* SCROLL_YNOMOVE; *//* 0 means "let fbcon choose" */
  1480. l_fb_info->gen.parsize = sizeof(struct pm3fb_par);
  1481. l_fb_info->gen.info.changevar = NULL;
  1482. l_fb_info->gen.info.node = B_FREE;
  1483. l_fb_info->gen.info.fbops = &pm3fb_ops;
  1484. l_fb_info->gen.info.disp = &(disp[l_fb_info->board_num]);
  1485. if (fontn[l_fb_info->board_num][0])
  1486. strcpy(l_fb_info->gen.info.fontname,
  1487.        fontn[l_fb_info->board_num]);
  1488. l_fb_info->gen.info.switch_con = &fbgen_switch;
  1489. l_fb_info->gen.info.updatevar = &fbgen_update_var; /* */
  1490. l_fb_info->gen.info.blank = &fbgen_blank; /* */
  1491. l_fb_info->gen.info.flags = FBINFO_FLAG_DEFAULT;
  1492. pm3fb_mapIO(l_fb_info);
  1493. pm3fb_clear_memory(l_fb_info, 0);
  1494. pm3fb_clear_colormap(l_fb_info, 0, 0, 0);
  1495. (void) fbgen_get_var(&(disp[l_fb_info->board_num]).var, -1,
  1496.      &l_fb_info->gen.info);
  1497. if (depth[l_fb_info->board_num]) /* override mode-defined depth */
  1498. {
  1499. pm3fb_encode_depth(&(disp[l_fb_info->board_num]).var, depth[l_fb_info->board_num]);
  1500. (disp[l_fb_info->board_num]).var.bits_per_pixel = depth2bpp(depth[l_fb_info->board_num]);
  1501. }
  1502. (void) fbgen_do_set_var(&(disp[l_fb_info->board_num]).var, 1,
  1503. &l_fb_info->gen);
  1504. fbgen_set_disp(-1, &l_fb_info->gen);
  1505. fbgen_install_cmap(0, &l_fb_info->gen);
  1506. if (register_framebuffer(&l_fb_info->gen.info) < 0) {
  1507. DPRINTK(1, "Couldn't register framebuffern");
  1508. return;
  1509. }
  1510. PM3_WRITE_DAC_REG(PM3RD_CursorMode,
  1511.   PM3RD_CursorMode_CURSOR_DISABLE);
  1512. PM3_SHOW_CUR_MODE;
  1513. pm3fb_write_mode(l_fb_info);
  1514. printk("fb%d: %s, using %uK of video memory (%s)n",
  1515.        GET_FB_IDX(l_fb_info->gen.info.node),
  1516.        permedia3_name, (u32) (l_fb_info->fb_size >> 10),
  1517.        cardbase[l_fb_info->board_type].cardname);
  1518. }
  1519. /* **************************************************** */
  1520. /* ***** accelerated permedia3-specific functions ***** */
  1521. /* **************************************************** */
  1522. #ifdef PM3FB_USE_ACCEL
  1523. static void pm3fb_wait_pm3(struct pm3fb_info *l_fb_info)
  1524. {
  1525. DTRACE;
  1526. PM3_SLOW_WRITE_REG(PM3FilterMode, PM3FilterModeSync);
  1527. PM3_SLOW_WRITE_REG(PM3Sync, 0);
  1528. mb();
  1529. do {
  1530. while ((PM3_READ_REG(PM3OutFIFOWords)) == 0);
  1531. rmb();
  1532. } while ((PM3_READ_REG(PM3OutputFifo)) != PM3Sync_Tag);
  1533. }
  1534. static void pm3fb_init_engine(struct pm3fb_info *l_fb_info)
  1535. {
  1536. PM3_SLOW_WRITE_REG(PM3FilterMode, PM3FilterModeSync);
  1537. PM3_SLOW_WRITE_REG(PM3StatisticMode, 0x0);
  1538. PM3_SLOW_WRITE_REG(PM3DeltaMode, 0x0);
  1539. PM3_SLOW_WRITE_REG(PM3RasterizerMode, 0x0);
  1540. PM3_SLOW_WRITE_REG(PM3ScissorMode, 0x0);
  1541. PM3_SLOW_WRITE_REG(PM3LineStippleMode, 0x0);
  1542. PM3_SLOW_WRITE_REG(PM3AreaStippleMode, 0x0);
  1543. PM3_SLOW_WRITE_REG(PM3GIDMode, 0x0);
  1544. PM3_SLOW_WRITE_REG(PM3DepthMode, 0x0);
  1545. PM3_SLOW_WRITE_REG(PM3StencilMode, 0x0);
  1546. PM3_SLOW_WRITE_REG(PM3StencilData, 0x0);
  1547. PM3_SLOW_WRITE_REG(PM3ColorDDAMode, 0x0);
  1548. PM3_SLOW_WRITE_REG(PM3TextureCoordMode, 0x0);
  1549. PM3_SLOW_WRITE_REG(PM3TextureIndexMode0, 0x0);
  1550. PM3_SLOW_WRITE_REG(PM3TextureIndexMode1, 0x0);
  1551. PM3_SLOW_WRITE_REG(PM3TextureReadMode, 0x0);
  1552. PM3_SLOW_WRITE_REG(PM3LUTMode, 0x0);
  1553. PM3_SLOW_WRITE_REG(PM3TextureFilterMode, 0x0);
  1554. PM3_SLOW_WRITE_REG(PM3TextureCompositeMode, 0x0);
  1555. PM3_SLOW_WRITE_REG(PM3TextureApplicationMode, 0x0);
  1556. PM3_SLOW_WRITE_REG(PM3TextureCompositeColorMode1, 0x0);
  1557. PM3_SLOW_WRITE_REG(PM3TextureCompositeAlphaMode1, 0x0);
  1558. PM3_SLOW_WRITE_REG(PM3TextureCompositeColorMode0, 0x0);
  1559. PM3_SLOW_WRITE_REG(PM3TextureCompositeAlphaMode0, 0x0);
  1560. PM3_SLOW_WRITE_REG(PM3FogMode, 0x0);
  1561. PM3_SLOW_WRITE_REG(PM3ChromaTestMode, 0x0);
  1562. PM3_SLOW_WRITE_REG(PM3AlphaTestMode, 0x0);
  1563. PM3_SLOW_WRITE_REG(PM3AntialiasMode, 0x0);
  1564. PM3_SLOW_WRITE_REG(PM3YUVMode, 0x0);
  1565. PM3_SLOW_WRITE_REG(PM3AlphaBlendColorMode, 0x0);
  1566. PM3_SLOW_WRITE_REG(PM3AlphaBlendAlphaMode, 0x0);
  1567. PM3_SLOW_WRITE_REG(PM3DitherMode, 0x0);
  1568. PM3_SLOW_WRITE_REG(PM3LogicalOpMode, 0x0);
  1569. PM3_SLOW_WRITE_REG(PM3RouterMode, 0x0);
  1570. PM3_SLOW_WRITE_REG(PM3Window, 0x0);
  1571. PM3_SLOW_WRITE_REG(PM3Config2D, 0x0);
  1572. PM3_SLOW_WRITE_REG(PM3SpanColorMask, 0xffffffff);
  1573. PM3_SLOW_WRITE_REG(PM3XBias, 0x0);
  1574. PM3_SLOW_WRITE_REG(PM3YBias, 0x0);
  1575. PM3_SLOW_WRITE_REG(PM3DeltaControl, 0x0);
  1576. PM3_SLOW_WRITE_REG(PM3BitMaskPattern, 0xffffffff);
  1577. PM3_SLOW_WRITE_REG(PM3FBDestReadEnables,
  1578.    PM3FBDestReadEnables_E(0xff) |
  1579.    PM3FBDestReadEnables_R(0xff) |
  1580.    PM3FBDestReadEnables_ReferenceAlpha(0xff));
  1581. PM3_SLOW_WRITE_REG(PM3FBDestReadBufferAddr0, 0x0);
  1582. PM3_SLOW_WRITE_REG(PM3FBDestReadBufferOffset0, 0x0);
  1583. PM3_SLOW_WRITE_REG(PM3FBDestReadBufferWidth0,
  1584.    PM3FBDestReadBufferWidth_Width(l_fb_info->
  1585.   current_par->
  1586.   width));
  1587. PM3_SLOW_WRITE_REG(PM3FBDestReadMode,
  1588.    PM3FBDestReadMode_ReadEnable |
  1589.    PM3FBDestReadMode_Enable0);
  1590. PM3_SLOW_WRITE_REG(PM3FBSourceReadBufferAddr, 0x0);
  1591. PM3_SLOW_WRITE_REG(PM3FBSourceReadBufferOffset, 0x0);
  1592. PM3_SLOW_WRITE_REG(PM3FBSourceReadBufferWidth,
  1593.    PM3FBSourceReadBufferWidth_Width(l_fb_info->
  1594.     current_par->
  1595.     width));
  1596. PM3_SLOW_WRITE_REG(PM3FBSourceReadMode,
  1597.    PM3FBSourceReadMode_Blocking |
  1598.    PM3FBSourceReadMode_ReadEnable);
  1599. {
  1600. unsigned long rm = 1;
  1601. switch (l_fb_info->current_par->depth) {
  1602. case 8:
  1603. PM3_SLOW_WRITE_REG(PM3PixelSize,
  1604.    PM3PixelSize_GLOBAL_8BIT);
  1605. break;
  1606. case 12:
  1607. case 15:
  1608. case 16:
  1609. PM3_SLOW_WRITE_REG(PM3PixelSize,
  1610.    PM3PixelSize_GLOBAL_16BIT);
  1611. break;
  1612. case 32:
  1613. PM3_SLOW_WRITE_REG(PM3PixelSize,
  1614.    PM3PixelSize_GLOBAL_32BIT);
  1615. break;
  1616. default:
  1617. DPRINTK(1, "Unsupported depth %dn",
  1618. l_fb_info->current_par->depth);
  1619. break;
  1620. }
  1621. PM3_SLOW_WRITE_REG(PM3RasterizerMode, rm);
  1622. }
  1623. PM3_SLOW_WRITE_REG(PM3FBSoftwareWriteMask, 0xffffffff);
  1624. PM3_SLOW_WRITE_REG(PM3FBHardwareWriteMask, 0xffffffff);
  1625. PM3_SLOW_WRITE_REG(PM3FBWriteMode,
  1626.    PM3FBWriteMode_WriteEnable |
  1627.    PM3FBWriteMode_OpaqueSpan |
  1628.    PM3FBWriteMode_Enable0);
  1629. PM3_SLOW_WRITE_REG(PM3FBWriteBufferAddr0, 0x0);
  1630. PM3_SLOW_WRITE_REG(PM3FBWriteBufferOffset0, 0x0);
  1631. PM3_SLOW_WRITE_REG(PM3FBWriteBufferWidth0,
  1632.    PM3FBWriteBufferWidth_Width(l_fb_info->
  1633.        current_par->
  1634.        width));
  1635. PM3_SLOW_WRITE_REG(PM3SizeOfFramebuffer, 0x0);
  1636. {
  1637. unsigned long sofb = (8UL * l_fb_info->fb_size) /
  1638. ((depth2bpp(l_fb_info->current_par->depth))
  1639.  * l_fb_info->current_par->width); /* size in lines of FB */
  1640. if (sofb > 4095)
  1641. PM3_SLOW_WRITE_REG(PM3SizeOfFramebuffer, 4095);
  1642. else
  1643. PM3_SLOW_WRITE_REG(PM3SizeOfFramebuffer, sofb);
  1644. switch (l_fb_info->current_par->depth) {
  1645. case 8:
  1646. PM3_SLOW_WRITE_REG(PM3DitherMode,
  1647.    (1 << 10) | (2 << 3));
  1648. break;
  1649. case 12:
  1650. case 15:
  1651. case 16:
  1652. PM3_SLOW_WRITE_REG(PM3DitherMode,
  1653.    (1 << 10) | (1 << 3));
  1654. break;
  1655. case 32:
  1656. PM3_SLOW_WRITE_REG(PM3DitherMode,
  1657.    (1 << 10) | (0 << 3));
  1658. break;
  1659. default:
  1660. DPRINTK(1, "Unsupported depth %dn",
  1661. l_fb_info->current_par->depth);
  1662. break;
  1663. }
  1664. }
  1665. PM3_SLOW_WRITE_REG(PM3dXDom, 0x0);
  1666. PM3_SLOW_WRITE_REG(PM3dXSub, 0x0);
  1667. PM3_SLOW_WRITE_REG(PM3dY, (1 << 16));
  1668. PM3_SLOW_WRITE_REG(PM3StartXDom, 0x0);
  1669. PM3_SLOW_WRITE_REG(PM3StartXSub, 0x0);
  1670. PM3_SLOW_WRITE_REG(PM3StartY, 0x0);
  1671. PM3_SLOW_WRITE_REG(PM3Count, 0x0);
  1672. /* Disable LocalBuffer. better safe than sorry */
  1673. PM3_SLOW_WRITE_REG(PM3LBDestReadMode, 0x0);
  1674. PM3_SLOW_WRITE_REG(PM3LBDestReadEnables, 0x0);
  1675. PM3_SLOW_WRITE_REG(PM3LBSourceReadMode, 0x0);
  1676. PM3_SLOW_WRITE_REG(PM3LBWriteMode, 0x0);
  1677. pm3fb_wait_pm3(l_fb_info);
  1678. }
  1679. #ifdef FBCON_HAS_CFB32
  1680. static void pm3fb_cfb32_clear(struct vc_data *conp,
  1681.       struct display *p,
  1682.       int sy, int sx, int height, int width)
  1683. {
  1684. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  1685. u32 c;
  1686. DTRACE;
  1687. sx = sx * fontwidth(p);
  1688. width = width * fontwidth(p);
  1689. sy = sy * fontheight(p);
  1690. height = height * fontheight(p);
  1691. c = ((u32 *) p->dispsw_data)[attr_bgcol_ec(p, conp)];
  1692. /* block fills in 32bpp are hard, but in low res (width <= 1600 :-)
  1693.    we can use 16bpp operations, but not if NoWriteMask is on (SDRAM)  */
  1694. if ((l_fb_info->current_par->width > 1600) ||
  1695.     (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)) {
  1696. PM3_WAIT(4);
  1697. PM3_WRITE_REG(PM3Config2D,
  1698.   PM3Config2D_UseConstantSource |
  1699.   PM3Config2D_ForegroundROPEnable |
  1700.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1701.   PM3Config2D_FBWriteEnable);
  1702. PM3_WRITE_REG(PM3ForegroundColor, c);
  1703. PM3_WRITE_REG(PM3RectanglePosition,
  1704.       (PM3RectanglePosition_XOffset(sx)) |
  1705.       (PM3RectanglePosition_YOffset(sy)));
  1706. PM3_WRITE_REG(PM3Render2D,
  1707.       PM3Render2D_XPositive |
  1708.       PM3Render2D_YPositive |
  1709.       PM3Render2D_Operation_Normal |
  1710.       PM3Render2D_SpanOperation |
  1711.       (PM3Render2D_Width(width)) |
  1712.       (PM3Render2D_Height(height)));
  1713. } else {
  1714. PM3_WAIT(8);
  1715. PM3_WRITE_REG(PM3FBBlockColor, c);
  1716. PM3_WRITE_REG(PM3PixelSize, PM3PixelSize_GLOBAL_16BIT);
  1717. PM3_WRITE_REG(PM3FBWriteBufferWidth0,
  1718.       PM3FBWriteBufferWidth_Width(l_fb_info->
  1719.   current_par->
  1720.   width << 1));
  1721. PM3_WRITE_REG(PM3Config2D,
  1722.   PM3Config2D_UseConstantSource |
  1723.   PM3Config2D_ForegroundROPEnable |
  1724.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1725.   PM3Config2D_FBWriteEnable);
  1726. PM3_WRITE_REG(PM3RectanglePosition,
  1727.       (PM3RectanglePosition_XOffset(sx << 1)) |
  1728.       (PM3RectanglePosition_YOffset(sy)));
  1729. PM3_WRITE_REG(PM3Render2D,
  1730.       PM3Render2D_XPositive |
  1731.       PM3Render2D_YPositive |
  1732.       PM3Render2D_Operation_Normal |
  1733.       (PM3Render2D_Width(width << 1)) |
  1734.       (PM3Render2D_Height(height)));
  1735. PM3_WRITE_REG(PM3FBWriteBufferWidth0,
  1736.       PM3FBWriteBufferWidth_Width(l_fb_info->
  1737.   current_par->
  1738.   width));
  1739. PM3_WRITE_REG(PM3PixelSize, PM3PixelSize_GLOBAL_32BIT);
  1740. }
  1741. pm3fb_wait_pm3(l_fb_info);
  1742. }
  1743. static void pm3fb_cfb32_clear_margins(struct vc_data *conp,
  1744.       struct display *p, int bottom_only)
  1745. {
  1746. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  1747. int sx, sy;
  1748. u32 c;
  1749. DTRACE;
  1750. sx = conp->vc_cols * fontwidth(p); /* right margin */
  1751. sy = conp->vc_rows * fontheight(p); /* bottom margin */
  1752. c = ((u32 *) p->dispsw_data)[attr_bgcol_ec(p, conp)];
  1753. if (!bottom_only) { /* right margin top->bottom */
  1754. PM3_WAIT(4);
  1755. PM3_WRITE_REG(PM3Config2D,
  1756.   PM3Config2D_UseConstantSource |
  1757.   PM3Config2D_ForegroundROPEnable |
  1758.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1759.   PM3Config2D_FBWriteEnable);
  1760. PM3_WRITE_REG(PM3ForegroundColor, c);
  1761. PM3_WRITE_REG(PM3RectanglePosition,
  1762.       (PM3RectanglePosition_XOffset
  1763.        (p->var.xoffset +
  1764. sx)) | (PM3RectanglePosition_YOffset(p->
  1765.      var.
  1766.      yoffset)));
  1767. PM3_WRITE_REG(PM3Render2D,
  1768.       PM3Render2D_XPositive |
  1769.       PM3Render2D_YPositive |
  1770.       PM3Render2D_Operation_Normal |
  1771.       PM3Render2D_SpanOperation |
  1772.       (PM3Render2D_Width(p->var.xres - sx)) |
  1773.       (PM3Render2D_Height(p->var.yres)));
  1774. }
  1775. /* bottom margin left -> right */
  1776. PM3_WAIT(4);
  1777. PM3_WRITE_REG(PM3Config2D,
  1778.   PM3Config2D_UseConstantSource |
  1779.   PM3Config2D_ForegroundROPEnable |
  1780.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1781.   PM3Config2D_FBWriteEnable);
  1782. PM3_WRITE_REG(PM3ForegroundColor, c);
  1783. PM3_WRITE_REG(PM3RectanglePosition,
  1784.       (PM3RectanglePosition_XOffset(p->var.xoffset)) |
  1785.       (PM3RectanglePosition_YOffset(p->var.yoffset + sy)));
  1786. PM3_WRITE_REG(PM3Render2D,
  1787.       PM3Render2D_XPositive |
  1788.       PM3Render2D_YPositive |
  1789.       PM3Render2D_Operation_Normal |
  1790.       PM3Render2D_SpanOperation |
  1791.       (PM3Render2D_Width(p->var.xres)) |
  1792.       (PM3Render2D_Height(p->var.yres - sy)));
  1793. pm3fb_wait_pm3(l_fb_info);
  1794. }
  1795. #endif /* FBCON_HAS_CFB32 */
  1796. #ifdef FBCON_HAS_CFB16
  1797. static void pm3fb_cfb16_clear(struct vc_data *conp,
  1798.       struct display *p,
  1799.       int sy, int sx, int height, int width)
  1800. {
  1801. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  1802. u32 c;
  1803. DTRACE;
  1804. sx = sx * fontwidth(p);
  1805. width = width * fontwidth(p);
  1806. sy = sy * fontheight(p);
  1807. height = height * fontheight(p);
  1808. c = ((u16 *) p->dispsw_data)[attr_bgcol_ec(p, conp)];
  1809. c = c | (c << 16);
  1810. PM3_WAIT(4);
  1811. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  1812. PM3_WRITE_REG(PM3ForegroundColor, c);
  1813. else
  1814. PM3_WRITE_REG(PM3FBBlockColor, c);
  1815. PM3_WRITE_REG(PM3Config2D,
  1816.   PM3Config2D_UseConstantSource |
  1817.   PM3Config2D_ForegroundROPEnable |
  1818.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1819.   PM3Config2D_FBWriteEnable);
  1820. PM3_WRITE_REG(PM3RectanglePosition,
  1821.       (PM3RectanglePosition_XOffset(sx)) |
  1822.       (PM3RectanglePosition_YOffset(sy)));
  1823. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  1824. PM3_WRITE_REG(PM3Render2D,
  1825.       PM3Render2D_XPositive |
  1826.       PM3Render2D_YPositive |
  1827.       PM3Render2D_Operation_Normal |
  1828.       PM3Render2D_SpanOperation |
  1829.       (PM3Render2D_Width(width)) |
  1830.       (PM3Render2D_Height(height)));
  1831. else
  1832. PM3_WRITE_REG(PM3Render2D,
  1833.       PM3Render2D_XPositive |
  1834.       PM3Render2D_YPositive |
  1835.       PM3Render2D_Operation_Normal |
  1836.       (PM3Render2D_Width(width)) |
  1837.       (PM3Render2D_Height(height)));
  1838. pm3fb_wait_pm3(l_fb_info);
  1839. }
  1840. static void pm3fb_cfb16_clear_margins(struct vc_data *conp,
  1841.       struct display *p, int bottom_only)
  1842. {
  1843. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  1844. int sx, sy;
  1845. u32 c;
  1846. DTRACE;
  1847. sx = conp->vc_cols * fontwidth(p); /* right margin */
  1848. sy = conp->vc_rows * fontheight(p); /* bottom margin */
  1849. c = ((u16 *) p->dispsw_data)[attr_bgcol_ec(p, conp)];
  1850. c = c | (c << 16);
  1851. if (!bottom_only) { /* right margin top->bottom */
  1852. PM3_WAIT(4);
  1853. PM3_WRITE_REG(PM3Config2D,
  1854.   PM3Config2D_UseConstantSource |
  1855.   PM3Config2D_ForegroundROPEnable |
  1856.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1857.   PM3Config2D_FBWriteEnable);
  1858. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  1859. PM3_WRITE_REG(PM3ForegroundColor, c);
  1860. else
  1861. PM3_WRITE_REG(PM3FBBlockColor, c);
  1862. PM3_WRITE_REG(PM3RectanglePosition,
  1863.       (PM3RectanglePosition_XOffset
  1864.        (p->var.xoffset +
  1865. sx)) | (PM3RectanglePosition_YOffset(p->
  1866.      var.
  1867.      yoffset)));
  1868. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  1869. PM3_WRITE_REG(PM3Render2D,
  1870.       PM3Render2D_XPositive |
  1871.       PM3Render2D_YPositive |
  1872.       PM3Render2D_Operation_Normal |
  1873.       PM3Render2D_SpanOperation |
  1874.       (PM3Render2D_Width(p->var.xres - sx)) |
  1875.       (PM3Render2D_Height(p->var.yres)));
  1876. else
  1877. PM3_WRITE_REG(PM3Render2D,
  1878.       PM3Render2D_XPositive |
  1879.       PM3Render2D_YPositive |
  1880.       PM3Render2D_Operation_Normal |
  1881.       (PM3Render2D_Width(p->var.xres - sx)) |
  1882.       (PM3Render2D_Height(p->var.yres)));
  1883. }
  1884. /* bottom margin left -> right */
  1885. PM3_WAIT(4);
  1886. PM3_WRITE_REG(PM3Config2D,
  1887.       PM3Config2D_UseConstantSource |
  1888.       PM3Config2D_ForegroundROPEnable |
  1889.       (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1890.       PM3Config2D_FBWriteEnable);
  1891. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  1892. PM3_WRITE_REG(PM3ForegroundColor, c);
  1893. else
  1894. PM3_WRITE_REG(PM3FBBlockColor, c);
  1895. PM3_WRITE_REG(PM3RectanglePosition,
  1896.       (PM3RectanglePosition_XOffset(p->var.xoffset)) |
  1897.       (PM3RectanglePosition_YOffset(p->var.yoffset + sy)));
  1898. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  1899. PM3_WRITE_REG(PM3Render2D,
  1900.       PM3Render2D_XPositive |
  1901.       PM3Render2D_YPositive |
  1902.       PM3Render2D_Operation_Normal |
  1903.       PM3Render2D_SpanOperation |
  1904.       (PM3Render2D_Width(p->var.xres)) |
  1905.       (PM3Render2D_Height(p->var.yres - sy)));
  1906. else
  1907. PM3_WRITE_REG(PM3Render2D,
  1908.       PM3Render2D_XPositive |
  1909.       PM3Render2D_YPositive |
  1910.       PM3Render2D_Operation_Normal |
  1911.       (PM3Render2D_Width(p->var.xres)) |
  1912.       (PM3Render2D_Height(p->var.yres - sy)));
  1913. pm3fb_wait_pm3(l_fb_info);
  1914. }
  1915. #endif /* FBCON_HAS_CFB16 */
  1916. #ifdef FBCON_HAS_CFB8
  1917. static void pm3fb_cfb8_clear(struct vc_data *conp,
  1918.      struct display *p,
  1919.      int sy, int sx, int height, int width)
  1920. {
  1921. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  1922. u32 c;
  1923. DTRACE;
  1924. sx = sx * fontwidth(p);
  1925. width = width * fontwidth(p);
  1926. sy = sy * fontheight(p);
  1927. height = height * fontheight(p);
  1928. c = attr_bgcol_ec(p, conp);
  1929. c |= c << 8;
  1930. c |= c << 16;
  1931. PM3_WAIT(4);
  1932. PM3_WRITE_REG(PM3Config2D,
  1933.   PM3Config2D_UseConstantSource |
  1934.   PM3Config2D_ForegroundROPEnable |
  1935.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1936.   PM3Config2D_FBWriteEnable);
  1937. PM3_WRITE_REG(PM3ForegroundColor, c);
  1938. PM3_WRITE_REG(PM3RectanglePosition,
  1939.       (PM3RectanglePosition_XOffset(sx)) |
  1940.       (PM3RectanglePosition_YOffset(sy)));
  1941. PM3_WRITE_REG(PM3Render2D,
  1942.       PM3Render2D_XPositive |
  1943.       PM3Render2D_YPositive |
  1944.       PM3Render2D_Operation_Normal |
  1945.       PM3Render2D_SpanOperation |
  1946.       (PM3Render2D_Width(width)) |
  1947.       (PM3Render2D_Height(height)));
  1948. pm3fb_wait_pm3(l_fb_info);
  1949. }
  1950. static void pm3fb_cfb8_clear_margins(struct vc_data *conp,
  1951.      struct display *p, int bottom_only)
  1952. {
  1953. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  1954. int sx, sy;
  1955. u32 c;
  1956. DTRACE;
  1957. sx = conp->vc_cols * fontwidth(p); /* right margin */
  1958. sy = conp->vc_rows * fontheight(p); /* bottom margin */
  1959. c = attr_bgcol_ec(p, conp);
  1960. c |= c << 8;
  1961. c |= c << 16;
  1962. if (!bottom_only) { /* right margin top->bottom */
  1963. PM3_WAIT(4);
  1964. PM3_WRITE_REG(PM3Config2D,
  1965.   PM3Config2D_UseConstantSource |
  1966.   PM3Config2D_ForegroundROPEnable |
  1967.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1968.   PM3Config2D_FBWriteEnable);
  1969. PM3_WRITE_REG(PM3ForegroundColor, c);
  1970. PM3_WRITE_REG(PM3RectanglePosition,
  1971.       (PM3RectanglePosition_XOffset
  1972.        (p->var.xoffset +
  1973. sx)) | (PM3RectanglePosition_YOffset(p->
  1974.      var.
  1975.      yoffset)));
  1976. PM3_WRITE_REG(PM3Render2D,
  1977.       PM3Render2D_XPositive |
  1978.       PM3Render2D_YPositive |
  1979.       PM3Render2D_Operation_Normal |
  1980.       PM3Render2D_SpanOperation |
  1981.       (PM3Render2D_Width(p->var.xres - sx)) |
  1982.       (PM3Render2D_Height(p->var.yres)));
  1983. }
  1984. /* bottom margin left -> right */
  1985. PM3_WAIT(4);
  1986. PM3_WRITE_REG(PM3Config2D,
  1987.   PM3Config2D_UseConstantSource |
  1988.   PM3Config2D_ForegroundROPEnable |
  1989.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  1990.   PM3Config2D_FBWriteEnable);
  1991. PM3_WRITE_REG(PM3ForegroundColor, c);
  1992. PM3_WRITE_REG(PM3RectanglePosition,
  1993.       (PM3RectanglePosition_XOffset(p->var.xoffset)) |
  1994.       (PM3RectanglePosition_YOffset(p->var.yoffset + sy)));
  1995. PM3_WRITE_REG(PM3Render2D,
  1996.       PM3Render2D_XPositive |
  1997.       PM3Render2D_YPositive |
  1998.       PM3Render2D_Operation_Normal |
  1999.       PM3Render2D_SpanOperation |
  2000.       (PM3Render2D_Width(p->var.xres)) |
  2001.       (PM3Render2D_Height(p->var.yres - sy)));
  2002. pm3fb_wait_pm3(l_fb_info);
  2003. }
  2004. #endif /* FBCON_HAS_CFB8 */
  2005. #if defined(FBCON_HAS_CFB8) || defined(FBCON_HAS_CFB16) || defined(FBCON_HAS_CFB32)
  2006. static void pm3fb_cfbX_bmove(struct display *p,
  2007.      int sy, int sx,
  2008.      int dy, int dx, int height, int width)
  2009. {
  2010. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  2011. int x_align, o_x, o_y;
  2012. DTRACE;
  2013. sx = sx * fontwidth(p);
  2014. dx = dx * fontwidth(p);
  2015. width = width * fontwidth(p);
  2016. sy = sy * fontheight(p);
  2017. dy = dy * fontheight(p);
  2018. height = height * fontheight(p);
  2019. o_x = sx - dx; /*(sx > dx ) ? (sx - dx) : (dx - sx); */
  2020. o_y = sy - dy; /*(sy > dy ) ? (sy - dy) : (dy - sy); */
  2021. x_align = (sx & 0x1f);
  2022. PM3_WAIT(6);
  2023. PM3_WRITE_REG(PM3Config2D,
  2024.   PM3Config2D_UserScissorEnable |
  2025.   PM3Config2D_ForegroundROPEnable |
  2026.   PM3Config2D_Blocking |
  2027.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  2028.   PM3Config2D_FBWriteEnable);
  2029. PM3_WRITE_REG(PM3ScissorMinXY,
  2030.       ((dy & 0x0fff) << 16) | (dx & 0x0fff));
  2031. PM3_WRITE_REG(PM3ScissorMaxXY,
  2032.   (((dy + height) & 0x0fff) << 16) |
  2033.   ((dx + width) & 0x0fff));
  2034. PM3_WRITE_REG(PM3FBSourceReadBufferOffset,
  2035.       PM3FBSourceReadBufferOffset_XOffset(o_x) |
  2036.       PM3FBSourceReadBufferOffset_YOffset(o_y));
  2037. PM3_WRITE_REG(PM3RectanglePosition,
  2038.       (PM3RectanglePosition_XOffset(dx - x_align)) |
  2039.       (PM3RectanglePosition_YOffset(dy)));
  2040. PM3_WRITE_REG(PM3Render2D,
  2041.       ((sx > dx) ? PM3Render2D_XPositive : 0) |
  2042.       ((sy > dy) ? PM3Render2D_YPositive : 0) |
  2043.       PM3Render2D_Operation_Normal |
  2044.       PM3Render2D_SpanOperation |
  2045.       PM3Render2D_FBSourceReadEnable |
  2046.       (PM3Render2D_Width(width + x_align)) |
  2047.       (PM3Render2D_Height(height)));
  2048. pm3fb_wait_pm3(l_fb_info);
  2049. }
  2050. static void pm3fb_cfbX_putc(struct vc_data *conp, struct display *p,
  2051.     int c, int yy, int xx)
  2052. {
  2053. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  2054. u8 *cdat, asx = 0, asy = 0, o_x = 0, o_y = 0;
  2055. u32 fgx, bgx, ldat;
  2056. int sx, sy, i;
  2057. DTRACE;
  2058. if (l_fb_info->current_par->depth == 8)
  2059. fgx = attr_fgcol(p, c);
  2060. else if (depth2bpp(l_fb_info->current_par->depth) == 16)
  2061. fgx = ((u16 *) p->dispsw_data)[attr_fgcol(p, c)];
  2062. else
  2063. fgx = ((u32 *) p->dispsw_data)[attr_fgcol(p, c)];
  2064. PM3_COLOR(fgx);
  2065. if (l_fb_info->current_par->depth == 8)
  2066. bgx = attr_bgcol(p, c);
  2067. else if (depth2bpp(l_fb_info->current_par->depth) == 16)
  2068. bgx = ((u16 *) p->dispsw_data)[attr_bgcol(p, c)];
  2069. else
  2070. bgx = ((u32 *) p->dispsw_data)[attr_bgcol(p, c)];
  2071. PM3_COLOR(bgx);
  2072. PM3_WAIT(4);
  2073. PM3_WRITE_REG(PM3Config2D,
  2074.   PM3Config2D_UseConstantSource |
  2075.   PM3Config2D_ForegroundROPEnable |
  2076.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  2077.   PM3Config2D_FBWriteEnable | PM3Config2D_OpaqueSpan);
  2078. PM3_WRITE_REG(PM3ForegroundColor, fgx);
  2079. PM3_WRITE_REG(PM3FillBackgroundColor, bgx);
  2080. /* WARNING : adress select X need to specify 8 bits for fontwidth <= 8 */
  2081. /* and 16 bits for fontwidth <= 16 */
  2082. /* same in _putcs, same for Y and fontheight */
  2083. if (fontwidth(p) <= 8)
  2084. asx = 2;
  2085. else if (fontwidth(p) <= 16)
  2086. asx = 3; /* look OK */
  2087. if (fontheight(p) <= 8)
  2088. asy = 2;
  2089. else if (fontheight(p) <= 16)
  2090. asy = 3; /* look OK */
  2091. else if (fontheight(p) <= 32)
  2092. asy = 4; /* look OK */
  2093. sx = xx * fontwidth(p);
  2094. sy = yy * fontheight(p);
  2095. if (fontwidth(p) <= 8)
  2096. o_x = (8 - (sx & 0x7)) & 0x7;
  2097. else if (fontwidth(p) <= 16)
  2098. o_x = (16 - (sx & 0xF)) & 0xF;
  2099. if (fontheight(p) <= 8)
  2100. o_y = (8 - (sy & 0x7)) & 0x7;
  2101. else if (fontheight(p) <= 16)
  2102. o_y = (16 - (sy & 0xF)) & 0xF;
  2103. else if (fontheight(p) <= 32)
  2104. o_y = (32 - (sy & 0x1F)) & 0x1F;
  2105. PM3_WRITE_REG(PM3AreaStippleMode, (o_x << 7) | (o_y << 12) | /* x_offset, y_offset in pattern */
  2106.       (1 << 18) | /* BE */
  2107.       1 | (asx << 1) | (asy << 4) | /* address select x/y */
  2108.       (1 << 20)); /* OpaqueSpan */
  2109. if (fontwidth(p) <= 8) {
  2110. cdat = p->fontdata + (c & p->charmask) * fontheight(p);
  2111. } else {
  2112. cdat =
  2113.     p->fontdata +
  2114.     ((c & p->charmask) * (fontheight(p) << 1));
  2115. }
  2116. PM3_WAIT(2 + fontheight(p));
  2117. for (i = 0; i < fontheight(p); i++) { /* assume fontheight <= 32 */
  2118. if (fontwidth(p) <= 8) {
  2119. ldat = *cdat++;
  2120. } else { /* assume fontwidth <= 16 ATM */
  2121. ldat = ((*cdat++) << 8);
  2122. ldat |= *cdat++;
  2123. }
  2124. PM3_WRITE_REG(AreaStipplePattern_indexed(i), ldat);
  2125. }
  2126. PM3_WRITE_REG(PM3RectanglePosition,
  2127.       (PM3RectanglePosition_XOffset(sx)) |
  2128.       (PM3RectanglePosition_YOffset(sy)));
  2129. PM3_WRITE_REG(PM3Render2D,
  2130.       PM3Render2D_AreaStippleEnable |
  2131.       PM3Render2D_XPositive |
  2132.       PM3Render2D_YPositive |
  2133.       PM3Render2D_Operation_Normal |
  2134.       PM3Render2D_SpanOperation |
  2135.       (PM3Render2D_Width(fontwidth(p))) |
  2136.       (PM3Render2D_Height(fontheight(p))));
  2137. pm3fb_wait_pm3(l_fb_info);
  2138. }
  2139. static void pm3fb_cfbX_putcs(struct vc_data *conp, struct display *p,
  2140.      const unsigned short *s, int count, int yy,
  2141.      int xx)
  2142. {
  2143. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  2144. u8 *cdat, asx = 0, asy = 0, o_x = 0, o_y = 0;
  2145. u32 fgx, bgx, ldat;
  2146. int sx, sy, i, j;
  2147. u16 sc;
  2148. DTRACE;
  2149. sc = scr_readw(s);
  2150. if (l_fb_info->current_par->depth == 8)
  2151. fgx = attr_fgcol(p, sc);
  2152. else if (depth2bpp(l_fb_info->current_par->depth) == 16)
  2153. fgx = ((u16 *) p->dispsw_data)[attr_fgcol(p, sc)];
  2154. else
  2155. fgx = ((u32 *) p->dispsw_data)[attr_fgcol(p, sc)];
  2156. PM3_COLOR(fgx);
  2157. if (l_fb_info->current_par->depth == 8)
  2158. bgx = attr_bgcol(p, sc);
  2159. else if (depth2bpp(l_fb_info->current_par->depth) == 16)
  2160. bgx = ((u16 *) p->dispsw_data)[attr_bgcol(p, sc)];
  2161. else
  2162. bgx = ((u32 *) p->dispsw_data)[attr_bgcol(p, sc)];
  2163. PM3_COLOR(bgx);
  2164. PM3_WAIT(4);
  2165. PM3_WRITE_REG(PM3Config2D,
  2166.   PM3Config2D_UseConstantSource |
  2167.   PM3Config2D_ForegroundROPEnable |
  2168.   (PM3Config2D_ForegroundROP(0x3)) | /* Ox3 is GXcopy */
  2169.   PM3Config2D_FBWriteEnable |
  2170.   PM3Config2D_OpaqueSpan);
  2171. PM3_WRITE_REG(PM3ForegroundColor, fgx);
  2172. PM3_WRITE_REG(PM3FillBackgroundColor, bgx);
  2173. /* WARNING : adress select X need to specify 8 bits for fontwidth <= 8 */
  2174. /* and 16 bits for fontwidth <= 16 */
  2175. /* same in _putc, same for Y and fontheight */
  2176. if (fontwidth(p) <= 8)
  2177. asx = 2;
  2178. else if (fontwidth(p) <= 16)
  2179. asx = 3; /* look OK */
  2180. if (fontheight(p) <= 8)
  2181. asy = 2;
  2182. else if (fontheight(p) <= 16)
  2183. asy = 3; /* look OK */
  2184. else if (fontheight(p) <= 32)
  2185. asy = 4; /* look OK */
  2186. sy = yy * fontheight(p);
  2187. if (fontheight(p) <= 8)
  2188. o_y = (8 - (sy & 0x7)) & 0x7;
  2189. else if (fontheight(p) <= 16)
  2190. o_y = (16 - (sy & 0xF)) & 0xF;
  2191. else if (fontheight(p) <= 32)
  2192. o_y = (32 - (sy & 0x1F)) & 0x1F;
  2193. for (j = 0; j < count; j++) {
  2194. sc = scr_readw(s + j);
  2195. if (fontwidth(p) <= 8)
  2196. cdat = p->fontdata +
  2197. (sc & p->charmask) * fontheight(p);
  2198. else
  2199. cdat = p->fontdata +
  2200. ((sc & p->charmask) * fontheight(p) << 1);
  2201. sx = (xx + j) * fontwidth(p);
  2202. if (fontwidth(p) <= 8)
  2203. o_x = (8 - (sx & 0x7)) & 0x7;
  2204. else if (fontwidth(p) <= 16)
  2205. o_x = (16 - (sx & 0xF)) & 0xF;
  2206. PM3_WAIT(3 + fontheight(p));
  2207. PM3_WRITE_REG(PM3AreaStippleMode, (o_x << 7) | (o_y << 12) | /* x_offset, y_offset in pattern */
  2208.       (1 << 18) | /* BE */
  2209.       1 | (asx << 1) | (asy << 4) | /* address select x/y */
  2210.       (1 << 20)); /* OpaqueSpan */
  2211. for (i = 0; i < fontheight(p); i++) { /* assume fontheight <= 32 */
  2212. if (fontwidth(p) <= 8) {
  2213. ldat = *cdat++;
  2214. } else { /* assume fontwidth <= 16 ATM */
  2215. ldat = ((*cdat++) << 8);
  2216. ldat |= *cdat++;
  2217. }
  2218. PM3_WRITE_REG(AreaStipplePattern_indexed(i), ldat);
  2219. }
  2220. PM3_WRITE_REG(PM3RectanglePosition,
  2221.       (PM3RectanglePosition_XOffset(sx)) |
  2222.       (PM3RectanglePosition_YOffset(sy)));
  2223. PM3_WRITE_REG(PM3Render2D,
  2224.       PM3Render2D_AreaStippleEnable |
  2225.       PM3Render2D_XPositive |
  2226.       PM3Render2D_YPositive |
  2227.       PM3Render2D_Operation_Normal |
  2228.       PM3Render2D_SpanOperation |
  2229.       (PM3Render2D_Width(fontwidth(p))) |
  2230.       (PM3Render2D_Height(fontheight(p))));
  2231. }
  2232. pm3fb_wait_pm3(l_fb_info);
  2233. }
  2234. static void pm3fb_cfbX_revc(struct display *p, int xx, int yy)
  2235. {
  2236. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) p->fb_info;
  2237. xx = xx * fontwidth(p);
  2238. yy = yy * fontheight(p);
  2239. if (l_fb_info->current_par->depth == 8)
  2240. {
  2241. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  2242. PM3_SLOW_WRITE_REG(PM3FBSoftwareWriteMask, 0x0F0F0F0F);
  2243. else
  2244. PM3_SLOW_WRITE_REG(PM3FBHardwareWriteMask, 0x0F0F0F0F);
  2245. }
  2246. PM3_WAIT(3);
  2247. PM3_WRITE_REG(PM3Config2D,
  2248.   PM3Config2D_UseConstantSource |
  2249.   PM3Config2D_ForegroundROPEnable |
  2250.   (PM3Config2D_ForegroundROP(0xa)) | /* Oxa is GXinvert */
  2251.   PM3Config2D_FBDestReadEnable |
  2252.   PM3Config2D_FBWriteEnable);
  2253. PM3_WRITE_REG(PM3RectanglePosition,
  2254.       (PM3RectanglePosition_XOffset(xx)) |
  2255.       (PM3RectanglePosition_YOffset(yy)));
  2256. PM3_WRITE_REG(PM3Render2D,
  2257.       PM3Render2D_XPositive |
  2258.       PM3Render2D_YPositive |
  2259.       PM3Render2D_Operation_Normal |
  2260.       PM3Render2D_SpanOperation |
  2261.       (PM3Render2D_Width(fontwidth(p))) |
  2262.       (PM3Render2D_Height(fontheight(p))));
  2263. pm3fb_wait_pm3(l_fb_info);
  2264. if (l_fb_info->current_par->depth == 8)
  2265. {
  2266. if (l_fb_info->memt.caps & PM3LocalMemCaps_NoWriteMask)
  2267. PM3_SLOW_WRITE_REG(PM3FBSoftwareWriteMask, 0xFFFFFFFF);
  2268. else
  2269. PM3_SLOW_WRITE_REG(PM3FBHardwareWriteMask, 0xFFFFFFFF);
  2270. }
  2271. }
  2272. #endif /* FBCON_HAS_CFB8 || FBCON_HAS_CFB16 || FBCON_HAS_CFB32 */
  2273. #endif /* PM3FB_USE_ACCEL */
  2274. /* *********************************** */
  2275. /* ***** pre-init board(s) setup ***** */
  2276. /* *********************************** */
  2277. static void pm3fb_mode_setup(char *mode, unsigned long board_num)
  2278. {
  2279. struct pm3fb_info *l_fb_info = &(fb_info[board_num]);
  2280. struct pm3fb_par *l_fb_par = &(current_par[board_num]);
  2281. unsigned long i = 0;
  2282. current_par_valid[board_num] = 0;
  2283. if (!strncmp(mode, "current", 7)) {
  2284. l_fb_info->use_current = 1; /* default w/ OpenFirmware */
  2285. } else {
  2286. while ((mode_base[i].name[0])
  2287.        && (!current_par_valid[board_num])) {
  2288. if (!
  2289.     (strncmp
  2290.      (mode, mode_base[i].name,
  2291.       strlen(mode_base[i].name)))) {
  2292. memcpy(l_fb_par, &(mode_base[i].user_mode),
  2293.        sizeof(struct pm3fb_par));
  2294. current_par_valid[board_num] = 1;
  2295. DPRINTK(2, "Mode set to %sn",
  2296. mode_base[i].name);
  2297. }
  2298. i++;
  2299. }
  2300. DASSERT(current_par_valid[board_num],
  2301. "Valid mode on command linen");
  2302. }
  2303. }
  2304. static void pm3fb_pciid_setup(char *pciid, unsigned long board_num)
  2305. {
  2306. short l_bus = -1, l_slot = -1, l_func = -1;
  2307. char *next;
  2308. if (pciid) {
  2309. l_bus = simple_strtoul(pciid, &next, 10);
  2310. if (next && (next[0] == ':')) {
  2311. pciid = next + 1;
  2312. l_slot = simple_strtoul(pciid, &next, 10);
  2313. if (next && (next[0] == ':')) {
  2314. pciid = next + 1;
  2315. l_func =
  2316.     simple_strtoul(pciid, (char **) NULL,
  2317.    10);
  2318. }
  2319. }
  2320. } else
  2321. return;
  2322. if ((l_bus >= 0) && (l_slot >= 0) && (l_func >= 0)) {
  2323. bus[board_num] = l_bus;
  2324. slot[board_num] = l_slot;
  2325. func[board_num] = l_func;
  2326. DPRINTK(2, "Board #%ld will be PciId: %hd:%hd:%hdn",
  2327. board_num, l_bus, l_slot, l_func);
  2328. } else {
  2329. DPRINTK(1, "Invalid PciId: %hd:%hd:%hd for board #%ldn",
  2330. l_bus, l_slot, l_func, board_num);
  2331. }
  2332. }
  2333. static void pm3fb_font_setup(char *lf, unsigned long board_num)
  2334. {
  2335. unsigned long lfs = strlen(lf);
  2336. if (lfs > (PM3_FONTNAME_SIZE - 1)) {
  2337. DPRINTK(1, "Fontname %s too longn", lf);
  2338. return;
  2339. }
  2340. strncpy(fontn[board_num], lf, lfs);
  2341. fontn[board_num][lfs] = '';
  2342. }
  2343. static void pm3fb_bootdepth_setup(char *bds, unsigned long board_num)
  2344. {
  2345. unsigned long bd = simple_strtoul(bds, (char **) NULL, 10);
  2346. if (!(depth_supported(bd))) {
  2347. printk(KERN_WARNING "pm3fb: ignoring invalid depth %s for board #%ldn",
  2348.        bds, board_num);
  2349. return;
  2350. }
  2351. depth[board_num] = bd;
  2352. }
  2353. static void pm3fb_forcesize_setup(char *bds, unsigned long board_num)
  2354. {
  2355. unsigned long bd = simple_strtoul(bds, (char **) NULL, 10);
  2356. if (bd > 64) {
  2357. printk(KERN_WARNING "pm3fb: ignoring invalid memory size %s for board #%ldn",
  2358.        bds, board_num);
  2359. return;
  2360. }
  2361. forcesize[board_num] = bd;
  2362. }
  2363. static char *pm3fb_boardnum_setup(char *options, unsigned long *bn)
  2364. {
  2365. char *next;
  2366. if (!(CHAR_IS_NUM(options[0]))) {
  2367. (*bn) = 0;
  2368. return (options);
  2369. }
  2370. (*bn) = simple_strtoul(options, &next, 10);
  2371. if (next && (next[0] == ':') && ((*bn) >= 0)
  2372.     && ((*bn) <= PM3_MAX_BOARD)) {
  2373. DPRINTK(2, "Board_num seen as %ldn", (*bn));
  2374. return (next + 1);
  2375. } else {
  2376. (*bn) = 0;
  2377. DPRINTK(2, "Board_num default to %ldn", (*bn));
  2378. return (options);
  2379. }
  2380. }
  2381. static void pm3fb_real_setup(char *options)
  2382. {
  2383. char *next;
  2384. unsigned long i, bn;
  2385. struct pm3fb_info *l_fb_info;
  2386. DTRACE;
  2387. DPRINTK(2, "Options : %sn", options);
  2388. for (i = 0; i < PM3_MAX_BOARD; i++) {
  2389. l_fb_info = &(fb_info[i]);
  2390. memset(l_fb_info, 0, sizeof(struct pm3fb_info));
  2391. l_fb_info->gen.fbhw = &pm3fb_switch;
  2392. l_fb_info->board_num = i;
  2393. current_par_valid[i] = 0;
  2394. slot[i] = -1;
  2395. func[i] = -1;
  2396. bus[i] = -1;
  2397. disable[i] = 0;
  2398. noaccel[i] = 0;
  2399. fontn[i][0] = '';
  2400. depth[i] = 0;
  2401. l_fb_info->current_par = &(current_par[i]);
  2402. }
  2403. /* eat up prefix pm3fb and whatever is used as separator i.e. :,= */
  2404. if (!strncmp(options, "pm3fb", 5)) {
  2405. options += 5;
  2406. while (((*options) == ',') || ((*options) == ':')
  2407.        || ((*options) == '='))
  2408. options++;
  2409. }
  2410. while (options) {
  2411. bn = 0;
  2412. if ((next = strchr(options, ','))) {
  2413. (*next) = '';
  2414. next++;
  2415. }
  2416. if (!strncmp(options, "mode:", 5)) {
  2417. options = pm3fb_boardnum_setup(options + 5, &bn);
  2418. DPRINTK(2, "Setting mode for board #%ldn", bn);
  2419. pm3fb_mode_setup(options, bn);
  2420. } else if (!strncmp(options, "off:", 4)) {
  2421. options = pm3fb_boardnum_setup(options + 4, &bn);
  2422. DPRINTK(2, "Disabling board #%ldn", bn);
  2423. disable[bn] = 1;
  2424. } else if (!strncmp(options, "off", 3)) { /* disable everything */
  2425. for (i = 0; i < PM3_MAX_BOARD; i++)
  2426. disable[i] = 1;
  2427. } else if (!strncmp(options, "disable:", 8)) {
  2428. options = pm3fb_boardnum_setup(options + 8, &bn);
  2429. DPRINTK(2, "Disabling board #%ldn", bn);
  2430. disable[bn] = 1;
  2431. } else if (!strncmp(options, "pciid:", 6)) {
  2432. options = pm3fb_boardnum_setup(options + 6, &bn);
  2433. DPRINTK(2, "Setting PciID for board #%ldn", bn);
  2434. pm3fb_pciid_setup(options, bn);
  2435. } else if (!strncmp(options, "noaccel:", 8)) {
  2436. options = pm3fb_boardnum_setup(options + 8, &bn);
  2437. noaccel[bn] = 1;
  2438. } else if (!strncmp(options, "font:", 5)) {
  2439. options = pm3fb_boardnum_setup(options + 5, &bn);
  2440. pm3fb_font_setup(options, bn);
  2441. } else if (!strncmp(options, "depth:", 6)) {
  2442. options = pm3fb_boardnum_setup(options + 6, &bn);
  2443. pm3fb_bootdepth_setup(options, bn);
  2444. } else if (!strncmp(options, "printtimings", 12)) {
  2445. printtimings = 1;
  2446. } else if (!strncmp(options, "flatpanel:", 10)) {
  2447. options = pm3fb_boardnum_setup(options + 10, &bn);
  2448. flatpanel[bn] = 1;
  2449. } else if (!strncmp(options, "forcesize:", 10)) {
  2450. options = pm3fb_boardnum_setup(options + 10, &bn);
  2451. pm3fb_forcesize_setup(options, bn);
  2452. }
  2453. options = next;
  2454. }
  2455. }
  2456. /* ********************************************** */
  2457. /* ***** framebuffer API standard functions ***** */
  2458. /* ********************************************** */
  2459. static int pm3fb_open(struct fb_info *info, int user)
  2460. {
  2461. DTRACE;
  2462. MOD_INC_USE_COUNT;
  2463. return (0);
  2464. }
  2465. static int pm3fb_release(struct fb_info *info, int user)
  2466. {
  2467. DTRACE;
  2468. MOD_DEC_USE_COUNT;
  2469. return (0);
  2470. }
  2471. static int pm3fb_encode_fix(struct fb_fix_screeninfo *fix,
  2472.     const void *par, struct fb_info_gen *info)
  2473. {
  2474. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2475. struct pm3fb_par *p = (struct pm3fb_par *) par;
  2476. DTRACE;
  2477. strcpy(fix->id, permedia3_name);
  2478. fix->smem_start = (unsigned long)l_fb_info->p_fb;
  2479. fix->smem_len = l_fb_info->fb_size;
  2480. fix->mmio_start = (unsigned long)l_fb_info->pIOBase;
  2481. fix->mmio_len = PM3_REGS_SIZE;
  2482. #ifdef PM3FB_USE_ACCEL
  2483. if (!(noaccel[l_fb_info->board_num]))
  2484. fix->accel = FB_ACCEL_3DLABS_PERMEDIA3;
  2485. else
  2486. #endif /* PM3FB_USE_ACCEL */
  2487. fix->accel = FB_ACCEL_NONE;
  2488. fix->type = FB_TYPE_PACKED_PIXELS;
  2489. fix->visual =
  2490.     (p->depth == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
  2491. if (current_par_valid[l_fb_info->board_num])
  2492. fix->line_length =
  2493. l_fb_info->current_par->width *
  2494. depth2ByPP(l_fb_info->current_par->depth);
  2495. else
  2496. fix->line_length = 0;
  2497. fix->xpanstep = 64 / depth2bpp(p->depth);
  2498. fix->ypanstep = 1;
  2499. fix->ywrapstep = 0;
  2500. return (0);
  2501. }
  2502. static int pm3fb_decode_var(const struct fb_var_screeninfo *var,
  2503.     void *par, struct fb_info_gen *info)
  2504. {
  2505. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2506. struct pm3fb_par *p = (struct pm3fb_par *) par;
  2507. struct pm3fb_par temp_p;
  2508. u32 xres;
  2509. DTRACE;
  2510. DASSERT((var != NULL), "fb_var_screeninfo* not NULL");
  2511. DASSERT((p != NULL), "pm3fb_par* not NULL");
  2512. DASSERT((l_fb_info != NULL), "pm3fb_info* not NULL");
  2513. memset(&temp_p, 0, sizeof(struct pm3fb_par));
  2514. temp_p.width = (var->xres_virtual + 7) & ~7;
  2515. temp_p.height = var->yres_virtual;
  2516. if (!(depth_supported(var->bits_per_pixel))) /* round unsupported up to a multiple of 8 */
  2517. temp_p.depth = depth2bpp(var->bits_per_pixel);
  2518. else
  2519. temp_p.depth = var->bits_per_pixel;
  2520. temp_p.depth = (temp_p.depth > 32) ? 32 : temp_p.depth; /* max 32 */
  2521. temp_p.depth = (temp_p.depth == 24) ? 32 : temp_p.depth; /* 24 unsupported, round-up to 32 */
  2522. if ((temp_p.depth == 16) && (var->red.length == 5) && (var->green.length == 5) && (var->blue.length == 5))
  2523. temp_p.depth = 15; /* RGBA 5551 is stored as depth 15 */
  2524. if ((temp_p.depth == 16) && (var->red.length == 4) && (var->green.length == 4) && (var->blue.length == 4))
  2525. temp_p.depth = 12; /* RGBA 4444  is stored as depth 12 */
  2526. DPRINTK(2,
  2527. "xres: %d, yres: %d, vxres: %d, vyres: %d ; xoffset:%d, yoffset: %dn",
  2528. var->xres, var->yres, var->xres_virtual, var->yres_virtual,
  2529. var->xoffset, var->yoffset);
  2530. xres = (var->xres + 31) & ~31;
  2531. if (temp_p.width < xres + var->xoffset)
  2532. temp_p.width = xres + var->xoffset;
  2533. if (temp_p.height < var->yres + var->yoffset)
  2534. temp_p.height = var->yres + var->yoffset;
  2535. if (temp_p.width > 2048) {
  2536. DPRINTK(1, "virtual width not supported: %un",
  2537. temp_p.width);
  2538. return (-EINVAL);
  2539. }
  2540. if (var->yres < 200) {
  2541. DPRINTK(1, "height not supported: %un", (u32) var->yres);
  2542. return (-EINVAL);
  2543. }
  2544. if (temp_p.height < 200 || temp_p.height > 4095) {
  2545. DPRINTK(1, "virtual height not supported: %un",
  2546. temp_p.height);
  2547. return (-EINVAL);
  2548. }
  2549. if (!(depth_supported(temp_p.depth))) {
  2550. DPRINTK(1, "depth not supported: %un", temp_p.depth);
  2551. return (-EINVAL);
  2552. }
  2553. if ((temp_p.width * temp_p.height * depth2ByPP(temp_p.depth)) >
  2554.     l_fb_info->fb_size) {
  2555. DPRINTK(1, "no memory for screen (%ux%ux%u)n",
  2556. temp_p.width, temp_p.height, temp_p.depth);
  2557. return (-EINVAL);
  2558. }
  2559. if ((!var->pixclock) ||
  2560.     (!var->right_margin) ||
  2561.     (!var->hsync_len) ||
  2562.     (!var->left_margin) ||
  2563.     (!var->lower_margin) ||
  2564.     (!var->vsync_len) || (!var->upper_margin)
  2565.     ) {
  2566. unsigned long i = 0, done = 0;
  2567. printk(KERN_WARNING "pm3fb: refusing to use a likely wrong timingn");
  2568. while ((mode_base[i].user_mode.width) && !done) {
  2569. if ((mode_base[i].user_mode.width == temp_p.width)
  2570.     && (mode_base[i].user_mode.height ==
  2571. temp_p.height)) {
  2572. printk(KERN_NOTICE "pm3fb: using close match %sn",
  2573.        mode_base[i].name);
  2574. temp_p = mode_base[i].user_mode;
  2575. done = 1;
  2576. }
  2577. i++;
  2578. }
  2579. if (!done)
  2580. return (-EINVAL);
  2581. } else {
  2582. temp_p.pixclock = PICOS2KHZ(var->pixclock);
  2583. if (temp_p.pixclock > PM3_MAX_PIXCLOCK) {
  2584. DPRINTK(1, "pixclock too high (%uKHz)n",
  2585. temp_p.pixclock);
  2586. return (-EINVAL);
  2587. }
  2588. temp_p.hsstart = var->right_margin;
  2589. temp_p.hsend = var->right_margin + var->hsync_len;
  2590. temp_p.hbend =
  2591.     var->right_margin + var->hsync_len + var->left_margin;
  2592. temp_p.htotal = xres + temp_p.hbend;
  2593. temp_p.vsstart = var->lower_margin;
  2594. temp_p.vsend = var->lower_margin + var->vsync_len;
  2595. temp_p.vbend =
  2596.     var->lower_margin + var->vsync_len + var->upper_margin;
  2597. temp_p.vtotal = var->yres + temp_p.vbend;
  2598. temp_p.stride = temp_p.width;
  2599. DPRINTK(2, "Using %d * %d, %d Khz, stride is %08xn",
  2600. temp_p.width, temp_p.height, temp_p.pixclock,
  2601. temp_p.stride);
  2602. temp_p.base =
  2603.     pm3fb_Shiftbpp(l_fb_info, temp_p.depth,
  2604.    (var->yoffset * xres) + var->xoffset);
  2605. temp_p.video = 0;
  2606. if (var->sync & FB_SYNC_HOR_HIGH_ACT)
  2607. temp_p.video |= PM3VideoControl_HSYNC_ACTIVE_HIGH;
  2608. else
  2609. temp_p.video |= PM3VideoControl_HSYNC_ACTIVE_LOW;
  2610. if (var->sync & FB_SYNC_VERT_HIGH_ACT)
  2611. temp_p.video |= PM3VideoControl_VSYNC_ACTIVE_HIGH;
  2612. else
  2613. temp_p.video |= PM3VideoControl_VSYNC_ACTIVE_LOW;
  2614. if ((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) {
  2615. DPRINTK(1, "Interlaced mode not supportednn");
  2616. return (-EINVAL);
  2617. }
  2618. if ((var->vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE)
  2619. temp_p.video |= PM3VideoControl_LINE_DOUBLE_ON;
  2620. else
  2621. temp_p.video |= PM3VideoControl_LINE_DOUBLE_OFF;
  2622. if (var->activate == FB_ACTIVATE_NOW)
  2623. temp_p.video |= PM3VideoControl_ENABLE;
  2624. else {
  2625. temp_p.video |= PM3VideoControl_DISABLE;
  2626. DPRINTK(2, "PM3Video disabledn");
  2627. }
  2628. switch (temp_p.depth) {
  2629. case 8:
  2630. temp_p.video |= PM3VideoControl_PIXELSIZE_8BIT;
  2631. break;
  2632. case 12:
  2633. case 15:
  2634. case 16:
  2635. temp_p.video |= PM3VideoControl_PIXELSIZE_16BIT;
  2636. break;
  2637. case 32:
  2638. temp_p.video |= PM3VideoControl_PIXELSIZE_32BIT;
  2639. break;
  2640. default:
  2641. DPRINTK(1, "Unsupported depthn");
  2642. break;
  2643. }
  2644. }
  2645. (*p) = temp_p;
  2646. #ifdef PM3FB_USE_ACCEL
  2647. if (var->accel_flags & FB_ACCELF_TEXT)
  2648. noaccel[l_fb_info->board_num] = 0;
  2649. else
  2650. noaccel[l_fb_info->board_num] = 1;
  2651. #endif /* PM3FB_USE_ACCEL */
  2652. return (0);
  2653. }
  2654. static void pm3fb_encode_depth(struct fb_var_screeninfo *var, long d)
  2655. {
  2656. switch (d) {
  2657. case 8:
  2658. var->red.length = var->green.length = var->blue.length = 8;
  2659. var->red.offset = var->green.offset = var->blue.offset = 0;
  2660. var->transp.offset = var->transp.length = 0;
  2661. break;
  2662. case 12:
  2663. var->red.offset = 8;
  2664. var->red.length = 4;
  2665. var->green.offset = 4;
  2666. var->green.length = 4;
  2667. var->blue.offset = 0;
  2668. var->blue.length = 4;
  2669. var->transp.offset = 12;
  2670. var->transp.length = 4;
  2671. break;
  2672. case 15:
  2673. var->red.offset = 10;
  2674. var->red.length = 5;
  2675. var->green.offset = 5;
  2676. var->green.length = 5;
  2677. var->blue.offset = 0;
  2678. var->blue.length = 5;
  2679. var->transp.offset = 15;
  2680. var->transp.length = 1;
  2681. break;
  2682. case 16:
  2683. var->red.offset = 11;
  2684. var->red.length = 5;
  2685. var->green.offset = 5;
  2686. var->green.length = 6;
  2687. var->blue.offset = 0;
  2688. var->blue.length = 5;
  2689. var->transp.offset = var->transp.length = 0;
  2690. break;
  2691. case 32:
  2692. var->transp.offset = 24;
  2693. var->red.offset = 16;
  2694. var->green.offset = 8;
  2695. var->blue.offset = 0;
  2696. var->red.length = var->green.length =
  2697. var->blue.length = var->transp.length = 8;
  2698. break;
  2699. default:
  2700. DPRINTK(1, "Unsupported depth %ldn", d);
  2701. break;
  2702. }
  2703. }
  2704. static int pm3fb_encode_var(struct fb_var_screeninfo *var,
  2705.     const void *par, struct fb_info_gen *info)
  2706. {
  2707. struct pm3fb_par *p = (struct pm3fb_par *) par;
  2708. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2709. u32 base;
  2710. DTRACE;
  2711. DASSERT((var != NULL), "fb_var_screeninfo* not NULL");
  2712. DASSERT((p != NULL), "pm3fb_par* not NULL");
  2713. DASSERT((info != NULL), "fb_info_gen* not NULL");
  2714. memset(var, 0, sizeof(struct fb_var_screeninfo));
  2715. #ifdef PM3FB_USE_ACCEL
  2716. if (!(noaccel[l_fb_info->board_num]))
  2717. var->accel_flags |= FB_ACCELF_TEXT;
  2718. #endif /* PM3FB_USE_ACCEL */
  2719. var->xres_virtual = p->width;
  2720. var->yres_virtual = p->height;
  2721. var->xres = p->htotal - p->hbend;
  2722. var->yres = p->vtotal - p->vbend;
  2723. DPRINTK(2, "xres = %d, yres : %dn", var->xres, var->yres);
  2724. var->right_margin = p->hsstart;
  2725. var->hsync_len = p->hsend - p->hsstart;
  2726. var->left_margin = p->hbend - p->hsend;
  2727. var->lower_margin = p->vsstart;
  2728. var->vsync_len = p->vsend - p->vsstart;
  2729. var->upper_margin = p->vbend - p->vsend;
  2730. var->bits_per_pixel = depth2bpp(p->depth);
  2731. pm3fb_encode_depth(var, p->depth);
  2732. base = pm3fb_Unshiftbpp(l_fb_info, p->depth, p->base);
  2733. var->xoffset = base % var->xres;
  2734. var->yoffset = base / var->xres;
  2735. var->height = var->width = -1;
  2736. var->pixclock = KHZ2PICOS(p->pixclock);
  2737. if ((p->video & PM3VideoControl_HSYNC_MASK) ==
  2738.     PM3VideoControl_HSYNC_ACTIVE_HIGH)
  2739. var->sync |= FB_SYNC_HOR_HIGH_ACT;
  2740. if ((p->video & PM3VideoControl_VSYNC_MASK) ==
  2741.     PM3VideoControl_VSYNC_ACTIVE_HIGH)
  2742. var->sync |= FB_SYNC_VERT_HIGH_ACT;
  2743. if (p->video & PM3VideoControl_LINE_DOUBLE_ON)
  2744. var->vmode = FB_VMODE_DOUBLE;
  2745. return (0);
  2746. }
  2747. static void pm3fb_get_par(void *par, struct fb_info_gen *info)
  2748. {
  2749. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2750. DTRACE;
  2751. if (!current_par_valid[l_fb_info->board_num]) {
  2752. if (l_fb_info->use_current)
  2753. pm3fb_read_mode(l_fb_info, l_fb_info->current_par);
  2754. else
  2755. memcpy(l_fb_info->current_par,
  2756.        &(mode_base[0].user_mode),
  2757.        sizeof(struct pm3fb_par));
  2758. current_par_valid[l_fb_info->board_num] = 1;
  2759. }
  2760. *((struct pm3fb_par *) par) = *(l_fb_info->current_par);
  2761. }
  2762. static void pm3fb_set_par(const void *par, struct fb_info_gen *info)
  2763. {
  2764. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2765. DTRACE;
  2766. *(l_fb_info->current_par) = *((struct pm3fb_par *) par);
  2767. current_par_valid[l_fb_info->board_num] = 1;
  2768. pm3fb_write_mode(l_fb_info);
  2769. #ifdef PM3FB_USE_ACCEL
  2770. pm3fb_init_engine(l_fb_info);
  2771. #endif /* PM3FB_USE_ACCEL */
  2772. }
  2773. static void pm3fb_set_color(struct pm3fb_info *l_fb_info,
  2774.     unsigned char regno, unsigned char r,
  2775.     unsigned char g, unsigned char b)
  2776. {
  2777. DTRACE;
  2778. PM3_SLOW_WRITE_REG(PM3RD_PaletteWriteAddress, regno);
  2779. PM3_SLOW_WRITE_REG(PM3RD_PaletteData, r);
  2780. PM3_SLOW_WRITE_REG(PM3RD_PaletteData, g);
  2781. PM3_SLOW_WRITE_REG(PM3RD_PaletteData, b);
  2782. }
  2783. static int pm3fb_getcolreg(unsigned regno, unsigned *red, unsigned *green,
  2784.    unsigned *blue, unsigned *transp,
  2785.    struct fb_info *info)
  2786. {
  2787. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2788. DTRACE;
  2789. if (regno < 256) {
  2790. *red =
  2791.     l_fb_info->palette[regno].red << 8 | l_fb_info->
  2792.     palette[regno].red;
  2793. *green =
  2794.     l_fb_info->palette[regno].green << 8 | l_fb_info->
  2795.     palette[regno].green;
  2796. *blue =
  2797.     l_fb_info->palette[regno].blue << 8 | l_fb_info->
  2798.     palette[regno].blue;
  2799. *transp =
  2800.     l_fb_info->palette[regno].transp << 8 | l_fb_info->
  2801.     palette[regno].transp;
  2802. }
  2803. return (regno > 255);
  2804. }
  2805. static int pm3fb_setcolreg(unsigned regno, unsigned red, unsigned green,
  2806.    unsigned blue, unsigned transp,
  2807.    struct fb_info *info)
  2808. {
  2809. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2810. DTRACE;
  2811. if (regno < 16) {
  2812. switch (l_fb_info->current_par->depth) {
  2813. #ifdef FBCON_HAS_CFB8
  2814. case 8:
  2815. break;
  2816. #endif
  2817. #ifdef FBCON_HAS_CFB16
  2818. case 12:
  2819. l_fb_info->cmap.cmap12[regno] =
  2820. (((u32) red & 0xf000) >> 4) |
  2821. (((u32) green & 0xf000) >> 8) |
  2822. (((u32) blue & 0xf000) >> 12);
  2823. break;
  2824. case 15:
  2825. l_fb_info->cmap.cmap15[regno] =
  2826. (((u32) red & 0xf800) >> 1) |
  2827. (((u32) green & 0xf800) >> 6) |
  2828. (((u32) blue & 0xf800) >> 11);
  2829. break;
  2830. case 16:
  2831. l_fb_info->cmap.cmap16[regno] =
  2832.     ((u32) red & 0xf800) |
  2833.     (((u32) green & 0xfc00) >> 5) |
  2834.     (((u32) blue & 0xf800) >> 11);
  2835. break;
  2836. #endif
  2837. #ifdef FBCON_HAS_CFB32
  2838. case 32:
  2839. l_fb_info->cmap.cmap32[regno] =
  2840.     (((u32) transp & 0xff00) << 16) |
  2841.     (((u32) red & 0xff00) << 8) |
  2842.     (((u32) green & 0xff00)) |
  2843.     (((u32) blue & 0xff00) >> 8);
  2844. break;
  2845. #endif
  2846. default:
  2847. DPRINTK(1, "bad depth %un",
  2848. l_fb_info->current_par->depth);
  2849. break;
  2850. }
  2851. }
  2852. if (regno < 256) {
  2853. l_fb_info->palette[regno].red = red >> 8;
  2854. l_fb_info->palette[regno].green = green >> 8;
  2855. l_fb_info->palette[regno].blue = blue >> 8;
  2856. l_fb_info->palette[regno].transp = transp >> 8;
  2857. if (l_fb_info->current_par->depth == 8)
  2858. pm3fb_set_color(l_fb_info, regno, red >> 8,
  2859. green >> 8, blue >> 8);
  2860. }
  2861. return (regno > 255);
  2862. }
  2863. static int pm3fb_blank(int blank_mode, struct fb_info_gen *info)
  2864. {
  2865. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2866. u32 video;
  2867. DTRACE;
  2868. if (!current_par_valid[l_fb_info->board_num])
  2869. return (1);
  2870. video = l_fb_info->current_par->video;
  2871. /*
  2872.  * Oxygen VX1 - it appears that setting PM3VideoControl and
  2873.  * then PM3RD_SyncControl to the same SYNC settings undoes
  2874.  * any net change - they seem to xor together.  Only set the
  2875.  * sync options in PM3RD_SyncControl.  --rmk
  2876.  */
  2877. video &= ~(PM3VideoControl_HSYNC_MASK |
  2878.    PM3VideoControl_VSYNC_MASK);
  2879. video |= PM3VideoControl_HSYNC_ACTIVE_HIGH |
  2880.  PM3VideoControl_VSYNC_ACTIVE_HIGH;
  2881. if (blank_mode > 0) {
  2882. switch (blank_mode - 1) {
  2883. case VESA_NO_BLANKING: /* FIXME */
  2884. video = video & ~(PM3VideoControl_ENABLE);
  2885. break;
  2886. case VESA_HSYNC_SUSPEND:
  2887. video = video & ~(PM3VideoControl_HSYNC_MASK |
  2888.   PM3VideoControl_BLANK_ACTIVE_LOW);
  2889. break;
  2890. case VESA_VSYNC_SUSPEND:
  2891. video = video & ~(PM3VideoControl_VSYNC_MASK |
  2892.   PM3VideoControl_BLANK_ACTIVE_LOW);
  2893. break;
  2894. case VESA_POWERDOWN:
  2895. video = video & ~(PM3VideoControl_HSYNC_MASK |
  2896.   PM3VideoControl_VSYNC_MASK |
  2897.   PM3VideoControl_BLANK_ACTIVE_LOW);
  2898. break;
  2899. default:
  2900. DPRINTK(1, "Unsupported blanking %dn",
  2901. blank_mode);
  2902. return (1);
  2903. break;
  2904. }
  2905. }
  2906. PM3_SLOW_WRITE_REG(PM3VideoControl, video);
  2907. return (0);
  2908. }
  2909. static void pm3fb_set_disp(const void *par, struct display *disp,
  2910.    struct fb_info_gen *info)
  2911. {
  2912. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  2913. struct pm3fb_par *p = (struct pm3fb_par *) par;
  2914. u32 flags;
  2915. DTRACE;
  2916. save_flags(flags);
  2917. cli();
  2918. disp->screen_base = l_fb_info->v_fb;
  2919. switch (p->depth) {
  2920. #ifdef FBCON_HAS_CFB8
  2921. case 8:
  2922. #ifdef PM3FB_USE_ACCEL
  2923. if (!(noaccel[l_fb_info->board_num]))
  2924. disp->dispsw = &pm3fb_cfb8;
  2925. else
  2926. #endif /* PM3FB_USE_ACCEL */
  2927. disp->dispsw = &fbcon_cfb8;
  2928. break;
  2929. #endif
  2930. #ifdef FBCON_HAS_CFB16
  2931. case 12:
  2932. #ifdef PM3FB_USE_ACCEL
  2933. if (!(noaccel[l_fb_info->board_num]))
  2934. disp->dispsw = &pm3fb_cfb16;
  2935. else
  2936. #endif /* PM3FB_USE_ACCEL */
  2937. disp->dispsw = &fbcon_cfb16;
  2938. disp->dispsw_data = l_fb_info->cmap.cmap12;
  2939. break;
  2940. case 15:
  2941. #ifdef PM3FB_USE_ACCEL
  2942. if (!(noaccel[l_fb_info->board_num]))
  2943. disp->dispsw = &pm3fb_cfb16;
  2944. else
  2945. #endif /* PM3FB_USE_ACCEL */
  2946. disp->dispsw = &fbcon_cfb16;
  2947. disp->dispsw_data = l_fb_info->cmap.cmap15;
  2948. break;
  2949. case 16:
  2950. #ifdef PM3FB_USE_ACCEL
  2951. if (!(noaccel[l_fb_info->board_num]))
  2952. disp->dispsw = &pm3fb_cfb16;
  2953. else
  2954. #endif /* PM3FB_USE_ACCEL */
  2955. disp->dispsw = &fbcon_cfb16;
  2956. disp->dispsw_data = l_fb_info->cmap.cmap16;
  2957. break;
  2958. #endif
  2959. #ifdef FBCON_HAS_CFB32
  2960. case 32:
  2961. #ifdef PM3FB_USE_ACCEL
  2962. if (!(noaccel[l_fb_info->board_num]))
  2963. disp->dispsw = &pm3fb_cfb32;
  2964. else
  2965. #endif /* PM3FB_USE_ACCEL */
  2966. disp->dispsw = &fbcon_cfb32;
  2967. disp->dispsw_data = l_fb_info->cmap.cmap32;
  2968. break;
  2969. #endif /* FBCON_HAS_CFB32 */
  2970. default:
  2971. disp->dispsw = &fbcon_dummy;
  2972. DPRINTK(1, "Invalid depth, using fbcon_dummyn");
  2973. break;
  2974. }
  2975. restore_flags(flags);
  2976. }
  2977. /* */
  2978. static void pm3fb_detect(void)
  2979. {
  2980. struct pci_dev *dev_array[PM3_MAX_BOARD];
  2981. struct pci_dev *dev = NULL;
  2982. struct pm3fb_info *l_fb_info = &(fb_info[0]);
  2983. unsigned long i, j, done;
  2984. DTRACE;
  2985. for (i = 0; i < PM3_MAX_BOARD; i++) {
  2986. dev_array[i] = NULL;
  2987. fb_info[i].dev = NULL;
  2988. }
  2989. dev =
  2990.     pci_find_device(PCI_VENDOR_ID_3DLABS,
  2991.     PCI_DEVICE_ID_3DLABS_PERMEDIA3, dev);
  2992. for (i = 0; ((i < PM3_MAX_BOARD) && dev); i++) {
  2993. dev_array[i] = dev;
  2994. dev =
  2995.     pci_find_device(PCI_VENDOR_ID_3DLABS,
  2996.     PCI_DEVICE_ID_3DLABS_PERMEDIA3, dev);
  2997. }
  2998. if (dev) { /* more than PM3_MAX_BOARD */
  2999. printk(KERN_WARNING "pm3fb: Warning: more than %d boards foundn",
  3000.        PM3_MAX_BOARD);
  3001. }
  3002. if (!dev_array[0]) { /* not a single board, abort */
  3003. return;
  3004. }
  3005. /* allocate user-defined boards */
  3006. for (i = 0; i < PM3_MAX_BOARD; i++) {
  3007. if ((bus[i] >= 0) && (slot[i] >= 0) && (func[i] >= 0)) {
  3008. for (j = 0; j < PM3_MAX_BOARD; j++) {
  3009. if ((dev_array[j] != NULL) &&
  3010.     (dev_array[j]->bus->number == bus[i])
  3011.     && (PCI_SLOT(dev_array[j]->devfn) ==
  3012. slot[i])
  3013.     && (PCI_FUNC(dev_array[j]->devfn) ==
  3014. func[i])) {
  3015. fb_info[i].dev = dev_array[j];
  3016. dev_array[j] = NULL;
  3017. }
  3018. }
  3019. }
  3020. }
  3021. /* allocate remaining boards */
  3022. for (i = 0; i < PM3_MAX_BOARD; i++) {
  3023. if (fb_info[i].dev == NULL) {
  3024. done = 0;
  3025. for (j = 0; ((j < PM3_MAX_BOARD) && (!done)); j++) {
  3026. if (dev_array[j] != NULL) {
  3027. fb_info[i].dev = dev_array[j];
  3028. dev_array[j] = NULL;
  3029. done = 1;
  3030. }
  3031. }
  3032. }
  3033. }
  3034. /* at that point, all PCI Permedia3 are detected and allocated */
  3035. /* now, initialize... or not */
  3036. for (i = 0; i < PM3_MAX_BOARD; i++) {
  3037. l_fb_info = &(fb_info[i]);
  3038. if ((l_fb_info->dev) && (!disable[i])) { /* PCI device was found and not disabled by user */
  3039. #ifdef SUPPORT_FB_OF
  3040. struct device_node *dp =
  3041.     find_pci_device_OFnode(l_fb_info->dev->bus->
  3042.    number,
  3043.    l_fb_info->dev->devfn);
  3044. if ((dp) && (!strncmp(dp->name, "formacGA12", 10))) {
  3045. /* do nothing, init of board is done in pm3fb_of_init */
  3046. } else {
  3047. #endif
  3048. DPRINTK(2,
  3049. "found @%lx Vendor %lx Device %lx ; base @ : %lx - %lx - %lx - %lx - %lx - %lx, irq %ldn",
  3050. (unsigned long) l_fb_info->dev,
  3051. (unsigned long) l_fb_info->dev->
  3052. vendor,
  3053. (unsigned long) l_fb_info->dev->
  3054. device,
  3055. (unsigned long)
  3056. pci_resource_start(l_fb_info->dev,
  3057.    0),
  3058. (unsigned long)
  3059. pci_resource_start(l_fb_info->dev,
  3060.    1),
  3061. (unsigned long)
  3062. pci_resource_start(l_fb_info->dev,
  3063.    2),
  3064. (unsigned long)
  3065. pci_resource_start(l_fb_info->dev,
  3066.    3),
  3067. (unsigned long)
  3068. pci_resource_start(l_fb_info->dev,
  3069.    4),
  3070. (unsigned long)
  3071. pci_resource_start(l_fb_info->dev,
  3072.    5),
  3073. (unsigned long) l_fb_info->dev->
  3074. irq);
  3075. l_fb_info->pIOBase =
  3076.     (unsigned char *)
  3077.     pci_resource_start(l_fb_info->dev, 0);
  3078. #ifdef __BIG_ENDIAN
  3079. l_fb_info->pIOBase += PM3_REGS_SIZE;
  3080. #endif
  3081. l_fb_info->vIOBase = (unsigned char *) -1;
  3082. l_fb_info->p_fb =
  3083.     (unsigned char *)
  3084.     pci_resource_start(l_fb_info->dev, 1);
  3085. l_fb_info->v_fb = (unsigned char *) -1;
  3086. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)  /* full resource management, new in linux-2.4.x */
  3087. if (!request_mem_region
  3088.     ((unsigned long)l_fb_info->p_fb, 64 * 1024 * 1024, /* request full aperture size */
  3089.      "pm3fb")) {
  3090. printk
  3091.     (KERN_ERR "pm3fb: Error: couldn't request framebuffer memory, board #%ldn",
  3092.      l_fb_info->board_num);
  3093. continue;
  3094. }
  3095. if (!request_mem_region
  3096.     ((unsigned long)l_fb_info->pIOBase, PM3_REGS_SIZE,
  3097.      "pm3fb I/O regs")) {
  3098. printk
  3099.     (KERN_ERR "pm3fb: Error: couldn't request IObase memory, board #%ldn",
  3100.      l_fb_info->board_num);
  3101. continue;
  3102. }
  3103. #endif /* KERNEL_2_4 or KERNEL_2_5 */
  3104. if (forcesize[l_fb_info->board_num])
  3105. l_fb_info->fb_size = forcesize[l_fb_info->board_num];
  3106. l_fb_info->fb_size =
  3107.     pm3fb_size_memory(l_fb_info);
  3108. if (l_fb_info->fb_size) {
  3109. (void) pci_enable_device(l_fb_info->dev);
  3110. pm3fb_common_init(l_fb_info);
  3111. } else
  3112. printk(KERN_ERR "pm3fb: memory problem, not enabling board #%ldn", l_fb_info->board_num);
  3113. #ifdef SUPPORT_FB_OF
  3114. }
  3115. #endif /* SUPPORT_FB_OF */
  3116. }
  3117. }
  3118. }
  3119. static int pm3fb_pan_display(const struct fb_var_screeninfo *var,
  3120.      struct fb_info_gen *info)
  3121. {
  3122. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  3123. DTRACE;
  3124. if (!current_par_valid[l_fb_info->board_num])
  3125. return -EINVAL;
  3126. l_fb_info->current_par->base = /* in 128 bits chunk - i.e. AFTER Shiftbpp */
  3127.     pm3fb_Shiftbpp(l_fb_info,
  3128.    l_fb_info->current_par->depth,
  3129.    (var->yoffset * l_fb_info->current_par->width) +
  3130.    var->xoffset);
  3131. PM3_SLOW_WRITE_REG(PM3ScreenBase, l_fb_info->current_par->base);
  3132. return 0;
  3133. }
  3134. static int pm3fb_ioctl(struct inode *inode, struct file *file,
  3135.                        u_int cmd, u_long arg, int con,
  3136.        struct fb_info *info)
  3137. {
  3138. struct pm3fb_info *l_fb_info = (struct pm3fb_info *) info;
  3139. u32 cm, i;
  3140. #ifdef PM3FB_MASTER_DEBUG
  3141. char cc[3];
  3142. #endif /* PM3FB_MASTER_DEBUG */
  3143. switch(cmd)
  3144. {
  3145. #ifdef PM3FB_MASTER_DEBUG
  3146. case PM3FBIO_CLEARMEMORY:
  3147. if (copy_from_user(&cm, (void *)arg, sizeof(u32)))
  3148. return(-EFAULT);
  3149. pm3fb_clear_memory(l_fb_info, cm);
  3150. return(0);
  3151. break;
  3152. case PM3FBIO_CLEARCMAP:
  3153. if (copy_from_user(cc, (void*)arg, 3 * sizeof(char)))
  3154. return(-EFAULT);
  3155. pm3fb_clear_colormap(l_fb_info, cc[0], cc[1], cc[2]);
  3156. return(0);
  3157. break;
  3158. #endif /* PM3FB_MASTER_DEBUG */
  3159. case PM3FBIO_RESETCHIP:
  3160. cm = 1;
  3161. PM3_SLOW_WRITE_REG(PM3ResetStatus, 1);
  3162. for (i = 0 ; (i < 10000) && cm ; i++)
  3163. {
  3164. PM3_DELAY(10);
  3165. cm = PM3_READ_REG(PM3ResetStatus);
  3166. }
  3167. if (cm)
  3168. {
  3169. printk(KERN_ERR "pm3fb: chip reset failed with status 0x%xn", cm);
  3170. return(-EIO);
  3171. }
  3172. /* first thing first, reload memory timings */
  3173. pm3fb_write_memory_timings(l_fb_info);
  3174. #ifdef PM3FB_USE_ACCEL
  3175. pm3fb_init_engine(l_fb_info);
  3176. #endif /* PM3FB_USE_ACCEL */
  3177. pm3fb_write_mode(l_fb_info);
  3178. return(0);
  3179. break;
  3180. default:
  3181. DPRINTK(2, "unknown ioctl: %d (%x)n", cmd, cmd);
  3182. return(-EINVAL);
  3183. }
  3184. }
  3185. /* ****************************************** */
  3186. /* ***** standard FB API init functions ***** */
  3187. /* ****************************************** */
  3188. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  3189. int __init pm3fb_setup(char *options)
  3190. #endif
  3191. #ifdef KERNEL_2_2
  3192. __initfunc(void pm3fb_setup(char *options, int *ints))
  3193. #endif
  3194. {
  3195. long opsi = strlen(options);
  3196. DTRACE;
  3197. memcpy(g_options, options,
  3198.        ((opsi + 1) >
  3199. PM3_OPTIONS_SIZE) ? PM3_OPTIONS_SIZE : (opsi + 1));
  3200. g_options[PM3_OPTIONS_SIZE - 1] = 0;
  3201. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  3202. return (0);
  3203. #endif
  3204. }
  3205. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  3206. int __init pm3fb_init(void)
  3207. #endif
  3208. #ifdef KERNEL_2_2
  3209. __initfunc(void pm3fb_init(void))
  3210. #endif
  3211. {
  3212. DTRACE;
  3213. DPRINTK(2, "This is pm3fb.c, CVS version: $Header: /cvsroot/linux/drivers/video/pm3fb.c,v 1.1 2002/02/25 19:11:06 marcelo Exp $");
  3214. pm3fb_real_setup(g_options);
  3215. pm3fb_detect();
  3216. if (!fb_info[0].dev) { /* not even one board ??? */
  3217. DPRINTK(1, "No PCI Permedia3 board detectedn");
  3218. }
  3219. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  3220. return (0);
  3221. #endif
  3222. }
  3223. #ifdef SUPPORT_FB_OF /* linux-2.2.x only */
  3224. __initfunc(void pm3fb_of_init(struct device_node *dp))
  3225. {
  3226. struct pm3fb_info *l_fb_info = NULL;
  3227. unsigned long i;
  3228. long bn = -1;
  3229. struct device_node *dn;
  3230. DTRACE;
  3231. DPRINTK(2, "OpenFirmware board : %sn", dp->full_name);
  3232. for (i = 0; i < dp->n_addrs; i++) {
  3233. DPRINTK(2, "MemRange : 0x%08x - 0x%xn",
  3234. dp->addrs[i].address, dp->addrs[i].size);
  3235. }
  3236. for (i = 0; i < PM3_MAX_BOARD; i++) { /* find which PCI board is the OF device */
  3237. if (fb_info[i].dev) {
  3238. dn = find_pci_device_OFnode(fb_info[i].dev->bus->
  3239.     number,
  3240.     fb_info[i].dev->devfn);
  3241. if (dn == dp) {
  3242. if (bn == -1)
  3243. bn = i;
  3244. else {
  3245. DPRINTK(1,
  3246. "Error: Multiple PCI device for a single OpenFirmware noden");
  3247. }
  3248. }
  3249. }
  3250. }
  3251. if (bn == -1) {
  3252. DPRINTK(1, "Warning: non-PCI Permedia3 foundn");
  3253. i = 0;
  3254. while (fb_info[i].dev && (i < PM3_MAX_BOARD))
  3255. i++;
  3256. if (i < PM3_MAX_BOARD)
  3257. bn = i;
  3258. else {
  3259. printk
  3260.     (KERN_ERR "pm3fb: Error: Couldn't find room for OpenFirmware device");
  3261. return;
  3262. }
  3263. }
  3264. l_fb_info = &(fb_info[bn]);
  3265. l_fb_info->dn = dp;
  3266. l_fb_info->pIOBase = (unsigned char *) dp->addrs[3].address;
  3267. #ifdef __BIG_ENDIAN
  3268. l_fb_info->pIOBase += PM3_REGS_SIZE;
  3269. #endif
  3270. l_fb_info->vIOBase = (unsigned char *) -1;
  3271. l_fb_info->p_fb = (unsigned char *) dp->addrs[1].address;
  3272. l_fb_info->v_fb = (unsigned char *) -1;
  3273. l_fb_info->fb_size = pm3fb_size_memory(l_fb_info); /* (unsigned long)dp->addrs[1].size; *//* OF is a liar ! it claims 256 Mb */
  3274. DPRINTK(2,
  3275. "OpenFirmware board (#%ld) : IOBase 0x%08lx, p_fb 0x%08lx, fb_size %d KBn",
  3276. bn, (unsigned long) l_fb_info->pIOBase,
  3277. (unsigned long) l_fb_info->p_fb, l_fb_info->fb_size >> 10);
  3278. l_fb_info->use_current = 1; /* will use current mode by default */
  3279. pm3fb_common_init(l_fb_info);
  3280. }
  3281. #endif /* SUPPORT_FB_OF */
  3282. /* ************************* */
  3283. /* **** Module support ***** */
  3284. /* ************************* */
  3285. #ifdef MODULE
  3286. MODULE_AUTHOR("Romain Dolbeau");
  3287. MODULE_DESCRIPTION("Permedia3 framebuffer device driver");
  3288. static char *mode[PM3_MAX_BOARD];
  3289. MODULE_PARM(mode,PM3_MAX_BOARD_MODULE_ARRAY_STRING);
  3290. MODULE_PARM_DESC(mode,"video mode");
  3291. MODULE_PARM(disable,PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
  3292. MODULE_PARM_DESC(disable,"disable board");
  3293. static short off[PM3_MAX_BOARD];
  3294. MODULE_PARM(off,PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
  3295. MODULE_PARM_DESC(off,"disable board");
  3296. static char *pciid[PM3_MAX_BOARD];
  3297. MODULE_PARM(pciid,PM3_MAX_BOARD_MODULE_ARRAY_STRING);
  3298. MODULE_PARM_DESC(pciid,"board PCI Id");
  3299. MODULE_PARM(noaccel,PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
  3300. MODULE_PARM_DESC(noaccel,"disable accel");
  3301. static char *font[PM3_MAX_BOARD];
  3302. MODULE_PARM(font,PM3_MAX_BOARD_MODULE_ARRAY_STRING);
  3303. MODULE_PARM_DESC(font,"choose font");
  3304. MODULE_PARM(depth,PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
  3305. MODULE_PARM_DESC(depth,"boot-time depth");
  3306. MODULE_PARM(printtimings, "h");
  3307. MODULE_PARM_DESC(printtimings, "print the memory timings of the card(s)");
  3308. MODULE_PARM(forcesize, PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
  3309. MODULE_PARM_DESC(forcesize, "force specified memory size");
  3310. /*
  3311. MODULE_SUPPORTED_DEVICE("Permedia3 PCI boards")
  3312. MODULE_GENERIC_TABLE(gtype,name)
  3313. MODULE_DEVICE_TABLE(type,name)
  3314. */
  3315. void pm3fb_build_options(void)
  3316. {
  3317. int i;
  3318. char ts[128];
  3319. strcpy(g_options, "pm3fb");
  3320. for (i = 0; i < PM3_MAX_BOARD ; i++)
  3321. {
  3322. if (mode[i])
  3323. {
  3324. sprintf(ts, ",mode:%d:%s", i, mode[i]);
  3325. strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
  3326. }
  3327. if (disable[i] || off[i])
  3328. {
  3329. sprintf(ts, ",disable:%d:", i);
  3330. strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
  3331. }
  3332. if (pciid[i])
  3333. {
  3334. sprintf(ts, ",pciid:%d:%s", i, pciid[i]);
  3335. strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
  3336. }
  3337. if (noaccel[i])
  3338. {
  3339. sprintf(ts, ",noaccel:%d:", i);
  3340. strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
  3341. }
  3342. if (font[i])
  3343. {
  3344. sprintf(ts, ",font:%d:%s", i, font[i]);
  3345. strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
  3346. }
  3347. if (depth[i])
  3348. {
  3349. sprintf(ts, ",depth:%d:%d", i, depth[i]);
  3350. strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
  3351. }
  3352. }
  3353. g_options[PM3_OPTIONS_SIZE - 1] = '';
  3354. DPRINTK(1, "pm3fb use options: %sn", g_options);
  3355. }
  3356. int init_module(void)
  3357. {
  3358. DTRACE;
  3359. pm3fb_build_options();
  3360. pm3fb_init();
  3361. return (0);
  3362. }
  3363. void cleanup_module(void)
  3364. {
  3365. DTRACE;
  3366. {
  3367. unsigned long i;
  3368. struct pm3fb_info *l_fb_info;
  3369. for (i = 0; i < PM3_MAX_BOARD; i++) {
  3370. l_fb_info = &(fb_info[i]);
  3371. if ((l_fb_info->dev != NULL)
  3372.     && (!(disable[l_fb_info->board_num]))) {
  3373. if (l_fb_info->vIOBase !=
  3374.     (unsigned char *) -1) {
  3375. pm3fb_unmapIO(l_fb_info);
  3376. #if (defined KERNEL_2_4) || (defined KERNEL_2_5)
  3377. release_mem_region(l_fb_info->p_fb,
  3378.    l_fb_info->
  3379.    fb_size);
  3380. release_mem_region(l_fb_info->
  3381.    pIOBase,
  3382.    PM3_REGS_SIZE);
  3383. #endif /* KERNEL_2_4 or KERNEL_2_5 */
  3384. }
  3385. unregister_framebuffer(&l_fb_info->gen.
  3386.        info);
  3387. }
  3388. }
  3389. }
  3390. return;
  3391. }
  3392. #endif /* MODULE */